diff --git a/PPT_Silvia Prada Aprilia_2041720141.pptx b/PPT_Silvia Prada Aprilia_2041720141.pptx new file mode 100644 index 0000000..8d6f5e7 Binary files /dev/null and b/PPT_Silvia Prada Aprilia_2041720141.pptx differ diff --git a/SKRIPSI_Silvia Prada Aprilia_2041720141.docx b/SKRIPSI_Silvia Prada Aprilia_2041720141.docx new file mode 100644 index 0000000..ea7cc19 Binary files /dev/null and b/SKRIPSI_Silvia Prada Aprilia_2041720141.docx differ diff --git a/SKRIPSI_Silvia Prada Aprilia_2041720141_revisi.pdf b/SKRIPSI_Silvia Prada Aprilia_2041720141_revisi.pdf new file mode 100644 index 0000000..57be2a1 Binary files /dev/null and b/SKRIPSI_Silvia Prada Aprilia_2041720141_revisi.pdf differ diff --git a/tes.txt b/tes.txt deleted file mode 100644 index d179357..0000000 --- a/tes.txt +++ /dev/null @@ -1 +0,0 @@ -tes \ No newline at end of file diff --git a/vote-block-skripsi/election-api/.gitignore b/vote-block-skripsi/election-api/.gitignore new file mode 100644 index 0000000..e8c12ff --- /dev/null +++ b/vote-block-skripsi/election-api/.gitignore @@ -0,0 +1,17 @@ +node_modules +.env + +# Hardhat files +/cache +/artifacts + +# TypeChain files +/typechain +/typechain-types + +# solidity-coverage files +/coverage +/coverage.json + +# Hardhat Ignition default folder for deployments against a local node +ignition/deployments/chain-31337 diff --git a/vote-block-skripsi/election-api/README.md b/vote-block-skripsi/election-api/README.md new file mode 100644 index 0000000..d04248d --- /dev/null +++ b/vote-block-skripsi/election-api/README.md @@ -0,0 +1,13 @@ +# Sample Hardhat Project + +This project demonstrates a basic Hardhat use case. It comes with a sample contract, a test for that contract, and a Hardhat Ignition module that deploys that contract. + +Try running some of the following tasks: + +```shell +npx hardhat help +npx hardhat test +REPORT_GAS=true npx hardhat test +npx hardhat node +npx hardhat ignition deploy ./ignition/modules/Lock.js +``` diff --git a/vote-block-skripsi/election-api/contracts/Election.sol b/vote-block-skripsi/election-api/contracts/Election.sol new file mode 100644 index 0000000..c59e73f --- /dev/null +++ b/vote-block-skripsi/election-api/contracts/Election.sol @@ -0,0 +1,419 @@ +// SPDX-License-Identifier: GPL-3.0 + +pragma solidity >=0.8.2 <0.9.0; + +contract Election { + address payable public owner; + + struct Voter { + uint256 id; + string name; + string email; + bool hasVoted; + bytes32 passwordHash; + uint256 lastUpdated; // Timestamp of the last update + bool isActive; // To mark if a voter is active + bytes32 transactionHash; + uint256 blockNumber; + } + + struct Candidate { + uint256 id; + string name; + string visi; + string misi; + uint256 voteCount; + uint256 lastUpdated; // Timestamp of the last update + bool isActive; // To mark if a voter is active + bytes32 transactionHash; + uint256 blockNumber; + } + + struct VoterHistory { + uint256 id; + string name; + string email; + bool hasVoted; + bytes32 passwordHash; + uint256 timestamp; + bytes32 transactionHash; + uint256 blockNumber; + } + + struct CandidateHistory { + uint256 id; + string name; + string visi; + string misi; + uint256 voteCount; + uint256 timestamp; + bytes32 transactionHash; + uint256 blockNumber; + } + + struct VoteCountHistory { + uint256 candidateId; + uint256 voteCount; + uint256 timestamp; + bytes32 transactionHash; + uint256 blockNumber; + } + + event VoterAdded(uint256 id, string name); + event VoterUpdated(uint256 id, string name); + event VoterDeleted(uint256 id, string name); + event CandidateAdded(uint256 id, string name); + event CandidateUpdated(uint256 id, string name); + event CandidateDeleted(uint256 id, string name); + event ElectionEnded(); + + bool public electionActive; + uint256[] public voterIds; + uint256[] public candidateIds; + + mapping(uint256 => Voter) public voters; + mapping(uint256 => Candidate) public candidates; + mapping(uint256 => VoterHistory[]) public voterHistories; + mapping(uint256 => CandidateHistory[]) public candidateHistories; + mapping(uint256 => VoteCountHistory[]) public voteCountHistories; + + modifier onlyActiveElection() { + require(electionActive, "Election is not active"); + _; + } + + modifier onlyOwner() { + require(msg.sender == owner, "Only contract owner can call this function"); + _; + } + + constructor() { + owner = payable(msg.sender); + electionActive = true; + } + + function addVoter(uint256 _id, string memory _name, string memory _email, string memory _password) public onlyOwner { + require(voters[_id].id == 0, "Voter already registered"); + + voters[_id] = Voter({ + id: _id, + name: _name, + email: _email, + hasVoted: false, + passwordHash: keccak256(abi.encodePacked(_password)), + lastUpdated: block.timestamp, + isActive: true, + transactionHash: blockhash(block.number - 1), + blockNumber: block.number + + }); + + voterIds.push(_id); + emit VoterAdded(_id, _name); + } + + function updateVoter(uint256 _id, string memory _name, string memory _email, string memory _password) public onlyOwner { + require(voters[_id].id != 0, "Voter not registered"); + + // Record the current state to history before updating + voterHistories[_id].push(VoterHistory({ + id: _id, + name: voters[_id].name, + email: voters[_id].email, + hasVoted: voters[_id].hasVoted, + passwordHash: voters[_id].passwordHash, + timestamp: block.timestamp, + transactionHash: blockhash(block.number - 1), + blockNumber: block.number + })); + + voters[_id].name = _name; + voters[_id].email = _email; + voters[_id].passwordHash = keccak256(abi.encodePacked(_password)); + voters[_id].lastUpdated = block.timestamp; + voters[_id].transactionHash = blockhash(block.number - 1); + voters[_id].blockNumber = block.number; + + emit VoterUpdated(_id, _name); + } + + function deleteVoter(uint256 _id) public onlyOwner { + require(voters[_id].id != 0, "Voter not registered"); + + // Record the current state to history before deleting + voterHistories[_id].push(VoterHistory({ + id: _id, + name: voters[_id].name, + email: voters[_id].email, + hasVoted: voters[_id].hasVoted, + passwordHash: voters[_id].passwordHash, + timestamp: block.timestamp, + transactionHash: blockhash(block.number - 1), + blockNumber: block.number + })); + + voters[_id].isActive = false; // Mark voter as inactive instead of deleting + + emit VoterDeleted(_id, voters[_id].name); + } + + function addCandidate(uint256 _id, string memory _name, string memory _visi, string memory _misi) public onlyOwner { + require(candidates[_id].id == 0, "Candidate already exists"); + + candidates[_id] = Candidate({ + id: _id, + name: _name, + visi: _visi, + misi: _misi, + voteCount: 0, + lastUpdated: block.timestamp, + isActive: true, + transactionHash: blockhash(block.number - 1), + blockNumber: block.number + }); + + candidateIds.push(_id); + emit CandidateAdded(_id, _name); + } + + function updateCandidate(uint256 _id, string memory _name, string memory _visi, string memory _misi) public onlyOwner { + require(candidates[_id].id != 0, "Candidate not registered"); + + // Record the current state to history before updating + candidateHistories[_id].push(CandidateHistory({ + id: _id, + name: candidates[_id].name, + visi: candidates[_id].visi, + misi: candidates[_id].misi, + voteCount: candidates[_id].voteCount, + timestamp: block.timestamp, + transactionHash: blockhash(block.number - 1), + blockNumber: block.number + })); + + candidates[_id].name = _name; + candidates[_id].visi = _visi; + candidates[_id].misi = _misi; + candidates[_id].lastUpdated = block.timestamp; + candidates[_id].transactionHash = blockhash(block.number - 1); + candidates[_id].blockNumber = block.number; + + emit CandidateUpdated(_id, _name); + } + + function deleteCandidate(uint256 _id) public onlyOwner { + require(candidates[_id].id != 0, "Candidate not registered"); + + // Record the current state to history before marking as inactive + candidateHistories[_id].push(CandidateHistory({ + id: _id, + name: candidates[_id].name, + visi: candidates[_id].visi, + misi: candidates[_id].misi, + voteCount: candidates[_id].voteCount, + timestamp: block.timestamp, + transactionHash: blockhash(block.number - 1), + blockNumber: block.number + })); + + candidates[_id].isActive = false; // Mark candidate as inactive instead of deleting + + emit CandidateDeleted(_id, candidates[_id].name); + } + + function vote(uint256 _voterId, uint256 _candidateId, string memory _password) public onlyActiveElection { + require(voters[_voterId].id != 0, "Voter not registered"); + require(!voters[_voterId].hasVoted, "Voter already voted"); + require(candidates[_candidateId].id != 0, "Candidate not found"); + require(voters[_voterId].passwordHash == keccak256(abi.encodePacked(_password)), "Invalid password"); + + // Record the current state to history before voting + voterHistories[_voterId].push(VoterHistory({ + id: _voterId, + name: voters[_voterId].name, + email: voters[_voterId].email, + hasVoted: voters[_voterId].hasVoted, + passwordHash: voters[_voterId].passwordHash, + timestamp: block.timestamp, + transactionHash: blockhash(block.number - 1), + blockNumber: block.number + })); + + candidates[_candidateId].voteCount++; + + // Record vote count history + voteCountHistories[_candidateId].push(VoteCountHistory({ + candidateId: _candidateId, + voteCount: candidates[_candidateId].voteCount, + timestamp: block.timestamp, + transactionHash: blockhash(block.number - 1), + blockNumber: block.number + })); + + voters[_voterId].hasVoted = true; + voters[_voterId].lastUpdated = block.timestamp; + voters[_voterId].transactionHash = blockhash(block.number - 1); + voters[_voterId].blockNumber = block.number; + } + + function endElection() public onlyOwner { + electionActive = false; + emit ElectionEnded(); + } + + function getVoteCount(uint256 _candidateId) public view returns (uint256) { + require(candidates[_candidateId].id != 0, "Candidate not found"); + return candidates[_candidateId].voteCount; + } + + function getAllVoters() public view returns (Voter[] memory) { + uint256 activeCount = 0; + + // Count active voters + for (uint256 i = 0; i < voterIds.length; i++) { + if (voters[voterIds[i]].isActive) { + activeCount++; + } + } + + Voter[] memory allVoters = new Voter[](activeCount); + uint256 index = 0; + for (uint256 i = 0; i < voterIds.length; i++) { + uint256 voterId = voterIds[i]; + if (voters[voterId].isActive) { + allVoters[index] = voters[voterId]; + index++; + } + } + return allVoters; + } + + function getAllCandidates() public view returns (Candidate[] memory) { + Candidate[] memory allCandidates = new Candidate[](candidateIds.length); + uint256 index = 0; + for (uint256 i = 0; i < candidateIds.length; i++) { + uint256 candidateId = candidateIds[i]; + if (candidates[candidateId].id != 0) { + allCandidates[index] = candidates[candidateId]; + index++; + } + } + return allCandidates; + } + + function isVoterEligible(uint256 _voterId) public view returns (bool) { + return voters[_voterId].id != 0 && !voters[_voterId].hasVoted; + } + + function getAllVoterHistories() public view returns (VoterHistory[] memory) { + uint256 totalHistories = 0; + + // Count total histories + for (uint256 i = 0; i < voterIds.length; i++) { + totalHistories += voterHistories[voterIds[i]].length + 1; // +1 for initial state + } + + VoterHistory[] memory allHistories = new VoterHistory[](totalHistories); + uint256 index = 0; + + // Gather all histories + for (uint256 i = 0; i < voterIds.length; i++) { + uint256 voterId = voterIds[i]; + + // Add initial state + allHistories[index] = VoterHistory({ + id: voters[voterId].id, + name: voters[voterId].name, + email: voters[voterId].email, + hasVoted: voters[voterId].hasVoted, + passwordHash: voters[voterId].passwordHash, + timestamp: voters[voterId].lastUpdated, + transactionHash: voters[voterId].transactionHash, + blockNumber: voters[voterId].blockNumber + }); + index++; + + // Add historical states + VoterHistory[] memory histories = voterHistories[voterId]; + for (uint256 j = 0; j < histories.length; j++) { + allHistories[index] = histories[j]; + index++; + } + } + + return allHistories; + } + + function getAllCandidateHistories() public view returns (CandidateHistory[] memory) { + uint256 totalHistories = 0; + + // Count total histories + for (uint256 i = 0; i < candidateIds.length; i++) { + totalHistories += candidateHistories[candidateIds[i]].length + 1; // +1 for initial state + } + + CandidateHistory[] memory allHistories = new CandidateHistory[](totalHistories); + uint256 index = 0; + + // Gather all histories + for (uint256 i = 0; i < candidateIds.length; i++) { + uint256 candidateId = candidateIds[i]; + + // Add initial state + allHistories[index] = CandidateHistory({ + id: candidates[candidateId].id, + name: candidates[candidateId].name, + visi: candidates[candidateId].visi, + misi: candidates[candidateId].misi, + voteCount: candidates[candidateId].voteCount, + timestamp: candidates[candidateId].lastUpdated, + transactionHash: candidates[candidateId].transactionHash, + blockNumber: candidates[candidateId].blockNumber + }); + index++; + + // Add historical states + CandidateHistory[] memory histories = candidateHistories[candidateId]; + for (uint256 j = 0; j < histories.length; j++) { + allHistories[index] = histories[j]; + index++; + } + } + + return allHistories; + } + + function getAllVoteCountHistories() public view returns (VoteCountHistory[] memory) { + uint256 totalHistories = 0; + + // Count total histories + for (uint256 i = 0; i < candidateIds.length; i++) { + totalHistories += voteCountHistories[candidateIds[i]].length; + } + + VoteCountHistory[] memory allHistories = new VoteCountHistory[](totalHistories); + uint256 index = 0; + + // Gather all histories + for (uint256 i = 0; i < candidateIds.length; i++) { + uint256 candidateId = candidateIds[i]; + VoteCountHistory[] memory histories = voteCountHistories[candidateId]; + for (uint256 j = 0; j < histories.length; j++) { + allHistories[index] = histories[j]; + index++; + } + } + + return allHistories; + } + + // Add login function + function login(uint256 _voterId, string memory _password) public view returns (string memory, bool) { + Voter memory voter = voters[_voterId]; + if (voter.id != 0 && voter.passwordHash == keccak256(abi.encodePacked(_password))) { + return (voter.name, true); + } else { + return ("", false); + } + } +} \ No newline at end of file diff --git a/vote-block-skripsi/election-api/hardhat.config.js b/vote-block-skripsi/election-api/hardhat.config.js new file mode 100644 index 0000000..ca2e806 --- /dev/null +++ b/vote-block-skripsi/election-api/hardhat.config.js @@ -0,0 +1,22 @@ +require("@nomicfoundation/hardhat-toolbox"); + +/** @type import('hardhat/config').HardhatUserConfig */ +module.exports = { + solidity: "0.8.24", + settings: { + optimizer: { + enabled: true, + runs: 200, + }, + }, + networks: { + // Daftar jaringan lainnya + volta: { + url: "https://volta-rpc.energyweb.org/", // Ganti dengan URL RPC jaringan Volta + }, + }, + paths: { + contracts: "./contracts", + artifacts: "./artifacts", + }, +}; diff --git a/vote-block-skripsi/election-api/ignition/modules/Lock.js b/vote-block-skripsi/election-api/ignition/modules/Lock.js new file mode 100644 index 0000000..192492a --- /dev/null +++ b/vote-block-skripsi/election-api/ignition/modules/Lock.js @@ -0,0 +1,15 @@ +const { buildModule } = require("@nomicfoundation/hardhat-ignition/modules"); + +const JAN_1ST_2030 = 1893456000; +const ONE_GWEI = 1_000_000_000n; + +module.exports = buildModule("LockModule", (m) => { + const unlockTime = m.getParameter("unlockTime", JAN_1ST_2030); + const lockedAmount = m.getParameter("lockedAmount", ONE_GWEI); + + const lock = m.contract("Lock", [unlockTime], { + value: lockedAmount, + }); + + return { lock }; +}); diff --git a/vote-block-skripsi/election-api/index.js b/vote-block-skripsi/election-api/index.js new file mode 100644 index 0000000..e7b050e --- /dev/null +++ b/vote-block-skripsi/election-api/index.js @@ -0,0 +1,323 @@ +const ethers = require('ethers'); +require('dotenv').config(); +const express = require('express'); +const jwt = require('jsonwebtoken'); + +const API_URL = process.env.API_URL; +const PRIVATE_KEY = process.env.PRIVATE_KEY; +const CONTRACT_ADDRESS = process.env.CONTRACT_ADDRESS; +const JWT_SECRET = process.env.JWT_SECRET; + +const provider = new ethers.providers.JsonRpcProvider(API_URL); +const signer = new ethers.Wallet(PRIVATE_KEY, provider); +const { abi } = require("./artifacts/contracts/Election.sol/Election.json"); +const contractInstance = new ethers.Contract(CONTRACT_ADDRESS, abi, signer); + +const app = express(); +app.use(express.json()); + +// Function to sign and send a transaction +const sendTransaction = async (method, ...params) => { + const tx = await contractInstance[method](...params); + return tx.wait(); +}; + +// Endpoint for login +app.post('/login', async (req, res) => { + const { voterId, password } = req.body; + try { + const [name, isLoginSuccessful] = await contractInstance.login(voterId, password); + if (isLoginSuccessful) { + const token = jwt.sign({ voterId }, JWT_SECRET, { expiresIn: '1h' }); + res.json({ + error: false, + message: "success", + loginResult: { + userId: voterId, + name: name, + token: token + } + }); + } else { + res.status(401).json({ error: true, message: "Invalid credentials" }); + } + } catch (error) { + res.status(500).json({ error: error.message }); + } +}); + +// Endpoint to add a new voter +app.post('/voters', async (req, res) => { + const { id, name, email, password } = req.body; + try { + const receipt = await sendTransaction('addVoter', id, name, email, password); + res.json({ receipt }); + } catch (error) { + res.status(500).json({ error: error.message }); + } +}); + +// Endpoint to update a voter +app.put('/voters/:id', async (req, res) => { + const { id } = req.params; + const { name, email, password } = req.body; + try { + const receipt = await sendTransaction('updateVoter', id, name, email, password); + res.json({ receipt }); + } catch (error) { + res.status(500).json({ error: error.message }); + } +}); + +// Endpoint to delete a voter +app.delete('/voters/:id', async (req, res) => { + const { id } = req.params; + try { + const receipt = await sendTransaction('deleteVoter', id); + res.json({ receipt }); + } catch (error) { + res.status(500).json({ error: error.message }); + } +}); + +// Endpoint to add a new candidate +app.post('/candidates', async (req, res) => { + const { id, name, visi, misi } = req.body; + try { + const receipt = await sendTransaction('addCandidate', id, name, visi, misi); + res.json({ receipt }); + } catch (error) { + res.status(500).json({ error: error.message }); + } +}); + +// Endpoint to update a candidate +app.put('/candidates/:id', async (req, res) => { + const { id } = req.params; + const { name, visi, misi } = req.body; + try { + const receipt = await sendTransaction('updateCandidate', id, name, visi, misi); + res.json({ receipt }); + } catch (error) { + res.status(500).json({ error: error.message }); + } +}); + +// Endpoint to delete a candidate +app.delete('/candidates/:id', async (req, res) => { + const { id } = req.params; + try { + const receipt = await sendTransaction('deleteCandidate', id); + res.json({ receipt }); + } catch (error) { + res.status(500).json({ error: error.message }); + } +}); + +// Endpoint to get all voters +app.get('/voters', async (req, res) => { + try { + const allVoters = await contractInstance.getAllVoters(); + const response = { + error: false, + message: "Voters fetched successfully", + voters: allVoters.map(voter => ({ + id: voter.id, + name: voter.name, + email: voter.email, + password: voter.password, + hasVoted: voter.hasVoted, + lastUpdated: voter.lastUpdated, + transactionHash: voter.transactionHash, + blockNumber: voter.blockNumber + })) + }; + res.json(response); + } catch (error) { + res.status(500).json({ error: error.message }); + } +}); + +// Endpoint to get all candidates +app.get('/candidates', async (req, res) => { + try { + const allCandidates = await contractInstance.getAllCandidates(); + const response = { + error: false, + message: "Candidates fetched successfully", + candidates: allCandidates.map(candidate => ({ + id: candidate.id, + name: candidate.name, + visi: candidate.visi, + misi: candidate.misi, + voteCount: candidate.voteCount, + lastUpdated: candidate.lastUpdated, + transactionHash: candidate.transactionHash, + blockNumber: candidate.blockNumber + })) + }; + res.json(response); + } catch (error) { + res.status(500).json({ error: error.message }); + } +}); + +// Endpoint to get a specific voter by ID +app.get('/voters/:id', async (req, res) => { + const voterId = req.params.id; + try { + const voter = await contractInstance.voters(voterId); + res.json({ + id: voter.id, + name: voter.name, + email: voter.email, + password: voter.password, + hasVoted: voter.hasVoted, + lastUpdated: voter.lastUpdated, + transactionHash: voter.transactionHash, + blockNumber: voter.blockNumber + }); + } catch (error) { + res.status(500).json({ error: error.message }); + } +}); + +// Endpoint to get a specific candidate by ID +app.get('/candidates/:id', async (req, res) => { + const candidateId = req.params.id; + try { + const candidate = await contractInstance.candidates(candidateId); + res.json({ + id: candidate.id, + name: candidate.name, + visi: candidate.visi, + misi: candidate.misi, + voteCount: candidate.voteCount, + lastUpdated: candidate.lastUpdated, + transactionHash: candidate.transactionHash, + blockNumber: candidate.blockNumber + }); + } catch (error) { + res.status(500).json({ error: error.message }); + } +}); + +// Endpoint to vote +app.post('/vote', async (req, res) => { + const { voterId, candidateId, password } = req.body; + try { + const receipt = await sendTransaction('vote', voterId, candidateId, password); + res.json({ receipt }); + } catch (error) { + res.status(500).json({ error: error.message }); + } +}); + +// Endpoint to get vote count for a candidate +app.get('/vote-count/:id', async (req, res) => { + const candidateId = req.params.id; + try { + const voteCount = await contractInstance.getVoteCount(candidateId); + res.json({ voteCount }); + } catch (error) { + res.status(500).json({ error: error.message }); + } +}); + +// Endpoint to get vote count for all candidates +app.get('/vote-counts', async (req, res) => { + try { + const allCandidates = await contractInstance.getAllCandidates(); + const voteCounts = allCandidates.map(candidate => ({ + id: candidate.id, + voteCount: candidate.voteCount + })); + res.json({ voteCounts }); + } catch (error) { + res.status(500).json({ error: error.message }); + } +}); + +// Endpoint to get vote status of a user +app.get('/voteStatus/:userId', async (req, res) => { + const { userId } = req.params; + + try { + const voter = await contractInstance.voters(userId); + if (!voter.id) { + return res.status(404).json({ hasVoted: false }); + } + + res.json({ hasVoted: voter.hasVoted }); + } catch (error) { + res.status(500).json({ error: error.message }); + } +}); + +// Endpoint to get voter history +app.get('/voter-history/:id', async (req, res) => { + const voterId = req.params.id; + try { + const history = await contractInstance.getVoterHistory(voterId); + res.json(history); + } catch (error) { + res.status(500).json({ error: error.message }); + } +}); + +// Endpoint to get candidate history +app.get('/candidate-history/:id', async (req, res) => { + const candidateId = req.params.id; + try { + const history = await contractInstance.getCandidateHistory(candidateId); + res.json(history); + } catch (error) { + res.status(500).json({ error: error.message }); + } +}); + +// Endpoint to get vote count history +app.get('/vote-count-history/:id', async (req, res) => { + const candidateId = req.params.id; + try { + const history = await contractInstance.getVoteCountHistory(candidateId); + res.json(history); + } catch (error) { + res.status(500).json({ error: error.message }); + } +}); + +// Endpoint to get all voter histories +app.get('/all-voter-histories', async (req, res) => { + try { + const allHistories = await contractInstance.getAllVoterHistories(); + res.json(allHistories); + } catch (error) { + res.status(500).json({ error: error.message }); + } +}); + +// Endpoint to get all candidate histories +app.get('/all-candidate-histories', async (req, res) => { + try { + const allHistories = await contractInstance.getAllCandidateHistories(); + res.json(allHistories); + } catch (error) { + res.status(500).json({ error: error.message }); + } +}); + +// Endpoint to get all vote count histories +app.get('/all-vote-count-histories', async (req, res) => { + try { + const allHistories = await contractInstance.getAllVoteCountHistories(); + res.json(allHistories); + } catch (error) { + res.status(500).json({ error: error.message }); + } +}); + +app.listen(3000, () => { + console.log('Election API listening at http://localhost:3000'); +}); + diff --git a/vote-block-skripsi/election-api/package-lock.json b/vote-block-skripsi/election-api/package-lock.json new file mode 100644 index 0000000..f46a942 --- /dev/null +++ b/vote-block-skripsi/election-api/package-lock.json @@ -0,0 +1,7207 @@ +{ + "name": "election-api", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "election-api", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "@nomicfoundation/hardhat-toolbox": "^2.0.1", + "dotenv": "^16.0.3", + "ethers": "^5.7.1", + "express": "^4.18.2", + "express-fileupload": "^1.4.0", + "hardhat": "^2.22.3", + "jsonwebtoken": "^9.0.2", + "path": "^0.12.7" + }, + "devDependencies": { + "@nomicfoundation/hardhat-verify": "^2.0.6" + } + }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@ethereumjs/rlp": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@ethereumjs/rlp/-/rlp-4.0.1.tgz", + "integrity": "sha512-tqsQiBQDQdmPWE1xkkBq4rlSW5QZpLOUJ5RJh2/9fug+q9tnUhuZoVLk7s0scUIKTOzEtR72DFBXI4WiZcMpvw==", + "license": "MPL-2.0", + "peer": true, + "bin": { + "rlp": "bin/rlp" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@ethereumjs/util": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@ethereumjs/util/-/util-8.1.0.tgz", + "integrity": "sha512-zQ0IqbdX8FZ9aw11vP+dZkKDkS+kgIvQPHnSAXzP9pLu+Rfu3D3XEeLbicvoXJTYnhZiPmsZUxgdzXwNKxRPbA==", + "license": "MPL-2.0", + "peer": true, + "dependencies": { + "@ethereumjs/rlp": "^4.0.1", + "ethereum-cryptography": "^2.0.0", + "micro-ftch": "^0.3.1" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@ethereumjs/util/node_modules/ethereum-cryptography": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-2.2.1.tgz", + "integrity": "sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@noble/curves": "1.4.2", + "@noble/hashes": "1.4.0", + "@scure/bip32": "1.4.0", + "@scure/bip39": "1.3.0" + } + }, + "node_modules/@ethersproject/abi": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.7.0.tgz", + "integrity": "sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/address": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/strings": "^5.7.0" + } + }, + "node_modules/@ethersproject/abstract-provider": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.7.0.tgz", + "integrity": "sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/networks": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/web": "^5.7.0" + } + }, + "node_modules/@ethersproject/abstract-signer": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.7.0.tgz", + "integrity": "sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0" + } + }, + "node_modules/@ethersproject/address": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/address/-/address-5.7.0.tgz", + "integrity": "sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/rlp": "^5.7.0" + } + }, + "node_modules/@ethersproject/base64": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.7.0.tgz", + "integrity": "sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0" + } + }, + "node_modules/@ethersproject/basex": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/basex/-/basex-5.7.0.tgz", + "integrity": "sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/properties": "^5.7.0" + } + }, + "node_modules/@ethersproject/bignumber": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.7.0.tgz", + "integrity": "sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "bn.js": "^5.2.1" + } + }, + "node_modules/@ethersproject/bytes": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.7.0.tgz", + "integrity": "sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/constants": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.7.0.tgz", + "integrity": "sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0" + } + }, + "node_modules/@ethersproject/contracts": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/contracts/-/contracts-5.7.0.tgz", + "integrity": "sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abi": "^5.7.0", + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/transactions": "^5.7.0" + } + }, + "node_modules/@ethersproject/hash": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.7.0.tgz", + "integrity": "sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/base64": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/strings": "^5.7.0" + } + }, + "node_modules/@ethersproject/hdnode": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/hdnode/-/hdnode-5.7.0.tgz", + "integrity": "sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/basex": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/pbkdf2": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/sha2": "^5.7.0", + "@ethersproject/signing-key": "^5.7.0", + "@ethersproject/strings": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/wordlists": "^5.7.0" + } + }, + "node_modules/@ethersproject/json-wallets": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/json-wallets/-/json-wallets-5.7.0.tgz", + "integrity": "sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/hdnode": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/pbkdf2": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/random": "^5.7.0", + "@ethersproject/strings": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "aes-js": "3.0.0", + "scrypt-js": "3.0.1" + } + }, + "node_modules/@ethersproject/keccak256": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.7.0.tgz", + "integrity": "sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "js-sha3": "0.8.0" + } + }, + "node_modules/@ethersproject/logger": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.7.0.tgz", + "integrity": "sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT" + }, + "node_modules/@ethersproject/networks": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.7.1.tgz", + "integrity": "sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/pbkdf2": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/pbkdf2/-/pbkdf2-5.7.0.tgz", + "integrity": "sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/sha2": "^5.7.0" + } + }, + "node_modules/@ethersproject/properties": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.7.0.tgz", + "integrity": "sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/providers": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.7.2.tgz", + "integrity": "sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/base64": "^5.7.0", + "@ethersproject/basex": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/networks": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/random": "^5.7.0", + "@ethersproject/rlp": "^5.7.0", + "@ethersproject/sha2": "^5.7.0", + "@ethersproject/strings": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/web": "^5.7.0", + "bech32": "1.1.4", + "ws": "7.4.6" + } + }, + "node_modules/@ethersproject/random": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/random/-/random-5.7.0.tgz", + "integrity": "sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/rlp": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.7.0.tgz", + "integrity": "sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/sha2": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/sha2/-/sha2-5.7.0.tgz", + "integrity": "sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "hash.js": "1.1.7" + } + }, + "node_modules/@ethersproject/signing-key": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.7.0.tgz", + "integrity": "sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "bn.js": "^5.2.1", + "elliptic": "6.5.4", + "hash.js": "1.1.7" + } + }, + "node_modules/@ethersproject/solidity": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/solidity/-/solidity-5.7.0.tgz", + "integrity": "sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/sha2": "^5.7.0", + "@ethersproject/strings": "^5.7.0" + } + }, + "node_modules/@ethersproject/strings": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.7.0.tgz", + "integrity": "sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/transactions": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.7.0.tgz", + "integrity": "sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/address": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/rlp": "^5.7.0", + "@ethersproject/signing-key": "^5.7.0" + } + }, + "node_modules/@ethersproject/units": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/units/-/units-5.7.0.tgz", + "integrity": "sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/wallet": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/wallet/-/wallet-5.7.0.tgz", + "integrity": "sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/hdnode": "^5.7.0", + "@ethersproject/json-wallets": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/random": "^5.7.0", + "@ethersproject/signing-key": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/wordlists": "^5.7.0" + } + }, + "node_modules/@ethersproject/web": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/@ethersproject/web/-/web-5.7.1.tgz", + "integrity": "sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/base64": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/strings": "^5.7.0" + } + }, + "node_modules/@ethersproject/wordlists": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/wordlists/-/wordlists-5.7.0.tgz", + "integrity": "sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/strings": "^5.7.0" + } + }, + "node_modules/@fastify/busboy": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.1.1.tgz", + "integrity": "sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==", + "license": "MIT", + "engines": { + "node": ">=14" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "license": "MIT", + "peer": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@metamask/eth-sig-util": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@metamask/eth-sig-util/-/eth-sig-util-4.0.1.tgz", + "integrity": "sha512-tghyZKLHZjcdlDqCA3gNZmLeR0XvOE9U1qoQO9ohyAZT6Pya+H9vkBPcsyXytmYLNgVoin7CKCmweo/R43V+tQ==", + "license": "ISC", + "dependencies": { + "ethereumjs-abi": "^0.6.8", + "ethereumjs-util": "^6.2.1", + "ethjs-util": "^0.1.6", + "tweetnacl": "^1.0.3", + "tweetnacl-util": "^0.15.1" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@metamask/eth-sig-util/node_modules/@types/bn.js": { + "version": "4.11.6", + "resolved": "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz", + "integrity": "sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@metamask/eth-sig-util/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "license": "MIT" + }, + "node_modules/@metamask/eth-sig-util/node_modules/ethereumjs-util": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-6.2.1.tgz", + "integrity": "sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==", + "license": "MPL-2.0", + "dependencies": { + "@types/bn.js": "^4.11.3", + "bn.js": "^4.11.0", + "create-hash": "^1.1.2", + "elliptic": "^6.5.2", + "ethereum-cryptography": "^0.1.3", + "ethjs-util": "0.1.6", + "rlp": "^2.2.3" + } + }, + "node_modules/@noble/curves": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.4.2.tgz", + "integrity": "sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@noble/hashes": "1.4.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@noble/hashes": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz", + "integrity": "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@noble/secp256k1": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.7.1.tgz", + "integrity": "sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT" + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "license": "MIT", + "peer": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nomicfoundation/edr": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@nomicfoundation/edr/-/edr-0.4.2.tgz", + "integrity": "sha512-U7v0HuZHfrsl/5FpUzuB2FYA0+FUglHHwiO6NhvLtNYKMZcPzdS6iUriMp/7GWs0SVxW3bAht9GinZPxdhVwWg==", + "license": "MIT", + "dependencies": { + "@nomicfoundation/edr-darwin-arm64": "0.4.2", + "@nomicfoundation/edr-darwin-x64": "0.4.2", + "@nomicfoundation/edr-linux-arm64-gnu": "0.4.2", + "@nomicfoundation/edr-linux-arm64-musl": "0.4.2", + "@nomicfoundation/edr-linux-x64-gnu": "0.4.2", + "@nomicfoundation/edr-linux-x64-musl": "0.4.2", + "@nomicfoundation/edr-win32-x64-msvc": "0.4.2" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@nomicfoundation/edr-darwin-arm64": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@nomicfoundation/edr-darwin-arm64/-/edr-darwin-arm64-0.4.2.tgz", + "integrity": "sha512-S+hhepupfqpBvMa9M1PVS08sVjGXsLnjyAsjhrrsjsNuTHVLhKzhkguvBD5g4If5skrwgOaVqpag4wnQbd15kQ==", + "license": "MIT", + "engines": { + "node": ">= 18" + } + }, + "node_modules/@nomicfoundation/edr-darwin-x64": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@nomicfoundation/edr-darwin-x64/-/edr-darwin-x64-0.4.2.tgz", + "integrity": "sha512-/zM94AUrXz6CmcsecRNHJ50jABDUFafmGc4iBmkfX/mTp4tVZj7XTyIogrQIt0FnTaeb4CgZoLap2+8tW/Uldg==", + "license": "MIT", + "engines": { + "node": ">= 18" + } + }, + "node_modules/@nomicfoundation/edr-linux-arm64-gnu": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-arm64-gnu/-/edr-linux-arm64-gnu-0.4.2.tgz", + "integrity": "sha512-TV3Pr2tFvvmCfPCi9PaCGLtqn+oLaPKfL2NWpnoCeFFdzDQXi2L930yP1oUPY5RXd78NLdVHMkEkbhb2b6Wuvg==", + "license": "MIT", + "engines": { + "node": ">= 18" + } + }, + "node_modules/@nomicfoundation/edr-linux-arm64-musl": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-arm64-musl/-/edr-linux-arm64-musl-0.4.2.tgz", + "integrity": "sha512-PALwrLBk1M9rolXyhSX8xdhe5jL0qf/PgiCIF7W7lUyVKrI/I0oiU0EHDk/Xw7yi2UJg4WRyhhZoHYa0g4g8Qg==", + "license": "MIT", + "engines": { + "node": ">= 18" + } + }, + "node_modules/@nomicfoundation/edr-linux-x64-gnu": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-x64-gnu/-/edr-linux-x64-gnu-0.4.2.tgz", + "integrity": "sha512-5svkftypDjAZ1LxV1onojlaqPRxrTEjJLkrUwLL+Fao5ZMe7aTnk5QQ1Jv76gW6WYZnMXNgjPhRcnw3oSNrqFA==", + "license": "MIT", + "engines": { + "node": ">= 18" + } + }, + "node_modules/@nomicfoundation/edr-linux-x64-musl": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-x64-musl/-/edr-linux-x64-musl-0.4.2.tgz", + "integrity": "sha512-qiMlXQTggdH9zfOB4Eil4rQ95z8s7QdLJcOfz5Aym12qJNkCyF9hi4cc4dDCWA0CdI3x3oLbuf8qb81SF8R45w==", + "license": "MIT", + "engines": { + "node": ">= 18" + } + }, + "node_modules/@nomicfoundation/edr-win32-x64-msvc": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@nomicfoundation/edr-win32-x64-msvc/-/edr-win32-x64-msvc-0.4.2.tgz", + "integrity": "sha512-hDkAb0iaMmGYwBY/rA1oCX8VpsezfQcHPEPIEGXEcWC3WbnOgIZo0Qkpu/g0OMtFOJSQlWLXvKZuV7blhnrQag==", + "license": "MIT", + "engines": { + "node": ">= 18" + } + }, + "node_modules/@nomicfoundation/ethereumjs-common": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-common/-/ethereumjs-common-4.0.4.tgz", + "integrity": "sha512-9Rgb658lcWsjiicr5GzNCjI1llow/7r0k50dLL95OJ+6iZJcVbi15r3Y0xh2cIO+zgX0WIHcbzIu6FeQf9KPrg==", + "license": "MIT", + "dependencies": { + "@nomicfoundation/ethereumjs-util": "9.0.4" + } + }, + "node_modules/@nomicfoundation/ethereumjs-rlp": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-rlp/-/ethereumjs-rlp-5.0.4.tgz", + "integrity": "sha512-8H1S3s8F6QueOc/X92SdrA4RDenpiAEqMg5vJH99kcQaCy/a3Q6fgseo75mgWlbanGJXSlAPtnCeG9jvfTYXlw==", + "license": "MPL-2.0", + "bin": { + "rlp": "bin/rlp.cjs" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@nomicfoundation/ethereumjs-tx": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-tx/-/ethereumjs-tx-5.0.4.tgz", + "integrity": "sha512-Xjv8wAKJGMrP1f0n2PeyfFCCojHd7iS3s/Ab7qzF1S64kxZ8Z22LCMynArYsVqiFx6rzYy548HNVEyI+AYN/kw==", + "license": "MPL-2.0", + "dependencies": { + "@nomicfoundation/ethereumjs-common": "4.0.4", + "@nomicfoundation/ethereumjs-rlp": "5.0.4", + "@nomicfoundation/ethereumjs-util": "9.0.4", + "ethereum-cryptography": "0.1.3" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "c-kzg": "^2.1.2" + }, + "peerDependenciesMeta": { + "c-kzg": { + "optional": true + } + } + }, + "node_modules/@nomicfoundation/ethereumjs-util": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-util/-/ethereumjs-util-9.0.4.tgz", + "integrity": "sha512-sLOzjnSrlx9Bb9EFNtHzK/FJFsfg2re6bsGqinFinH1gCqVfz9YYlXiMWwDM4C/L4ywuHFCYwfKTVr/QHQcU0Q==", + "license": "MPL-2.0", + "dependencies": { + "@nomicfoundation/ethereumjs-rlp": "5.0.4", + "ethereum-cryptography": "0.1.3" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "c-kzg": "^2.1.2" + }, + "peerDependenciesMeta": { + "c-kzg": { + "optional": true + } + } + }, + "node_modules/@nomicfoundation/hardhat-chai-matchers": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-chai-matchers/-/hardhat-chai-matchers-1.0.6.tgz", + "integrity": "sha512-f5ZMNmabZeZegEfuxn/0kW+mm7+yV7VNDxLpMOMGXWFJ2l/Ct3QShujzDRF9cOkK9Ui/hbDeOWGZqyQALDXVCQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@ethersproject/abi": "^5.1.2", + "@types/chai-as-promised": "^7.1.3", + "chai-as-promised": "^7.1.1", + "deep-eql": "^4.0.1", + "ordinal": "^1.0.3" + }, + "peerDependencies": { + "@nomiclabs/hardhat-ethers": "^2.0.0", + "chai": "^4.2.0", + "ethers": "^5.0.0", + "hardhat": "^2.9.4" + } + }, + "node_modules/@nomicfoundation/hardhat-network-helpers": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-network-helpers/-/hardhat-network-helpers-1.0.11.tgz", + "integrity": "sha512-uGPL7QSKvxrHRU69dx8jzoBvuztlLCtyFsbgfXIwIjnO3dqZRz2GNMHJoO3C3dIiUNM6jdNF4AUnoQKDscdYrA==", + "license": "MIT", + "peer": true, + "dependencies": { + "ethereumjs-util": "^7.1.4" + }, + "peerDependencies": { + "hardhat": "^2.9.5" + } + }, + "node_modules/@nomicfoundation/hardhat-toolbox": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-toolbox/-/hardhat-toolbox-2.0.2.tgz", + "integrity": "sha512-vnN1AzxbvpSx9pfdRHbUzTRIXpMLPXnUlkW855VaDk6N1pwRaQ2gNzEmFAABk4lWf11E00PKwFd/q27HuwYrYg==", + "license": "MIT", + "peerDependencies": { + "@ethersproject/abi": "^5.4.7", + "@ethersproject/providers": "^5.4.7", + "@nomicfoundation/hardhat-chai-matchers": "^1.0.0", + "@nomicfoundation/hardhat-network-helpers": "^1.0.0", + "@nomiclabs/hardhat-ethers": "^2.0.0", + "@nomiclabs/hardhat-etherscan": "^3.0.0", + "@typechain/ethers-v5": "^10.1.0", + "@typechain/hardhat": "^6.1.2", + "@types/chai": "^4.2.0", + "@types/mocha": ">=9.1.0", + "@types/node": ">=12.0.0", + "chai": "^4.2.0", + "ethers": "^5.4.7", + "hardhat": "^2.11.0", + "hardhat-gas-reporter": "^1.0.8", + "solidity-coverage": "^0.8.1", + "ts-node": ">=8.0.0", + "typechain": "^8.1.0", + "typescript": ">=4.5.0" + } + }, + "node_modules/@nomicfoundation/hardhat-verify": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-verify/-/hardhat-verify-2.0.8.tgz", + "integrity": "sha512-x/OYya7A2Kcz+3W/J78dyDHxr0ezU23DKTrRKfy5wDPCnePqnr79vm8EXqX3gYps6IjPBYyGPZ9K6E5BnrWx5Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@ethersproject/abi": "^5.1.2", + "@ethersproject/address": "^5.0.2", + "cbor": "^8.1.0", + "chalk": "^2.4.2", + "debug": "^4.1.1", + "lodash.clonedeep": "^4.5.0", + "semver": "^6.3.0", + "table": "^6.8.0", + "undici": "^5.14.0" + }, + "peerDependencies": { + "hardhat": "^2.0.4" + } + }, + "node_modules/@nomicfoundation/solidity-analyzer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer/-/solidity-analyzer-0.1.2.tgz", + "integrity": "sha512-q4n32/FNKIhQ3zQGGw5CvPF6GTvDCpYwIf7bEY/dZTZbgfDsHyjJwURxUJf3VQuuJj+fDIFl4+KkBVbw4Ef6jA==", + "license": "MIT", + "engines": { + "node": ">= 12" + }, + "optionalDependencies": { + "@nomicfoundation/solidity-analyzer-darwin-arm64": "0.1.2", + "@nomicfoundation/solidity-analyzer-darwin-x64": "0.1.2", + "@nomicfoundation/solidity-analyzer-linux-arm64-gnu": "0.1.2", + "@nomicfoundation/solidity-analyzer-linux-arm64-musl": "0.1.2", + "@nomicfoundation/solidity-analyzer-linux-x64-gnu": "0.1.2", + "@nomicfoundation/solidity-analyzer-linux-x64-musl": "0.1.2", + "@nomicfoundation/solidity-analyzer-win32-x64-msvc": "0.1.2" + } + }, + "node_modules/@nomicfoundation/solidity-analyzer-darwin-arm64": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-darwin-arm64/-/solidity-analyzer-darwin-arm64-0.1.2.tgz", + "integrity": "sha512-JaqcWPDZENCvm++lFFGjrDd8mxtf+CtLd2MiXvMNTBD33dContTZ9TWETwNFwg7JTJT5Q9HEecH7FA+HTSsIUw==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/@nomicfoundation/solidity-analyzer-darwin-x64": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-darwin-x64/-/solidity-analyzer-darwin-x64-0.1.2.tgz", + "integrity": "sha512-fZNmVztrSXC03e9RONBT+CiksSeYcxI1wlzqyr0L7hsQlK1fzV+f04g2JtQ1c/Fe74ZwdV6aQBdd6Uwl1052sw==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/@nomicfoundation/solidity-analyzer-linux-arm64-gnu": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-linux-arm64-gnu/-/solidity-analyzer-linux-arm64-gnu-0.1.2.tgz", + "integrity": "sha512-3d54oc+9ZVBuB6nbp8wHylk4xh0N0Gc+bk+/uJae+rUgbOBwQSfuGIbAZt1wBXs5REkSmynEGcqx6DutoK0tPA==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/@nomicfoundation/solidity-analyzer-linux-arm64-musl": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-linux-arm64-musl/-/solidity-analyzer-linux-arm64-musl-0.1.2.tgz", + "integrity": "sha512-iDJfR2qf55vgsg7BtJa7iPiFAsYf2d0Tv/0B+vhtnI16+wfQeTbP7teookbGvAo0eJo7aLLm0xfS/GTkvHIucA==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/@nomicfoundation/solidity-analyzer-linux-x64-gnu": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-linux-x64-gnu/-/solidity-analyzer-linux-x64-gnu-0.1.2.tgz", + "integrity": "sha512-9dlHMAt5/2cpWyuJ9fQNOUXFB/vgSFORg1jpjX1Mh9hJ/MfZXlDdHQ+DpFCs32Zk5pxRBb07yGvSHk9/fezL+g==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/@nomicfoundation/solidity-analyzer-linux-x64-musl": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-linux-x64-musl/-/solidity-analyzer-linux-x64-musl-0.1.2.tgz", + "integrity": "sha512-GzzVeeJob3lfrSlDKQw2bRJ8rBf6mEYaWY+gW0JnTDHINA0s2gPR4km5RLIj1xeZZOYz4zRw+AEeYgLRqB2NXg==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/@nomicfoundation/solidity-analyzer-win32-x64-msvc": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-win32-x64-msvc/-/solidity-analyzer-win32-x64-msvc-0.1.2.tgz", + "integrity": "sha512-Fdjli4DCcFHb4Zgsz0uEJXZ2K7VEO+w5KVv7HmT7WO10iODdU9csC2az4jrhEsRtiR9Gfd74FlG0NYlw1BMdyA==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/@nomiclabs/hardhat-ethers": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@nomiclabs/hardhat-ethers/-/hardhat-ethers-2.2.3.tgz", + "integrity": "sha512-YhzPdzb612X591FOe68q+qXVXGG2ANZRvDo0RRUtimev85rCrAlv/TLMEZw5c+kq9AbzocLTVX/h2jVIFPL9Xg==", + "license": "MIT", + "peer": true, + "peerDependencies": { + "ethers": "^5.0.0", + "hardhat": "^2.0.0" + } + }, + "node_modules/@nomiclabs/hardhat-etherscan": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/@nomiclabs/hardhat-etherscan/-/hardhat-etherscan-3.1.8.tgz", + "integrity": "sha512-v5F6IzQhrsjHh6kQz4uNrym49brK9K5bYCq2zQZ729RYRaifI9hHbtmK+KkIVevfhut7huQFEQ77JLRMAzWYjQ==", + "deprecated": "The @nomiclabs/hardhat-etherscan package is deprecated, please use @nomicfoundation/hardhat-verify instead", + "license": "MIT", + "peer": true, + "dependencies": { + "@ethersproject/abi": "^5.1.2", + "@ethersproject/address": "^5.0.2", + "cbor": "^8.1.0", + "chalk": "^2.4.2", + "debug": "^4.1.1", + "fs-extra": "^7.0.1", + "lodash": "^4.17.11", + "semver": "^6.3.0", + "table": "^6.8.0", + "undici": "^5.14.0" + }, + "peerDependencies": { + "hardhat": "^2.0.4" + } + }, + "node_modules/@scure/base": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/@scure/base/-/base-1.1.7.tgz", + "integrity": "sha512-PPNYBslrLNNUQ/Yad37MHYsNQtK67EhWb6WtSvNLLPo7SdVZgkUjD6Dg+5On7zNwmskf8OX7I7Nx5oN+MIWE0g==", + "license": "MIT", + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@scure/bip32": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.4.0.tgz", + "integrity": "sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@noble/curves": "~1.4.0", + "@noble/hashes": "~1.4.0", + "@scure/base": "~1.1.6" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@scure/bip39": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.3.0.tgz", + "integrity": "sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@noble/hashes": "~1.4.0", + "@scure/base": "~1.1.6" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@sentry/core": { + "version": "5.30.0", + "resolved": "https://registry.npmjs.org/@sentry/core/-/core-5.30.0.tgz", + "integrity": "sha512-TmfrII8w1PQZSZgPpUESqjB+jC6MvZJZdLtE/0hZ+SrnKhW3x5WlYLvTXZpcWePYBku7rl2wn1RZu6uT0qCTeg==", + "license": "BSD-3-Clause", + "dependencies": { + "@sentry/hub": "5.30.0", + "@sentry/minimal": "5.30.0", + "@sentry/types": "5.30.0", + "@sentry/utils": "5.30.0", + "tslib": "^1.9.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@sentry/hub": { + "version": "5.30.0", + "resolved": "https://registry.npmjs.org/@sentry/hub/-/hub-5.30.0.tgz", + "integrity": "sha512-2tYrGnzb1gKz2EkMDQcfLrDTvmGcQPuWxLnJKXJvYTQDGLlEvi2tWz1VIHjunmOvJrB5aIQLhm+dcMRwFZDCqQ==", + "license": "BSD-3-Clause", + "dependencies": { + "@sentry/types": "5.30.0", + "@sentry/utils": "5.30.0", + "tslib": "^1.9.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@sentry/minimal": { + "version": "5.30.0", + "resolved": "https://registry.npmjs.org/@sentry/minimal/-/minimal-5.30.0.tgz", + "integrity": "sha512-BwWb/owZKtkDX+Sc4zCSTNcvZUq7YcH3uAVlmh/gtR9rmUvbzAA3ewLuB3myi4wWRAMEtny6+J/FN/x+2wn9Xw==", + "license": "BSD-3-Clause", + "dependencies": { + "@sentry/hub": "5.30.0", + "@sentry/types": "5.30.0", + "tslib": "^1.9.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@sentry/node": { + "version": "5.30.0", + "resolved": "https://registry.npmjs.org/@sentry/node/-/node-5.30.0.tgz", + "integrity": "sha512-Br5oyVBF0fZo6ZS9bxbJZG4ApAjRqAnqFFurMVJJdunNb80brh7a5Qva2kjhm+U6r9NJAB5OmDyPkA1Qnt+QVg==", + "license": "BSD-3-Clause", + "dependencies": { + "@sentry/core": "5.30.0", + "@sentry/hub": "5.30.0", + "@sentry/tracing": "5.30.0", + "@sentry/types": "5.30.0", + "@sentry/utils": "5.30.0", + "cookie": "^0.4.1", + "https-proxy-agent": "^5.0.0", + "lru_map": "^0.3.3", + "tslib": "^1.9.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@sentry/node/node_modules/cookie": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", + "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/@sentry/tracing": { + "version": "5.30.0", + "resolved": "https://registry.npmjs.org/@sentry/tracing/-/tracing-5.30.0.tgz", + "integrity": "sha512-dUFowCr0AIMwiLD7Fs314Mdzcug+gBVo/+NCMyDw8tFxJkwWAKl7Qa2OZxLQ0ZHjakcj1hNKfCQJ9rhyfOl4Aw==", + "license": "MIT", + "dependencies": { + "@sentry/hub": "5.30.0", + "@sentry/minimal": "5.30.0", + "@sentry/types": "5.30.0", + "@sentry/utils": "5.30.0", + "tslib": "^1.9.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@sentry/types": { + "version": "5.30.0", + "resolved": "https://registry.npmjs.org/@sentry/types/-/types-5.30.0.tgz", + "integrity": "sha512-R8xOqlSTZ+htqrfteCWU5Nk0CDN5ApUTvrlvBuiH1DyP6czDZ4ktbZB0hAgBlVcK0U+qpD3ag3Tqqpa5Q67rPw==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=6" + } + }, + "node_modules/@sentry/utils": { + "version": "5.30.0", + "resolved": "https://registry.npmjs.org/@sentry/utils/-/utils-5.30.0.tgz", + "integrity": "sha512-zaYmoH0NWWtvnJjC9/CBseXMtKHm/tm40sz3YfJRxeQjyzRqNQPgivpd9R/oDJCYj999mzdW382p/qi2ypjLww==", + "license": "BSD-3-Clause", + "dependencies": { + "@sentry/types": "5.30.0", + "tslib": "^1.9.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@solidity-parser/parser": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@solidity-parser/parser/-/parser-0.14.5.tgz", + "integrity": "sha512-6dKnHZn7fg/iQATVEzqyUOyEidbn05q7YA2mQ9hC0MMXhhV3/JrsxmFSYZAcr7j1yUP700LLhTruvJ3MiQmjJg==", + "license": "MIT", + "peer": true, + "dependencies": { + "antlr4ts": "^0.5.0-alpha.4" + } + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", + "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==", + "license": "MIT", + "peer": true + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "license": "MIT", + "peer": true + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "license": "MIT", + "peer": true + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "license": "MIT", + "peer": true + }, + "node_modules/@typechain/ethers-v5": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/@typechain/ethers-v5/-/ethers-v5-10.2.1.tgz", + "integrity": "sha512-n3tQmCZjRE6IU4h6lqUGiQ1j866n5MTCBJreNEHHVWXa2u9GJTaeYyU1/k+1qLutkyw+sS6VAN+AbeiTqsxd/A==", + "license": "MIT", + "peer": true, + "dependencies": { + "lodash": "^4.17.15", + "ts-essentials": "^7.0.1" + }, + "peerDependencies": { + "@ethersproject/abi": "^5.0.0", + "@ethersproject/providers": "^5.0.0", + "ethers": "^5.1.3", + "typechain": "^8.1.1", + "typescript": ">=4.3.0" + } + }, + "node_modules/@typechain/hardhat": { + "version": "6.1.6", + "resolved": "https://registry.npmjs.org/@typechain/hardhat/-/hardhat-6.1.6.tgz", + "integrity": "sha512-BiVnegSs+ZHVymyidtK472syodx1sXYlYJJixZfRstHVGYTi8V1O7QG4nsjyb0PC/LORcq7sfBUcHto1y6UgJA==", + "license": "MIT", + "peer": true, + "dependencies": { + "fs-extra": "^9.1.0" + }, + "peerDependencies": { + "@ethersproject/abi": "^5.4.7", + "@ethersproject/providers": "^5.4.7", + "@typechain/ethers-v5": "^10.2.1", + "ethers": "^5.4.7", + "hardhat": "^2.9.9", + "typechain": "^8.1.1" + } + }, + "node_modules/@typechain/hardhat/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typechain/hardhat/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@typechain/hardhat/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@types/bn.js": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@types/bn.js/-/bn.js-5.1.5.tgz", + "integrity": "sha512-V46N0zwKRF5Q00AZ6hWtN0T8gGmDUaUzLWQvHFo5yThtVwK/VCenFY3wXVbOvNfajEpsTfQM4IN9k/d6gUVX3A==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/chai": { + "version": "4.3.16", + "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.16.tgz", + "integrity": "sha512-PatH4iOdyh3MyWtmHVFXLWCCIhUbopaltqddG9BzB+gMIzee2MJrvd+jouii9Z3wzQJruGWAm7WOMjgfG8hQlQ==", + "license": "MIT", + "peer": true + }, + "node_modules/@types/chai-as-promised": { + "version": "7.1.8", + "resolved": "https://registry.npmjs.org/@types/chai-as-promised/-/chai-as-promised-7.1.8.tgz", + "integrity": "sha512-ThlRVIJhr69FLlh6IctTXFkmhtP3NpMZ2QGq69StYLyKZFp/HOp1VdKZj7RvfNWYYcJ1xlbLGLLWj1UvP5u/Gw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/chai": "*" + } + }, + "node_modules/@types/concat-stream": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/@types/concat-stream/-/concat-stream-1.6.1.tgz", + "integrity": "sha512-eHE4cQPoj6ngxBZMvVf6Hw7Mh4jMW4U9lpGmS5GBPB9RYxlFg+CHaVN7ErNY4W9XfLIEn20b4VDYaIrbq0q4uA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/form-data": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/@types/form-data/-/form-data-0.0.33.tgz", + "integrity": "sha512-8BSvG1kGm83cyJITQMZSulnl6QV8jqAGreJsc5tPu1Jq0vTSOiY/k24Wx82JRpWwZSqrala6sd5rWi6aNXvqcw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "node_modules/@types/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@types/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw==", + "license": "MIT" + }, + "node_modules/@types/minimatch": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", + "license": "MIT", + "peer": true + }, + "node_modules/@types/mocha": { + "version": "10.0.7", + "resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-10.0.7.tgz", + "integrity": "sha512-GN8yJ1mNTcFcah/wKEFIJckJx9iJLoMSzWcfRRuxz/Jk+U6KQNnml+etbtxFK8lPjzOw3zp4Ha/kjSst9fsHYw==", + "license": "MIT", + "peer": true + }, + "node_modules/@types/node": { + "version": "20.14.11", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.11.tgz", + "integrity": "sha512-kprQpL8MMeszbz6ojB5/tU8PLN4kesnN8Gjzw349rDlNgsSzg90lAVj3llK99Dh7JON+t9AuscPPFW6mPbTnSA==", + "license": "MIT", + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@types/pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@types/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha512-uRwJqmiXmh9++aSu1VNEn3iIxWOhd8AHXNSdlaLfdAAdSTY9jYVeGWnzejM3dvrkbqE3/hyQkQQ29IFATEGlew==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/prettier": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", + "license": "MIT", + "peer": true + }, + "node_modules/@types/qs": { + "version": "6.9.15", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.15.tgz", + "integrity": "sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==", + "license": "MIT", + "peer": true + }, + "node_modules/@types/secp256k1": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@types/secp256k1/-/secp256k1-4.0.6.tgz", + "integrity": "sha512-hHxJU6PAEUn0TP4S/ZOzuTUvJWuZ6eIKeNKb5RBpODvSl6hp1Wrw4s7ATY50rklRCScUDpHzVA/DQdSjJ3UoYQ==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/abbrev": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz", + "integrity": "sha512-LEyx4aLEC3x6T0UguF6YILf+ntvmOaWsVfENmIW0E9H09vKlLDGelMjjSm0jkDHALj8A8quZ/HapKNigzwge+Q==", + "license": "ISC", + "peer": true + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "license": "MIT", + "peer": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.3.3", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.3.tgz", + "integrity": "sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==", + "license": "MIT", + "peer": true, + "dependencies": { + "acorn": "^8.11.0" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/adm-zip": { + "version": "0.4.16", + "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.16.tgz", + "integrity": "sha512-TFi4HBKSGfIKsK5YCkKaaFG2m4PEDyViZmEwof3MTIgzimHLto6muaHVpbrljdIvIrFZzEq/p4nafOeLcYegrg==", + "license": "MIT", + "engines": { + "node": ">=0.3.0" + } + }, + "node_modules/aes-js": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-3.0.0.tgz", + "integrity": "sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==", + "license": "MIT" + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "license": "MIT", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "license": "MIT", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==", + "license": "BSD-3-Clause OR MIT", + "optional": true, + "peer": true, + "engines": { + "node": ">=0.4.2" + } + }, + "node_modules/ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "license": "ISC", + "dependencies": { + "string-width": "^4.1.0" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "license": "MIT", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/antlr4ts": { + "version": "0.5.0-alpha.4", + "resolved": "https://registry.npmjs.org/antlr4ts/-/antlr4ts-0.5.0-alpha.4.tgz", + "integrity": "sha512-WPQDt1B74OfPv/IMS2ekXAKkTZIHl88uMetg6q3OTqgFxZ/dxDXI0EWLyZid/1Pe6hTftyg5N7gel5wNAGxXyQ==", + "license": "BSD-3-Clause", + "peer": true + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "license": "MIT", + "peer": true + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" + }, + "node_modules/array-back": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/array-back/-/array-back-3.1.0.tgz", + "integrity": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "license": "MIT" + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", + "license": "MIT", + "peer": true + }, + "node_modules/assertion-error": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", + "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", + "license": "MIT", + "peer": true, + "engines": { + "node": "*" + } + }, + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/async": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w==", + "license": "MIT", + "peer": true + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT", + "peer": true + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "license": "ISC", + "peer": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/axios": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.2.tgz", + "integrity": "sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==", + "license": "MIT", + "peer": true, + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" + }, + "node_modules/base-x": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.10.tgz", + "integrity": "sha512-7d0s06rR9rYaIWHkpfLIFICM/tkSVdoPC9qYAQRpxn9DdKNWNsKC0uk++akckyLq16Tx2WIinnZ6WRriAt6njQ==", + "license": "MIT", + "dependencies": { + "safe-buffer": "^5.0.1" + } + }, + "node_modules/bech32": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/bech32/-/bech32-1.1.4.tgz", + "integrity": "sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==", + "license": "MIT" + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/blakejs": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/blakejs/-/blakejs-1.2.1.tgz", + "integrity": "sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ==", + "license": "MIT" + }, + "node_modules/bn.js": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", + "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==", + "license": "MIT" + }, + "node_modules/body-parser": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", + "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/boxen": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", + "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", + "license": "MIT", + "dependencies": { + "ansi-align": "^3.0.0", + "camelcase": "^6.2.0", + "chalk": "^4.1.0", + "cli-boxes": "^2.2.1", + "string-width": "^4.2.2", + "type-fest": "^0.20.2", + "widest-line": "^3.1.0", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/boxen/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/boxen/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/boxen/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/boxen/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/boxen/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/boxen/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==", + "license": "MIT" + }, + "node_modules/browser-stdout": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", + "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", + "license": "ISC" + }, + "node_modules/browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "license": "MIT", + "dependencies": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/bs58": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz", + "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==", + "license": "MIT", + "dependencies": { + "base-x": "^3.0.2" + } + }, + "node_modules/bs58check": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/bs58check/-/bs58check-2.1.2.tgz", + "integrity": "sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==", + "license": "MIT", + "dependencies": { + "bs58": "^4.0.0", + "create-hash": "^1.1.0", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/buffer-equal-constant-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", + "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==", + "license": "BSD-3-Clause" + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "license": "MIT" + }, + "node_modules/buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==", + "license": "MIT" + }, + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", + "license": "Apache-2.0", + "peer": true + }, + "node_modules/cbor": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/cbor/-/cbor-8.1.0.tgz", + "integrity": "sha512-DwGjNW9omn6EwP70aXsn7FQJx5kO12tX0bZkaTjzdVFM6/7nhA4t0EENocKGx6D2Bch9PE2KzCUf5SceBdeijg==", + "license": "MIT", + "dependencies": { + "nofilter": "^3.1.0" + }, + "engines": { + "node": ">=12.19" + } + }, + "node_modules/chai": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/chai/-/chai-4.4.1.tgz", + "integrity": "sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==", + "license": "MIT", + "peer": true, + "dependencies": { + "assertion-error": "^1.1.0", + "check-error": "^1.0.3", + "deep-eql": "^4.1.3", + "get-func-name": "^2.0.2", + "loupe": "^2.3.6", + "pathval": "^1.1.1", + "type-detect": "^4.0.8" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chai-as-promised": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/chai-as-promised/-/chai-as-promised-7.1.2.tgz", + "integrity": "sha512-aBDHZxRzYnUYuIAIPBH2s511DjlKPzXNlXSGFC8CwmroWQLfrW0LtE1nK3MAwwNhJPa9raEjNCmRoFpG0Hurdw==", + "license": "WTFPL", + "peer": true, + "dependencies": { + "check-error": "^1.0.2" + }, + "peerDependencies": { + "chai": ">= 2.1.2 < 6" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/charenc": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", + "integrity": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==", + "license": "BSD-3-Clause", + "peer": true, + "engines": { + "node": "*" + } + }, + "node_modules/check-error": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.3.tgz", + "integrity": "sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==", + "license": "MIT", + "peer": true, + "dependencies": { + "get-func-name": "^2.0.2" + }, + "engines": { + "node": "*" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "license": "MIT" + }, + "node_modules/cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-boxes": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", + "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-table3": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.5.1.tgz", + "integrity": "sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw==", + "license": "MIT", + "peer": true, + "dependencies": { + "object-assign": "^4.1.0", + "string-width": "^2.1.1" + }, + "engines": { + "node": ">=6" + }, + "optionalDependencies": { + "colors": "^1.1.2" + } + }, + "node_modules/cli-table3/node_modules/ansi-regex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/cli-table3/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/cli-table3/node_modules/string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "license": "MIT", + "peer": true, + "dependencies": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cli-table3/node_modules/strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", + "license": "MIT", + "peer": true, + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "peer": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/command-exists": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", + "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==", + "license": "MIT" + }, + "node_modules/command-line-args": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.2.1.tgz", + "integrity": "sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==", + "license": "MIT", + "peer": true, + "dependencies": { + "array-back": "^3.1.0", + "find-replace": "^3.0.0", + "lodash.camelcase": "^4.3.0", + "typical": "^4.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/command-line-usage": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-6.1.3.tgz", + "integrity": "sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==", + "license": "MIT", + "peer": true, + "dependencies": { + "array-back": "^4.0.2", + "chalk": "^2.4.2", + "table-layout": "^1.0.2", + "typical": "^5.2.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/command-line-usage/node_modules/array-back": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", + "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/command-line-usage/node_modules/typical": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", + "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "license": "MIT", + "engines": { + "node": ">= 12" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "license": "MIT" + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "engines": [ + "node >= 0.8" + ], + "license": "MIT", + "peer": true, + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/concat-stream/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "license": "MIT", + "peer": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/concat-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT", + "peer": true + }, + "node_modules/concat-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "license": "MIT", + "peer": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "license": "MIT", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "license": "MIT" + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "license": "MIT", + "peer": true + }, + "node_modules/create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "license": "MIT", + "dependencies": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "node_modules/create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "license": "MIT", + "dependencies": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "license": "MIT", + "peer": true + }, + "node_modules/crypt": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", + "integrity": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==", + "license": "BSD-3-Clause", + "peer": true, + "engines": { + "node": "*" + } + }, + "node_modules/death": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/death/-/death-1.1.0.tgz", + "integrity": "sha512-vsV6S4KVHvTGxbEcij7hkWRv0It+sGGWVOM67dQde/o5Xjnr+KmLjxWJii2uEObIrt1CcM9w0Yaovx+iOlIL+w==", + "peer": true + }, + "node_modules/debug": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", + "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", + "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/deep-eql": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.4.tgz", + "integrity": "sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==", + "license": "MIT", + "peer": true, + "dependencies": { + "type-detect": "^4.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "license": "MIT", + "peer": true + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "license": "MIT", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/diff": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", + "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/difflib": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/difflib/-/difflib-0.2.4.tgz", + "integrity": "sha512-9YVwmMb0wQHQNr5J9m6BSj6fk4pfGITGQOOs+D9Fl+INODWFOfvhIU1hNv6GgR1RBoC/9NJcwu77zShxV0kT7w==", + "peer": true, + "dependencies": { + "heap": ">= 0.2.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "license": "MIT", + "peer": true, + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dotenv": { + "version": "16.4.5", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", + "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/ecdsa-sig-formatter": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", + "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", + "license": "Apache-2.0", + "dependencies": { + "safe-buffer": "^5.0.1" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "license": "MIT" + }, + "node_modules/elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "license": "MIT", + "dependencies": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/elliptic/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "license": "MIT" + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/enquirer": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz", + "integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==", + "license": "MIT", + "dependencies": { + "ansi-colors": "^4.1.1", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/escodegen": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.8.1.tgz", + "integrity": "sha512-yhi5S+mNTOuRvyW4gWlg5W1byMaQGWWSYHXsuFZ7GBo7tpyOwi2EdzMP/QWxh9hwkD2m+wDVHJsxhRIj+v/b/A==", + "license": "BSD-2-Clause", + "peer": true, + "dependencies": { + "esprima": "^2.7.1", + "estraverse": "^1.9.1", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=0.12.0" + }, + "optionalDependencies": { + "source-map": "~0.2.0" + } + }, + "node_modules/esprima": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", + "integrity": "sha512-OarPfz0lFCiW4/AV2Oy1Rp9qu0iusTKqykwTspGCZtPxmF81JR4MmIebvF1F9+UOKth2ZubLQ4XGGaU+hSn99A==", + "license": "BSD-2-Clause", + "peer": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/estraverse": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz", + "integrity": "sha512-25w1fMXQrGdoquWnScXZGckOv+Wes+JDnuN/+7ex3SauFRS72r2lFDec0EKPt2YD1wUJ/IrfEex+9yp4hfSOJA==", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "license": "BSD-2-Clause", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eth-gas-reporter": { + "version": "0.2.27", + "resolved": "https://registry.npmjs.org/eth-gas-reporter/-/eth-gas-reporter-0.2.27.tgz", + "integrity": "sha512-femhvoAM7wL0GcI8ozTdxfuBtBFJ9qsyIAsmKVjlWAHUbdnnXHt+lKzz/kmldM5lA9jLuNHGwuIxorNpLbR1Zw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@solidity-parser/parser": "^0.14.0", + "axios": "^1.5.1", + "cli-table3": "^0.5.0", + "colors": "1.4.0", + "ethereum-cryptography": "^1.0.3", + "ethers": "^5.7.2", + "fs-readdir-recursive": "^1.1.0", + "lodash": "^4.17.14", + "markdown-table": "^1.1.3", + "mocha": "^10.2.0", + "req-cwd": "^2.0.0", + "sha1": "^1.1.1", + "sync-request": "^6.0.0" + }, + "peerDependencies": { + "@codechecks/client": "^0.1.0" + }, + "peerDependenciesMeta": { + "@codechecks/client": { + "optional": true + } + } + }, + "node_modules/eth-gas-reporter/node_modules/@noble/hashes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.2.0.tgz", + "integrity": "sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT", + "peer": true + }, + "node_modules/eth-gas-reporter/node_modules/@scure/bip32": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.1.5.tgz", + "integrity": "sha512-XyNh1rB0SkEqd3tXcXMi+Xe1fvg+kUIcoRIEujP1Jgv7DqW2r9lg3Ah0NkFaCs9sTkQAQA8kw7xiRXzENi9Rtw==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT", + "peer": true, + "dependencies": { + "@noble/hashes": "~1.2.0", + "@noble/secp256k1": "~1.7.0", + "@scure/base": "~1.1.0" + } + }, + "node_modules/eth-gas-reporter/node_modules/@scure/bip39": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.1.1.tgz", + "integrity": "sha512-t+wDck2rVkh65Hmv280fYdVdY25J9YeEUIgn2LG1WM6gxFkGzcksoDiUkWVpVp3Oex9xGC68JU2dSbUfwZ2jPg==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT", + "peer": true, + "dependencies": { + "@noble/hashes": "~1.2.0", + "@scure/base": "~1.1.0" + } + }, + "node_modules/eth-gas-reporter/node_modules/ethereum-cryptography": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-1.2.0.tgz", + "integrity": "sha512-6yFQC9b5ug6/17CQpCyE3k9eKBMdhyVjzUy1WkiuY/E4vj/SXDBbCw8QEIaXqf0Mf2SnY6RmpDcwlUmBSS0EJw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@noble/hashes": "1.2.0", + "@noble/secp256k1": "1.7.1", + "@scure/bip32": "1.1.5", + "@scure/bip39": "1.1.1" + } + }, + "node_modules/ethereum-bloom-filters": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ethereum-bloom-filters/-/ethereum-bloom-filters-1.1.0.tgz", + "integrity": "sha512-J1gDRkLpuGNvWYzWslBQR9cDV4nd4kfvVTE/Wy4Kkm4yb3EYRSlyi0eB/inTsSTTVyA0+HyzHgbr95Fn/Z1fSw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@noble/hashes": "^1.4.0" + } + }, + "node_modules/ethereum-cryptography": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", + "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", + "license": "MIT", + "dependencies": { + "@types/pbkdf2": "^3.0.0", + "@types/secp256k1": "^4.0.1", + "blakejs": "^1.1.0", + "browserify-aes": "^1.2.0", + "bs58check": "^2.1.2", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "hash.js": "^1.1.7", + "keccak": "^3.0.0", + "pbkdf2": "^3.0.17", + "randombytes": "^2.1.0", + "safe-buffer": "^5.1.2", + "scrypt-js": "^3.0.0", + "secp256k1": "^4.0.1", + "setimmediate": "^1.0.5" + } + }, + "node_modules/ethereumjs-abi": { + "version": "0.6.8", + "resolved": "https://registry.npmjs.org/ethereumjs-abi/-/ethereumjs-abi-0.6.8.tgz", + "integrity": "sha512-Tx0r/iXI6r+lRsdvkFDlut0N08jWMnKRZ6Gkq+Nmw75lZe4e6o3EkSnkaBP5NF6+m5PTGAr9JP43N3LyeoglsA==", + "license": "MIT", + "dependencies": { + "bn.js": "^4.11.8", + "ethereumjs-util": "^6.0.0" + } + }, + "node_modules/ethereumjs-abi/node_modules/@types/bn.js": { + "version": "4.11.6", + "resolved": "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz", + "integrity": "sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/ethereumjs-abi/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "license": "MIT" + }, + "node_modules/ethereumjs-abi/node_modules/ethereumjs-util": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-6.2.1.tgz", + "integrity": "sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==", + "license": "MPL-2.0", + "dependencies": { + "@types/bn.js": "^4.11.3", + "bn.js": "^4.11.0", + "create-hash": "^1.1.2", + "elliptic": "^6.5.2", + "ethereum-cryptography": "^0.1.3", + "ethjs-util": "0.1.6", + "rlp": "^2.2.3" + } + }, + "node_modules/ethereumjs-util": { + "version": "7.1.5", + "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-7.1.5.tgz", + "integrity": "sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==", + "license": "MPL-2.0", + "peer": true, + "dependencies": { + "@types/bn.js": "^5.1.0", + "bn.js": "^5.1.2", + "create-hash": "^1.1.2", + "ethereum-cryptography": "^0.1.3", + "rlp": "^2.2.4" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/ethers": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/ethers/-/ethers-5.7.2.tgz", + "integrity": "sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/abstract-signer": "5.7.0", + "@ethersproject/address": "5.7.0", + "@ethersproject/base64": "5.7.0", + "@ethersproject/basex": "5.7.0", + "@ethersproject/bignumber": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/constants": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/hash": "5.7.0", + "@ethersproject/hdnode": "5.7.0", + "@ethersproject/json-wallets": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/logger": "5.7.0", + "@ethersproject/networks": "5.7.1", + "@ethersproject/pbkdf2": "5.7.0", + "@ethersproject/properties": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/random": "5.7.0", + "@ethersproject/rlp": "5.7.0", + "@ethersproject/sha2": "5.7.0", + "@ethersproject/signing-key": "5.7.0", + "@ethersproject/solidity": "5.7.0", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/units": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@ethersproject/web": "5.7.1", + "@ethersproject/wordlists": "5.7.0" + } + }, + "node_modules/ethjs-unit": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.6.tgz", + "integrity": "sha512-/Sn9Y0oKl0uqQuvgFk/zQgR7aw1g36qX/jzSQ5lSwlO0GigPymk4eGQfeNTD03w1dPOqfz8V77Cy43jH56pagw==", + "license": "MIT", + "peer": true, + "dependencies": { + "bn.js": "4.11.6", + "number-to-bn": "1.7.0" + }, + "engines": { + "node": ">=6.5.0", + "npm": ">=3" + } + }, + "node_modules/ethjs-unit/node_modules/bn.js": { + "version": "4.11.6", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", + "integrity": "sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==", + "license": "MIT", + "peer": true + }, + "node_modules/ethjs-util": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/ethjs-util/-/ethjs-util-0.1.6.tgz", + "integrity": "sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w==", + "license": "MIT", + "dependencies": { + "is-hex-prefixed": "1.0.0", + "strip-hex-prefix": "1.0.0" + }, + "engines": { + "node": ">=6.5.0", + "npm": ">=3" + } + }, + "node_modules/evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "license": "MIT", + "dependencies": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/express": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", + "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.2", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.6.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express-fileupload": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/express-fileupload/-/express-fileupload-1.5.1.tgz", + "integrity": "sha512-LsYG1ALXEB7vlmjuSw8ABeOctMp8a31aUC5ZF55zuz7O2jLFnmJYrCv10py357ky48aEoBQ/9bVXgFynjvaPmA==", + "license": "MIT", + "dependencies": { + "busboy": "^1.6.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "license": "MIT", + "peer": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "license": "MIT", + "peer": true + }, + "node_modules/fast-uri": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.1.tgz", + "integrity": "sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==", + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "license": "ISC", + "peer": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/find-replace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz", + "integrity": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "array-back": "^3.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", + "license": "MIT", + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "license": "BSD-3-Clause", + "bin": { + "flat": "cli.js" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.6", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", + "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "license": "MIT", + "peer": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fp-ts": { + "version": "1.19.3", + "resolved": "https://registry.npmjs.org/fp-ts/-/fp-ts-1.19.3.tgz", + "integrity": "sha512-H5KQDspykdHuztLTg+ajGN0Z2qUjcEf3Ybxc6hLt0k7/zPkn29XnKnxlBPyW2XIddWrGaJBzBl4VLYOtk39yZg==", + "license": "MIT" + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/fs-readdir-recursive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz", + "integrity": "sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==", + "license": "MIT", + "peer": true + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-func-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz", + "integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==", + "license": "MIT", + "peer": true, + "engines": { + "node": "*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-port": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", + "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/ghost-testrpc": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/ghost-testrpc/-/ghost-testrpc-0.0.2.tgz", + "integrity": "sha512-i08dAEgJ2g8z5buJIrCTduwPIhih3DP+hOCTyyryikfV8T0bNvHnGXO67i0DD1H4GBDETTclPy9njZbfluQYrQ==", + "license": "ISC", + "peer": true, + "dependencies": { + "chalk": "^2.4.2", + "node-emoji": "^1.10.0" + }, + "bin": { + "testrpc-sc": "index.js" + } + }, + "node_modules/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "license": "MIT", + "peer": true, + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "license": "MIT", + "peer": true, + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/globby": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz", + "integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/glob": "^7.1.1", + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.0.3", + "glob": "^7.1.3", + "ignore": "^5.1.1", + "merge2": "^1.2.3", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" + }, + "node_modules/handlebars": { + "version": "4.7.8", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", + "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "minimist": "^1.2.5", + "neo-async": "^2.6.2", + "source-map": "^0.6.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "handlebars": "bin/handlebars" + }, + "engines": { + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^3.1.4" + } + }, + "node_modules/handlebars/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hardhat": { + "version": "2.22.6", + "resolved": "https://registry.npmjs.org/hardhat/-/hardhat-2.22.6.tgz", + "integrity": "sha512-abFEnd9QACwEtSvZZGSmzvw7N3zhQN1cDKz5SLHAupfG24qTHofCjqvD5kT5Wwsq5XOL0ON1Mq5rr4v0XX5ciw==", + "license": "MIT", + "dependencies": { + "@ethersproject/abi": "^5.1.2", + "@metamask/eth-sig-util": "^4.0.0", + "@nomicfoundation/edr": "^0.4.1", + "@nomicfoundation/ethereumjs-common": "4.0.4", + "@nomicfoundation/ethereumjs-tx": "5.0.4", + "@nomicfoundation/ethereumjs-util": "9.0.4", + "@nomicfoundation/solidity-analyzer": "^0.1.0", + "@sentry/node": "^5.18.1", + "@types/bn.js": "^5.1.0", + "@types/lru-cache": "^5.1.0", + "adm-zip": "^0.4.16", + "aggregate-error": "^3.0.0", + "ansi-escapes": "^4.3.0", + "boxen": "^5.1.2", + "chalk": "^2.4.2", + "chokidar": "^3.4.0", + "ci-info": "^2.0.0", + "debug": "^4.1.1", + "enquirer": "^2.3.0", + "env-paths": "^2.2.0", + "ethereum-cryptography": "^1.0.3", + "ethereumjs-abi": "^0.6.8", + "find-up": "^2.1.0", + "fp-ts": "1.19.3", + "fs-extra": "^7.0.1", + "glob": "7.2.0", + "immutable": "^4.0.0-rc.12", + "io-ts": "1.10.4", + "keccak": "^3.0.2", + "lodash": "^4.17.11", + "mnemonist": "^0.38.0", + "mocha": "^10.0.0", + "p-map": "^4.0.0", + "raw-body": "^2.4.1", + "resolve": "1.17.0", + "semver": "^6.3.0", + "solc": "0.8.26", + "source-map-support": "^0.5.13", + "stacktrace-parser": "^0.1.10", + "tsort": "0.0.1", + "undici": "^5.14.0", + "uuid": "^8.3.2", + "ws": "^7.4.6" + }, + "bin": { + "hardhat": "internal/cli/bootstrap.js" + }, + "peerDependencies": { + "ts-node": "*", + "typescript": "*" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + }, + "typescript": { + "optional": true + } + } + }, + "node_modules/hardhat-gas-reporter": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/hardhat-gas-reporter/-/hardhat-gas-reporter-1.0.10.tgz", + "integrity": "sha512-02N4+So/fZrzJ88ci54GqwVA3Zrf0C9duuTyGt0CFRIh/CdNwbnTgkXkRfojOMLBQ+6t+lBIkgbsOtqMvNwikA==", + "license": "MIT", + "peer": true, + "dependencies": { + "array-uniq": "1.0.3", + "eth-gas-reporter": "^0.2.25", + "sha1": "^1.1.1" + }, + "peerDependencies": { + "hardhat": "^2.0.2" + } + }, + "node_modules/hardhat/node_modules/@noble/hashes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.2.0.tgz", + "integrity": "sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT" + }, + "node_modules/hardhat/node_modules/@scure/bip32": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.1.5.tgz", + "integrity": "sha512-XyNh1rB0SkEqd3tXcXMi+Xe1fvg+kUIcoRIEujP1Jgv7DqW2r9lg3Ah0NkFaCs9sTkQAQA8kw7xiRXzENi9Rtw==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT", + "dependencies": { + "@noble/hashes": "~1.2.0", + "@noble/secp256k1": "~1.7.0", + "@scure/base": "~1.1.0" + } + }, + "node_modules/hardhat/node_modules/@scure/bip39": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.1.1.tgz", + "integrity": "sha512-t+wDck2rVkh65Hmv280fYdVdY25J9YeEUIgn2LG1WM6gxFkGzcksoDiUkWVpVp3Oex9xGC68JU2dSbUfwZ2jPg==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT", + "dependencies": { + "@noble/hashes": "~1.2.0", + "@scure/base": "~1.1.0" + } + }, + "node_modules/hardhat/node_modules/ethereum-cryptography": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-1.2.0.tgz", + "integrity": "sha512-6yFQC9b5ug6/17CQpCyE3k9eKBMdhyVjzUy1WkiuY/E4vj/SXDBbCw8QEIaXqf0Mf2SnY6RmpDcwlUmBSS0EJw==", + "license": "MIT", + "dependencies": { + "@noble/hashes": "1.2.0", + "@noble/secp256k1": "1.7.1", + "@scure/bip32": "1.1.5", + "@scure/bip39": "1.1.1" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "node_modules/heap": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/heap/-/heap-0.2.7.tgz", + "integrity": "sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==", + "license": "MIT", + "peer": true + }, + "node_modules/hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", + "license": "MIT", + "dependencies": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/http-basic": { + "version": "8.1.3", + "resolved": "https://registry.npmjs.org/http-basic/-/http-basic-8.1.3.tgz", + "integrity": "sha512-/EcDMwJZh3mABI2NhGfHOGOeOZITqfkEO4p/xK+l3NpyncIHUQBoMvCSF/b5GqvKtySC2srL/GGG3+EtlqlmCw==", + "license": "MIT", + "peer": true, + "dependencies": { + "caseless": "^0.12.0", + "concat-stream": "^1.6.2", + "http-response-object": "^3.0.1", + "parse-cache-control": "^1.0.1" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-response-object": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/http-response-object/-/http-response-object-3.0.2.tgz", + "integrity": "sha512-bqX0XTF6fnXSQcEJ2Iuyr75yVakyjIDCqroJQ/aHfSdlM743Cwqoi2nDYMzLGWUcuTWGWy8AAvOKXTfiv6q9RA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/node": "^10.0.3" + } + }, + "node_modules/http-response-object/node_modules/@types/node": { + "version": "10.17.60", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz", + "integrity": "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==", + "license": "MIT", + "peer": true + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "license": "MIT", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/immutable": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.6.tgz", + "integrity": "sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==", + "license": "MIT" + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "license": "ISC", + "peer": true + }, + "node_modules/interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/io-ts": { + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/io-ts/-/io-ts-1.10.4.tgz", + "integrity": "sha512-b23PteSnYXSONJ6JQXRAlvJhuw8KOtkqa87W4wDtvMrud/DTJd5X+NpOOI+O/zZwVq6v0VLAaJ+1EDViKEuN9g==", + "license": "MIT", + "dependencies": { + "fp-ts": "^1.0.0" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-hex-prefixed": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz", + "integrity": "sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA==", + "license": "MIT", + "engines": { + "node": ">=6.5.0", + "npm": ">=3" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "license": "MIT", + "peer": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC", + "peer": true + }, + "node_modules/js-sha3": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz", + "integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "license": "MIT", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonschema": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsonschema/-/jsonschema-1.4.1.tgz", + "integrity": "sha512-S6cATIPVv1z0IlxdN+zUk5EPjkGCdnhN4wVSBlvoUO1tOLJootbo9CquNJmbIh4yikWHiUedhRYrNPn1arpEmQ==", + "license": "MIT", + "peer": true, + "engines": { + "node": "*" + } + }, + "node_modules/jsonwebtoken": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.2.tgz", + "integrity": "sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==", + "license": "MIT", + "dependencies": { + "jws": "^3.2.2", + "lodash.includes": "^4.3.0", + "lodash.isboolean": "^3.0.3", + "lodash.isinteger": "^4.0.4", + "lodash.isnumber": "^3.0.3", + "lodash.isplainobject": "^4.0.6", + "lodash.isstring": "^4.0.1", + "lodash.once": "^4.0.0", + "ms": "^2.1.1", + "semver": "^7.5.4" + }, + "engines": { + "node": ">=12", + "npm": ">=6" + } + }, + "node_modules/jsonwebtoken/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jwa": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", + "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", + "license": "MIT", + "dependencies": { + "buffer-equal-constant-time": "1.0.1", + "ecdsa-sig-formatter": "1.0.11", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/jws": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", + "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", + "license": "MIT", + "dependencies": { + "jwa": "^1.4.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/keccak": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/keccak/-/keccak-3.0.4.tgz", + "integrity": "sha512-3vKuW0jV8J3XNTzvfyicFR5qvxrSAGl7KIhvgOu5cmWwM7tZRj3fMbj/pfIf4be7aznbc+prBWGjywox/g2Y6Q==", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "node-addon-api": "^2.0.0", + "node-gyp-build": "^4.2.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "license": "MIT", + "peer": true, + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", + "license": "MIT", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "license": "MIT" + }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "license": "MIT", + "peer": true + }, + "node_modules/lodash.clonedeep": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", + "integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.includes": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz", + "integrity": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==", + "license": "MIT" + }, + "node_modules/lodash.isboolean": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==", + "license": "MIT" + }, + "node_modules/lodash.isinteger": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz", + "integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==", + "license": "MIT" + }, + "node_modules/lodash.isnumber": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==", + "license": "MIT" + }, + "node_modules/lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", + "license": "MIT" + }, + "node_modules/lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==", + "license": "MIT" + }, + "node_modules/lodash.once": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", + "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", + "license": "MIT" + }, + "node_modules/lodash.truncate": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", + "license": "MIT" + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-symbols/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/log-symbols/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/log-symbols/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/log-symbols/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/log-symbols/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/log-symbols/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/loupe": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.7.tgz", + "integrity": "sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==", + "license": "MIT", + "peer": true, + "dependencies": { + "get-func-name": "^2.0.1" + } + }, + "node_modules/lru_map": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/lru_map/-/lru_map-0.3.3.tgz", + "integrity": "sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==", + "license": "MIT" + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "license": "ISC", + "peer": true + }, + "node_modules/markdown-table": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-1.1.3.tgz", + "integrity": "sha512-1RUZVgQlpJSPWYbFSpmudq5nHY1doEIv89gBtF0s4gW1GF2XorxcA/70M5vq7rLv0a6mhOUccRsqkwhwLCIQ2Q==", + "license": "MIT", + "peer": true + }, + "node_modules/md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "license": "MIT", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memorystream": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", + "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "license": "MIT" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micro-ftch": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/micro-ftch/-/micro-ftch-0.3.1.tgz", + "integrity": "sha512-/0LLxhzP0tfiR5hcQebtudP56gUurs2CLkGarnCiB/OqEyUFQ6U3paQi/tgLv0hBJYt2rnr9MNpxz4fiiugstg==", + "license": "MIT", + "peer": true + }, + "node_modules/micromatch": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", + "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", + "license": "MIT", + "peer": true, + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "license": "ISC" + }, + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", + "license": "MIT" + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "license": "MIT", + "peer": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "license": "MIT", + "peer": true, + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/mnemonist": { + "version": "0.38.5", + "resolved": "https://registry.npmjs.org/mnemonist/-/mnemonist-0.38.5.tgz", + "integrity": "sha512-bZTFT5rrPKtPJxj8KSV0WkPyNxl72vQepqqVUAW2ARUpUSF2qXMB6jZj7hW5/k7C1rtpzqbD/IIbJwLXUjCHeg==", + "license": "MIT", + "dependencies": { + "obliterator": "^2.0.0" + } + }, + "node_modules/mocha": { + "version": "10.6.0", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.6.0.tgz", + "integrity": "sha512-hxjt4+EEB0SA0ZDygSS015t65lJw/I2yRCS3Ae+SJ5FrbzrXgfYwJr96f0OvIXdj7h4lv/vLCrH3rkiuizFSvw==", + "license": "MIT", + "dependencies": { + "ansi-colors": "^4.1.3", + "browser-stdout": "^1.3.1", + "chokidar": "^3.5.3", + "debug": "^4.3.5", + "diff": "^5.2.0", + "escape-string-regexp": "^4.0.0", + "find-up": "^5.0.0", + "glob": "^8.1.0", + "he": "^1.2.0", + "js-yaml": "^4.1.0", + "log-symbols": "^4.1.0", + "minimatch": "^5.1.6", + "ms": "^2.1.3", + "serialize-javascript": "^6.0.2", + "strip-json-comments": "^3.1.1", + "supports-color": "^8.1.1", + "workerpool": "^6.5.1", + "yargs": "^16.2.0", + "yargs-parser": "^20.2.9", + "yargs-unparser": "^2.0.0" + }, + "bin": { + "_mocha": "bin/_mocha", + "mocha": "bin/mocha.js" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/mocha/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/mocha/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mocha/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mocha/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/mocha/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/mocha/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mocha/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/mocha/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/mocha/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mocha/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mocha/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/mocha/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "license": "MIT" + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "license": "MIT", + "peer": true + }, + "node_modules/node-addon-api": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz", + "integrity": "sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==", + "license": "MIT" + }, + "node_modules/node-emoji": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.11.0.tgz", + "integrity": "sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==", + "license": "MIT", + "peer": true, + "dependencies": { + "lodash": "^4.17.21" + } + }, + "node_modules/node-gyp-build": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.1.tgz", + "integrity": "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==", + "license": "MIT", + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" + } + }, + "node_modules/nofilter": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/nofilter/-/nofilter-3.1.0.tgz", + "integrity": "sha512-l2NNj07e9afPnhAhvgVrCD/oy2Ai1yfLpuo3EpiO1jFTsB4sFz6oIfAfSZyQzVpkZQ9xS8ZS5g1jCBgq4Hwo0g==", + "license": "MIT", + "engines": { + "node": ">=12.19" + } + }, + "node_modules/nopt": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz", + "integrity": "sha512-4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg==", + "license": "ISC", + "peer": true, + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/number-to-bn": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/number-to-bn/-/number-to-bn-1.7.0.tgz", + "integrity": "sha512-wsJ9gfSz1/s4ZsJN01lyonwuxA1tml6X1yBDnfpMglypcBRFZZkus26EdPSlqS5GJfYddVZa22p3VNb3z5m5Ig==", + "license": "MIT", + "peer": true, + "dependencies": { + "bn.js": "4.11.6", + "strip-hex-prefix": "1.0.0" + }, + "engines": { + "node": ">=6.5.0", + "npm": ">=3" + } + }, + "node_modules/number-to-bn/node_modules/bn.js": { + "version": "4.11.6", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", + "integrity": "sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==", + "license": "MIT", + "peer": true + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", + "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/obliterator": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/obliterator/-/obliterator-2.0.4.tgz", + "integrity": "sha512-lgHwxlxV1qIg1Eap7LgIeoBWIMFibOjbrYPIPJZcI1mmGAI2m3lNYpK12Y+GBdPQ0U1hRwSord7GIaawz962qQ==", + "license": "MIT" + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "license": "MIT", + "peer": true, + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/ordinal": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/ordinal/-/ordinal-1.0.3.tgz", + "integrity": "sha512-cMddMgb2QElm8G7vdaa02jhUNbTSrhsgAGUz1OokD83uJTwSUn+nKoNoKVVaRa08yF6sgfO7Maou1+bgLd9rdQ==", + "license": "MIT", + "peer": true + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "license": "MIT", + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", + "license": "MIT", + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "license": "MIT", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/parse-cache-control": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-cache-control/-/parse-cache-control-1.0.1.tgz", + "integrity": "sha512-60zvsJReQPX5/QP0Kzfd/VrpjScIQ7SHBW6bFCYfEP+fp0Eppr1SHhIO5nd1PjZtvclzSzES9D/p5nFJurwfWg==", + "peer": true + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path": { + "version": "0.12.7", + "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", + "integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==", + "license": "MIT", + "dependencies": { + "process": "^0.11.1", + "util": "^0.10.3" + } + }, + "node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "license": "MIT" + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "license": "MIT" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/pathval": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", + "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==", + "license": "MIT", + "peer": true, + "engines": { + "node": "*" + } + }, + "node_modules/pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "license": "MIT", + "dependencies": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "peer": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "license": "MIT", + "peer": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "license": "MIT", + "peer": true + }, + "node_modules/promise": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "license": "MIT", + "peer": true, + "dependencies": { + "asap": "~2.0.6" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "license": "MIT", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "license": "MIT", + "peer": true + }, + "node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "peer": true + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "license": "MIT", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", + "peer": true, + "dependencies": { + "resolve": "^1.1.6" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/recursive-readdir": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", + "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", + "license": "MIT", + "peer": true, + "dependencies": { + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/reduce-flatten": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-2.0.0.tgz", + "integrity": "sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/req-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/req-cwd/-/req-cwd-2.0.0.tgz", + "integrity": "sha512-ueoIoLo1OfB6b05COxAA9UpeoscNpYyM+BqYlA7H6LVF4hKGPXQQSSaD2YmvDVJMkk4UDpAHIeU1zG53IqjvlQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "req-from": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/req-from": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/req-from/-/req-from-2.0.0.tgz", + "integrity": "sha512-LzTfEVDVQHBRfjOUMgNBA+V6DWsSnoeKzf42J7l0xa/B4jyPOuuF5MlNSmomLNGemWTnV2TIdjSSLnEn95fOQA==", + "license": "MIT", + "peer": true, + "dependencies": { + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", + "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "license": "MIT", + "dependencies": { + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "license": "MIT", + "peer": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "license": "MIT", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "node_modules/rlp": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/rlp/-/rlp-2.2.7.tgz", + "integrity": "sha512-d5gdPmgQ0Z+AklL2NVXr/IoSjNZFfTVvQWzL/AM2AOcSzYP2xjlb0AC8YyCLc41MSNf6P6QVtjgPdmVtzb+4lQ==", + "license": "MPL-2.0", + "dependencies": { + "bn.js": "^5.2.0" + }, + "bin": { + "rlp": "bin/rlp" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "peer": true, + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" + }, + "node_modules/sc-istanbul": { + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/sc-istanbul/-/sc-istanbul-0.4.6.tgz", + "integrity": "sha512-qJFF/8tW/zJsbyfh/iT/ZM5QNHE3CXxtLJbZsL+CzdJLBsPD7SedJZoUA4d8iAcN2IoMp/Dx80shOOd2x96X/g==", + "license": "BSD-3-Clause", + "peer": true, + "dependencies": { + "abbrev": "1.0.x", + "async": "1.x", + "escodegen": "1.8.x", + "esprima": "2.7.x", + "glob": "^5.0.15", + "handlebars": "^4.0.1", + "js-yaml": "3.x", + "mkdirp": "0.5.x", + "nopt": "3.x", + "once": "1.x", + "resolve": "1.1.x", + "supports-color": "^3.1.0", + "which": "^1.1.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "istanbul": "lib/cli.js" + } + }, + "node_modules/sc-istanbul/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", + "peer": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/sc-istanbul/node_modules/glob": { + "version": "5.0.15", + "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", + "integrity": "sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", + "peer": true, + "dependencies": { + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "2 || 3", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/sc-istanbul/node_modules/has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sc-istanbul/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "license": "MIT", + "peer": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/sc-istanbul/node_modules/js-yaml/node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "license": "BSD-2-Clause", + "peer": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/sc-istanbul/node_modules/resolve": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", + "integrity": "sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==", + "license": "MIT", + "peer": true + }, + "node_modules/sc-istanbul/node_modules/supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha512-Jds2VIYDrlp5ui7t8abHN2bjAu4LV/q4N2KivFPpGH0lrka0BMq/33AmECUXlKPcHigkNaqfXRENFju+rlcy+A==", + "license": "MIT", + "peer": true, + "dependencies": { + "has-flag": "^1.0.0" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/scrypt-js": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/scrypt-js/-/scrypt-js-3.0.1.tgz", + "integrity": "sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==", + "license": "MIT" + }, + "node_modules/secp256k1": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.3.tgz", + "integrity": "sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA==", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "elliptic": "^6.5.4", + "node-addon-api": "^2.0.0", + "node-gyp-build": "^4.2.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "license": "MIT", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "license": "MIT" + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, + "node_modules/sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "license": "(MIT AND BSD-3-Clause)", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "bin": { + "sha.js": "bin.js" + } + }, + "node_modules/sha1": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/sha1/-/sha1-1.1.1.tgz", + "integrity": "sha512-dZBS6OrMjtgVkopB1Gmo4RQCDKiZsqcpAQpkV/aaj+FCrCg8r4I4qMkDPQjBgLIxlmu9k4nUbWq6ohXahOneYA==", + "license": "BSD-3-Clause", + "peer": true, + "dependencies": { + "charenc": ">= 0.0.1", + "crypt": ">= 0.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/shelljs": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", + "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", + "license": "BSD-3-Clause", + "peer": true, + "dependencies": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + }, + "bin": { + "shjs": "bin/shjs" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/slice-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/slice-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/solc": { + "version": "0.8.26", + "resolved": "https://registry.npmjs.org/solc/-/solc-0.8.26.tgz", + "integrity": "sha512-yiPQNVf5rBFHwN6SIf3TUUvVAFKcQqmSUFeq+fb6pNRCo0ZCgpYOZDi3BVoezCPIAcKrVYd/qXlBLUP9wVrZ9g==", + "license": "MIT", + "dependencies": { + "command-exists": "^1.2.8", + "commander": "^8.1.0", + "follow-redirects": "^1.12.1", + "js-sha3": "0.8.0", + "memorystream": "^0.3.1", + "semver": "^5.5.0", + "tmp": "0.0.33" + }, + "bin": { + "solcjs": "solc.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/solc/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/solidity-coverage": { + "version": "0.8.12", + "resolved": "https://registry.npmjs.org/solidity-coverage/-/solidity-coverage-0.8.12.tgz", + "integrity": "sha512-8cOB1PtjnjFRqOgwFiD8DaUsYJtVJ6+YdXQtSZDrLGf8cdhhh8xzTtGzVTGeBf15kTv0v7lYPJlV/az7zLEPJw==", + "license": "ISC", + "peer": true, + "dependencies": { + "@ethersproject/abi": "^5.0.9", + "@solidity-parser/parser": "^0.18.0", + "chalk": "^2.4.2", + "death": "^1.1.0", + "difflib": "^0.2.4", + "fs-extra": "^8.1.0", + "ghost-testrpc": "^0.0.2", + "global-modules": "^2.0.0", + "globby": "^10.0.1", + "jsonschema": "^1.2.4", + "lodash": "^4.17.21", + "mocha": "^10.2.0", + "node-emoji": "^1.10.0", + "pify": "^4.0.1", + "recursive-readdir": "^2.2.2", + "sc-istanbul": "^0.4.5", + "semver": "^7.3.4", + "shelljs": "^0.8.3", + "web3-utils": "^1.3.6" + }, + "bin": { + "solidity-coverage": "plugins/bin.js" + }, + "peerDependencies": { + "hardhat": "^2.11.0" + } + }, + "node_modules/solidity-coverage/node_modules/@solidity-parser/parser": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/@solidity-parser/parser/-/parser-0.18.0.tgz", + "integrity": "sha512-yfORGUIPgLck41qyN7nbwJRAx17/jAIXCTanHOJZhB6PJ1iAk/84b/xlsVKFSyNyLXIj0dhppoE0+CRws7wlzA==", + "license": "MIT", + "peer": true + }, + "node_modules/solidity-coverage/node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "license": "MIT", + "peer": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/solidity-coverage/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "license": "ISC", + "peer": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/source-map": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.2.0.tgz", + "integrity": "sha512-CBdZ2oa/BHhS4xj5DlhjWNHcan57/5YuvfdLf17iVmIpd9KRm+DFLmC6nBNj+6Ua7Kt3TmOjDpQT1aTYOQtoUA==", + "optional": true, + "peer": true, + "dependencies": { + "amdefine": ">=0.0.4" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "license": "BSD-3-Clause", + "peer": true + }, + "node_modules/stacktrace-parser": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz", + "integrity": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==", + "license": "MIT", + "dependencies": { + "type-fest": "^0.7.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/stacktrace-parser/node_modules/type-fest": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz", + "integrity": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=8" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-format": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/string-format/-/string-format-2.0.0.tgz", + "integrity": "sha512-bbEs3scLeYNXLecRRuk6uJxdXUSj6le/8rNPHChIJTn2V79aXVTR1EH2OH5zLKKoz0V02fOUKZZcw01pLUShZA==", + "license": "WTFPL OR MIT", + "peer": true + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-hex-prefix": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-hex-prefix/-/strip-hex-prefix-1.0.0.tgz", + "integrity": "sha512-q8d4ue7JGEiVcypji1bALTos+0pWtyGlivAWyPuTkHzuTCJqrK9sWxYQZUq6Nq3cuyv3bm734IhHvHtGGURU6A==", + "license": "MIT", + "dependencies": { + "is-hex-prefixed": "1.0.0" + }, + "engines": { + "node": ">=6.5.0", + "npm": ">=3" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/sync-request": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/sync-request/-/sync-request-6.1.0.tgz", + "integrity": "sha512-8fjNkrNlNCrVc/av+Jn+xxqfCjYaBoHqCsDz6mt030UMxJGr+GSfCV1dQt2gRtlL63+VPidwDVLr7V2OcTSdRw==", + "license": "MIT", + "peer": true, + "dependencies": { + "http-response-object": "^3.0.1", + "sync-rpc": "^1.2.1", + "then-request": "^6.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/sync-rpc": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/sync-rpc/-/sync-rpc-1.3.6.tgz", + "integrity": "sha512-J8jTXuZzRlvU7HemDgHi3pGnh/rkoqR/OZSjhTyyZrEkkYQbk7Z33AXp37mkPfPpfdOuj7Ex3H/TJM1z48uPQw==", + "license": "MIT", + "peer": true, + "dependencies": { + "get-port": "^3.1.0" + } + }, + "node_modules/table": { + "version": "6.8.2", + "resolved": "https://registry.npmjs.org/table/-/table-6.8.2.tgz", + "integrity": "sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==", + "license": "BSD-3-Clause", + "dependencies": { + "ajv": "^8.0.1", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/table-layout": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-1.0.2.tgz", + "integrity": "sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==", + "license": "MIT", + "peer": true, + "dependencies": { + "array-back": "^4.0.1", + "deep-extend": "~0.6.0", + "typical": "^5.2.0", + "wordwrapjs": "^4.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/table-layout/node_modules/array-back": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", + "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/table-layout/node_modules/typical": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", + "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/then-request": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/then-request/-/then-request-6.0.2.tgz", + "integrity": "sha512-3ZBiG7JvP3wbDzA9iNY5zJQcHL4jn/0BWtXIkagfz7QgOL/LqjCEOBQuJNZfu0XYnv5JhKh+cDxCPM4ILrqruA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/concat-stream": "^1.6.0", + "@types/form-data": "0.0.33", + "@types/node": "^8.0.0", + "@types/qs": "^6.2.31", + "caseless": "~0.12.0", + "concat-stream": "^1.6.0", + "form-data": "^2.2.0", + "http-basic": "^8.1.1", + "http-response-object": "^3.0.1", + "promise": "^8.0.0", + "qs": "^6.4.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/then-request/node_modules/@types/node": { + "version": "8.10.66", + "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz", + "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==", + "license": "MIT", + "peer": true + }, + "node_modules/then-request/node_modules/form-data": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.5.1.tgz", + "integrity": "sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==", + "license": "MIT", + "peer": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "license": "MIT", + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/ts-command-line-args": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/ts-command-line-args/-/ts-command-line-args-2.5.1.tgz", + "integrity": "sha512-H69ZwTw3rFHb5WYpQya40YAX2/w7Ut75uUECbgBIsLmM+BNuYnxsltfyyLMxy6sEeKxgijLTnQtLd0nKd6+IYw==", + "license": "ISC", + "peer": true, + "dependencies": { + "chalk": "^4.1.0", + "command-line-args": "^5.1.1", + "command-line-usage": "^6.1.0", + "string-format": "^2.0.0" + }, + "bin": { + "write-markdown": "dist/write-markdown.js" + } + }, + "node_modules/ts-command-line-args/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/ts-command-line-args/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "peer": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/ts-command-line-args/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/ts-command-line-args/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT", + "peer": true + }, + "node_modules/ts-command-line-args/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ts-command-line-args/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "peer": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ts-essentials": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/ts-essentials/-/ts-essentials-7.0.3.tgz", + "integrity": "sha512-8+gr5+lqO3G84KdiTSMRLtuyJ+nTBVRKuCrK4lidMPdVeEp0uqC875uE5NMcaA7YYMN7XsNiFQuMvasF8HT/xQ==", + "license": "MIT", + "peer": true, + "peerDependencies": { + "typescript": ">=3.7.0" + } + }, + "node_modules/ts-node": { + "version": "10.9.2", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", + "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } + } + }, + "node_modules/ts-node/node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "license": "BSD-3-Clause", + "peer": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "license": "0BSD" + }, + "node_modules/tsort": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/tsort/-/tsort-0.0.1.tgz", + "integrity": "sha512-Tyrf5mxF8Ofs1tNoxA13lFeZ2Zrbd6cKbuH3V+MQ5sb6DtBj5FjrXVsRWT8YvNAQTqNoz66dz1WsbigI22aEnw==", + "license": "MIT" + }, + "node_modules/tweetnacl": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz", + "integrity": "sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==", + "license": "Unlicense" + }, + "node_modules/tweetnacl-util": { + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/tweetnacl-util/-/tweetnacl-util-0.15.1.tgz", + "integrity": "sha512-RKJBIj8lySrShN4w6i/BonWp2Z/uxwC3h4y7xsRrpP59ZboCd0GpEVsOnMDYLMmKBpYhb5TgHzZXy7wTfYFBRw==", + "license": "Unlicense" + }, + "node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "license": "MIT", + "peer": true, + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "license": "MIT", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typechain": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/typechain/-/typechain-8.3.2.tgz", + "integrity": "sha512-x/sQYr5w9K7yv3es7jo4KTX05CLxOf7TRWwoHlrjRh8H82G64g+k7VuWPJlgMo6qrjfCulOdfBjiaDtmhFYD/Q==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/prettier": "^2.1.1", + "debug": "^4.3.1", + "fs-extra": "^7.0.0", + "glob": "7.1.7", + "js-sha3": "^0.8.0", + "lodash": "^4.17.15", + "mkdirp": "^1.0.4", + "prettier": "^2.3.1", + "ts-command-line-args": "^2.2.0", + "ts-essentials": "^7.0.1" + }, + "bin": { + "typechain": "dist/cli/cli.js" + }, + "peerDependencies": { + "typescript": ">=4.3.0" + } + }, + "node_modules/typechain/node_modules/glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", + "peer": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/typechain/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "license": "MIT", + "peer": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "license": "MIT", + "peer": true + }, + "node_modules/typescript": { + "version": "5.5.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.3.tgz", + "integrity": "sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==", + "license": "Apache-2.0", + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/typical": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-4.0.0.tgz", + "integrity": "sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/uglify-js": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.0.tgz", + "integrity": "sha512-wNKHUY2hYYkf6oSFfhwwiHo4WCHzHmzcXsqXYTN9ja3iApYIFbb2U6ics9hBcYLHcYGQoAlwnZlTrf3oF+BL/Q==", + "license": "BSD-2-Clause", + "optional": true, + "peer": true, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/undici": { + "version": "5.28.4", + "resolved": "https://registry.npmjs.org/undici/-/undici-5.28.4.tgz", + "integrity": "sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==", + "license": "MIT", + "dependencies": { + "@fastify/busboy": "^2.0.0" + }, + "engines": { + "node": ">=14.0" + } + }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "license": "MIT" + }, + "node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/utf8": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/utf8/-/utf8-3.0.0.tgz", + "integrity": "sha512-E8VjFIQ/TyQgp+TZfS6l8yp/xWppSAHzidGiRrqe4bK4XP9pTRyKFgGJpO3SN7zdX4DeomTrwaseCHovfpFcqQ==", + "license": "MIT", + "peer": true + }, + "node_modules/util": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", + "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", + "license": "MIT", + "dependencies": { + "inherits": "2.0.3" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "license": "MIT" + }, + "node_modules/util/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "license": "ISC" + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "license": "MIT", + "peer": true + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/web3-utils": { + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/web3-utils/-/web3-utils-1.10.4.tgz", + "integrity": "sha512-tsu8FiKJLk2PzhDl9fXbGUWTkkVXYhtTA+SmEFkKft+9BgwLxfCRpU96sWv7ICC8zixBNd3JURVoiR3dUXgP8A==", + "license": "LGPL-3.0", + "peer": true, + "dependencies": { + "@ethereumjs/util": "^8.1.0", + "bn.js": "^5.2.1", + "ethereum-bloom-filters": "^1.0.6", + "ethereum-cryptography": "^2.1.2", + "ethjs-unit": "0.1.6", + "number-to-bn": "1.7.0", + "randombytes": "^2.1.0", + "utf8": "3.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/web3-utils/node_modules/ethereum-cryptography": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-2.2.1.tgz", + "integrity": "sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@noble/curves": "1.4.2", + "@noble/hashes": "1.4.0", + "@scure/bip32": "1.4.0", + "@scure/bip39": "1.3.0" + } + }, + "node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "license": "ISC", + "peer": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/widest-line": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", + "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", + "license": "MIT", + "dependencies": { + "string-width": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", + "license": "MIT", + "peer": true + }, + "node_modules/wordwrapjs": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-4.0.1.tgz", + "integrity": "sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==", + "license": "MIT", + "peer": true, + "dependencies": { + "reduce-flatten": "^2.0.0", + "typical": "^5.2.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/wordwrapjs/node_modules/typical": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", + "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/workerpool": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.5.1.tgz", + "integrity": "sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==", + "license": "Apache-2.0" + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "license": "ISC" + }, + "node_modules/ws": { + "version": "7.4.6", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz", + "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==", + "license": "MIT", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "license": "MIT", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-unparser": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", + "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", + "license": "MIT", + "dependencies": { + "camelcase": "^6.0.0", + "decamelize": "^4.0.0", + "flat": "^5.0.2", + "is-plain-obj": "^2.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/vote-block-skripsi/election-api/package.json b/vote-block-skripsi/election-api/package.json new file mode 100644 index 0000000..0423fb1 --- /dev/null +++ b/vote-block-skripsi/election-api/package.json @@ -0,0 +1,25 @@ +{ + "name": "election-api", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1", + "start": "node index.js" + }, + "author": "", + "license": "ISC", + "dependencies": { + "@nomicfoundation/hardhat-toolbox": "^2.0.1", + "dotenv": "^16.0.3", + "ethers": "^5.7.1", + "express": "^4.18.2", + "express-fileupload": "^1.4.0", + "hardhat": "^2.22.3", + "jsonwebtoken": "^9.0.2", + "path": "^0.12.7" + }, + "devDependencies": { + "@nomicfoundation/hardhat-verify": "^2.0.6" + } +} \ No newline at end of file diff --git a/vote-block-skripsi/election-api/scripts/deploy.js b/vote-block-skripsi/election-api/scripts/deploy.js new file mode 100644 index 0000000..b2da167 --- /dev/null +++ b/vote-block-skripsi/election-api/scripts/deploy.js @@ -0,0 +1,17 @@ +const hre = require("hardhat"); + +async function main() { + const Election = await hre.ethers.getContractFactory("Election"); + const election_ = await Election.deploy(); + + await election_.deployed(); + + console.log( + `Contract Address: ${election_.address}` + ); +} + +main().catch((error) => { + console.error(error); + process.exitCode = 1; +}); diff --git a/vote-block-skripsi/election-api/test/Lock.js b/vote-block-skripsi/election-api/test/Lock.js new file mode 100644 index 0000000..f0e6ba1 --- /dev/null +++ b/vote-block-skripsi/election-api/test/Lock.js @@ -0,0 +1,126 @@ +const { + time, + loadFixture, +} = require("@nomicfoundation/hardhat-toolbox/network-helpers"); +const { anyValue } = require("@nomicfoundation/hardhat-chai-matchers/withArgs"); +const { expect } = require("chai"); + +describe("Lock", function () { + // We define a fixture to reuse the same setup in every test. + // We use loadFixture to run this setup once, snapshot that state, + // and reset Hardhat Network to that snapshot in every test. + async function deployOneYearLockFixture() { + const ONE_YEAR_IN_SECS = 365 * 24 * 60 * 60; + const ONE_GWEI = 1_000_000_000; + + const lockedAmount = ONE_GWEI; + const unlockTime = (await time.latest()) + ONE_YEAR_IN_SECS; + + // Contracts are deployed using the first signer/account by default + const [owner, otherAccount] = await ethers.getSigners(); + + const Lock = await ethers.getContractFactory("Lock"); + const lock = await Lock.deploy(unlockTime, { value: lockedAmount }); + + return { lock, unlockTime, lockedAmount, owner, otherAccount }; + } + + describe("Deployment", function () { + it("Should set the right unlockTime", async function () { + const { lock, unlockTime } = await loadFixture(deployOneYearLockFixture); + + expect(await lock.unlockTime()).to.equal(unlockTime); + }); + + it("Should set the right owner", async function () { + const { lock, owner } = await loadFixture(deployOneYearLockFixture); + + expect(await lock.owner()).to.equal(owner.address); + }); + + it("Should receive and store the funds to lock", async function () { + const { lock, lockedAmount } = await loadFixture( + deployOneYearLockFixture + ); + + expect(await ethers.provider.getBalance(lock.target)).to.equal( + lockedAmount + ); + }); + + it("Should fail if the unlockTime is not in the future", async function () { + // We don't use the fixture here because we want a different deployment + const latestTime = await time.latest(); + const Lock = await ethers.getContractFactory("Lock"); + await expect(Lock.deploy(latestTime, { value: 1 })).to.be.revertedWith( + "Unlock time should be in the future" + ); + }); + }); + + describe("Withdrawals", function () { + describe("Validations", function () { + it("Should revert with the right error if called too soon", async function () { + const { lock } = await loadFixture(deployOneYearLockFixture); + + await expect(lock.withdraw()).to.be.revertedWith( + "You can't withdraw yet" + ); + }); + + it("Should revert with the right error if called from another account", async function () { + const { lock, unlockTime, otherAccount } = await loadFixture( + deployOneYearLockFixture + ); + + // We can increase the time in Hardhat Network + await time.increaseTo(unlockTime); + + // We use lock.connect() to send a transaction from another account + await expect(lock.connect(otherAccount).withdraw()).to.be.revertedWith( + "You aren't the owner" + ); + }); + + it("Shouldn't fail if the unlockTime has arrived and the owner calls it", async function () { + const { lock, unlockTime } = await loadFixture( + deployOneYearLockFixture + ); + + // Transactions are sent using the first signer by default + await time.increaseTo(unlockTime); + + await expect(lock.withdraw()).not.to.be.reverted; + }); + }); + + describe("Events", function () { + it("Should emit an event on withdrawals", async function () { + const { lock, unlockTime, lockedAmount } = await loadFixture( + deployOneYearLockFixture + ); + + await time.increaseTo(unlockTime); + + await expect(lock.withdraw()) + .to.emit(lock, "Withdrawal") + .withArgs(lockedAmount, anyValue); // We accept any value as `when` arg + }); + }); + + describe("Transfers", function () { + it("Should transfer the funds to the owner", async function () { + const { lock, unlockTime, lockedAmount, owner } = await loadFixture( + deployOneYearLockFixture + ); + + await time.increaseTo(unlockTime); + + await expect(lock.withdraw()).to.changeEtherBalances( + [owner, lock], + [lockedAmount, -lockedAmount] + ); + }); + }); + }); +}); diff --git a/vote-block-skripsi/election-api/vercel.json b/vote-block-skripsi/election-api/vercel.json new file mode 100644 index 0000000..e4be1a2 --- /dev/null +++ b/vote-block-skripsi/election-api/vercel.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "builds": [ + { + "src": "index.js", + "use": "@vercel/node" + } + ], + "routes": [ + { + "src": "/(.*)", + "dest": "index.js" + } + ] +} \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/boot.key b/vote-block-skripsi/geth-vote/boot.key new file mode 100644 index 0000000..9c8ff5b --- /dev/null +++ b/vote-block-skripsi/geth-vote/boot.key @@ -0,0 +1 @@ +01d50f22d405dfe756d340bb99518cabc86d482b7f8d03722164c196406af71f \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/bootnode.log b/vote-block-skripsi/geth-vote/bootnode.log new file mode 100644 index 0000000..49e4e2e Binary files /dev/null and b/vote-block-skripsi/geth-vote/bootnode.log differ diff --git a/vote-block-skripsi/geth-vote/enodeurl b/vote-block-skripsi/geth-vote/enodeurl new file mode 100644 index 0000000..2af6976 --- /dev/null +++ b/vote-block-skripsi/geth-vote/enodeurl @@ -0,0 +1 @@ +enode://968165baa9dcb895735ab6ee442703ea28ea69e0b61bd855cb37e9d14d71e06141616c454a19954212c798cfdf7a5104fb0a045b9898ca67489a3fef0f4cac26@127.0.0.1:0?discport=30301 diff --git a/vote-block-skripsi/geth-vote/genesis.json b/vote-block-skripsi/geth-vote/genesis.json new file mode 100644 index 0000000..b43ee11 --- /dev/null +++ b/vote-block-skripsi/geth-vote/genesis.json @@ -0,0 +1,26 @@ +{ + "config": { + "chainId": 120202, + "homesteadBlock": 0, + "eip150Block": 0, + "eip155Block": 0, + "eip158Block": 0, + "byzantiumBlock": 0, + "constantinopleBlock": 0, + "petersburgBlock": 0, + "istanbulBlock": 0, + "berlinBlock": 0, + "clique": { + "period": 5, + "epoch": 30000 + } + }, + "difficulty": "1", + "gasLimit": "8000000", + "extradata": "0x00000000000000000000000000000000000000000000000000000000000000004258347DeDB78fBDFd5891Da6c280f1fd3d3c4910000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "alloc": { + "4258347DeDB78fBDFd5891Da6c280f1fd3d3c491": { "balance": "1000000000000000000000000000000" }, + "FB6Cd3f865570b3f86631c71dE0Efce5Be0940D3": { "balance": "1000000000000000000000000000000" }, + "bF3fe388cd2B24248fBA34b13F549078ece6A727": { "balance": "1000000000000000000000000000000" } + } +} diff --git a/vote-block-skripsi/geth-vote/node1.log b/vote-block-skripsi/geth-vote/node1.log new file mode 100644 index 0000000..6973301 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node1.log @@ -0,0 +1,5546 @@ +INFO [08-24|09:19:10.413] Maximum peer count ETH=50 total=50 +INFO [08-24|09:19:10.415] Smartcard socket not found, disabling err="stat /run/pcscd/pcscd.comm: no such file or directory" +INFO [08-24|09:19:10.429] Set global gas cap cap=50,000,000 +INFO [08-24|09:19:10.429] Initializing the KZG library backend=gokzg +INFO [08-24|09:19:10.563] Allocated trie memory caches clean=154.00MiB dirty=256.00MiB +INFO [08-24|09:19:10.565] Using pebble as the backing database +INFO [08-24|09:19:10.565] Allocated cache and file handles database=/home/silviaprada/geth-vote/node1/data/geth/chaindata cache=512.00MiB handles=524,288 +INFO [08-24|09:19:10.897] Opened ancient database database=/home/silviaprada/geth-vote/node1/data/geth/chaindata/ancient/chain readonly=false +INFO [08-24|09:19:10.898] State scheme set to already existing scheme=hash +INFO [08-24|09:19:10.904] Initialising Ethereum protocol network=120,202 dbversion=8 +INFO [08-24|09:19:10.905] +INFO [08-24|09:19:10.906] --------------------------------------------------------------------------------------------------------------------------------------------------------- +INFO [08-24|09:19:10.906] Chain ID: 120202 (unknown) +INFO [08-24|09:19:10.906] Consensus: Clique (proof-of-authority) +INFO [08-24|09:19:10.906] +INFO [08-24|09:19:10.906] Pre-Merge hard forks (block based): +INFO [08-24|09:19:10.906] - Homestead: #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/homestead.md) +INFO [08-24|09:19:10.906] - Tangerine Whistle (EIP 150): #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/tangerine-whistle.md) +INFO [08-24|09:19:10.906] - Spurious Dragon/1 (EIP 155): #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/spurious-dragon.md) +INFO [08-24|09:19:10.906] - Spurious Dragon/2 (EIP 158): #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/spurious-dragon.md) +INFO [08-24|09:19:10.906] - Byzantium: #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/byzantium.md) +INFO [08-24|09:19:10.906] - Constantinople: #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/constantinople.md) +INFO [08-24|09:19:10.906] - Petersburg: #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/petersburg.md) +INFO [08-24|09:19:10.906] - Istanbul: #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/istanbul.md) +INFO [08-24|09:19:10.906] - Berlin: #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/berlin.md) +INFO [08-24|09:19:10.906] - London: # (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/london.md) +INFO [08-24|09:19:10.906] +INFO [08-24|09:19:10.906] The Merge is not yet available for this network! +INFO [08-24|09:19:10.906] - Hard-fork specification: https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/paris.md +INFO [08-24|09:19:10.906] +INFO [08-24|09:19:10.906] Post-Merge hard forks (timestamp based): +INFO [08-24|09:19:10.906] +INFO [08-24|09:19:10.906] --------------------------------------------------------------------------------------------------------------------------------------------------------- +INFO [08-24|09:19:10.906] +INFO [08-24|09:19:10.906] Loaded most recent local block number=4302 hash=066493..eea1f4 td=8605 age=2d22h37m +WARN [08-24|09:19:10.906] Head state missing, repairing number=4302 hash=066493..eea1f4 snaproot=480af2..1fb8fa +INFO [08-24|09:19:11.056] Loaded most recent local header number=4302 hash=066493..eea1f4 td=8605 age=2d22h37m +INFO [08-24|09:19:11.056] Loaded most recent local block number=10 hash=a4d7ec..90b7f8 td=21 age=1mo18h37m +INFO [08-24|09:19:11.056] Loaded most recent local snap block number=4302 hash=066493..eea1f4 td=8605 age=2d22h37m +WARN [08-24|09:19:11.124] Enabling snapshot recovery chainhead=10 diskbase=10 +WARN [08-24|09:19:11.124] Loaded snapshot journal diffs=missing +INFO [08-24|09:19:11.125] Initialized transaction indexer range="last 2350000 blocks" +INFO [08-24|09:19:11.135] Setting new local account address=0x4258347DeDB78fBDFd5891Da6c280f1fd3d3c491 +INFO [08-24|09:19:11.137] Loaded local transaction journal transactions=4 dropped=0 +INFO [08-24|09:19:11.139] Regenerated local transaction journal transactions=4 accounts=1 +WARN [08-24|09:19:11.208] Switch sync mode from snap sync to full sync reason="snap sync complete" +INFO [08-24|09:19:11.209] Gasprice oracle is ignoring threshold set threshold=2 +WARN [08-24|09:19:11.225] Unclean shutdown detected booted=2024-07-24T14:40:26+0700 age=1mo18h38m +WARN [08-24|09:19:11.226] Unclean shutdown detected booted=2024-07-24T14:51:02+0700 age=1mo18h28m +WARN [08-24|09:19:11.226] Unclean shutdown detected booted=2024-07-26T14:33:45+0700 age=4w18h45m +WARN [08-24|09:19:11.226] Unclean shutdown detected booted=2024-08-14T22:40:57+0700 age=1w2d10h +WARN [08-24|09:19:11.226] Unclean shutdown detected booted=2024-08-21T10:37:20+0700 age=2d22h41m +WARN [08-24|09:19:11.227] Engine API enabled protocol=eth +WARN [08-24|09:19:11.227] Engine API started but chain not configured for merge yet +INFO [08-24|09:19:11.227] Starting peer-to-peer node instance=Geth/v1.13.15-stable-c5ba367e/linux-amd64/go1.21.6 +INFO [08-24|09:19:11.294] New local node record seq=1,721,806,826,223 id=4e00a25cf8195129 ip=127.0.0.1 udp=30304 tcp=30304 +INFO [08-24|09:19:11.301] Started P2P networking self=enode://65ad7f3efc609df720c5cd34be40ff42f5189c86c090c08189db231746f8ee77a4edf00e4c07a12c80b664a62095b5282924da22acb5a52391e9d118b12b43a3@127.0.0.1:30304 +INFO [08-24|09:19:11.303] Loaded JWT secret file path=/home/silviaprada/geth-vote/node1/data/geth/jwtsecret crc32=0x9ceb80c5 +INFO [08-24|09:19:11.306] HTTP server started endpoint=127.0.0.1:8545 auth=false prefix= cors=https://remix.ethereum.org vhosts=localhost +INFO [08-24|09:19:11.316] WebSocket enabled url=ws://127.0.0.1:8547 +INFO [08-24|09:19:11.316] HTTP server started endpoint=127.0.0.1:8547 auth=true prefix= cors=localhost vhosts=localhost +INFO [08-24|09:19:18.055] Unlocked account address=0x4258347DeDB78fBDFd5891Da6c280f1fd3d3c491 +INFO [08-24|09:19:18.064] Legacy pool tip threshold updated tip=0 +INFO [08-24|09:19:18.069] Legacy pool tip threshold updated tip=1,000,000,000 +INFO [08-24|09:19:18.105] Commit new sealing work number=11 sealhash=ccc343..a5fd1d txs=0 gas=0 fees=0 elapsed=32.077ms +INFO [08-24|09:19:18.194] Successfully sealed new block number=11 sealhash=ccc343..a5fd1d hash=80f99d..a6794b elapsed=91.855ms +INFO [08-24|09:19:18.211] Commit new sealing work number=12 sealhash=d86b95..a80131 txs=0 gas=0 fees=0 elapsed=18.599ms +INFO [08-24|09:19:21.319] Block synchronisation started +INFO [08-24|09:19:21.322] Mining aborted due to sync +INFO [08-24|09:19:21.668] Looking for peers peercount=2 tried=2 static=0 +INFO [08-24|09:19:21.837] Importing heavy sidechain segment blocks=2048 start=11 end=2058 +INFO [08-24|09:19:21.886] Chain reorg detected number=10 hash=a4d7ec..90b7f8 drop=1 dropfrom=80f99d..a6794b add=2 addfrom=d064fe..f23709 +INFO [08-24|09:19:31.706] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:19:41.725] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:19:45.741] Importing heavy sidechain segment blocks=2048 start=2059 end=4106 +INFO [08-24|09:19:51.759] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:20:01.779] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:20:03.890] Imported new chain segment number=3985 hash=6f1b4e..74df84 blocks=1927 txs=5 mgas=1.383 elapsed=18.144s mgasps=0.076 age=2d23h4m snapdiffs=7.10KiB triedirty=29.79KiB +INFO [08-24|09:20:04.861] Importing sidechain segment start=4107 end=4302 +INFO [08-24|09:20:09.800] Commit new sealing work number=4303 sealhash=7edbef..dc84e6 txs=0 gas=0 fees=0 elapsed=1.184ms +INFO [08-24|09:20:09.810] Successfully sealed new block number=12 sealhash=d86b95..a80131 hash=cd946c..175fd9 elapsed=51.599s +INFO [08-24|09:20:09.826] Successfully sealed new block number=4303 sealhash=7edbef..dc84e6 hash=297378..1a7c9c elapsed=26.135ms +INFO [08-24|09:20:09.828] Commit new sealing work number=4304 sealhash=b0b697..cd9aa8 txs=0 gas=0 fees=0 elapsed=1.756ms +INFO [08-24|09:20:11.815] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:20:14.013] Successfully sealed new block number=4304 sealhash=b0b697..cd9aa8 hash=2fed6e..ea5573 elapsed=4.185s +INFO [08-24|09:20:14.014] Commit new sealing work number=4305 sealhash=3e701f..ea49df txs=0 gas=0 fees=0 elapsed="568.674µs" +INFO [08-24|09:20:19.014] Successfully sealed new block number=4305 sealhash=3e701f..ea49df hash=22a9e5..603c6c elapsed=5.000s +INFO [08-24|09:20:19.015] Commit new sealing work number=4306 sealhash=396f85..c8fae9 txs=0 gas=0 fees=0 elapsed="647.961µs" +INFO [08-24|09:20:21.846] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:20:24.027] Successfully sealed new block number=4306 sealhash=396f85..c8fae9 hash=5e287d..a455ea elapsed=5.011s +INFO [08-24|09:20:24.028] Commit new sealing work number=4307 sealhash=4b6690..fadaf6 txs=0 gas=0 fees=0 elapsed=1.124ms +INFO [08-24|09:20:29.023] Successfully sealed new block number=4307 sealhash=4b6690..fadaf6 hash=eaab88..3e4909 elapsed=4.994s +INFO [08-24|09:20:29.024] Commit new sealing work number=4308 sealhash=8b3d52..8f7e59 txs=0 gas=0 fees=0 elapsed=1.470ms +INFO [08-24|09:20:31.875] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:20:36.248] Successfully sealed new block number=4308 sealhash=8b3d52..8f7e59 hash=840991..a961d6 elapsed=7.224s +INFO [08-24|09:20:36.340] Commit new sealing work number=4309 sealhash=f7e76e..6ad411 txs=0 gas=0 fees=0 elapsed=91.375ms +INFO [08-24|09:20:39.011] Successfully sealed new block number=4309 sealhash=f7e76e..6ad411 hash=b2ea8a..ad4bcd elapsed=2.670s +INFO [08-24|09:20:39.012] Commit new sealing work number=4310 sealhash=587806..92855f txs=0 gas=0 fees=0 elapsed="910.813µs" +INFO [08-24|09:20:42.042] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:20:44.014] Successfully sealed new block number=4310 sealhash=587806..92855f hash=005165..f2428d elapsed=5.002s +INFO [08-24|09:20:44.015] Commit new sealing work number=4311 sealhash=4a4be7..dda3a9 txs=0 gas=0 fees=0 elapsed="678.545µs" +INFO [08-24|09:20:49.023] Successfully sealed new block number=4311 sealhash=4a4be7..dda3a9 hash=6dee9c..fddbaa elapsed=5.008s +INFO [08-24|09:20:49.024] Commit new sealing work number=4312 sealhash=60cc1c..afa618 txs=0 gas=0 fees=0 elapsed="797.014µs" +INFO [08-24|09:20:52.151] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:20:54.027] Successfully sealed new block number=4312 sealhash=60cc1c..afa618 hash=7e1de4..fe104f elapsed=5.002s +INFO [08-24|09:20:54.028] Commit new sealing work number=4313 sealhash=b9ca4d..43a732 txs=0 gas=0 fees=0 elapsed="750.828µs" +INFO [08-24|09:21:02.521] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:21:03.214] Successfully sealed new block number=4313 sealhash=b9ca4d..43a732 hash=a7d430..6865dd elapsed=9.186s +INFO [08-24|09:21:03.215] Commit new sealing work number=4314 sealhash=13b7ce..b5c3ea txs=0 gas=0 fees=0 elapsed="881.436µs" +INFO [08-24|09:21:09.405] Successfully sealed new block number=4314 sealhash=13b7ce..b5c3ea hash=d47601..5d2a33 elapsed=6.189s +INFO [08-24|09:21:10.242] Commit new sealing work number=4315 sealhash=85fb39..df52f1 txs=0 gas=0 fees=0 elapsed=837.342ms +INFO [08-24|09:21:11.654] Successfully sealed new block number=4315 sealhash=85fb39..df52f1 hash=9ae543..34d402 elapsed=1.413s +INFO [08-24|09:21:11.655] Commit new sealing work number=4316 sealhash=121b88..e9ab21 txs=0 gas=0 fees=0 elapsed="333.898µs" +INFO [08-24|09:21:12.889] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:21:14.026] Successfully sealed new block number=4316 sealhash=121b88..e9ab21 hash=8fea62..cee388 elapsed=2.370s +INFO [08-24|09:21:14.033] Commit new sealing work number=4317 sealhash=17d471..e23468 txs=0 gas=0 fees=0 elapsed=7.373ms +INFO [08-24|09:21:19.031] Successfully sealed new block number=4317 sealhash=17d471..e23468 hash=1c4bc9..ace188 elapsed=4.999s +INFO [08-24|09:21:19.036] Commit new sealing work number=4318 sealhash=1c755e..863df2 txs=0 gas=0 fees=0 elapsed=4.123ms +INFO [08-24|09:21:22.929] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:21:24.047] Successfully sealed new block number=4318 sealhash=1c755e..863df2 hash=934c63..8428a9 elapsed=5.011s +INFO [08-24|09:21:24.056] Commit new sealing work number=4319 sealhash=c0c989..08df16 txs=0 gas=0 fees=0 elapsed=8.182ms +INFO [08-24|09:21:29.012] Successfully sealed new block number=4319 sealhash=c0c989..08df16 hash=d23f90..21dd86 elapsed=4.956s +INFO [08-24|09:21:29.014] Commit new sealing work number=4320 sealhash=711cc8..8c0847 txs=0 gas=0 fees=0 elapsed=1.784ms +INFO [08-24|09:21:33.072] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:21:34.016] Successfully sealed new block number=4320 sealhash=711cc8..8c0847 hash=9834a8..4124fd elapsed=5.002s +INFO [08-24|09:21:34.022] Commit new sealing work number=4321 sealhash=a2e3a4..4c1e2b txs=0 gas=0 fees=0 elapsed=5.771ms +INFO [08-24|09:21:39.012] Successfully sealed new block number=4321 sealhash=a2e3a4..4c1e2b hash=3f6973..20115c elapsed=4.990s +INFO [08-24|09:21:39.014] Commit new sealing work number=4322 sealhash=63e35f..06f4dd txs=0 gas=0 fees=0 elapsed=1.615ms +INFO [08-24|09:21:43.106] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:21:44.016] Successfully sealed new block number=4322 sealhash=63e35f..06f4dd hash=fedcde..f64324 elapsed=5.002s +INFO [08-24|09:21:44.019] Commit new sealing work number=4323 sealhash=215564..66ce24 txs=0 gas=0 fees=0 elapsed=2.083ms +INFO [08-24|09:21:49.013] Successfully sealed new block number=4323 sealhash=215564..66ce24 hash=9af7dd..e09122 elapsed=4.993s +INFO [08-24|09:21:49.015] Commit new sealing work number=4324 sealhash=6a0c80..88d7af txs=0 gas=0 fees=0 elapsed=2.114ms +INFO [08-24|09:21:53.136] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:21:54.013] Successfully sealed new block number=4324 sealhash=6a0c80..88d7af hash=23f02f..125b7d elapsed=4.997s +INFO [08-24|09:21:54.015] Commit new sealing work number=4325 sealhash=ab8bd2..d93244 txs=0 gas=0 fees=0 elapsed=1.384ms +INFO [08-24|09:21:59.014] Successfully sealed new block number=4325 sealhash=ab8bd2..d93244 hash=7c7d32..929a38 elapsed=4.999s +INFO [08-24|09:21:59.016] Commit new sealing work number=4326 sealhash=0801b6..0b12e7 txs=0 gas=0 fees=0 elapsed=1.174ms +INFO [08-24|09:22:03.164] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:22:04.016] Successfully sealed new block number=4326 sealhash=0801b6..0b12e7 hash=38762f..d7c92b elapsed=5.000s +INFO [08-24|09:22:04.017] Commit new sealing work number=4327 sealhash=fd056f..b67f1a txs=0 gas=0 fees=0 elapsed="913.681µs" +INFO [08-24|09:22:09.011] Successfully sealed new block number=4327 sealhash=fd056f..b67f1a hash=1618f4..e73bc9 elapsed=4.993s +INFO [08-24|09:22:09.013] Commit new sealing work number=4328 sealhash=f9bd55..b68256 txs=0 gas=0 fees=0 elapsed=1.760ms +INFO [08-24|09:22:13.202] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:22:14.010] Successfully sealed new block number=4328 sealhash=f9bd55..b68256 hash=c6a492..7adbcc elapsed=4.997s +INFO [08-24|09:22:14.012] Commit new sealing work number=4329 sealhash=b0f02b..2a6968 txs=0 gas=0 fees=0 elapsed=1.374ms +INFO [08-24|09:22:19.013] Successfully sealed new block number=4329 sealhash=b0f02b..2a6968 hash=b0db5e..c19f13 elapsed=5.000s +INFO [08-24|09:22:19.015] Commit new sealing work number=4330 sealhash=e991c0..0c62b6 txs=0 gas=0 fees=0 elapsed=1.669ms +INFO [08-24|09:22:23.233] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:22:24.012] Successfully sealed new block number=4330 sealhash=e991c0..0c62b6 hash=27651e..4058e6 elapsed=4.997s +INFO [08-24|09:22:24.014] Commit new sealing work number=4331 sealhash=cc6857..e9a1ea txs=0 gas=0 fees=0 elapsed=1.027ms +INFO [08-24|09:22:29.006] Successfully sealed new block number=4331 sealhash=cc6857..e9a1ea hash=8991d4..d3f02f elapsed=4.992s +INFO [08-24|09:22:29.006] Commit new sealing work number=4332 sealhash=58bf52..cf344e txs=0 gas=0 fees=0 elapsed="494.441µs" +INFO [08-24|09:22:33.269] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:22:34.004] Successfully sealed new block number=4332 sealhash=58bf52..cf344e hash=152474..acddfc elapsed=4.997s +INFO [08-24|09:22:34.005] Commit new sealing work number=4333 sealhash=eb7068..c83eba txs=0 gas=0 fees=0 elapsed="902.814µs" +INFO [08-24|09:22:39.012] Successfully sealed new block number=4333 sealhash=eb7068..c83eba hash=2fe3d7..fdc7ed elapsed=5.007s +INFO [08-24|09:22:39.014] Commit new sealing work number=4334 sealhash=74fef7..91f257 txs=0 gas=0 fees=0 elapsed=1.441ms +INFO [08-24|09:22:43.293] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:22:44.011] Successfully sealed new block number=4334 sealhash=74fef7..91f257 hash=f5eead..061c34 elapsed=4.997s +INFO [08-24|09:22:44.012] Commit new sealing work number=4335 sealhash=dc61e5..ac490d txs=0 gas=0 fees=0 elapsed=1.004ms +INFO [08-24|09:22:49.011] Successfully sealed new block number=4335 sealhash=dc61e5..ac490d hash=4d06d9..6b7e25 elapsed=4.999s +INFO [08-24|09:22:49.012] Commit new sealing work number=4336 sealhash=b062de..5fe006 txs=0 gas=0 fees=0 elapsed="666.464µs" +INFO [08-24|09:22:53.318] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:22:54.011] Successfully sealed new block number=4336 sealhash=b062de..5fe006 hash=44c369..e69cee elapsed=4.999s +INFO [08-24|09:22:54.014] Commit new sealing work number=4337 sealhash=db408d..fb5b0b txs=0 gas=0 fees=0 elapsed=1.901ms +INFO [08-24|09:22:59.011] Successfully sealed new block number=4337 sealhash=db408d..fb5b0b hash=bfdb04..4c84ec elapsed=4.997s +INFO [08-24|09:22:59.012] Commit new sealing work number=4338 sealhash=6d2f4d..d87d12 txs=0 gas=0 fees=0 elapsed="347.099µs" +INFO [08-24|09:23:03.345] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:23:04.012] Successfully sealed new block number=4338 sealhash=6d2f4d..d87d12 hash=e3de4e..a4e905 elapsed=5.000s +INFO [08-24|09:23:04.014] Commit new sealing work number=4339 sealhash=6a8a7a..d0c85b txs=0 gas=0 fees=0 elapsed=1.489ms +INFO [08-24|09:23:09.006] Successfully sealed new block number=4339 sealhash=6a8a7a..d0c85b hash=ce1415..13839b elapsed=4.991s +INFO [08-24|09:23:09.006] Commit new sealing work number=4340 sealhash=200488..1c2e52 txs=0 gas=0 fees=0 elapsed="684.861µs" +INFO [08-24|09:23:13.369] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:23:14.013] Successfully sealed new block number=4340 sealhash=200488..1c2e52 hash=9eb560..4967b9 elapsed=5.006s +INFO [08-24|09:23:14.014] Commit new sealing work number=4341 sealhash=4ebd68..6e5858 txs=0 gas=0 fees=0 elapsed="818.781µs" +INFO [08-24|09:23:19.013] Successfully sealed new block number=4341 sealhash=4ebd68..6e5858 hash=12602c..f3fda4 elapsed=4.999s +INFO [08-24|09:23:19.015] Commit new sealing work number=4342 sealhash=2442b6..e815be txs=0 gas=0 fees=0 elapsed=2.028ms +INFO [08-24|09:23:23.394] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:23:24.010] Successfully sealed new block number=4342 sealhash=2442b6..e815be hash=7253c2..92135e elapsed=4.995s +INFO [08-24|09:23:24.012] Commit new sealing work number=4343 sealhash=269f17..2eadf6 txs=0 gas=0 fees=0 elapsed="674.637µs" +INFO [08-24|09:23:29.012] Successfully sealed new block number=4343 sealhash=269f17..2eadf6 hash=96cc23..140065 elapsed=5.000s +INFO [08-24|09:23:29.013] Commit new sealing work number=4344 sealhash=f5dddc..7bccd1 txs=0 gas=0 fees=0 elapsed="857.866µs" +INFO [08-24|09:23:33.420] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:23:34.012] Successfully sealed new block number=4344 sealhash=f5dddc..7bccd1 hash=e6827d..5456ae elapsed=4.999s +INFO [08-24|09:23:34.018] Commit new sealing work number=4345 sealhash=0fcca4..db1365 txs=0 gas=0 fees=0 elapsed=5.256ms +INFO [08-24|09:23:39.007] Successfully sealed new block number=4345 sealhash=0fcca4..db1365 hash=781422..6a9ab3 elapsed=4.988s +INFO [08-24|09:23:39.009] Commit new sealing work number=4346 sealhash=0511a0..c82eb3 txs=0 gas=0 fees=0 elapsed=2.032ms +INFO [08-24|09:23:43.451] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:23:44.014] Successfully sealed new block number=4346 sealhash=0511a0..c82eb3 hash=e28a43..a793af elapsed=5.005s +INFO [08-24|09:23:44.015] Commit new sealing work number=4347 sealhash=dbc671..ac0033 txs=0 gas=0 fees=0 elapsed="806.806µs" +INFO [08-24|09:23:49.011] Successfully sealed new block number=4347 sealhash=dbc671..ac0033 hash=977ee6..3e23b1 elapsed=4.995s +INFO [08-24|09:23:49.013] Commit new sealing work number=4348 sealhash=33699e..4d74d3 txs=0 gas=0 fees=0 elapsed=1.997ms +INFO [08-24|09:23:53.475] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:23:54.010] Successfully sealed new block number=4348 sealhash=33699e..4d74d3 hash=4d4180..90edb7 elapsed=4.997s +INFO [08-24|09:23:54.012] Commit new sealing work number=4349 sealhash=c8a6ce..e145b4 txs=0 gas=0 fees=0 elapsed=1.339ms +INFO [08-24|09:23:59.012] Successfully sealed new block number=4349 sealhash=c8a6ce..e145b4 hash=0692f2..1b0c49 elapsed=5.000s +INFO [08-24|09:23:59.013] Commit new sealing work number=4350 sealhash=c269d3..ac7893 txs=0 gas=0 fees=0 elapsed=1.067ms +INFO [08-24|09:24:03.500] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:24:04.011] Successfully sealed new block number=4350 sealhash=c269d3..ac7893 hash=3ea9fa..894ad3 elapsed=4.997s +INFO [08-24|09:24:04.012] Commit new sealing work number=4351 sealhash=29bec8..6ab3b7 txs=0 gas=0 fees=0 elapsed="584.369µs" +INFO [08-24|09:24:09.010] Successfully sealed new block number=4351 sealhash=29bec8..6ab3b7 hash=c84194..735c3e elapsed=4.998s +INFO [08-24|09:24:09.012] Commit new sealing work number=4352 sealhash=f497a2..a6537f txs=0 gas=0 fees=0 elapsed=1.260ms +INFO [08-24|09:24:13.526] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:24:14.014] Successfully sealed new block number=4352 sealhash=f497a2..a6537f hash=d7c397..2f2f4a elapsed=5.001s +INFO [08-24|09:24:14.015] Commit new sealing work number=4353 sealhash=fe11c9..41848a txs=0 gas=0 fees=0 elapsed="886.226µs" +INFO [08-24|09:24:19.012] Successfully sealed new block number=4353 sealhash=fe11c9..41848a hash=ae40df..55a235 elapsed=4.997s +INFO [08-24|09:24:19.013] Commit new sealing work number=4354 sealhash=409f18..94daf0 txs=0 gas=0 fees=0 elapsed="628.36µs" +INFO [08-24|09:24:23.552] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:24:24.009] Successfully sealed new block number=4354 sealhash=409f18..94daf0 hash=e533d4..2dbee9 elapsed=4.996s +INFO [08-24|09:24:24.011] Commit new sealing work number=4355 sealhash=fe4cc0..1e6413 txs=0 gas=0 fees=0 elapsed="774.672µs" +INFO [08-24|09:24:29.010] Successfully sealed new block number=4355 sealhash=fe4cc0..1e6413 hash=cde873..603f23 elapsed=4.999s +INFO [08-24|09:24:29.011] Commit new sealing work number=4356 sealhash=923c4b..a86c5b txs=0 gas=0 fees=0 elapsed="618.666µs" +INFO [08-24|09:24:33.575] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:24:34.011] Successfully sealed new block number=4356 sealhash=923c4b..a86c5b hash=6e87b6..0042b1 elapsed=4.999s +INFO [08-24|09:24:34.011] Commit new sealing work number=4357 sealhash=e18252..14b8ab txs=0 gas=0 fees=0 elapsed="518.685µs" +INFO [08-24|09:24:39.014] Successfully sealed new block number=4357 sealhash=e18252..14b8ab hash=82c86f..398a50 elapsed=5.002s +INFO [08-24|09:24:39.015] Commit new sealing work number=4358 sealhash=d9ecd2..07f3d6 txs=0 gas=0 fees=0 elapsed="866.917µs" +INFO [08-24|09:24:43.604] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:24:44.012] Successfully sealed new block number=4358 sealhash=d9ecd2..07f3d6 hash=04f468..e2879a elapsed=4.997s +INFO [08-24|09:24:44.013] Commit new sealing work number=4359 sealhash=f10469..cfd125 txs=0 gas=0 fees=0 elapsed="642.864µs" +INFO [08-24|09:24:49.009] Successfully sealed new block number=4359 sealhash=f10469..cfd125 hash=28a91e..72c79f elapsed=4.995s +INFO [08-24|09:24:49.009] Commit new sealing work number=4360 sealhash=bba0b5..d388fc txs=0 gas=0 fees=0 elapsed="667.92µs" +INFO [08-24|09:24:53.627] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:24:54.011] Successfully sealed new block number=4360 sealhash=bba0b5..d388fc hash=f5d7d6..d7d285 elapsed=5.001s +INFO [08-24|09:24:54.012] Commit new sealing work number=4361 sealhash=ed0890..a11f6f txs=0 gas=0 fees=0 elapsed=1.027ms +INFO [08-24|09:24:59.011] Successfully sealed new block number=4361 sealhash=ed0890..a11f6f hash=833e84..507b9f elapsed=4.999s +INFO [08-24|09:24:59.012] Commit new sealing work number=4362 sealhash=0542bd..3ca862 txs=0 gas=0 fees=0 elapsed="540.204µs" +INFO [08-24|09:25:03.654] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:25:04.009] Successfully sealed new block number=4362 sealhash=0542bd..3ca862 hash=9bb918..3c2ec3 elapsed=4.996s +INFO [08-24|09:25:04.009] Commit new sealing work number=4363 sealhash=d26322..dbda03 txs=0 gas=0 fees=0 elapsed="440.113µs" +INFO [08-24|09:25:09.010] Successfully sealed new block number=4363 sealhash=d26322..dbda03 hash=73089a..8710f6 elapsed=5.000s +INFO [08-24|09:25:09.013] Commit new sealing work number=4364 sealhash=a3ad11..10a30e txs=0 gas=0 fees=0 elapsed=2.435ms +INFO [08-24|09:25:13.681] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:25:14.013] Successfully sealed new block number=4364 sealhash=a3ad11..10a30e hash=52516d..e56fc3 elapsed=4.999s +INFO [08-24|09:25:14.014] Commit new sealing work number=4365 sealhash=69f9aa..8603ea txs=0 gas=0 fees=0 elapsed="548.47µs" +INFO [08-24|09:25:19.013] Successfully sealed new block number=4365 sealhash=69f9aa..8603ea hash=999b84..0676e3 elapsed=4.999s +INFO [08-24|09:25:19.014] Commit new sealing work number=4366 sealhash=e74d18..b177f3 txs=0 gas=0 fees=0 elapsed="748.989µs" +INFO [08-24|09:25:23.705] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:25:24.010] Successfully sealed new block number=4366 sealhash=e74d18..b177f3 hash=b9ada9..318e05 elapsed=4.996s +INFO [08-24|09:25:24.011] Commit new sealing work number=4367 sealhash=b1bca9..a9549b txs=0 gas=0 fees=0 elapsed="554.622µs" +INFO [08-24|09:25:29.013] Successfully sealed new block number=4367 sealhash=b1bca9..a9549b hash=d0d92e..46b9fa elapsed=5.001s +INFO [08-24|09:25:29.013] Commit new sealing work number=4368 sealhash=17cdc8..0b4700 txs=0 gas=0 fees=0 elapsed="538.521µs" +INFO [08-24|09:25:33.730] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:25:34.013] Successfully sealed new block number=4368 sealhash=17cdc8..0b4700 hash=71a2b1..76315a elapsed=4.999s +INFO [08-24|09:25:34.013] Commit new sealing work number=4369 sealhash=1fd9af..903067 txs=0 gas=0 fees=0 elapsed="542.816µs" +INFO [08-24|09:25:39.008] Successfully sealed new block number=4369 sealhash=1fd9af..903067 hash=32405e..505f6e elapsed=4.994s +INFO [08-24|09:25:39.008] Commit new sealing work number=4370 sealhash=2a7160..1489a7 txs=0 gas=0 fees=0 elapsed="437.692µs" +INFO [08-24|09:25:43.758] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:25:44.012] Successfully sealed new block number=4370 sealhash=2a7160..1489a7 hash=56f7f2..0fcf4d elapsed=5.003s +INFO [08-24|09:25:44.012] Commit new sealing work number=4371 sealhash=b277eb..ff29cb txs=0 gas=0 fees=0 elapsed="285.334µs" +INFO [08-24|09:25:49.012] Successfully sealed new block number=4371 sealhash=b277eb..ff29cb hash=9c8ad3..795b0d elapsed=4.999s +INFO [08-24|09:25:49.013] Commit new sealing work number=4372 sealhash=805fdd..d64344 txs=0 gas=0 fees=0 elapsed="668.471µs" +INFO [08-24|09:25:53.784] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:25:54.011] Successfully sealed new block number=4372 sealhash=805fdd..d64344 hash=258154..fb4291 elapsed=4.998s +INFO [08-24|09:25:54.013] Commit new sealing work number=4373 sealhash=00e982..c50415 txs=0 gas=0 fees=0 elapsed=1.281ms +INFO [08-24|09:25:59.007] Successfully sealed new block number=4373 sealhash=00e982..c50415 hash=d801d8..2528e4 elapsed=4.994s +INFO [08-24|09:25:59.008] Commit new sealing work number=4374 sealhash=a0b978..618e53 txs=0 gas=0 fees=0 elapsed="457.712µs" +INFO [08-24|09:26:03.807] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:26:04.012] Successfully sealed new block number=4374 sealhash=a0b978..618e53 hash=09988a..8ef9ba elapsed=5.003s +INFO [08-24|09:26:04.013] Commit new sealing work number=4375 sealhash=80697e..bd62cc txs=0 gas=0 fees=0 elapsed="586.181µs" +INFO [08-24|09:26:09.011] Successfully sealed new block number=4375 sealhash=80697e..bd62cc hash=1ef9e0..fcda4d elapsed=4.998s +INFO [08-24|09:26:09.012] Commit new sealing work number=4376 sealhash=3462ca..4b5e82 txs=0 gas=0 fees=0 elapsed="781.354µs" +INFO [08-24|09:26:13.832] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:26:14.012] Successfully sealed new block number=4376 sealhash=3462ca..4b5e82 hash=8dafbd..16dbc9 elapsed=5.000s +INFO [08-24|09:26:14.013] Commit new sealing work number=4377 sealhash=ed3b57..5f6613 txs=0 gas=0 fees=0 elapsed="754.376µs" +INFO [08-24|09:26:19.009] Successfully sealed new block number=4377 sealhash=ed3b57..5f6613 hash=bc6696..1fbbf3 elapsed=4.995s +INFO [08-24|09:26:19.011] Commit new sealing work number=4378 sealhash=ec9487..8d8bee txs=0 gas=0 fees=0 elapsed=2.021ms +INFO [08-24|09:26:23.858] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:26:24.009] Successfully sealed new block number=4378 sealhash=ec9487..8d8bee hash=62135b..f1e5a0 elapsed=4.997s +INFO [08-24|09:26:24.010] Commit new sealing work number=4379 sealhash=2e0857..cab8fa txs=0 gas=0 fees=0 elapsed="558.553µs" +INFO [08-24|09:26:29.009] Successfully sealed new block number=4379 sealhash=2e0857..cab8fa hash=e06d2a..1da327 elapsed=4.999s +INFO [08-24|09:26:29.010] Commit new sealing work number=4380 sealhash=455d1e..2b1945 txs=0 gas=0 fees=0 elapsed="647.567µs" +INFO [08-24|09:26:33.879] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:26:34.006] Successfully sealed new block number=4380 sealhash=455d1e..2b1945 hash=1fbece..6580a6 elapsed=4.996s +INFO [08-24|09:26:34.006] Commit new sealing work number=4381 sealhash=dbf4c4..6eb9e7 txs=0 gas=0 fees=0 elapsed="506.304µs" +INFO [08-24|09:26:39.005] Successfully sealed new block number=4381 sealhash=dbf4c4..6eb9e7 hash=26e016..3e4c6b elapsed=4.998s +INFO [08-24|09:26:39.006] Commit new sealing work number=4382 sealhash=5cbea1..caed92 txs=0 gas=0 fees=0 elapsed="465.553µs" +INFO [08-24|09:26:43.900] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:26:44.008] Successfully sealed new block number=4382 sealhash=5cbea1..caed92 hash=fe1846..20566c elapsed=5.002s +INFO [08-24|09:26:44.009] Commit new sealing work number=4383 sealhash=ef3714..952850 txs=0 gas=0 fees=0 elapsed="472.514µs" +INFO [08-24|09:26:49.007] Successfully sealed new block number=4383 sealhash=ef3714..952850 hash=eee654..6c1ea4 elapsed=4.998s +INFO [08-24|09:26:49.007] Commit new sealing work number=4384 sealhash=ee9929..a05a5a txs=0 gas=0 fees=0 elapsed="342.751µs" +INFO [08-24|09:26:53.922] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:26:54.006] Successfully sealed new block number=4384 sealhash=ee9929..a05a5a hash=7793d7..0e9353 elapsed=4.998s +INFO [08-24|09:26:54.007] Commit new sealing work number=4385 sealhash=263518..0f2749 txs=0 gas=0 fees=0 elapsed="425.741µs" +INFO [08-24|09:26:59.012] Successfully sealed new block number=4385 sealhash=263518..0f2749 hash=79554d..836d4e elapsed=5.004s +INFO [08-24|09:26:59.013] Commit new sealing work number=4386 sealhash=628394..6dd43a txs=0 gas=0 fees=0 elapsed="573.127µs" +INFO [08-24|09:27:03.945] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:27:04.007] Successfully sealed new block number=4386 sealhash=628394..6dd43a hash=915f79..21b0fb elapsed=4.994s +INFO [08-24|09:27:04.008] Commit new sealing work number=4387 sealhash=5e4c8d..0e6099 txs=0 gas=0 fees=0 elapsed="943.749µs" +INFO [08-24|09:27:09.014] Successfully sealed new block number=4387 sealhash=5e4c8d..0e6099 hash=f36bdc..90d09e elapsed=5.006s +INFO [08-24|09:27:09.015] Commit new sealing work number=4388 sealhash=161804..72526a txs=0 gas=0 fees=0 elapsed="567.643µs" +INFO [08-24|09:27:13.971] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:27:14.011] Successfully sealed new block number=4388 sealhash=161804..72526a hash=20f69b..3913d0 elapsed=4.995s +INFO [08-24|09:27:14.012] Commit new sealing work number=4389 sealhash=459023..ce7a10 txs=0 gas=0 fees=0 elapsed="605.916µs" +INFO [08-24|09:27:19.010] Successfully sealed new block number=4389 sealhash=459023..ce7a10 hash=80722c..6c4023 elapsed=4.998s +INFO [08-24|09:27:19.011] Commit new sealing work number=4390 sealhash=968d43..b2bc64 txs=0 gas=0 fees=0 elapsed="550.867µs" +INFO [08-24|09:27:23.998] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:27:24.010] Successfully sealed new block number=4390 sealhash=968d43..b2bc64 hash=9c3ca0..f8a617 elapsed=4.999s +INFO [08-24|09:27:24.011] Commit new sealing work number=4391 sealhash=6efc3c..3e2bc8 txs=0 gas=0 fees=0 elapsed="602.599µs" +INFO [08-24|09:27:29.006] Successfully sealed new block number=4391 sealhash=6efc3c..3e2bc8 hash=636fce..ebc538 elapsed=4.994s +INFO [08-24|09:27:29.006] Commit new sealing work number=4392 sealhash=c347a9..c11075 txs=0 gas=0 fees=0 elapsed="502.246µs" +INFO [08-24|09:27:34.023] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:27:34.119] Successfully sealed new block number=4392 sealhash=c347a9..c11075 hash=844fe5..b42f66 elapsed=5.112s +INFO [08-24|09:27:34.120] Commit new sealing work number=4393 sealhash=2ff5ea..eb74dc txs=0 gas=0 fees=0 elapsed="589.13µs" +INFO [08-24|09:27:39.011] Successfully sealed new block number=4393 sealhash=2ff5ea..eb74dc hash=a3095a..9878bf elapsed=4.890s +INFO [08-24|09:27:39.011] Commit new sealing work number=4394 sealhash=869ff4..dcb2d0 txs=0 gas=0 fees=0 elapsed="435.84µs" +INFO [08-24|09:27:44.008] Successfully sealed new block number=4394 sealhash=869ff4..dcb2d0 hash=dfb147..7fdcf2 elapsed=4.997s +INFO [08-24|09:27:44.011] Commit new sealing work number=4395 sealhash=d6584e..39ad3e txs=0 gas=0 fees=0 elapsed=2.933ms +INFO [08-24|09:27:44.074] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:27:49.008] Successfully sealed new block number=4395 sealhash=d6584e..39ad3e hash=b665bb..a6da3b elapsed=4.996s +INFO [08-24|09:27:49.009] Commit new sealing work number=4396 sealhash=8f87ba..cdded4 txs=0 gas=0 fees=0 elapsed="944.631µs" +INFO [08-24|09:27:54.007] Successfully sealed new block number=4396 sealhash=8f87ba..cdded4 hash=1c82f1..0786b4 elapsed=4.997s +INFO [08-24|09:27:54.008] Commit new sealing work number=4397 sealhash=f43a86..05cfad txs=0 gas=0 fees=0 elapsed=1.593ms +INFO [08-24|09:27:54.104] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:27:59.008] Successfully sealed new block number=4397 sealhash=f43a86..05cfad hash=75a2db..c5ce71 elapsed=5.000s +INFO [08-24|09:27:59.010] Commit new sealing work number=4398 sealhash=49883c..b535b2 txs=0 gas=0 fees=0 elapsed="717.29µs" +INFO [08-24|09:28:04.009] Successfully sealed new block number=4398 sealhash=49883c..b535b2 hash=b85650..c5f965 elapsed=4.999s +INFO [08-24|09:28:04.011] Commit new sealing work number=4399 sealhash=9638fc..d2f949 txs=0 gas=0 fees=0 elapsed=2.793ms +INFO [08-24|09:28:04.143] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:28:09.023] Successfully sealed new block number=4399 sealhash=9638fc..d2f949 hash=6e89d4..5b631b elapsed=5.011s +INFO [08-24|09:28:09.029] Commit new sealing work number=4400 sealhash=6ca120..f41977 txs=0 gas=0 fees=0 elapsed=6.024ms +INFO [08-24|09:28:14.174] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:28:14.716] Successfully sealed new block number=4400 sealhash=6ca120..f41977 hash=10f825..5d4f13 elapsed=5.687s +INFO [08-24|09:28:14.717] Commit new sealing work number=4401 sealhash=c3aa36..4bbea6 txs=0 gas=0 fees=0 elapsed="461.596µs" +INFO [08-24|09:28:19.474] Successfully sealed new block number=4401 sealhash=c3aa36..4bbea6 hash=105954..2b282a elapsed=4.756s +INFO [08-24|09:28:19.474] Commit new sealing work number=4402 sealhash=680f57..b23269 txs=0 gas=0 fees=0 elapsed="510.873µs" +INFO [08-24|09:28:24.015] Successfully sealed new block number=4402 sealhash=680f57..b23269 hash=0261ce..bd5b05 elapsed=4.540s +INFO [08-24|09:28:24.018] Commit new sealing work number=4403 sealhash=3605cf..f9d0fc txs=0 gas=0 fees=0 elapsed=2.020ms +INFO [08-24|09:28:24.463] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:28:29.027] Successfully sealed new block number=4403 sealhash=3605cf..f9d0fc hash=dc8c37..0e46d1 elapsed=5.009s +INFO [08-24|09:28:29.028] Commit new sealing work number=4404 sealhash=a8cb08..3a77ad txs=0 gas=0 fees=0 elapsed=1.159ms +INFO [08-24|09:28:34.033] Successfully sealed new block number=4404 sealhash=a8cb08..3a77ad hash=bb8791..16b600 elapsed=5.004s +INFO [08-24|09:28:34.033] Commit new sealing work number=4405 sealhash=675ed7..39004b txs=0 gas=0 fees=0 elapsed="333.526µs" +INFO [08-24|09:28:34.485] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:28:39.012] Successfully sealed new block number=4405 sealhash=675ed7..39004b hash=06787a..810c19 elapsed=4.978s +INFO [08-24|09:28:39.013] Commit new sealing work number=4406 sealhash=ddd416..2aff62 txs=0 gas=0 fees=0 elapsed="588.162µs" +INFO [08-24|09:28:44.075] Successfully sealed new block number=4406 sealhash=ddd416..2aff62 hash=9265f5..2b7b22 elapsed=5.061s +INFO [08-24|09:28:44.076] Commit new sealing work number=4407 sealhash=e16bff..a6c853 txs=0 gas=0 fees=0 elapsed="723.536µs" +INFO [08-24|09:28:44.564] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:28:49.271] Successfully sealed new block number=4407 sealhash=e16bff..a6c853 hash=8c4f59..8e9a2c elapsed=5.195s +INFO [08-24|09:28:49.355] Commit new sealing work number=4408 sealhash=e2c1fc..92dbd4 txs=0 gas=0 fees=0 elapsed=83.345ms +INFO [08-24|09:28:54.015] Successfully sealed new block number=4408 sealhash=e2c1fc..92dbd4 hash=4e2123..4f5923 elapsed=4.660s +INFO [08-24|09:28:54.016] Commit new sealing work number=4409 sealhash=7968c6..694134 txs=0 gas=0 fees=0 elapsed="638.311µs" +INFO [08-24|09:28:54.663] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:28:59.228] Successfully sealed new block number=4409 sealhash=7968c6..694134 hash=54b89c..cf4034 elapsed=5.212s +INFO [08-24|09:28:59.229] Commit new sealing work number=4410 sealhash=fe4aa4..990c46 txs=0 gas=0 fees=0 elapsed="609.913µs" +INFO [08-24|09:29:04.163] Successfully sealed new block number=4410 sealhash=fe4aa4..990c46 hash=65bda5..d3d95c elapsed=4.934s +INFO [08-24|09:29:04.164] Commit new sealing work number=4411 sealhash=56f36b..5c9b49 txs=0 gas=0 fees=0 elapsed="719.242µs" +INFO [08-24|09:29:04.768] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:29:09.007] Successfully sealed new block number=4411 sealhash=56f36b..5c9b49 hash=70ac42..ee0d7a elapsed=4.843s +INFO [08-24|09:29:09.017] Commit new sealing work number=4412 sealhash=ff2cd4..2ee251 txs=0 gas=0 fees=0 elapsed=9.989ms +INFO [08-24|09:29:14.489] Successfully sealed new block number=4412 sealhash=ff2cd4..2ee251 hash=d84a1d..55aa94 elapsed=5.471s +INFO [08-24|09:29:14.490] Commit new sealing work number=4413 sealhash=a5e642..c1a193 txs=0 gas=0 fees=0 elapsed=1.190ms +INFO [08-24|09:29:14.791] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:29:19.006] Successfully sealed new block number=4413 sealhash=a5e642..c1a193 hash=3f9b72..26a3e2 elapsed=4.516s +INFO [08-24|09:29:19.008] Commit new sealing work number=4414 sealhash=1ad036..e9ac09 txs=0 gas=0 fees=0 elapsed=1.466ms +INFO [08-24|09:29:24.008] Successfully sealed new block number=4414 sealhash=1ad036..e9ac09 hash=0eb7ab..761035 elapsed=4.999s +INFO [08-24|09:29:24.008] Commit new sealing work number=4415 sealhash=60d7f5..40d61e txs=0 gas=0 fees=0 elapsed="344.986µs" +INFO [08-24|09:29:24.818] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:29:29.005] Successfully sealed new block number=4415 sealhash=60d7f5..40d61e hash=97b89f..83a46d elapsed=4.996s +INFO [08-24|09:29:29.006] Commit new sealing work number=4416 sealhash=ec9548..1c3fd4 txs=0 gas=0 fees=0 elapsed="798.703µs" +INFO [08-24|09:29:34.007] Successfully sealed new block number=4416 sealhash=ec9548..1c3fd4 hash=6d4edc..e3784c elapsed=5.001s +INFO [08-24|09:29:34.008] Commit new sealing work number=4417 sealhash=349d8a..fd0c4e txs=0 gas=0 fees=0 elapsed="610.939µs" +INFO [08-24|09:29:34.846] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:29:39.008] Successfully sealed new block number=4417 sealhash=349d8a..fd0c4e hash=23da28..791f6b elapsed=5.000s +INFO [08-24|09:29:39.009] Commit new sealing work number=4418 sealhash=564e1c..558ed4 txs=0 gas=0 fees=0 elapsed="362.852µs" +INFO [08-24|09:29:44.007] Successfully sealed new block number=4418 sealhash=564e1c..558ed4 hash=83cecc..220ef5 elapsed=4.998s +INFO [08-24|09:29:44.008] Commit new sealing work number=4419 sealhash=e6c452..370cce txs=0 gas=0 fees=0 elapsed=1.525ms +INFO [08-24|09:29:44.868] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:29:49.011] Successfully sealed new block number=4419 sealhash=e6c452..370cce hash=b237e5..5e6fa2 elapsed=5.002s +INFO [08-24|09:29:49.013] Commit new sealing work number=4420 sealhash=f6ba04..2428eb txs=0 gas=0 fees=0 elapsed=2.060ms +INFO [08-24|09:29:54.008] Successfully sealed new block number=4420 sealhash=f6ba04..2428eb hash=b8224b..0a5723 elapsed=4.995s +INFO [08-24|09:29:54.009] Commit new sealing work number=4421 sealhash=031b9c..f35b1d txs=0 gas=0 fees=0 elapsed="719.685µs" +INFO [08-24|09:29:54.891] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:29:59.010] Successfully sealed new block number=4421 sealhash=031b9c..f35b1d hash=98f68a..e32838 elapsed=5.001s +INFO [08-24|09:29:59.011] Commit new sealing work number=4422 sealhash=683ef7..fa5161 txs=0 gas=0 fees=0 elapsed="889.683µs" +INFO [08-24|09:30:04.007] Successfully sealed new block number=4422 sealhash=683ef7..fa5161 hash=61016f..b01983 elapsed=4.995s +INFO [08-24|09:30:04.008] Commit new sealing work number=4423 sealhash=4e8d87..68a2e2 txs=0 gas=0 fees=0 elapsed="955.901µs" +INFO [08-24|09:30:04.916] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:30:09.007] Successfully sealed new block number=4423 sealhash=4e8d87..68a2e2 hash=6f723f..431af4 elapsed=4.999s +INFO [08-24|09:30:09.007] Commit new sealing work number=4424 sealhash=f79728..763880 txs=0 gas=0 fees=0 elapsed="487.784µs" +INFO [08-24|09:30:14.009] Successfully sealed new block number=4424 sealhash=f79728..763880 hash=cf0f08..b83173 elapsed=5.001s +INFO [08-24|09:30:14.010] Commit new sealing work number=4425 sealhash=c2116a..5b40fb txs=0 gas=0 fees=0 elapsed=1.102ms +INFO [08-24|09:30:14.937] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:30:19.008] Successfully sealed new block number=4425 sealhash=c2116a..5b40fb hash=19a7e7..dd36d3 elapsed=4.997s +INFO [08-24|09:30:19.009] Commit new sealing work number=4426 sealhash=97c13f..88d1a7 txs=0 gas=0 fees=0 elapsed="996.708µs" +INFO [08-24|09:30:24.010] Successfully sealed new block number=4426 sealhash=97c13f..88d1a7 hash=3368bf..c48d7f elapsed=5.002s +INFO [08-24|09:30:24.011] Commit new sealing work number=4427 sealhash=4f68fb..e38191 txs=0 gas=0 fees=0 elapsed="608.652µs" +INFO [08-24|09:30:24.962] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:30:29.005] Successfully sealed new block number=4427 sealhash=4f68fb..e38191 hash=aeb78f..f27c90 elapsed=4.994s +INFO [08-24|09:30:29.006] Commit new sealing work number=4428 sealhash=c2cec1..fdd6a9 txs=0 gas=0 fees=0 elapsed="274.742µs" +INFO [08-24|09:30:34.011] Successfully sealed new block number=4428 sealhash=c2cec1..fdd6a9 hash=1e6fd3..f107aa elapsed=5.005s +INFO [08-24|09:30:34.011] Commit new sealing work number=4429 sealhash=b9e5c9..df1c27 txs=0 gas=0 fees=0 elapsed="445.869µs" +INFO [08-24|09:30:34.986] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:30:39.011] Successfully sealed new block number=4429 sealhash=b9e5c9..df1c27 hash=881a44..db1620 elapsed=4.999s +INFO [08-24|09:30:39.012] Commit new sealing work number=4430 sealhash=c7b236..d750d5 txs=0 gas=0 fees=0 elapsed="581.378µs" +INFO [08-24|09:30:44.008] Successfully sealed new block number=4430 sealhash=c7b236..d750d5 hash=8be5b3..2ffb54 elapsed=4.995s +INFO [08-24|09:30:44.008] Commit new sealing work number=4431 sealhash=13f2ca..66097e txs=0 gas=0 fees=0 elapsed="376.094µs" +INFO [08-24|09:30:45.013] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:30:49.014] Successfully sealed new block number=4431 sealhash=13f2ca..66097e hash=61280b..0134ac elapsed=5.006s +INFO [08-24|09:30:49.015] Commit new sealing work number=4432 sealhash=a0679f..f3404a txs=0 gas=0 fees=0 elapsed="422.868µs" +INFO [08-24|09:30:54.011] Successfully sealed new block number=4432 sealhash=a0679f..f3404a hash=8cf66f..46313a elapsed=4.996s +INFO [08-24|09:30:54.012] Commit new sealing work number=4433 sealhash=7d4672..a5fa05 txs=0 gas=0 fees=0 elapsed="746.303µs" +INFO [08-24|09:30:55.041] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:30:59.012] Successfully sealed new block number=4433 sealhash=7d4672..a5fa05 hash=126fda..4878cd elapsed=4.999s +INFO [08-24|09:30:59.015] Commit new sealing work number=4434 sealhash=f815b5..8635fa txs=0 gas=0 fees=0 elapsed=2.436ms +INFO [08-24|09:31:04.009] Successfully sealed new block number=4434 sealhash=f815b5..8635fa hash=5a8554..237790 elapsed=4.994s +INFO [08-24|09:31:04.010] Commit new sealing work number=4435 sealhash=afe539..41a2e6 txs=0 gas=0 fees=0 elapsed="700.285µs" +INFO [08-24|09:31:05.076] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:31:09.013] Successfully sealed new block number=4435 sealhash=afe539..41a2e6 hash=6efaf4..721ed6 elapsed=5.003s +INFO [08-24|09:31:09.014] Commit new sealing work number=4436 sealhash=f0d9b2..0a65b7 txs=0 gas=0 fees=0 elapsed="722.543µs" +INFO [08-24|09:31:14.005] Successfully sealed new block number=4436 sealhash=f0d9b2..0a65b7 hash=b8e29b..150151 elapsed=4.991s +INFO [08-24|09:31:14.006] Commit new sealing work number=4437 sealhash=109dcc..919c82 txs=0 gas=0 fees=0 elapsed="595.477µs" +INFO [08-24|09:31:15.101] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:31:19.018] Successfully sealed new block number=4437 sealhash=109dcc..919c82 hash=d3a419..e0eee6 elapsed=5.012s +INFO [08-24|09:31:19.019] Commit new sealing work number=4438 sealhash=4e5a0b..9d5cd9 txs=0 gas=0 fees=0 elapsed="363.171µs" +INFO [08-24|09:31:24.008] Successfully sealed new block number=4438 sealhash=4e5a0b..9d5cd9 hash=7651d0..2c38e0 elapsed=4.989s +INFO [08-24|09:31:24.009] Commit new sealing work number=4439 sealhash=2e011b..f88f2d txs=0 gas=0 fees=0 elapsed="532.698µs" +INFO [08-24|09:31:25.132] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:31:29.018] Successfully sealed new block number=4439 sealhash=2e011b..f88f2d hash=2ea218..2773a9 elapsed=5.009s +INFO [08-24|09:31:29.019] Commit new sealing work number=4440 sealhash=e8c1fb..9c210f txs=0 gas=0 fees=0 elapsed=1.112ms +INFO [08-24|09:31:34.006] Successfully sealed new block number=4440 sealhash=e8c1fb..9c210f hash=914aa2..7f798e elapsed=4.986s +INFO [08-24|09:31:34.008] Commit new sealing work number=4441 sealhash=59e167..30d815 txs=0 gas=0 fees=0 elapsed=1.390ms +INFO [08-24|09:31:35.244] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:31:39.008] Successfully sealed new block number=4441 sealhash=59e167..30d815 hash=acf57f..435922 elapsed=5.000s +INFO [08-24|09:31:39.008] Commit new sealing work number=4442 sealhash=648ef4..16ca54 txs=0 gas=0 fees=0 elapsed="543.98µs" +INFO [08-24|09:31:44.012] Successfully sealed new block number=4442 sealhash=648ef4..16ca54 hash=cff28e..616da8 elapsed=5.003s +INFO [08-24|09:31:44.013] Commit new sealing work number=4443 sealhash=79f676..566557 txs=0 gas=0 fees=0 elapsed="608.797µs" +INFO [08-24|09:31:45.269] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:31:49.012] Successfully sealed new block number=4443 sealhash=79f676..566557 hash=d3bfb6..06b268 elapsed=4.998s +INFO [08-24|09:31:49.013] Commit new sealing work number=4444 sealhash=1db160..955cc5 txs=0 gas=0 fees=0 elapsed=1.401ms +INFO [08-24|09:31:54.010] Successfully sealed new block number=4444 sealhash=1db160..955cc5 hash=e11dcc..5ca74a elapsed=4.997s +INFO [08-24|09:31:54.011] Commit new sealing work number=4445 sealhash=fa2efa..b333f6 txs=0 gas=0 fees=0 elapsed="643.974µs" +INFO [08-24|09:31:55.291] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:31:59.014] Successfully sealed new block number=4445 sealhash=fa2efa..b333f6 hash=23e8ff..1e22c4 elapsed=5.003s +INFO [08-24|09:31:59.015] Commit new sealing work number=4446 sealhash=c13dc9..9a8114 txs=0 gas=0 fees=0 elapsed="529.553µs" +INFO [08-24|09:32:04.013] Successfully sealed new block number=4446 sealhash=c13dc9..9a8114 hash=169d05..8f100e elapsed=4.997s +INFO [08-24|09:32:04.014] Commit new sealing work number=4447 sealhash=94d8e4..139be9 txs=0 gas=0 fees=0 elapsed="704.112µs" +INFO [08-24|09:32:05.314] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:32:09.007] Successfully sealed new block number=4447 sealhash=94d8e4..139be9 hash=ddbdb7..fc3bec elapsed=4.993s +INFO [08-24|09:32:09.008] Commit new sealing work number=4448 sealhash=b86bbf..e05352 txs=0 gas=0 fees=0 elapsed="847.577µs" +INFO [08-24|09:32:14.010] Successfully sealed new block number=4448 sealhash=b86bbf..e05352 hash=bb413c..215c91 elapsed=5.001s +INFO [08-24|09:32:14.011] Commit new sealing work number=4449 sealhash=c84a1e..74ecee txs=0 gas=0 fees=0 elapsed="548.893µs" +INFO [08-24|09:32:15.338] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:32:19.014] Successfully sealed new block number=4449 sealhash=c84a1e..74ecee hash=cf3544..8213d4 elapsed=5.003s +INFO [08-24|09:32:19.015] Commit new sealing work number=4450 sealhash=293bcc..4d353a txs=0 gas=0 fees=0 elapsed="757.584µs" +INFO [08-24|09:32:24.012] Successfully sealed new block number=4450 sealhash=293bcc..4d353a hash=2b4a5e..7d38cc elapsed=4.997s +INFO [08-24|09:32:24.014] Commit new sealing work number=4451 sealhash=7cd56c..7e9bd9 txs=0 gas=0 fees=0 elapsed=2.016ms +INFO [08-24|09:32:25.361] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:32:29.012] Successfully sealed new block number=4451 sealhash=7cd56c..7e9bd9 hash=0a051d..063d10 elapsed=4.997s +INFO [08-24|09:32:29.015] Commit new sealing work number=4452 sealhash=f1dfe4..f37247 txs=0 gas=0 fees=0 elapsed=2.244ms +INFO [08-24|09:32:34.008] Successfully sealed new block number=4452 sealhash=f1dfe4..f37247 hash=84ebfa..a32bc5 elapsed=4.993s +INFO [08-24|09:32:34.008] Commit new sealing work number=4453 sealhash=1ee84d..25e451 txs=0 gas=0 fees=0 elapsed="385.907µs" +INFO [08-24|09:32:35.388] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:32:39.012] Successfully sealed new block number=4453 sealhash=1ee84d..25e451 hash=16d576..c2403a elapsed=5.003s +INFO [08-24|09:32:39.013] Commit new sealing work number=4454 sealhash=3cddc6..56efe7 txs=0 gas=0 fees=0 elapsed="944.439µs" +INFO [08-24|09:32:44.012] Successfully sealed new block number=4454 sealhash=3cddc6..56efe7 hash=c396e7..bdf36a elapsed=4.999s +INFO [08-24|09:32:44.013] Commit new sealing work number=4455 sealhash=a9e70b..f435da txs=0 gas=0 fees=0 elapsed="866.485µs" +INFO [08-24|09:32:45.413] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:32:49.012] Successfully sealed new block number=4455 sealhash=a9e70b..f435da hash=df9b31..d84c0d elapsed=4.998s +INFO [08-24|09:32:49.013] Commit new sealing work number=4456 sealhash=65e80e..773589 txs=0 gas=0 fees=0 elapsed="565.22µs" +INFO [08-24|09:32:54.008] Successfully sealed new block number=4456 sealhash=65e80e..773589 hash=b8dbcf..054816 elapsed=4.994s +INFO [08-24|09:32:54.009] Commit new sealing work number=4457 sealhash=bc71b8..242b96 txs=0 gas=0 fees=0 elapsed="792.135µs" +INFO [08-24|09:32:55.439] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:32:59.012] Successfully sealed new block number=4457 sealhash=bc71b8..242b96 hash=406928..2d7f5b elapsed=5.003s +INFO [08-24|09:32:59.014] Commit new sealing work number=4458 sealhash=8e3604..846203 txs=0 gas=0 fees=0 elapsed=2.066ms +INFO [08-24|09:33:04.011] Successfully sealed new block number=4458 sealhash=8e3604..846203 hash=7ad4ed..05e980 elapsed=4.996s +INFO [08-24|09:33:04.012] Commit new sealing work number=4459 sealhash=cb0f78..04357c txs=0 gas=0 fees=0 elapsed="629.058µs" +INFO [08-24|09:33:05.466] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:33:09.006] Successfully sealed new block number=4459 sealhash=cb0f78..04357c hash=ee6e3a..93fc31 elapsed=4.993s +INFO [08-24|09:33:09.006] Commit new sealing work number=4460 sealhash=74d025..518989 txs=0 gas=0 fees=0 elapsed="398.63µs" +INFO [08-24|09:33:14.010] Successfully sealed new block number=4460 sealhash=74d025..518989 hash=266208..922c90 elapsed=5.004s +INFO [08-24|09:33:14.012] Commit new sealing work number=4461 sealhash=4532af..b7d395 txs=0 gas=0 fees=0 elapsed=1.386ms +INFO [08-24|09:33:15.490] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:33:19.011] Successfully sealed new block number=4461 sealhash=4532af..b7d395 hash=f6bcd7..c3f0a6 elapsed=4.999s +INFO [08-24|09:33:19.013] Commit new sealing work number=4462 sealhash=6da572..f6dfa2 txs=0 gas=0 fees=0 elapsed=1.355ms +INFO [08-24|09:33:24.006] Successfully sealed new block number=4462 sealhash=6da572..f6dfa2 hash=8d39cb..e0b4d7 elapsed=4.993s +INFO [08-24|09:33:24.008] Commit new sealing work number=4463 sealhash=d7f6e2..0e408e txs=0 gas=0 fees=0 elapsed=1.198ms +INFO [08-24|09:33:25.515] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:33:29.011] Successfully sealed new block number=4463 sealhash=d7f6e2..0e408e hash=bf9fe3..4d2a46 elapsed=5.002s +INFO [08-24|09:33:29.011] Commit new sealing work number=4464 sealhash=b911e3..fa0e42 txs=0 gas=0 fees=0 elapsed="358.794µs" +INFO [08-24|09:33:34.013] Successfully sealed new block number=4464 sealhash=b911e3..fa0e42 hash=f3f2c1..6214ef elapsed=5.001s +INFO [08-24|09:33:34.014] Commit new sealing work number=4465 sealhash=875fef..cf7431 txs=0 gas=0 fees=0 elapsed="595.235µs" +INFO [08-24|09:33:35.538] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:33:39.012] Successfully sealed new block number=4465 sealhash=875fef..cf7431 hash=72e066..cc130c elapsed=4.997s +INFO [08-24|09:33:39.012] Commit new sealing work number=4466 sealhash=7288d5..be0053 txs=0 gas=0 fees=0 elapsed="770.569µs" +INFO [08-24|09:33:44.008] Successfully sealed new block number=4466 sealhash=7288d5..be0053 hash=56b717..29f295 elapsed=4.995s +INFO [08-24|09:33:44.009] Commit new sealing work number=4467 sealhash=8b8726..273804 txs=0 gas=0 fees=0 elapsed=1.285ms +INFO [08-24|09:33:45.564] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:33:49.011] Successfully sealed new block number=4467 sealhash=8b8726..273804 hash=8cfbc0..7a1c8f elapsed=5.002s +INFO [08-24|09:33:49.012] Commit new sealing work number=4468 sealhash=112c7d..a19934 txs=0 gas=0 fees=0 elapsed="678.248µs" +INFO [08-24|09:33:54.014] Successfully sealed new block number=4468 sealhash=112c7d..a19934 hash=058631..a3d999 elapsed=5.002s +INFO [08-24|09:33:54.015] Commit new sealing work number=4469 sealhash=bd5d4f..42279b txs=0 gas=0 fees=0 elapsed="702.685µs" +INFO [08-24|09:33:55.586] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:33:59.008] Successfully sealed new block number=4469 sealhash=bd5d4f..42279b hash=d6d724..1752a4 elapsed=4.993s +INFO [08-24|09:33:59.009] Commit new sealing work number=4470 sealhash=9a4af4..46b927 txs=0 gas=0 fees=0 elapsed="986.425µs" +INFO [08-24|09:34:04.010] Successfully sealed new block number=4470 sealhash=9a4af4..46b927 hash=675b83..c56978 elapsed=5.000s +INFO [08-24|09:34:04.011] Commit new sealing work number=4471 sealhash=b54992..0a39c5 txs=0 gas=0 fees=0 elapsed=1.367ms +INFO [08-24|09:34:05.615] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:34:09.013] Successfully sealed new block number=4471 sealhash=b54992..0a39c5 hash=3ae4ef..0dfdf2 elapsed=5.001s +INFO [08-24|09:34:09.014] Commit new sealing work number=4472 sealhash=8472cb..01c3c0 txs=0 gas=0 fees=0 elapsed="829.037µs" +INFO [08-24|09:34:14.011] Successfully sealed new block number=4472 sealhash=8472cb..01c3c0 hash=1d94ee..7d4f77 elapsed=4.997s +INFO [08-24|09:34:14.012] Commit new sealing work number=4473 sealhash=91dbdb..331761 txs=0 gas=0 fees=0 elapsed="813.93µs" +INFO [08-24|09:34:15.642] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:34:19.011] Successfully sealed new block number=4473 sealhash=91dbdb..331761 hash=6b305a..48baf4 elapsed=4.998s +INFO [08-24|09:34:19.014] Commit new sealing work number=4474 sealhash=c1af31..7c4f3a txs=0 gas=0 fees=0 elapsed=2.773ms +INFO [08-24|09:34:24.008] Successfully sealed new block number=4474 sealhash=c1af31..7c4f3a hash=70466d..49138e elapsed=4.993s +INFO [08-24|09:34:24.008] Commit new sealing work number=4475 sealhash=c2ef56..5006d0 txs=0 gas=0 fees=0 elapsed="683.843µs" +INFO [08-24|09:34:25.678] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:34:29.016] Successfully sealed new block number=4475 sealhash=c2ef56..5006d0 hash=a82f69..788b9e elapsed=5.007s +INFO [08-24|09:34:29.017] Commit new sealing work number=4476 sealhash=182db6..e43bb9 txs=0 gas=0 fees=0 elapsed="439.542µs" +INFO [08-24|09:34:34.077] Successfully sealed new block number=4476 sealhash=182db6..e43bb9 hash=0c4009..8ea6d2 elapsed=5.060s +INFO [08-24|09:34:34.078] Commit new sealing work number=4477 sealhash=6a275b..b8fb04 txs=0 gas=0 fees=0 elapsed="492.975µs" +INFO [08-24|09:34:35.705] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:34:39.007] Successfully sealed new block number=4477 sealhash=6a275b..b8fb04 hash=12cf1f..f8d8fd elapsed=4.929s +INFO [08-24|09:34:39.008] Commit new sealing work number=4478 sealhash=9431cc..af4f06 txs=0 gas=0 fees=0 elapsed="387.578µs" +INFO [08-24|09:34:44.012] Successfully sealed new block number=4478 sealhash=9431cc..af4f06 hash=c1fe4b..5d737a elapsed=5.004s +INFO [08-24|09:34:44.013] Commit new sealing work number=4479 sealhash=a2444c..40cab6 txs=0 gas=0 fees=0 elapsed="713.772µs" +INFO [08-24|09:34:45.729] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:34:49.013] Successfully sealed new block number=4479 sealhash=a2444c..40cab6 hash=277a15..53eab8 elapsed=5.000s +INFO [08-24|09:34:49.014] Commit new sealing work number=4480 sealhash=87f2a6..61665e txs=0 gas=0 fees=0 elapsed="636.052µs" +INFO [08-24|09:34:54.012] Successfully sealed new block number=4480 sealhash=87f2a6..61665e hash=c9cfdc..0b10b5 elapsed=4.997s +INFO [08-24|09:34:54.013] Commit new sealing work number=4481 sealhash=8e05ce..571056 txs=0 gas=0 fees=0 elapsed="655.844µs" +INFO [08-24|09:34:55.752] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:34:59.011] Successfully sealed new block number=4481 sealhash=8e05ce..571056 hash=5b35f0..f9c0cc elapsed=4.998s +INFO [08-24|09:34:59.012] Commit new sealing work number=4482 sealhash=9bb465..8246ea txs=0 gas=0 fees=0 elapsed="536.015µs" +INFO [08-24|09:35:04.011] Successfully sealed new block number=4482 sealhash=9bb465..8246ea hash=b6c0cc..02c49e elapsed=4.998s +INFO [08-24|09:35:04.012] Commit new sealing work number=4483 sealhash=6899fd..1ec8da txs=0 gas=0 fees=0 elapsed="539.397µs" +INFO [08-24|09:35:05.776] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:35:09.010] Successfully sealed new block number=4483 sealhash=6899fd..1ec8da hash=f83578..10a45b elapsed=4.998s +INFO [08-24|09:35:09.011] Commit new sealing work number=4484 sealhash=08415d..ad5373 txs=0 gas=0 fees=0 elapsed="676.043µs" +INFO [08-24|09:35:14.007] Successfully sealed new block number=4484 sealhash=08415d..ad5373 hash=202634..47e988 elapsed=4.996s +INFO [08-24|09:35:14.008] Commit new sealing work number=4485 sealhash=738c7a..ea3c10 txs=0 gas=0 fees=0 elapsed="352.645µs" +INFO [08-24|09:35:15.800] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:35:19.011] Successfully sealed new block number=4485 sealhash=738c7a..ea3c10 hash=efb3f1..4d08c2 elapsed=5.003s +INFO [08-24|09:35:19.012] Commit new sealing work number=4486 sealhash=f5d904..53beaf txs=0 gas=0 fees=0 elapsed=1.454ms +INFO [08-24|09:35:24.012] Successfully sealed new block number=4486 sealhash=f5d904..53beaf hash=056888..ce9886 elapsed=4.999s +INFO [08-24|09:35:24.014] Commit new sealing work number=4487 sealhash=67eeb1..b45988 txs=0 gas=0 fees=0 elapsed=1.366ms +INFO [08-24|09:35:25.820] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:35:29.005] Successfully sealed new block number=4487 sealhash=67eeb1..b45988 hash=717760..1a9e94 elapsed=4.991s +INFO [08-24|09:35:29.005] Commit new sealing work number=4488 sealhash=623b69..e7feef txs=0 gas=0 fees=0 elapsed="297.36µs" +INFO [08-24|09:35:34.007] Successfully sealed new block number=4488 sealhash=623b69..e7feef hash=1903fa..f635a7 elapsed=5.001s +INFO [08-24|09:35:34.008] Commit new sealing work number=4489 sealhash=ff7d61..abd8d9 txs=0 gas=0 fees=0 elapsed=1.260ms +INFO [08-24|09:35:35.841] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:35:39.024] Successfully sealed new block number=4489 sealhash=ff7d61..abd8d9 hash=722c68..0b7f76 elapsed=5.016s +INFO [08-24|09:35:39.025] Commit new sealing work number=4490 sealhash=9b1550..ad2eb2 txs=0 gas=0 fees=0 elapsed=1.075ms +INFO [08-24|09:35:44.011] Successfully sealed new block number=4490 sealhash=9b1550..ad2eb2 hash=0e6e2d..b662a0 elapsed=4.985s +INFO [08-24|09:35:44.012] Commit new sealing work number=4491 sealhash=11fae6..9ff4fa txs=0 gas=0 fees=0 elapsed="538.165µs" +INFO [08-24|09:35:45.863] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:35:49.011] Successfully sealed new block number=4491 sealhash=11fae6..9ff4fa hash=b6e43a..7b6157 elapsed=4.999s +INFO [08-24|09:35:49.012] Commit new sealing work number=4492 sealhash=8619f5..e2e2fd txs=0 gas=0 fees=0 elapsed="835.962µs" +INFO [08-24|09:35:54.013] Successfully sealed new block number=4492 sealhash=8619f5..e2e2fd hash=b076dc..33e0f8 elapsed=5.000s +INFO [08-24|09:35:54.014] Commit new sealing work number=4493 sealhash=ffd03d..0b60e7 txs=0 gas=0 fees=0 elapsed="624.014µs" +INFO [08-24|09:35:55.887] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:35:59.012] Successfully sealed new block number=4493 sealhash=ffd03d..0b60e7 hash=5e8270..7ac9df elapsed=4.997s +INFO [08-24|09:35:59.013] Commit new sealing work number=4494 sealhash=b274da..631a23 txs=0 gas=0 fees=0 elapsed="675.428µs" +INFO [08-24|09:36:04.013] Successfully sealed new block number=4494 sealhash=b274da..631a23 hash=c39a2d..1e1900 elapsed=4.999s +INFO [08-24|09:36:04.013] Commit new sealing work number=4495 sealhash=eafb92..d8dd58 txs=0 gas=0 fees=0 elapsed="539.01µs" +INFO [08-24|09:36:05.912] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:36:09.012] Successfully sealed new block number=4495 sealhash=eafb92..d8dd58 hash=dbd0a2..80f41d elapsed=4.998s +INFO [08-24|09:36:09.013] Commit new sealing work number=4496 sealhash=a4154c..77f0ce txs=0 gas=0 fees=0 elapsed="696.19µs" +INFO [08-24|09:36:14.010] Successfully sealed new block number=4496 sealhash=a4154c..77f0ce hash=e6850a..012e37 elapsed=4.996s +INFO [08-24|09:36:14.010] Commit new sealing work number=4497 sealhash=592011..e7e1d1 txs=0 gas=0 fees=0 elapsed="586.002µs" +INFO [08-24|09:36:15.936] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:36:19.008] Successfully sealed new block number=4497 sealhash=592011..e7e1d1 hash=9c05c7..078acb elapsed=4.997s +INFO [08-24|09:36:19.008] Commit new sealing work number=4498 sealhash=e3a090..05fa62 txs=0 gas=0 fees=0 elapsed="576.755µs" +INFO [08-24|09:36:24.012] Successfully sealed new block number=4498 sealhash=e3a090..05fa62 hash=079c8e..68cf8d elapsed=5.003s +INFO [08-24|09:36:24.013] Commit new sealing work number=4499 sealhash=437a02..51cf31 txs=0 gas=0 fees=0 elapsed="571.567µs" +INFO [08-24|09:36:25.959] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:36:29.014] Successfully sealed new block number=4499 sealhash=437a02..51cf31 hash=842d14..fed441 elapsed=5.001s +INFO [08-24|09:36:29.015] Commit new sealing work number=4500 sealhash=97bbd3..d7ba61 txs=0 gas=0 fees=0 elapsed="645.485µs" +INFO [08-24|09:36:34.006] Successfully sealed new block number=4500 sealhash=97bbd3..d7ba61 hash=b5fc3f..195d1e elapsed=4.991s +INFO [08-24|09:36:34.007] Commit new sealing work number=4501 sealhash=58b758..38cfbe txs=0 gas=0 fees=0 elapsed="620.992µs" +INFO [08-24|09:36:35.979] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:36:39.007] Successfully sealed new block number=4501 sealhash=58b758..38cfbe hash=9a3123..081193 elapsed=4.999s +INFO [08-24|09:36:39.008] Commit new sealing work number=4502 sealhash=1cc5ea..0dd49c txs=0 gas=0 fees=0 elapsed="791.857µs" +INFO [08-24|09:36:44.009] Successfully sealed new block number=4502 sealhash=1cc5ea..0dd49c hash=65f49d..510d8b elapsed=5.000s +INFO [08-24|09:36:44.010] Commit new sealing work number=4503 sealhash=a6bb1e..4c4cbe txs=0 gas=0 fees=0 elapsed="951.325µs" +INFO [08-24|09:36:46.001] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:36:49.007] Successfully sealed new block number=4503 sealhash=a6bb1e..4c4cbe hash=f55315..15af68 elapsed=4.997s +INFO [08-24|09:36:49.008] Commit new sealing work number=4504 sealhash=46abeb..022bb5 txs=0 gas=0 fees=0 elapsed="332.452µs" +INFO [08-24|09:36:54.009] Successfully sealed new block number=4504 sealhash=46abeb..022bb5 hash=a44e71..b27edd elapsed=5.001s +INFO [08-24|09:36:54.010] Commit new sealing work number=4505 sealhash=d108e5..d355b5 txs=0 gas=0 fees=0 elapsed="401.793µs" +INFO [08-24|09:36:56.021] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:36:59.011] Successfully sealed new block number=4505 sealhash=d108e5..d355b5 hash=c64452..bbb2a1 elapsed=5.001s +INFO [08-24|09:36:59.012] Commit new sealing work number=4506 sealhash=0b7876..e60407 txs=0 gas=0 fees=0 elapsed="418.006µs" +INFO [08-24|09:37:04.009] Successfully sealed new block number=4506 sealhash=0b7876..e60407 hash=d49f58..d2f510 elapsed=4.997s +INFO [08-24|09:37:04.010] Commit new sealing work number=4507 sealhash=0a813b..4b96f8 txs=0 gas=0 fees=0 elapsed="701.932µs" +INFO [08-24|09:37:06.038] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:37:09.010] Successfully sealed new block number=4507 sealhash=0a813b..4b96f8 hash=e67716..388b26 elapsed=5.000s +INFO [08-24|09:37:09.011] Commit new sealing work number=4508 sealhash=4f3dba..58be1d txs=0 gas=0 fees=0 elapsed="709.151µs" +INFO [08-24|09:37:14.006] Successfully sealed new block number=4508 sealhash=4f3dba..58be1d hash=4d1636..53ba2a elapsed=4.994s +INFO [08-24|09:37:14.007] Commit new sealing work number=4509 sealhash=95ed61..066b5f txs=0 gas=0 fees=0 elapsed="289.356µs" +INFO [08-24|09:37:16.062] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:37:19.006] Successfully sealed new block number=4509 sealhash=95ed61..066b5f hash=ae872c..ce56d1 elapsed=4.999s +INFO [08-24|09:37:19.007] Commit new sealing work number=4510 sealhash=968b93..10613c txs=0 gas=0 fees=0 elapsed="474.587µs" +INFO [08-24|09:37:24.008] Successfully sealed new block number=4510 sealhash=968b93..10613c hash=a459e4..7b0e48 elapsed=5.001s +INFO [08-24|09:37:24.008] Commit new sealing work number=4511 sealhash=644950..353617 txs=0 gas=0 fees=0 elapsed="239.349µs" +INFO [08-24|09:37:26.085] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:37:29.008] Successfully sealed new block number=4511 sealhash=644950..353617 hash=9864ab..3f4b6d elapsed=4.999s +INFO [08-24|09:37:29.008] Commit new sealing work number=4512 sealhash=77a8bc..af03ae txs=0 gas=0 fees=0 elapsed="310.762µs" +INFO [08-24|09:37:34.008] Successfully sealed new block number=4512 sealhash=77a8bc..af03ae hash=1f8330..8b4297 elapsed=4.999s +INFO [08-24|09:37:34.009] Commit new sealing work number=4513 sealhash=95fa28..8b78b6 txs=0 gas=0 fees=0 elapsed="656.048µs" +INFO [08-24|09:37:36.110] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:37:39.010] Successfully sealed new block number=4513 sealhash=95fa28..8b78b6 hash=057388..73ddb5 elapsed=5.000s +INFO [08-24|09:37:39.011] Commit new sealing work number=4514 sealhash=5fbf6f..3054ca txs=0 gas=0 fees=0 elapsed="872.235µs" +INFO [08-24|09:37:44.007] Successfully sealed new block number=4514 sealhash=5fbf6f..3054ca hash=9a3b4e..3cfb0e elapsed=4.996s +INFO [08-24|09:37:44.007] Commit new sealing work number=4515 sealhash=fc13ed..d9111a txs=0 gas=0 fees=0 elapsed="394.096µs" +INFO [08-24|09:37:46.132] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:37:49.009] Successfully sealed new block number=4515 sealhash=fc13ed..d9111a hash=621a8d..378bc7 elapsed=5.001s +INFO [08-24|09:37:49.011] Commit new sealing work number=4516 sealhash=0bceb7..f96221 txs=0 gas=0 fees=0 elapsed=1.276ms +INFO [08-24|09:37:54.021] Successfully sealed new block number=4516 sealhash=0bceb7..f96221 hash=8dfd1d..d846c7 elapsed=5.010s +INFO [08-24|09:37:54.023] Commit new sealing work number=4517 sealhash=56f887..f99d98 txs=0 gas=0 fees=0 elapsed=1.602ms +INFO [08-24|09:37:56.166] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:37:59.007] Successfully sealed new block number=4517 sealhash=56f887..f99d98 hash=a30955..715a74 elapsed=4.984s +INFO [08-24|09:37:59.010] Commit new sealing work number=4518 sealhash=d48187..9ab1c9 txs=0 gas=0 fees=0 elapsed=2.243ms +INFO [08-24|09:38:04.007] Successfully sealed new block number=4518 sealhash=d48187..9ab1c9 hash=d2d5f4..a299db elapsed=4.996s +INFO [08-24|09:38:04.008] Commit new sealing work number=4519 sealhash=ed5455..aece7b txs=0 gas=0 fees=0 elapsed=1.450ms +INFO [08-24|09:38:06.219] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:38:09.012] Successfully sealed new block number=4519 sealhash=ed5455..aece7b hash=edd864..a40a5a elapsed=5.004s +INFO [08-24|09:38:09.018] Commit new sealing work number=4520 sealhash=cea1f6..e80042 txs=0 gas=0 fees=0 elapsed=5.238ms +INFO [08-24|09:38:14.015] Successfully sealed new block number=4520 sealhash=cea1f6..e80042 hash=28017e..04a872 elapsed=4.997s +INFO [08-24|09:38:14.015] Commit new sealing work number=4521 sealhash=0e1e54..1b01fd txs=0 gas=0 fees=0 elapsed="588.948µs" +INFO [08-24|09:38:16.276] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:38:19.006] Successfully sealed new block number=4521 sealhash=0e1e54..1b01fd hash=1846da..b09417 elapsed=4.990s +INFO [08-24|09:38:19.008] Commit new sealing work number=4522 sealhash=f77d5e..10a4d9 txs=0 gas=0 fees=0 elapsed=1.964ms +INFO [08-24|09:38:24.007] Successfully sealed new block number=4522 sealhash=f77d5e..10a4d9 hash=fbba90..dc8775 elapsed=4.998s +INFO [08-24|09:38:24.009] Commit new sealing work number=4523 sealhash=9739ef..a51852 txs=0 gas=0 fees=0 elapsed=1.755ms +INFO [08-24|09:38:26.306] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:38:29.012] Successfully sealed new block number=4523 sealhash=9739ef..a51852 hash=ac8851..7f0523 elapsed=5.003s +INFO [08-24|09:38:29.014] Commit new sealing work number=4524 sealhash=7c73c1..1fa774 txs=0 gas=0 fees=0 elapsed=1.637ms +INFO [08-24|09:38:34.018] Successfully sealed new block number=4524 sealhash=7c73c1..1fa774 hash=6c936b..de1537 elapsed=5.004s +INFO [08-24|09:38:34.019] Commit new sealing work number=4525 sealhash=14387a..0deada txs=0 gas=0 fees=0 elapsed="728.442µs" +INFO [08-24|09:38:36.336] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:38:39.011] Successfully sealed new block number=4525 sealhash=14387a..0deada hash=0ae3b0..523f06 elapsed=4.992s +INFO [08-24|09:38:39.012] Commit new sealing work number=4526 sealhash=df3fe6..2f4352 txs=0 gas=0 fees=0 elapsed="853.543µs" +INFO [08-24|09:38:44.008] Successfully sealed new block number=4526 sealhash=df3fe6..2f4352 hash=371ca9..70e5ec elapsed=4.995s +INFO [08-24|09:38:44.008] Commit new sealing work number=4527 sealhash=d6e96c..add9fa txs=0 gas=0 fees=0 elapsed="377.96µs" +INFO [08-24|09:38:46.371] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:38:49.012] Successfully sealed new block number=4527 sealhash=d6e96c..add9fa hash=62f2c2..b6f8da elapsed=5.004s +INFO [08-24|09:38:49.014] Commit new sealing work number=4528 sealhash=051814..584ef6 txs=0 gas=0 fees=0 elapsed=2.101ms +INFO [08-24|09:38:54.015] Successfully sealed new block number=4528 sealhash=051814..584ef6 hash=273e30..8d392e elapsed=5.000s +INFO [08-24|09:38:54.016] Commit new sealing work number=4529 sealhash=6f0a17..76c2cf txs=0 gas=0 fees=0 elapsed="914.573µs" +INFO [08-24|09:38:56.398] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:38:59.005] Successfully sealed new block number=4529 sealhash=6f0a17..76c2cf hash=1faed3..943afa elapsed=4.989s +INFO [08-24|09:38:59.007] Commit new sealing work number=4530 sealhash=1d3756..245693 txs=0 gas=0 fees=0 elapsed=1.058ms +INFO [08-24|09:39:04.005] Successfully sealed new block number=4530 sealhash=1d3756..245693 hash=116ffa..649f8c elapsed=4.998s +INFO [08-24|09:39:04.006] Commit new sealing work number=4531 sealhash=3d5f67..d5d512 txs=0 gas=0 fees=0 elapsed="724.228µs" +INFO [08-24|09:39:06.421] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:39:09.010] Successfully sealed new block number=4531 sealhash=3d5f67..d5d512 hash=9ac22c..592e7f elapsed=5.003s +INFO [08-24|09:39:09.011] Commit new sealing work number=4532 sealhash=efd800..e40850 txs=0 gas=0 fees=0 elapsed=1.311ms +INFO [08-24|09:39:14.398] Successfully sealed new block number=4532 sealhash=efd800..e40850 hash=066c62..ae52fd elapsed=5.387s +INFO [08-24|09:39:14.399] Commit new sealing work number=4533 sealhash=05badf..6b354f txs=0 gas=0 fees=0 elapsed="496.317µs" +INFO [08-24|09:39:16.444] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:39:19.009] Successfully sealed new block number=4533 sealhash=05badf..6b354f hash=58337a..1fddbb elapsed=4.610s +INFO [08-24|09:39:19.010] Commit new sealing work number=4534 sealhash=3246cf..14ab81 txs=0 gas=0 fees=0 elapsed="707.035µs" +INFO [08-24|09:39:24.013] Successfully sealed new block number=4534 sealhash=3246cf..14ab81 hash=c55289..bc0f7a elapsed=5.002s +INFO [08-24|09:39:24.016] Commit new sealing work number=4535 sealhash=745e95..962633 txs=0 gas=0 fees=0 elapsed=2.404ms +INFO [08-24|09:39:26.474] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:39:29.012] Successfully sealed new block number=4535 sealhash=745e95..962633 hash=f34b29..ba9909 elapsed=4.996s +INFO [08-24|09:39:29.014] Commit new sealing work number=4536 sealhash=e8eda4..882c4b txs=0 gas=0 fees=0 elapsed=2.301ms +INFO [08-24|09:39:34.007] Successfully sealed new block number=4536 sealhash=e8eda4..882c4b hash=49779d..723670 elapsed=4.992s +INFO [08-24|09:39:34.008] Commit new sealing work number=4537 sealhash=400435..bd4219 txs=0 gas=0 fees=0 elapsed="933.535µs" +INFO [08-24|09:39:36.500] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:39:39.013] Successfully sealed new block number=4537 sealhash=400435..bd4219 hash=090512..1a3624 elapsed=5.004s +INFO [08-24|09:39:39.015] Commit new sealing work number=4538 sealhash=e0c64a..132a3a txs=0 gas=0 fees=0 elapsed=2.234ms +INFO [08-24|09:39:44.006] Successfully sealed new block number=4538 sealhash=e0c64a..132a3a hash=15ae3b..c2f28f elapsed=4.991s +INFO [08-24|09:39:44.007] Commit new sealing work number=4539 sealhash=d86a91..d76cb3 txs=0 gas=0 fees=0 elapsed="974.614µs" +INFO [08-24|09:39:46.525] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:39:49.012] Successfully sealed new block number=4539 sealhash=d86a91..d76cb3 hash=e5387f..c116a8 elapsed=5.005s +INFO [08-24|09:39:49.017] Commit new sealing work number=4540 sealhash=f74520..bc9bbd txs=0 gas=0 fees=0 elapsed=4.573ms +INFO [08-24|09:39:54.009] Successfully sealed new block number=4540 sealhash=f74520..bc9bbd hash=e7df1b..921fe0 elapsed=4.992s +INFO [08-24|09:39:54.011] Commit new sealing work number=4541 sealhash=6813b1..6848b1 txs=0 gas=0 fees=0 elapsed=1.271ms +INFO [08-24|09:39:56.560] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:39:59.010] Successfully sealed new block number=4541 sealhash=6813b1..6848b1 hash=868a38..71c121 elapsed=4.999s +INFO [08-24|09:39:59.012] Commit new sealing work number=4542 sealhash=adc98d..cb32af txs=0 gas=0 fees=0 elapsed=2.158ms +INFO [08-24|09:40:04.006] Successfully sealed new block number=4542 sealhash=adc98d..cb32af hash=3c3f5c..d7bbaf elapsed=4.994s +INFO [08-24|09:40:04.007] Commit new sealing work number=4543 sealhash=1c2901..2ea38f txs=0 gas=0 fees=0 elapsed="769.865µs" +INFO [08-24|09:40:06.590] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:40:09.012] Successfully sealed new block number=4543 sealhash=1c2901..2ea38f hash=b4cc38..f5f6bf elapsed=5.004s +INFO [08-24|09:40:09.014] Commit new sealing work number=4544 sealhash=cd28a0..4999f4 txs=0 gas=0 fees=0 elapsed=1.384ms +INFO [08-24|09:40:14.014] Successfully sealed new block number=4544 sealhash=cd28a0..4999f4 hash=4f93ad..fdec2e elapsed=5.000s +INFO [08-24|09:40:14.016] Commit new sealing work number=4545 sealhash=612de6..560a1b txs=0 gas=0 fees=0 elapsed=1.077ms +INFO [08-24|09:40:16.614] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:40:19.012] Successfully sealed new block number=4545 sealhash=612de6..560a1b hash=78d006..bdfa53 elapsed=4.996s +INFO [08-24|09:40:19.013] Commit new sealing work number=4546 sealhash=75fed8..0ff333 txs=0 gas=0 fees=0 elapsed="747.801µs" +INFO [08-24|09:40:24.013] Successfully sealed new block number=4546 sealhash=75fed8..0ff333 hash=72e8c7..4349a9 elapsed=4.999s +INFO [08-24|09:40:24.014] Commit new sealing work number=4547 sealhash=31982c..595562 txs=0 gas=0 fees=0 elapsed="907.468µs" +INFO [08-24|09:40:26.639] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:40:29.010] Successfully sealed new block number=4547 sealhash=31982c..595562 hash=fa3ad4..48b4b9 elapsed=4.995s +INFO [08-24|09:40:29.011] Commit new sealing work number=4548 sealhash=1980cd..0a38ce txs=0 gas=0 fees=0 elapsed="657.853µs" +INFO [08-24|09:40:34.007] Successfully sealed new block number=4548 sealhash=1980cd..0a38ce hash=3ec77f..ab0227 elapsed=4.995s +INFO [08-24|09:40:34.007] Commit new sealing work number=4549 sealhash=f99b49..2e1383 txs=0 gas=0 fees=0 elapsed="278.433µs" +INFO [08-24|09:40:36.666] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:40:39.012] Successfully sealed new block number=4549 sealhash=f99b49..2e1383 hash=1f49d5..704444 elapsed=5.004s +INFO [08-24|09:40:39.013] Commit new sealing work number=4550 sealhash=a7b98a..ad45c2 txs=0 gas=0 fees=0 elapsed="770.832µs" +INFO [08-24|09:40:44.011] Successfully sealed new block number=4550 sealhash=a7b98a..ad45c2 hash=002aba..5a2b7d elapsed=4.998s +INFO [08-24|09:40:44.012] Commit new sealing work number=4551 sealhash=d9d956..ce1b85 txs=0 gas=0 fees=0 elapsed="523.854µs" +INFO [08-24|09:40:46.690] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:40:49.012] Successfully sealed new block number=4551 sealhash=d9d956..ce1b85 hash=3c01c5..d7c397 elapsed=4.999s +INFO [08-24|09:40:49.014] Commit new sealing work number=4552 sealhash=7a0d34..7441aa txs=0 gas=0 fees=0 elapsed=1.392ms +INFO [08-24|09:40:54.006] Successfully sealed new block number=4552 sealhash=7a0d34..7441aa hash=5009aa..3da57c elapsed=4.993s +INFO [08-24|09:40:54.007] Commit new sealing work number=4553 sealhash=e60d74..d96374 txs=0 gas=0 fees=0 elapsed="594.959µs" +INFO [08-24|09:40:56.715] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:40:59.006] Successfully sealed new block number=4553 sealhash=e60d74..d96374 hash=b427cb..966d31 elapsed=4.998s +INFO [08-24|09:40:59.007] Commit new sealing work number=4554 sealhash=e25343..89347a txs=0 gas=0 fees=0 elapsed="384.237µs" +INFO [08-24|09:41:04.010] Successfully sealed new block number=4554 sealhash=e25343..89347a hash=bc32ab..a7a823 elapsed=5.003s +INFO [08-24|09:41:04.011] Commit new sealing work number=4555 sealhash=386fa6..ed1339 txs=0 gas=0 fees=0 elapsed="382.875µs" +INFO [08-24|09:41:06.738] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:41:09.006] Successfully sealed new block number=4555 sealhash=386fa6..ed1339 hash=3e5e9a..1e7efa elapsed=4.995s +INFO [08-24|09:41:09.007] Commit new sealing work number=4556 sealhash=a34ad6..712ec7 txs=0 gas=0 fees=0 elapsed="549.939µs" +INFO [08-24|09:41:14.012] Successfully sealed new block number=4556 sealhash=a34ad6..712ec7 hash=5d2b68..bb976f elapsed=5.004s +INFO [08-24|09:41:14.013] Commit new sealing work number=4557 sealhash=8f8a7e..b00bac txs=0 gas=0 fees=0 elapsed="936.402µs" +INFO [08-24|09:41:16.761] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:41:19.007] Successfully sealed new block number=4557 sealhash=8f8a7e..b00bac hash=5b1d33..54fa07 elapsed=4.994s +INFO [08-24|09:41:19.008] Commit new sealing work number=4558 sealhash=1bcdce..ef3ea7 txs=0 gas=0 fees=0 elapsed="551.585µs" +INFO [08-24|09:41:24.006] Successfully sealed new block number=4558 sealhash=1bcdce..ef3ea7 hash=678158..ec4856 elapsed=4.998s +INFO [08-24|09:41:24.007] Commit new sealing work number=4559 sealhash=e429b1..7fb3bb txs=0 gas=0 fees=0 elapsed="806.026µs" +INFO [08-24|09:41:26.785] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:41:29.007] Successfully sealed new block number=4559 sealhash=e429b1..7fb3bb hash=863f47..8afeb5 elapsed=4.999s +INFO [08-24|09:41:29.008] Commit new sealing work number=4560 sealhash=f29d90..1742a6 txs=0 gas=0 fees=0 elapsed="697.956µs" +INFO [08-24|09:41:34.011] Successfully sealed new block number=4560 sealhash=f29d90..1742a6 hash=c83bc0..0379ec elapsed=5.003s +INFO [08-24|09:41:34.013] Commit new sealing work number=4561 sealhash=abfb0f..ee30f9 txs=0 gas=0 fees=0 elapsed=2.207ms +INFO [08-24|09:41:36.815] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:41:39.017] Successfully sealed new block number=4561 sealhash=abfb0f..ee30f9 hash=5d3528..b351ec elapsed=5.003s +INFO [08-24|09:41:39.020] Commit new sealing work number=4562 sealhash=17dd5e..9096d8 txs=0 gas=0 fees=0 elapsed=3.065ms +INFO [08-24|09:41:44.015] Successfully sealed new block number=4562 sealhash=17dd5e..9096d8 hash=e79212..19cdbb elapsed=4.995s +INFO [08-24|09:41:44.018] Commit new sealing work number=4563 sealhash=5ecf92..90859a txs=0 gas=0 fees=0 elapsed=1.962ms +INFO [08-24|09:41:46.843] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:41:49.013] Successfully sealed new block number=4563 sealhash=5ecf92..90859a hash=c6771a..234ce1 elapsed=4.995s +INFO [08-24|09:41:49.014] Commit new sealing work number=4564 sealhash=1156ce..268659 txs=0 gas=0 fees=0 elapsed=1.116ms +INFO [08-24|09:41:54.012] Successfully sealed new block number=4564 sealhash=1156ce..268659 hash=69b5fe..04a51c elapsed=4.998s +INFO [08-24|09:41:54.014] Commit new sealing work number=4565 sealhash=9225a6..f98852 txs=0 gas=0 fees=0 elapsed="836.673µs" +INFO [08-24|09:41:56.870] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:41:59.013] Successfully sealed new block number=4565 sealhash=9225a6..f98852 hash=b5bbff..5b95e7 elapsed=4.999s +INFO [08-24|09:41:59.015] Commit new sealing work number=4566 sealhash=c1de6a..c89a09 txs=0 gas=0 fees=0 elapsed=1.717ms +INFO [08-24|09:42:04.012] Successfully sealed new block number=4566 sealhash=c1de6a..c89a09 hash=22f42c..dfe671 elapsed=4.997s +INFO [08-24|09:42:04.014] Commit new sealing work number=4567 sealhash=35b471..5bcc28 txs=0 gas=0 fees=0 elapsed=1.381ms +INFO [08-24|09:42:06.894] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:42:09.013] Successfully sealed new block number=4567 sealhash=35b471..5bcc28 hash=c5e8d4..7b8db0 elapsed=4.999s +INFO [08-24|09:42:09.015] Commit new sealing work number=4568 sealhash=07bc3c..7b9b25 txs=0 gas=0 fees=0 elapsed=2.089ms +INFO [08-24|09:42:14.012] Successfully sealed new block number=4568 sealhash=07bc3c..7b9b25 hash=d66ca8..ff41d9 elapsed=4.996s +INFO [08-24|09:42:14.013] Commit new sealing work number=4569 sealhash=4da93c..6823d5 txs=0 gas=0 fees=0 elapsed=1.021ms +INFO [08-24|09:42:16.919] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:42:19.011] Successfully sealed new block number=4569 sealhash=4da93c..6823d5 hash=36171a..24673b elapsed=4.998s +INFO [08-24|09:42:19.013] Commit new sealing work number=4570 sealhash=a48e8b..c925f9 txs=0 gas=0 fees=0 elapsed=1.356ms +INFO [08-24|09:42:24.011] Successfully sealed new block number=4570 sealhash=a48e8b..c925f9 hash=857b66..2f3b0b elapsed=4.998s +INFO [08-24|09:42:24.013] Commit new sealing work number=4571 sealhash=c2b31a..7de6a2 txs=0 gas=0 fees=0 elapsed="973.729µs" +INFO [08-24|09:42:26.947] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:42:29.012] Successfully sealed new block number=4571 sealhash=c2b31a..7de6a2 hash=ba9307..eab10b elapsed=4.999s +INFO [08-24|09:42:29.014] Commit new sealing work number=4572 sealhash=a83b4c..f6b4f1 txs=0 gas=0 fees=0 elapsed=1.003ms +INFO [08-24|09:42:34.011] Successfully sealed new block number=4572 sealhash=a83b4c..f6b4f1 hash=45007b..041ea2 elapsed=4.997s +INFO [08-24|09:42:34.012] Commit new sealing work number=4573 sealhash=7e79dd..d800c8 txs=0 gas=0 fees=0 elapsed=1.395ms +INFO [08-24|09:42:36.973] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:42:39.013] Successfully sealed new block number=4573 sealhash=7e79dd..d800c8 hash=36a5b5..bfca82 elapsed=5.000s +INFO [08-24|09:42:39.014] Commit new sealing work number=4574 sealhash=fd2b67..aef970 txs=0 gas=0 fees=0 elapsed=1.602ms +INFO [08-24|09:42:44.012] Successfully sealed new block number=4574 sealhash=fd2b67..aef970 hash=a550cf..479d45 elapsed=4.997s +INFO [08-24|09:42:44.014] Commit new sealing work number=4575 sealhash=efd041..5f261d txs=0 gas=0 fees=0 elapsed=1.030ms +INFO [08-24|09:42:46.998] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:42:49.012] Successfully sealed new block number=4575 sealhash=efd041..5f261d hash=f9ce74..b846ea elapsed=4.998s +INFO [08-24|09:42:49.013] Commit new sealing work number=4576 sealhash=f88e8d..ccb177 txs=0 gas=0 fees=0 elapsed="873.235µs" +INFO [08-24|09:42:54.007] Successfully sealed new block number=4576 sealhash=f88e8d..ccb177 hash=e0f239..7ff7e0 elapsed=4.994s +INFO [08-24|09:42:54.008] Commit new sealing work number=4577 sealhash=86b07d..b4930f txs=0 gas=0 fees=0 elapsed="535.456µs" +INFO [08-24|09:42:57.025] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:42:59.008] Successfully sealed new block number=4577 sealhash=86b07d..b4930f hash=385454..954c76 elapsed=4.999s +INFO [08-24|09:42:59.008] Commit new sealing work number=4578 sealhash=eda682..56f202 txs=0 gas=0 fees=0 elapsed="504.138µs" +INFO [08-24|09:43:04.011] Successfully sealed new block number=4578 sealhash=eda682..56f202 hash=e6e53f..23454b elapsed=5.002s +INFO [08-24|09:43:04.013] Commit new sealing work number=4579 sealhash=9212c2..b6461b txs=0 gas=0 fees=0 elapsed=1.727ms +INFO [08-24|09:43:07.054] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:43:09.009] Successfully sealed new block number=4579 sealhash=9212c2..b6461b hash=54f033..e1b6f8 elapsed=4.996s +INFO [08-24|09:43:09.009] Commit new sealing work number=4580 sealhash=732432..1544b3 txs=0 gas=0 fees=0 elapsed="604.29µs" +INFO [08-24|09:43:14.012] Successfully sealed new block number=4580 sealhash=732432..1544b3 hash=e72086..d66b93 elapsed=5.002s +INFO [08-24|09:43:14.013] Commit new sealing work number=4581 sealhash=66131b..e7c18b txs=0 gas=0 fees=0 elapsed=1.166ms +INFO [08-24|09:43:17.079] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:43:19.013] Successfully sealed new block number=4581 sealhash=66131b..e7c18b hash=53cb5c..9fe1be elapsed=4.999s +INFO [08-24|09:43:19.014] Commit new sealing work number=4582 sealhash=e92046..95af09 txs=0 gas=0 fees=0 elapsed=1.044ms +INFO [08-24|09:43:24.012] Successfully sealed new block number=4582 sealhash=e92046..95af09 hash=bb9ea9..b3b7ef elapsed=4.997s +INFO [08-24|09:43:24.013] Commit new sealing work number=4583 sealhash=66b2ac..03c148 txs=0 gas=0 fees=0 elapsed="749.155µs" +INFO [08-24|09:43:27.106] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:43:29.007] Successfully sealed new block number=4583 sealhash=66b2ac..03c148 hash=288f41..2ef242 elapsed=4.994s +INFO [08-24|09:43:29.008] Commit new sealing work number=4584 sealhash=7c124f..02c68e txs=0 gas=0 fees=0 elapsed="552.653µs" +INFO [08-24|09:43:34.010] Successfully sealed new block number=4584 sealhash=7c124f..02c68e hash=35b51c..748d8f elapsed=5.002s +INFO [08-24|09:43:34.012] Commit new sealing work number=4585 sealhash=906951..12b4ee txs=0 gas=0 fees=0 elapsed=1.416ms +INFO [08-24|09:43:37.131] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:43:39.014] Successfully sealed new block number=4585 sealhash=906951..12b4ee hash=145e0d..bf37eb elapsed=5.001s +INFO [08-24|09:43:39.015] Commit new sealing work number=4586 sealhash=f957a6..5499d5 txs=0 gas=0 fees=0 elapsed=1.307ms +INFO [08-24|09:43:44.011] Successfully sealed new block number=4586 sealhash=f957a6..5499d5 hash=8cb89e..54d2ef elapsed=4.995s +INFO [08-24|09:43:44.012] Commit new sealing work number=4587 sealhash=0b3fbf..6c747e txs=0 gas=0 fees=0 elapsed="713.393µs" +INFO [08-24|09:43:47.157] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:43:49.010] Successfully sealed new block number=4587 sealhash=0b3fbf..6c747e hash=f2766d..77c572 elapsed=4.998s +INFO [08-24|09:43:49.012] Commit new sealing work number=4588 sealhash=ba28f5..04fc6e txs=0 gas=0 fees=0 elapsed="653.837µs" +INFO [08-24|09:43:54.010] Successfully sealed new block number=4588 sealhash=ba28f5..04fc6e hash=ea631b..d6fa36 elapsed=4.998s +INFO [08-24|09:43:54.011] Commit new sealing work number=4589 sealhash=a98954..457e1f txs=0 gas=0 fees=0 elapsed="828.913µs" +INFO [08-24|09:43:57.183] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:43:59.010] Successfully sealed new block number=4589 sealhash=a98954..457e1f hash=3e062e..a7ae11 elapsed=4.999s +INFO [08-24|09:43:59.012] Commit new sealing work number=4590 sealhash=0342e0..3f3648 txs=0 gas=0 fees=0 elapsed=1.431ms +INFO [08-24|09:44:04.014] Successfully sealed new block number=4590 sealhash=0342e0..3f3648 hash=44fab5..644bc1 elapsed=5.001s +INFO [08-24|09:44:04.015] Commit new sealing work number=4591 sealhash=85fd21..44859a txs=0 gas=0 fees=0 elapsed="701.04µs" +INFO [08-24|09:44:07.213] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:44:09.009] Successfully sealed new block number=4591 sealhash=85fd21..44859a hash=9e500e..5ed7b1 elapsed=4.993s +INFO [08-24|09:44:09.010] Commit new sealing work number=4592 sealhash=bf8b34..259156 txs=0 gas=0 fees=0 elapsed=1.323ms +INFO [08-24|09:44:14.010] Successfully sealed new block number=4592 sealhash=bf8b34..259156 hash=ca817a..0aed57 elapsed=4.999s +INFO [08-24|09:44:14.010] Commit new sealing work number=4593 sealhash=2e90fe..cf73fa txs=0 gas=0 fees=0 elapsed="592.374µs" +INFO [08-24|09:44:17.238] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:44:19.010] Successfully sealed new block number=4593 sealhash=2e90fe..cf73fa hash=f9511e..f3820c elapsed=4.999s +INFO [08-24|09:44:19.011] Commit new sealing work number=4594 sealhash=dff283..df2e69 txs=0 gas=0 fees=0 elapsed=1.029ms +INFO [08-24|09:44:24.007] Successfully sealed new block number=4594 sealhash=dff283..df2e69 hash=f9970d..714b20 elapsed=4.995s +INFO [08-24|09:44:24.024] Commit new sealing work number=4595 sealhash=dc9e55..7af0ee txs=0 gas=0 fees=0 elapsed=17.517ms +INFO [08-24|09:44:27.264] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:44:29.012] Successfully sealed new block number=4595 sealhash=dc9e55..7af0ee hash=ab6d2b..2bb2fb elapsed=4.987s +INFO [08-24|09:44:29.014] Commit new sealing work number=4596 sealhash=031725..b934ce txs=0 gas=0 fees=0 elapsed=1.581ms +INFO [08-24|09:44:34.015] Successfully sealed new block number=4596 sealhash=031725..b934ce hash=b88874..39d2d6 elapsed=5.000s +INFO [08-24|09:44:34.019] Commit new sealing work number=4597 sealhash=b7e7e5..6ade01 txs=0 gas=0 fees=0 elapsed=3.747ms +INFO [08-24|09:44:37.291] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:44:39.011] Successfully sealed new block number=4597 sealhash=b7e7e5..6ade01 hash=6eeab0..6cf1f9 elapsed=4.992s +INFO [08-24|09:44:39.014] Commit new sealing work number=4598 sealhash=f0c01c..f4cee7 txs=0 gas=0 fees=0 elapsed=2.574ms +INFO [08-24|09:44:44.012] Successfully sealed new block number=4598 sealhash=f0c01c..f4cee7 hash=01f8ae..85fb4f elapsed=4.997s +INFO [08-24|09:44:44.013] Commit new sealing work number=4599 sealhash=eaa717..39d5b4 txs=0 gas=0 fees=0 elapsed="823.528µs" +INFO [08-24|09:44:47.316] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:44:49.013] Successfully sealed new block number=4599 sealhash=eaa717..39d5b4 hash=e47c10..47cc1c elapsed=4.999s +INFO [08-24|09:44:49.014] Commit new sealing work number=4600 sealhash=d7a7ca..f0b4e9 txs=0 gas=0 fees=0 elapsed="914.487µs" +INFO [08-24|09:44:54.011] Successfully sealed new block number=4600 sealhash=d7a7ca..f0b4e9 hash=c185de..b1e970 elapsed=4.997s +INFO [08-24|09:44:54.012] Commit new sealing work number=4601 sealhash=090d71..584d03 txs=0 gas=0 fees=0 elapsed="553.486µs" +INFO [08-24|09:44:57.342] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:44:59.013] Successfully sealed new block number=4601 sealhash=090d71..584d03 hash=860cba..c3406e elapsed=5.001s +INFO [08-24|09:44:59.015] Commit new sealing work number=4602 sealhash=fc9a76..8e980b txs=0 gas=0 fees=0 elapsed=1.164ms +INFO [08-24|09:45:04.011] Successfully sealed new block number=4602 sealhash=fc9a76..8e980b hash=cdf219..f4214d elapsed=4.996s +INFO [08-24|09:45:04.014] Commit new sealing work number=4603 sealhash=2cb98c..3afcca txs=0 gas=0 fees=0 elapsed=2.404ms +INFO [08-24|09:45:07.369] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:45:09.014] Successfully sealed new block number=4603 sealhash=2cb98c..3afcca hash=cdc736..387a47 elapsed=4.999s +INFO [08-24|09:45:09.015] Commit new sealing work number=4604 sealhash=380117..b427bd txs=0 gas=0 fees=0 elapsed="892.896µs" +INFO [08-24|09:45:14.011] Successfully sealed new block number=4604 sealhash=380117..b427bd hash=dee28f..f494c2 elapsed=4.996s +INFO [08-24|09:45:14.012] Commit new sealing work number=4605 sealhash=b04a66..255ad2 txs=0 gas=0 fees=0 elapsed="870.504µs" +INFO [08-24|09:45:17.396] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:45:19.011] Successfully sealed new block number=4605 sealhash=b04a66..255ad2 hash=ac617a..fd9f1d elapsed=4.999s +INFO [08-24|09:45:19.012] Commit new sealing work number=4606 sealhash=8c535a..aff769 txs=0 gas=0 fees=0 elapsed="817.904µs" +INFO [08-24|09:45:24.011] Successfully sealed new block number=4606 sealhash=8c535a..aff769 hash=6d805f..1db13b elapsed=4.999s +INFO [08-24|09:45:24.012] Commit new sealing work number=4607 sealhash=33dc50..4a1fb0 txs=0 gas=0 fees=0 elapsed=1.022ms +INFO [08-24|09:45:27.417] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:45:29.007] Successfully sealed new block number=4607 sealhash=33dc50..4a1fb0 hash=f1e495..bef468 elapsed=4.994s +INFO [08-24|09:45:29.009] Commit new sealing work number=4608 sealhash=b3dbaa..8e4e46 txs=0 gas=0 fees=0 elapsed=1.146ms +INFO [08-24|09:45:34.007] Successfully sealed new block number=4608 sealhash=b3dbaa..8e4e46 hash=f0b785..0a4fa5 elapsed=4.998s +INFO [08-24|09:45:34.007] Commit new sealing work number=4609 sealhash=3a659a..a0a4b5 txs=0 gas=0 fees=0 elapsed="332.069µs" +INFO [08-24|09:45:37.442] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:45:39.014] Successfully sealed new block number=4609 sealhash=3a659a..a0a4b5 hash=4e622a..6fae7e elapsed=5.006s +INFO [08-24|09:45:39.015] Commit new sealing work number=4610 sealhash=0d5598..3219b2 txs=0 gas=0 fees=0 elapsed=1.520ms +INFO [08-24|09:45:44.012] Successfully sealed new block number=4610 sealhash=0d5598..3219b2 hash=4f3521..a37077 elapsed=4.996s +INFO [08-24|09:45:44.015] Commit new sealing work number=4611 sealhash=f1e526..9bb0be txs=0 gas=0 fees=0 elapsed=2.453ms +INFO [08-24|09:45:47.467] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:45:49.007] Successfully sealed new block number=4611 sealhash=f1e526..9bb0be hash=3103d0..61cf28 elapsed=4.992s +INFO [08-24|09:45:49.008] Commit new sealing work number=4612 sealhash=07b10d..50ceaa txs=0 gas=0 fees=0 elapsed="521.699µs" +INFO [08-24|09:45:54.010] Successfully sealed new block number=4612 sealhash=07b10d..50ceaa hash=6faf56..519583 elapsed=5.002s +INFO [08-24|09:45:54.012] Commit new sealing work number=4613 sealhash=8e3819..54ddbc txs=0 gas=0 fees=0 elapsed=1.504ms +INFO [08-24|09:45:57.488] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:45:59.012] Successfully sealed new block number=4613 sealhash=8e3819..54ddbc hash=049dc0..db7bd7 elapsed=4.999s +INFO [08-24|09:45:59.014] Commit new sealing work number=4614 sealhash=db13ea..592d53 txs=0 gas=0 fees=0 elapsed=1.323ms +INFO [08-24|09:46:04.011] Successfully sealed new block number=4614 sealhash=db13ea..592d53 hash=d21461..388fe5 elapsed=4.997s +INFO [08-24|09:46:04.012] Commit new sealing work number=4615 sealhash=30c967..f2ee7f txs=0 gas=0 fees=0 elapsed=1.172ms +INFO [08-24|09:46:07.513] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:46:09.009] Successfully sealed new block number=4615 sealhash=30c967..f2ee7f hash=3fa530..145fb5 elapsed=4.996s +INFO [08-24|09:46:09.010] Commit new sealing work number=4616 sealhash=15085f..d5310d txs=0 gas=0 fees=0 elapsed=1.149ms +INFO [08-24|09:46:14.013] Successfully sealed new block number=4616 sealhash=15085f..d5310d hash=0eba33..1571c3 elapsed=5.002s +INFO [08-24|09:46:14.014] Commit new sealing work number=4617 sealhash=da81f2..599d34 txs=0 gas=0 fees=0 elapsed="857.312µs" +INFO [08-24|09:46:17.536] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:46:19.007] Successfully sealed new block number=4617 sealhash=da81f2..599d34 hash=1013d6..51b12a elapsed=4.992s +INFO [08-24|09:46:19.007] Commit new sealing work number=4618 sealhash=ba0681..8ce5ad txs=0 gas=0 fees=0 elapsed="453.493µs" +INFO [08-24|09:46:24.107] Successfully sealed new block number=4618 sealhash=ba0681..8ce5ad hash=c33a38..3f165b elapsed=5.099s +INFO [08-24|09:46:24.110] Commit new sealing work number=4619 sealhash=015a07..9a7a98 txs=0 gas=0 fees=0 elapsed=2.439ms +INFO [08-24|09:46:27.560] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:46:29.007] Successfully sealed new block number=4619 sealhash=015a07..9a7a98 hash=f33a66..e56cfb elapsed=4.897s +INFO [08-24|09:46:29.007] Commit new sealing work number=4620 sealhash=7010fa..b2a90d txs=0 gas=0 fees=0 elapsed="364.679µs" +INFO [08-24|09:46:34.007] Successfully sealed new block number=4620 sealhash=7010fa..b2a90d hash=0f1d3b..e6398b elapsed=4.999s +INFO [08-24|09:46:34.007] Commit new sealing work number=4621 sealhash=8f64ac..fd7865 txs=0 gas=0 fees=0 elapsed="452.002µs" +INFO [08-24|09:46:37.615] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:46:39.007] Successfully sealed new block number=4621 sealhash=8f64ac..fd7865 hash=fa4e66..1e3912 elapsed=4.999s +INFO [08-24|09:46:39.008] Commit new sealing work number=4622 sealhash=906fa5..087a98 txs=0 gas=0 fees=0 elapsed=1.081ms +INFO [08-24|09:46:44.009] Successfully sealed new block number=4622 sealhash=906fa5..087a98 hash=b46b57..b6d85e elapsed=5.001s +INFO [08-24|09:46:44.010] Commit new sealing work number=4623 sealhash=089c54..60828e txs=0 gas=0 fees=0 elapsed="586.694µs" +INFO [08-24|09:46:47.636] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:46:49.011] Successfully sealed new block number=4623 sealhash=089c54..60828e hash=1c90b9..50e696 elapsed=5.001s +INFO [08-24|09:46:49.012] Commit new sealing work number=4624 sealhash=269b47..cf07e8 txs=0 gas=0 fees=0 elapsed="308.519µs" +INFO [08-24|09:46:54.006] Successfully sealed new block number=4624 sealhash=269b47..cf07e8 hash=5f2ff5..67ad8b elapsed=4.994s +INFO [08-24|09:46:54.006] Commit new sealing work number=4625 sealhash=043aa4..d03ca0 txs=0 gas=0 fees=0 elapsed="353.305µs" +INFO [08-24|09:46:57.661] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:46:59.008] Successfully sealed new block number=4625 sealhash=043aa4..d03ca0 hash=7bd6b3..0ec813 elapsed=5.002s +INFO [08-24|09:46:59.009] Commit new sealing work number=4626 sealhash=fbaac9..884ade txs=0 gas=0 fees=0 elapsed="444.966µs" +INFO [08-24|09:47:04.008] Successfully sealed new block number=4626 sealhash=fbaac9..884ade hash=d53482..d56cdb elapsed=4.999s +INFO [08-24|09:47:04.009] Commit new sealing work number=4627 sealhash=82a926..8b9579 txs=0 gas=0 fees=0 elapsed="416.249µs" +INFO [08-24|09:47:07.687] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:47:09.007] Successfully sealed new block number=4627 sealhash=82a926..8b9579 hash=3b8c63..6b3809 elapsed=4.998s +INFO [08-24|09:47:09.008] Commit new sealing work number=4628 sealhash=354c2b..e50151 txs=0 gas=0 fees=0 elapsed="656.031µs" +INFO [08-24|09:47:14.008] Successfully sealed new block number=4628 sealhash=354c2b..e50151 hash=e6a742..1f72f5 elapsed=4.999s +INFO [08-24|09:47:14.009] Commit new sealing work number=4629 sealhash=23777e..1cc72a txs=0 gas=0 fees=0 elapsed="834.313µs" +INFO [08-24|09:47:17.712] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:47:19.004] Successfully sealed new block number=4629 sealhash=23777e..1cc72a hash=b7497d..96ecfa elapsed=4.995s +INFO [08-24|09:47:19.005] Commit new sealing work number=4630 sealhash=a28790..17700d txs=0 gas=0 fees=0 elapsed="383.039µs" +INFO [08-24|09:47:24.008] Successfully sealed new block number=4630 sealhash=a28790..17700d hash=188f7d..715d95 elapsed=5.003s +INFO [08-24|09:47:24.009] Commit new sealing work number=4631 sealhash=e0ed36..254b22 txs=0 gas=0 fees=0 elapsed="739.126µs" +INFO [08-24|09:47:27.734] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:47:29.008] Successfully sealed new block number=4631 sealhash=e0ed36..254b22 hash=dfd12f..5a3a8b elapsed=4.998s +INFO [08-24|09:47:29.009] Commit new sealing work number=4632 sealhash=53062a..fd5edb txs=0 gas=0 fees=0 elapsed="764.105µs" +INFO [08-24|09:47:34.020] Successfully sealed new block number=4632 sealhash=53062a..fd5edb hash=a264fe..0f9c8a elapsed=5.011s +INFO [08-24|09:47:34.021] Commit new sealing work number=4633 sealhash=c913bc..98f9ba txs=0 gas=0 fees=0 elapsed="727.322µs" +INFO [08-24|09:47:37.757] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:47:39.010] Successfully sealed new block number=4633 sealhash=c913bc..98f9ba hash=008c9b..6698e8 elapsed=4.989s +INFO [08-24|09:47:39.011] Commit new sealing work number=4634 sealhash=2b8dc7..afbd71 txs=0 gas=0 fees=0 elapsed="843.868µs" +INFO [08-24|09:47:44.364] Successfully sealed new block number=4634 sealhash=2b8dc7..afbd71 hash=97d41d..bc081e elapsed=5.353s +INFO [08-24|09:47:44.457] Commit new sealing work number=4635 sealhash=d24e81..1aa103 txs=0 gas=0 fees=0 elapsed=92.435ms +INFO [08-24|09:47:47.778] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:47:49.162] Successfully sealed new block number=4635 sealhash=d24e81..1aa103 hash=16e8be..8794a2 elapsed=4.705s +INFO [08-24|09:47:49.171] Commit new sealing work number=4636 sealhash=7c4749..21f1cf txs=0 gas=0 fees=0 elapsed=8.614ms +INFO [08-24|09:47:54.013] Successfully sealed new block number=4636 sealhash=7c4749..21f1cf hash=1682f1..8c8de5 elapsed=4.841s +INFO [08-24|09:47:54.014] Commit new sealing work number=4637 sealhash=dc1c0e..5e061c txs=0 gas=0 fees=0 elapsed="319.196µs" +INFO [08-24|09:47:57.861] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:47:59.020] Successfully sealed new block number=4637 sealhash=dc1c0e..5e061c hash=5c1c21..8fdcd6 elapsed=5.006s +INFO [08-24|09:47:59.021] Commit new sealing work number=4638 sealhash=cd2b10..46795d txs=0 gas=0 fees=0 elapsed="224.503µs" +INFO [08-24|09:48:04.026] Successfully sealed new block number=4638 sealhash=cd2b10..46795d hash=9d17f8..b85282 elapsed=5.005s +INFO [08-24|09:48:04.027] Commit new sealing work number=4639 sealhash=da1695..3a145c txs=0 gas=0 fees=0 elapsed="290.244µs" +INFO [08-24|09:48:07.884] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:48:09.027] Successfully sealed new block number=4639 sealhash=da1695..3a145c hash=0c0eeb..2c64e4 elapsed=4.999s +INFO [08-24|09:48:09.027] Commit new sealing work number=4640 sealhash=8cdf93..f55f15 txs=0 gas=0 fees=0 elapsed="508.062µs" +INFO [08-24|09:48:14.007] Successfully sealed new block number=4640 sealhash=8cdf93..f55f15 hash=52286e..0e9d88 elapsed=4.979s +INFO [08-24|09:48:14.015] Commit new sealing work number=4641 sealhash=b73f36..6f080a txs=0 gas=0 fees=0 elapsed=8.564ms +INFO [08-24|09:48:17.907] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:48:19.020] Successfully sealed new block number=4641 sealhash=b73f36..6f080a hash=269fd7..a596f0 elapsed=5.004s +INFO [08-24|09:48:19.021] Commit new sealing work number=4642 sealhash=75efec..0f6afc txs=0 gas=0 fees=0 elapsed="317.098µs" +INFO [08-24|09:48:24.019] Successfully sealed new block number=4642 sealhash=75efec..0f6afc hash=efc476..d7ceef elapsed=4.998s +INFO [08-24|09:48:24.019] Commit new sealing work number=4643 sealhash=9edfc6..1e4676 txs=0 gas=0 fees=0 elapsed="335.843µs" +INFO [08-24|09:48:27.929] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:48:29.025] Successfully sealed new block number=4643 sealhash=9edfc6..1e4676 hash=4ca300..8fc5b3 elapsed=5.005s +INFO [08-24|09:48:29.026] Commit new sealing work number=4644 sealhash=6ceb5f..d81cd8 txs=0 gas=0 fees=0 elapsed="220.75µs" +INFO [08-24|09:48:34.019] Successfully sealed new block number=4644 sealhash=6ceb5f..d81cd8 hash=798e96..776d2c elapsed=4.993s +INFO [08-24|09:48:34.020] Commit new sealing work number=4645 sealhash=7321ca..c3e625 txs=0 gas=0 fees=0 elapsed="330.774µs" +INFO [08-24|09:48:38.038] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:48:39.023] Successfully sealed new block number=4645 sealhash=7321ca..c3e625 hash=224094..59cd54 elapsed=5.003s +INFO [08-24|09:48:39.024] Commit new sealing work number=4646 sealhash=724a10..62232e txs=0 gas=0 fees=0 elapsed="340.411µs" +INFO [08-24|09:48:44.024] Successfully sealed new block number=4646 sealhash=724a10..62232e hash=6a91eb..691eba elapsed=5.000s +INFO [08-24|09:48:44.025] Commit new sealing work number=4647 sealhash=a63a2e..cf7d09 txs=0 gas=0 fees=0 elapsed="348.595µs" +INFO [08-24|09:48:48.059] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:48:50.008] Successfully sealed new block number=4647 sealhash=a63a2e..cf7d09 hash=33cfdc..3d8883 elapsed=5.983s +INFO [08-24|09:48:50.037] Commit new sealing work number=4648 sealhash=41331d..943c67 txs=0 gas=0 fees=0 elapsed=29.202ms +INFO [08-24|09:48:54.019] Successfully sealed new block number=4648 sealhash=41331d..943c67 hash=2bc62e..cc5f4a elapsed=3.981s +INFO [08-24|09:48:54.020] Commit new sealing work number=4649 sealhash=701198..9bcdc8 txs=0 gas=0 fees=0 elapsed=1.227ms +INFO [08-24|09:48:58.161] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:48:59.026] Successfully sealed new block number=4649 sealhash=701198..9bcdc8 hash=197778..632f59 elapsed=5.005s +INFO [08-24|09:48:59.027] Commit new sealing work number=4650 sealhash=dfb1c1..a7da0d txs=0 gas=0 fees=0 elapsed="825.771µs" +INFO [08-24|09:49:04.005] Successfully sealed new block number=4650 sealhash=dfb1c1..a7da0d hash=90aa42..eeee50 elapsed=4.978s +INFO [08-24|09:49:04.006] Commit new sealing work number=4651 sealhash=e9c0a9..f46a16 txs=0 gas=0 fees=0 elapsed="299.075µs" +INFO [08-24|09:49:08.180] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:49:09.012] Successfully sealed new block number=4651 sealhash=e9c0a9..f46a16 hash=0061c1..d2538c elapsed=5.006s +INFO [08-24|09:49:09.013] Commit new sealing work number=4652 sealhash=3e1a99..54a93e txs=0 gas=0 fees=0 elapsed="482.419µs" +INFO [08-24|09:49:14.007] Successfully sealed new block number=4652 sealhash=3e1a99..54a93e hash=b19c1b..966245 elapsed=4.994s +INFO [08-24|09:49:14.008] Commit new sealing work number=4653 sealhash=d34e66..40192d txs=0 gas=0 fees=0 elapsed="280.003µs" +INFO [08-24|09:49:18.198] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:49:19.010] Successfully sealed new block number=4653 sealhash=d34e66..40192d hash=7caecc..daf49d elapsed=5.002s +INFO [08-24|09:49:19.010] Commit new sealing work number=4654 sealhash=108d24..781182 txs=0 gas=0 fees=0 elapsed="367.519µs" +INFO [08-24|09:49:24.005] Successfully sealed new block number=4654 sealhash=108d24..781182 hash=5f7da9..ab6b5e elapsed=4.995s +INFO [08-24|09:49:24.006] Commit new sealing work number=4655 sealhash=3354ea..cec628 txs=0 gas=0 fees=0 elapsed="371.728µs" +INFO [08-24|09:49:28.217] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:49:29.008] Successfully sealed new block number=4655 sealhash=3354ea..cec628 hash=eaff4d..441134 elapsed=5.002s +INFO [08-24|09:49:29.009] Commit new sealing work number=4656 sealhash=45d1ac..adbb08 txs=0 gas=0 fees=0 elapsed="249.25µs" +INFO [08-24|09:49:34.007] Successfully sealed new block number=4656 sealhash=45d1ac..adbb08 hash=b1518a..42a34b elapsed=4.998s +INFO [08-24|09:49:34.008] Commit new sealing work number=4657 sealhash=e5f6d7..f6b204 txs=0 gas=0 fees=0 elapsed="313.601µs" +INFO [08-24|09:49:38.237] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:49:39.011] Successfully sealed new block number=4657 sealhash=e5f6d7..f6b204 hash=9fac40..e3a214 elapsed=5.003s +INFO [08-24|09:49:39.011] Commit new sealing work number=4658 sealhash=c6ecf8..3cca92 txs=0 gas=0 fees=0 elapsed="324.167µs" +INFO [08-24|09:49:44.011] Successfully sealed new block number=4658 sealhash=c6ecf8..3cca92 hash=78b797..8fdac9 elapsed=4.999s +INFO [08-24|09:49:44.011] Commit new sealing work number=4659 sealhash=146221..4974be txs=0 gas=0 fees=0 elapsed="262.27µs" +INFO [08-24|09:49:48.260] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:49:49.010] Successfully sealed new block number=4659 sealhash=146221..4974be hash=52d0c2..bb6c47 elapsed=4.998s +INFO [08-24|09:49:49.010] Commit new sealing work number=4660 sealhash=0002df..9f8673 txs=0 gas=0 fees=0 elapsed="336.915µs" +INFO [08-24|09:49:54.011] Successfully sealed new block number=4660 sealhash=0002df..9f8673 hash=111e63..c701c9 elapsed=5.000s +INFO [08-24|09:49:54.012] Commit new sealing work number=4661 sealhash=cd5942..bb241a txs=0 gas=0 fees=0 elapsed="352.204µs" +INFO [08-24|09:49:58.278] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:49:59.012] Successfully sealed new block number=4661 sealhash=cd5942..bb241a hash=eb728d..b47c96 elapsed=4.999s +INFO [08-24|09:49:59.012] Commit new sealing work number=4662 sealhash=a9f69c..862949 txs=0 gas=0 fees=0 elapsed="479.698µs" +INFO [08-24|09:50:04.005] Successfully sealed new block number=4662 sealhash=a9f69c..862949 hash=8f46d9..ca2e2b elapsed=4.993s +INFO [08-24|09:50:04.006] Commit new sealing work number=4663 sealhash=82b807..ec8585 txs=0 gas=0 fees=0 elapsed="273.549µs" +INFO [08-24|09:50:08.301] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:50:09.009] Successfully sealed new block number=4663 sealhash=82b807..ec8585 hash=da4654..633322 elapsed=5.003s +INFO [08-24|09:50:09.010] Commit new sealing work number=4664 sealhash=0dc588..d5cfda txs=0 gas=0 fees=0 elapsed="338.664µs" +INFO [08-24|09:50:14.009] Successfully sealed new block number=4664 sealhash=0dc588..d5cfda hash=d8ecaf..d231e7 elapsed=4.999s +INFO [08-24|09:50:14.009] Commit new sealing work number=4665 sealhash=e3dc81..16fa4f txs=0 gas=0 fees=0 elapsed="333.884µs" +INFO [08-24|09:50:18.321] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:50:19.010] Successfully sealed new block number=4665 sealhash=e3dc81..16fa4f hash=19848a..3edf88 elapsed=5.000s +INFO [08-24|09:50:19.011] Commit new sealing work number=4666 sealhash=f2fe09..f46e05 txs=0 gas=0 fees=0 elapsed="430.822µs" +INFO [08-24|09:50:24.011] Successfully sealed new block number=4666 sealhash=f2fe09..f46e05 hash=853c7e..285660 elapsed=5.000s +INFO [08-24|09:50:24.011] Commit new sealing work number=4667 sealhash=aa1e8e..e518b6 txs=0 gas=0 fees=0 elapsed="299.862µs" +INFO [08-24|09:50:28.343] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:50:29.010] Successfully sealed new block number=4667 sealhash=aa1e8e..e518b6 hash=3f3f5b..1156ba elapsed=4.998s +INFO [08-24|09:50:29.011] Commit new sealing work number=4668 sealhash=9e16bd..f17bf9 txs=0 gas=0 fees=0 elapsed="380.784µs" +INFO [08-24|09:50:34.008] Successfully sealed new block number=4668 sealhash=9e16bd..f17bf9 hash=81bbb7..8e42a3 elapsed=4.997s +INFO [08-24|09:50:34.008] Commit new sealing work number=4669 sealhash=7f149a..8ef62d txs=0 gas=0 fees=0 elapsed="272.873µs" +INFO [08-24|09:50:38.364] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:50:39.009] Successfully sealed new block number=4669 sealhash=7f149a..8ef62d hash=f5e34f..c6ab9f elapsed=5.000s +INFO [08-24|09:50:39.010] Commit new sealing work number=4670 sealhash=432533..76f062 txs=0 gas=0 fees=0 elapsed="433.316µs" +INFO [08-24|09:50:44.010] Successfully sealed new block number=4670 sealhash=432533..76f062 hash=b81330..e69770 elapsed=5.000s +INFO [08-24|09:50:44.010] Commit new sealing work number=4671 sealhash=bd7e67..a2ab33 txs=0 gas=0 fees=0 elapsed="296.619µs" +INFO [08-24|09:50:48.385] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:50:49.011] Successfully sealed new block number=4671 sealhash=bd7e67..a2ab33 hash=9a0bd6..b0f94e elapsed=5.000s +INFO [08-24|09:50:49.011] Commit new sealing work number=4672 sealhash=f5f587..94ab16 txs=0 gas=0 fees=0 elapsed="565.397µs" +INFO [08-24|09:50:54.010] Successfully sealed new block number=4672 sealhash=f5f587..94ab16 hash=605db4..c23278 elapsed=4.998s +INFO [08-24|09:50:54.011] Commit new sealing work number=4673 sealhash=9a1322..a8c3a3 txs=0 gas=0 fees=0 elapsed="377.19µs" +INFO [08-24|09:50:58.405] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:50:59.008] Successfully sealed new block number=4673 sealhash=9a1322..a8c3a3 hash=d4f94d..4096ac elapsed=4.997s +INFO [08-24|09:50:59.008] Commit new sealing work number=4674 sealhash=0e6801..999855 txs=0 gas=0 fees=0 elapsed="180.127µs" +INFO [08-24|09:51:04.010] Successfully sealed new block number=4674 sealhash=0e6801..999855 hash=57f9b7..b57386 elapsed=5.001s +INFO [08-24|09:51:04.011] Commit new sealing work number=4675 sealhash=9eba62..afd67b txs=0 gas=0 fees=0 elapsed="495.669µs" +INFO [08-24|09:51:08.425] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:51:09.005] Successfully sealed new block number=4675 sealhash=9eba62..afd67b hash=8f8778..0c4c67 elapsed=4.994s +INFO [08-24|09:51:09.005] Commit new sealing work number=4676 sealhash=89f2e0..b49a35 txs=0 gas=0 fees=0 elapsed="487.089µs" +INFO [08-24|09:51:14.006] Successfully sealed new block number=4676 sealhash=89f2e0..b49a35 hash=544d58..229207 elapsed=5.000s +INFO [08-24|09:51:14.006] Commit new sealing work number=4677 sealhash=9c1950..1c8357 txs=0 gas=0 fees=0 elapsed="367.902µs" +INFO [08-24|09:51:18.449] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:51:19.009] Successfully sealed new block number=4677 sealhash=9c1950..1c8357 hash=b02b63..cf9d13 elapsed=5.002s +INFO [08-24|09:51:19.010] Commit new sealing work number=4678 sealhash=9b7f04..6f96b9 txs=0 gas=0 fees=0 elapsed="484.263µs" +INFO [08-24|09:51:24.006] Successfully sealed new block number=4678 sealhash=9b7f04..6f96b9 hash=009543..0d88f5 elapsed=4.996s +INFO [08-24|09:51:24.006] Commit new sealing work number=4679 sealhash=1dfdb2..eb5eee txs=0 gas=0 fees=0 elapsed="306.619µs" +INFO [08-24|09:51:28.469] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:51:29.008] Successfully sealed new block number=4679 sealhash=1dfdb2..eb5eee hash=ab5992..1e5c6a elapsed=5.001s +INFO [08-24|09:51:29.008] Commit new sealing work number=4680 sealhash=9de533..b72c7c txs=0 gas=0 fees=0 elapsed="325.011µs" +INFO [08-24|09:51:34.011] Successfully sealed new block number=4680 sealhash=9de533..b72c7c hash=cfc355..c46593 elapsed=5.003s +INFO [08-24|09:51:34.012] Commit new sealing work number=4681 sealhash=13db7e..7a303b txs=0 gas=0 fees=0 elapsed="435.674µs" +INFO [08-24|09:51:38.491] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:51:39.007] Successfully sealed new block number=4681 sealhash=13db7e..7a303b hash=667b93..30297b elapsed=4.995s +INFO [08-24|09:51:39.008] Commit new sealing work number=4682 sealhash=8c1c50..e6d241 txs=0 gas=0 fees=0 elapsed="360.149µs" +INFO [08-24|09:51:44.008] Successfully sealed new block number=4682 sealhash=8c1c50..e6d241 hash=e6d9b0..3b7183 elapsed=5.000s +INFO [08-24|09:51:44.008] Commit new sealing work number=4683 sealhash=c856d2..32050b txs=0 gas=0 fees=0 elapsed="270.114µs" +INFO [08-24|09:51:48.511] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:51:49.008] Successfully sealed new block number=4683 sealhash=c856d2..32050b hash=7d9f9e..d1ee34 elapsed=4.999s +INFO [08-24|09:51:49.008] Commit new sealing work number=4684 sealhash=7352d6..9d4ce4 txs=0 gas=0 fees=0 elapsed="394.653µs" +INFO [08-24|09:51:54.008] Successfully sealed new block number=4684 sealhash=7352d6..9d4ce4 hash=d81a31..85d23f elapsed=5.000s +INFO [08-24|09:51:54.009] Commit new sealing work number=4685 sealhash=4d435f..79e1ea txs=0 gas=0 fees=0 elapsed="550.316µs" +INFO [08-24|09:51:58.531] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:51:59.005] Successfully sealed new block number=4685 sealhash=4d435f..79e1ea hash=6533ec..ccc4f2 elapsed=4.996s +INFO [08-24|09:51:59.006] Commit new sealing work number=4686 sealhash=fbbf19..dfd21d txs=0 gas=0 fees=0 elapsed="637.972µs" +INFO [08-24|09:52:04.006] Successfully sealed new block number=4686 sealhash=fbbf19..dfd21d hash=de3096..828908 elapsed=4.999s +INFO [08-24|09:52:04.006] Commit new sealing work number=4687 sealhash=fdc062..290b19 txs=0 gas=0 fees=0 elapsed="395.569µs" +INFO [08-24|09:52:08.551] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:52:09.004] Successfully sealed new block number=4687 sealhash=fdc062..290b19 hash=f3f6a5..9cce58 elapsed=4.998s +INFO [08-24|09:52:09.005] Commit new sealing work number=4688 sealhash=a2e09c..44bcb8 txs=0 gas=0 fees=0 elapsed="515.106µs" +INFO [08-24|09:52:14.010] Successfully sealed new block number=4688 sealhash=a2e09c..44bcb8 hash=22c404..8a746b elapsed=5.004s +INFO [08-24|09:52:14.010] Commit new sealing work number=4689 sealhash=c5528d..863797 txs=0 gas=0 fees=0 elapsed="422.728µs" +INFO [08-24|09:52:18.573] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:52:19.010] Successfully sealed new block number=4689 sealhash=c5528d..863797 hash=8fd7bb..4018c1 elapsed=4.999s +INFO [08-24|09:52:19.011] Commit new sealing work number=4690 sealhash=915e8b..51e355 txs=0 gas=0 fees=0 elapsed="954.415µs" +INFO [08-24|09:52:24.008] Successfully sealed new block number=4690 sealhash=915e8b..51e355 hash=50beb2..60e371 elapsed=4.996s +INFO [08-24|09:52:24.008] Commit new sealing work number=4691 sealhash=260054..d7328a txs=0 gas=0 fees=0 elapsed="326.303µs" +INFO [08-24|09:52:28.596] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:52:29.008] Successfully sealed new block number=4691 sealhash=260054..d7328a hash=c58f4e..f1635f elapsed=4.999s +INFO [08-24|09:52:29.009] Commit new sealing work number=4692 sealhash=138f1f..b354ca txs=0 gas=0 fees=0 elapsed="640.403µs" +INFO [08-24|09:52:34.007] Successfully sealed new block number=4692 sealhash=138f1f..b354ca hash=c24847..931a7d elapsed=4.998s +INFO [08-24|09:52:34.007] Commit new sealing work number=4693 sealhash=c13533..f43278 txs=0 gas=0 fees=0 elapsed="363.273µs" +INFO [08-24|09:52:38.616] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:52:39.009] Successfully sealed new block number=4693 sealhash=c13533..f43278 hash=7cc84b..c21288 elapsed=5.002s +INFO [08-24|09:52:39.010] Commit new sealing work number=4694 sealhash=1aec6f..f4541f txs=0 gas=0 fees=0 elapsed="368.983µs" +INFO [08-24|09:52:44.009] Successfully sealed new block number=4694 sealhash=1aec6f..f4541f hash=6f21f4..530d16 elapsed=4.998s +INFO [08-24|09:52:44.009] Commit new sealing work number=4695 sealhash=479eaa..da9310 txs=0 gas=0 fees=0 elapsed="252.9µs" +INFO [08-24|09:52:48.634] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:52:49.008] Successfully sealed new block number=4695 sealhash=479eaa..da9310 hash=93c9cf..c75ba0 elapsed=4.998s +INFO [08-24|09:52:49.009] Commit new sealing work number=4696 sealhash=7d2f8f..f48519 txs=0 gas=0 fees=0 elapsed="371.776µs" +INFO [08-24|09:52:54.009] Successfully sealed new block number=4696 sealhash=7d2f8f..f48519 hash=713552..cd4468 elapsed=5.000s +INFO [08-24|09:52:54.009] Commit new sealing work number=4697 sealhash=f10167..5841f9 txs=0 gas=0 fees=0 elapsed="305.803µs" +INFO [08-24|09:52:58.653] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:52:59.010] Successfully sealed new block number=4697 sealhash=f10167..5841f9 hash=ff06ec..7d5e3f elapsed=5.000s +INFO [08-24|09:52:59.010] Commit new sealing work number=4698 sealhash=d059a2..b7ac36 txs=0 gas=0 fees=0 elapsed="474.391µs" +INFO [08-24|09:53:04.005] Successfully sealed new block number=4698 sealhash=d059a2..b7ac36 hash=b9e505..b42cfa elapsed=4.994s +INFO [08-24|09:53:04.006] Commit new sealing work number=4699 sealhash=5cd1c8..33ad76 txs=0 gas=0 fees=0 elapsed="316.324µs" +INFO [08-24|09:53:08.672] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:53:09.009] Successfully sealed new block number=4699 sealhash=5cd1c8..33ad76 hash=e9dae0..606cd7 elapsed=5.003s +INFO [08-24|09:53:09.010] Commit new sealing work number=4700 sealhash=5d17e5..69781b txs=0 gas=0 fees=0 elapsed=1.457ms +INFO [08-24|09:53:14.009] Successfully sealed new block number=4700 sealhash=5d17e5..69781b hash=f0d362..c40176 elapsed=4.998s +INFO [08-24|09:53:14.009] Commit new sealing work number=4701 sealhash=8d9577..0bf231 txs=0 gas=0 fees=0 elapsed="269.166µs" +INFO [08-24|09:53:18.695] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:53:19.011] Successfully sealed new block number=4701 sealhash=8d9577..0bf231 hash=94d04e..89c7b2 elapsed=5.001s +INFO [08-24|09:53:19.011] Commit new sealing work number=4702 sealhash=5baabc..fd4398 txs=0 gas=0 fees=0 elapsed="265.414µs" +INFO [08-24|09:53:24.012] Successfully sealed new block number=4702 sealhash=5baabc..fd4398 hash=b5ddbd..db5659 elapsed=5.000s +INFO [08-24|09:53:24.012] Commit new sealing work number=4703 sealhash=4957cc..86c4fc txs=0 gas=0 fees=0 elapsed="412.78µs" +INFO [08-24|09:53:28.717] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:53:29.008] Successfully sealed new block number=4703 sealhash=4957cc..86c4fc hash=f0eac1..414fdf elapsed=4.995s +INFO [08-24|09:53:29.009] Commit new sealing work number=4704 sealhash=b8f957..e20df3 txs=0 gas=0 fees=0 elapsed="330.973µs" +INFO [08-24|09:53:34.008] Successfully sealed new block number=4704 sealhash=b8f957..e20df3 hash=4902f6..cf1b54 elapsed=4.998s +INFO [08-24|09:53:34.008] Commit new sealing work number=4705 sealhash=532b5c..12b7e1 txs=0 gas=0 fees=0 elapsed="245.234µs" +INFO [08-24|09:53:38.736] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:53:39.012] Successfully sealed new block number=4705 sealhash=532b5c..12b7e1 hash=e97abd..5d9c8b elapsed=5.003s +INFO [08-24|09:53:39.012] Commit new sealing work number=4706 sealhash=e63480..abbdca txs=0 gas=0 fees=0 elapsed="399.488µs" +INFO [08-24|09:53:44.008] Successfully sealed new block number=4706 sealhash=e63480..abbdca hash=d69514..9657b6 elapsed=4.995s +INFO [08-24|09:53:44.009] Commit new sealing work number=4707 sealhash=750b64..0bbfca txs=0 gas=0 fees=0 elapsed="307.872µs" +INFO [08-24|09:53:48.759] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:53:49.005] Successfully sealed new block number=4707 sealhash=750b64..0bbfca hash=834c7a..5cb3ac elapsed=4.996s +INFO [08-24|09:53:49.005] Commit new sealing work number=4708 sealhash=4bce9a..989050 txs=0 gas=0 fees=0 elapsed="270.308µs" +INFO [08-24|09:53:54.011] Successfully sealed new block number=4708 sealhash=4bce9a..989050 hash=51652f..be3915 elapsed=5.005s +INFO [08-24|09:53:54.012] Commit new sealing work number=4709 sealhash=c1391f..585bf1 txs=0 gas=0 fees=0 elapsed="705.316µs" +INFO [08-24|09:53:58.778] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:53:59.006] Successfully sealed new block number=4709 sealhash=c1391f..585bf1 hash=27c646..3b1053 elapsed=4.994s +INFO [08-24|09:53:59.006] Commit new sealing work number=4710 sealhash=e98eac..f296f5 txs=0 gas=0 fees=0 elapsed="276.504µs" +INFO [08-24|09:54:04.004] Successfully sealed new block number=4710 sealhash=e98eac..f296f5 hash=3415e7..f9579d elapsed=4.997s +INFO [08-24|09:54:04.005] Commit new sealing work number=4711 sealhash=0f3cd4..2ed091 txs=0 gas=0 fees=0 elapsed="223.091µs" +INFO [08-24|09:54:08.800] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:54:09.009] Successfully sealed new block number=4711 sealhash=0f3cd4..2ed091 hash=a013b5..8a7a2d elapsed=5.004s +INFO [08-24|09:54:09.010] Commit new sealing work number=4712 sealhash=90f99c..a06bf0 txs=0 gas=0 fees=0 elapsed="507.152µs" +INFO [08-24|09:54:14.010] Successfully sealed new block number=4712 sealhash=90f99c..a06bf0 hash=993f42..3ce69f elapsed=4.999s +INFO [08-24|09:54:14.010] Commit new sealing work number=4713 sealhash=f845a3..951fad txs=0 gas=0 fees=0 elapsed="279.235µs" +INFO [08-24|09:54:18.818] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:54:19.008] Successfully sealed new block number=4713 sealhash=f845a3..951fad hash=8a3d22..204675 elapsed=4.998s +INFO [08-24|09:54:19.009] Commit new sealing work number=4714 sealhash=d82840..e512a8 txs=0 gas=0 fees=0 elapsed="422.331µs" +INFO [08-24|09:54:24.010] Successfully sealed new block number=4714 sealhash=d82840..e512a8 hash=afc771..abc4d2 elapsed=5.001s +INFO [08-24|09:54:24.010] Commit new sealing work number=4715 sealhash=969c8b..bace69 txs=0 gas=0 fees=0 elapsed="283.843µs" +INFO [08-24|09:54:28.839] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:54:29.010] Successfully sealed new block number=4715 sealhash=969c8b..bace69 hash=d1216e..7232ec elapsed=4.999s +INFO [08-24|09:54:29.011] Commit new sealing work number=4716 sealhash=71aaf6..75ae46 txs=0 gas=0 fees=0 elapsed="860.174µs" +INFO [08-24|09:54:34.006] Successfully sealed new block number=4716 sealhash=71aaf6..75ae46 hash=05ffc3..235a5a elapsed=4.995s +INFO [08-24|09:54:34.006] Commit new sealing work number=4717 sealhash=5884d8..163a15 txs=0 gas=0 fees=0 elapsed="358.525µs" +INFO [08-24|09:54:38.861] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:54:39.007] Successfully sealed new block number=4717 sealhash=5884d8..163a15 hash=37769d..1164c4 elapsed=5.001s +INFO [08-24|09:54:39.008] Commit new sealing work number=4718 sealhash=a258f6..40c8d4 txs=0 gas=0 fees=0 elapsed="756.562µs" +INFO [08-24|09:54:44.006] Successfully sealed new block number=4718 sealhash=a258f6..40c8d4 hash=9d87fc..983a21 elapsed=4.997s +INFO [08-24|09:54:44.006] Commit new sealing work number=4719 sealhash=c96b73..0ad8dc txs=0 gas=0 fees=0 elapsed="235.285µs" +INFO [08-24|09:54:48.881] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:54:49.007] Successfully sealed new block number=4719 sealhash=c96b73..0ad8dc hash=d667c3..e6f546 elapsed=5.001s +INFO [08-24|09:54:49.008] Commit new sealing work number=4720 sealhash=92d50d..d6bce6 txs=0 gas=0 fees=0 elapsed="246.175µs" +INFO [08-24|09:54:54.005] Successfully sealed new block number=4720 sealhash=92d50d..d6bce6 hash=43b058..9a2ea8 elapsed=4.997s +INFO [08-24|09:54:54.006] Commit new sealing work number=4721 sealhash=97070c..1e3621 txs=0 gas=0 fees=0 elapsed="237.41µs" +INFO [08-24|09:54:58.903] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:54:59.010] Successfully sealed new block number=4721 sealhash=97070c..1e3621 hash=b62c81..0397b0 elapsed=5.004s +INFO [08-24|09:54:59.012] Commit new sealing work number=4722 sealhash=19a40b..6d8535 txs=0 gas=0 fees=0 elapsed="934.705µs" +INFO [08-24|09:55:04.010] Successfully sealed new block number=4722 sealhash=19a40b..6d8535 hash=ec6311..563555 elapsed=4.997s +INFO [08-24|09:55:04.010] Commit new sealing work number=4723 sealhash=d2b5d1..9ddb13 txs=0 gas=0 fees=0 elapsed="387.037µs" +INFO [08-24|09:55:08.925] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:55:09.005] Successfully sealed new block number=4723 sealhash=d2b5d1..9ddb13 hash=58a13a..bc293e elapsed=4.995s +INFO [08-24|09:55:09.006] Commit new sealing work number=4724 sealhash=96601c..7d4ba5 txs=0 gas=0 fees=0 elapsed="400.702µs" +INFO [08-24|09:55:14.011] Successfully sealed new block number=4724 sealhash=96601c..7d4ba5 hash=5aa378..e0fce8 elapsed=5.005s +INFO [08-24|09:55:14.011] Commit new sealing work number=4725 sealhash=ea7a8b..d324cc txs=0 gas=0 fees=0 elapsed="390.925µs" +INFO [08-24|09:55:18.946] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:55:19.010] Successfully sealed new block number=4725 sealhash=ea7a8b..d324cc hash=0830bd..6f54db elapsed=4.998s +INFO [08-24|09:55:19.011] Commit new sealing work number=4726 sealhash=89fd09..77235c txs=0 gas=0 fees=0 elapsed="442.17µs" +INFO [08-24|09:55:24.011] Successfully sealed new block number=4726 sealhash=89fd09..77235c hash=8fce8b..af8803 elapsed=5.000s +INFO [08-24|09:55:24.012] Commit new sealing work number=4727 sealhash=4e37cc..451011 txs=0 gas=0 fees=0 elapsed="427.788µs" +INFO [08-24|09:55:28.968] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:55:29.011] Successfully sealed new block number=4727 sealhash=4e37cc..451011 hash=692e54..1f7c7a elapsed=4.998s +INFO [08-24|09:55:29.011] Commit new sealing work number=4728 sealhash=52be20..1aa5d1 txs=0 gas=0 fees=0 elapsed="374.74µs" +INFO [08-24|09:55:34.009] Successfully sealed new block number=4728 sealhash=52be20..1aa5d1 hash=c4684b..07295e elapsed=4.998s +INFO [08-24|09:55:34.010] Commit new sealing work number=4729 sealhash=918e20..b58404 txs=0 gas=0 fees=0 elapsed="271.4µs" +INFO [08-24|09:55:38.992] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:55:39.008] Successfully sealed new block number=4729 sealhash=918e20..b58404 hash=b028b1..b2cd90 elapsed=4.998s +INFO [08-24|09:55:39.008] Commit new sealing work number=4730 sealhash=f2cfa9..8fa35d txs=0 gas=0 fees=0 elapsed="397.828µs" +INFO [08-24|09:55:44.006] Successfully sealed new block number=4730 sealhash=f2cfa9..8fa35d hash=c9274d..038521 elapsed=4.997s +INFO [08-24|09:55:44.007] Commit new sealing work number=4731 sealhash=edd045..40cba3 txs=0 gas=0 fees=0 elapsed="279.984µs" +INFO [08-24|09:55:49.005] Successfully sealed new block number=4731 sealhash=edd045..40cba3 hash=ec9e67..6ebe69 elapsed=4.998s +INFO [08-24|09:55:49.006] Commit new sealing work number=4732 sealhash=f1b798..69e089 txs=0 gas=0 fees=0 elapsed="523.473µs" +INFO [08-24|09:55:49.011] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:55:54.010] Successfully sealed new block number=4732 sealhash=f1b798..69e089 hash=8f9c06..5db1a4 elapsed=5.004s +INFO [08-24|09:55:54.011] Commit new sealing work number=4733 sealhash=6279ed..16ab36 txs=0 gas=0 fees=0 elapsed="460.369µs" +INFO [08-24|09:55:59.007] Successfully sealed new block number=4733 sealhash=6279ed..16ab36 hash=50cbb8..02f78f elapsed=4.996s +INFO [08-24|09:55:59.008] Commit new sealing work number=4734 sealhash=7c7380..7ac833 txs=0 gas=0 fees=0 elapsed="752.432µs" +INFO [08-24|09:55:59.031] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:56:04.010] Successfully sealed new block number=4734 sealhash=7c7380..7ac833 hash=3d32de..58b6ff elapsed=5.001s +INFO [08-24|09:56:04.010] Commit new sealing work number=4735 sealhash=ef6033..2939bd txs=0 gas=0 fees=0 elapsed="222.106µs" +INFO [08-24|09:56:09.009] Successfully sealed new block number=4735 sealhash=ef6033..2939bd hash=c9a7f2..65bf8f elapsed=4.999s +INFO [08-24|09:56:09.010] Commit new sealing work number=4736 sealhash=cf55dc..343327 txs=0 gas=0 fees=0 elapsed="421.444µs" +INFO [08-24|09:56:09.051] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:56:14.010] Successfully sealed new block number=4736 sealhash=cf55dc..343327 hash=44282e..d40176 elapsed=5.000s +INFO [08-24|09:56:14.011] Commit new sealing work number=4737 sealhash=e0745b..1b6013 txs=0 gas=0 fees=0 elapsed="284.259µs" +INFO [08-24|09:56:19.009] Successfully sealed new block number=4737 sealhash=e0745b..1b6013 hash=7df938..a2b563 elapsed=4.997s +INFO [08-24|09:56:19.009] Commit new sealing work number=4738 sealhash=d3c3e3..df32d4 txs=0 gas=0 fees=0 elapsed="448.672µs" +INFO [08-24|09:56:19.074] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:56:24.009] Successfully sealed new block number=4738 sealhash=d3c3e3..df32d4 hash=a62d9f..7b47e8 elapsed=4.999s +INFO [08-24|09:56:24.010] Commit new sealing work number=4739 sealhash=755e84..c156e5 txs=0 gas=0 fees=0 elapsed="488.975µs" +INFO [08-24|09:56:29.010] Successfully sealed new block number=4739 sealhash=755e84..c156e5 hash=fb6b54..6464e1 elapsed=5.000s +INFO [08-24|09:56:29.011] Commit new sealing work number=4740 sealhash=1bc26c..9a1afa txs=0 gas=0 fees=0 elapsed="334.025µs" +INFO [08-24|09:56:29.094] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:56:34.006] Successfully sealed new block number=4740 sealhash=1bc26c..9a1afa hash=4c9857..b24921 elapsed=4.995s +INFO [08-24|09:56:34.007] Commit new sealing work number=4741 sealhash=486a2e..e36d11 txs=0 gas=0 fees=0 elapsed="307.635µs" +INFO [08-24|09:56:39.009] Successfully sealed new block number=4741 sealhash=486a2e..e36d11 hash=3cf157..7065af elapsed=5.002s +INFO [08-24|09:56:39.010] Commit new sealing work number=4742 sealhash=ffcbcd..865e94 txs=0 gas=0 fees=0 elapsed="380.964µs" +INFO [08-24|09:56:39.120] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:56:44.011] Successfully sealed new block number=4742 sealhash=ffcbcd..865e94 hash=dbf8b9..2724c2 elapsed=5.000s +INFO [08-24|09:56:44.012] Commit new sealing work number=4743 sealhash=456967..4ccb4c txs=0 gas=0 fees=0 elapsed="828.809µs" +INFO [08-24|09:56:49.010] Successfully sealed new block number=4743 sealhash=456967..4ccb4c hash=a723d5..d6180e elapsed=4.998s +INFO [08-24|09:56:49.010] Commit new sealing work number=4744 sealhash=2aa473..1aaf81 txs=0 gas=0 fees=0 elapsed="329.54µs" +INFO [08-24|09:56:49.143] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:56:54.010] Successfully sealed new block number=4744 sealhash=2aa473..1aaf81 hash=d7b822..d8a1c4 elapsed=5.000s +INFO [08-24|09:56:54.011] Commit new sealing work number=4745 sealhash=243cf8..bb9e47 txs=0 gas=0 fees=0 elapsed="374.398µs" +INFO [08-24|09:56:59.010] Successfully sealed new block number=4745 sealhash=243cf8..bb9e47 hash=7dd692..8c22d4 elapsed=4.998s +INFO [08-24|09:56:59.011] Commit new sealing work number=4746 sealhash=5797e1..e21e6b txs=0 gas=0 fees=0 elapsed="557.049µs" +INFO [08-24|09:56:59.161] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:57:04.011] Successfully sealed new block number=4746 sealhash=5797e1..e21e6b hash=0fcd76..8c6f49 elapsed=5.000s +INFO [08-24|09:57:04.012] Commit new sealing work number=4747 sealhash=39e2f4..89e964 txs=0 gas=0 fees=0 elapsed="383.406µs" +INFO [08-24|09:57:09.009] Successfully sealed new block number=4747 sealhash=39e2f4..89e964 hash=82da13..c18caf elapsed=4.997s +INFO [08-24|09:57:09.009] Commit new sealing work number=4748 sealhash=adea2a..81ac79 txs=0 gas=0 fees=0 elapsed="416.879µs" +INFO [08-24|09:57:09.181] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:57:14.008] Successfully sealed new block number=4748 sealhash=adea2a..81ac79 hash=521287..d5be5e elapsed=4.998s +INFO [08-24|09:57:14.008] Commit new sealing work number=4749 sealhash=976c5c..31c0e6 txs=0 gas=0 fees=0 elapsed="260.374µs" +INFO [08-24|09:57:19.009] Successfully sealed new block number=4749 sealhash=976c5c..31c0e6 hash=f140c8..c06119 elapsed=5.001s +INFO [08-24|09:57:19.010] Commit new sealing work number=4750 sealhash=d213eb..151963 txs=0 gas=0 fees=0 elapsed="484.937µs" +INFO [08-24|09:57:19.201] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:57:24.008] Successfully sealed new block number=4750 sealhash=d213eb..151963 hash=d3f422..466df2 elapsed=4.998s +INFO [08-24|09:57:24.009] Commit new sealing work number=4751 sealhash=e7788a..e59525 txs=0 gas=0 fees=0 elapsed="278.205µs" +INFO [08-24|09:57:29.011] Successfully sealed new block number=4751 sealhash=e7788a..e59525 hash=161eae..60d47a elapsed=5.002s +INFO [08-24|09:57:29.012] Commit new sealing work number=4752 sealhash=f22e5e..9d89db txs=0 gas=0 fees=0 elapsed="239.077µs" +INFO [08-24|09:57:29.226] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:57:34.010] Successfully sealed new block number=4752 sealhash=f22e5e..9d89db hash=f6b555..6b4289 elapsed=4.998s +INFO [08-24|09:57:34.011] Commit new sealing work number=4753 sealhash=5fd4b4..a33acb txs=0 gas=0 fees=0 elapsed="564.994µs" +INFO [08-24|09:57:39.004] Successfully sealed new block number=4753 sealhash=5fd4b4..a33acb hash=3f7972..82566c elapsed=4.993s +INFO [08-24|09:57:39.005] Commit new sealing work number=4754 sealhash=f67b59..64a16c txs=0 gas=0 fees=0 elapsed="353.753µs" +INFO [08-24|09:57:39.250] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:57:44.011] Successfully sealed new block number=4754 sealhash=f67b59..64a16c hash=4f10f7..5c8b33 elapsed=5.006s +INFO [08-24|09:57:44.011] Commit new sealing work number=4755 sealhash=9c216d..082227 txs=0 gas=0 fees=0 elapsed="394.027µs" +INFO [08-24|09:57:49.012] Successfully sealed new block number=4755 sealhash=9c216d..082227 hash=22162e..49ceb5 elapsed=5.000s +INFO [08-24|09:57:49.013] Commit new sealing work number=4756 sealhash=5d4030..be56b3 txs=0 gas=0 fees=0 elapsed="974.212µs" +INFO [08-24|09:57:49.273] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:57:54.010] Successfully sealed new block number=4756 sealhash=5d4030..be56b3 hash=b365bc..921e31 elapsed=4.997s +INFO [08-24|09:57:54.011] Commit new sealing work number=4757 sealhash=f03531..18e1a3 txs=0 gas=0 fees=0 elapsed="396.766µs" +INFO [08-24|09:57:59.011] Successfully sealed new block number=4757 sealhash=f03531..18e1a3 hash=c1851b..dec411 elapsed=5.000s +INFO [08-24|09:57:59.013] Commit new sealing work number=4758 sealhash=cd500a..7cfbbf txs=0 gas=0 fees=0 elapsed=2.052ms +INFO [08-24|09:57:59.295] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:58:04.009] Successfully sealed new block number=4758 sealhash=cd500a..7cfbbf hash=bbb053..84e8f6 elapsed=4.996s +INFO [08-24|09:58:04.010] Commit new sealing work number=4759 sealhash=813abb..36cb4e txs=0 gas=0 fees=0 elapsed="364.009µs" +INFO [08-24|09:58:09.010] Successfully sealed new block number=4759 sealhash=813abb..36cb4e hash=bb2ca5..cc2d55 elapsed=5.000s +INFO [08-24|09:58:09.010] Commit new sealing work number=4760 sealhash=010200..f8f0e0 txs=0 gas=0 fees=0 elapsed="190.104µs" +INFO [08-24|09:58:09.318] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:58:14.009] Successfully sealed new block number=4760 sealhash=010200..f8f0e0 hash=d9b23c..954771 elapsed=4.998s +INFO [08-24|09:58:14.009] Commit new sealing work number=4761 sealhash=785ac3..c9e3c1 txs=0 gas=0 fees=0 elapsed="408.566µs" +INFO [08-24|09:58:19.008] Successfully sealed new block number=4761 sealhash=785ac3..c9e3c1 hash=88fdcc..bf6ed0 elapsed=4.999s +INFO [08-24|09:58:19.009] Commit new sealing work number=4762 sealhash=a7ea6b..0c1f2c txs=0 gas=0 fees=0 elapsed="530.187µs" +INFO [08-24|09:58:19.339] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:58:24.009] Successfully sealed new block number=4762 sealhash=a7ea6b..0c1f2c hash=2b9412..6d9268 elapsed=5.000s +INFO [08-24|09:58:24.010] Commit new sealing work number=4763 sealhash=e905d5..be4b02 txs=0 gas=0 fees=0 elapsed="322.93µs" +INFO [08-24|09:58:29.009] Successfully sealed new block number=4763 sealhash=e905d5..be4b02 hash=30a61a..bbc8ec elapsed=4.999s +INFO [08-24|09:58:29.010] Commit new sealing work number=4764 sealhash=c02a45..237f4e txs=0 gas=0 fees=0 elapsed="183.949µs" +INFO [08-24|09:58:29.360] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:58:34.009] Successfully sealed new block number=4764 sealhash=c02a45..237f4e hash=4c73b4..ee79d3 elapsed=4.999s +INFO [08-24|09:58:34.010] Commit new sealing work number=4765 sealhash=2a07b2..88f712 txs=0 gas=0 fees=0 elapsed="225.383µs" +INFO [08-24|09:58:39.010] Successfully sealed new block number=4765 sealhash=2a07b2..88f712 hash=61b62f..48c0c6 elapsed=5.000s +INFO [08-24|09:58:39.011] Commit new sealing work number=4766 sealhash=99578b..55f81f txs=0 gas=0 fees=0 elapsed="433.914µs" +INFO [08-24|09:58:39.380] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:58:44.005] Successfully sealed new block number=4766 sealhash=99578b..55f81f hash=42c574..7e1c77 elapsed=4.994s +INFO [08-24|09:58:44.006] Commit new sealing work number=4767 sealhash=0a95d8..7088da txs=0 gas=0 fees=0 elapsed="294.159µs" +INFO [08-24|09:58:49.009] Successfully sealed new block number=4767 sealhash=0a95d8..7088da hash=49a17d..db9c4a elapsed=5.003s +INFO [08-24|09:58:49.010] Commit new sealing work number=4768 sealhash=e3a83d..e5fa0d txs=0 gas=0 fees=0 elapsed="344.934µs" +INFO [08-24|09:58:49.402] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:58:54.010] Successfully sealed new block number=4768 sealhash=e3a83d..e5fa0d hash=603b1e..5645cd elapsed=4.999s +INFO [08-24|09:58:54.010] Commit new sealing work number=4769 sealhash=38ee6a..5318e1 txs=0 gas=0 fees=0 elapsed="354.033µs" +INFO [08-24|09:58:59.006] Successfully sealed new block number=4769 sealhash=38ee6a..5318e1 hash=188d53..f074f3 elapsed=4.995s +INFO [08-24|09:58:59.006] Commit new sealing work number=4770 sealhash=775f8a..639b98 txs=0 gas=0 fees=0 elapsed="250.388µs" +INFO [08-24|09:58:59.422] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:59:04.004] Successfully sealed new block number=4770 sealhash=775f8a..639b98 hash=b33fbf..577a51 elapsed=4.998s +INFO [08-24|09:59:04.005] Commit new sealing work number=4771 sealhash=aad58f..c03fb3 txs=0 gas=0 fees=0 elapsed="310.942µs" +INFO [08-24|09:59:09.011] Successfully sealed new block number=4771 sealhash=aad58f..c03fb3 hash=7153cf..869ae2 elapsed=5.006s +INFO [08-24|09:59:09.012] Commit new sealing work number=4772 sealhash=bf1cbc..abb3fd txs=0 gas=0 fees=0 elapsed="375.249µs" +INFO [08-24|09:59:09.446] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:59:14.010] Successfully sealed new block number=4772 sealhash=bf1cbc..abb3fd hash=57b11c..6810ac elapsed=4.998s +INFO [08-24|09:59:14.011] Commit new sealing work number=4773 sealhash=23b604..ef8f2e txs=0 gas=0 fees=0 elapsed="347.969µs" +INFO [08-24|09:59:19.010] Successfully sealed new block number=4773 sealhash=23b604..ef8f2e hash=f819e6..268908 elapsed=4.999s +INFO [08-24|09:59:19.011] Commit new sealing work number=4774 sealhash=76f9cd..842710 txs=0 gas=0 fees=0 elapsed="210.733µs" +INFO [08-24|09:59:19.469] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:59:24.012] Successfully sealed new block number=4774 sealhash=76f9cd..842710 hash=608e33..fa60ff elapsed=5.001s +INFO [08-24|09:59:24.012] Commit new sealing work number=4775 sealhash=7280c1..99ad8c txs=0 gas=0 fees=0 elapsed="312.259µs" +INFO [08-24|09:59:29.011] Successfully sealed new block number=4775 sealhash=7280c1..99ad8c hash=286fc7..a6e59f elapsed=4.998s +INFO [08-24|09:59:29.012] Commit new sealing work number=4776 sealhash=664ba3..5dd42d txs=0 gas=0 fees=0 elapsed="295.28µs" +INFO [08-24|09:59:29.491] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:59:34.005] Successfully sealed new block number=4776 sealhash=664ba3..5dd42d hash=f695a5..498071 elapsed=4.993s +INFO [08-24|09:59:34.006] Commit new sealing work number=4777 sealhash=3d65c0..95a377 txs=0 gas=0 fees=0 elapsed="330.431µs" +INFO [08-24|09:59:39.009] Successfully sealed new block number=4777 sealhash=3d65c0..95a377 hash=9abd85..e282dc elapsed=5.003s +INFO [08-24|09:59:39.009] Commit new sealing work number=4778 sealhash=d8c0c1..de86c8 txs=0 gas=0 fees=0 elapsed="358.636µs" +INFO [08-24|09:59:39.512] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:59:44.006] Successfully sealed new block number=4778 sealhash=d8c0c1..de86c8 hash=17bbbb..61088f elapsed=4.997s +INFO [08-24|09:59:44.007] Commit new sealing work number=4779 sealhash=e477c9..359ba5 txs=0 gas=0 fees=0 elapsed="255.844µs" +INFO [08-24|09:59:49.005] Successfully sealed new block number=4779 sealhash=e477c9..359ba5 hash=04cba7..dc4609 elapsed=4.998s +INFO [08-24|09:59:49.006] Commit new sealing work number=4780 sealhash=febfd7..a2d271 txs=0 gas=0 fees=0 elapsed="239.419µs" +INFO [08-24|09:59:49.535] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:59:54.011] Successfully sealed new block number=4780 sealhash=febfd7..a2d271 hash=2f4513..a2f4fd elapsed=5.005s +INFO [08-24|09:59:54.012] Commit new sealing work number=4781 sealhash=bac9e1..fee952 txs=0 gas=0 fees=0 elapsed="536.611µs" +INFO [08-24|09:59:59.009] Successfully sealed new block number=4781 sealhash=bac9e1..fee952 hash=cc1cef..47b272 elapsed=4.997s +INFO [08-24|09:59:59.009] Commit new sealing work number=4782 sealhash=21967f..4e85fb txs=0 gas=0 fees=0 elapsed="304.073µs" +INFO [08-24|09:59:59.557] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:00:04.010] Successfully sealed new block number=4782 sealhash=21967f..4e85fb hash=17d620..2a88b3 elapsed=5.000s +INFO [08-24|10:00:04.011] Commit new sealing work number=4783 sealhash=94707c..da3f80 txs=0 gas=0 fees=0 elapsed="256.005µs" +INFO [08-24|10:00:09.009] Successfully sealed new block number=4783 sealhash=94707c..da3f80 hash=7576c2..16b238 elapsed=4.998s +INFO [08-24|10:00:09.010] Commit new sealing work number=4784 sealhash=2015df..79ba05 txs=0 gas=0 fees=0 elapsed="551.565µs" +INFO [08-24|10:00:09.580] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:00:14.012] Successfully sealed new block number=4784 sealhash=2015df..79ba05 hash=744fb5..7455e1 elapsed=5.001s +INFO [08-24|10:00:14.012] Commit new sealing work number=4785 sealhash=b5e798..9df068 txs=0 gas=0 fees=0 elapsed="376.482µs" +INFO [08-24|10:00:19.011] Successfully sealed new block number=4785 sealhash=b5e798..9df068 hash=a9c358..145b5b elapsed=4.998s +INFO [08-24|10:00:19.011] Commit new sealing work number=4786 sealhash=ef5a77..b797dd txs=0 gas=0 fees=0 elapsed="407.219µs" +INFO [08-24|10:00:19.601] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:00:24.010] Successfully sealed new block number=4786 sealhash=ef5a77..b797dd hash=42d4d3..517f01 elapsed=4.998s +INFO [08-24|10:00:24.010] Commit new sealing work number=4787 sealhash=690122..d78afe txs=0 gas=0 fees=0 elapsed="306.938µs" +INFO [08-24|10:00:29.010] Successfully sealed new block number=4787 sealhash=690122..d78afe hash=60e0a9..e2dec4 elapsed=4.999s +INFO [08-24|10:00:29.011] Commit new sealing work number=4788 sealhash=3396fc..3fb87a txs=0 gas=0 fees=0 elapsed="353.221µs" +INFO [08-24|10:00:29.627] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:00:34.010] Successfully sealed new block number=4788 sealhash=3396fc..3fb87a hash=a5f795..a7cdd6 elapsed=4.999s +INFO [08-24|10:00:34.010] Commit new sealing work number=4789 sealhash=aca204..1e6a44 txs=0 gas=0 fees=0 elapsed="274.649µs" +INFO [08-24|10:00:39.007] Successfully sealed new block number=4789 sealhash=aca204..1e6a44 hash=839c19..31920b elapsed=4.996s +INFO [08-24|10:00:39.008] Commit new sealing work number=4790 sealhash=8890fb..9b7d90 txs=0 gas=0 fees=0 elapsed="263.947µs" +INFO [08-24|10:00:39.650] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:00:44.012] Successfully sealed new block number=4790 sealhash=8890fb..9b7d90 hash=7c14c4..fdc155 elapsed=5.004s +INFO [08-24|10:00:44.012] Commit new sealing work number=4791 sealhash=1a9963..f9c0ec txs=0 gas=0 fees=0 elapsed="363.731µs" +INFO [08-24|10:00:49.007] Successfully sealed new block number=4791 sealhash=1a9963..f9c0ec hash=450853..ae2cd3 elapsed=4.994s +INFO [08-24|10:00:49.007] Commit new sealing work number=4792 sealhash=89793a..8452c2 txs=0 gas=0 fees=0 elapsed="275.1µs" +INFO [08-24|10:00:49.674] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:00:54.004] Successfully sealed new block number=4792 sealhash=89793a..8452c2 hash=0844d0..92bffd elapsed=4.996s +INFO [08-24|10:00:54.004] Commit new sealing work number=4793 sealhash=1d5711..2ddcc2 txs=0 gas=0 fees=0 elapsed="302.413µs" +INFO [08-24|10:00:59.010] Successfully sealed new block number=4793 sealhash=1d5711..2ddcc2 hash=5d32d2..27e240 elapsed=5.005s +INFO [08-24|10:00:59.010] Commit new sealing work number=4794 sealhash=6e1552..cd323a txs=0 gas=0 fees=0 elapsed="350.853µs" +INFO [08-24|10:00:59.697] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:01:04.011] Successfully sealed new block number=4794 sealhash=6e1552..cd323a hash=dc0055..e6530a elapsed=5.000s +INFO [08-24|10:01:04.011] Commit new sealing work number=4795 sealhash=b08e53..497ace txs=0 gas=0 fees=0 elapsed="258.823µs" +INFO [08-24|10:01:09.010] Successfully sealed new block number=4795 sealhash=b08e53..497ace hash=789b4e..98095f elapsed=4.999s +INFO [08-24|10:01:09.011] Commit new sealing work number=4796 sealhash=8f6ebc..866b0b txs=0 gas=0 fees=0 elapsed="483.606µs" +INFO [08-24|10:01:09.719] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:01:14.011] Successfully sealed new block number=4796 sealhash=8f6ebc..866b0b hash=73947b..570e63 elapsed=5.000s +INFO [08-24|10:01:14.012] Commit new sealing work number=4797 sealhash=2398eb..72701c txs=0 gas=0 fees=0 elapsed="466.986µs" +INFO [08-24|10:01:19.009] Successfully sealed new block number=4797 sealhash=2398eb..72701c hash=2d6a84..4a8412 elapsed=4.997s +INFO [08-24|10:01:19.009] Commit new sealing work number=4798 sealhash=1bb7b9..d8726a txs=0 gas=0 fees=0 elapsed="267.482µs" +INFO [08-24|10:01:19.744] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:01:24.009] Successfully sealed new block number=4798 sealhash=1bb7b9..d8726a hash=cd0a31..71da9b elapsed=4.999s +INFO [08-24|10:01:24.009] Commit new sealing work number=4799 sealhash=9c5c2d..cc99f0 txs=0 gas=0 fees=0 elapsed="292.873µs" +INFO [08-24|10:01:29.010] Successfully sealed new block number=4799 sealhash=9c5c2d..cc99f0 hash=eb3412..b69388 elapsed=5.000s +INFO [08-24|10:01:29.010] Commit new sealing work number=4800 sealhash=fa24ae..9546e7 txs=0 gas=0 fees=0 elapsed="316.838µs" +INFO [08-24|10:01:29.768] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:01:34.006] Successfully sealed new block number=4800 sealhash=fa24ae..9546e7 hash=63dc93..4ac6fd elapsed=4.995s +INFO [08-24|10:01:34.006] Commit new sealing work number=4801 sealhash=ca0914..dd472e txs=0 gas=0 fees=0 elapsed="258.624µs" +INFO [08-24|10:01:39.010] Successfully sealed new block number=4801 sealhash=ca0914..dd472e hash=72e04e..7c2b6f elapsed=5.003s +INFO [08-24|10:01:39.010] Commit new sealing work number=4802 sealhash=5ae978..2badd7 txs=0 gas=0 fees=0 elapsed="393.796µs" +INFO [08-24|10:01:39.788] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:01:44.011] Successfully sealed new block number=4802 sealhash=5ae978..2badd7 hash=d5c8d6..d4c1e5 elapsed=5.000s +INFO [08-24|10:01:44.012] Commit new sealing work number=4803 sealhash=983512..793512 txs=0 gas=0 fees=0 elapsed="445.209µs" +INFO [08-24|10:01:49.004] Successfully sealed new block number=4803 sealhash=983512..793512 hash=703304..84493e elapsed=4.992s +INFO [08-24|10:01:49.005] Commit new sealing work number=4804 sealhash=6ff166..1b6a99 txs=0 gas=0 fees=0 elapsed="396.941µs" +INFO [08-24|10:01:49.809] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:01:54.005] Successfully sealed new block number=4804 sealhash=6ff166..1b6a99 hash=d461bb..163881 elapsed=5.000s +INFO [08-24|10:01:54.005] Commit new sealing work number=4805 sealhash=b6a370..c092f8 txs=0 gas=0 fees=0 elapsed="260.297µs" +INFO [08-24|10:01:59.008] Successfully sealed new block number=4805 sealhash=b6a370..c092f8 hash=e70c22..73652f elapsed=5.002s +INFO [08-24|10:01:59.008] Commit new sealing work number=4806 sealhash=bccc30..f2b59c txs=0 gas=0 fees=0 elapsed="240.124µs" +INFO [08-24|10:01:59.830] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:02:04.005] Successfully sealed new block number=4806 sealhash=bccc30..f2b59c hash=30b276..a3060a elapsed=4.997s +INFO [08-24|10:02:04.005] Commit new sealing work number=4807 sealhash=df07ad..2d5ef6 txs=0 gas=0 fees=0 elapsed="230.433µs" +INFO [08-24|10:02:09.010] Successfully sealed new block number=4807 sealhash=df07ad..2d5ef6 hash=c1402f..1254d6 elapsed=5.004s +INFO [08-24|10:02:09.010] Commit new sealing work number=4808 sealhash=1e38e2..ff0c92 txs=0 gas=0 fees=0 elapsed="425.941µs" +INFO [08-24|10:02:09.853] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:02:14.007] Successfully sealed new block number=4808 sealhash=1e38e2..ff0c92 hash=b23bc5..922710 elapsed=4.997s +INFO [08-24|10:02:14.008] Commit new sealing work number=4809 sealhash=7f8cd9..c49d22 txs=0 gas=0 fees=0 elapsed="249.061µs" +INFO [08-24|10:02:19.011] Successfully sealed new block number=4809 sealhash=7f8cd9..c49d22 hash=3e96fa..e7a111 elapsed=5.003s +INFO [08-24|10:02:19.011] Commit new sealing work number=4810 sealhash=b6c314..df260a txs=0 gas=0 fees=0 elapsed="327.073µs" +INFO [08-24|10:02:19.872] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:02:24.009] Successfully sealed new block number=4810 sealhash=b6c314..df260a hash=d19442..bcc7d8 elapsed=4.997s +INFO [08-24|10:02:24.009] Commit new sealing work number=4811 sealhash=40e5c4..463088 txs=0 gas=0 fees=0 elapsed="351.095µs" +INFO [08-24|10:02:29.008] Successfully sealed new block number=4811 sealhash=40e5c4..463088 hash=e7c5c6..b5b720 elapsed=4.998s +INFO [08-24|10:02:29.008] Commit new sealing work number=4812 sealhash=c9cfbb..f5bf41 txs=0 gas=0 fees=0 elapsed="230.187µs" +INFO [08-24|10:02:29.892] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:02:34.012] Successfully sealed new block number=4812 sealhash=c9cfbb..f5bf41 hash=18b593..337adc elapsed=5.003s +INFO [08-24|10:02:34.013] Commit new sealing work number=4813 sealhash=c06e1b..fd247e txs=0 gas=0 fees=0 elapsed="643.692µs" +INFO [08-24|10:02:39.011] Successfully sealed new block number=4813 sealhash=c06e1b..fd247e hash=8a4276..84e90c elapsed=4.998s +INFO [08-24|10:02:39.012] Commit new sealing work number=4814 sealhash=a5019a..e5a18d txs=0 gas=0 fees=0 elapsed="397.907µs" +INFO [08-24|10:02:39.913] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:02:44.005] Successfully sealed new block number=4814 sealhash=a5019a..e5a18d hash=484a35..e29e58 elapsed=4.993s +INFO [08-24|10:02:44.006] Commit new sealing work number=4815 sealhash=71ec07..4334a5 txs=0 gas=0 fees=0 elapsed="286.915µs" +INFO [08-24|10:02:49.011] Successfully sealed new block number=4815 sealhash=71ec07..4334a5 hash=70b6bf..17449e elapsed=5.005s +INFO [08-24|10:02:49.012] Commit new sealing work number=4816 sealhash=4f6c58..c17354 txs=0 gas=0 fees=0 elapsed="470.981µs" +INFO [08-24|10:02:49.934] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:02:54.010] Successfully sealed new block number=4816 sealhash=4f6c58..c17354 hash=2f69a2..24d3d9 elapsed=4.998s +INFO [08-24|10:02:54.011] Commit new sealing work number=4817 sealhash=03e588..48c8f1 txs=0 gas=0 fees=0 elapsed="429.845µs" +INFO [08-24|10:02:59.010] Successfully sealed new block number=4817 sealhash=03e588..48c8f1 hash=e6a03e..b02dad elapsed=4.999s +INFO [08-24|10:02:59.011] Commit new sealing work number=4818 sealhash=c786f9..a93fd1 txs=0 gas=0 fees=0 elapsed="228.565µs" +INFO [08-24|10:02:59.958] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:03:04.011] Successfully sealed new block number=4818 sealhash=c786f9..a93fd1 hash=099657..9f2766 elapsed=4.999s +INFO [08-24|10:03:04.011] Commit new sealing work number=4819 sealhash=966cc2..b24571 txs=0 gas=0 fees=0 elapsed="301.123µs" +INFO [08-24|10:03:09.011] Successfully sealed new block number=4819 sealhash=966cc2..b24571 hash=950353..f6a799 elapsed=4.999s +INFO [08-24|10:03:09.011] Commit new sealing work number=4820 sealhash=77c896..ca6734 txs=0 gas=0 fees=0 elapsed="571.022µs" +INFO [08-24|10:03:09.980] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:03:14.011] Successfully sealed new block number=4820 sealhash=77c896..ca6734 hash=987e92..c16e89 elapsed=4.999s +INFO [08-24|10:03:14.011] Commit new sealing work number=4821 sealhash=4538fa..05396c txs=0 gas=0 fees=0 elapsed="244.974µs" +INFO [08-24|10:03:19.010] Successfully sealed new block number=4821 sealhash=4538fa..05396c hash=89f5d2..e664d2 elapsed=4.998s +INFO [08-24|10:03:19.010] Commit new sealing work number=4822 sealhash=c352f1..cd0828 txs=0 gas=0 fees=0 elapsed="334.405µs" +INFO [08-24|10:03:20.000] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:03:24.010] Successfully sealed new block number=4822 sealhash=c352f1..cd0828 hash=57b00a..6dac51 elapsed=4.999s +INFO [08-24|10:03:24.010] Commit new sealing work number=4823 sealhash=881bc3..cfcd42 txs=0 gas=0 fees=0 elapsed="323.375µs" +INFO [08-24|10:03:29.005] Successfully sealed new block number=4823 sealhash=881bc3..cfcd42 hash=137c4f..eaffd3 elapsed=4.995s +INFO [08-24|10:03:29.005] Commit new sealing work number=4824 sealhash=6b1724..8d71bf txs=0 gas=0 fees=0 elapsed="312.047µs" +INFO [08-24|10:03:30.023] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:03:34.006] Successfully sealed new block number=4824 sealhash=6b1724..8d71bf hash=9b1aef..68388f elapsed=5.001s +INFO [08-24|10:03:34.007] Commit new sealing work number=4825 sealhash=024f4b..de0843 txs=0 gas=0 fees=0 elapsed="260.728µs" +INFO [08-24|10:03:39.011] Successfully sealed new block number=4825 sealhash=024f4b..de0843 hash=3e96d0..0f2e0e elapsed=5.004s +INFO [08-24|10:03:39.012] Commit new sealing work number=4826 sealhash=d38257..020bc9 txs=0 gas=0 fees=0 elapsed="488.94µs" +INFO [08-24|10:03:40.046] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:03:44.010] Successfully sealed new block number=4826 sealhash=d38257..020bc9 hash=4af78c..5a86ec elapsed=4.997s +INFO [08-24|10:03:44.010] Commit new sealing work number=4827 sealhash=48ae77..dfa265 txs=0 gas=0 fees=0 elapsed="354.046µs" +INFO [08-24|10:03:49.005] Successfully sealed new block number=4827 sealhash=48ae77..dfa265 hash=f44dd4..424ce0 elapsed=4.995s +INFO [08-24|10:03:49.006] Commit new sealing work number=4828 sealhash=e77c31..db6f74 txs=0 gas=0 fees=0 elapsed="277.735µs" +INFO [08-24|10:03:50.071] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:03:54.010] Successfully sealed new block number=4828 sealhash=e77c31..db6f74 hash=2b85a2..9a5499 elapsed=5.003s +INFO [08-24|10:03:54.010] Commit new sealing work number=4829 sealhash=3a6d0f..5ab652 txs=0 gas=0 fees=0 elapsed="391.701µs" +INFO [08-24|10:03:59.010] Successfully sealed new block number=4829 sealhash=3a6d0f..5ab652 hash=36b1ef..7e1371 elapsed=5.000s +INFO [08-24|10:03:59.011] Commit new sealing work number=4830 sealhash=8474e7..694e99 txs=0 gas=0 fees=0 elapsed="329.035µs" +INFO [08-24|10:04:00.092] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:04:04.006] Successfully sealed new block number=4830 sealhash=8474e7..694e99 hash=0701b1..3781b4 elapsed=4.994s +INFO [08-24|10:04:04.006] Commit new sealing work number=4831 sealhash=f3fd42..7290cd txs=0 gas=0 fees=0 elapsed="374.268µs" +INFO [08-24|10:04:09.008] Successfully sealed new block number=4831 sealhash=f3fd42..7290cd hash=e46150..987118 elapsed=5.001s +INFO [08-24|10:04:09.008] Commit new sealing work number=4832 sealhash=7c581a..7dd7ce txs=0 gas=0 fees=0 elapsed="408.362µs" +INFO [08-24|10:04:10.114] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:04:14.011] Successfully sealed new block number=4832 sealhash=7c581a..7dd7ce hash=f43e48..5fa014 elapsed=5.002s +INFO [08-24|10:04:14.011] Commit new sealing work number=4833 sealhash=241b4a..cf8fa8 txs=0 gas=0 fees=0 elapsed="311.111µs" +INFO [08-24|10:04:19.008] Successfully sealed new block number=4833 sealhash=241b4a..cf8fa8 hash=d8a4fb..09e9f8 elapsed=4.997s +INFO [08-24|10:04:19.009] Commit new sealing work number=4834 sealhash=d953ad..bcc6b9 txs=0 gas=0 fees=0 elapsed="289.091µs" +INFO [08-24|10:04:20.137] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:04:24.009] Successfully sealed new block number=4834 sealhash=d953ad..bcc6b9 hash=c7c9c6..0254d3 elapsed=5.000s +INFO [08-24|10:04:24.009] Commit new sealing work number=4835 sealhash=1f3c45..db660f txs=0 gas=0 fees=0 elapsed="417.9µs" +INFO [08-24|10:04:29.005] Successfully sealed new block number=4835 sealhash=1f3c45..db660f hash=54e2a5..d8ceec elapsed=4.995s +INFO [08-24|10:04:29.006] Commit new sealing work number=4836 sealhash=7c1703..f26026 txs=0 gas=0 fees=0 elapsed="306.916µs" +INFO [08-24|10:04:30.157] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:04:34.005] Successfully sealed new block number=4836 sealhash=7c1703..f26026 hash=67d3d8..60af99 elapsed=4.999s +INFO [08-24|10:04:34.005] Commit new sealing work number=4837 sealhash=3f65b3..bbe087 txs=0 gas=0 fees=0 elapsed="294.111µs" +INFO [08-24|10:04:39.012] Successfully sealed new block number=4837 sealhash=3f65b3..bbe087 hash=34454d..b7fc37 elapsed=5.007s +INFO [08-24|10:04:39.013] Commit new sealing work number=4838 sealhash=c013d3..f53a40 txs=0 gas=0 fees=0 elapsed="362.184µs" +INFO [08-24|10:04:40.180] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:04:44.011] Successfully sealed new block number=4838 sealhash=c013d3..f53a40 hash=6d55dc..c3010f elapsed=4.997s +INFO [08-24|10:04:44.011] Commit new sealing work number=4839 sealhash=b7108f..f2649e txs=0 gas=0 fees=0 elapsed="523.242µs" +INFO [08-24|10:04:49.009] Successfully sealed new block number=4839 sealhash=b7108f..f2649e hash=4922ea..00fc70 elapsed=4.997s +INFO [08-24|10:04:49.010] Commit new sealing work number=4840 sealhash=5bed89..997e01 txs=0 gas=0 fees=0 elapsed="380.677µs" +INFO [08-24|10:04:50.202] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:04:54.011] Successfully sealed new block number=4840 sealhash=5bed89..997e01 hash=24965e..1585e6 elapsed=5.001s +INFO [08-24|10:04:54.011] Commit new sealing work number=4841 sealhash=149963..7da84d txs=0 gas=0 fees=0 elapsed="394.715µs" +INFO [08-24|10:04:59.010] Successfully sealed new block number=4841 sealhash=149963..7da84d hash=952afe..a37197 elapsed=4.999s +INFO [08-24|10:04:59.011] Commit new sealing work number=4842 sealhash=b1a469..f6179f txs=0 gas=0 fees=0 elapsed="422.615µs" +INFO [08-24|10:05:00.225] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:05:04.005] Successfully sealed new block number=4842 sealhash=b1a469..f6179f hash=d32395..a63b3e elapsed=4.993s +INFO [08-24|10:05:04.005] Commit new sealing work number=4843 sealhash=5a529c..70dc10 txs=0 gas=0 fees=0 elapsed="248.019µs" +INFO [08-24|10:05:09.009] Successfully sealed new block number=4843 sealhash=5a529c..70dc10 hash=cd26a2..2e46e7 elapsed=5.003s +INFO [08-24|10:05:09.009] Commit new sealing work number=4844 sealhash=fa7ffa..b5503d txs=0 gas=0 fees=0 elapsed="398.215µs" +INFO [08-24|10:05:10.245] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:05:14.011] Successfully sealed new block number=4844 sealhash=fa7ffa..b5503d hash=e38883..c70786 elapsed=5.001s +INFO [08-24|10:05:14.011] Commit new sealing work number=4845 sealhash=4700cb..14479b txs=0 gas=0 fees=0 elapsed="272.742µs" +INFO [08-24|10:05:19.003] Successfully sealed new block number=4845 sealhash=4700cb..14479b hash=5d290b..7c13d0 elapsed=4.992s +INFO [08-24|10:05:19.004] Commit new sealing work number=4846 sealhash=37878d..5c26a0 txs=0 gas=0 fees=0 elapsed="321.286µs" +INFO [08-24|10:05:20.263] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:05:24.008] Successfully sealed new block number=4846 sealhash=37878d..5c26a0 hash=347f2f..ea52b0 elapsed=5.004s +INFO [08-24|10:05:24.009] Commit new sealing work number=4847 sealhash=794e02..36daee txs=0 gas=0 fees=0 elapsed="323.741µs" +INFO [08-24|10:05:29.008] Successfully sealed new block number=4847 sealhash=794e02..36daee hash=cb8111..6bbdee elapsed=4.999s +INFO [08-24|10:05:29.008] Commit new sealing work number=4848 sealhash=fbd868..b0b7da txs=0 gas=0 fees=0 elapsed="308.09µs" +INFO [08-24|10:05:30.284] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:05:34.013] Successfully sealed new block number=4848 sealhash=fbd868..b0b7da hash=abe619..c6dc21 elapsed=5.005s +INFO [08-24|10:05:34.014] Commit new sealing work number=4849 sealhash=681e30..49a44d txs=0 gas=0 fees=0 elapsed="934.397µs" +INFO [08-24|10:05:39.005] Successfully sealed new block number=4849 sealhash=681e30..49a44d hash=d192b8..9a8d63 elapsed=4.990s +INFO [08-24|10:05:39.005] Commit new sealing work number=4850 sealhash=7d07a0..23214f txs=0 gas=0 fees=0 elapsed="457.004µs" +INFO [08-24|10:05:40.305] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:05:44.011] Successfully sealed new block number=4850 sealhash=7d07a0..23214f hash=f063c4..f7780f elapsed=5.005s +INFO [08-24|10:05:44.011] Commit new sealing work number=4851 sealhash=4d918d..6e3f1f txs=0 gas=0 fees=0 elapsed="402.281µs" +INFO [08-24|10:05:49.008] Successfully sealed new block number=4851 sealhash=4d918d..6e3f1f hash=ddabb3..d1c386 elapsed=4.996s +INFO [08-24|10:05:49.008] Commit new sealing work number=4852 sealhash=c593de..ef04d3 txs=0 gas=0 fees=0 elapsed="361.52µs" +INFO [08-24|10:05:50.327] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:05:54.010] Successfully sealed new block number=4852 sealhash=c593de..ef04d3 hash=a03189..90ea66 elapsed=5.002s +INFO [08-24|10:05:54.011] Commit new sealing work number=4853 sealhash=b018a8..427629 txs=0 gas=0 fees=0 elapsed="329.254µs" +INFO [08-24|10:05:59.008] Successfully sealed new block number=4853 sealhash=b018a8..427629 hash=43eae6..58bb5f elapsed=4.997s +INFO [08-24|10:05:59.008] Commit new sealing work number=4854 sealhash=8ab5ed..c67400 txs=0 gas=0 fees=0 elapsed="288.168µs" +INFO [08-24|10:06:00.349] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:06:04.007] Successfully sealed new block number=4854 sealhash=8ab5ed..c67400 hash=7d6882..6e192a elapsed=4.998s +INFO [08-24|10:06:04.007] Commit new sealing work number=4855 sealhash=0c465d..4211e2 txs=0 gas=0 fees=0 elapsed="247.063µs" +INFO [08-24|10:06:09.009] Successfully sealed new block number=4855 sealhash=0c465d..4211e2 hash=db3926..f07558 elapsed=5.001s +INFO [08-24|10:06:09.010] Commit new sealing work number=4856 sealhash=c52388..754fa0 txs=0 gas=0 fees=0 elapsed="451.993µs" +INFO [08-24|10:06:10.371] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:06:14.010] Successfully sealed new block number=4856 sealhash=c52388..754fa0 hash=d4dce0..06c3fc elapsed=5.000s +INFO [08-24|10:06:14.010] Commit new sealing work number=4857 sealhash=638cea..8f4c09 txs=0 gas=0 fees=0 elapsed="453.65µs" +INFO [08-24|10:06:19.012] Successfully sealed new block number=4857 sealhash=638cea..8f4c09 hash=e2b418..ed0c2e elapsed=5.001s +INFO [08-24|10:06:19.012] Commit new sealing work number=4858 sealhash=b28a63..c415a2 txs=0 gas=0 fees=0 elapsed="701.849µs" +INFO [08-24|10:06:20.392] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:06:24.004] Successfully sealed new block number=4858 sealhash=b28a63..c415a2 hash=139036..cee9c4 elapsed=4.992s +INFO [08-24|10:06:24.005] Commit new sealing work number=4859 sealhash=768f84..325746 txs=0 gas=0 fees=0 elapsed="292.733µs" +INFO [08-24|10:06:29.010] Successfully sealed new block number=4859 sealhash=768f84..325746 hash=1af089..a744de elapsed=5.005s +INFO [08-24|10:06:29.011] Commit new sealing work number=4860 sealhash=97f1b8..8fe31f txs=0 gas=0 fees=0 elapsed="196.866µs" +INFO [08-24|10:06:30.411] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:06:34.006] Successfully sealed new block number=4860 sealhash=97f1b8..8fe31f hash=ce62fd..bbe4ca elapsed=4.994s +INFO [08-24|10:06:34.007] Commit new sealing work number=4861 sealhash=44e596..e5e279 txs=0 gas=0 fees=0 elapsed=1.010ms +INFO [08-24|10:06:39.010] Successfully sealed new block number=4861 sealhash=44e596..e5e279 hash=1b27ba..327e3a elapsed=5.003s +INFO [08-24|10:06:39.011] Commit new sealing work number=4862 sealhash=199339..f5a717 txs=0 gas=0 fees=0 elapsed="385.313µs" +INFO [08-24|10:06:40.429] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:06:44.006] Successfully sealed new block number=4862 sealhash=199339..f5a717 hash=21703d..4a2045 elapsed=4.995s +INFO [08-24|10:06:44.007] Commit new sealing work number=4863 sealhash=37ff33..3cf04c txs=0 gas=0 fees=0 elapsed="324.086µs" +INFO [08-24|10:06:49.014] Successfully sealed new block number=4863 sealhash=37ff33..3cf04c hash=4af037..373447 elapsed=5.006s +INFO [08-24|10:06:49.015] Commit new sealing work number=4864 sealhash=bc6069..94cfbf txs=0 gas=0 fees=0 elapsed="769.432µs" +INFO [08-24|10:06:50.449] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:06:54.006] Successfully sealed new block number=4864 sealhash=bc6069..94cfbf hash=420429..19e2f1 elapsed=4.991s +INFO [08-24|10:06:54.006] Commit new sealing work number=4865 sealhash=c83bc2..f41b15 txs=0 gas=0 fees=0 elapsed="299.533µs" +INFO [08-24|10:06:59.012] Successfully sealed new block number=4865 sealhash=c83bc2..f41b15 hash=e8a43b..58a2d3 elapsed=5.005s +INFO [08-24|10:06:59.013] Commit new sealing work number=4866 sealhash=424828..1a57aa txs=0 gas=0 fees=0 elapsed="771.768µs" +INFO [08-24|10:07:00.470] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:07:04.010] Successfully sealed new block number=4866 sealhash=424828..1a57aa hash=5f10cd..bb9784 elapsed=4.996s +INFO [08-24|10:07:04.010] Commit new sealing work number=4867 sealhash=118b24..be41d7 txs=0 gas=0 fees=0 elapsed="606.324µs" +INFO [08-24|10:07:09.010] Successfully sealed new block number=4867 sealhash=118b24..be41d7 hash=d5e829..33b44d elapsed=4.999s +INFO [08-24|10:07:09.010] Commit new sealing work number=4868 sealhash=30d0be..2465e4 txs=0 gas=0 fees=0 elapsed="591.073µs" +INFO [08-24|10:07:10.493] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:07:14.011] Successfully sealed new block number=4868 sealhash=30d0be..2465e4 hash=a83930..81e71d elapsed=5.000s +INFO [08-24|10:07:14.011] Commit new sealing work number=4869 sealhash=5e1c41..fa138d txs=0 gas=0 fees=0 elapsed="365.675µs" +INFO [08-24|10:07:19.008] Successfully sealed new block number=4869 sealhash=5e1c41..fa138d hash=d534d0..e5ed18 elapsed=4.996s +INFO [08-24|10:07:19.009] Commit new sealing work number=4870 sealhash=3e6fb6..e29e86 txs=0 gas=0 fees=0 elapsed="588.947µs" +INFO [08-24|10:07:20.514] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:07:24.011] Successfully sealed new block number=4870 sealhash=3e6fb6..e29e86 hash=e3d557..bceee1 elapsed=5.001s +INFO [08-24|10:07:24.012] Commit new sealing work number=4871 sealhash=147d51..3384c9 txs=0 gas=0 fees=0 elapsed="432.706µs" +INFO [08-24|10:07:29.012] Successfully sealed new block number=4871 sealhash=147d51..3384c9 hash=333330..186fd1 elapsed=5.000s +INFO [08-24|10:07:29.012] Commit new sealing work number=4872 sealhash=a88bb7..6fac0f txs=0 gas=0 fees=0 elapsed="341.186µs" +INFO [08-24|10:07:30.537] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:07:34.006] Successfully sealed new block number=4872 sealhash=a88bb7..6fac0f hash=587019..8a2c5f elapsed=4.993s +INFO [08-24|10:07:34.006] Commit new sealing work number=4873 sealhash=277d08..6dc5a9 txs=0 gas=0 fees=0 elapsed="310.489µs" +INFO [08-24|10:07:39.015] Successfully sealed new block number=4873 sealhash=277d08..6dc5a9 hash=d6b077..7e276b elapsed=5.008s +INFO [08-24|10:07:39.016] Commit new sealing work number=4874 sealhash=3b9818..79e425 txs=0 gas=0 fees=0 elapsed="612.959µs" +INFO [08-24|10:07:40.558] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:07:44.006] Successfully sealed new block number=4874 sealhash=3b9818..79e425 hash=47f65c..e32921 elapsed=4.990s +INFO [08-24|10:07:44.006] Commit new sealing work number=4875 sealhash=805a5e..ce0d9d txs=0 gas=0 fees=0 elapsed="329.969µs" +INFO [08-24|10:07:49.015] Successfully sealed new block number=4875 sealhash=805a5e..ce0d9d hash=3d658d..57465d elapsed=5.008s +INFO [08-24|10:07:49.016] Commit new sealing work number=4876 sealhash=3c7303..b33632 txs=0 gas=0 fees=0 elapsed="900.509µs" +INFO [08-24|10:07:50.583] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:07:54.008] Successfully sealed new block number=4876 sealhash=3c7303..b33632 hash=4c8465..c7fc77 elapsed=4.992s +INFO [08-24|10:07:54.009] Commit new sealing work number=4877 sealhash=a68594..3da92a txs=0 gas=0 fees=0 elapsed="329.347µs" +INFO [08-24|10:07:59.012] Successfully sealed new block number=4877 sealhash=a68594..3da92a hash=55ba86..922e16 elapsed=5.003s +INFO [08-24|10:07:59.013] Commit new sealing work number=4878 sealhash=4b112a..92d8d6 txs=0 gas=0 fees=0 elapsed="507.398µs" +INFO [08-24|10:08:00.604] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:08:04.010] Successfully sealed new block number=4878 sealhash=4b112a..92d8d6 hash=7968c9..32df34 elapsed=4.996s +INFO [08-24|10:08:04.010] Commit new sealing work number=4879 sealhash=c42d66..6e7360 txs=0 gas=0 fees=0 elapsed="367.67µs" +INFO [08-24|10:08:09.011] Successfully sealed new block number=4879 sealhash=c42d66..6e7360 hash=352f24..bbf5b5 elapsed=5.000s +INFO [08-24|10:08:09.011] Commit new sealing work number=4880 sealhash=f85f8a..136b84 txs=0 gas=0 fees=0 elapsed="441.988µs" +INFO [08-24|10:08:10.627] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:08:14.006] Successfully sealed new block number=4880 sealhash=f85f8a..136b84 hash=86893b..c2cc1a elapsed=4.995s +INFO [08-24|10:08:14.007] Commit new sealing work number=4881 sealhash=2b0bb7..615e7a txs=0 gas=0 fees=0 elapsed="365.071µs" +INFO [08-24|10:08:19.005] Successfully sealed new block number=4881 sealhash=2b0bb7..615e7a hash=1d1721..72c49b elapsed=4.998s +INFO [08-24|10:08:19.006] Commit new sealing work number=4882 sealhash=b4708b..20f22c txs=0 gas=0 fees=0 elapsed="253.011µs" +INFO [08-24|10:08:20.650] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:08:24.011] Successfully sealed new block number=4882 sealhash=b4708b..20f22c hash=2f1a16..8bd1e7 elapsed=5.005s +INFO [08-24|10:08:24.013] Commit new sealing work number=4883 sealhash=27c015..1e0236 txs=0 gas=0 fees=0 elapsed="779.16µs" +INFO [08-24|10:08:29.009] Successfully sealed new block number=4883 sealhash=27c015..1e0236 hash=8433d7..85139b elapsed=4.996s +INFO [08-24|10:08:29.009] Commit new sealing work number=4884 sealhash=4806ac..f96b77 txs=0 gas=0 fees=0 elapsed="282.21µs" +INFO [08-24|10:08:30.673] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:08:34.010] Successfully sealed new block number=4884 sealhash=4806ac..f96b77 hash=2bc2e6..d18c6d elapsed=5.000s +INFO [08-24|10:08:34.011] Commit new sealing work number=4885 sealhash=f40bcc..6cfec6 txs=0 gas=0 fees=0 elapsed="912.341µs" +INFO [08-24|10:08:39.008] Successfully sealed new block number=4885 sealhash=f40bcc..6cfec6 hash=587d3a..a71865 elapsed=4.996s +INFO [08-24|10:08:39.009] Commit new sealing work number=4886 sealhash=41a2fa..503ba2 txs=0 gas=0 fees=0 elapsed="562.605µs" +INFO [08-24|10:08:40.699] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:08:44.011] Successfully sealed new block number=4886 sealhash=41a2fa..503ba2 hash=652456..bec1b1 elapsed=5.001s +INFO [08-24|10:08:44.011] Commit new sealing work number=4887 sealhash=c6ae75..10c685 txs=0 gas=0 fees=0 elapsed="501.246µs" +INFO [08-24|10:08:49.008] Successfully sealed new block number=4887 sealhash=c6ae75..10c685 hash=9e4c25..a26f5b elapsed=4.996s +INFO [08-24|10:08:49.009] Commit new sealing work number=4888 sealhash=c113dc..231554 txs=0 gas=0 fees=0 elapsed="296.501µs" +INFO [08-24|10:08:50.722] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:08:54.007] Successfully sealed new block number=4888 sealhash=c113dc..231554 hash=7dbbd0..e5b84d elapsed=4.998s +INFO [08-24|10:08:54.007] Commit new sealing work number=4889 sealhash=6eb45e..b87ab0 txs=0 gas=0 fees=0 elapsed="260.517µs" +INFO [08-24|10:08:59.007] Successfully sealed new block number=4889 sealhash=6eb45e..b87ab0 hash=6054b3..88f16a elapsed=4.999s +INFO [08-24|10:08:59.007] Commit new sealing work number=4890 sealhash=01c22c..d68d16 txs=0 gas=0 fees=0 elapsed="227.644µs" +INFO [08-24|10:09:00.743] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:09:04.007] Successfully sealed new block number=4890 sealhash=01c22c..d68d16 hash=ac2caa..0ede57 elapsed=4.999s +INFO [08-24|10:09:04.008] Commit new sealing work number=4891 sealhash=eef8c6..228b45 txs=0 gas=0 fees=0 elapsed="545.983µs" +INFO [08-24|10:09:09.007] Successfully sealed new block number=4891 sealhash=eef8c6..228b45 hash=236879..b062f3 elapsed=4.998s +INFO [08-24|10:09:09.007] Commit new sealing work number=4892 sealhash=bb46f4..95b1a1 txs=0 gas=0 fees=0 elapsed="434.553µs" +INFO [08-24|10:09:10.759] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:09:14.007] Successfully sealed new block number=4892 sealhash=bb46f4..95b1a1 hash=069683..021da6 elapsed=5.000s +INFO [08-24|10:09:14.008] Commit new sealing work number=4893 sealhash=50f102..72a321 txs=0 gas=0 fees=0 elapsed="458.171µs" +INFO [08-24|10:09:19.007] Successfully sealed new block number=4893 sealhash=50f102..72a321 hash=05cce2..7e7abf elapsed=4.999s +INFO [08-24|10:09:19.008] Commit new sealing work number=4894 sealhash=4b49fd..150bca txs=0 gas=0 fees=0 elapsed="351.431µs" +INFO [08-24|10:09:20.781] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:09:24.007] Successfully sealed new block number=4894 sealhash=4b49fd..150bca hash=765930..f7ddeb elapsed=4.999s +INFO [08-24|10:09:24.008] Commit new sealing work number=4895 sealhash=f397cb..10ab3f txs=0 gas=0 fees=0 elapsed="280.603µs" +INFO [08-24|10:09:29.008] Successfully sealed new block number=4895 sealhash=f397cb..10ab3f hash=54d82f..440c1f elapsed=5.000s +INFO [08-24|10:09:29.008] Commit new sealing work number=4896 sealhash=9c7f1f..57a7bd txs=0 gas=0 fees=0 elapsed="519.486µs" +INFO [08-24|10:09:30.800] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:09:34.007] Successfully sealed new block number=4896 sealhash=9c7f1f..57a7bd hash=a2903a..4e6b5f elapsed=4.998s +INFO [08-24|10:09:34.007] Commit new sealing work number=4897 sealhash=9f5a99..ee3c00 txs=0 gas=0 fees=0 elapsed="407.866µs" +INFO [08-24|10:09:39.008] Successfully sealed new block number=4897 sealhash=9f5a99..ee3c00 hash=38691e..c0584f elapsed=5.000s +INFO [08-24|10:09:39.008] Commit new sealing work number=4898 sealhash=7fff15..73a768 txs=0 gas=0 fees=0 elapsed="373.191µs" +INFO [08-24|10:09:40.821] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:09:44.008] Successfully sealed new block number=4898 sealhash=7fff15..73a768 hash=76bc1d..bc7f01 elapsed=4.999s +INFO [08-24|10:09:44.008] Commit new sealing work number=4899 sealhash=213ff3..c7352f txs=0 gas=0 fees=0 elapsed="322.866µs" +INFO [08-24|10:09:49.007] Successfully sealed new block number=4899 sealhash=213ff3..c7352f hash=0ff188..8db75f elapsed=4.998s +INFO [08-24|10:09:49.007] Commit new sealing work number=4900 sealhash=b03245..bb86c5 txs=0 gas=0 fees=0 elapsed="299.799µs" +INFO [08-24|10:09:50.840] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:09:54.006] Successfully sealed new block number=4900 sealhash=b03245..bb86c5 hash=34fde9..b4d389 elapsed=4.999s +INFO [08-24|10:09:54.007] Commit new sealing work number=4901 sealhash=31c57c..22f03f txs=0 gas=0 fees=0 elapsed="334.122µs" +INFO [08-24|10:09:59.008] Successfully sealed new block number=4901 sealhash=31c57c..22f03f hash=2a241a..9ed7ad elapsed=5.001s +INFO [08-24|10:09:59.009] Commit new sealing work number=4902 sealhash=c557ec..5de032 txs=0 gas=0 fees=0 elapsed="261.112µs" +INFO [08-24|10:10:00.861] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:10:04.009] Successfully sealed new block number=4902 sealhash=c557ec..5de032 hash=20dc89..72ae04 elapsed=5.000s +INFO [08-24|10:10:04.009] Commit new sealing work number=4903 sealhash=db8995..c6032a txs=0 gas=0 fees=0 elapsed="285.865µs" +INFO [08-24|10:10:09.008] Successfully sealed new block number=4903 sealhash=db8995..c6032a hash=c596bc..3a370c elapsed=4.998s +INFO [08-24|10:10:09.008] Commit new sealing work number=4904 sealhash=bfcfdd..64cbd5 txs=0 gas=0 fees=0 elapsed="376.262µs" +INFO [08-24|10:10:10.880] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:10:14.007] Successfully sealed new block number=4904 sealhash=bfcfdd..64cbd5 hash=566926..c0a7cd elapsed=4.999s +INFO [08-24|10:10:14.008] Commit new sealing work number=4905 sealhash=393157..b029f4 txs=0 gas=0 fees=0 elapsed="257.872µs" +INFO [08-24|10:10:19.007] Successfully sealed new block number=4905 sealhash=393157..b029f4 hash=4ec1ca..234310 elapsed=4.999s +INFO [08-24|10:10:19.007] Commit new sealing work number=4906 sealhash=5fc9c0..548ba7 txs=0 gas=0 fees=0 elapsed="262.517µs" +INFO [08-24|10:10:20.903] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:10:24.006] Successfully sealed new block number=4906 sealhash=5fc9c0..548ba7 hash=9034b3..bcab32 elapsed=4.998s +INFO [08-24|10:10:24.007] Commit new sealing work number=4907 sealhash=46fffa..12ef85 txs=0 gas=0 fees=0 elapsed="296.273µs" +INFO [08-24|10:10:29.007] Successfully sealed new block number=4907 sealhash=46fffa..12ef85 hash=da4369..cdd5b4 elapsed=5.000s +INFO [08-24|10:10:29.007] Commit new sealing work number=4908 sealhash=87d3c5..4a60e4 txs=0 gas=0 fees=0 elapsed="266.098µs" +INFO [08-24|10:10:30.923] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:10:34.007] Successfully sealed new block number=4908 sealhash=87d3c5..4a60e4 hash=deb812..2482e7 elapsed=4.999s +INFO [08-24|10:10:34.007] Commit new sealing work number=4909 sealhash=15615f..954222 txs=0 gas=0 fees=0 elapsed="241.411µs" +INFO [08-24|10:10:39.007] Successfully sealed new block number=4909 sealhash=15615f..954222 hash=57eeea..457ff2 elapsed=4.999s +INFO [08-24|10:10:39.007] Commit new sealing work number=4910 sealhash=aeae81..2394af txs=0 gas=0 fees=0 elapsed="462.15µs" +INFO [08-24|10:10:40.942] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:10:44.006] Successfully sealed new block number=4910 sealhash=aeae81..2394af hash=ae6875..0054c3 elapsed=4.998s +INFO [08-24|10:10:44.006] Commit new sealing work number=4911 sealhash=b3e8cc..46e3dd txs=0 gas=0 fees=0 elapsed="413.563µs" +INFO [08-24|10:10:49.009] Successfully sealed new block number=4911 sealhash=b3e8cc..46e3dd hash=597795..73273b elapsed=5.002s +INFO [08-24|10:10:49.009] Commit new sealing work number=4912 sealhash=c6a88f..a66020 txs=0 gas=0 fees=0 elapsed="424.137µs" +INFO [08-24|10:10:50.962] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:10:54.008] Successfully sealed new block number=4912 sealhash=c6a88f..a66020 hash=b75b02..6a55cf elapsed=4.998s +INFO [08-24|10:10:54.008] Commit new sealing work number=4913 sealhash=65f9e5..438a97 txs=0 gas=0 fees=0 elapsed="233.633µs" +INFO [08-24|10:10:59.007] Successfully sealed new block number=4913 sealhash=65f9e5..438a97 hash=18a211..dee43c elapsed=4.998s +INFO [08-24|10:10:59.007] Commit new sealing work number=4914 sealhash=bc2684..11befe txs=0 gas=0 fees=0 elapsed="397.235µs" +INFO [08-24|10:11:00.980] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:11:04.008] Successfully sealed new block number=4914 sealhash=bc2684..11befe hash=70b6d6..61480c elapsed=5.000s +INFO [08-24|10:11:04.009] Commit new sealing work number=4915 sealhash=b9f51c..e7a146 txs=0 gas=0 fees=0 elapsed="257.089µs" +INFO [08-24|10:11:09.008] Successfully sealed new block number=4915 sealhash=b9f51c..e7a146 hash=a3c238..d3f7a6 elapsed=4.999s +INFO [08-24|10:11:09.008] Commit new sealing work number=4916 sealhash=a6d709..a3f925 txs=0 gas=0 fees=0 elapsed="440.157µs" +INFO [08-24|10:11:11.001] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:11:14.008] Successfully sealed new block number=4916 sealhash=a6d709..a3f925 hash=6b6d2a..4fdec7 elapsed=4.999s +INFO [08-24|10:11:14.009] Commit new sealing work number=4917 sealhash=d436de..44504b txs=0 gas=0 fees=0 elapsed="256.593µs" +INFO [08-24|10:11:19.008] Successfully sealed new block number=4917 sealhash=d436de..44504b hash=9227b2..66bd72 elapsed=4.999s +INFO [08-24|10:11:19.009] Commit new sealing work number=4918 sealhash=ba1bb7..75181f txs=0 gas=0 fees=0 elapsed="359.86µs" +INFO [08-24|10:11:21.021] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:11:24.009] Successfully sealed new block number=4918 sealhash=ba1bb7..75181f hash=d2cefd..7eab1c elapsed=5.000s +INFO [08-24|10:11:24.010] Commit new sealing work number=4919 sealhash=074abf..923c1b txs=0 gas=0 fees=0 elapsed="399.654µs" +INFO [08-24|10:11:29.010] Successfully sealed new block number=4919 sealhash=074abf..923c1b hash=9a1907..d130bd elapsed=5.000s +INFO [08-24|10:11:29.011] Commit new sealing work number=4920 sealhash=7248de..f1b2a1 txs=0 gas=0 fees=0 elapsed="315.07µs" +INFO [08-24|10:11:31.043] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:11:34.008] Successfully sealed new block number=4920 sealhash=7248de..f1b2a1 hash=389606..61e88c elapsed=4.997s +INFO [08-24|10:11:34.010] Commit new sealing work number=4921 sealhash=2deb21..f86a70 txs=0 gas=0 fees=0 elapsed=1.455ms +INFO [08-24|10:11:39.012] Successfully sealed new block number=4921 sealhash=2deb21..f86a70 hash=94a5b0..b91d22 elapsed=5.001s +INFO [08-24|10:11:39.012] Commit new sealing work number=4922 sealhash=06917f..9294ce txs=0 gas=0 fees=0 elapsed="528.172µs" +INFO [08-24|10:11:41.061] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:11:44.011] Successfully sealed new block number=4922 sealhash=06917f..9294ce hash=9b5596..adf8b9 elapsed=4.998s +INFO [08-24|10:11:44.012] Commit new sealing work number=4923 sealhash=293738..3d1c46 txs=0 gas=0 fees=0 elapsed="519.467µs" +INFO [08-24|10:11:49.010] Successfully sealed new block number=4923 sealhash=293738..3d1c46 hash=866979..dca8cf elapsed=4.998s +INFO [08-24|10:11:49.011] Commit new sealing work number=4924 sealhash=9bb2c9..f952eb txs=0 gas=0 fees=0 elapsed="383.39µs" +INFO [08-24|10:11:51.084] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:11:54.006] Successfully sealed new block number=4924 sealhash=9bb2c9..f952eb hash=5b38a8..58f39d elapsed=4.994s +INFO [08-24|10:11:54.006] Commit new sealing work number=4925 sealhash=f4b381..cba524 txs=0 gas=0 fees=0 elapsed="315.243µs" +INFO [08-24|10:11:59.009] Successfully sealed new block number=4925 sealhash=f4b381..cba524 hash=20d91b..3c8ba9 elapsed=5.002s +INFO [08-24|10:11:59.009] Commit new sealing work number=4926 sealhash=393dbb..036371 txs=0 gas=0 fees=0 elapsed="350.292µs" +INFO [08-24|10:12:01.104] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:12:04.006] Successfully sealed new block number=4926 sealhash=393dbb..036371 hash=a726a3..61ca67 elapsed=4.996s +INFO [08-24|10:12:04.006] Commit new sealing work number=4927 sealhash=b26202..1bc87f txs=0 gas=0 fees=0 elapsed="250.164µs" +INFO [08-24|10:12:09.004] Successfully sealed new block number=4927 sealhash=b26202..1bc87f hash=2d71bb..575ca7 elapsed=4.997s +INFO [08-24|10:12:09.004] Commit new sealing work number=4928 sealhash=fa4bd8..902534 txs=0 gas=0 fees=0 elapsed="348.121µs" +INFO [08-24|10:12:11.124] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:12:14.009] Successfully sealed new block number=4928 sealhash=fa4bd8..902534 hash=2fa574..c3bb89 elapsed=5.005s +INFO [08-24|10:12:14.010] Commit new sealing work number=4929 sealhash=7b47a3..f3232e txs=0 gas=0 fees=0 elapsed="258.604µs" +INFO [08-24|10:12:19.005] Successfully sealed new block number=4929 sealhash=7b47a3..f3232e hash=45ffea..7bc9ac elapsed=4.995s +INFO [08-24|10:12:19.006] Commit new sealing work number=4930 sealhash=0542cb..fe593f txs=0 gas=0 fees=0 elapsed="256.493µs" +INFO [08-24|10:12:21.150] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:12:24.010] Successfully sealed new block number=4930 sealhash=0542cb..fe593f hash=0fb9b0..4dbb54 elapsed=5.004s +INFO [08-24|10:12:24.011] Commit new sealing work number=4931 sealhash=25b4b4..ca6734 txs=0 gas=0 fees=0 elapsed="411.341µs" +INFO [08-24|10:12:29.010] Successfully sealed new block number=4931 sealhash=25b4b4..ca6734 hash=41c8dc..b2ea71 elapsed=4.999s +INFO [08-24|10:12:29.010] Commit new sealing work number=4932 sealhash=52b2b1..2f84a3 txs=0 gas=0 fees=0 elapsed="286.685µs" +INFO [08-24|10:12:31.169] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:12:34.009] Successfully sealed new block number=4932 sealhash=52b2b1..2f84a3 hash=5a59bc..cc3338 elapsed=4.998s +INFO [08-24|10:12:34.009] Commit new sealing work number=4933 sealhash=b880e5..4da187 txs=0 gas=0 fees=0 elapsed="382.107µs" +INFO [08-24|10:12:39.012] Successfully sealed new block number=4933 sealhash=b880e5..4da187 hash=1f76bc..1118e3 elapsed=5.002s +INFO [08-24|10:12:39.012] Commit new sealing work number=4934 sealhash=fb3866..136ce3 txs=0 gas=0 fees=0 elapsed="306.325µs" +INFO [08-24|10:12:41.191] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:12:44.010] Successfully sealed new block number=4934 sealhash=fb3866..136ce3 hash=61521e..a6a297 elapsed=4.997s +INFO [08-24|10:12:44.010] Commit new sealing work number=4935 sealhash=aa95a3..2097c2 txs=0 gas=0 fees=0 elapsed="323.483µs" +INFO [08-24|10:12:49.009] Successfully sealed new block number=4935 sealhash=aa95a3..2097c2 hash=739499..66cbc3 elapsed=4.999s +INFO [08-24|10:12:49.010] Commit new sealing work number=4936 sealhash=b42bfe..b9e3e6 txs=0 gas=0 fees=0 elapsed="439.324µs" +INFO [08-24|10:12:51.212] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:12:54.008] Successfully sealed new block number=4936 sealhash=b42bfe..b9e3e6 hash=85facb..cbca91 elapsed=4.997s +INFO [08-24|10:12:54.008] Commit new sealing work number=4937 sealhash=f2bfba..7bbd8d txs=0 gas=0 fees=0 elapsed="238.549µs" +INFO [08-24|10:12:59.010] Successfully sealed new block number=4937 sealhash=f2bfba..7bbd8d hash=cb6866..aae096 elapsed=5.001s +INFO [08-24|10:12:59.010] Commit new sealing work number=4938 sealhash=3a0dac..32aa77 txs=0 gas=0 fees=0 elapsed="393.055µs" +INFO [08-24|10:13:01.231] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:13:04.010] Successfully sealed new block number=4938 sealhash=3a0dac..32aa77 hash=ae6ded..78ae88 elapsed=4.999s +INFO [08-24|10:13:04.010] Commit new sealing work number=4939 sealhash=a21ba1..487418 txs=0 gas=0 fees=0 elapsed="251.971µs" +INFO [08-24|10:13:09.010] Successfully sealed new block number=4939 sealhash=a21ba1..487418 hash=7a4292..21c0bf elapsed=4.999s +INFO [08-24|10:13:09.010] Commit new sealing work number=4940 sealhash=33b7e8..bf4f26 txs=0 gas=0 fees=0 elapsed="249.79µs" +INFO [08-24|10:13:11.251] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:13:14.009] Successfully sealed new block number=4940 sealhash=33b7e8..bf4f26 hash=d5facd..b9130f elapsed=4.999s +INFO [08-24|10:13:14.010] Commit new sealing work number=4941 sealhash=440580..68d4e0 txs=0 gas=0 fees=0 elapsed="225.4µs" +INFO [08-24|10:13:19.010] Successfully sealed new block number=4941 sealhash=440580..68d4e0 hash=c524b4..0ebec6 elapsed=5.000s +INFO [08-24|10:13:19.010] Commit new sealing work number=4942 sealhash=26732f..e142d5 txs=0 gas=0 fees=0 elapsed="338.896µs" +INFO [08-24|10:13:21.270] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:13:24.010] Successfully sealed new block number=4942 sealhash=26732f..e142d5 hash=8433c7..78b1d1 elapsed=4.999s +INFO [08-24|10:13:24.010] Commit new sealing work number=4943 sealhash=c100b6..e1e80c txs=0 gas=0 fees=0 elapsed="251.053µs" +INFO [08-24|10:13:29.006] Successfully sealed new block number=4943 sealhash=c100b6..e1e80c hash=3928bf..201388 elapsed=4.996s +INFO [08-24|10:13:29.007] Commit new sealing work number=4944 sealhash=9f2291..98e12d txs=0 gas=0 fees=0 elapsed="205.704µs" +INFO [08-24|10:13:31.290] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:13:34.008] Successfully sealed new block number=4944 sealhash=9f2291..98e12d hash=bdd70e..7a04de elapsed=5.000s +INFO [08-24|10:13:34.008] Commit new sealing work number=4945 sealhash=eb7ff3..d74e65 txs=0 gas=0 fees=0 elapsed="293.338µs" +INFO [08-24|10:13:39.009] Successfully sealed new block number=4945 sealhash=eb7ff3..d74e65 hash=10c153..0a7c26 elapsed=5.001s +INFO [08-24|10:13:39.009] Commit new sealing work number=4946 sealhash=1468df..d8fd28 txs=0 gas=0 fees=0 elapsed="389.021µs" +INFO [08-24|10:13:41.309] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:13:44.009] Successfully sealed new block number=4946 sealhash=1468df..d8fd28 hash=61abf9..d12cce elapsed=4.999s +INFO [08-24|10:13:44.010] Commit new sealing work number=4947 sealhash=8fd68b..830f28 txs=0 gas=0 fees=0 elapsed="320.055µs" +INFO [08-24|10:13:49.007] Successfully sealed new block number=4947 sealhash=8fd68b..830f28 hash=2ee30c..fb2909 elapsed=4.997s +INFO [08-24|10:13:49.007] Commit new sealing work number=4948 sealhash=933a7e..c55ee4 txs=0 gas=0 fees=0 elapsed="308.942µs" +INFO [08-24|10:13:51.329] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:13:54.007] Successfully sealed new block number=4948 sealhash=933a7e..c55ee4 hash=b1d5f9..0524b6 elapsed=5.000s +INFO [08-24|10:13:54.008] Commit new sealing work number=4949 sealhash=0187b4..a09e84 txs=0 gas=0 fees=0 elapsed="382.52µs" +INFO [08-24|10:13:59.006] Successfully sealed new block number=4949 sealhash=0187b4..a09e84 hash=f486ee..b56a4b elapsed=4.997s +INFO [08-24|10:13:59.006] Commit new sealing work number=4950 sealhash=d24f0b..bf4cd3 txs=0 gas=0 fees=0 elapsed="484.802µs" +INFO [08-24|10:14:01.348] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:14:04.009] Successfully sealed new block number=4950 sealhash=d24f0b..bf4cd3 hash=b58947..b88a11 elapsed=5.002s +INFO [08-24|10:14:04.010] Commit new sealing work number=4951 sealhash=302934..285a2d txs=0 gas=0 fees=0 elapsed="401.252µs" +INFO [08-24|10:14:09.004] Successfully sealed new block number=4951 sealhash=302934..285a2d hash=8895e0..77eee2 elapsed=4.994s +INFO [08-24|10:14:09.005] Commit new sealing work number=4952 sealhash=5b4a4a..b3568f txs=0 gas=0 fees=0 elapsed="374.726µs" +INFO [08-24|10:14:11.368] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:14:14.009] Successfully sealed new block number=4952 sealhash=5b4a4a..b3568f hash=1f6f78..a058f5 elapsed=5.004s +INFO [08-24|10:14:14.009] Commit new sealing work number=4953 sealhash=5556f9..8cd4fc txs=0 gas=0 fees=0 elapsed="280.833µs" +INFO [08-24|10:14:19.011] Successfully sealed new block number=4953 sealhash=5556f9..8cd4fc hash=af627e..d6c1b7 elapsed=5.001s +INFO [08-24|10:14:19.012] Commit new sealing work number=4954 sealhash=96fdbc..de6e69 txs=0 gas=0 fees=0 elapsed=1.051ms +INFO [08-24|10:14:21.387] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:14:24.009] Successfully sealed new block number=4954 sealhash=96fdbc..de6e69 hash=c91939..24f018 elapsed=4.997s +INFO [08-24|10:14:24.010] Commit new sealing work number=4955 sealhash=5cb0e9..7bdaca txs=0 gas=0 fees=0 elapsed="319.484µs" +INFO [08-24|10:14:29.010] Successfully sealed new block number=4955 sealhash=5cb0e9..7bdaca hash=c0cbdf..a4ac89 elapsed=5.000s +INFO [08-24|10:14:29.011] Commit new sealing work number=4956 sealhash=b3da4e..5ea9a3 txs=0 gas=0 fees=0 elapsed="360.781µs" +INFO [08-24|10:14:31.406] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:14:34.010] Successfully sealed new block number=4956 sealhash=b3da4e..5ea9a3 hash=25a167..5c4249 elapsed=4.999s +INFO [08-24|10:14:34.011] Commit new sealing work number=4957 sealhash=cf818c..8902ca txs=0 gas=0 fees=0 elapsed="285.557µs" +INFO [08-24|10:14:39.005] Successfully sealed new block number=4957 sealhash=cf818c..8902ca hash=93a93e..4afbc5 elapsed=4.994s +INFO [08-24|10:14:39.006] Commit new sealing work number=4958 sealhash=d464ea..8fe0a1 txs=0 gas=0 fees=0 elapsed="861.34µs" +INFO [08-24|10:14:41.424] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:14:44.011] Successfully sealed new block number=4958 sealhash=d464ea..8fe0a1 hash=6a6762..2f5997 elapsed=5.005s +INFO [08-24|10:14:44.011] Commit new sealing work number=4959 sealhash=1d513e..c003fd txs=0 gas=0 fees=0 elapsed="271.029µs" +INFO [08-24|10:14:49.006] Successfully sealed new block number=4959 sealhash=1d513e..c003fd hash=3a25c9..280330 elapsed=4.994s +INFO [08-24|10:14:49.007] Commit new sealing work number=4960 sealhash=b552ff..6f47fd txs=0 gas=0 fees=0 elapsed="368.613µs" +INFO [08-24|10:14:51.445] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:14:54.011] Successfully sealed new block number=4960 sealhash=b552ff..6f47fd hash=6c0f1d..ef888f elapsed=5.003s +INFO [08-24|10:14:54.011] Commit new sealing work number=4961 sealhash=9fa2da..4913a4 txs=0 gas=0 fees=0 elapsed="461.576µs" +INFO [08-24|10:14:59.011] Successfully sealed new block number=4961 sealhash=9fa2da..4913a4 hash=2cc5ee..baf525 elapsed=4.999s +INFO [08-24|10:14:59.011] Commit new sealing work number=4962 sealhash=53efa1..335678 txs=0 gas=0 fees=0 elapsed="316.788µs" +INFO [08-24|10:15:01.468] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:15:04.007] Successfully sealed new block number=4962 sealhash=53efa1..335678 hash=e9e469..c8676e elapsed=4.995s +INFO [08-24|10:15:04.007] Commit new sealing work number=4963 sealhash=de83b7..af0f53 txs=0 gas=0 fees=0 elapsed="284.746µs" +INFO [08-24|10:15:09.005] Successfully sealed new block number=4963 sealhash=de83b7..af0f53 hash=a9089e..a78cc7 elapsed=4.998s +INFO [08-24|10:15:09.005] Commit new sealing work number=4964 sealhash=3ac5a1..f7bf82 txs=0 gas=0 fees=0 elapsed="445.243µs" +INFO [08-24|10:15:11.490] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:15:14.005] Successfully sealed new block number=4964 sealhash=3ac5a1..f7bf82 hash=25040e..ad2927 elapsed=5.000s +INFO [08-24|10:15:14.006] Commit new sealing work number=4965 sealhash=6c6c13..fb2126 txs=0 gas=0 fees=0 elapsed="264.518µs" +INFO [08-24|10:15:19.009] Successfully sealed new block number=4965 sealhash=6c6c13..fb2126 hash=468cc7..d57e07 elapsed=5.003s +INFO [08-24|10:15:19.010] Commit new sealing work number=4966 sealhash=2fc2ff..676182 txs=0 gas=0 fees=0 elapsed="363.289µs" +INFO [08-24|10:15:21.509] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:15:24.009] Successfully sealed new block number=4966 sealhash=2fc2ff..676182 hash=aa5804..4f543f elapsed=4.999s +INFO [08-24|10:15:24.009] Commit new sealing work number=4967 sealhash=df8c15..c4ac4b txs=0 gas=0 fees=0 elapsed="307.01µs" +INFO [08-24|10:15:29.011] Successfully sealed new block number=4967 sealhash=df8c15..c4ac4b hash=3e950f..7140fa elapsed=5.001s +INFO [08-24|10:15:29.011] Commit new sealing work number=4968 sealhash=68a032..c209c1 txs=0 gas=0 fees=0 elapsed="395.748µs" +INFO [08-24|10:15:31.531] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:15:34.006] Successfully sealed new block number=4968 sealhash=68a032..c209c1 hash=4e8d85..b55bce elapsed=4.994s +INFO [08-24|10:15:34.006] Commit new sealing work number=4969 sealhash=03ac40..639a0c txs=0 gas=0 fees=0 elapsed="240.685µs" +INFO [08-24|10:15:39.008] Successfully sealed new block number=4969 sealhash=03ac40..639a0c hash=55e9d1..3dc689 elapsed=5.001s +INFO [08-24|10:15:39.008] Commit new sealing work number=4970 sealhash=74884f..a5ceeb txs=0 gas=0 fees=0 elapsed="312.226µs" +INFO [08-24|10:15:41.553] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:15:44.008] Successfully sealed new block number=4970 sealhash=74884f..a5ceeb hash=b3c4e6..5c72c4 elapsed=5.000s +INFO [08-24|10:15:44.008] Commit new sealing work number=4971 sealhash=63d4b3..e0b046 txs=0 gas=0 fees=0 elapsed="264.957µs" +INFO [08-24|10:15:49.011] Successfully sealed new block number=4971 sealhash=63d4b3..e0b046 hash=b16878..b6c112 elapsed=5.002s +INFO [08-24|10:15:49.011] Commit new sealing work number=4972 sealhash=49234d..9c2ca6 txs=0 gas=0 fees=0 elapsed="237.141µs" +INFO [08-24|10:15:51.574] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:15:54.005] Successfully sealed new block number=4972 sealhash=49234d..9c2ca6 hash=e83845..afef16 elapsed=4.993s +INFO [08-24|10:15:54.005] Commit new sealing work number=4973 sealhash=7549c6..7d6986 txs=0 gas=0 fees=0 elapsed="275.767µs" +INFO [08-24|10:15:59.010] Successfully sealed new block number=4973 sealhash=7549c6..7d6986 hash=4799c8..4edd15 elapsed=5.004s +INFO [08-24|10:15:59.010] Commit new sealing work number=4974 sealhash=9d7aaa..644032 txs=0 gas=0 fees=0 elapsed="300.673µs" +INFO [08-24|10:16:01.596] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:16:04.006] Successfully sealed new block number=4974 sealhash=9d7aaa..644032 hash=707f64..2311d6 elapsed=4.995s +INFO [08-24|10:16:04.006] Commit new sealing work number=4975 sealhash=fea821..14af6b txs=0 gas=0 fees=0 elapsed="252.696µs" +INFO [08-24|10:16:09.004] Successfully sealed new block number=4975 sealhash=fea821..14af6b hash=fb0161..74a681 elapsed=4.998s +INFO [08-24|10:16:09.005] Commit new sealing work number=4976 sealhash=d69202..b15f1a txs=0 gas=0 fees=0 elapsed="386.595µs" +INFO [08-24|10:16:11.618] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:16:14.008] Successfully sealed new block number=4976 sealhash=d69202..b15f1a hash=03268f..c19b24 elapsed=5.003s +INFO [08-24|10:16:14.009] Commit new sealing work number=4977 sealhash=8d13cf..c7bbf5 txs=0 gas=0 fees=0 elapsed="219.119µs" +INFO [08-24|10:16:19.009] Successfully sealed new block number=4977 sealhash=8d13cf..c7bbf5 hash=00ef09..650006 elapsed=5.000s +INFO [08-24|10:16:19.010] Commit new sealing work number=4978 sealhash=655bf1..66f467 txs=0 gas=0 fees=0 elapsed="335.555µs" +INFO [08-24|10:16:21.641] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:16:24.009] Successfully sealed new block number=4978 sealhash=655bf1..66f467 hash=f64b59..70e3e4 elapsed=4.998s +INFO [08-24|10:16:24.009] Commit new sealing work number=4979 sealhash=4014fe..157099 txs=0 gas=0 fees=0 elapsed="271.392µs" +INFO [08-24|10:16:29.009] Successfully sealed new block number=4979 sealhash=4014fe..157099 hash=c6d657..a05c22 elapsed=5.000s +INFO [08-24|10:16:29.010] Commit new sealing work number=4980 sealhash=2d4474..d8d72d txs=0 gas=0 fees=0 elapsed="242.649µs" +INFO [08-24|10:16:31.662] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:16:34.010] Successfully sealed new block number=4980 sealhash=2d4474..d8d72d hash=587206..8c28a4 elapsed=5.000s +INFO [08-24|10:16:34.011] Commit new sealing work number=4981 sealhash=368c98..e60ccb txs=0 gas=0 fees=0 elapsed="282.831µs" +INFO [08-24|10:16:39.009] Successfully sealed new block number=4981 sealhash=368c98..e60ccb hash=ce4883..991d49 elapsed=4.998s +INFO [08-24|10:16:39.010] Commit new sealing work number=4982 sealhash=71f252..5089af txs=0 gas=0 fees=0 elapsed="342.009µs" +INFO [08-24|10:16:41.682] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:16:44.011] Successfully sealed new block number=4982 sealhash=71f252..5089af hash=850bfc..92a3e5 elapsed=5.001s +INFO [08-24|10:16:44.012] Commit new sealing work number=4983 sealhash=089665..3a0c36 txs=0 gas=0 fees=0 elapsed="587.79µs" +INFO [08-24|10:16:49.005] Successfully sealed new block number=4983 sealhash=089665..3a0c36 hash=62987b..c4372d elapsed=4.993s +INFO [08-24|10:16:49.005] Commit new sealing work number=4984 sealhash=a5e7ef..23e2e9 txs=0 gas=0 fees=0 elapsed="350.271µs" +INFO [08-24|10:16:51.703] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:16:54.009] Successfully sealed new block number=4984 sealhash=a5e7ef..23e2e9 hash=5e74d6..96b25e elapsed=5.004s +INFO [08-24|10:16:54.010] Commit new sealing work number=4985 sealhash=56e8ea..a8c409 txs=0 gas=0 fees=0 elapsed="309.939µs" +INFO [08-24|10:16:59.007] Successfully sealed new block number=4985 sealhash=56e8ea..a8c409 hash=5297d4..3630a1 elapsed=4.996s +INFO [08-24|10:16:59.007] Commit new sealing work number=4986 sealhash=7da107..534126 txs=0 gas=0 fees=0 elapsed="303.308µs" +INFO [08-24|10:17:01.722] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:17:04.010] Successfully sealed new block number=4986 sealhash=7da107..534126 hash=603a69..e8ad54 elapsed=5.002s +INFO [08-24|10:17:04.010] Commit new sealing work number=4987 sealhash=672097..f285a3 txs=0 gas=0 fees=0 elapsed="292.638µs" +INFO [08-24|10:17:09.009] Successfully sealed new block number=4987 sealhash=672097..f285a3 hash=69d24c..a4bf18 elapsed=4.999s +INFO [08-24|10:17:09.010] Commit new sealing work number=4988 sealhash=629dd6..173ccc txs=0 gas=0 fees=0 elapsed="408.199µs" +INFO [08-24|10:17:11.741] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:17:14.004] Successfully sealed new block number=4988 sealhash=629dd6..173ccc hash=2c9bab..5704eb elapsed=4.994s +INFO [08-24|10:17:14.005] Commit new sealing work number=4989 sealhash=d09226..cce01b txs=0 gas=0 fees=0 elapsed="234.426µs" +INFO [08-24|10:17:19.009] Successfully sealed new block number=4989 sealhash=d09226..cce01b hash=840935..92abae elapsed=5.004s +INFO [08-24|10:17:19.009] Commit new sealing work number=4990 sealhash=50b14d..b201e6 txs=0 gas=0 fees=0 elapsed="446.023µs" +INFO [08-24|10:17:21.763] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:17:24.005] Successfully sealed new block number=4990 sealhash=50b14d..b201e6 hash=50b859..243c22 elapsed=4.996s +INFO [08-24|10:17:24.006] Commit new sealing work number=4991 sealhash=f20c33..1e1acd txs=0 gas=0 fees=0 elapsed="283.436µs" +INFO [08-24|10:17:29.007] Successfully sealed new block number=4991 sealhash=f20c33..1e1acd hash=5e9fae..dfc355 elapsed=5.000s +INFO [08-24|10:17:29.007] Commit new sealing work number=4992 sealhash=7ace08..0e8c91 txs=0 gas=0 fees=0 elapsed="224.599µs" +INFO [08-24|10:17:31.778] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:17:34.007] Successfully sealed new block number=4992 sealhash=7ace08..0e8c91 hash=29007f..94992f elapsed=5.000s +INFO [08-24|10:17:34.008] Commit new sealing work number=4993 sealhash=39ae9b..af9fa8 txs=0 gas=0 fees=0 elapsed="406.916µs" +INFO [08-24|10:17:39.009] Successfully sealed new block number=4993 sealhash=39ae9b..af9fa8 hash=53dbe3..cd52c5 elapsed=5.000s +INFO [08-24|10:17:39.009] Commit new sealing work number=4994 sealhash=8c91cf..093fc3 txs=0 gas=0 fees=0 elapsed="639.377µs" +INFO [08-24|10:17:41.798] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:17:44.011] Successfully sealed new block number=4994 sealhash=8c91cf..093fc3 hash=adfe76..16965a elapsed=5.001s +INFO [08-24|10:17:44.012] Commit new sealing work number=4995 sealhash=bb1584..ae5ac2 txs=0 gas=0 fees=0 elapsed="381.646µs" +INFO [08-24|10:17:49.010] Successfully sealed new block number=4995 sealhash=bb1584..ae5ac2 hash=e0235c..1fb5d9 elapsed=4.998s +INFO [08-24|10:17:49.011] Commit new sealing work number=4996 sealhash=f69c96..b7d68f txs=0 gas=0 fees=0 elapsed="341.382µs" +INFO [08-24|10:17:51.819] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:17:54.010] Successfully sealed new block number=4996 sealhash=f69c96..b7d68f hash=5c02f4..2150bf elapsed=4.999s +INFO [08-24|10:17:54.011] Commit new sealing work number=4997 sealhash=000fd1..0a1f56 txs=0 gas=0 fees=0 elapsed="370.121µs" +INFO [08-24|10:17:59.010] Successfully sealed new block number=4997 sealhash=000fd1..0a1f56 hash=40fccf..bcb53c elapsed=4.998s +INFO [08-24|10:17:59.010] Commit new sealing work number=4998 sealhash=297b53..553d32 txs=0 gas=0 fees=0 elapsed="280.47µs" +INFO [08-24|10:18:01.840] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:18:04.024] Successfully sealed new block number=4998 sealhash=297b53..553d32 hash=b93b68..775ddb elapsed=5.013s +INFO [08-24|10:18:04.024] Commit new sealing work number=4999 sealhash=4b4fd3..c983b6 txs=0 gas=0 fees=0 elapsed="297.501µs" +INFO [08-24|10:18:09.009] Successfully sealed new block number=4999 sealhash=4b4fd3..c983b6 hash=676c5a..8a024f elapsed=4.985s +INFO [08-24|10:18:09.010] Commit new sealing work number=5000 sealhash=b95dc8..085b51 txs=0 gas=0 fees=0 elapsed="435.23µs" +INFO [08-24|10:18:11.861] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:18:14.005] Successfully sealed new block number=5000 sealhash=b95dc8..085b51 hash=cd44dd..26fd36 elapsed=4.995s +INFO [08-24|10:18:14.005] Commit new sealing work number=5001 sealhash=1b3f89..6c9e63 txs=0 gas=0 fees=0 elapsed="260.222µs" +INFO [08-24|10:18:19.008] Successfully sealed new block number=5001 sealhash=1b3f89..6c9e63 hash=dab403..6faf83 elapsed=5.002s +INFO [08-24|10:18:19.008] Commit new sealing work number=5002 sealhash=f52c10..068b51 txs=0 gas=0 fees=0 elapsed="263.966µs" +INFO [08-24|10:18:21.881] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:18:24.013] Successfully sealed new block number=5002 sealhash=f52c10..068b51 hash=19d269..4dcb5b elapsed=5.004s +INFO [08-24|10:18:24.013] Commit new sealing work number=5003 sealhash=598881..09dc89 txs=0 gas=0 fees=0 elapsed="403.108µs" +INFO [08-24|10:18:29.009] Successfully sealed new block number=5003 sealhash=598881..09dc89 hash=0644bd..7fb37a elapsed=4.995s +INFO [08-24|10:18:29.009] Commit new sealing work number=5004 sealhash=2ac3f9..6abbac txs=0 gas=0 fees=0 elapsed="263.738µs" +INFO [08-24|10:18:31.899] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:18:34.006] Successfully sealed new block number=5004 sealhash=2ac3f9..6abbac hash=89a180..089195 elapsed=4.996s +INFO [08-24|10:18:34.006] Commit new sealing work number=5005 sealhash=5ec672..42090e txs=0 gas=0 fees=0 elapsed="309.592µs" +INFO [08-24|10:18:39.007] Successfully sealed new block number=5005 sealhash=5ec672..42090e hash=bdb46b..77bd10 elapsed=5.000s +INFO [08-24|10:18:39.007] Commit new sealing work number=5006 sealhash=38caa0..0cf057 txs=0 gas=0 fees=0 elapsed="415.507µs" +INFO [08-24|10:18:41.921] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:18:44.013] Successfully sealed new block number=5006 sealhash=38caa0..0cf057 hash=a0d286..8bc586 elapsed=5.005s +INFO [08-24|10:18:44.013] Commit new sealing work number=5007 sealhash=5ca90d..2c03b8 txs=0 gas=0 fees=0 elapsed="232.467µs" +INFO [08-24|10:18:49.013] Successfully sealed new block number=5007 sealhash=5ca90d..2c03b8 hash=f8cac7..fa3ea0 elapsed=5.000s +INFO [08-24|10:18:49.014] Commit new sealing work number=5008 sealhash=2c7042..701b6c txs=0 gas=0 fees=0 elapsed="419.544µs" +INFO [08-24|10:18:51.941] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:18:54.022] Successfully sealed new block number=5008 sealhash=2c7042..701b6c hash=2ddb5a..8ad576 elapsed=5.007s +INFO [08-24|10:18:54.022] Commit new sealing work number=5009 sealhash=5680a8..36d403 txs=0 gas=0 fees=0 elapsed="352.865µs" +INFO [08-24|10:18:59.019] Successfully sealed new block number=5009 sealhash=5680a8..36d403 hash=265136..565829 elapsed=4.996s +INFO [08-24|10:18:59.019] Commit new sealing work number=5010 sealhash=cd1d92..89da32 txs=0 gas=0 fees=0 elapsed="381.656µs" +INFO [08-24|10:19:01.963] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:19:04.010] Successfully sealed new block number=5010 sealhash=cd1d92..89da32 hash=20a56d..c1e270 elapsed=4.991s +INFO [08-24|10:19:04.011] Commit new sealing work number=5011 sealhash=71aae0..88cd4b txs=0 gas=0 fees=0 elapsed="385.233µs" +INFO [08-24|10:19:09.026] Successfully sealed new block number=5011 sealhash=71aae0..88cd4b hash=a74bbd..84018f elapsed=5.015s +INFO [08-24|10:19:09.027] Commit new sealing work number=5012 sealhash=b5ff4a..3cedde txs=0 gas=0 fees=0 elapsed="512.662µs" +INFO [08-24|10:19:11.985] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:19:14.023] Successfully sealed new block number=5012 sealhash=b5ff4a..3cedde hash=d7316c..f6ab2f elapsed=4.996s +INFO [08-24|10:19:14.023] Commit new sealing work number=5013 sealhash=66ce2a..007764 txs=0 gas=0 fees=0 elapsed="343.607µs" +INFO [08-24|10:19:19.018] Successfully sealed new block number=5013 sealhash=66ce2a..007764 hash=71ea2a..6f5e44 elapsed=4.994s +INFO [08-24|10:19:19.018] Commit new sealing work number=5014 sealhash=e5a5ec..dbb5ae txs=0 gas=0 fees=0 elapsed="433.498µs" +INFO [08-24|10:19:22.005] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:19:24.028] Successfully sealed new block number=5014 sealhash=e5a5ec..dbb5ae hash=ab7b90..eb02e1 elapsed=5.009s +INFO [08-24|10:19:24.028] Commit new sealing work number=5015 sealhash=b22198..8fa5ce txs=0 gas=0 fees=0 elapsed="235.183µs" +INFO [08-24|10:19:29.026] Successfully sealed new block number=5015 sealhash=b22198..8fa5ce hash=462880..8b9d4e elapsed=4.998s +INFO [08-24|10:19:29.027] Commit new sealing work number=5016 sealhash=a1b149..2033d4 txs=0 gas=0 fees=0 elapsed="352.777µs" +INFO [08-24|10:19:32.024] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:19:34.011] Successfully sealed new block number=5016 sealhash=a1b149..2033d4 hash=182c98..855327 elapsed=4.983s +INFO [08-24|10:19:34.011] Commit new sealing work number=5017 sealhash=d39fd0..6c409e txs=0 gas=0 fees=0 elapsed="578.508µs" +INFO [08-24|10:19:39.030] Successfully sealed new block number=5017 sealhash=d39fd0..6c409e hash=d49ee0..024bf5 elapsed=5.018s +INFO [08-24|10:19:39.030] Commit new sealing work number=5018 sealhash=fe822d..3117fc txs=0 gas=0 fees=0 elapsed="412.625µs" +INFO [08-24|10:19:42.046] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:19:44.007] Successfully sealed new block number=5018 sealhash=fe822d..3117fc hash=3081ee..3be267 elapsed=4.976s +INFO [08-24|10:19:44.007] Commit new sealing work number=5019 sealhash=891dd2..2b685c txs=0 gas=0 fees=0 elapsed="217.781µs" +INFO [08-24|10:19:49.025] Successfully sealed new block number=5019 sealhash=891dd2..2b685c hash=a78c5a..355beb elapsed=5.018s +INFO [08-24|10:19:49.025] Commit new sealing work number=5020 sealhash=9a9aa2..1795fd txs=0 gas=0 fees=0 elapsed="360.956µs" +INFO [08-24|10:19:52.066] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:19:54.011] Successfully sealed new block number=5020 sealhash=9a9aa2..1795fd hash=c71396..04dbbf elapsed=4.985s +INFO [08-24|10:19:54.012] Commit new sealing work number=5021 sealhash=a0e91c..557811 txs=0 gas=0 fees=0 elapsed="505.448µs" +INFO [08-24|10:19:59.011] Successfully sealed new block number=5021 sealhash=a0e91c..557811 hash=d772af..0e8404 elapsed=4.999s +INFO [08-24|10:19:59.012] Commit new sealing work number=5022 sealhash=34eb7d..e44c39 txs=0 gas=0 fees=0 elapsed="331.509µs" +INFO [08-24|10:20:02.086] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:20:04.011] Successfully sealed new block number=5022 sealhash=34eb7d..e44c39 hash=4e127c..33e3d9 elapsed=4.999s +INFO [08-24|10:20:04.011] Commit new sealing work number=5023 sealhash=72dfc6..448fe8 txs=0 gas=0 fees=0 elapsed="330.469µs" +INFO [08-24|10:20:09.010] Successfully sealed new block number=5023 sealhash=72dfc6..448fe8 hash=d781d7..87dc47 elapsed=4.999s +INFO [08-24|10:20:09.011] Commit new sealing work number=5024 sealhash=318eaa..740f38 txs=0 gas=0 fees=0 elapsed="420.651µs" +INFO [08-24|10:20:12.108] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:20:14.010] Successfully sealed new block number=5024 sealhash=318eaa..740f38 hash=6ee38a..2f1ac2 elapsed=4.999s +INFO [08-24|10:20:14.010] Commit new sealing work number=5025 sealhash=4af562..5267a6 txs=0 gas=0 fees=0 elapsed="250.825µs" +INFO [08-24|10:20:19.008] Successfully sealed new block number=5025 sealhash=4af562..5267a6 hash=8ffb85..db199d elapsed=4.997s +INFO [08-24|10:20:19.008] Commit new sealing work number=5026 sealhash=2a33f4..7927e4 txs=0 gas=0 fees=0 elapsed="264.243µs" +INFO [08-24|10:20:22.129] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:20:24.011] Successfully sealed new block number=5026 sealhash=2a33f4..7927e4 hash=773684..77a0db elapsed=5.002s +INFO [08-24|10:20:24.012] Commit new sealing work number=5027 sealhash=423352..ed38c0 txs=0 gas=0 fees=0 elapsed="472.719µs" +INFO [08-24|10:20:29.008] Successfully sealed new block number=5027 sealhash=423352..ed38c0 hash=bb2a1d..e70565 elapsed=4.996s +INFO [08-24|10:20:29.008] Commit new sealing work number=5028 sealhash=e552a9..d344e5 txs=0 gas=0 fees=0 elapsed="359.479µs" +INFO [08-24|10:20:32.148] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:20:34.008] Successfully sealed new block number=5028 sealhash=e552a9..d344e5 hash=86671f..30bb3c elapsed=4.999s +INFO [08-24|10:20:34.008] Commit new sealing work number=5029 sealhash=ad7486..31c594 txs=0 gas=0 fees=0 elapsed="268.446µs" +INFO [08-24|10:20:39.008] Successfully sealed new block number=5029 sealhash=ad7486..31c594 hash=2553a6..048c87 elapsed=4.999s +INFO [08-24|10:20:39.009] Commit new sealing work number=5030 sealhash=ddada6..6493a2 txs=0 gas=0 fees=0 elapsed="392.762µs" +INFO [08-24|10:20:42.172] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:20:44.013] Successfully sealed new block number=5030 sealhash=ddada6..6493a2 hash=4965b2..7c2179 elapsed=5.003s +INFO [08-24|10:20:44.013] Commit new sealing work number=5031 sealhash=a570ba..5113ca txs=0 gas=0 fees=0 elapsed="259.325µs" +INFO [08-24|10:20:49.005] Successfully sealed new block number=5031 sealhash=a570ba..5113ca hash=ddb411..2ae071 elapsed=4.991s +INFO [08-24|10:20:49.005] Commit new sealing work number=5032 sealhash=5c9378..ca88e9 txs=0 gas=0 fees=0 elapsed="280.866µs" +INFO [08-24|10:20:52.192] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:20:54.009] Successfully sealed new block number=5032 sealhash=5c9378..ca88e9 hash=673e45..5c344e elapsed=5.003s +INFO [08-24|10:20:54.010] Commit new sealing work number=5033 sealhash=0c0cfb..dd8ae0 txs=0 gas=0 fees=0 elapsed="269.063µs" +INFO [08-24|10:20:59.010] Successfully sealed new block number=5033 sealhash=0c0cfb..dd8ae0 hash=021e65..915291 elapsed=5.000s +INFO [08-24|10:20:59.011] Commit new sealing work number=5034 sealhash=029847..2365e5 txs=0 gas=0 fees=0 elapsed="250.334µs" +INFO [08-24|10:21:02.215] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:21:04.012] Successfully sealed new block number=5034 sealhash=029847..2365e5 hash=92329a..8d362d elapsed=5.001s +INFO [08-24|10:21:04.012] Commit new sealing work number=5035 sealhash=6154be..b5d4cb txs=0 gas=0 fees=0 elapsed="255.907µs" +INFO [08-24|10:21:09.005] Successfully sealed new block number=5035 sealhash=6154be..b5d4cb hash=c6eb07..9f3193 elapsed=4.992s +INFO [08-24|10:21:09.005] Commit new sealing work number=5036 sealhash=f17038..a63ab8 txs=0 gas=0 fees=0 elapsed="358.303µs" +INFO [08-24|10:21:12.238] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:21:14.005] Successfully sealed new block number=5036 sealhash=f17038..a63ab8 hash=fe2785..26b405 elapsed=5.000s +INFO [08-24|10:21:14.006] Commit new sealing work number=5037 sealhash=9ca0ac..33d84f txs=0 gas=0 fees=0 elapsed="270.201µs" +INFO [08-24|10:21:19.009] Successfully sealed new block number=5037 sealhash=9ca0ac..33d84f hash=901530..f9d1ab elapsed=5.002s +INFO [08-24|10:21:19.009] Commit new sealing work number=5038 sealhash=71e2e3..66036f txs=0 gas=0 fees=0 elapsed="310.735µs" +INFO [08-24|10:21:22.260] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:21:24.010] Successfully sealed new block number=5038 sealhash=71e2e3..66036f hash=fbda55..9b7746 elapsed=5.000s +INFO [08-24|10:21:24.010] Commit new sealing work number=5039 sealhash=dfcb2c..a203aa txs=0 gas=0 fees=0 elapsed="356.275µs" +INFO [08-24|10:21:29.007] Successfully sealed new block number=5039 sealhash=dfcb2c..a203aa hash=adea9c..456ae1 elapsed=4.996s +INFO [08-24|10:21:29.007] Commit new sealing work number=5040 sealhash=39f498..ce9543 txs=0 gas=0 fees=0 elapsed="224.124µs" +INFO [08-24|10:21:32.278] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:21:34.009] Successfully sealed new block number=5040 sealhash=39f498..ce9543 hash=629953..b2a5da elapsed=5.001s +INFO [08-24|10:21:34.010] Commit new sealing work number=5041 sealhash=5cfa4e..97d53a txs=0 gas=0 fees=0 elapsed="299.738µs" +INFO [08-24|10:21:39.009] Successfully sealed new block number=5041 sealhash=5cfa4e..97d53a hash=7aa5d3..e6e973 elapsed=4.999s +INFO [08-24|10:21:39.010] Commit new sealing work number=5042 sealhash=6f2d08..21318a txs=0 gas=0 fees=0 elapsed="429.164µs" +INFO [08-24|10:21:42.299] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:21:44.011] Successfully sealed new block number=5042 sealhash=6f2d08..21318a hash=04d405..7dafb3 elapsed=5.000s +INFO [08-24|10:21:44.011] Commit new sealing work number=5043 sealhash=7ebe91..66ff9c txs=0 gas=0 fees=0 elapsed="283.808µs" +INFO [08-24|10:21:49.009] Successfully sealed new block number=5043 sealhash=7ebe91..66ff9c hash=b13cff..fea6ae elapsed=4.997s +INFO [08-24|10:21:49.010] Commit new sealing work number=5044 sealhash=81b230..f34fd4 txs=0 gas=0 fees=0 elapsed=1.120ms +INFO [08-24|10:21:52.323] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:21:54.008] Successfully sealed new block number=5044 sealhash=81b230..f34fd4 hash=ec2bc0..29ceea elapsed=4.998s +INFO [08-24|10:21:54.008] Commit new sealing work number=5045 sealhash=6a5bbe..7ed55b txs=0 gas=0 fees=0 elapsed="274.685µs" +INFO [08-24|10:21:59.008] Successfully sealed new block number=5045 sealhash=6a5bbe..7ed55b hash=03aabe..b88696 elapsed=5.000s +INFO [08-24|10:21:59.009] Commit new sealing work number=5046 sealhash=5d442d..c9db01 txs=0 gas=0 fees=0 elapsed="269.141µs" +INFO [08-24|10:22:02.344] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:22:04.009] Successfully sealed new block number=5046 sealhash=5d442d..c9db01 hash=034714..70f93f elapsed=5.000s +INFO [08-24|10:22:04.010] Commit new sealing work number=5047 sealhash=3572eb..93e262 txs=0 gas=0 fees=0 elapsed="261.25µs" +INFO [08-24|10:22:09.008] Successfully sealed new block number=5047 sealhash=3572eb..93e262 hash=8bba72..643be7 elapsed=4.998s +INFO [08-24|10:22:09.009] Commit new sealing work number=5048 sealhash=5b6e45..a3870e txs=0 gas=0 fees=0 elapsed="308.043µs" +INFO [08-24|10:22:12.363] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:22:14.010] Successfully sealed new block number=5048 sealhash=5b6e45..a3870e hash=803496..c45375 elapsed=5.000s +INFO [08-24|10:22:14.011] Commit new sealing work number=5049 sealhash=c69358..37b302 txs=0 gas=0 fees=0 elapsed="785.002µs" +INFO [08-24|10:22:19.011] Successfully sealed new block number=5049 sealhash=c69358..37b302 hash=8ce777..001f59 elapsed=5.001s +INFO [08-24|10:22:19.012] Commit new sealing work number=5050 sealhash=8121bb..bc656c txs=0 gas=0 fees=0 elapsed="284.984µs" +INFO [08-24|10:22:22.385] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:22:24.010] Successfully sealed new block number=5050 sealhash=8121bb..bc656c hash=0021e7..c1931c elapsed=4.998s +INFO [08-24|10:22:24.011] Commit new sealing work number=5051 sealhash=bbbb76..a146ba txs=0 gas=0 fees=0 elapsed="511.776µs" +INFO [08-24|10:22:29.011] Successfully sealed new block number=5051 sealhash=bbbb76..a146ba hash=c27753..ca8881 elapsed=4.999s +INFO [08-24|10:22:29.011] Commit new sealing work number=5052 sealhash=1eb02f..462bfc txs=0 gas=0 fees=0 elapsed="351.615µs" +INFO [08-24|10:22:32.407] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:22:34.009] Successfully sealed new block number=5052 sealhash=1eb02f..462bfc hash=8de476..951494 elapsed=4.997s +INFO [08-24|10:22:34.009] Commit new sealing work number=5053 sealhash=745ea6..41cf4d txs=0 gas=0 fees=0 elapsed="332.745µs" +INFO [08-24|10:22:39.011] Successfully sealed new block number=5053 sealhash=745ea6..41cf4d hash=977df0..8deb4a elapsed=5.001s +INFO [08-24|10:22:39.011] Commit new sealing work number=5054 sealhash=283d70..cb78ce txs=0 gas=0 fees=0 elapsed="474.122µs" +INFO [08-24|10:22:42.429] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:22:44.010] Successfully sealed new block number=5054 sealhash=283d70..cb78ce hash=57e6d5..a1814d elapsed=4.998s +INFO [08-24|10:22:44.010] Commit new sealing work number=5055 sealhash=780658..7591cb txs=0 gas=0 fees=0 elapsed="279.706µs" +INFO [08-24|10:22:49.011] Successfully sealed new block number=5055 sealhash=780658..7591cb hash=92ee00..428d31 elapsed=5.001s +INFO [08-24|10:22:49.012] Commit new sealing work number=5056 sealhash=8101d4..d89912 txs=0 gas=0 fees=0 elapsed="460.166µs" +INFO [08-24|10:22:52.448] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:22:54.011] Successfully sealed new block number=5056 sealhash=8101d4..d89912 hash=b35f36..fa59f1 elapsed=4.998s +INFO [08-24|10:22:54.011] Commit new sealing work number=5057 sealhash=6ab21b..6091d0 txs=0 gas=0 fees=0 elapsed="416.985µs" +INFO [08-24|10:22:59.012] Successfully sealed new block number=5057 sealhash=6ab21b..6091d0 hash=a9e1db..c6e5c0 elapsed=5.001s +INFO [08-24|10:22:59.013] Commit new sealing work number=5058 sealhash=8f3a14..29ff87 txs=0 gas=0 fees=0 elapsed="415.204µs" +INFO [08-24|10:23:02.471] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:23:04.010] Successfully sealed new block number=5058 sealhash=8f3a14..29ff87 hash=aad9e3..5110c6 elapsed=4.996s +INFO [08-24|10:23:04.010] Commit new sealing work number=5059 sealhash=4d8016..86c0e9 txs=0 gas=0 fees=0 elapsed="217.803µs" +INFO [08-24|10:23:09.010] Successfully sealed new block number=5059 sealhash=4d8016..86c0e9 hash=7ff854..c849f2 elapsed=4.999s +INFO [08-24|10:23:09.011] Commit new sealing work number=5060 sealhash=9edd14..8b7f44 txs=0 gas=0 fees=0 elapsed="583.306µs" +INFO [08-24|10:23:12.491] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:23:14.008] Successfully sealed new block number=5060 sealhash=9edd14..8b7f44 hash=5764c7..b66f8f elapsed=4.997s +INFO [08-24|10:23:14.008] Commit new sealing work number=5061 sealhash=ffcbe2..98396e txs=0 gas=0 fees=0 elapsed="218.165µs" +INFO [08-24|10:23:19.010] Successfully sealed new block number=5061 sealhash=ffcbe2..98396e hash=2a205f..0149bb elapsed=5.002s +INFO [08-24|10:23:19.011] Commit new sealing work number=5062 sealhash=5aa5f4..8bd2af txs=0 gas=0 fees=0 elapsed="393.904µs" +INFO [08-24|10:23:22.515] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:23:24.010] Successfully sealed new block number=5062 sealhash=5aa5f4..8bd2af hash=beb618..8030d5 elapsed=4.999s +INFO [08-24|10:23:24.011] Commit new sealing work number=5063 sealhash=f69fa8..08f1e9 txs=0 gas=0 fees=0 elapsed="353.138µs" +INFO [08-24|10:23:29.007] Successfully sealed new block number=5063 sealhash=f69fa8..08f1e9 hash=2ba31b..61e8ff elapsed=4.996s +INFO [08-24|10:23:29.008] Commit new sealing work number=5064 sealhash=71aa4e..b6635c txs=0 gas=0 fees=0 elapsed="364.932µs" +INFO [08-24|10:23:32.535] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:23:34.006] Successfully sealed new block number=5064 sealhash=71aa4e..b6635c hash=8b4b1e..84174c elapsed=4.998s +INFO [08-24|10:23:34.007] Commit new sealing work number=5065 sealhash=5a94ba..86b4c1 txs=0 gas=0 fees=0 elapsed="219.133µs" +INFO [08-24|10:23:39.009] Successfully sealed new block number=5065 sealhash=5a94ba..86b4c1 hash=8d4735..5c0489 elapsed=5.002s +INFO [08-24|10:23:39.009] Commit new sealing work number=5066 sealhash=901683..cc2177 txs=0 gas=0 fees=0 elapsed="389.323µs" +INFO [08-24|10:23:42.556] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:23:44.012] Successfully sealed new block number=5066 sealhash=901683..cc2177 hash=ded283..739cff elapsed=5.002s +INFO [08-24|10:23:44.012] Commit new sealing work number=5067 sealhash=9287c5..fbe4e6 txs=0 gas=0 fees=0 elapsed="303.054µs" +INFO [08-24|10:23:49.009] Successfully sealed new block number=5067 sealhash=9287c5..fbe4e6 hash=7eca0f..773bfd elapsed=4.997s +INFO [08-24|10:23:49.010] Commit new sealing work number=5068 sealhash=c59446..372d4d txs=0 gas=0 fees=0 elapsed="278.556µs" +INFO [08-24|10:23:52.578] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:23:54.007] Successfully sealed new block number=5068 sealhash=c59446..372d4d hash=44e342..3a3280 elapsed=4.997s +INFO [08-24|10:23:54.008] Commit new sealing work number=5069 sealhash=80c396..2dd3d4 txs=0 gas=0 fees=0 elapsed="234.584µs" +INFO [08-24|10:23:59.009] Successfully sealed new block number=5069 sealhash=80c396..2dd3d4 hash=fb358a..8c6d64 elapsed=5.000s +INFO [08-24|10:23:59.009] Commit new sealing work number=5070 sealhash=8cebf0..4d82c5 txs=0 gas=0 fees=0 elapsed="457.935µs" +INFO [08-24|10:24:02.600] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:24:04.009] Successfully sealed new block number=5070 sealhash=8cebf0..4d82c5 hash=1dd787..8632e1 elapsed=4.999s +INFO [08-24|10:24:04.009] Commit new sealing work number=5071 sealhash=773acf..1f3140 txs=0 gas=0 fees=0 elapsed="481.718µs" +INFO [08-24|10:24:09.005] Successfully sealed new block number=5071 sealhash=773acf..1f3140 hash=68f9e7..775a67 elapsed=4.995s +INFO [08-24|10:24:09.006] Commit new sealing work number=5072 sealhash=b9cd93..24663d txs=0 gas=0 fees=0 elapsed="261.103µs" +INFO [08-24|10:24:12.620] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:24:14.009] Successfully sealed new block number=5072 sealhash=b9cd93..24663d hash=15315c..eded0d elapsed=5.003s +INFO [08-24|10:24:14.009] Commit new sealing work number=5073 sealhash=9cdbad..17dde2 txs=0 gas=0 fees=0 elapsed="300.761µs" +INFO [08-24|10:24:19.014] Successfully sealed new block number=5073 sealhash=9cdbad..17dde2 hash=7b8041..dbd0a7 elapsed=5.004s +INFO [08-24|10:24:19.014] Commit new sealing work number=5074 sealhash=4fe9a0..2847fe txs=0 gas=0 fees=0 elapsed="303.673µs" +INFO [08-24|10:24:22.640] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:24:24.007] Successfully sealed new block number=5074 sealhash=4fe9a0..2847fe hash=a395f1..b5cf7f elapsed=4.992s +INFO [08-24|10:24:24.008] Commit new sealing work number=5075 sealhash=954ff7..c012ac txs=0 gas=0 fees=0 elapsed="344.096µs" +INFO [08-24|10:24:29.037] Successfully sealed new block number=5075 sealhash=954ff7..c012ac hash=fd6283..8963c7 elapsed=5.029s +INFO [08-24|10:24:29.037] Commit new sealing work number=5076 sealhash=a48ea3..a0a7e9 txs=0 gas=0 fees=0 elapsed="235.84µs" +INFO [08-24|10:24:32.660] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:24:34.034] Successfully sealed new block number=5076 sealhash=a48ea3..a0a7e9 hash=2a3666..14215f elapsed=4.996s +INFO [08-24|10:24:34.034] Commit new sealing work number=5077 sealhash=591e92..93582c txs=0 gas=0 fees=0 elapsed="205.79µs" +INFO [08-24|10:24:39.008] Successfully sealed new block number=5077 sealhash=591e92..93582c hash=d56990..c05fb8 elapsed=4.973s +INFO [08-24|10:24:39.008] Commit new sealing work number=5078 sealhash=ca3267..869a30 txs=0 gas=0 fees=0 elapsed="246.929µs" +INFO [08-24|10:24:42.681] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:24:44.009] Successfully sealed new block number=5078 sealhash=ca3267..869a30 hash=f16cbc..b51d1e elapsed=5.001s +INFO [08-24|10:24:44.010] Commit new sealing work number=5079 sealhash=e21e56..7eece8 txs=0 gas=0 fees=0 elapsed="262.029µs" +INFO [08-24|10:24:49.009] Successfully sealed new block number=5079 sealhash=e21e56..7eece8 hash=00f4a2..259a6a elapsed=4.998s +INFO [08-24|10:24:49.009] Commit new sealing work number=5080 sealhash=05c5a9..517197 txs=0 gas=0 fees=0 elapsed="238.849µs" +INFO [08-24|10:24:52.701] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:24:54.007] Successfully sealed new block number=5080 sealhash=05c5a9..517197 hash=a9715d..4b2492 elapsed=4.998s +INFO [08-24|10:24:54.008] Commit new sealing work number=5081 sealhash=ef0d69..1d1ea2 txs=0 gas=0 fees=0 elapsed="253.496µs" +INFO [08-24|10:24:59.006] Successfully sealed new block number=5081 sealhash=ef0d69..1d1ea2 hash=e2e7a0..2fd53f elapsed=4.997s +INFO [08-24|10:24:59.006] Commit new sealing work number=5082 sealhash=996df9..7f7539 txs=0 gas=0 fees=0 elapsed="429.639µs" +INFO [08-24|10:25:02.723] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:25:04.010] Successfully sealed new block number=5082 sealhash=996df9..7f7539 hash=1d9333..e91f97 elapsed=5.004s +INFO [08-24|10:25:04.011] Commit new sealing work number=5083 sealhash=35d12d..214311 txs=0 gas=0 fees=0 elapsed="416.376µs" +INFO [08-24|10:25:09.010] Successfully sealed new block number=5083 sealhash=35d12d..214311 hash=a47eeb..fd9828 elapsed=4.999s +INFO [08-24|10:25:09.011] Commit new sealing work number=5084 sealhash=0f8ddd..47c1d1 txs=0 gas=0 fees=0 elapsed="251.744µs" +INFO [08-24|10:25:12.744] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:25:14.010] Successfully sealed new block number=5084 sealhash=0f8ddd..47c1d1 hash=0ffe10..1177a8 elapsed=4.999s +INFO [08-24|10:25:14.011] Commit new sealing work number=5085 sealhash=52e3e1..0c996c txs=0 gas=0 fees=0 elapsed="323.912µs" +INFO [08-24|10:25:19.006] Successfully sealed new block number=5085 sealhash=52e3e1..0c996c hash=529ca2..189aff elapsed=4.995s +INFO [08-24|10:25:19.007] Commit new sealing work number=5086 sealhash=b954e9..b0cd2d txs=0 gas=0 fees=0 elapsed="309.93µs" +INFO [08-24|10:25:22.765] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:25:24.007] Successfully sealed new block number=5086 sealhash=b954e9..b0cd2d hash=12b595..3de3f5 elapsed=5.000s +INFO [08-24|10:25:24.008] Commit new sealing work number=5087 sealhash=d4530e..d84035 txs=0 gas=0 fees=0 elapsed="228.678µs" +INFO [08-24|10:25:29.010] Successfully sealed new block number=5087 sealhash=d4530e..d84035 hash=dda034..101399 elapsed=5.001s +INFO [08-24|10:25:29.010] Commit new sealing work number=5088 sealhash=99e95b..027f9a txs=0 gas=0 fees=0 elapsed="234.47µs" +INFO [08-24|10:25:32.787] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:25:34.007] Successfully sealed new block number=5088 sealhash=99e95b..027f9a hash=7b42e6..e84cb3 elapsed=4.996s +INFO [08-24|10:25:34.007] Commit new sealing work number=5089 sealhash=d6d177..98d3e6 txs=0 gas=0 fees=0 elapsed="289.653µs" +INFO [08-24|10:25:39.009] Successfully sealed new block number=5089 sealhash=d6d177..98d3e6 hash=a6ae22..5d4649 elapsed=5.002s +INFO [08-24|10:25:39.010] Commit new sealing work number=5090 sealhash=5da018..d58884 txs=0 gas=0 fees=0 elapsed="376.571µs" +INFO [08-24|10:25:42.810] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:25:44.007] Successfully sealed new block number=5090 sealhash=5da018..d58884 hash=c88211..b96f04 elapsed=4.997s +INFO [08-24|10:25:44.007] Commit new sealing work number=5091 sealhash=b3b1d8..39f089 txs=0 gas=0 fees=0 elapsed="285.697µs" +INFO [08-24|10:25:49.006] Successfully sealed new block number=5091 sealhash=b3b1d8..39f089 hash=988e09..cea533 elapsed=4.998s +INFO [08-24|10:25:49.006] Commit new sealing work number=5092 sealhash=a47971..cd8e24 txs=0 gas=0 fees=0 elapsed="225.898µs" +INFO [08-24|10:25:52.833] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:25:54.031] Successfully sealed new block number=5092 sealhash=a47971..cd8e24 hash=68bda0..9ced63 elapsed=5.024s +INFO [08-24|10:25:54.031] Commit new sealing work number=5093 sealhash=ce72b2..696eea txs=0 gas=0 fees=0 elapsed="234.088µs" +INFO [08-24|10:25:59.009] Successfully sealed new block number=5093 sealhash=ce72b2..696eea hash=fb2539..9b4a26 elapsed=4.978s +INFO [08-24|10:25:59.010] Commit new sealing work number=5094 sealhash=810b1f..abd150 txs=0 gas=0 fees=0 elapsed="268.742µs" +INFO [08-24|10:26:02.857] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:26:04.008] Successfully sealed new block number=5094 sealhash=810b1f..abd150 hash=dda3e7..ca26dc elapsed=4.997s +INFO [08-24|10:26:04.008] Commit new sealing work number=5095 sealhash=a125bb..894aef txs=0 gas=0 fees=0 elapsed="243.082µs" +INFO [08-24|10:26:09.009] Successfully sealed new block number=5095 sealhash=a125bb..894aef hash=4965bd..4d87f8 elapsed=5.001s +INFO [08-24|10:26:09.010] Commit new sealing work number=5096 sealhash=063baf..b929fc txs=0 gas=0 fees=0 elapsed="255.931µs" +INFO [08-24|10:26:12.878] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:26:14.011] Successfully sealed new block number=5096 sealhash=063baf..b929fc hash=0e54d5..d6c04e elapsed=5.001s +INFO [08-24|10:26:14.012] Commit new sealing work number=5097 sealhash=f75e78..bf6b60 txs=0 gas=0 fees=0 elapsed="446.925µs" +INFO [08-24|10:26:19.006] Successfully sealed new block number=5097 sealhash=f75e78..bf6b60 hash=a9a9f8..1a91da elapsed=4.994s +INFO [08-24|10:26:19.006] Commit new sealing work number=5098 sealhash=d3ceae..32af5e txs=0 gas=0 fees=0 elapsed="411.261µs" +INFO [08-24|10:26:22.902] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:26:24.006] Successfully sealed new block number=5098 sealhash=d3ceae..32af5e hash=a1fa38..9b867d elapsed=4.999s +INFO [08-24|10:26:24.006] Commit new sealing work number=5099 sealhash=ae0f1d..4f06c6 txs=0 gas=0 fees=0 elapsed="236.964µs" +INFO [08-24|10:26:29.005] Successfully sealed new block number=5099 sealhash=ae0f1d..4f06c6 hash=79130e..153481 elapsed=4.998s +INFO [08-24|10:26:29.005] Commit new sealing work number=5100 sealhash=9c09f7..004973 txs=0 gas=0 fees=0 elapsed="354.312µs" +INFO [08-24|10:26:32.923] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:26:34.009] Successfully sealed new block number=5100 sealhash=9c09f7..004973 hash=48c9c7..81dd81 elapsed=5.003s +INFO [08-24|10:26:34.009] Commit new sealing work number=5101 sealhash=ae486b..f9197f txs=0 gas=0 fees=0 elapsed="217.997µs" +INFO [08-24|10:26:39.010] Successfully sealed new block number=5101 sealhash=ae486b..f9197f hash=288100..4a2c69 elapsed=5.000s +INFO [08-24|10:26:39.011] Commit new sealing work number=5102 sealhash=9264b9..dd4bbe txs=0 gas=0 fees=0 elapsed="403.61µs" +INFO [08-24|10:26:42.944] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:26:44.011] Successfully sealed new block number=5102 sealhash=9264b9..dd4bbe hash=86cc51..54569c elapsed=4.999s +INFO [08-24|10:26:44.011] Commit new sealing work number=5103 sealhash=3dae0a..927ec9 txs=0 gas=0 fees=0 elapsed="253.537µs" +INFO [08-24|10:26:49.009] Successfully sealed new block number=5103 sealhash=3dae0a..927ec9 hash=db7d52..e1398e elapsed=4.998s +INFO [08-24|10:26:49.010] Commit new sealing work number=5104 sealhash=3441ff..994100 txs=0 gas=0 fees=0 elapsed="562.682µs" +INFO [08-24|10:26:52.961] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:26:54.005] Successfully sealed new block number=5104 sealhash=3441ff..994100 hash=0e67b8..76a334 elapsed=4.995s +INFO [08-24|10:26:54.006] Commit new sealing work number=5105 sealhash=d6aea5..20ad96 txs=0 gas=0 fees=0 elapsed="334.51µs" +INFO [08-24|10:26:59.010] Successfully sealed new block number=5105 sealhash=d6aea5..20ad96 hash=1b131c..5134a6 elapsed=5.004s +INFO [08-24|10:26:59.011] Commit new sealing work number=5106 sealhash=bd4246..20022e txs=0 gas=0 fees=0 elapsed="305.076µs" +INFO [08-24|10:27:02.980] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:27:04.007] Successfully sealed new block number=5106 sealhash=bd4246..20022e hash=9987b7..cfede5 elapsed=4.995s +INFO [08-24|10:27:04.007] Commit new sealing work number=5107 sealhash=a095bc..3e9584 txs=0 gas=0 fees=0 elapsed="290.929µs" +INFO [08-24|10:27:09.010] Successfully sealed new block number=5107 sealhash=a095bc..3e9584 hash=e27c1d..0a8e5b elapsed=5.002s +INFO [08-24|10:27:09.010] Commit new sealing work number=5108 sealhash=20868f..d0645c txs=0 gas=0 fees=0 elapsed="442.719µs" +INFO [08-24|10:27:13.001] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:27:14.010] Successfully sealed new block number=5108 sealhash=20868f..d0645c hash=33f8ec..b4d827 elapsed=4.999s +INFO [08-24|10:27:14.010] Commit new sealing work number=5109 sealhash=0538d5..13a1be txs=0 gas=0 fees=0 elapsed="383.465µs" +INFO [08-24|10:27:19.009] Successfully sealed new block number=5109 sealhash=0538d5..13a1be hash=724706..b86384 elapsed=4.998s +INFO [08-24|10:27:19.009] Commit new sealing work number=5110 sealhash=e0a722..2c77cd txs=0 gas=0 fees=0 elapsed="318.012µs" +INFO [08-24|10:27:23.022] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:27:24.010] Successfully sealed new block number=5110 sealhash=e0a722..2c77cd hash=927d8a..e5836c elapsed=5.000s +INFO [08-24|10:27:24.011] Commit new sealing work number=5111 sealhash=f13957..5fb53f txs=0 gas=0 fees=0 elapsed="522.104µs" +INFO [08-24|10:27:29.011] Successfully sealed new block number=5111 sealhash=f13957..5fb53f hash=b53f81..1beeb7 elapsed=5.000s +INFO [08-24|10:27:29.011] Commit new sealing work number=5112 sealhash=dc638a..09439a txs=0 gas=0 fees=0 elapsed="232.746µs" +INFO [08-24|10:27:33.045] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:27:34.010] Successfully sealed new block number=5112 sealhash=dc638a..09439a hash=1ba60d..5002bb elapsed=4.998s +INFO [08-24|10:27:34.010] Commit new sealing work number=5113 sealhash=012ad8..28fefc txs=0 gas=0 fees=0 elapsed="286.91µs" +INFO [08-24|10:27:39.009] Successfully sealed new block number=5113 sealhash=012ad8..28fefc hash=a22bfb..cb693f elapsed=4.999s +INFO [08-24|10:27:39.010] Commit new sealing work number=5114 sealhash=775c52..76aa30 txs=0 gas=0 fees=0 elapsed="489.608µs" +INFO [08-24|10:27:43.065] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:27:44.010] Successfully sealed new block number=5114 sealhash=775c52..76aa30 hash=6aaa9a..0550f2 elapsed=4.999s +INFO [08-24|10:27:44.010] Commit new sealing work number=5115 sealhash=ebe465..431daa txs=0 gas=0 fees=0 elapsed="469.17µs" +INFO [08-24|10:27:49.009] Successfully sealed new block number=5115 sealhash=ebe465..431daa hash=91da91..74b480 elapsed=4.999s +INFO [08-24|10:27:49.010] Commit new sealing work number=5116 sealhash=180b1f..b1f4f5 txs=0 gas=0 fees=0 elapsed="323.223µs" +INFO [08-24|10:27:53.086] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:27:54.006] Successfully sealed new block number=5116 sealhash=180b1f..b1f4f5 hash=0443bc..bc876a elapsed=4.995s +INFO [08-24|10:27:54.006] Commit new sealing work number=5117 sealhash=c28fe1..245e8b txs=0 gas=0 fees=0 elapsed="255.295µs" +INFO [08-24|10:27:59.011] Successfully sealed new block number=5117 sealhash=c28fe1..245e8b hash=8ce490..ea9e60 elapsed=5.005s +INFO [08-24|10:27:59.011] Commit new sealing work number=5118 sealhash=6611f5..340641 txs=0 gas=0 fees=0 elapsed="295.256µs" +INFO [08-24|10:28:03.104] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:28:04.010] Successfully sealed new block number=5118 sealhash=6611f5..340641 hash=268e17..bec527 elapsed=4.998s +INFO [08-24|10:28:04.010] Commit new sealing work number=5119 sealhash=7b1c9c..915dd8 txs=0 gas=0 fees=0 elapsed="337.669µs" +INFO [08-24|10:28:09.010] Successfully sealed new block number=5119 sealhash=7b1c9c..915dd8 hash=fda98a..7c6f93 elapsed=4.999s +INFO [08-24|10:28:09.010] Commit new sealing work number=5120 sealhash=7c2ca4..717e91 txs=0 gas=0 fees=0 elapsed="271.135µs" +INFO [08-24|10:28:13.123] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:28:14.007] Successfully sealed new block number=5120 sealhash=7c2ca4..717e91 hash=6d984c..5873ed elapsed=4.997s +INFO [08-24|10:28:14.017] Commit new sealing work number=5121 sealhash=0bf766..f7ab30 txs=0 gas=0 fees=0 elapsed=9.371ms +INFO [08-24|10:28:19.008] Successfully sealed new block number=5121 sealhash=0bf766..f7ab30 hash=41e130..f494e4 elapsed=4.991s +INFO [08-24|10:28:19.009] Commit new sealing work number=5122 sealhash=bfc1fa..2da8e1 txs=0 gas=0 fees=0 elapsed="212.636µs" +INFO [08-24|10:28:23.146] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:28:24.010] Successfully sealed new block number=5122 sealhash=bfc1fa..2da8e1 hash=fb9d49..0348ab elapsed=5.001s +INFO [08-24|10:28:24.010] Commit new sealing work number=5123 sealhash=3776b7..d992a7 txs=0 gas=0 fees=0 elapsed="278.075µs" +INFO [08-24|10:28:29.008] Successfully sealed new block number=5123 sealhash=3776b7..d992a7 hash=e62b2f..4a2347 elapsed=4.997s +INFO [08-24|10:28:29.008] Commit new sealing work number=5124 sealhash=82921b..6e46cd txs=0 gas=0 fees=0 elapsed="273.922µs" +INFO [08-24|10:28:33.166] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:28:34.008] Successfully sealed new block number=5124 sealhash=82921b..6e46cd hash=fcd48e..e11b8d elapsed=5.000s +INFO [08-24|10:28:34.008] Commit new sealing work number=5125 sealhash=b9a1b2..2f3fec txs=0 gas=0 fees=0 elapsed="333.425µs" +INFO [08-24|10:28:39.005] Successfully sealed new block number=5125 sealhash=b9a1b2..2f3fec hash=354969..242ebb elapsed=4.996s +INFO [08-24|10:28:39.006] Commit new sealing work number=5126 sealhash=becc1b..305cde txs=0 gas=0 fees=0 elapsed="725.878µs" +INFO [08-24|10:28:43.186] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:28:44.009] Successfully sealed new block number=5126 sealhash=becc1b..305cde hash=d66765..ea677b elapsed=5.003s +INFO [08-24|10:28:44.010] Commit new sealing work number=5127 sealhash=173242..36f474 txs=0 gas=0 fees=0 elapsed=1.058ms +INFO [08-24|10:28:49.011] Successfully sealed new block number=5127 sealhash=173242..36f474 hash=6b0682..a5f18a elapsed=5.000s +INFO [08-24|10:28:49.011] Commit new sealing work number=5128 sealhash=c420f1..2bc31f txs=0 gas=0 fees=0 elapsed="241.894µs" +INFO [08-24|10:28:53.209] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:28:54.005] Successfully sealed new block number=5128 sealhash=c420f1..2bc31f hash=d97c85..93e70a elapsed=4.994s +INFO [08-24|10:28:54.006] Commit new sealing work number=5129 sealhash=cead0e..ec49e5 txs=0 gas=0 fees=0 elapsed="257.195µs" +INFO [08-24|10:28:59.010] Successfully sealed new block number=5129 sealhash=cead0e..ec49e5 hash=28a599..197f90 elapsed=5.004s +INFO [08-24|10:28:59.010] Commit new sealing work number=5130 sealhash=bb7467..9b3c36 txs=0 gas=0 fees=0 elapsed="306.415µs" +INFO [08-24|10:29:03.232] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:29:04.010] Successfully sealed new block number=5130 sealhash=bb7467..9b3c36 hash=cd8e56..df6b85 elapsed=4.999s +INFO [08-24|10:29:04.010] Commit new sealing work number=5131 sealhash=06a993..e29bcc txs=0 gas=0 fees=0 elapsed="216.288µs" +INFO [08-24|10:29:09.010] Successfully sealed new block number=5131 sealhash=06a993..e29bcc hash=f71741..1110b1 elapsed=4.999s +INFO [08-24|10:29:09.010] Commit new sealing work number=5132 sealhash=c6456e..6fb60b txs=0 gas=0 fees=0 elapsed="281.394µs" +INFO [08-24|10:29:13.251] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:29:14.008] Successfully sealed new block number=5132 sealhash=c6456e..6fb60b hash=ec3492..55ceec elapsed=4.997s +INFO [08-24|10:29:14.008] Commit new sealing work number=5133 sealhash=7ac103..4fa5e6 txs=0 gas=0 fees=0 elapsed="311.278µs" +INFO [08-24|10:29:19.009] Successfully sealed new block number=5133 sealhash=7ac103..4fa5e6 hash=230fc9..c79c8f elapsed=5.000s +INFO [08-24|10:29:19.010] Commit new sealing work number=5134 sealhash=f8ac20..6a6807 txs=0 gas=0 fees=0 elapsed="267.888µs" +INFO [08-24|10:29:23.273] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:29:24.008] Successfully sealed new block number=5134 sealhash=f8ac20..6a6807 hash=f6c495..9cc871 elapsed=4.998s +INFO [08-24|10:29:24.009] Commit new sealing work number=5135 sealhash=3d343b..7a63ee txs=0 gas=0 fees=0 elapsed="303.155µs" +INFO [08-24|10:29:29.003] Successfully sealed new block number=5135 sealhash=3d343b..7a63ee hash=75d72b..9c089a elapsed=4.994s +INFO [08-24|10:29:29.004] Commit new sealing work number=5136 sealhash=fc512f..8e1564 txs=0 gas=0 fees=0 elapsed="216.807µs" +INFO [08-24|10:29:33.294] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:29:34.007] Successfully sealed new block number=5136 sealhash=fc512f..8e1564 hash=f7f78a..f8a0b1 elapsed=5.003s +INFO [08-24|10:29:34.008] Commit new sealing work number=5137 sealhash=ad4862..f5a2ee txs=0 gas=0 fees=0 elapsed="251.79µs" +INFO [08-24|10:29:39.009] Successfully sealed new block number=5137 sealhash=ad4862..f5a2ee hash=6d26ce..0fb164 elapsed=5.001s +INFO [08-24|10:29:39.009] Commit new sealing work number=5138 sealhash=4c86d1..be215d txs=0 gas=0 fees=0 elapsed="315.634µs" +INFO [08-24|10:29:43.316] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:29:44.011] Successfully sealed new block number=5138 sealhash=4c86d1..be215d hash=1cb1e4..f3ea1e elapsed=5.001s +INFO [08-24|10:29:44.012] Commit new sealing work number=5139 sealhash=00ff73..d3007e txs=0 gas=0 fees=0 elapsed="296.641µs" +INFO [08-24|10:29:49.009] Successfully sealed new block number=5139 sealhash=00ff73..d3007e hash=5f5e16..991acc elapsed=4.997s +INFO [08-24|10:29:49.009] Commit new sealing work number=5140 sealhash=f19499..dd4d0f txs=0 gas=0 fees=0 elapsed="336.713µs" +INFO [08-24|10:29:53.335] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:29:54.010] Successfully sealed new block number=5140 sealhash=f19499..dd4d0f hash=73c955..356ed3 elapsed=5.000s +INFO [08-24|10:29:54.010] Commit new sealing work number=5141 sealhash=fc6de4..34482b txs=0 gas=0 fees=0 elapsed="350.27µs" +INFO [08-24|10:29:59.010] Successfully sealed new block number=5141 sealhash=fc6de4..34482b hash=3542e4..f446d4 elapsed=4.999s +INFO [08-24|10:29:59.011] Commit new sealing work number=5142 sealhash=b3b7fa..7a71c8 txs=0 gas=0 fees=0 elapsed="323.003µs" +INFO [08-24|10:30:03.359] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:30:04.012] Successfully sealed new block number=5142 sealhash=b3b7fa..7a71c8 hash=73e632..5cbc11 elapsed=5.001s +INFO [08-24|10:30:04.012] Commit new sealing work number=5143 sealhash=46cf02..5d33a9 txs=0 gas=0 fees=0 elapsed="282.087µs" +INFO [08-24|10:30:09.010] Successfully sealed new block number=5143 sealhash=46cf02..5d33a9 hash=359515..fc1771 elapsed=4.997s +INFO [08-24|10:30:09.013] Commit new sealing work number=5144 sealhash=c26011..33a71b txs=0 gas=0 fees=0 elapsed=2.102ms +INFO [08-24|10:30:13.381] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:30:14.010] Successfully sealed new block number=5144 sealhash=c26011..33a71b hash=4a1bd1..c0d1d1 elapsed=4.997s +INFO [08-24|10:30:14.011] Commit new sealing work number=5145 sealhash=5d6707..a9bbb5 txs=0 gas=0 fees=0 elapsed="408.707µs" +INFO [08-24|10:30:19.005] Successfully sealed new block number=5145 sealhash=5d6707..a9bbb5 hash=e22d02..a0a923 elapsed=4.994s +INFO [08-24|10:30:19.006] Commit new sealing work number=5146 sealhash=1325ec..ebc0a6 txs=0 gas=0 fees=0 elapsed="307.986µs" +INFO [08-24|10:30:23.401] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:30:24.005] Successfully sealed new block number=5146 sealhash=1325ec..ebc0a6 hash=c531de..268132 elapsed=4.999s +INFO [08-24|10:30:24.006] Commit new sealing work number=5147 sealhash=92c0ee..59612a txs=0 gas=0 fees=0 elapsed="512.216µs" +INFO [08-24|10:30:29.006] Successfully sealed new block number=5147 sealhash=92c0ee..59612a hash=3c4cbb..311777 elapsed=5.000s +INFO [08-24|10:30:29.007] Commit new sealing work number=5148 sealhash=accd45..8ceb1d txs=0 gas=0 fees=0 elapsed="263.379µs" +INFO [08-24|10:30:33.421] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:30:34.008] Successfully sealed new block number=5148 sealhash=accd45..8ceb1d hash=74f1b5..3a5cc9 elapsed=5.001s +INFO [08-24|10:30:34.009] Commit new sealing work number=5149 sealhash=2e1efd..31522a txs=0 gas=0 fees=0 elapsed="284.909µs" +INFO [08-24|10:30:39.008] Successfully sealed new block number=5149 sealhash=2e1efd..31522a hash=932509..3691f3 elapsed=4.999s +INFO [08-24|10:30:39.009] Commit new sealing work number=5150 sealhash=8b575f..0170b6 txs=0 gas=0 fees=0 elapsed="275.076µs" +INFO [08-24|10:30:43.441] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:30:44.008] Successfully sealed new block number=5150 sealhash=8b575f..0170b6 hash=fbb70a..6ba8d4 elapsed=4.999s +INFO [08-24|10:30:44.008] Commit new sealing work number=5151 sealhash=5b042a..d2d129 txs=0 gas=0 fees=0 elapsed="356.769µs" +INFO [08-24|10:30:49.012] Successfully sealed new block number=5151 sealhash=5b042a..d2d129 hash=f049a3..60f0e3 elapsed=5.003s +INFO [08-24|10:30:49.013] Commit new sealing work number=5152 sealhash=84cf77..d2f45f txs=0 gas=0 fees=0 elapsed="794.451µs" +INFO [08-24|10:30:53.463] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:30:54.009] Successfully sealed new block number=5152 sealhash=84cf77..d2f45f hash=3c571d..80c07b elapsed=4.996s +INFO [08-24|10:30:54.010] Commit new sealing work number=5153 sealhash=d59250..981c19 txs=0 gas=0 fees=0 elapsed="387.457µs" +INFO [08-24|10:30:59.010] Successfully sealed new block number=5153 sealhash=d59250..981c19 hash=453338..4e15b8 elapsed=5.000s +INFO [08-24|10:30:59.011] Commit new sealing work number=5154 sealhash=16b1b4..aafa0b txs=0 gas=0 fees=0 elapsed="352.893µs" +INFO [08-24|10:31:03.483] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:31:04.007] Successfully sealed new block number=5154 sealhash=16b1b4..aafa0b hash=975673..5e4402 elapsed=4.996s +INFO [08-24|10:31:04.007] Commit new sealing work number=5155 sealhash=885143..32fc46 txs=0 gas=0 fees=0 elapsed="286.116µs" +INFO [08-24|10:31:09.008] Successfully sealed new block number=5155 sealhash=885143..32fc46 hash=d394d7..a29b9d elapsed=5.000s +INFO [08-24|10:31:09.008] Commit new sealing work number=5156 sealhash=83bf92..1a1f46 txs=0 gas=0 fees=0 elapsed="355.985µs" +INFO [08-24|10:31:13.504] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:31:14.005] Successfully sealed new block number=5156 sealhash=83bf92..1a1f46 hash=9680f3..3562ab elapsed=4.996s +INFO [08-24|10:31:14.005] Commit new sealing work number=5157 sealhash=33e8b0..20f5da txs=0 gas=0 fees=0 elapsed="269.682µs" +INFO [08-24|10:31:19.011] Successfully sealed new block number=5157 sealhash=33e8b0..20f5da hash=3bc5dc..161671 elapsed=5.005s +INFO [08-24|10:31:19.011] Commit new sealing work number=5158 sealhash=1e16d4..f8c756 txs=0 gas=0 fees=0 elapsed="383.114µs" +INFO [08-24|10:31:23.524] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:31:24.009] Successfully sealed new block number=5158 sealhash=1e16d4..f8c756 hash=83c3db..346498 elapsed=4.998s +INFO [08-24|10:31:24.010] Commit new sealing work number=5159 sealhash=81af5a..648edf txs=0 gas=0 fees=0 elapsed="240.355µs" +INFO [08-24|10:31:29.009] Successfully sealed new block number=5159 sealhash=81af5a..648edf hash=6f3e6c..ce535a elapsed=4.999s +INFO [08-24|10:31:29.010] Commit new sealing work number=5160 sealhash=f53561..ee7319 txs=0 gas=0 fees=0 elapsed="305.788µs" +INFO [08-24|10:31:33.543] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:31:34.011] Successfully sealed new block number=5160 sealhash=f53561..ee7319 hash=30c3b7..0efa49 elapsed=5.001s +INFO [08-24|10:31:34.012] Commit new sealing work number=5161 sealhash=d9f558..7667ac txs=0 gas=0 fees=0 elapsed="420.924µs" +INFO [08-24|10:31:39.015] Successfully sealed new block number=5161 sealhash=d9f558..7667ac hash=b4fe3c..727687 elapsed=5.002s +INFO [08-24|10:31:39.016] Commit new sealing work number=5162 sealhash=9700c5..f762b7 txs=0 gas=0 fees=0 elapsed="938.657µs" +INFO [08-24|10:31:43.562] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:31:44.009] Successfully sealed new block number=5162 sealhash=9700c5..f762b7 hash=4d10e9..50b4c1 elapsed=4.992s +INFO [08-24|10:31:44.009] Commit new sealing work number=5163 sealhash=fff1b8..5bcace txs=0 gas=0 fees=0 elapsed="250.974µs" +INFO [08-24|10:31:49.011] Successfully sealed new block number=5163 sealhash=fff1b8..5bcace hash=c9c7c7..827b76 elapsed=5.001s +INFO [08-24|10:31:49.011] Commit new sealing work number=5164 sealhash=e0c6f7..bf6292 txs=0 gas=0 fees=0 elapsed="357.622µs" +INFO [08-24|10:31:53.583] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:31:54.007] Successfully sealed new block number=5164 sealhash=e0c6f7..bf6292 hash=63931d..d3b2dc elapsed=4.996s +INFO [08-24|10:31:54.008] Commit new sealing work number=5165 sealhash=4d3efc..b39ce1 txs=0 gas=0 fees=0 elapsed="291.482µs" +INFO [08-24|10:31:59.010] Successfully sealed new block number=5165 sealhash=4d3efc..b39ce1 hash=b05c0b..d08ed4 elapsed=5.002s +INFO [08-24|10:31:59.011] Commit new sealing work number=5166 sealhash=fc0310..219799 txs=0 gas=0 fees=0 elapsed="222.919µs" +INFO [08-24|10:32:03.603] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:32:04.006] Successfully sealed new block number=5166 sealhash=fc0310..219799 hash=5ff948..17b02e elapsed=4.995s +INFO [08-24|10:32:04.007] Commit new sealing work number=5167 sealhash=b193c4..a7836c txs=0 gas=0 fees=0 elapsed="266.604µs" +INFO [08-24|10:32:09.007] Successfully sealed new block number=5167 sealhash=b193c4..a7836c hash=ddb760..32790f elapsed=5.000s +INFO [08-24|10:32:09.007] Commit new sealing work number=5168 sealhash=ebd4b7..188d65 txs=0 gas=0 fees=0 elapsed="246.486µs" +INFO [08-24|10:32:13.622] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:32:14.008] Successfully sealed new block number=5168 sealhash=ebd4b7..188d65 hash=0613ce..43b550 elapsed=5.000s +INFO [08-24|10:32:14.008] Commit new sealing work number=5169 sealhash=99b290..b620b4 txs=0 gas=0 fees=0 elapsed="292.352µs" +INFO [08-24|10:32:19.010] Successfully sealed new block number=5169 sealhash=99b290..b620b4 hash=3223cc..ee9847 elapsed=5.001s +INFO [08-24|10:32:19.010] Commit new sealing work number=5170 sealhash=46abee..770a78 txs=0 gas=0 fees=0 elapsed="256.232µs" +INFO [08-24|10:32:23.645] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:32:24.008] Successfully sealed new block number=5170 sealhash=46abee..770a78 hash=1d2433..33f1c0 elapsed=4.998s +INFO [08-24|10:32:24.009] Commit new sealing work number=5171 sealhash=fbff95..d1fa86 txs=0 gas=0 fees=0 elapsed="316.656µs" +INFO [08-24|10:32:29.009] Successfully sealed new block number=5171 sealhash=fbff95..d1fa86 hash=62a3e7..b1fe04 elapsed=5.000s +INFO [08-24|10:32:29.009] Commit new sealing work number=5172 sealhash=1ce5b0..c59d7c txs=0 gas=0 fees=0 elapsed="257.317µs" +INFO [08-24|10:32:33.666] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:32:34.008] Successfully sealed new block number=5172 sealhash=1ce5b0..c59d7c hash=2db5e5..cb4033 elapsed=4.999s +INFO [08-24|10:32:34.009] Commit new sealing work number=5173 sealhash=8a113e..1fda09 txs=0 gas=0 fees=0 elapsed="205.018µs" +INFO [08-24|10:32:39.010] Successfully sealed new block number=5173 sealhash=8a113e..1fda09 hash=302907..92bbea elapsed=5.000s +INFO [08-24|10:32:39.010] Commit new sealing work number=5174 sealhash=85841e..392148 txs=0 gas=0 fees=0 elapsed="504.82µs" +INFO [08-24|10:32:43.688] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:32:44.009] Successfully sealed new block number=5174 sealhash=85841e..392148 hash=85fa67..e4b1b0 elapsed=4.998s +INFO [08-24|10:32:44.009] Commit new sealing work number=5175 sealhash=5bb9b3..e7ff90 txs=0 gas=0 fees=0 elapsed="276.513µs" +INFO [08-24|10:32:49.010] Successfully sealed new block number=5175 sealhash=5bb9b3..e7ff90 hash=7e6505..14aa1e elapsed=5.000s +INFO [08-24|10:32:49.010] Commit new sealing work number=5176 sealhash=208a33..718494 txs=0 gas=0 fees=0 elapsed="368.616µs" +INFO [08-24|10:32:53.708] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:32:54.005] Successfully sealed new block number=5176 sealhash=208a33..718494 hash=66d629..dd789f elapsed=4.994s +INFO [08-24|10:32:54.006] Commit new sealing work number=5177 sealhash=3f4d9f..5057ad txs=0 gas=0 fees=0 elapsed="208.304µs" +INFO [08-24|10:32:59.010] Successfully sealed new block number=5177 sealhash=3f4d9f..5057ad hash=8a0f7e..d9fe4b elapsed=5.004s +INFO [08-24|10:32:59.011] Commit new sealing work number=5178 sealhash=c936ae..684a14 txs=0 gas=0 fees=0 elapsed="275.916µs" +INFO [08-24|10:33:03.726] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:33:04.008] Successfully sealed new block number=5178 sealhash=c936ae..684a14 hash=1bb18c..004bc1 elapsed=4.997s +INFO [08-24|10:33:04.008] Commit new sealing work number=5179 sealhash=7e9674..c2ed36 txs=0 gas=0 fees=0 elapsed="327.633µs" +INFO [08-24|10:33:09.009] Successfully sealed new block number=5179 sealhash=7e9674..c2ed36 hash=7a54ae..5dbd4b elapsed=5.000s +INFO [08-24|10:33:09.009] Commit new sealing work number=5180 sealhash=849b7f..130f9c txs=0 gas=0 fees=0 elapsed="400.303µs" +INFO [08-24|10:33:13.746] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:33:14.006] Successfully sealed new block number=5180 sealhash=849b7f..130f9c hash=f09641..1a96df elapsed=4.996s +INFO [08-24|10:33:14.007] Commit new sealing work number=5181 sealhash=98da2a..340760 txs=0 gas=0 fees=0 elapsed="541.037µs" +INFO [08-24|10:33:19.011] Successfully sealed new block number=5181 sealhash=98da2a..340760 hash=a54816..0d520a elapsed=5.004s +INFO [08-24|10:33:19.011] Commit new sealing work number=5182 sealhash=8729e7..08907c txs=0 gas=0 fees=0 elapsed="318.592µs" +INFO [08-24|10:33:23.765] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:33:24.007] Successfully sealed new block number=5182 sealhash=8729e7..08907c hash=006b9b..d9d54d elapsed=4.996s +INFO [08-24|10:33:24.008] Commit new sealing work number=5183 sealhash=046b87..cfa4e0 txs=0 gas=0 fees=0 elapsed="354.968µs" +INFO [08-24|10:33:29.004] Successfully sealed new block number=5183 sealhash=046b87..cfa4e0 hash=7709b9..a067f6 elapsed=4.995s +INFO [08-24|10:33:29.004] Commit new sealing work number=5184 sealhash=f8dfb7..208ad2 txs=0 gas=0 fees=0 elapsed="300.169µs" +INFO [08-24|10:33:33.785] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:33:34.005] Successfully sealed new block number=5184 sealhash=f8dfb7..208ad2 hash=f1a439..340718 elapsed=5.001s +INFO [08-24|10:33:34.006] Commit new sealing work number=5185 sealhash=628e14..f8526e txs=0 gas=0 fees=0 elapsed="288.468µs" +INFO [08-24|10:33:39.009] Successfully sealed new block number=5185 sealhash=628e14..f8526e hash=0218b4..a1c703 elapsed=5.002s +INFO [08-24|10:33:39.009] Commit new sealing work number=5186 sealhash=fbd11b..322e20 txs=0 gas=0 fees=0 elapsed="531.83µs" +INFO [08-24|10:33:43.803] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:33:44.008] Successfully sealed new block number=5186 sealhash=fbd11b..322e20 hash=f729ab..1d8068 elapsed=4.998s +INFO [08-24|10:33:44.008] Commit new sealing work number=5187 sealhash=beb336..e8a6ef txs=0 gas=0 fees=0 elapsed="387.411µs" +INFO [08-24|10:33:49.009] Successfully sealed new block number=5187 sealhash=beb336..e8a6ef hash=e5c142..981952 elapsed=5.000s +INFO [08-24|10:33:49.010] Commit new sealing work number=5188 sealhash=70d1bf..e09dc6 txs=0 gas=0 fees=0 elapsed="328.906µs" +INFO [08-24|10:33:53.823] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:33:54.005] Successfully sealed new block number=5188 sealhash=70d1bf..e09dc6 hash=441141..df6eef elapsed=4.995s +INFO [08-24|10:33:54.005] Commit new sealing work number=5189 sealhash=423d3a..5fac0d txs=0 gas=0 fees=0 elapsed="207.182µs" +INFO [08-24|10:33:59.005] Successfully sealed new block number=5189 sealhash=423d3a..5fac0d hash=c89ad5..ed0833 elapsed=4.999s +INFO [08-24|10:33:59.006] Commit new sealing work number=5190 sealhash=ae1c8e..d11665 txs=0 gas=0 fees=0 elapsed="281.569µs" +INFO [08-24|10:34:03.844] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:34:04.009] Successfully sealed new block number=5190 sealhash=ae1c8e..d11665 hash=cae450..a35ac0 elapsed=5.002s +INFO [08-24|10:34:04.009] Commit new sealing work number=5191 sealhash=5c4d86..ad5c79 txs=0 gas=0 fees=0 elapsed="263.448µs" +INFO [08-24|10:34:09.007] Successfully sealed new block number=5191 sealhash=5c4d86..ad5c79 hash=9b2327..86f93b elapsed=4.998s +INFO [08-24|10:34:09.007] Commit new sealing work number=5192 sealhash=5a9695..af100d txs=0 gas=0 fees=0 elapsed="311.705µs" +INFO [08-24|10:34:13.864] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:34:14.007] Successfully sealed new block number=5192 sealhash=5a9695..af100d hash=49d676..9dd5ed elapsed=4.999s +INFO [08-24|10:34:14.007] Commit new sealing work number=5193 sealhash=a35248..1e70bf txs=0 gas=0 fees=0 elapsed="298.554µs" +INFO [08-24|10:34:19.009] Successfully sealed new block number=5193 sealhash=a35248..1e70bf hash=606852..c07925 elapsed=5.002s +INFO [08-24|10:34:19.010] Commit new sealing work number=5194 sealhash=dcd526..8b9d41 txs=0 gas=0 fees=0 elapsed="224.088µs" +INFO [08-24|10:34:23.886] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:34:24.010] Successfully sealed new block number=5194 sealhash=dcd526..8b9d41 hash=b02f5c..123012 elapsed=5.000s +INFO [08-24|10:34:24.010] Commit new sealing work number=5195 sealhash=9a906c..82d448 txs=0 gas=0 fees=0 elapsed="252.1µs" +INFO [08-24|10:34:29.004] Successfully sealed new block number=5195 sealhash=9a906c..82d448 hash=a2c6e0..b914af elapsed=4.993s +INFO [08-24|10:34:29.005] Commit new sealing work number=5196 sealhash=1a428c..7839c0 txs=0 gas=0 fees=0 elapsed="256.762µs" +INFO [08-24|10:34:33.907] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:34:34.011] Successfully sealed new block number=5196 sealhash=1a428c..7839c0 hash=7ca4af..454296 elapsed=5.006s +INFO [08-24|10:34:34.011] Commit new sealing work number=5197 sealhash=b302e4..1da542 txs=0 gas=0 fees=0 elapsed="336.421µs" +INFO [08-24|10:34:39.008] Successfully sealed new block number=5197 sealhash=b302e4..1da542 hash=f3e890..7c4cf0 elapsed=4.996s +INFO [08-24|10:34:39.008] Commit new sealing work number=5198 sealhash=ddb359..ecd81c txs=0 gas=0 fees=0 elapsed="349.809µs" +INFO [08-24|10:34:43.928] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:34:44.007] Successfully sealed new block number=5198 sealhash=ddb359..ecd81c hash=5c25a2..f8d50f elapsed=4.998s +INFO [08-24|10:34:44.007] Commit new sealing work number=5199 sealhash=031aeb..a33d68 txs=0 gas=0 fees=0 elapsed="240.389µs" +INFO [08-24|10:34:49.008] Successfully sealed new block number=5199 sealhash=031aeb..a33d68 hash=cb291d..55a5aa elapsed=5.001s +INFO [08-24|10:34:49.009] Commit new sealing work number=5200 sealhash=96f1bb..556369 txs=0 gas=0 fees=0 elapsed="515.181µs" +INFO [08-24|10:34:53.946] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:34:54.009] Successfully sealed new block number=5200 sealhash=96f1bb..556369 hash=f4108f..f2c00d elapsed=4.999s +INFO [08-24|10:34:54.009] Commit new sealing work number=5201 sealhash=805157..1149d1 txs=0 gas=0 fees=0 elapsed="209.25µs" +INFO [08-24|10:34:59.011] Successfully sealed new block number=5201 sealhash=805157..1149d1 hash=497aae..c22bea elapsed=5.001s +INFO [08-24|10:34:59.011] Commit new sealing work number=5202 sealhash=76edab..2250ee txs=0 gas=0 fees=0 elapsed="203.994µs" +INFO [08-24|10:35:03.970] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:35:04.009] Successfully sealed new block number=5202 sealhash=76edab..2250ee hash=c470aa..8f30fe elapsed=4.997s +INFO [08-24|10:35:04.009] Commit new sealing work number=5203 sealhash=7130dc..422572 txs=0 gas=0 fees=0 elapsed="276.241µs" +INFO [08-24|10:35:09.006] Successfully sealed new block number=5203 sealhash=7130dc..422572 hash=fdfcd6..8c87c0 elapsed=4.997s +INFO [08-24|10:35:09.007] Commit new sealing work number=5204 sealhash=673ca8..8380a2 txs=0 gas=0 fees=0 elapsed="474.201µs" +INFO [08-24|10:35:13.992] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:35:14.010] Successfully sealed new block number=5204 sealhash=673ca8..8380a2 hash=62d87c..8aa526 elapsed=5.002s +INFO [08-24|10:35:14.010] Commit new sealing work number=5205 sealhash=7a725e..60b13c txs=0 gas=0 fees=0 elapsed="260.65µs" +INFO [08-24|10:35:19.008] Successfully sealed new block number=5205 sealhash=7a725e..60b13c hash=b17890..5fd57e elapsed=4.998s +INFO [08-24|10:35:19.009] Commit new sealing work number=5206 sealhash=b006e6..8befa8 txs=0 gas=0 fees=0 elapsed="349.787µs" +INFO [08-24|10:35:24.010] Successfully sealed new block number=5206 sealhash=b006e6..8befa8 hash=53826b..5890fc elapsed=5.000s +INFO [08-24|10:35:24.010] Commit new sealing work number=5207 sealhash=24a671..2d4d97 txs=0 gas=0 fees=0 elapsed="415.392µs" +INFO [08-24|10:35:24.012] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:35:29.006] Successfully sealed new block number=5207 sealhash=24a671..2d4d97 hash=f06fc8..30a0ab elapsed=4.996s +INFO [08-24|10:35:29.007] Commit new sealing work number=5208 sealhash=ac5a7d..826d33 txs=0 gas=0 fees=0 elapsed="294.035µs" +INFO [08-24|10:35:34.008] Successfully sealed new block number=5208 sealhash=ac5a7d..826d33 hash=2582f8..12f272 elapsed=5.001s +INFO [08-24|10:35:34.009] Commit new sealing work number=5209 sealhash=406b3d..ecda01 txs=0 gas=0 fees=0 elapsed="314.754µs" +INFO [08-24|10:35:34.033] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:35:39.005] Successfully sealed new block number=5209 sealhash=406b3d..ecda01 hash=bc92ef..18823d elapsed=4.996s +INFO [08-24|10:35:39.006] Commit new sealing work number=5210 sealhash=e70e6c..55f6b7 txs=0 gas=0 fees=0 elapsed="563.547µs" +INFO [08-24|10:35:44.010] Successfully sealed new block number=5210 sealhash=e70e6c..55f6b7 hash=b8376f..965a73 elapsed=5.003s +INFO [08-24|10:35:44.010] Commit new sealing work number=5211 sealhash=f9bd32..b863e0 txs=0 gas=0 fees=0 elapsed="260.072µs" +INFO [08-24|10:35:44.055] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:35:49.010] Successfully sealed new block number=5211 sealhash=f9bd32..b863e0 hash=acec7c..e61074 elapsed=4.999s +INFO [08-24|10:35:49.010] Commit new sealing work number=5212 sealhash=dfcc5a..99633b txs=0 gas=0 fees=0 elapsed="372.672µs" +INFO [08-24|10:35:54.011] Successfully sealed new block number=5212 sealhash=dfcc5a..99633b hash=ea01a3..1b033c elapsed=5.000s +INFO [08-24|10:35:54.012] Commit new sealing work number=5213 sealhash=abe346..3c8782 txs=0 gas=0 fees=0 elapsed="343.11µs" +INFO [08-24|10:35:54.074] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:35:59.005] Successfully sealed new block number=5213 sealhash=abe346..3c8782 hash=a3a116..a9829f elapsed=4.993s +INFO [08-24|10:35:59.005] Commit new sealing work number=5214 sealhash=7f3f7a..a641cc txs=0 gas=0 fees=0 elapsed="240.815µs" +INFO [08-24|10:36:04.007] Successfully sealed new block number=5214 sealhash=7f3f7a..a641cc hash=87d11a..4ead2d elapsed=5.002s +INFO [08-24|10:36:04.008] Commit new sealing work number=5215 sealhash=6abdc9..a82866 txs=0 gas=0 fees=0 elapsed="540.204µs" +INFO [08-24|10:36:04.094] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:36:09.009] Successfully sealed new block number=5215 sealhash=6abdc9..a82866 hash=99e306..4f5fde elapsed=5.000s +INFO [08-24|10:36:09.009] Commit new sealing work number=5216 sealhash=a6795b..0ae926 txs=0 gas=0 fees=0 elapsed="396.147µs" +INFO [08-24|10:36:14.010] Successfully sealed new block number=5216 sealhash=a6795b..0ae926 hash=851328..1099fc elapsed=5.000s +INFO [08-24|10:36:14.010] Commit new sealing work number=5217 sealhash=432688..335ae7 txs=0 gas=0 fees=0 elapsed="356.817µs" +INFO [08-24|10:36:14.115] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:36:19.005] Successfully sealed new block number=5217 sealhash=432688..335ae7 hash=e4ac9b..80d69a elapsed=4.994s +INFO [08-24|10:36:19.005] Commit new sealing work number=5218 sealhash=13f494..76813e txs=0 gas=0 fees=0 elapsed="365.004µs" +INFO [08-24|10:36:24.009] Successfully sealed new block number=5218 sealhash=13f494..76813e hash=75c94c..e09f16 elapsed=5.003s +INFO [08-24|10:36:24.009] Commit new sealing work number=5219 sealhash=6891a1..d54356 txs=0 gas=0 fees=0 elapsed="242.318µs" +INFO [08-24|10:36:24.138] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:36:29.009] Successfully sealed new block number=5219 sealhash=6891a1..d54356 hash=bc2cdf..067143 elapsed=4.999s +INFO [08-24|10:36:29.010] Commit new sealing work number=5220 sealhash=e65e85..882dd1 txs=0 gas=0 fees=0 elapsed="282.01µs" +INFO [08-24|10:36:34.006] Successfully sealed new block number=5220 sealhash=e65e85..882dd1 hash=aff5c6..1fd896 elapsed=4.996s +INFO [08-24|10:36:34.007] Commit new sealing work number=5221 sealhash=0a4eff..05894c txs=0 gas=0 fees=0 elapsed="373.871µs" +INFO [08-24|10:36:34.159] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:36:39.009] Successfully sealed new block number=5221 sealhash=0a4eff..05894c hash=4e7b56..abc0ad elapsed=5.002s +INFO [08-24|10:36:39.010] Commit new sealing work number=5222 sealhash=c17c5a..487002 txs=0 gas=0 fees=0 elapsed="421.191µs" +INFO [08-24|10:36:44.009] Successfully sealed new block number=5222 sealhash=c17c5a..487002 hash=ed4daf..f6543d elapsed=4.999s +INFO [08-24|10:36:44.010] Commit new sealing work number=5223 sealhash=b09336..f0fa55 txs=0 gas=0 fees=0 elapsed="319.612µs" +INFO [08-24|10:36:44.178] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:36:49.011] Successfully sealed new block number=5223 sealhash=b09336..f0fa55 hash=186025..60ba0a elapsed=5.000s +INFO [08-24|10:36:49.011] Commit new sealing work number=5224 sealhash=bd252c..8a1a77 txs=0 gas=0 fees=0 elapsed="247.757µs" +INFO [08-24|10:36:54.010] Successfully sealed new block number=5224 sealhash=bd252c..8a1a77 hash=3d7357..6efe9c elapsed=4.998s +INFO [08-24|10:36:54.011] Commit new sealing work number=5225 sealhash=22c70d..621c03 txs=0 gas=0 fees=0 elapsed="718.048µs" +INFO [08-24|10:36:54.202] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:36:59.006] Successfully sealed new block number=5225 sealhash=22c70d..621c03 hash=24065c..964c77 elapsed=4.995s +INFO [08-24|10:36:59.007] Commit new sealing work number=5226 sealhash=81f5bd..c29455 txs=0 gas=0 fees=0 elapsed="429.385µs" +INFO [08-24|10:37:04.005] Successfully sealed new block number=5226 sealhash=81f5bd..c29455 hash=2de81a..c9b97b elapsed=4.998s +INFO [08-24|10:37:04.006] Commit new sealing work number=5227 sealhash=50863b..18e09d txs=0 gas=0 fees=0 elapsed="340.713µs" +INFO [08-24|10:37:04.225] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:37:09.010] Successfully sealed new block number=5227 sealhash=50863b..18e09d hash=905c55..60552f elapsed=5.004s +INFO [08-24|10:37:09.011] Commit new sealing work number=5228 sealhash=222b5c..01ca69 txs=0 gas=0 fees=0 elapsed="404.287µs" +INFO [08-24|10:37:14.005] Successfully sealed new block number=5228 sealhash=222b5c..01ca69 hash=f9d402..775328 elapsed=4.994s +INFO [08-24|10:37:14.006] Commit new sealing work number=5229 sealhash=25dc61..1ba5fc txs=0 gas=0 fees=0 elapsed="245.004µs" +INFO [08-24|10:37:14.241] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:37:19.006] Successfully sealed new block number=5229 sealhash=25dc61..1ba5fc hash=8fc614..91a5bf elapsed=5.000s +INFO [08-24|10:37:19.006] Commit new sealing work number=5230 sealhash=c12381..dc3663 txs=0 gas=0 fees=0 elapsed="363.474µs" +INFO [08-24|10:37:24.010] Successfully sealed new block number=5230 sealhash=c12381..dc3663 hash=58d026..74c894 elapsed=5.003s +INFO [08-24|10:37:24.010] Commit new sealing work number=5231 sealhash=0554b2..835fe9 txs=0 gas=0 fees=0 elapsed="436.723µs" +INFO [08-24|10:37:24.261] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:37:29.005] Successfully sealed new block number=5231 sealhash=0554b2..835fe9 hash=38421b..266285 elapsed=4.994s +INFO [08-24|10:37:29.005] Commit new sealing work number=5232 sealhash=be9c90..055d97 txs=0 gas=0 fees=0 elapsed="348.929µs" +INFO [08-24|10:37:34.011] Successfully sealed new block number=5232 sealhash=be9c90..055d97 hash=a8b725..f47616 elapsed=5.005s +INFO [08-24|10:37:34.011] Commit new sealing work number=5233 sealhash=b1f1db..fc7e40 txs=0 gas=0 fees=0 elapsed="409.416µs" +INFO [08-24|10:37:34.284] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:37:39.009] Successfully sealed new block number=5233 sealhash=b1f1db..fc7e40 hash=89c550..ce03d4 elapsed=4.997s +INFO [08-24|10:37:39.010] Commit new sealing work number=5234 sealhash=c16214..d3c45a txs=0 gas=0 fees=0 elapsed="490.537µs" +INFO [08-24|10:37:44.006] Successfully sealed new block number=5234 sealhash=c16214..d3c45a hash=799855..ba7c00 elapsed=4.996s +INFO [08-24|10:37:44.006] Commit new sealing work number=5235 sealhash=f16e3a..3897df txs=0 gas=0 fees=0 elapsed="300.263µs" +INFO [08-24|10:37:44.307] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:37:49.009] Successfully sealed new block number=5235 sealhash=f16e3a..3897df hash=fb6e3b..eab81b elapsed=5.003s +INFO [08-24|10:37:49.010] Commit new sealing work number=5236 sealhash=892474..24bb73 txs=0 gas=0 fees=0 elapsed="324.635µs" +INFO [08-24|10:37:54.010] Successfully sealed new block number=5236 sealhash=892474..24bb73 hash=40fe2b..3b5ffb elapsed=5.000s +INFO [08-24|10:37:54.011] Commit new sealing work number=5237 sealhash=a782eb..d2dd01 txs=0 gas=0 fees=0 elapsed="312.789µs" +INFO [08-24|10:37:54.331] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:37:59.005] Successfully sealed new block number=5237 sealhash=a782eb..d2dd01 hash=782e3e..48644d elapsed=4.994s +INFO [08-24|10:37:59.005] Commit new sealing work number=5238 sealhash=18fec6..93ebcc txs=0 gas=0 fees=0 elapsed="259.631µs" +INFO [08-24|10:38:04.009] Successfully sealed new block number=5238 sealhash=18fec6..93ebcc hash=4b22a9..ff5886 elapsed=5.003s +INFO [08-24|10:38:04.009] Commit new sealing work number=5239 sealhash=969aa2..47c40f txs=0 gas=0 fees=0 elapsed="203.376µs" +INFO [08-24|10:38:04.352] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:38:09.006] Successfully sealed new block number=5239 sealhash=969aa2..47c40f hash=934123..7ada98 elapsed=4.996s +INFO [08-24|10:38:09.006] Commit new sealing work number=5240 sealhash=6b9738..e8ff15 txs=0 gas=0 fees=0 elapsed="454.09µs" +INFO [08-24|10:38:14.010] Successfully sealed new block number=5240 sealhash=6b9738..e8ff15 hash=bc3447..bcc340 elapsed=5.003s +INFO [08-24|10:38:14.010] Commit new sealing work number=5241 sealhash=d44885..6df4e6 txs=0 gas=0 fees=0 elapsed="327.19µs" +INFO [08-24|10:38:14.374] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:38:19.010] Successfully sealed new block number=5241 sealhash=d44885..6df4e6 hash=013e1d..3ae771 elapsed=5.000s +INFO [08-24|10:38:19.011] Commit new sealing work number=5242 sealhash=06cce1..d06328 txs=0 gas=0 fees=0 elapsed="268.076µs" +INFO [08-24|10:38:24.007] Successfully sealed new block number=5242 sealhash=06cce1..d06328 hash=d20e2b..758a7a elapsed=4.996s +INFO [08-24|10:38:24.008] Commit new sealing work number=5243 sealhash=58b9a5..c111a1 txs=0 gas=0 fees=0 elapsed="276.387µs" +INFO [08-24|10:38:24.395] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:38:29.011] Successfully sealed new block number=5243 sealhash=58b9a5..c111a1 hash=b952ed..2644a7 elapsed=5.003s +INFO [08-24|10:38:29.012] Commit new sealing work number=5244 sealhash=5aa99e..5b57e6 txs=0 gas=0 fees=0 elapsed="246.539µs" +INFO [08-24|10:38:34.009] Successfully sealed new block number=5244 sealhash=5aa99e..5b57e6 hash=d0c1bc..97d408 elapsed=4.996s +INFO [08-24|10:38:34.009] Commit new sealing work number=5245 sealhash=d72f40..39f449 txs=0 gas=0 fees=0 elapsed="386.847µs" +INFO [08-24|10:38:34.414] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:38:39.009] Successfully sealed new block number=5245 sealhash=d72f40..39f449 hash=e0b2d7..499732 elapsed=4.999s +INFO [08-24|10:38:39.010] Commit new sealing work number=5246 sealhash=95c099..e06a83 txs=0 gas=0 fees=0 elapsed="387.382µs" +INFO [08-24|10:38:44.009] Successfully sealed new block number=5246 sealhash=95c099..e06a83 hash=7e791b..edf090 elapsed=4.998s +INFO [08-24|10:38:44.009] Commit new sealing work number=5247 sealhash=7e2f9b..a136a2 txs=0 gas=0 fees=0 elapsed="425.66µs" +INFO [08-24|10:38:44.436] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:38:49.011] Successfully sealed new block number=5247 sealhash=7e2f9b..a136a2 hash=ebba96..6409d1 elapsed=5.002s +INFO [08-24|10:38:49.012] Commit new sealing work number=5248 sealhash=2aea0d..9321ba txs=0 gas=0 fees=0 elapsed="229.46µs" +INFO [08-24|10:38:54.010] Successfully sealed new block number=5248 sealhash=2aea0d..9321ba hash=7c50b5..c9c23a elapsed=4.998s +INFO [08-24|10:38:54.011] Commit new sealing work number=5249 sealhash=a70df5..50a66f txs=0 gas=0 fees=0 elapsed="339.862µs" +INFO [08-24|10:38:54.456] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:38:59.012] Successfully sealed new block number=5249 sealhash=a70df5..50a66f hash=bf2ce0..2e8dd2 elapsed=5.000s +INFO [08-24|10:38:59.012] Commit new sealing work number=5250 sealhash=c67d95..86470c txs=0 gas=0 fees=0 elapsed="251.487µs" +INFO [08-24|10:39:04.009] Successfully sealed new block number=5250 sealhash=c67d95..86470c hash=0dd877..a44b6d elapsed=4.996s +INFO [08-24|10:39:04.009] Commit new sealing work number=5251 sealhash=4914d3..39c008 txs=0 gas=0 fees=0 elapsed="284.19µs" +INFO [08-24|10:39:04.475] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:39:09.011] Successfully sealed new block number=5251 sealhash=4914d3..39c008 hash=5ce786..9e3f43 elapsed=5.001s +INFO [08-24|10:39:09.011] Commit new sealing work number=5252 sealhash=9fdf83..c7dc30 txs=0 gas=0 fees=0 elapsed="393.942µs" +INFO [08-24|10:39:14.010] Successfully sealed new block number=5252 sealhash=9fdf83..c7dc30 hash=b7bbae..ce297b elapsed=4.999s +INFO [08-24|10:39:14.011] Commit new sealing work number=5253 sealhash=116dc1..c10ce6 txs=0 gas=0 fees=0 elapsed="351.146µs" +INFO [08-24|10:39:14.494] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:39:19.013] Successfully sealed new block number=5253 sealhash=116dc1..c10ce6 hash=c3b92a..48c71b elapsed=5.001s +INFO [08-24|10:39:19.013] Commit new sealing work number=5254 sealhash=47507e..625acd txs=0 gas=0 fees=0 elapsed="296.645µs" +INFO [08-24|10:39:24.010] Successfully sealed new block number=5254 sealhash=47507e..625acd hash=8f5373..c3ef58 elapsed=4.997s +INFO [08-24|10:39:24.011] Commit new sealing work number=5255 sealhash=d75db6..1579a2 txs=0 gas=0 fees=0 elapsed="415.596µs" +INFO [08-24|10:39:24.516] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:39:29.004] Successfully sealed new block number=5255 sealhash=d75db6..1579a2 hash=771eaf..d8e6c4 elapsed=4.993s +INFO [08-24|10:39:29.005] Commit new sealing work number=5256 sealhash=27e917..f9abcf txs=0 gas=0 fees=0 elapsed="234.886µs" +INFO [08-24|10:39:34.011] Successfully sealed new block number=5256 sealhash=27e917..f9abcf hash=0ea0b4..9a2f53 elapsed=5.006s +INFO [08-24|10:39:34.012] Commit new sealing work number=5257 sealhash=c1a4ea..14ce62 txs=0 gas=0 fees=0 elapsed="421.862µs" +INFO [08-24|10:39:34.535] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:39:39.010] Successfully sealed new block number=5257 sealhash=c1a4ea..14ce62 hash=1d8759..4ed376 elapsed=4.998s +INFO [08-24|10:39:39.011] Commit new sealing work number=5258 sealhash=b944a3..bd2213 txs=0 gas=0 fees=0 elapsed="343.434µs" +INFO [08-24|10:39:44.010] Successfully sealed new block number=5258 sealhash=b944a3..bd2213 hash=c336e9..bffa59 elapsed=4.999s +INFO [08-24|10:39:44.011] Commit new sealing work number=5259 sealhash=dc1710..32c08a txs=0 gas=0 fees=0 elapsed="315.632µs" +INFO [08-24|10:39:44.554] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:39:49.005] Successfully sealed new block number=5259 sealhash=dc1710..32c08a hash=f142e0..fe03e6 elapsed=4.993s +INFO [08-24|10:39:49.005] Commit new sealing work number=5260 sealhash=a9f0b9..0ed9cd txs=0 gas=0 fees=0 elapsed="278.856µs" +INFO [08-24|10:39:54.006] Successfully sealed new block number=5260 sealhash=a9f0b9..0ed9cd hash=61d365..8ea56c elapsed=5.001s +INFO [08-24|10:39:54.007] Commit new sealing work number=5261 sealhash=62efd6..f7dd94 txs=0 gas=0 fees=0 elapsed="566.484µs" +INFO [08-24|10:39:54.573] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:39:59.008] Successfully sealed new block number=5261 sealhash=62efd6..f7dd94 hash=f7b0f5..36e64f elapsed=5.000s +INFO [08-24|10:39:59.008] Commit new sealing work number=5262 sealhash=c9ccdb..81de77 txs=0 gas=0 fees=0 elapsed="259.941µs" +INFO [08-24|10:40:04.012] Successfully sealed new block number=5262 sealhash=c9ccdb..81de77 hash=2d5f05..effb09 elapsed=5.004s +INFO [08-24|10:40:04.013] Commit new sealing work number=5263 sealhash=ab9cb4..4b705f txs=0 gas=0 fees=0 elapsed="254.412µs" +INFO [08-24|10:40:04.596] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:40:09.010] Successfully sealed new block number=5263 sealhash=ab9cb4..4b705f hash=219e5d..55862c elapsed=4.997s +INFO [08-24|10:40:09.011] Commit new sealing work number=5264 sealhash=7324fc..341240 txs=0 gas=0 fees=0 elapsed="422.764µs" +INFO [08-24|10:40:14.005] Successfully sealed new block number=5264 sealhash=7324fc..341240 hash=5dc2ea..a9751b elapsed=4.994s +INFO [08-24|10:40:14.006] Commit new sealing work number=5265 sealhash=264ecb..7287da txs=0 gas=0 fees=0 elapsed="291.089µs" +INFO [08-24|10:40:14.617] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:40:19.008] Successfully sealed new block number=5265 sealhash=264ecb..7287da hash=406b64..315376 elapsed=5.002s +INFO [08-24|10:40:19.009] Commit new sealing work number=5266 sealhash=9d4da4..701bd0 txs=0 gas=0 fees=0 elapsed="315.447µs" +INFO [08-24|10:40:24.010] Successfully sealed new block number=5266 sealhash=9d4da4..701bd0 hash=62c174..15ae1e elapsed=5.001s +INFO [08-24|10:40:24.011] Commit new sealing work number=5267 sealhash=a28d76..24300f txs=0 gas=0 fees=0 elapsed="479.587µs" +INFO [08-24|10:40:24.639] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:40:29.010] Successfully sealed new block number=5267 sealhash=a28d76..24300f hash=08f81b..6346ca elapsed=4.999s +INFO [08-24|10:40:29.010] Commit new sealing work number=5268 sealhash=1fae2b..54d7bb txs=0 gas=0 fees=0 elapsed="210.498µs" +INFO [08-24|10:40:34.010] Successfully sealed new block number=5268 sealhash=1fae2b..54d7bb hash=68d61b..6dad4e elapsed=4.999s +INFO [08-24|10:40:34.011] Commit new sealing work number=5269 sealhash=c84a29..29dcff txs=0 gas=0 fees=0 elapsed="255.75µs" +INFO [08-24|10:40:34.660] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:40:39.009] Successfully sealed new block number=5269 sealhash=c84a29..29dcff hash=9fc3a7..d26065 elapsed=4.998s +INFO [08-24|10:40:39.009] Commit new sealing work number=5270 sealhash=fa91d2..213c9d txs=0 gas=0 fees=0 elapsed="228.214µs" +INFO [08-24|10:40:44.009] Successfully sealed new block number=5270 sealhash=fa91d2..213c9d hash=bdbae9..9ba944 elapsed=4.999s +INFO [08-24|10:40:44.009] Commit new sealing work number=5271 sealhash=bd97db..c87d45 txs=0 gas=0 fees=0 elapsed="243.444µs" +INFO [08-24|10:40:44.679] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:40:49.006] Successfully sealed new block number=5271 sealhash=bd97db..c87d45 hash=b4f430..db8185 elapsed=4.996s +INFO [08-24|10:40:49.006] Commit new sealing work number=5272 sealhash=4c7f54..92df7a txs=0 gas=0 fees=0 elapsed="345.61µs" +INFO [08-24|10:40:54.009] Successfully sealed new block number=5272 sealhash=4c7f54..92df7a hash=17a1c9..f9aa02 elapsed=5.002s +INFO [08-24|10:40:54.009] Commit new sealing work number=5273 sealhash=635d27..3d197f txs=0 gas=0 fees=0 elapsed="330.939µs" +INFO [08-24|10:40:54.700] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:40:59.009] Successfully sealed new block number=5273 sealhash=635d27..3d197f hash=c4ad79..59eac8 elapsed=4.999s +INFO [08-24|10:40:59.009] Commit new sealing work number=5274 sealhash=bd8dd7..f1599a txs=0 gas=0 fees=0 elapsed="298.049µs" +INFO [08-24|10:41:04.006] Successfully sealed new block number=5274 sealhash=bd8dd7..f1599a hash=d13495..4084cc elapsed=4.996s +INFO [08-24|10:41:04.007] Commit new sealing work number=5275 sealhash=8afa86..1f6ad9 txs=0 gas=0 fees=0 elapsed="252.882µs" +INFO [08-24|10:41:04.718] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:41:09.010] Successfully sealed new block number=5275 sealhash=8afa86..1f6ad9 hash=0deafa..9da236 elapsed=5.003s +INFO [08-24|10:41:09.010] Commit new sealing work number=5276 sealhash=d34503..9ffba3 txs=0 gas=0 fees=0 elapsed="293.879µs" +INFO [08-24|10:41:14.010] Successfully sealed new block number=5276 sealhash=d34503..9ffba3 hash=7dffcc..ba6ff0 elapsed=4.999s +INFO [08-24|10:41:14.011] Commit new sealing work number=5277 sealhash=951734..a10433 txs=0 gas=0 fees=0 elapsed="327.239µs" +INFO [08-24|10:41:14.739] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:41:19.006] Successfully sealed new block number=5277 sealhash=951734..a10433 hash=1d6dc7..a3ad98 elapsed=4.995s +INFO [08-24|10:41:19.006] Commit new sealing work number=5278 sealhash=f5dc71..ee7a06 txs=0 gas=0 fees=0 elapsed="264.806µs" +INFO [08-24|10:41:24.011] Successfully sealed new block number=5278 sealhash=f5dc71..ee7a06 hash=bd194c..2469a1 elapsed=5.004s +INFO [08-24|10:41:24.011] Commit new sealing work number=5279 sealhash=bbdc08..4e9337 txs=0 gas=0 fees=0 elapsed="364.621µs" +INFO [08-24|10:41:24.759] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:41:29.010] Successfully sealed new block number=5279 sealhash=bbdc08..4e9337 hash=541336..9a2f62 elapsed=4.998s +INFO [08-24|10:41:29.011] Commit new sealing work number=5280 sealhash=d1e5a2..0daa9c txs=0 gas=0 fees=0 elapsed="274.137µs" +INFO [08-24|10:41:34.008] Successfully sealed new block number=5280 sealhash=d1e5a2..0daa9c hash=466819..06e5f5 elapsed=4.997s +INFO [08-24|10:41:34.009] Commit new sealing work number=5281 sealhash=7a0f85..1de8ee txs=0 gas=0 fees=0 elapsed="245.872µs" +INFO [08-24|10:41:34.776] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:41:39.006] Successfully sealed new block number=5281 sealhash=7a0f85..1de8ee hash=f7c215..b72100 elapsed=4.997s +INFO [08-24|10:41:39.007] Commit new sealing work number=5282 sealhash=461739..57e224 txs=0 gas=0 fees=0 elapsed="319.56µs" +INFO [08-24|10:41:44.007] Successfully sealed new block number=5282 sealhash=461739..57e224 hash=1a5f2b..385c15 elapsed=4.999s +INFO [08-24|10:41:44.007] Commit new sealing work number=5283 sealhash=f32c53..fe475b txs=0 gas=0 fees=0 elapsed="383.426µs" +INFO [08-24|10:41:44.796] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:41:49.006] Successfully sealed new block number=5283 sealhash=f32c53..fe475b hash=db157c..e5e26e elapsed=4.999s +INFO [08-24|10:41:49.007] Commit new sealing work number=5284 sealhash=7bb191..d5df85 txs=0 gas=0 fees=0 elapsed="369.727µs" +INFO [08-24|10:41:54.008] Successfully sealed new block number=5284 sealhash=7bb191..d5df85 hash=1d3c09..bb27ac elapsed=5.001s +INFO [08-24|10:41:54.009] Commit new sealing work number=5285 sealhash=ae42b5..080ba9 txs=0 gas=0 fees=0 elapsed="264.971µs" +INFO [08-24|10:41:54.813] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:41:59.005] Successfully sealed new block number=5285 sealhash=ae42b5..080ba9 hash=c8d927..46d81c elapsed=4.996s +INFO [08-24|10:41:59.005] Commit new sealing work number=5286 sealhash=517e73..31b674 txs=0 gas=0 fees=0 elapsed="308.091µs" +INFO [08-24|10:42:04.009] Successfully sealed new block number=5286 sealhash=517e73..31b674 hash=5bfefc..6533fb elapsed=5.003s +INFO [08-24|10:42:04.010] Commit new sealing work number=5287 sealhash=8f77f7..4ca3b1 txs=0 gas=0 fees=0 elapsed="688.767µs" +INFO [08-24|10:42:04.834] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:42:09.006] Successfully sealed new block number=5287 sealhash=8f77f7..4ca3b1 hash=098ea3..fd6646 elapsed=4.996s +INFO [08-24|10:42:09.006] Commit new sealing work number=5288 sealhash=f83a54..d079ea txs=0 gas=0 fees=0 elapsed="210.109µs" +INFO [08-24|10:42:14.005] Successfully sealed new block number=5288 sealhash=f83a54..d079ea hash=d599c7..b7f438 elapsed=4.998s +INFO [08-24|10:42:14.005] Commit new sealing work number=5289 sealhash=0526a9..b5eb6c txs=0 gas=0 fees=0 elapsed="252.391µs" +INFO [08-24|10:42:14.851] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:42:19.008] Successfully sealed new block number=5289 sealhash=0526a9..b5eb6c hash=51200a..f4d4f5 elapsed=5.002s +INFO [08-24|10:42:19.009] Commit new sealing work number=5290 sealhash=21667e..6cc591 txs=0 gas=0 fees=0 elapsed="291.257µs" +INFO [08-24|10:42:24.005] Successfully sealed new block number=5290 sealhash=21667e..6cc591 hash=f3e613..359ec9 elapsed=4.996s +INFO [08-24|10:42:24.006] Commit new sealing work number=5291 sealhash=5092c9..9c4c6b txs=0 gas=0 fees=0 elapsed="333.129µs" +INFO [08-24|10:42:24.868] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:42:29.010] Successfully sealed new block number=5291 sealhash=5092c9..9c4c6b hash=b7b715..56ffed elapsed=5.004s +INFO [08-24|10:42:29.011] Commit new sealing work number=5292 sealhash=7b52dd..17c766 txs=0 gas=0 fees=0 elapsed="361.406µs" +INFO [08-24|10:42:34.006] Successfully sealed new block number=5292 sealhash=7b52dd..17c766 hash=decc9e..406e99 elapsed=4.994s +INFO [08-24|10:42:34.006] Commit new sealing work number=5293 sealhash=ebbc9c..ba7934 txs=0 gas=0 fees=0 elapsed="299.541µs" +INFO [08-24|10:42:34.889] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:42:39.012] Successfully sealed new block number=5293 sealhash=ebbc9c..ba7934 hash=24e9b7..8bb5d2 elapsed=5.005s +INFO [08-24|10:42:39.012] Commit new sealing work number=5294 sealhash=13fa67..9433f1 txs=0 gas=0 fees=0 elapsed="343.905µs" +INFO [08-24|10:42:44.010] Successfully sealed new block number=5294 sealhash=13fa67..9433f1 hash=152d22..b874fb elapsed=4.997s +INFO [08-24|10:42:44.010] Commit new sealing work number=5295 sealhash=5b2bba..73554a txs=0 gas=0 fees=0 elapsed="308.782µs" +INFO [08-24|10:42:44.910] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:42:49.007] Successfully sealed new block number=5295 sealhash=5b2bba..73554a hash=9cd3a0..8c80d2 elapsed=4.996s +INFO [08-24|10:42:49.007] Commit new sealing work number=5296 sealhash=78f644..1838e2 txs=0 gas=0 fees=0 elapsed="260.23µs" +INFO [08-24|10:42:54.010] Successfully sealed new block number=5296 sealhash=78f644..1838e2 hash=57c6f7..073d8f elapsed=5.002s +INFO [08-24|10:42:54.011] Commit new sealing work number=5297 sealhash=33ff0e..a40b4a txs=0 gas=0 fees=0 elapsed="455.011µs" +INFO [08-24|10:42:54.928] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:42:59.012] Successfully sealed new block number=5297 sealhash=33ff0e..a40b4a hash=7cae5a..ca2aff elapsed=5.000s +INFO [08-24|10:42:59.012] Commit new sealing work number=5298 sealhash=7f7c9f..1eed98 txs=0 gas=0 fees=0 elapsed="368.274µs" +INFO [08-24|10:43:04.011] Successfully sealed new block number=5298 sealhash=7f7c9f..1eed98 hash=d54e3f..19fd93 elapsed=4.998s +INFO [08-24|10:43:04.011] Commit new sealing work number=5299 sealhash=ed6468..97e8f7 txs=0 gas=0 fees=0 elapsed="361.231µs" +INFO [08-24|10:43:04.947] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:43:09.009] Successfully sealed new block number=5299 sealhash=ed6468..97e8f7 hash=25089b..61676a elapsed=4.997s +INFO [08-24|10:43:09.009] Commit new sealing work number=5300 sealhash=b18d32..f6bc47 txs=0 gas=0 fees=0 elapsed="382.54µs" +INFO [08-24|10:43:14.009] Successfully sealed new block number=5300 sealhash=b18d32..f6bc47 hash=ff9d27..523da9 elapsed=4.999s +INFO [08-24|10:43:14.009] Commit new sealing work number=5301 sealhash=bccad3..22b1cc txs=0 gas=0 fees=0 elapsed="262.894µs" +INFO [08-24|10:43:14.967] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:43:19.009] Successfully sealed new block number=5301 sealhash=bccad3..22b1cc hash=a6c076..7a95a1 elapsed=4.999s +INFO [08-24|10:43:19.009] Commit new sealing work number=5302 sealhash=5e43a1..18fcf3 txs=0 gas=0 fees=0 elapsed="358.6µs" +INFO [08-24|10:43:24.005] Successfully sealed new block number=5302 sealhash=5e43a1..18fcf3 hash=b57d72..ab2964 elapsed=4.996s +INFO [08-24|10:43:24.006] Commit new sealing work number=5303 sealhash=8277cc..f34ea2 txs=0 gas=0 fees=0 elapsed="250.202µs" +INFO [08-24|10:43:24.984] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:43:29.005] Successfully sealed new block number=5303 sealhash=8277cc..f34ea2 hash=4becfe..01a17e elapsed=4.999s +INFO [08-24|10:43:29.005] Commit new sealing work number=5304 sealhash=daac90..a83421 txs=0 gas=0 fees=0 elapsed="235.429µs" +INFO [08-24|10:43:34.009] Successfully sealed new block number=5304 sealhash=daac90..a83421 hash=0ae4de..59d4c3 elapsed=5.003s +INFO [08-24|10:43:34.009] Commit new sealing work number=5305 sealhash=8aba52..a14d1e txs=0 gas=0 fees=0 elapsed="303.072µs" +INFO [08-24|10:43:35.002] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:43:39.005] Successfully sealed new block number=5305 sealhash=8aba52..a14d1e hash=27d704..65c0ce elapsed=4.996s +INFO [08-24|10:43:39.006] Commit new sealing work number=5306 sealhash=54173e..00bd38 txs=0 gas=0 fees=0 elapsed="401.471µs" +INFO [08-24|10:43:44.005] Successfully sealed new block number=5306 sealhash=54173e..00bd38 hash=d20a6c..4b3ab4 elapsed=4.999s +INFO [08-24|10:43:44.006] Commit new sealing work number=5307 sealhash=ab8f1e..5066e7 txs=0 gas=0 fees=0 elapsed="511.098µs" +INFO [08-24|10:43:45.020] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:43:49.010] Successfully sealed new block number=5307 sealhash=ab8f1e..5066e7 hash=31cc93..c31b2b elapsed=5.004s +INFO [08-24|10:43:49.011] Commit new sealing work number=5308 sealhash=9bab4d..736e5b txs=0 gas=0 fees=0 elapsed="361.294µs" +INFO [08-24|10:43:54.011] Successfully sealed new block number=5308 sealhash=9bab4d..736e5b hash=46f302..212fd7 elapsed=5.000s +INFO [08-24|10:43:54.012] Commit new sealing work number=5309 sealhash=3a5d5f..8a5a83 txs=0 gas=0 fees=0 elapsed="461.825µs" +INFO [08-24|10:43:55.039] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:43:59.008] Successfully sealed new block number=5309 sealhash=3a5d5f..8a5a83 hash=11315d..b45089 elapsed=4.996s +INFO [08-24|10:43:59.009] Commit new sealing work number=5310 sealhash=ba103c..41d445 txs=0 gas=0 fees=0 elapsed="322.876µs" +INFO [08-24|10:44:04.005] Successfully sealed new block number=5310 sealhash=ba103c..41d445 hash=bcf351..292c9f elapsed=4.996s +INFO [08-24|10:44:04.006] Commit new sealing work number=5311 sealhash=2f02c9..486fcc txs=0 gas=0 fees=0 elapsed="385.703µs" +INFO [08-24|10:44:05.059] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:44:09.010] Successfully sealed new block number=5311 sealhash=2f02c9..486fcc hash=f2d2ae..194fee elapsed=5.003s +INFO [08-24|10:44:09.010] Commit new sealing work number=5312 sealhash=1377f7..89748b txs=0 gas=0 fees=0 elapsed="495.223µs" +INFO [08-24|10:44:14.012] Successfully sealed new block number=5312 sealhash=1377f7..89748b hash=cf8360..ed67a5 elapsed=5.002s +INFO [08-24|10:44:14.013] Commit new sealing work number=5313 sealhash=3e2a81..a64f14 txs=0 gas=0 fees=0 elapsed="420.586µs" +INFO [08-24|10:44:15.080] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:44:19.005] Successfully sealed new block number=5313 sealhash=3e2a81..a64f14 hash=f8170e..a0f2b0 elapsed=4.991s +INFO [08-24|10:44:19.005] Commit new sealing work number=5314 sealhash=c5fa1e..f31e91 txs=0 gas=0 fees=0 elapsed="295.721µs" +INFO [08-24|10:44:24.006] Successfully sealed new block number=5314 sealhash=c5fa1e..f31e91 hash=a3a80c..8184e6 elapsed=5.000s +INFO [08-24|10:44:24.006] Commit new sealing work number=5315 sealhash=79f5e3..77f503 txs=0 gas=0 fees=0 elapsed="233.202µs" +INFO [08-24|10:44:25.101] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:44:29.007] Successfully sealed new block number=5315 sealhash=79f5e3..77f503 hash=a684bc..5f3d0b elapsed=5.001s +INFO [08-24|10:44:29.007] Commit new sealing work number=5316 sealhash=67f406..ed6b03 txs=0 gas=0 fees=0 elapsed="247.309µs" +INFO [08-24|10:44:34.005] Successfully sealed new block number=5316 sealhash=67f406..ed6b03 hash=f2a0bf..e2051a elapsed=4.998s +INFO [08-24|10:44:34.006] Commit new sealing work number=5317 sealhash=5310c7..d8a19f txs=0 gas=0 fees=0 elapsed="240.256µs" +INFO [08-24|10:44:35.123] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:44:39.009] Successfully sealed new block number=5317 sealhash=5310c7..d8a19f hash=d8639f..f533c1 elapsed=5.003s +INFO [08-24|10:44:39.010] Commit new sealing work number=5318 sealhash=6d2705..07c124 txs=0 gas=0 fees=0 elapsed="517.885µs" +INFO [08-24|10:44:44.010] Successfully sealed new block number=5318 sealhash=6d2705..07c124 hash=dfceaf..8f1499 elapsed=4.999s +INFO [08-24|10:44:44.010] Commit new sealing work number=5319 sealhash=b6af44..f05a47 txs=0 gas=0 fees=0 elapsed="425.495µs" +INFO [08-24|10:44:45.147] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:44:49.009] Successfully sealed new block number=5319 sealhash=b6af44..f05a47 hash=7fed49..1f5c9f elapsed=4.998s +INFO [08-24|10:44:49.010] Commit new sealing work number=5320 sealhash=14f1db..5e39de txs=0 gas=0 fees=0 elapsed="429.452µs" +INFO [08-24|10:44:54.009] Successfully sealed new block number=5320 sealhash=14f1db..5e39de hash=daa3fd..7f7756 elapsed=4.998s +INFO [08-24|10:44:54.009] Commit new sealing work number=5321 sealhash=bad87b..4010ce txs=0 gas=0 fees=0 elapsed="476.339µs" +INFO [08-24|10:44:55.169] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:44:59.009] Successfully sealed new block number=5321 sealhash=bad87b..4010ce hash=6e859d..d8a3f0 elapsed=4.999s +INFO [08-24|10:44:59.010] Commit new sealing work number=5322 sealhash=d93d80..2cace8 txs=0 gas=0 fees=0 elapsed="267.95µs" +INFO [08-24|10:45:04.010] Successfully sealed new block number=5322 sealhash=d93d80..2cace8 hash=b759d1..7be69c elapsed=5.000s +INFO [08-24|10:45:04.011] Commit new sealing work number=5323 sealhash=10d8d7..4a8bd7 txs=0 gas=0 fees=0 elapsed="378.994µs" +INFO [08-24|10:45:05.191] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:45:09.012] Successfully sealed new block number=5323 sealhash=10d8d7..4a8bd7 hash=04428d..ebe038 elapsed=5.001s +INFO [08-24|10:45:09.013] Commit new sealing work number=5324 sealhash=acf301..47b4da txs=0 gas=0 fees=0 elapsed="564.57µs" +INFO [08-24|10:45:14.011] Successfully sealed new block number=5324 sealhash=acf301..47b4da hash=555b71..0c1ab0 elapsed=4.998s +INFO [08-24|10:45:14.012] Commit new sealing work number=5325 sealhash=94f370..3603d4 txs=0 gas=0 fees=0 elapsed="359.815µs" +INFO [08-24|10:45:15.212] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:45:19.005] Successfully sealed new block number=5325 sealhash=94f370..3603d4 hash=9b47b1..f59211 elapsed=4.993s +INFO [08-24|10:45:19.006] Commit new sealing work number=5326 sealhash=827eeb..1d8b2c txs=0 gas=0 fees=0 elapsed="237.962µs" +INFO [08-24|10:45:24.009] Successfully sealed new block number=5326 sealhash=827eeb..1d8b2c hash=a40dd7..6f6275 elapsed=5.003s +INFO [08-24|10:45:24.009] Commit new sealing work number=5327 sealhash=1dacf4..a84481 txs=0 gas=0 fees=0 elapsed="386.09µs" +INFO [08-24|10:45:25.233] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:45:29.011] Successfully sealed new block number=5327 sealhash=1dacf4..a84481 hash=0bfc99..feb9d6 elapsed=5.001s +INFO [08-24|10:45:29.011] Commit new sealing work number=5328 sealhash=511dd1..9e31bd txs=0 gas=0 fees=0 elapsed="344.614µs" +INFO [08-24|10:45:34.012] Successfully sealed new block number=5328 sealhash=511dd1..9e31bd hash=4fca40..f33713 elapsed=5.000s +INFO [08-24|10:45:34.013] Commit new sealing work number=5329 sealhash=fe65b4..9e437b txs=0 gas=0 fees=0 elapsed="359.679µs" +INFO [08-24|10:45:35.255] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:45:39.008] Successfully sealed new block number=5329 sealhash=fe65b4..9e437b hash=31d335..2bfec4 elapsed=4.995s +INFO [08-24|10:45:39.009] Commit new sealing work number=5330 sealhash=8bbb6d..502550 txs=0 gas=0 fees=0 elapsed="358.698µs" +INFO [08-24|10:45:44.006] Successfully sealed new block number=5330 sealhash=8bbb6d..502550 hash=98764b..631d8a elapsed=4.997s +INFO [08-24|10:45:44.007] Commit new sealing work number=5331 sealhash=ff27fd..693348 txs=0 gas=0 fees=0 elapsed="338.962µs" +INFO [08-24|10:45:45.276] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:45:49.005] Successfully sealed new block number=5331 sealhash=ff27fd..693348 hash=d090f3..c06b8f elapsed=4.998s +INFO [08-24|10:45:49.005] Commit new sealing work number=5332 sealhash=b1b7f4..63b7d2 txs=0 gas=0 fees=0 elapsed="236.402µs" +INFO [08-24|10:45:54.010] Successfully sealed new block number=5332 sealhash=b1b7f4..63b7d2 hash=edbc1a..3913bd elapsed=5.004s +INFO [08-24|10:45:54.010] Commit new sealing work number=5333 sealhash=787012..7f894b txs=0 gas=0 fees=0 elapsed="266.218µs" +INFO [08-24|10:45:55.297] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:45:59.007] Successfully sealed new block number=5333 sealhash=787012..7f894b hash=b725fd..74d251 elapsed=4.996s +INFO [08-24|10:45:59.007] Commit new sealing work number=5334 sealhash=72df9f..e27346 txs=0 gas=0 fees=0 elapsed="228.482µs" +INFO [08-24|10:46:04.012] Successfully sealed new block number=5334 sealhash=72df9f..e27346 hash=610048..814ab5 elapsed=5.004s +INFO [08-24|10:46:04.012] Commit new sealing work number=5335 sealhash=89eb84..6e4904 txs=0 gas=0 fees=0 elapsed="300.839µs" +INFO [08-24|10:46:05.316] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:46:09.008] Successfully sealed new block number=5335 sealhash=89eb84..6e4904 hash=353716..3a8d87 elapsed=4.995s +INFO [08-24|10:46:09.008] Commit new sealing work number=5336 sealhash=2967f8..3e1c3a txs=0 gas=0 fees=0 elapsed="412.624µs" +INFO [08-24|10:46:14.006] Successfully sealed new block number=5336 sealhash=2967f8..3e1c3a hash=b17e27..6848cf elapsed=4.997s +INFO [08-24|10:46:14.006] Commit new sealing work number=5337 sealhash=316209..bc3631 txs=0 gas=0 fees=0 elapsed="327.981µs" +INFO [08-24|10:46:15.335] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:46:19.010] Successfully sealed new block number=5337 sealhash=316209..bc3631 hash=e809c1..0746b1 elapsed=5.003s +INFO [08-24|10:46:19.011] Commit new sealing work number=5338 sealhash=841f7e..3ae2ab txs=0 gas=0 fees=0 elapsed="301.634µs" +INFO [08-24|10:46:24.008] Successfully sealed new block number=5338 sealhash=841f7e..3ae2ab hash=ad7707..f4e706 elapsed=4.997s +INFO [08-24|10:46:24.009] Commit new sealing work number=5339 sealhash=d8fc52..cb680f txs=0 gas=0 fees=0 elapsed="347.175µs" +INFO [08-24|10:46:25.355] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:46:29.008] Successfully sealed new block number=5339 sealhash=d8fc52..cb680f hash=8dc7af..7a5f82 elapsed=4.999s +INFO [08-24|10:46:29.009] Commit new sealing work number=5340 sealhash=2fedfa..41739f txs=0 gas=0 fees=0 elapsed="256.071µs" +INFO [08-24|10:46:34.011] Successfully sealed new block number=5340 sealhash=2fedfa..41739f hash=a38e41..f1db67 elapsed=5.002s +INFO [08-24|10:46:34.012] Commit new sealing work number=5341 sealhash=b54e9a..eb02f8 txs=0 gas=0 fees=0 elapsed="279.412µs" +INFO [08-24|10:46:35.376] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:46:39.006] Successfully sealed new block number=5341 sealhash=b54e9a..eb02f8 hash=3192ae..c1c4d1 elapsed=4.993s +INFO [08-24|10:46:39.006] Commit new sealing work number=5342 sealhash=3cfd6a..f9ac16 txs=0 gas=0 fees=0 elapsed="325.418µs" +INFO [08-24|10:46:44.005] Successfully sealed new block number=5342 sealhash=3cfd6a..f9ac16 hash=db647a..24e5a8 elapsed=4.998s +INFO [08-24|10:46:44.005] Commit new sealing work number=5343 sealhash=363f99..9295c1 txs=0 gas=0 fees=0 elapsed="278.235µs" +INFO [08-24|10:46:45.399] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:46:49.008] Successfully sealed new block number=5343 sealhash=363f99..9295c1 hash=6b7eb6..2873ce elapsed=5.003s +INFO [08-24|10:46:49.009] Commit new sealing work number=5344 sealhash=df65d8..7aca1a txs=0 gas=0 fees=0 elapsed="485.486µs" +INFO [08-24|10:46:54.010] Successfully sealed new block number=5344 sealhash=df65d8..7aca1a hash=38c9b0..863722 elapsed=5.000s +INFO [08-24|10:46:54.011] Commit new sealing work number=5345 sealhash=8ed127..dd3c8a txs=0 gas=0 fees=0 elapsed=1.101ms +INFO [08-24|10:46:55.422] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:46:59.006] Successfully sealed new block number=5345 sealhash=8ed127..dd3c8a hash=c3f87f..d5e30d elapsed=4.995s +INFO [08-24|10:46:59.006] Commit new sealing work number=5346 sealhash=67e095..661d8f txs=0 gas=0 fees=0 elapsed="272.759µs" +INFO [08-24|10:47:04.010] Successfully sealed new block number=5346 sealhash=67e095..661d8f hash=74b0f6..4aa581 elapsed=5.003s +INFO [08-24|10:47:04.010] Commit new sealing work number=5347 sealhash=a2c29d..6e75da txs=0 gas=0 fees=0 elapsed="268.543µs" +INFO [08-24|10:47:05.445] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:47:09.013] Successfully sealed new block number=5347 sealhash=a2c29d..6e75da hash=d4c2a6..36a1bf elapsed=5.002s +INFO [08-24|10:47:09.013] Commit new sealing work number=5348 sealhash=baab93..f2fbfa txs=0 gas=0 fees=0 elapsed="462.401µs" +INFO [08-24|10:47:14.005] Successfully sealed new block number=5348 sealhash=baab93..f2fbfa hash=19b297..4e7cd7 elapsed=4.992s +INFO [08-24|10:47:14.006] Commit new sealing work number=5349 sealhash=fa6b2b..e763f7 txs=0 gas=0 fees=0 elapsed="271.228µs" +INFO [08-24|10:47:15.466] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:47:19.011] Successfully sealed new block number=5349 sealhash=fa6b2b..e763f7 hash=72b1ea..6fc997 elapsed=5.005s +INFO [08-24|10:47:19.012] Commit new sealing work number=5350 sealhash=9bc560..6c1e58 txs=0 gas=0 fees=0 elapsed="313.801µs" +INFO [08-24|10:47:24.010] Successfully sealed new block number=5350 sealhash=9bc560..6c1e58 hash=8e97cb..1d87c2 elapsed=4.997s +INFO [08-24|10:47:24.010] Commit new sealing work number=5351 sealhash=288038..39d827 txs=0 gas=0 fees=0 elapsed="377.773µs" +INFO [08-24|10:47:25.486] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:47:29.011] Successfully sealed new block number=5351 sealhash=288038..39d827 hash=5210ef..3601da elapsed=5.000s +INFO [08-24|10:47:29.011] Commit new sealing work number=5352 sealhash=21c46d..580a9b txs=0 gas=0 fees=0 elapsed="299.667µs" +INFO [08-24|10:47:34.011] Successfully sealed new block number=5352 sealhash=21c46d..580a9b hash=4c0d5a..d8829c elapsed=4.999s +INFO [08-24|10:47:34.011] Commit new sealing work number=5353 sealhash=f8d2d9..6f2845 txs=0 gas=0 fees=0 elapsed="333.434µs" +INFO [08-24|10:47:35.508] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:47:39.005] Successfully sealed new block number=5353 sealhash=f8d2d9..6f2845 hash=f34af3..ff8a9a elapsed=4.994s +INFO [08-24|10:47:39.006] Commit new sealing work number=5354 sealhash=8525ce..f58f42 txs=0 gas=0 fees=0 elapsed="390.5µs" +INFO [08-24|10:47:44.010] Successfully sealed new block number=5354 sealhash=8525ce..f58f42 hash=ad4044..2b44a0 elapsed=5.004s +INFO [08-24|10:47:44.011] Commit new sealing work number=5355 sealhash=4f1dd5..8a145f txs=0 gas=0 fees=0 elapsed="328.105µs" +INFO [08-24|10:47:45.530] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:47:49.008] Successfully sealed new block number=5355 sealhash=4f1dd5..8a145f hash=f741e9..e3f404 elapsed=4.997s +INFO [08-24|10:47:49.009] Commit new sealing work number=5356 sealhash=411c38..493292 txs=0 gas=0 fees=0 elapsed="318.959µs" +INFO [08-24|10:47:54.010] Successfully sealed new block number=5356 sealhash=411c38..493292 hash=1a2bbe..26f6ff elapsed=5.001s +INFO [08-24|10:47:54.011] Commit new sealing work number=5357 sealhash=0c34ee..c6f830 txs=0 gas=0 fees=0 elapsed="470.666µs" +INFO [08-24|10:47:55.552] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:47:59.011] Successfully sealed new block number=5357 sealhash=0c34ee..c6f830 hash=4a513c..e9df0b elapsed=4.999s +INFO [08-24|10:47:59.011] Commit new sealing work number=5358 sealhash=f62146..2e41c6 txs=0 gas=0 fees=0 elapsed="522.352µs" +INFO [08-24|10:48:04.010] Successfully sealed new block number=5358 sealhash=f62146..2e41c6 hash=675458..23c378 elapsed=4.998s +INFO [08-24|10:48:04.011] Commit new sealing work number=5359 sealhash=c67baa..0a5011 txs=0 gas=0 fees=0 elapsed="415.998µs" +INFO [08-24|10:48:05.576] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:48:09.009] Successfully sealed new block number=5359 sealhash=c67baa..0a5011 hash=c4b32d..594788 elapsed=4.998s +INFO [08-24|10:48:09.009] Commit new sealing work number=5360 sealhash=50eccd..4f0e92 txs=0 gas=0 fees=0 elapsed="228.776µs" +INFO [08-24|10:48:14.008] Successfully sealed new block number=5360 sealhash=50eccd..4f0e92 hash=4b23c3..610dea elapsed=4.999s +INFO [08-24|10:48:14.009] Commit new sealing work number=5361 sealhash=72e09a..bb229b txs=0 gas=0 fees=0 elapsed="456.1µs" +INFO [08-24|10:48:15.596] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:48:19.010] Successfully sealed new block number=5361 sealhash=72e09a..bb229b hash=83984c..5d841c elapsed=5.000s +INFO [08-24|10:48:19.010] Commit new sealing work number=5362 sealhash=430421..f47fda txs=0 gas=0 fees=0 elapsed="222.066µs" +INFO [08-24|10:48:24.008] Successfully sealed new block number=5362 sealhash=430421..f47fda hash=258330..7ac473 elapsed=4.998s +INFO [08-24|10:48:24.009] Commit new sealing work number=5363 sealhash=43e0e3..da374a txs=0 gas=0 fees=0 elapsed="403.123µs" +INFO [08-24|10:48:25.616] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:48:29.013] Successfully sealed new block number=5363 sealhash=43e0e3..da374a hash=8e49c1..3dc524 elapsed=5.003s +INFO [08-24|10:48:29.013] Commit new sealing work number=5364 sealhash=d9d318..99363b txs=0 gas=0 fees=0 elapsed="333.548µs" +INFO [08-24|10:48:34.005] Successfully sealed new block number=5364 sealhash=d9d318..99363b hash=b8496d..384ff1 elapsed=4.991s +INFO [08-24|10:48:34.005] Commit new sealing work number=5365 sealhash=c3ceab..79bcf0 txs=0 gas=0 fees=0 elapsed="286.303µs" +INFO [08-24|10:48:35.638] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:48:39.005] Successfully sealed new block number=5365 sealhash=c3ceab..79bcf0 hash=67b359..977ab8 elapsed=4.999s +INFO [08-24|10:48:39.006] Commit new sealing work number=5366 sealhash=cd6884..3ec072 txs=0 gas=0 fees=0 elapsed="443.22µs" +INFO [08-24|10:48:44.005] Successfully sealed new block number=5366 sealhash=cd6884..3ec072 hash=7ef566..b1fb91 elapsed=4.999s +INFO [08-24|10:48:44.006] Commit new sealing work number=5367 sealhash=c5c976..445b7a txs=0 gas=0 fees=0 elapsed="466.397µs" +INFO [08-24|10:48:45.656] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:48:49.011] Successfully sealed new block number=5367 sealhash=c5c976..445b7a hash=a8ecc1..f92a9f elapsed=5.004s +INFO [08-24|10:48:49.011] Commit new sealing work number=5368 sealhash=2b11df..263259 txs=0 gas=0 fees=0 elapsed="411.836µs" +INFO [08-24|10:48:54.010] Successfully sealed new block number=5368 sealhash=2b11df..263259 hash=8dc781..a064c7 elapsed=4.998s +INFO [08-24|10:48:54.010] Commit new sealing work number=5369 sealhash=40f566..878397 txs=0 gas=0 fees=0 elapsed="279.681µs" +INFO [08-24|10:48:55.678] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:48:59.011] Successfully sealed new block number=5369 sealhash=40f566..878397 hash=8835c0..1f5c2e elapsed=5.001s +INFO [08-24|10:48:59.012] Commit new sealing work number=5370 sealhash=1c12dc..2d3851 txs=0 gas=0 fees=0 elapsed="350.56µs" +INFO [08-24|10:49:04.011] Successfully sealed new block number=5370 sealhash=1c12dc..2d3851 hash=8e4d73..cafcda elapsed=4.999s +INFO [08-24|10:49:04.012] Commit new sealing work number=5371 sealhash=615270..91ade1 txs=0 gas=0 fees=0 elapsed="313.151µs" +INFO [08-24|10:49:05.699] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:49:09.011] Successfully sealed new block number=5371 sealhash=615270..91ade1 hash=5e3a67..a759f2 elapsed=4.998s +INFO [08-24|10:49:09.011] Commit new sealing work number=5372 sealhash=a4516f..614e3e txs=0 gas=0 fees=0 elapsed="259.004µs" +INFO [08-24|10:49:14.006] Successfully sealed new block number=5372 sealhash=a4516f..614e3e hash=cb5080..7e2e50 elapsed=4.995s +INFO [08-24|10:49:14.007] Commit new sealing work number=5373 sealhash=0accb3..efa25b txs=0 gas=0 fees=0 elapsed="303.668µs" +INFO [08-24|10:49:15.720] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:49:19.007] Successfully sealed new block number=5373 sealhash=0accb3..efa25b hash=42a3ff..1aa48d elapsed=5.000s +INFO [08-24|10:49:19.007] Commit new sealing work number=5374 sealhash=1cb169..7ff782 txs=0 gas=0 fees=0 elapsed="268.013µs" +INFO [08-24|10:49:24.009] Successfully sealed new block number=5374 sealhash=1cb169..7ff782 hash=9386c2..2968c8 elapsed=5.001s +INFO [08-24|10:49:24.009] Commit new sealing work number=5375 sealhash=505376..84a43f txs=0 gas=0 fees=0 elapsed="403.488µs" +INFO [08-24|10:49:25.741] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:49:29.010] Successfully sealed new block number=5375 sealhash=505376..84a43f hash=985767..58b2bf elapsed=5.001s +INFO [08-24|10:49:29.011] Commit new sealing work number=5376 sealhash=d55670..11623a txs=0 gas=0 fees=0 elapsed="391.863µs" +INFO [08-24|10:49:34.005] Successfully sealed new block number=5376 sealhash=d55670..11623a hash=25662c..7b0a64 elapsed=4.994s +INFO [08-24|10:49:34.006] Commit new sealing work number=5377 sealhash=24aa0c..9937d9 txs=0 gas=0 fees=0 elapsed="225.329µs" +INFO [08-24|10:49:35.765] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:49:39.009] Successfully sealed new block number=5377 sealhash=24aa0c..9937d9 hash=bc9be3..2e98b3 elapsed=5.002s +INFO [08-24|10:49:39.009] Commit new sealing work number=5378 sealhash=147b2e..57bbf5 txs=0 gas=0 fees=0 elapsed="285.552µs" +INFO [08-24|10:49:44.005] Successfully sealed new block number=5378 sealhash=147b2e..57bbf5 hash=2c5d20..9dc422 elapsed=4.996s +INFO [08-24|10:49:44.006] Commit new sealing work number=5379 sealhash=5e0e48..850863 txs=0 gas=0 fees=0 elapsed="328.658µs" +INFO [08-24|10:49:45.787] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:49:49.006] Successfully sealed new block number=5379 sealhash=5e0e48..850863 hash=5d7bf5..714443 elapsed=5.000s +INFO [08-24|10:49:49.006] Commit new sealing work number=5380 sealhash=ba9d5f..08e93d txs=0 gas=0 fees=0 elapsed="281.129µs" +INFO [08-24|10:49:54.005] Successfully sealed new block number=5380 sealhash=ba9d5f..08e93d hash=d02c92..130b36 elapsed=4.998s +INFO [08-24|10:49:54.006] Commit new sealing work number=5381 sealhash=d5e6ea..17fbf1 txs=0 gas=0 fees=0 elapsed="469.993µs" +INFO [08-24|10:49:55.804] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:49:59.006] Successfully sealed new block number=5381 sealhash=d5e6ea..17fbf1 hash=bf0c68..9fde68 elapsed=5.000s +INFO [08-24|10:49:59.006] Commit new sealing work number=5382 sealhash=58ac08..3bf83e txs=0 gas=0 fees=0 elapsed="288.578µs" +INFO [08-24|10:50:04.006] Successfully sealed new block number=5382 sealhash=58ac08..3bf83e hash=e9aade..c32dae elapsed=4.999s +INFO [08-24|10:50:04.007] Commit new sealing work number=5383 sealhash=8cc00c..1d8fd4 txs=0 gas=0 fees=0 elapsed="343.751µs" +INFO [08-24|10:50:05.825] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:50:09.008] Successfully sealed new block number=5383 sealhash=8cc00c..1d8fd4 hash=a4fe5a..623777 elapsed=5.001s +INFO [08-24|10:50:09.009] Commit new sealing work number=5384 sealhash=100899..05478f txs=0 gas=0 fees=0 elapsed="370.21µs" +INFO [08-24|10:50:14.006] Successfully sealed new block number=5384 sealhash=100899..05478f hash=96517e..27ba47 elapsed=4.997s +INFO [08-24|10:50:14.006] Commit new sealing work number=5385 sealhash=f1a2ec..203181 txs=0 gas=0 fees=0 elapsed="267.521µs" +INFO [08-24|10:50:15.846] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:50:19.009] Successfully sealed new block number=5385 sealhash=f1a2ec..203181 hash=65e423..dd02c2 elapsed=5.002s +INFO [08-24|10:50:19.009] Commit new sealing work number=5386 sealhash=452281..0ae499 txs=0 gas=0 fees=0 elapsed="293.94µs" +INFO [08-24|10:50:24.005] Successfully sealed new block number=5386 sealhash=452281..0ae499 hash=9bd536..a09b9e elapsed=4.995s +INFO [08-24|10:50:24.005] Commit new sealing work number=5387 sealhash=3dd67c..06779d txs=0 gas=0 fees=0 elapsed="296.152µs" +INFO [08-24|10:50:25.863] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:50:29.010] Successfully sealed new block number=5387 sealhash=3dd67c..06779d hash=d1fdbf..1119b3 elapsed=5.004s +INFO [08-24|10:50:29.010] Commit new sealing work number=5388 sealhash=994d5a..ad01ca txs=0 gas=0 fees=0 elapsed="256.389µs" +INFO [08-24|10:50:34.010] Successfully sealed new block number=5388 sealhash=994d5a..ad01ca hash=d3072a..30d99f elapsed=4.999s +INFO [08-24|10:50:34.010] Commit new sealing work number=5389 sealhash=cc25ed..b7d550 txs=0 gas=0 fees=0 elapsed="328.234µs" +INFO [08-24|10:50:35.883] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:50:39.009] Successfully sealed new block number=5389 sealhash=cc25ed..b7d550 hash=aaa949..d138af elapsed=4.998s +INFO [08-24|10:50:39.009] Commit new sealing work number=5390 sealhash=f751df..41d76d txs=0 gas=0 fees=0 elapsed="414.61µs" +INFO [08-24|10:50:44.008] Successfully sealed new block number=5390 sealhash=f751df..41d76d hash=8e471e..eb6cea elapsed=4.998s +INFO [08-24|10:50:44.008] Commit new sealing work number=5391 sealhash=76ff90..e357c1 txs=0 gas=0 fees=0 elapsed="260.059µs" +INFO [08-24|10:50:45.906] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:50:49.009] Successfully sealed new block number=5391 sealhash=76ff90..e357c1 hash=2bae45..7aa423 elapsed=5.000s +INFO [08-24|10:50:49.009] Commit new sealing work number=5392 sealhash=8af420..a7a761 txs=0 gas=0 fees=0 elapsed="384.383µs" +INFO [08-24|10:50:54.008] Successfully sealed new block number=5392 sealhash=8af420..a7a761 hash=7bf5da..bb9a99 elapsed=4.999s +INFO [08-24|10:50:54.009] Commit new sealing work number=5393 sealhash=151b8f..c3bb6d txs=0 gas=0 fees=0 elapsed="367.32µs" +INFO [08-24|10:50:55.925] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:50:59.009] Successfully sealed new block number=5393 sealhash=151b8f..c3bb6d hash=43bb41..7936dc elapsed=4.999s +INFO [08-24|10:50:59.009] Commit new sealing work number=5394 sealhash=06d2fc..b88dbc txs=0 gas=0 fees=0 elapsed="418.44µs" +INFO [08-24|10:51:04.009] Successfully sealed new block number=5394 sealhash=06d2fc..b88dbc hash=38aebb..53dbb4 elapsed=5.000s +INFO [08-24|10:51:04.010] Commit new sealing work number=5395 sealhash=8e4ffa..927602 txs=0 gas=0 fees=0 elapsed="360.58µs" +INFO [08-24|10:51:05.947] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:51:09.011] Successfully sealed new block number=5395 sealhash=8e4ffa..927602 hash=42e469..4ac447 elapsed=5.001s +INFO [08-24|10:51:09.012] Commit new sealing work number=5396 sealhash=683b34..6b7dce txs=0 gas=0 fees=0 elapsed="449.422µs" +INFO [08-24|10:51:14.005] Successfully sealed new block number=5396 sealhash=683b34..6b7dce hash=8efe1b..6590f3 elapsed=4.993s +INFO [08-24|10:51:14.005] Commit new sealing work number=5397 sealhash=25289c..6353e7 txs=0 gas=0 fees=0 elapsed="206.974µs" +INFO [08-24|10:51:15.969] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:51:19.008] Successfully sealed new block number=5397 sealhash=25289c..6353e7 hash=312271..0516d1 elapsed=5.003s +INFO [08-24|10:51:19.009] Commit new sealing work number=5398 sealhash=3f13de..974961 txs=0 gas=0 fees=0 elapsed="438.975µs" +INFO [08-24|10:51:24.006] Successfully sealed new block number=5398 sealhash=3f13de..974961 hash=dcbeb9..e153b8 elapsed=4.997s +INFO [08-24|10:51:24.006] Commit new sealing work number=5399 sealhash=ac875f..6e71b7 txs=0 gas=0 fees=0 elapsed="250.762µs" +INFO [08-24|10:51:25.991] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:51:29.010] Successfully sealed new block number=5399 sealhash=ac875f..6e71b7 hash=54e0fa..1abbca elapsed=5.003s +INFO [08-24|10:51:29.011] Commit new sealing work number=5400 sealhash=e7579b..dd042e txs=0 gas=0 fees=0 elapsed="418.164µs" +INFO [08-24|10:51:34.009] Successfully sealed new block number=5400 sealhash=e7579b..dd042e hash=cc0529..5a0f5b elapsed=4.998s +INFO [08-24|10:51:34.010] Commit new sealing work number=5401 sealhash=b5ef79..2f0aa9 txs=0 gas=0 fees=0 elapsed="328.089µs" +INFO [08-24|10:51:36.013] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:51:39.010] Successfully sealed new block number=5401 sealhash=b5ef79..2f0aa9 hash=105241..8f3a4d elapsed=4.999s +INFO [08-24|10:51:39.010] Commit new sealing work number=5402 sealhash=3a2571..5311cc txs=0 gas=0 fees=0 elapsed="459.515µs" +INFO [08-24|10:51:44.007] Successfully sealed new block number=5402 sealhash=3a2571..5311cc hash=182439..7b9458 elapsed=4.997s +INFO [08-24|10:51:44.008] Commit new sealing work number=5403 sealhash=4f775e..562df0 txs=0 gas=0 fees=0 elapsed="256.831µs" +INFO [08-24|10:51:46.031] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:51:49.009] Successfully sealed new block number=5403 sealhash=4f775e..562df0 hash=1fd9dd..18bb5a elapsed=5.001s +INFO [08-24|10:51:49.010] Commit new sealing work number=5404 sealhash=9a433c..91c494 txs=0 gas=0 fees=0 elapsed="880.595µs" +INFO [08-24|10:51:54.005] Successfully sealed new block number=5404 sealhash=9a433c..91c494 hash=1415a3..312184 elapsed=4.994s +INFO [08-24|10:51:54.005] Commit new sealing work number=5405 sealhash=d845ee..068c35 txs=0 gas=0 fees=0 elapsed="279.65µs" +INFO [08-24|10:51:56.055] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:51:59.004] Successfully sealed new block number=5405 sealhash=d845ee..068c35 hash=4caeda..9e3e39 elapsed=4.999s +INFO [08-24|10:51:59.005] Commit new sealing work number=5406 sealhash=a78646..9ce94e txs=0 gas=0 fees=0 elapsed="283.042µs" +INFO [08-24|10:52:04.004] Successfully sealed new block number=5406 sealhash=a78646..9ce94e hash=b6cc89..d47446 elapsed=4.999s +INFO [08-24|10:52:04.005] Commit new sealing work number=5407 sealhash=2acb50..c9fa72 txs=0 gas=0 fees=0 elapsed="418.757µs" +INFO [08-24|10:52:06.073] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:52:09.008] Successfully sealed new block number=5407 sealhash=2acb50..c9fa72 hash=f4cfa0..086e1f elapsed=5.003s +INFO [08-24|10:52:09.009] Commit new sealing work number=5408 sealhash=ec3197..0dd7d8 txs=0 gas=0 fees=0 elapsed="463.118µs" +INFO [08-24|10:52:14.008] Successfully sealed new block number=5408 sealhash=ec3197..0dd7d8 hash=49701f..acaffb elapsed=4.999s +INFO [08-24|10:52:14.009] Commit new sealing work number=5409 sealhash=571400..0e1dd4 txs=0 gas=0 fees=0 elapsed="323.847µs" +INFO [08-24|10:52:16.094] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:52:19.009] Successfully sealed new block number=5409 sealhash=571400..0e1dd4 hash=e6b4ce..75a2d2 elapsed=5.000s +INFO [08-24|10:52:19.009] Commit new sealing work number=5410 sealhash=8282cf..4b02c5 txs=0 gas=0 fees=0 elapsed="342.418µs" +INFO [08-24|10:52:24.010] Successfully sealed new block number=5410 sealhash=8282cf..4b02c5 hash=f2720c..f9f261 elapsed=5.000s +INFO [08-24|10:52:24.011] Commit new sealing work number=5411 sealhash=927bfa..ca4c4d txs=0 gas=0 fees=0 elapsed="488.838µs" +INFO [08-24|10:52:26.116] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:52:29.010] Successfully sealed new block number=5411 sealhash=927bfa..ca4c4d hash=18f87e..e3d0b4 elapsed=4.999s +INFO [08-24|10:52:29.011] Commit new sealing work number=5412 sealhash=247ef9..7e1d4c txs=0 gas=0 fees=0 elapsed="366.244µs" +INFO [08-24|10:52:34.010] Successfully sealed new block number=5412 sealhash=247ef9..7e1d4c hash=5f099d..dcd263 elapsed=4.999s +INFO [08-24|10:52:34.011] Commit new sealing work number=5413 sealhash=c337a2..20c3e6 txs=0 gas=0 fees=0 elapsed="405.367µs" +INFO [08-24|10:52:36.138] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:52:39.013] Successfully sealed new block number=5413 sealhash=c337a2..20c3e6 hash=53c6b9..4781eb elapsed=5.002s +INFO [08-24|10:52:39.013] Commit new sealing work number=5414 sealhash=de7059..e3dc22 txs=0 gas=0 fees=0 elapsed="457.177µs" +INFO [08-24|10:52:44.009] Successfully sealed new block number=5414 sealhash=de7059..e3dc22 hash=f45d5e..df7aa8 elapsed=4.995s +INFO [08-24|10:52:44.010] Commit new sealing work number=5415 sealhash=0dfca2..07a615 txs=0 gas=0 fees=0 elapsed="371.251µs" +INFO [08-24|10:52:46.158] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:52:49.007] Successfully sealed new block number=5415 sealhash=0dfca2..07a615 hash=e60863..226277 elapsed=4.997s +INFO [08-24|10:52:49.008] Commit new sealing work number=5416 sealhash=116b4c..e99657 txs=0 gas=0 fees=0 elapsed="373.964µs" +INFO [08-24|10:52:54.005] Successfully sealed new block number=5416 sealhash=116b4c..e99657 hash=199555..7c25cc elapsed=4.997s +INFO [08-24|10:52:54.005] Commit new sealing work number=5417 sealhash=2f9abe..3cc345 txs=0 gas=0 fees=0 elapsed="335.219µs" +INFO [08-24|10:52:56.177] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:52:59.004] Successfully sealed new block number=5417 sealhash=2f9abe..3cc345 hash=8eaedf..59c5cc elapsed=4.999s +INFO [08-24|10:52:59.005] Commit new sealing work number=5418 sealhash=38461e..b744ac txs=0 gas=0 fees=0 elapsed="527.859µs" +INFO [08-24|10:53:04.013] Successfully sealed new block number=5418 sealhash=38461e..b744ac hash=667b98..b81c10 elapsed=5.007s +INFO [08-24|10:53:04.013] Commit new sealing work number=5419 sealhash=61ca75..2b8a30 txs=0 gas=0 fees=0 elapsed="558.819µs" +INFO [08-24|10:53:06.200] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:53:09.010] Successfully sealed new block number=5419 sealhash=61ca75..2b8a30 hash=da8c86..fa9651 elapsed=4.997s +INFO [08-24|10:53:09.011] Commit new sealing work number=5420 sealhash=292db4..1ab3be txs=0 gas=0 fees=0 elapsed="347.699µs" +INFO [08-24|10:53:14.005] Successfully sealed new block number=5420 sealhash=292db4..1ab3be hash=e60371..a287b8 elapsed=4.994s +INFO [08-24|10:53:14.006] Commit new sealing work number=5421 sealhash=07d903..d0b654 txs=0 gas=0 fees=0 elapsed="231.773µs" +INFO [08-24|10:53:16.222] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:53:19.006] Successfully sealed new block number=5421 sealhash=07d903..d0b654 hash=283d36..fc1669 elapsed=5.000s +INFO [08-24|10:53:19.007] Commit new sealing work number=5422 sealhash=18ae91..c4fc56 txs=0 gas=0 fees=0 elapsed="372.346µs" +INFO [08-24|10:53:24.010] Successfully sealed new block number=5422 sealhash=18ae91..c4fc56 hash=d419e2..d61d6b elapsed=5.003s +INFO [08-24|10:53:24.011] Commit new sealing work number=5423 sealhash=11d0be..a6d6f0 txs=0 gas=0 fees=0 elapsed="407.96µs" +INFO [08-24|10:53:26.242] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:53:29.012] Successfully sealed new block number=5423 sealhash=11d0be..a6d6f0 hash=9098eb..3963e3 elapsed=5.000s +INFO [08-24|10:53:29.012] Commit new sealing work number=5424 sealhash=627c08..a88e0e txs=0 gas=0 fees=0 elapsed="380.505µs" +INFO [08-24|10:53:34.011] Successfully sealed new block number=5424 sealhash=627c08..a88e0e hash=44c0b4..7fecd9 elapsed=4.998s +INFO [08-24|10:53:34.011] Commit new sealing work number=5425 sealhash=adcc35..77a704 txs=0 gas=0 fees=0 elapsed="460.794µs" +INFO [08-24|10:53:36.264] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:53:39.010] Successfully sealed new block number=5425 sealhash=adcc35..77a704 hash=50c1a9..83f6ba elapsed=4.999s +INFO [08-24|10:53:39.011] Commit new sealing work number=5426 sealhash=921095..f846b7 txs=0 gas=0 fees=0 elapsed="440.699µs" +INFO [08-24|10:53:44.010] Successfully sealed new block number=5426 sealhash=921095..f846b7 hash=5e60a8..2294b0 elapsed=4.999s +INFO [08-24|10:53:44.011] Commit new sealing work number=5427 sealhash=24442b..d8bc2f txs=0 gas=0 fees=0 elapsed="597.713µs" +INFO [08-24|10:53:46.283] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:53:49.005] Successfully sealed new block number=5427 sealhash=24442b..d8bc2f hash=75e1e4..4289a0 elapsed=4.993s +INFO [08-24|10:53:49.005] Commit new sealing work number=5428 sealhash=fa86a2..e5b522 txs=0 gas=0 fees=0 elapsed="311.911µs" +INFO [08-24|10:53:54.006] Successfully sealed new block number=5428 sealhash=fa86a2..e5b522 hash=00465e..63232b elapsed=5.000s +INFO [08-24|10:53:54.006] Commit new sealing work number=5429 sealhash=45e09f..fd0c7d txs=0 gas=0 fees=0 elapsed="313.021µs" +INFO [08-24|10:53:56.306] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:53:59.012] Successfully sealed new block number=5429 sealhash=45e09f..fd0c7d hash=03045c..e7ec31 elapsed=5.005s +INFO [08-24|10:53:59.012] Commit new sealing work number=5430 sealhash=8f08de..f755a6 txs=0 gas=0 fees=0 elapsed="264.509µs" +INFO [08-24|10:54:04.011] Successfully sealed new block number=5430 sealhash=8f08de..f755a6 hash=f5188e..dee785 elapsed=4.998s +INFO [08-24|10:54:04.012] Commit new sealing work number=5431 sealhash=3bfb8e..881722 txs=0 gas=0 fees=0 elapsed="341.355µs" +INFO [08-24|10:54:06.328] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:54:09.010] Successfully sealed new block number=5431 sealhash=3bfb8e..881722 hash=cb013f..dff180 elapsed=4.998s +INFO [08-24|10:54:09.010] Commit new sealing work number=5432 sealhash=222b36..4981fd txs=0 gas=0 fees=0 elapsed="400.435µs" +INFO [08-24|10:54:14.005] Successfully sealed new block number=5432 sealhash=222b36..4981fd hash=d5f3ca..af7e8c elapsed=4.995s +INFO [08-24|10:54:14.006] Commit new sealing work number=5433 sealhash=1b053b..572ba4 txs=0 gas=0 fees=0 elapsed="333.7µs" +INFO [08-24|10:54:16.350] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:54:19.009] Successfully sealed new block number=5433 sealhash=1b053b..572ba4 hash=a47793..3ba0f0 elapsed=5.003s +INFO [08-24|10:54:19.009] Commit new sealing work number=5434 sealhash=d6ff6f..049c94 txs=0 gas=0 fees=0 elapsed="289.665µs" +INFO [08-24|10:54:24.008] Successfully sealed new block number=5434 sealhash=d6ff6f..049c94 hash=ca0a16..1a08f8 elapsed=4.999s +INFO [08-24|10:54:24.009] Commit new sealing work number=5435 sealhash=3cb718..03a8eb txs=0 gas=0 fees=0 elapsed="272.873µs" +INFO [08-24|10:54:26.372] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:54:29.005] Successfully sealed new block number=5435 sealhash=3cb718..03a8eb hash=109963..1f1988 elapsed=4.996s +INFO [08-24|10:54:29.006] Commit new sealing work number=5436 sealhash=89f323..2b7421 txs=0 gas=0 fees=0 elapsed="231.942µs" +INFO [08-24|10:54:34.010] Successfully sealed new block number=5436 sealhash=89f323..2b7421 hash=dc50ea..b7ae82 elapsed=5.004s +INFO [08-24|10:54:34.010] Commit new sealing work number=5437 sealhash=c8311c..59115e txs=0 gas=0 fees=0 elapsed="266.007µs" +INFO [08-24|10:54:36.393] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:54:39.009] Successfully sealed new block number=5437 sealhash=c8311c..59115e hash=4a85d6..1006ab elapsed=4.999s +INFO [08-24|10:54:39.010] Commit new sealing work number=5438 sealhash=9864f0..810040 txs=0 gas=0 fees=0 elapsed="616.973µs" +INFO [08-24|10:54:44.005] Successfully sealed new block number=5438 sealhash=9864f0..810040 hash=b4110e..5f04a2 elapsed=4.994s +INFO [08-24|10:54:44.005] Commit new sealing work number=5439 sealhash=2986fe..379303 txs=0 gas=0 fees=0 elapsed="275.692µs" +INFO [08-24|10:54:46.414] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:54:49.008] Successfully sealed new block number=5439 sealhash=2986fe..379303 hash=c29937..4c3241 elapsed=5.003s +INFO [08-24|10:54:49.009] Commit new sealing work number=5440 sealhash=31b246..b5c6a2 txs=0 gas=0 fees=0 elapsed="284.843µs" +INFO [08-24|10:54:54.012] Successfully sealed new block number=5440 sealhash=31b246..b5c6a2 hash=c95972..9a9873 elapsed=5.002s +INFO [08-24|10:54:54.012] Commit new sealing work number=5441 sealhash=3afc0b..b7e15f txs=0 gas=0 fees=0 elapsed="287.301µs" +INFO [08-24|10:54:56.434] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:54:59.010] Successfully sealed new block number=5441 sealhash=3afc0b..b7e15f hash=85bca2..c4487e elapsed=4.997s +INFO [08-24|10:54:59.010] Commit new sealing work number=5442 sealhash=2f00b7..56e8bc txs=0 gas=0 fees=0 elapsed="365.013µs" +INFO [08-24|10:55:04.011] Successfully sealed new block number=5442 sealhash=2f00b7..56e8bc hash=09558e..c7f88b elapsed=5.000s +INFO [08-24|10:55:04.011] Commit new sealing work number=5443 sealhash=5498b3..83b4ac txs=0 gas=0 fees=0 elapsed="243.061µs" +INFO [08-24|10:55:06.457] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:55:09.007] Successfully sealed new block number=5443 sealhash=5498b3..83b4ac hash=b613b7..7e3fb6 elapsed=4.996s +INFO [08-24|10:55:09.008] Commit new sealing work number=5444 sealhash=0c9036..b76bea txs=0 gas=0 fees=0 elapsed="363.496µs" +INFO [08-24|10:55:14.007] Successfully sealed new block number=5444 sealhash=0c9036..b76bea hash=f6e1df..e3f99d elapsed=4.999s +INFO [08-24|10:55:14.007] Commit new sealing work number=5445 sealhash=f5f8ae..12749f txs=0 gas=0 fees=0 elapsed="424.565µs" +INFO [08-24|10:55:16.479] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:55:19.014] Successfully sealed new block number=5445 sealhash=f5f8ae..12749f hash=644654..fd80d5 elapsed=5.006s +INFO [08-24|10:55:19.015] Commit new sealing work number=5446 sealhash=3fd99a..9cc1f7 txs=0 gas=0 fees=0 elapsed="509.57µs" +INFO [08-24|10:55:24.010] Successfully sealed new block number=5446 sealhash=3fd99a..9cc1f7 hash=fd96ad..a5be8c elapsed=4.995s +INFO [08-24|10:55:24.011] Commit new sealing work number=5447 sealhash=763ef2..c0b424 txs=0 gas=0 fees=0 elapsed="291.81µs" +INFO [08-24|10:55:26.498] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:55:29.010] Successfully sealed new block number=5447 sealhash=763ef2..c0b424 hash=4838e4..0e3686 elapsed=4.998s +INFO [08-24|10:55:29.010] Commit new sealing work number=5448 sealhash=c5bb84..45970e txs=0 gas=0 fees=0 elapsed="282.62µs" +INFO [08-24|10:55:34.006] Successfully sealed new block number=5448 sealhash=c5bb84..45970e hash=21966a..d7573e elapsed=4.996s +INFO [08-24|10:55:34.007] Commit new sealing work number=5449 sealhash=496869..b15ef1 txs=0 gas=0 fees=0 elapsed="213.366µs" +INFO [08-24|10:55:36.517] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:55:39.007] Successfully sealed new block number=5449 sealhash=496869..b15ef1 hash=a8f950..5c21d7 elapsed=5.000s +INFO [08-24|10:55:39.007] Commit new sealing work number=5450 sealhash=510db2..8ed85f txs=0 gas=0 fees=0 elapsed="384.949µs" +INFO [08-24|10:55:44.008] Successfully sealed new block number=5450 sealhash=510db2..8ed85f hash=ccc124..b1bfc9 elapsed=5.000s +INFO [08-24|10:55:44.008] Commit new sealing work number=5451 sealhash=0d2f07..a0639e txs=0 gas=0 fees=0 elapsed="260.617µs" +INFO [08-24|10:55:46.537] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:55:49.008] Successfully sealed new block number=5451 sealhash=0d2f07..a0639e hash=39393d..b0bd33 elapsed=5.000s +INFO [08-24|10:55:49.009] Commit new sealing work number=5452 sealhash=f5a1cf..7fe11e txs=0 gas=0 fees=0 elapsed="475.228µs" +INFO [08-24|10:55:54.009] Successfully sealed new block number=5452 sealhash=f5a1cf..7fe11e hash=dccbd3..bd67fc elapsed=5.000s +INFO [08-24|10:55:54.010] Commit new sealing work number=5453 sealhash=ab8e55..cd87bb txs=0 gas=0 fees=0 elapsed="226.094µs" +INFO [08-24|10:55:56.557] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:55:59.008] Successfully sealed new block number=5453 sealhash=ab8e55..cd87bb hash=712e09..8d30fe elapsed=4.998s +INFO [08-24|10:55:59.008] Commit new sealing work number=5454 sealhash=bc02f0..eca646 txs=0 gas=0 fees=0 elapsed="223.082µs" +INFO [08-24|10:56:04.006] Successfully sealed new block number=5454 sealhash=bc02f0..eca646 hash=899337..870095 elapsed=4.997s +INFO [08-24|10:56:04.006] Commit new sealing work number=5455 sealhash=315db6..6c8487 txs=0 gas=0 fees=0 elapsed="310.368µs" +INFO [08-24|10:56:06.578] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:56:09.012] Successfully sealed new block number=5455 sealhash=315db6..6c8487 hash=263cc6..84bfb8 elapsed=5.005s +INFO [08-24|10:56:09.013] Commit new sealing work number=5456 sealhash=29f78d..098158 txs=0 gas=0 fees=0 elapsed="568.257µs" +INFO [08-24|10:56:14.009] Successfully sealed new block number=5456 sealhash=29f78d..098158 hash=9c6e38..62b9be elapsed=4.996s +INFO [08-24|10:56:14.009] Commit new sealing work number=5457 sealhash=138c9f..51ad2a txs=0 gas=0 fees=0 elapsed="255.596µs" +INFO [08-24|10:56:16.600] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:56:19.006] Successfully sealed new block number=5457 sealhash=138c9f..51ad2a hash=a13811..3f815a elapsed=4.996s +INFO [08-24|10:56:19.006] Commit new sealing work number=5458 sealhash=9c5ffc..636941 txs=0 gas=0 fees=0 elapsed="236.057µs" +INFO [08-24|10:56:24.005] Successfully sealed new block number=5458 sealhash=9c5ffc..636941 hash=3b3da3..9ac966 elapsed=4.998s +INFO [08-24|10:56:24.005] Commit new sealing work number=5459 sealhash=380c51..797cb4 txs=0 gas=0 fees=0 elapsed="288.976µs" +INFO [08-24|10:56:26.622] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:56:29.010] Successfully sealed new block number=5459 sealhash=380c51..797cb4 hash=aa343e..72dc0b elapsed=5.004s +INFO [08-24|10:56:29.011] Commit new sealing work number=5460 sealhash=4051fd..fe00f7 txs=0 gas=0 fees=0 elapsed="302.677µs" +INFO [08-24|10:56:34.011] Successfully sealed new block number=5460 sealhash=4051fd..fe00f7 hash=fe4d96..48f1d7 elapsed=4.999s +INFO [08-24|10:56:34.011] Commit new sealing work number=5461 sealhash=3a6ac8..5df818 txs=0 gas=0 fees=0 elapsed="285.724µs" +INFO [08-24|10:56:36.645] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:56:39.008] Successfully sealed new block number=5461 sealhash=3a6ac8..5df818 hash=79960a..bfbfb8 elapsed=4.997s +INFO [08-24|10:56:39.008] Commit new sealing work number=5462 sealhash=d36969..b138dc txs=0 gas=0 fees=0 elapsed="242.798µs" +INFO [08-24|10:56:44.009] Successfully sealed new block number=5462 sealhash=d36969..b138dc hash=1c043a..7e4051 elapsed=5.000s +INFO [08-24|10:56:44.010] Commit new sealing work number=5463 sealhash=97cb3c..3a5423 txs=0 gas=0 fees=0 elapsed="362.871µs" +INFO [08-24|10:56:46.666] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:56:49.004] Successfully sealed new block number=5463 sealhash=97cb3c..3a5423 hash=5fd5c2..e4cbec elapsed=4.994s +INFO [08-24|10:56:49.004] Commit new sealing work number=5464 sealhash=e18d8b..58f25e txs=0 gas=0 fees=0 elapsed="292.86µs" +INFO [08-24|10:56:54.008] Successfully sealed new block number=5464 sealhash=e18d8b..58f25e hash=219ea7..55d94e elapsed=5.004s +INFO [08-24|10:56:54.009] Commit new sealing work number=5465 sealhash=012c21..082c21 txs=0 gas=0 fees=0 elapsed="331.733µs" +INFO [08-24|10:56:56.684] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:56:59.007] Successfully sealed new block number=5465 sealhash=012c21..082c21 hash=75b819..a7125b elapsed=4.998s +INFO [08-24|10:56:59.008] Commit new sealing work number=5466 sealhash=201503..636d82 txs=0 gas=0 fees=0 elapsed="279.889µs" +INFO [08-24|10:57:04.006] Successfully sealed new block number=5466 sealhash=201503..636d82 hash=8a34c9..d49e00 elapsed=4.998s +INFO [08-24|10:57:04.006] Commit new sealing work number=5467 sealhash=bfb6a7..e95513 txs=0 gas=0 fees=0 elapsed="449.158µs" +INFO [08-24|10:57:06.706] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:57:09.010] Successfully sealed new block number=5467 sealhash=bfb6a7..e95513 hash=0db2ef..92ed2b elapsed=5.003s +INFO [08-24|10:57:09.010] Commit new sealing work number=5468 sealhash=1113c7..84997e txs=0 gas=0 fees=0 elapsed="276.483µs" +INFO [08-24|10:57:14.012] Successfully sealed new block number=5468 sealhash=1113c7..84997e hash=9868f1..59dded elapsed=5.002s +INFO [08-24|10:57:14.013] Commit new sealing work number=5469 sealhash=830bb4..226dc7 txs=0 gas=0 fees=0 elapsed="473.198µs" +INFO [08-24|10:57:16.728] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:57:19.010] Successfully sealed new block number=5469 sealhash=830bb4..226dc7 hash=21323e..d9727b elapsed=4.996s +INFO [08-24|10:57:19.010] Commit new sealing work number=5470 sealhash=d74971..59de1f txs=0 gas=0 fees=0 elapsed="392.202µs" +INFO [08-24|10:57:24.010] Successfully sealed new block number=5470 sealhash=d74971..59de1f hash=c4bfad..1fdf26 elapsed=5.000s +INFO [08-24|10:57:24.011] Commit new sealing work number=5471 sealhash=c4baf1..053d7b txs=0 gas=0 fees=0 elapsed="325.828µs" +INFO [08-24|10:57:26.747] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:57:29.012] Successfully sealed new block number=5471 sealhash=c4baf1..053d7b hash=28e4e3..007c6d elapsed=5.000s +INFO [08-24|10:57:29.012] Commit new sealing work number=5472 sealhash=bbd02d..2873fd txs=0 gas=0 fees=0 elapsed="322.281µs" +INFO [08-24|10:57:34.005] Successfully sealed new block number=5472 sealhash=bbd02d..2873fd hash=ae65f2..168772 elapsed=4.992s +INFO [08-24|10:57:34.006] Commit new sealing work number=5473 sealhash=38129b..bd2330 txs=0 gas=0 fees=0 elapsed="448.257µs" +INFO [08-24|10:57:36.764] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:57:39.009] Successfully sealed new block number=5473 sealhash=38129b..bd2330 hash=3cfaba..91f214 elapsed=5.002s +INFO [08-24|10:57:39.009] Commit new sealing work number=5474 sealhash=f9ddc0..446ef7 txs=0 gas=0 fees=0 elapsed="450.783µs" +INFO [08-24|10:57:44.005] Successfully sealed new block number=5474 sealhash=f9ddc0..446ef7 hash=831c73..961f96 elapsed=4.995s +INFO [08-24|10:57:44.005] Commit new sealing work number=5475 sealhash=2b3870..0d00c1 txs=0 gas=0 fees=0 elapsed="274.317µs" +INFO [08-24|10:57:46.781] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:57:49.007] Successfully sealed new block number=5475 sealhash=2b3870..0d00c1 hash=31d0b3..27f499 elapsed=5.001s +INFO [08-24|10:57:49.007] Commit new sealing work number=5476 sealhash=010f6e..10acd6 txs=0 gas=0 fees=0 elapsed="333.561µs" +INFO [08-24|10:57:54.009] Successfully sealed new block number=5476 sealhash=010f6e..10acd6 hash=47d863..3d98bd elapsed=5.001s +INFO [08-24|10:57:54.009] Commit new sealing work number=5477 sealhash=292f2f..afd39e txs=0 gas=0 fees=0 elapsed="323.883µs" +INFO [08-24|10:57:56.803] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:57:59.009] Successfully sealed new block number=5477 sealhash=292f2f..afd39e hash=f17b15..8e695c elapsed=4.999s +INFO [08-24|10:57:59.009] Commit new sealing work number=5478 sealhash=229e12..5a12cc txs=0 gas=0 fees=0 elapsed="332.935µs" +INFO [08-24|10:58:04.007] Successfully sealed new block number=5478 sealhash=229e12..5a12cc hash=505f5e..3689ec elapsed=4.998s +INFO [08-24|10:58:04.008] Commit new sealing work number=5479 sealhash=3ba38c..3dc42d txs=0 gas=0 fees=0 elapsed="224.816µs" +INFO [08-24|10:58:06.824] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:58:09.007] Successfully sealed new block number=5479 sealhash=3ba38c..3dc42d hash=fc1ff1..4b0a6d elapsed=4.998s +INFO [08-24|10:58:09.007] Commit new sealing work number=5480 sealhash=9c1b7f..7fc740 txs=0 gas=0 fees=0 elapsed="380.922µs" +INFO [08-24|10:58:14.010] Successfully sealed new block number=5480 sealhash=9c1b7f..7fc740 hash=1d65ca..904f03 elapsed=5.003s +INFO [08-24|10:58:14.011] Commit new sealing work number=5481 sealhash=74e261..8d19f6 txs=0 gas=0 fees=0 elapsed="342.684µs" +INFO [08-24|10:58:16.847] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:58:19.005] Successfully sealed new block number=5481 sealhash=74e261..8d19f6 hash=c606ed..59d4d4 elapsed=4.994s +INFO [08-24|10:58:19.006] Commit new sealing work number=5482 sealhash=a68b9c..d29249 txs=0 gas=0 fees=0 elapsed="378.857µs" +INFO [08-24|10:58:24.007] Successfully sealed new block number=5482 sealhash=a68b9c..d29249 hash=fcf02d..5bf51f elapsed=5.000s +INFO [08-24|10:58:24.007] Commit new sealing work number=5483 sealhash=17965f..37dd9a txs=0 gas=0 fees=0 elapsed="378.469µs" +INFO [08-24|10:58:26.865] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:58:29.010] Successfully sealed new block number=5483 sealhash=17965f..37dd9a hash=684ef3..2b82e0 elapsed=5.002s +INFO [08-24|10:58:29.010] Commit new sealing work number=5484 sealhash=d7a6d8..8cd212 txs=0 gas=0 fees=0 elapsed="230.28µs" +INFO [08-24|10:58:34.011] Successfully sealed new block number=5484 sealhash=d7a6d8..8cd212 hash=1bc08b..914e92 elapsed=5.000s +INFO [08-24|10:58:34.011] Commit new sealing work number=5485 sealhash=70b6c9..071311 txs=0 gas=0 fees=0 elapsed="257.848µs" +INFO [08-24|10:58:36.886] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:58:39.007] Successfully sealed new block number=5485 sealhash=70b6c9..071311 hash=3457cf..2b2d26 elapsed=4.996s +INFO [08-24|10:58:39.008] Commit new sealing work number=5486 sealhash=586d13..abcf96 txs=0 gas=0 fees=0 elapsed="368.266µs" +INFO [08-24|10:58:44.007] Successfully sealed new block number=5486 sealhash=586d13..abcf96 hash=c95851..347859 elapsed=4.999s +INFO [08-24|10:58:44.007] Commit new sealing work number=5487 sealhash=f45d80..e251a3 txs=0 gas=0 fees=0 elapsed="229.48µs" +INFO [08-24|10:58:46.905] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:58:49.011] Successfully sealed new block number=5487 sealhash=f45d80..e251a3 hash=dd3813..0df606 elapsed=5.003s +INFO [08-24|10:58:49.011] Commit new sealing work number=5488 sealhash=7eef4d..d4cc31 txs=0 gas=0 fees=0 elapsed="358.836µs" +INFO [08-24|10:58:54.009] Successfully sealed new block number=5488 sealhash=7eef4d..d4cc31 hash=108b49..643149 elapsed=4.997s +INFO [08-24|10:58:54.009] Commit new sealing work number=5489 sealhash=dcf83d..dedbbf txs=0 gas=0 fees=0 elapsed="241.578µs" +INFO [08-24|10:58:56.927] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:58:59.009] Successfully sealed new block number=5489 sealhash=dcf83d..dedbbf hash=c993d8..f37857 elapsed=4.999s +INFO [08-24|10:58:59.009] Commit new sealing work number=5490 sealhash=077f6d..0e58b8 txs=0 gas=0 fees=0 elapsed="263.211µs" +INFO [08-24|10:59:04.005] Successfully sealed new block number=5490 sealhash=077f6d..0e58b8 hash=a2c367..ebb5a3 elapsed=4.996s +INFO [08-24|10:59:04.006] Commit new sealing work number=5491 sealhash=69df48..2309d4 txs=0 gas=0 fees=0 elapsed="308.435µs" +INFO [08-24|10:59:06.948] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:59:09.013] Successfully sealed new block number=5491 sealhash=69df48..2309d4 hash=7ffb2a..ef52d4 elapsed=5.006s +INFO [08-24|10:59:09.014] Commit new sealing work number=5492 sealhash=99a810..38ba8c txs=0 gas=0 fees=0 elapsed=1.016ms +INFO [08-24|10:59:14.006] Successfully sealed new block number=5492 sealhash=99a810..38ba8c hash=34289c..34bef5 elapsed=4.991s +INFO [08-24|10:59:14.006] Commit new sealing work number=5493 sealhash=97557a..ba86a3 txs=0 gas=0 fees=0 elapsed="247.536µs" +INFO [08-24|10:59:16.968] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:59:19.013] Successfully sealed new block number=5493 sealhash=97557a..ba86a3 hash=0b2534..e3dd78 elapsed=5.006s +INFO [08-24|10:59:19.013] Commit new sealing work number=5494 sealhash=73b0dc..2ec8a2 txs=0 gas=0 fees=0 elapsed="432.57µs" +INFO [08-24|10:59:24.010] Successfully sealed new block number=5494 sealhash=73b0dc..2ec8a2 hash=083814..95cde8 elapsed=4.996s +INFO [08-24|10:59:24.010] Commit new sealing work number=5495 sealhash=73a863..df8127 txs=0 gas=0 fees=0 elapsed="332.039µs" +INFO [08-24|10:59:26.988] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:59:29.010] Successfully sealed new block number=5495 sealhash=73a863..df8127 hash=a3807b..14b7fe elapsed=4.999s +INFO [08-24|10:59:29.011] Commit new sealing work number=5496 sealhash=e03ddf..5ce4d0 txs=0 gas=0 fees=0 elapsed="417.331µs" +INFO [08-24|10:59:34.008] Successfully sealed new block number=5496 sealhash=e03ddf..5ce4d0 hash=cb1778..953ccf elapsed=4.997s +INFO [08-24|10:59:34.009] Commit new sealing work number=5497 sealhash=cd740a..5af961 txs=0 gas=0 fees=0 elapsed="265.716µs" +INFO [08-24|10:59:37.009] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:59:39.005] Successfully sealed new block number=5497 sealhash=cd740a..5af961 hash=582c90..22065f elapsed=4.996s +INFO [08-24|10:59:39.005] Commit new sealing work number=5498 sealhash=32d241..d8eb81 txs=0 gas=0 fees=0 elapsed="353.294µs" +INFO [08-24|10:59:44.010] Successfully sealed new block number=5498 sealhash=32d241..d8eb81 hash=966e24..d04296 elapsed=5.004s +INFO [08-24|10:59:44.011] Commit new sealing work number=5499 sealhash=db81fc..45b3b5 txs=0 gas=0 fees=0 elapsed="353.083µs" +INFO [08-24|10:59:47.030] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:59:49.004] Successfully sealed new block number=5499 sealhash=db81fc..45b3b5 hash=ceb351..6556d3 elapsed=4.993s +INFO [08-24|10:59:49.004] Commit new sealing work number=5500 sealhash=2e2dc6..90acca txs=0 gas=0 fees=0 elapsed="245.234µs" +INFO [08-24|10:59:54.011] Successfully sealed new block number=5500 sealhash=2e2dc6..90acca hash=adb578..770108 elapsed=5.006s +INFO [08-24|10:59:54.011] Commit new sealing work number=5501 sealhash=66e4ec..3010d2 txs=0 gas=0 fees=0 elapsed="442.864µs" +INFO [08-24|10:59:57.052] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:59:59.010] Successfully sealed new block number=5501 sealhash=66e4ec..3010d2 hash=fd8929..418cfc elapsed=4.999s +INFO [08-24|10:59:59.011] Commit new sealing work number=5502 sealhash=e85fd8..20b6fe txs=0 gas=0 fees=0 elapsed="315.837µs" +INFO [08-24|11:00:04.011] Successfully sealed new block number=5502 sealhash=e85fd8..20b6fe hash=41029f..e454e8 elapsed=4.999s +INFO [08-24|11:00:04.011] Commit new sealing work number=5503 sealhash=f33fe2..73369e txs=0 gas=0 fees=0 elapsed="343.616µs" +INFO [08-24|11:00:07.071] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:00:09.009] Successfully sealed new block number=5503 sealhash=f33fe2..73369e hash=b43b68..5ae7c2 elapsed=4.998s +INFO [08-24|11:00:09.009] Commit new sealing work number=5504 sealhash=74611f..2dbb53 txs=0 gas=0 fees=0 elapsed="394.099µs" +INFO [08-24|11:00:14.010] Successfully sealed new block number=5504 sealhash=74611f..2dbb53 hash=77df02..f011b2 elapsed=5.000s +INFO [08-24|11:00:14.010] Commit new sealing work number=5505 sealhash=2c5a2e..90ac72 txs=0 gas=0 fees=0 elapsed="281.675µs" +INFO [08-24|11:00:17.092] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:00:19.006] Successfully sealed new block number=5505 sealhash=2c5a2e..90ac72 hash=595e55..798890 elapsed=4.995s +INFO [08-24|11:00:19.007] Commit new sealing work number=5506 sealhash=9b7f97..9827cb txs=0 gas=0 fees=0 elapsed="409.351µs" +INFO [08-24|11:00:24.011] Successfully sealed new block number=5506 sealhash=9b7f97..9827cb hash=4b5d89..fbd4a6 elapsed=5.004s +INFO [08-24|11:00:24.012] Commit new sealing work number=5507 sealhash=e8906e..2f267c txs=0 gas=0 fees=0 elapsed="683.609µs" +INFO [08-24|11:00:27.109] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:00:29.010] Successfully sealed new block number=5507 sealhash=e8906e..2f267c hash=6f4050..8657eb elapsed=4.998s +INFO [08-24|11:00:29.010] Commit new sealing work number=5508 sealhash=dacabe..f62a63 txs=0 gas=0 fees=0 elapsed="352.045µs" +INFO [08-24|11:00:34.009] Successfully sealed new block number=5508 sealhash=dacabe..f62a63 hash=751add..9d218d elapsed=4.999s +INFO [08-24|11:00:34.010] Commit new sealing work number=5509 sealhash=5a5fef..beafe1 txs=0 gas=0 fees=0 elapsed="260.354µs" +INFO [08-24|11:00:37.132] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:00:39.009] Successfully sealed new block number=5509 sealhash=5a5fef..beafe1 hash=1149f3..e238a8 elapsed=4.999s +INFO [08-24|11:00:39.010] Commit new sealing work number=5510 sealhash=486352..89977c txs=0 gas=0 fees=0 elapsed="413.532µs" +INFO [08-24|11:00:44.009] Successfully sealed new block number=5510 sealhash=486352..89977c hash=8900b2..adc7a6 elapsed=4.998s +INFO [08-24|11:00:44.009] Commit new sealing work number=5511 sealhash=c36a87..2f5c4d txs=0 gas=0 fees=0 elapsed="246.601µs" +INFO [08-24|11:00:47.154] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:00:49.007] Successfully sealed new block number=5511 sealhash=c36a87..2f5c4d hash=deec43..8d0fbe elapsed=4.997s +INFO [08-24|11:00:49.007] Commit new sealing work number=5512 sealhash=211c7c..ea6a05 txs=0 gas=0 fees=0 elapsed="312.31µs" +INFO [08-24|11:00:54.008] Successfully sealed new block number=5512 sealhash=211c7c..ea6a05 hash=7d24e1..cba917 elapsed=5.000s +INFO [08-24|11:00:54.008] Commit new sealing work number=5513 sealhash=a2fadf..265a44 txs=0 gas=0 fees=0 elapsed="324.962µs" +INFO [08-24|11:00:57.175] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:00:59.005] Successfully sealed new block number=5513 sealhash=a2fadf..265a44 hash=4c85d5..5c8acd elapsed=4.997s +INFO [08-24|11:00:59.006] Commit new sealing work number=5514 sealhash=1e27ea..0a7e69 txs=0 gas=0 fees=0 elapsed="408.749µs" +INFO [08-24|11:01:04.010] Successfully sealed new block number=5514 sealhash=1e27ea..0a7e69 hash=313203..f3678a elapsed=5.004s +INFO [08-24|11:01:04.010] Commit new sealing work number=5515 sealhash=2724b0..b31ad5 txs=0 gas=0 fees=0 elapsed="218.56µs" +INFO [08-24|11:01:07.198] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:01:09.008] Successfully sealed new block number=5515 sealhash=2724b0..b31ad5 hash=75b708..1fb55e elapsed=4.998s +INFO [08-24|11:01:09.009] Commit new sealing work number=5516 sealhash=dd5744..7b2a80 txs=0 gas=0 fees=0 elapsed="382.296µs" +INFO [08-24|11:01:14.005] Successfully sealed new block number=5516 sealhash=dd5744..7b2a80 hash=c1c27e..15bd43 elapsed=4.996s +INFO [08-24|11:01:14.005] Commit new sealing work number=5517 sealhash=a8a058..bc92b7 txs=0 gas=0 fees=0 elapsed="291.277µs" +INFO [08-24|11:01:17.219] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:01:19.009] Successfully sealed new block number=5517 sealhash=a8a058..bc92b7 hash=c15005..efb369 elapsed=5.003s +INFO [08-24|11:01:19.010] Commit new sealing work number=5518 sealhash=ce8e59..fbd15f txs=0 gas=0 fees=0 elapsed="386.574µs" +INFO [08-24|11:01:24.013] Successfully sealed new block number=5518 sealhash=ce8e59..fbd15f hash=c32024..b47fd2 elapsed=5.003s +INFO [08-24|11:01:24.014] Commit new sealing work number=5519 sealhash=18fa01..e9a679 txs=0 gas=0 fees=0 elapsed="501.562µs" +INFO [08-24|11:01:27.242] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:01:29.011] Successfully sealed new block number=5519 sealhash=18fa01..e9a679 hash=e9d065..52e4ee elapsed=4.997s +INFO [08-24|11:01:29.012] Commit new sealing work number=5520 sealhash=b7e4d9..55bd33 txs=0 gas=0 fees=0 elapsed="501.87µs" +INFO [08-24|11:01:34.011] Successfully sealed new block number=5520 sealhash=b7e4d9..55bd33 hash=7b285f..0f8563 elapsed=4.999s +INFO [08-24|11:01:34.012] Commit new sealing work number=5521 sealhash=b1cddd..84a5f4 txs=0 gas=0 fees=0 elapsed="391.879µs" +INFO [08-24|11:01:37.264] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:01:39.008] Successfully sealed new block number=5521 sealhash=b1cddd..84a5f4 hash=44c33d..d03b2d elapsed=4.996s +INFO [08-24|11:01:39.009] Commit new sealing work number=5522 sealhash=1f85a2..5534bc txs=0 gas=0 fees=0 elapsed="255.589µs" +INFO [08-24|11:01:44.010] Successfully sealed new block number=5522 sealhash=1f85a2..5534bc hash=de70ec..0a7359 elapsed=5.000s +INFO [08-24|11:01:44.010] Commit new sealing work number=5523 sealhash=cb8e5f..2cc3c0 txs=0 gas=0 fees=0 elapsed="315.578µs" +INFO [08-24|11:01:47.285] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:01:49.005] Successfully sealed new block number=5523 sealhash=cb8e5f..2cc3c0 hash=b280eb..724667 elapsed=4.995s +INFO [08-24|11:01:49.006] Commit new sealing work number=5524 sealhash=e0b409..09de76 txs=0 gas=0 fees=0 elapsed="237.029µs" +INFO [08-24|11:01:54.008] Successfully sealed new block number=5524 sealhash=e0b409..09de76 hash=b3ce91..9f9610 elapsed=5.002s +INFO [08-24|11:01:54.009] Commit new sealing work number=5525 sealhash=a76f24..2ce1ca txs=0 gas=0 fees=0 elapsed="396.294µs" +INFO [08-24|11:01:57.309] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:01:59.012] Successfully sealed new block number=5525 sealhash=a76f24..2ce1ca hash=e8858c..1df3bc elapsed=5.003s +INFO [08-24|11:01:59.012] Commit new sealing work number=5526 sealhash=37c996..676bf5 txs=0 gas=0 fees=0 elapsed="367.898µs" +INFO [08-24|11:02:04.013] Successfully sealed new block number=5526 sealhash=37c996..676bf5 hash=f6681c..f0805e elapsed=5.000s +INFO [08-24|11:02:04.014] Commit new sealing work number=5527 sealhash=bb7790..402d73 txs=0 gas=0 fees=0 elapsed="563.525µs" +INFO [08-24|11:02:07.332] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:02:09.005] Successfully sealed new block number=5527 sealhash=bb7790..402d73 hash=f3dbb5..f248ba elapsed=4.991s +INFO [08-24|11:02:09.005] Commit new sealing work number=5528 sealhash=bb7785..43fd45 txs=0 gas=0 fees=0 elapsed="328.133µs" +INFO [08-24|11:02:14.005] Successfully sealed new block number=5528 sealhash=bb7785..43fd45 hash=98dd92..aab5cd elapsed=4.999s +INFO [08-24|11:02:14.005] Commit new sealing work number=5529 sealhash=f5b3a5..d59fe9 txs=0 gas=0 fees=0 elapsed="266.51µs" +INFO [08-24|11:02:17.350] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:02:19.007] Successfully sealed new block number=5529 sealhash=f5b3a5..d59fe9 hash=40fbcc..8461ac elapsed=5.001s +INFO [08-24|11:02:19.007] Commit new sealing work number=5530 sealhash=f84add..be86d6 txs=0 gas=0 fees=0 elapsed="318.126µs" +INFO [08-24|11:02:24.009] Successfully sealed new block number=5530 sealhash=f84add..be86d6 hash=8f76ce..3deab5 elapsed=5.002s +INFO [08-24|11:02:24.010] Commit new sealing work number=5531 sealhash=2585ae..cc3730 txs=0 gas=0 fees=0 elapsed="354.119µs" +INFO [08-24|11:02:27.373] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:02:29.010] Successfully sealed new block number=5531 sealhash=2585ae..cc3730 hash=1d1751..51d764 elapsed=4.999s +INFO [08-24|11:02:29.010] Commit new sealing work number=5532 sealhash=49fc20..f8ca65 txs=0 gas=0 fees=0 elapsed="351.813µs" +INFO [08-24|11:02:34.011] Successfully sealed new block number=5532 sealhash=49fc20..f8ca65 hash=63ee6f..288294 elapsed=5.000s +INFO [08-24|11:02:34.011] Commit new sealing work number=5533 sealhash=413b84..3809f1 txs=0 gas=0 fees=0 elapsed="377.88µs" +INFO [08-24|11:02:37.397] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:02:39.007] Successfully sealed new block number=5533 sealhash=413b84..3809f1 hash=a973b2..afcd06 elapsed=4.996s +INFO [08-24|11:02:39.007] Commit new sealing work number=5534 sealhash=747a7a..5e9ce8 txs=0 gas=0 fees=0 elapsed="225.176µs" +INFO [08-24|11:02:44.005] Successfully sealed new block number=5534 sealhash=747a7a..5e9ce8 hash=122c6e..3e72af elapsed=4.997s +INFO [08-24|11:02:44.005] Commit new sealing work number=5535 sealhash=b3099b..2cec0b txs=0 gas=0 fees=0 elapsed="279.897µs" +INFO [08-24|11:02:47.416] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:02:49.012] Successfully sealed new block number=5535 sealhash=b3099b..2cec0b hash=2fe9be..bb751a elapsed=5.007s +INFO [08-24|11:02:49.013] Commit new sealing work number=5536 sealhash=1653a4..bfa419 txs=0 gas=0 fees=0 elapsed="388.304µs" +INFO [08-24|11:02:54.007] Successfully sealed new block number=5536 sealhash=1653a4..bfa419 hash=2040db..366688 elapsed=4.993s +INFO [08-24|11:02:54.007] Commit new sealing work number=5537 sealhash=ba8e68..1921b7 txs=0 gas=0 fees=0 elapsed="452.956µs" +INFO [08-24|11:02:57.434] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:02:59.020] Successfully sealed new block number=5537 sealhash=ba8e68..1921b7 hash=dcff13..3ddfb8 elapsed=5.012s +INFO [08-24|11:02:59.020] Commit new sealing work number=5538 sealhash=f44c5c..c254d4 txs=0 gas=0 fees=0 elapsed="327.645µs" +INFO [08-24|11:03:04.012] Successfully sealed new block number=5538 sealhash=f44c5c..c254d4 hash=d87750..8ab4df elapsed=4.992s +INFO [08-24|11:03:04.013] Commit new sealing work number=5539 sealhash=75e1f9..130d00 txs=0 gas=0 fees=0 elapsed="273.929µs" +INFO [08-24|11:03:07.454] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:03:09.022] Successfully sealed new block number=5539 sealhash=75e1f9..130d00 hash=b46817..98d113 elapsed=5.009s +INFO [08-24|11:03:09.023] Commit new sealing work number=5540 sealhash=4532c5..58e35a txs=0 gas=0 fees=0 elapsed="793.283µs" +INFO [08-24|11:03:14.017] Successfully sealed new block number=5540 sealhash=4532c5..58e35a hash=4f9a48..068eee elapsed=4.993s +INFO [08-24|11:03:14.017] Commit new sealing work number=5541 sealhash=6cae13..57c137 txs=0 gas=0 fees=0 elapsed="355.808µs" +INFO [08-24|11:03:17.478] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:03:21.929] Successfully sealed new block number=5541 sealhash=6cae13..57c137 hash=044f6b..53fb24 elapsed=7.911s +INFO [08-24|11:03:21.929] Commit new sealing work number=5542 sealhash=1e51a2..a76014 txs=0 gas=0 fees=0 elapsed="366.347µs" +INFO [08-24|11:03:24.764] Successfully sealed new block number=5542 sealhash=1e51a2..a76014 hash=6d27ac..bdec06 elapsed=2.834s +INFO [08-24|11:03:24.764] Commit new sealing work number=5543 sealhash=e0ccca..888ef4 txs=0 gas=0 fees=0 elapsed="309.047µs" +INFO [08-24|11:03:27.497] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:03:29.016] Successfully sealed new block number=5543 sealhash=e0ccca..888ef4 hash=af48af..3a04b2 elapsed=4.251s +INFO [08-24|11:03:29.017] Commit new sealing work number=5544 sealhash=3a6275..074599 txs=0 gas=0 fees=0 elapsed="529.225µs" +INFO [08-24|11:03:34.026] Successfully sealed new block number=5544 sealhash=3a6275..074599 hash=98bc5e..27000e elapsed=5.009s +INFO [08-24|11:03:34.026] Commit new sealing work number=5545 sealhash=1db0b7..da0fdd txs=0 gas=0 fees=0 elapsed="230.709µs" +INFO [08-24|11:03:37.519] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:03:39.014] Successfully sealed new block number=5545 sealhash=1db0b7..da0fdd hash=f95f66..7b07c8 elapsed=4.988s +INFO [08-24|11:03:39.015] Commit new sealing work number=5546 sealhash=950699..2757cd txs=0 gas=0 fees=0 elapsed="624.652µs" +INFO [08-24|11:03:44.019] Successfully sealed new block number=5546 sealhash=950699..2757cd hash=2b1a1c..5e2d54 elapsed=5.004s +INFO [08-24|11:03:44.019] Commit new sealing work number=5547 sealhash=b50830..8e01ec txs=0 gas=0 fees=0 elapsed="240.073µs" +INFO [08-24|11:03:47.538] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:03:49.016] Successfully sealed new block number=5547 sealhash=b50830..8e01ec hash=23f7e1..4ae156 elapsed=4.996s +INFO [08-24|11:03:49.017] Commit new sealing work number=5548 sealhash=c188f7..c621ad txs=0 gas=0 fees=0 elapsed="393.69µs" +INFO [08-24|11:03:54.006] Successfully sealed new block number=5548 sealhash=c188f7..c621ad hash=ab83e9..8326ab elapsed=4.989s +INFO [08-24|11:03:54.006] Commit new sealing work number=5549 sealhash=03b2f3..4a20c7 txs=0 gas=0 fees=0 elapsed="239.998µs" +INFO [08-24|11:03:57.562] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:03:59.020] Successfully sealed new block number=5549 sealhash=03b2f3..4a20c7 hash=a32c65..a5516f elapsed=5.013s +INFO [08-24|11:03:59.021] Commit new sealing work number=5550 sealhash=c0f887..c58177 txs=0 gas=0 fees=0 elapsed="480.302µs" +INFO [08-24|11:04:04.008] Successfully sealed new block number=5550 sealhash=c0f887..c58177 hash=151c9a..1f3154 elapsed=4.987s +INFO [08-24|11:04:04.009] Commit new sealing work number=5551 sealhash=602681..b98ce6 txs=0 gas=0 fees=0 elapsed="297.555µs" +INFO [08-24|11:04:07.584] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:04:09.006] Successfully sealed new block number=5551 sealhash=602681..b98ce6 hash=57d6a5..07e819 elapsed=4.997s +INFO [08-24|11:04:09.006] Commit new sealing work number=5552 sealhash=d9e474..153a36 txs=0 gas=0 fees=0 elapsed="306.534µs" +INFO [08-24|11:04:14.006] Successfully sealed new block number=5552 sealhash=d9e474..153a36 hash=f5725b..ee9807 elapsed=4.999s +INFO [08-24|11:04:14.006] Commit new sealing work number=5553 sealhash=dcc7d2..9c0505 txs=0 gas=0 fees=0 elapsed="328.091µs" +INFO [08-24|11:04:17.605] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:04:19.006] Successfully sealed new block number=5553 sealhash=dcc7d2..9c0505 hash=82545a..8dfb22 elapsed=4.999s +INFO [08-24|11:04:19.006] Commit new sealing work number=5554 sealhash=375f7b..c4e2a6 txs=0 gas=0 fees=0 elapsed="572.698µs" +INFO [08-24|11:04:24.009] Successfully sealed new block number=5554 sealhash=375f7b..c4e2a6 hash=57cafa..bf7f38 elapsed=5.002s +INFO [08-24|11:04:24.009] Commit new sealing work number=5555 sealhash=f4a9a4..7c48cf txs=0 gas=0 fees=0 elapsed="366.031µs" +INFO [08-24|11:04:27.626] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:04:29.008] Successfully sealed new block number=5555 sealhash=f4a9a4..7c48cf hash=8be266..bbfffa elapsed=4.998s +INFO [08-24|11:04:29.008] Commit new sealing work number=5556 sealhash=a449c3..5d7b76 txs=0 gas=0 fees=0 elapsed="238.044µs" +INFO [08-24|11:04:34.008] Successfully sealed new block number=5556 sealhash=a449c3..5d7b76 hash=cb0e72..ed8d27 elapsed=5.000s +INFO [08-24|11:04:34.009] Commit new sealing work number=5557 sealhash=f01ac4..51dc1a txs=0 gas=0 fees=0 elapsed="332.927µs" +INFO [08-24|11:04:37.645] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:04:39.005] Successfully sealed new block number=5557 sealhash=f01ac4..51dc1a hash=dbc1e9..f6e150 elapsed=4.996s +INFO [08-24|11:04:39.006] Commit new sealing work number=5558 sealhash=647855..cf5a2d txs=0 gas=0 fees=0 elapsed="457.674µs" +INFO [08-24|11:04:44.006] Successfully sealed new block number=5558 sealhash=647855..cf5a2d hash=277e8b..fa41a8 elapsed=5.000s +INFO [08-24|11:04:44.007] Commit new sealing work number=5559 sealhash=a33bcd..d5e63d txs=0 gas=0 fees=0 elapsed="325.969µs" +INFO [08-24|11:04:47.667] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:04:49.007] Successfully sealed new block number=5559 sealhash=a33bcd..d5e63d hash=b86cd6..5313fd elapsed=5.000s +INFO [08-24|11:04:49.007] Commit new sealing work number=5560 sealhash=d79a0c..c3f8d9 txs=0 gas=0 fees=0 elapsed="258.524µs" +INFO [08-24|11:04:54.006] Successfully sealed new block number=5560 sealhash=d79a0c..c3f8d9 hash=d7e91a..5bdd10 elapsed=4.999s +INFO [08-24|11:04:54.007] Commit new sealing work number=5561 sealhash=9234b7..a9e1bc txs=0 gas=0 fees=0 elapsed="292.372µs" +INFO [08-24|11:04:57.688] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:04:59.007] Successfully sealed new block number=5561 sealhash=9234b7..a9e1bc hash=80472d..b1fb94 elapsed=5.000s +INFO [08-24|11:04:59.007] Commit new sealing work number=5562 sealhash=998e7d..4482ca txs=0 gas=0 fees=0 elapsed="245.01µs" +INFO [08-24|11:05:04.008] Successfully sealed new block number=5562 sealhash=998e7d..4482ca hash=35fb46..12fb9f elapsed=5.000s +INFO [08-24|11:05:04.008] Commit new sealing work number=5563 sealhash=d3d8a5..188c46 txs=0 gas=0 fees=0 elapsed="276.129µs" +INFO [08-24|11:05:07.709] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:05:09.008] Successfully sealed new block number=5563 sealhash=d3d8a5..188c46 hash=b01c98..23f192 elapsed=4.999s +INFO [08-24|11:05:09.009] Commit new sealing work number=5564 sealhash=7966b0..03254c txs=0 gas=0 fees=0 elapsed="254.842µs" +INFO [08-24|11:05:14.008] Successfully sealed new block number=5564 sealhash=7966b0..03254c hash=0e1eab..0a2b82 elapsed=4.999s +INFO [08-24|11:05:14.009] Commit new sealing work number=5565 sealhash=d62960..49edaf txs=0 gas=0 fees=0 elapsed="437.991µs" +INFO [08-24|11:05:17.728] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:05:19.008] Successfully sealed new block number=5565 sealhash=d62960..49edaf hash=19abe9..67f9d6 elapsed=4.998s +INFO [08-24|11:05:19.008] Commit new sealing work number=5566 sealhash=9f9db2..febcc3 txs=0 gas=0 fees=0 elapsed="340.38µs" +INFO [08-24|11:05:24.005] Successfully sealed new block number=5566 sealhash=9f9db2..febcc3 hash=ec3d48..e2742a elapsed=4.996s +INFO [08-24|11:05:24.005] Commit new sealing work number=5567 sealhash=6a7cb7..7f875f txs=0 gas=0 fees=0 elapsed="381.835µs" +INFO [08-24|11:05:27.750] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:05:29.005] Successfully sealed new block number=5567 sealhash=6a7cb7..7f875f hash=ef0e1c..710fc4 elapsed=5.000s +INFO [08-24|11:05:29.005] Commit new sealing work number=5568 sealhash=94598d..5f40fe txs=0 gas=0 fees=0 elapsed="233.375µs" +INFO [08-24|11:05:34.007] Successfully sealed new block number=5568 sealhash=94598d..5f40fe hash=61e092..5813d1 elapsed=5.001s +INFO [08-24|11:05:34.008] Commit new sealing work number=5569 sealhash=9316d1..c3d298 txs=0 gas=0 fees=0 elapsed="270.493µs" +INFO [08-24|11:05:37.769] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:05:39.007] Successfully sealed new block number=5569 sealhash=9316d1..c3d298 hash=eac5a8..77c4ed elapsed=4.999s +INFO [08-24|11:05:39.008] Commit new sealing work number=5570 sealhash=4119a3..cb0a11 txs=0 gas=0 fees=0 elapsed="697.984µs" +INFO [08-24|11:05:44.007] Successfully sealed new block number=5570 sealhash=4119a3..cb0a11 hash=4b01b8..7014df elapsed=4.999s +INFO [08-24|11:05:44.007] Commit new sealing work number=5571 sealhash=6e2049..3d9f3f txs=0 gas=0 fees=0 elapsed="272.264µs" +INFO [08-24|11:05:47.791] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:05:49.009] Successfully sealed new block number=5571 sealhash=6e2049..3d9f3f hash=9d990f..955785 elapsed=5.001s +INFO [08-24|11:05:49.009] Commit new sealing work number=5572 sealhash=8d72d3..ebb193 txs=0 gas=0 fees=0 elapsed="449.845µs" +INFO [08-24|11:05:54.008] Successfully sealed new block number=5572 sealhash=8d72d3..ebb193 hash=7fee85..6487b5 elapsed=4.998s +INFO [08-24|11:05:54.008] Commit new sealing work number=5573 sealhash=8f6430..3d3ed7 txs=0 gas=0 fees=0 elapsed="242.57µs" +INFO [08-24|11:05:57.810] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:05:59.006] Successfully sealed new block number=5573 sealhash=8f6430..3d3ed7 hash=22348d..c86b7d elapsed=4.997s +INFO [08-24|11:05:59.006] Commit new sealing work number=5574 sealhash=e9fba4..91e988 txs=0 gas=0 fees=0 elapsed="420.862µs" +INFO [08-24|11:06:04.006] Successfully sealed new block number=5574 sealhash=e9fba4..91e988 hash=14f873..f667a6 elapsed=4.999s +INFO [08-24|11:06:04.006] Commit new sealing work number=5575 sealhash=caf4ac..4fa713 txs=0 gas=0 fees=0 elapsed="248.091µs" +INFO [08-24|11:06:07.831] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:06:09.008] Successfully sealed new block number=5575 sealhash=caf4ac..4fa713 hash=6f2bb9..8ac5d8 elapsed=5.001s +INFO [08-24|11:06:09.008] Commit new sealing work number=5576 sealhash=831d51..f70049 txs=0 gas=0 fees=0 elapsed="351.202µs" +INFO [08-24|11:06:14.006] Successfully sealed new block number=5576 sealhash=831d51..f70049 hash=5420c6..5e6e94 elapsed=4.997s +INFO [08-24|11:06:14.006] Commit new sealing work number=5577 sealhash=e0998b..88946e txs=0 gas=0 fees=0 elapsed="377.973µs" +INFO [08-24|11:06:17.850] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:06:19.007] Successfully sealed new block number=5577 sealhash=e0998b..88946e hash=71f49d..28091e elapsed=5.000s +INFO [08-24|11:06:19.007] Commit new sealing work number=5578 sealhash=b6afd5..a4873f txs=0 gas=0 fees=0 elapsed="263.504µs" +INFO [08-24|11:06:24.007] Successfully sealed new block number=5578 sealhash=b6afd5..a4873f hash=a47704..0bcdab elapsed=4.999s +INFO [08-24|11:06:24.007] Commit new sealing work number=5579 sealhash=e86803..e6e8c6 txs=0 gas=0 fees=0 elapsed="329.932µs" +INFO [08-24|11:06:27.872] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:06:29.009] Successfully sealed new block number=5579 sealhash=e86803..e6e8c6 hash=306ee5..23c687 elapsed=5.001s +INFO [08-24|11:06:29.010] Commit new sealing work number=5580 sealhash=772276..b9eddd txs=0 gas=0 fees=0 elapsed="504.931µs" +INFO [08-24|11:06:34.010] Successfully sealed new block number=5580 sealhash=772276..b9eddd hash=5f7cdc..e7442b elapsed=5.000s +INFO [08-24|11:06:34.011] Commit new sealing work number=5581 sealhash=6c1411..7f89c6 txs=0 gas=0 fees=0 elapsed="235.797µs" +INFO [08-24|11:06:37.889] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:06:39.009] Successfully sealed new block number=5581 sealhash=6c1411..7f89c6 hash=43a4d0..2ad781 elapsed=4.998s +INFO [08-24|11:06:39.010] Commit new sealing work number=5582 sealhash=bdfb24..81e217 txs=0 gas=0 fees=0 elapsed="453.754µs" +INFO [08-24|11:06:44.007] Successfully sealed new block number=5582 sealhash=bdfb24..81e217 hash=2cb688..98171e elapsed=4.997s +INFO [08-24|11:06:44.008] Commit new sealing work number=5583 sealhash=e16be6..5f29a9 txs=0 gas=0 fees=0 elapsed="188.601µs" +INFO [08-24|11:06:47.908] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:06:49.008] Successfully sealed new block number=5583 sealhash=e16be6..5f29a9 hash=7b3769..7d3efe elapsed=5.000s +INFO [08-24|11:06:49.009] Commit new sealing work number=5584 sealhash=9194cc..eab840 txs=0 gas=0 fees=0 elapsed="243.117µs" +INFO [08-24|11:06:54.008] Successfully sealed new block number=5584 sealhash=9194cc..eab840 hash=b83e50..e124cf elapsed=4.999s +INFO [08-24|11:06:54.009] Commit new sealing work number=5585 sealhash=07a4ec..20275f txs=0 gas=0 fees=0 elapsed="851.976µs" +INFO [08-24|11:06:57.926] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:06:59.009] Successfully sealed new block number=5585 sealhash=07a4ec..20275f hash=6a68b7..ef8fbd elapsed=5.000s +INFO [08-24|11:06:59.010] Commit new sealing work number=5586 sealhash=878444..abbaad txs=0 gas=0 fees=0 elapsed="358.06µs" +INFO [08-24|11:07:04.004] Successfully sealed new block number=5586 sealhash=878444..abbaad hash=14a415..72e8c0 elapsed=4.994s +INFO [08-24|11:07:04.005] Commit new sealing work number=5587 sealhash=0453b6..e02853 txs=0 gas=0 fees=0 elapsed="381.52µs" +INFO [08-24|11:07:07.945] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:07:09.005] Successfully sealed new block number=5587 sealhash=0453b6..e02853 hash=79ddc2..e9bfe9 elapsed=5.000s +INFO [08-24|11:07:09.006] Commit new sealing work number=5588 sealhash=73b561..0d886d txs=0 gas=0 fees=0 elapsed="380.967µs" +INFO [08-24|11:07:14.008] Successfully sealed new block number=5588 sealhash=73b561..0d886d hash=fa6d69..dba5dd elapsed=5.002s +INFO [08-24|11:07:14.009] Commit new sealing work number=5589 sealhash=fdd4a8..e8ebb3 txs=0 gas=0 fees=0 elapsed="245.025µs" +INFO [08-24|11:07:17.966] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:07:19.009] Successfully sealed new block number=5589 sealhash=fdd4a8..e8ebb3 hash=8a8bbc..dd4e48 elapsed=5.000s +INFO [08-24|11:07:19.010] Commit new sealing work number=5590 sealhash=92f608..45d102 txs=0 gas=0 fees=0 elapsed="442.927µs" +INFO [08-24|11:07:24.008] Successfully sealed new block number=5590 sealhash=92f608..45d102 hash=141124..558811 elapsed=4.998s +INFO [08-24|11:07:24.008] Commit new sealing work number=5591 sealhash=86ade7..14452b txs=0 gas=0 fees=0 elapsed="356.921µs" +INFO [08-24|11:07:27.986] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:07:29.010] Successfully sealed new block number=5591 sealhash=86ade7..14452b hash=086196..cb5f91 elapsed=5.001s +INFO [08-24|11:07:29.010] Commit new sealing work number=5592 sealhash=9879e0..dda246 txs=0 gas=0 fees=0 elapsed="280.853µs" +INFO [08-24|11:07:34.010] Successfully sealed new block number=5592 sealhash=9879e0..dda246 hash=b8539e..896236 elapsed=4.999s +INFO [08-24|11:07:34.010] Commit new sealing work number=5593 sealhash=22a7b8..21ca68 txs=0 gas=0 fees=0 elapsed="340.588µs" +INFO [08-24|11:07:38.010] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:07:39.010] Successfully sealed new block number=5593 sealhash=22a7b8..21ca68 hash=1b8e4a..613c2e elapsed=5.000s +INFO [08-24|11:07:39.012] Commit new sealing work number=5594 sealhash=9b8d3c..5b604c txs=0 gas=0 fees=0 elapsed=1.040ms +INFO [08-24|11:07:44.011] Successfully sealed new block number=5594 sealhash=9b8d3c..5b604c hash=972595..f97b1e elapsed=4.999s +INFO [08-24|11:07:44.011] Commit new sealing work number=5595 sealhash=e6ae2f..8ea6bc txs=0 gas=0 fees=0 elapsed="251.001µs" +INFO [08-24|11:07:48.030] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:07:49.010] Successfully sealed new block number=5595 sealhash=e6ae2f..8ea6bc hash=06ba2a..8eb6df elapsed=4.998s +INFO [08-24|11:07:49.011] Commit new sealing work number=5596 sealhash=1a362c..6953f3 txs=0 gas=0 fees=0 elapsed="241.756µs" +INFO [08-24|11:07:54.009] Successfully sealed new block number=5596 sealhash=1a362c..6953f3 hash=0a7382..b8fa01 elapsed=4.998s +INFO [08-24|11:07:54.010] Commit new sealing work number=5597 sealhash=540a76..5c5356 txs=0 gas=0 fees=0 elapsed="426.561µs" +INFO [08-24|11:07:58.052] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:07:59.010] Successfully sealed new block number=5597 sealhash=540a76..5c5356 hash=4b9199..2584ef elapsed=5.000s +INFO [08-24|11:07:59.010] Commit new sealing work number=5598 sealhash=e85033..4ff494 txs=0 gas=0 fees=0 elapsed="252.132µs" +INFO [08-24|11:08:04.008] Successfully sealed new block number=5598 sealhash=e85033..4ff494 hash=9cb757..b0a408 elapsed=4.997s +INFO [08-24|11:08:04.008] Commit new sealing work number=5599 sealhash=eda27f..2bf07e txs=0 gas=0 fees=0 elapsed="273.539µs" +INFO [08-24|11:08:08.076] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:08:09.010] Successfully sealed new block number=5599 sealhash=eda27f..2bf07e hash=759c64..f120b4 elapsed=5.001s +INFO [08-24|11:08:09.010] Commit new sealing work number=5600 sealhash=8564f6..efccfc txs=0 gas=0 fees=0 elapsed="421.866µs" +INFO [08-24|11:08:14.009] Successfully sealed new block number=5600 sealhash=8564f6..efccfc hash=841c83..b6ea0f elapsed=4.998s +INFO [08-24|11:08:14.009] Commit new sealing work number=5601 sealhash=0509c8..373f97 txs=0 gas=0 fees=0 elapsed="322.725µs" +INFO [08-24|11:08:18.094] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:08:19.008] Successfully sealed new block number=5601 sealhash=0509c8..373f97 hash=4b8dac..34a433 elapsed=4.998s +INFO [08-24|11:08:19.008] Commit new sealing work number=5602 sealhash=ec802b..f629c9 txs=0 gas=0 fees=0 elapsed="422.825µs" +INFO [08-24|11:08:24.007] Successfully sealed new block number=5602 sealhash=ec802b..f629c9 hash=b1e0fb..821b31 elapsed=4.998s +INFO [08-24|11:08:24.007] Commit new sealing work number=5603 sealhash=1f5fbc..889f6d txs=0 gas=0 fees=0 elapsed="335.909µs" +INFO [08-24|11:08:28.115] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:08:29.005] Successfully sealed new block number=5603 sealhash=1f5fbc..889f6d hash=e316f7..ec1f9b elapsed=4.997s +INFO [08-24|11:08:29.006] Commit new sealing work number=5604 sealhash=b57221..2dacce txs=0 gas=0 fees=0 elapsed=1.027ms +INFO [08-24|11:08:34.012] Successfully sealed new block number=5604 sealhash=b57221..2dacce hash=8120fc..acb3ad elapsed=5.007s +INFO [08-24|11:08:34.013] Commit new sealing work number=5605 sealhash=82116c..a91ece txs=0 gas=0 fees=0 elapsed="291.841µs" +INFO [08-24|11:08:38.133] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:08:39.005] Successfully sealed new block number=5605 sealhash=82116c..a91ece hash=abf75f..0b4aa7 elapsed=4.992s +INFO [08-24|11:08:39.006] Commit new sealing work number=5606 sealhash=53818e..13cdbf txs=0 gas=0 fees=0 elapsed="464.705µs" +INFO [08-24|11:08:44.007] Successfully sealed new block number=5606 sealhash=53818e..13cdbf hash=9474fd..d6952f elapsed=5.000s +INFO [08-24|11:08:44.007] Commit new sealing work number=5607 sealhash=6f7784..8b376c txs=0 gas=0 fees=0 elapsed="296.045µs" +INFO [08-24|11:08:48.151] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:08:49.006] Successfully sealed new block number=5607 sealhash=6f7784..8b376c hash=199fd6..a8da26 elapsed=4.998s +INFO [08-24|11:08:49.006] Commit new sealing work number=5608 sealhash=dd2252..2d7be0 txs=0 gas=0 fees=0 elapsed="282.588µs" +INFO [08-24|11:08:54.011] Successfully sealed new block number=5608 sealhash=dd2252..2d7be0 hash=f645ec..2c5107 elapsed=5.004s +INFO [08-24|11:08:54.011] Commit new sealing work number=5609 sealhash=52d0e1..097735 txs=0 gas=0 fees=0 elapsed="410.488µs" +INFO [08-24|11:08:58.170] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:08:59.012] Successfully sealed new block number=5609 sealhash=52d0e1..097735 hash=a09d97..23f252 elapsed=5.000s +INFO [08-24|11:08:59.012] Commit new sealing work number=5610 sealhash=14b000..fea918 txs=0 gas=0 fees=0 elapsed="255.753µs" +INFO [08-24|11:09:04.010] Successfully sealed new block number=5610 sealhash=14b000..fea918 hash=6e6e61..ca147a elapsed=4.998s +INFO [08-24|11:09:04.011] Commit new sealing work number=5611 sealhash=d10038..c4c5a7 txs=0 gas=0 fees=0 elapsed="467.725µs" +INFO [08-24|11:09:08.190] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:09:09.007] Successfully sealed new block number=5611 sealhash=d10038..c4c5a7 hash=1b387f..822341 elapsed=4.996s +INFO [08-24|11:09:09.007] Commit new sealing work number=5612 sealhash=7766ae..6ea0cb txs=0 gas=0 fees=0 elapsed="201.703µs" +INFO [08-24|11:09:14.006] Successfully sealed new block number=5612 sealhash=7766ae..6ea0cb hash=3d5e06..1d4192 elapsed=4.998s +INFO [08-24|11:09:14.007] Commit new sealing work number=5613 sealhash=e7f19f..9c7fd5 txs=0 gas=0 fees=0 elapsed="324.723µs" +INFO [08-24|11:09:18.213] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:09:19.008] Successfully sealed new block number=5613 sealhash=e7f19f..9c7fd5 hash=f928ef..1f4637 elapsed=5.001s +INFO [08-24|11:09:19.008] Commit new sealing work number=5614 sealhash=e398f2..be28f0 txs=0 gas=0 fees=0 elapsed="260.099µs" +INFO [08-24|11:09:24.008] Successfully sealed new block number=5614 sealhash=e398f2..be28f0 hash=a91349..0b2dff elapsed=4.999s +INFO [08-24|11:09:24.008] Commit new sealing work number=5615 sealhash=c13ff5..1fc9a9 txs=0 gas=0 fees=0 elapsed="357.265µs" +INFO [08-24|11:09:28.235] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:09:29.007] Successfully sealed new block number=5615 sealhash=c13ff5..1fc9a9 hash=bda5c4..537460 elapsed=4.999s +INFO [08-24|11:09:29.008] Commit new sealing work number=5616 sealhash=7273a0..b792bf txs=0 gas=0 fees=0 elapsed="276.774µs" +INFO [08-24|11:09:34.009] Successfully sealed new block number=5616 sealhash=7273a0..b792bf hash=f3ec45..84a264 elapsed=5.001s +INFO [08-24|11:09:34.010] Commit new sealing work number=5617 sealhash=038b18..5c3958 txs=0 gas=0 fees=0 elapsed="541.557µs" +INFO [08-24|11:09:38.253] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:09:39.008] Successfully sealed new block number=5617 sealhash=038b18..5c3958 hash=d6d482..784003 elapsed=4.997s +INFO [08-24|11:09:39.009] Commit new sealing work number=5618 sealhash=dd55d6..6c91c9 txs=0 gas=0 fees=0 elapsed="418.488µs" +INFO [08-24|11:09:44.006] Successfully sealed new block number=5618 sealhash=dd55d6..6c91c9 hash=169301..006c94 elapsed=4.997s +INFO [08-24|11:09:44.007] Commit new sealing work number=5619 sealhash=595697..d2290b txs=0 gas=0 fees=0 elapsed=1.171ms +INFO [08-24|11:09:48.274] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:09:49.006] Successfully sealed new block number=5619 sealhash=595697..d2290b hash=cba86e..2ad8e3 elapsed=4.998s +INFO [08-24|11:09:49.006] Commit new sealing work number=5620 sealhash=e218e2..5d3419 txs=0 gas=0 fees=0 elapsed="272.76µs" +INFO [08-24|11:09:54.007] Successfully sealed new block number=5620 sealhash=e218e2..5d3419 hash=b8f4ff..711acc elapsed=5.000s +INFO [08-24|11:09:54.007] Commit new sealing work number=5621 sealhash=35e328..7e9234 txs=0 gas=0 fees=0 elapsed="358.445µs" +INFO [08-24|11:09:58.293] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:09:59.008] Successfully sealed new block number=5621 sealhash=35e328..7e9234 hash=0ea336..3c3aab elapsed=5.000s +INFO [08-24|11:09:59.009] Commit new sealing work number=5622 sealhash=38cd3d..320c25 txs=0 gas=0 fees=0 elapsed=1.249ms +INFO [08-24|11:10:04.008] Successfully sealed new block number=5622 sealhash=38cd3d..320c25 hash=fc3b08..0eb04a elapsed=4.998s +INFO [08-24|11:10:04.008] Commit new sealing work number=5623 sealhash=ce9e2d..5a1a23 txs=0 gas=0 fees=0 elapsed="196.411µs" +INFO [08-24|11:10:08.313] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:10:09.004] Successfully sealed new block number=5623 sealhash=ce9e2d..5a1a23 hash=09c53d..cb67bd elapsed=4.995s +INFO [08-24|11:10:09.005] Commit new sealing work number=5624 sealhash=f1a7fd..be184b txs=0 gas=0 fees=0 elapsed="812.691µs" +INFO [08-24|11:10:14.004] Successfully sealed new block number=5624 sealhash=f1a7fd..be184b hash=db5400..2d1760 elapsed=4.999s +INFO [08-24|11:10:14.005] Commit new sealing work number=5625 sealhash=c4aede..f4fd71 txs=0 gas=0 fees=0 elapsed="415.51µs" +INFO [08-24|11:10:18.332] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:10:19.005] Successfully sealed new block number=5625 sealhash=c4aede..f4fd71 hash=26909c..64f076 elapsed=4.999s +INFO [08-24|11:10:19.005] Commit new sealing work number=5626 sealhash=21a2e5..a224ec txs=0 gas=0 fees=0 elapsed="262.62µs" +INFO [08-24|11:10:24.008] Successfully sealed new block number=5626 sealhash=21a2e5..a224ec hash=1e625e..94d117 elapsed=5.002s +INFO [08-24|11:10:24.009] Commit new sealing work number=5627 sealhash=295488..9dd670 txs=0 gas=0 fees=0 elapsed="672.295µs" +INFO [08-24|11:10:28.351] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:10:29.009] Successfully sealed new block number=5627 sealhash=295488..9dd670 hash=423f73..fe6d7f elapsed=5.000s +INFO [08-24|11:10:29.009] Commit new sealing work number=5628 sealhash=92527d..8b794a txs=0 gas=0 fees=0 elapsed="358.206µs" +INFO [08-24|11:10:34.008] Successfully sealed new block number=5628 sealhash=92527d..8b794a hash=5c649e..d989ac elapsed=4.998s +INFO [08-24|11:10:34.009] Commit new sealing work number=5629 sealhash=b9e0c9..67cade txs=0 gas=0 fees=0 elapsed="313.288µs" +INFO [08-24|11:10:38.371] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:10:39.009] Successfully sealed new block number=5629 sealhash=b9e0c9..67cade hash=2351e9..03720a elapsed=5.000s +INFO [08-24|11:10:39.009] Commit new sealing work number=5630 sealhash=e066c9..13b995 txs=0 gas=0 fees=0 elapsed="230.456µs" +INFO [08-24|11:10:44.011] Successfully sealed new block number=5630 sealhash=e066c9..13b995 hash=ddf7a4..0abc07 elapsed=5.001s +INFO [08-24|11:10:44.011] Commit new sealing work number=5631 sealhash=bf61eb..f18c22 txs=0 gas=0 fees=0 elapsed="340.57µs" +INFO [08-24|11:10:48.391] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:10:49.009] Successfully sealed new block number=5631 sealhash=bf61eb..f18c22 hash=a99914..45d880 elapsed=4.998s +INFO [08-24|11:10:49.010] Commit new sealing work number=5632 sealhash=d8a9a6..6328f0 txs=0 gas=0 fees=0 elapsed="349.692µs" +INFO [08-24|11:10:54.008] Successfully sealed new block number=5632 sealhash=d8a9a6..6328f0 hash=1be2b9..378057 elapsed=4.998s +INFO [08-24|11:10:54.009] Commit new sealing work number=5633 sealhash=f2a095..11a9a8 txs=0 gas=0 fees=0 elapsed="408.111µs" +INFO [08-24|11:10:58.413] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:10:59.007] Successfully sealed new block number=5633 sealhash=f2a095..11a9a8 hash=df3013..72635c elapsed=4.998s +INFO [08-24|11:10:59.008] Commit new sealing work number=5634 sealhash=39a31e..427d60 txs=0 gas=0 fees=0 elapsed="288.811µs" +INFO [08-24|11:11:04.007] Successfully sealed new block number=5634 sealhash=39a31e..427d60 hash=558599..cc978b elapsed=4.998s +INFO [08-24|11:11:04.007] Commit new sealing work number=5635 sealhash=e0410a..24c208 txs=0 gas=0 fees=0 elapsed="277.022µs" +INFO [08-24|11:11:08.433] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:11:09.007] Successfully sealed new block number=5635 sealhash=e0410a..24c208 hash=ca2471..2e9b6a elapsed=5.000s +INFO [08-24|11:11:09.008] Commit new sealing work number=5636 sealhash=c5a9d6..d71f28 txs=0 gas=0 fees=0 elapsed="309.605µs" +INFO [08-24|11:11:14.011] Successfully sealed new block number=5636 sealhash=c5a9d6..d71f28 hash=b1a328..23fd6e elapsed=5.003s +INFO [08-24|11:11:14.012] Commit new sealing work number=5637 sealhash=ab5381..09332c txs=0 gas=0 fees=0 elapsed="544.653µs" +INFO [08-24|11:11:18.453] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:11:19.009] Successfully sealed new block number=5637 sealhash=ab5381..09332c hash=f6f8ae..922dfc elapsed=4.996s +INFO [08-24|11:11:19.009] Commit new sealing work number=5638 sealhash=1bf233..7435aa txs=0 gas=0 fees=0 elapsed="364.499µs" +INFO [08-24|11:11:24.010] Successfully sealed new block number=5638 sealhash=1bf233..7435aa hash=ae8e37..41dec5 elapsed=5.000s +INFO [08-24|11:11:24.010] Commit new sealing work number=5639 sealhash=6abf3b..be8b04 txs=0 gas=0 fees=0 elapsed="470.678µs" +INFO [08-24|11:11:28.474] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:11:29.010] Successfully sealed new block number=5639 sealhash=6abf3b..be8b04 hash=f6112f..1b8cb4 elapsed=4.999s +INFO [08-24|11:11:29.011] Commit new sealing work number=5640 sealhash=b5fed7..e4da7c txs=0 gas=0 fees=0 elapsed="365.168µs" +INFO [08-24|11:11:34.009] Successfully sealed new block number=5640 sealhash=b5fed7..e4da7c hash=70dae6..654986 elapsed=4.998s +INFO [08-24|11:11:34.009] Commit new sealing work number=5641 sealhash=27b9f7..27a9fa txs=0 gas=0 fees=0 elapsed="365.281µs" +INFO [08-24|11:11:38.499] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:11:39.007] Successfully sealed new block number=5641 sealhash=27b9f7..27a9fa hash=d690e0..3cc132 elapsed=4.997s +INFO [08-24|11:11:39.008] Commit new sealing work number=5642 sealhash=d4e6aa..998eab txs=0 gas=0 fees=0 elapsed="377.107µs" +INFO [08-24|11:11:44.012] Successfully sealed new block number=5642 sealhash=d4e6aa..998eab hash=d64fc8..90130f elapsed=5.004s +INFO [08-24|11:11:44.012] Commit new sealing work number=5643 sealhash=e528b6..4f6493 txs=0 gas=0 fees=0 elapsed="258.762µs" +INFO [08-24|11:11:48.520] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:11:49.009] Successfully sealed new block number=5643 sealhash=e528b6..4f6493 hash=a66cb6..11d632 elapsed=4.997s +INFO [08-24|11:11:49.010] Commit new sealing work number=5644 sealhash=0cf1a9..520e92 txs=0 gas=0 fees=0 elapsed="377.266µs" +INFO [08-24|11:11:54.006] Successfully sealed new block number=5644 sealhash=0cf1a9..520e92 hash=f28744..39d20f elapsed=4.996s +INFO [08-24|11:11:54.006] Commit new sealing work number=5645 sealhash=991562..c7173c txs=0 gas=0 fees=0 elapsed="547.129µs" +INFO [08-24|11:11:58.539] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:11:59.010] Successfully sealed new block number=5645 sealhash=991562..c7173c hash=76f3d7..861bb9 elapsed=5.003s +INFO [08-24|11:11:59.011] Commit new sealing work number=5646 sealhash=3e5fcb..0b1486 txs=0 gas=0 fees=0 elapsed="221.765µs" +INFO [08-24|11:12:04.006] Successfully sealed new block number=5646 sealhash=3e5fcb..0b1486 hash=f55c6e..c80329 elapsed=4.995s +INFO [08-24|11:12:04.006] Commit new sealing work number=5647 sealhash=cf2d16..2754ad txs=0 gas=0 fees=0 elapsed="262.056µs" +INFO [08-24|11:12:08.559] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:12:09.007] Successfully sealed new block number=5647 sealhash=cf2d16..2754ad hash=b068ba..3820c0 elapsed=5.000s +INFO [08-24|11:12:09.007] Commit new sealing work number=5648 sealhash=982187..69f3eb txs=0 gas=0 fees=0 elapsed="225.27µs" +INFO [08-24|11:12:14.010] Successfully sealed new block number=5648 sealhash=982187..69f3eb hash=5b0309..b4163c elapsed=5.002s +INFO [08-24|11:12:14.011] Commit new sealing work number=5649 sealhash=6594ec..23e141 txs=0 gas=0 fees=0 elapsed="347.323µs" +INFO [08-24|11:12:18.580] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:12:19.011] Successfully sealed new block number=5649 sealhash=6594ec..23e141 hash=1e80c1..55ac71 elapsed=5.000s +INFO [08-24|11:12:19.012] Commit new sealing work number=5650 sealhash=6c796f..1222d9 txs=0 gas=0 fees=0 elapsed="652.322µs" +INFO [08-24|11:12:24.010] Successfully sealed new block number=5650 sealhash=6c796f..1222d9 hash=1424d7..54cff0 elapsed=4.997s +INFO [08-24|11:12:24.011] Commit new sealing work number=5651 sealhash=e5b461..c0ed3c txs=0 gas=0 fees=0 elapsed="790.493µs" +INFO [08-24|11:12:28.599] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:12:29.011] Successfully sealed new block number=5651 sealhash=e5b461..c0ed3c hash=ce6508..3978bf elapsed=4.999s +INFO [08-24|11:12:29.011] Commit new sealing work number=5652 sealhash=5a667d..cc1f24 txs=0 gas=0 fees=0 elapsed="210.681µs" +INFO [08-24|11:12:34.010] Successfully sealed new block number=5652 sealhash=5a667d..cc1f24 hash=edf40a..b023d9 elapsed=4.998s +INFO [08-24|11:12:34.011] Commit new sealing work number=5653 sealhash=c211e3..14146d txs=0 gas=0 fees=0 elapsed="354.755µs" +INFO [08-24|11:12:38.617] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:12:39.010] Successfully sealed new block number=5653 sealhash=c211e3..14146d hash=0069c4..4311c5 elapsed=4.999s +INFO [08-24|11:12:39.011] Commit new sealing work number=5654 sealhash=283236..0613d2 txs=0 gas=0 fees=0 elapsed="343.741µs" +INFO [08-24|11:12:44.005] Successfully sealed new block number=5654 sealhash=283236..0613d2 hash=8929fd..5366ae elapsed=4.993s +INFO [08-24|11:12:44.005] Commit new sealing work number=5655 sealhash=503812..5f1bf1 txs=0 gas=0 fees=0 elapsed="381.487µs" +INFO [08-24|11:12:48.641] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:12:49.007] Successfully sealed new block number=5655 sealhash=503812..5f1bf1 hash=448778..accb1d elapsed=5.001s +INFO [08-24|11:12:49.007] Commit new sealing work number=5656 sealhash=982e9b..89e838 txs=0 gas=0 fees=0 elapsed="310.097µs" +INFO [08-24|11:12:54.011] Successfully sealed new block number=5656 sealhash=982e9b..89e838 hash=4e9159..f5d68a elapsed=5.003s +INFO [08-24|11:12:54.011] Commit new sealing work number=5657 sealhash=3ac3d8..f3aa8e txs=0 gas=0 fees=0 elapsed="276.971µs" +INFO [08-24|11:12:58.662] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:12:59.009] Successfully sealed new block number=5657 sealhash=3ac3d8..f3aa8e hash=5239aa..12ed62 elapsed=4.997s +INFO [08-24|11:12:59.009] Commit new sealing work number=5658 sealhash=acd989..7959c4 txs=0 gas=0 fees=0 elapsed="258.552µs" +INFO [08-24|11:13:04.009] Successfully sealed new block number=5658 sealhash=acd989..7959c4 hash=7bc63f..60254f elapsed=5.000s +INFO [08-24|11:13:04.010] Commit new sealing work number=5659 sealhash=7896d4..00269f txs=0 gas=0 fees=0 elapsed="467.925µs" +INFO [08-24|11:13:08.679] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:13:09.009] Successfully sealed new block number=5659 sealhash=7896d4..00269f hash=ed61b0..2ab44b elapsed=4.999s +INFO [08-24|11:13:09.010] Commit new sealing work number=5660 sealhash=d01df4..480745 txs=0 gas=0 fees=0 elapsed="728.134µs" +INFO [08-24|11:13:14.008] Successfully sealed new block number=5660 sealhash=d01df4..480745 hash=ee3c90..0e61c6 elapsed=4.997s +INFO [08-24|11:13:14.009] Commit new sealing work number=5661 sealhash=5f14ed..f967d3 txs=0 gas=0 fees=0 elapsed="572.739µs" +INFO [08-24|11:13:18.703] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:13:19.008] Successfully sealed new block number=5661 sealhash=5f14ed..f967d3 hash=fe6db0..b54c92 elapsed=4.999s +INFO [08-24|11:13:19.008] Commit new sealing work number=5662 sealhash=5c693b..c149e9 txs=0 gas=0 fees=0 elapsed="290.813µs" +INFO [08-24|11:13:24.005] Successfully sealed new block number=5662 sealhash=5c693b..c149e9 hash=4ec219..6f5304 elapsed=4.996s +INFO [08-24|11:13:24.005] Commit new sealing work number=5663 sealhash=01d9be..0b9e5e txs=0 gas=0 fees=0 elapsed="311.382µs" +INFO [08-24|11:13:28.723] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:13:29.009] Successfully sealed new block number=5663 sealhash=01d9be..0b9e5e hash=b24294..c54ff9 elapsed=5.003s +INFO [08-24|11:13:29.010] Commit new sealing work number=5664 sealhash=4aefb7..6435c0 txs=0 gas=0 fees=0 elapsed="336.54µs" +INFO [08-24|11:13:34.009] Successfully sealed new block number=5664 sealhash=4aefb7..6435c0 hash=0a6480..d31b32 elapsed=4.998s +INFO [08-24|11:13:34.009] Commit new sealing work number=5665 sealhash=7d209a..87aa54 txs=0 gas=0 fees=0 elapsed="266.346µs" +INFO [08-24|11:13:38.743] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:13:39.010] Successfully sealed new block number=5665 sealhash=7d209a..87aa54 hash=cf1d7b..e2d268 elapsed=5.001s +INFO [08-24|11:13:39.011] Commit new sealing work number=5666 sealhash=b491a0..5e9a76 txs=0 gas=0 fees=0 elapsed="495.123µs" +INFO [08-24|11:13:44.007] Successfully sealed new block number=5666 sealhash=b491a0..5e9a76 hash=1b88a3..a48dea elapsed=4.996s +INFO [08-24|11:13:44.008] Commit new sealing work number=5667 sealhash=c8050a..7b9923 txs=0 gas=0 fees=0 elapsed="289.127µs" +INFO [08-24|11:13:48.763] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:13:49.005] Successfully sealed new block number=5667 sealhash=c8050a..7b9923 hash=d9b1eb..898b7d elapsed=4.997s +INFO [08-24|11:13:49.006] Commit new sealing work number=5668 sealhash=0ab15d..49a53f txs=0 gas=0 fees=0 elapsed="377.373µs" +INFO [08-24|11:13:54.010] Successfully sealed new block number=5668 sealhash=0ab15d..49a53f hash=f1cc39..0a23d7 elapsed=5.004s +INFO [08-24|11:13:54.010] Commit new sealing work number=5669 sealhash=376718..f06615 txs=0 gas=0 fees=0 elapsed="266.265µs" +INFO [08-24|11:13:58.780] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:13:59.009] Successfully sealed new block number=5669 sealhash=376718..f06615 hash=399107..618161 elapsed=4.998s +INFO [08-24|11:13:59.010] Commit new sealing work number=5670 sealhash=5a528c..f7749f txs=0 gas=0 fees=0 elapsed="286.389µs" +INFO [08-24|11:14:04.009] Successfully sealed new block number=5670 sealhash=5a528c..f7749f hash=ef383d..ad2228 elapsed=4.999s +INFO [08-24|11:14:04.010] Commit new sealing work number=5671 sealhash=5a4d05..d8710f txs=0 gas=0 fees=0 elapsed="449.462µs" +INFO [08-24|11:14:08.801] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:14:09.009] Successfully sealed new block number=5671 sealhash=5a4d05..d8710f hash=44b311..754827 elapsed=4.999s +INFO [08-24|11:14:09.009] Commit new sealing work number=5672 sealhash=4edddd..ed5c64 txs=0 gas=0 fees=0 elapsed="536.988µs" +INFO [08-24|11:14:14.009] Successfully sealed new block number=5672 sealhash=4edddd..ed5c64 hash=4722c9..2dabb2 elapsed=4.999s +INFO [08-24|11:14:14.009] Commit new sealing work number=5673 sealhash=f64fde..ebd192 txs=0 gas=0 fees=0 elapsed="406.109µs" +INFO [08-24|11:14:18.822] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:14:19.009] Successfully sealed new block number=5673 sealhash=f64fde..ebd192 hash=fc1635..e30080 elapsed=5.000s +INFO [08-24|11:14:19.010] Commit new sealing work number=5674 sealhash=35d112..0a62d7 txs=0 gas=0 fees=0 elapsed="243.236µs" +INFO [08-24|11:14:24.010] Successfully sealed new block number=5674 sealhash=35d112..0a62d7 hash=a095d2..df8331 elapsed=4.999s +INFO [08-24|11:14:24.010] Commit new sealing work number=5675 sealhash=9730a0..d1badf txs=0 gas=0 fees=0 elapsed="274.723µs" +INFO [08-24|11:14:28.843] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:14:29.010] Successfully sealed new block number=5675 sealhash=9730a0..d1badf hash=a6bbfd..0223e0 elapsed=4.999s +INFO [08-24|11:14:29.011] Commit new sealing work number=5676 sealhash=e34c30..44b8a1 txs=0 gas=0 fees=0 elapsed="993.565µs" +INFO [08-24|11:14:34.008] Successfully sealed new block number=5676 sealhash=e34c30..44b8a1 hash=0e6864..acea2d elapsed=4.997s +INFO [08-24|11:14:34.009] Commit new sealing work number=5677 sealhash=8b587b..618806 txs=0 gas=0 fees=0 elapsed="570.39µs" +INFO [08-24|11:14:38.863] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:14:39.007] Successfully sealed new block number=5677 sealhash=8b587b..618806 hash=a5dc3a..65b66d elapsed=4.997s +INFO [08-24|11:14:39.007] Commit new sealing work number=5678 sealhash=02bebe..265177 txs=0 gas=0 fees=0 elapsed="346.533µs" +INFO [08-24|11:14:44.009] Successfully sealed new block number=5678 sealhash=02bebe..265177 hash=619122..8267ab elapsed=5.001s +INFO [08-24|11:14:44.009] Commit new sealing work number=5679 sealhash=ad33a3..2a36e6 txs=0 gas=0 fees=0 elapsed="283.975µs" +INFO [08-24|11:14:48.884] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:14:49.008] Successfully sealed new block number=5679 sealhash=ad33a3..2a36e6 hash=491d6d..e190e7 elapsed=4.998s +INFO [08-24|11:14:49.008] Commit new sealing work number=5680 sealhash=5e86ae..e10a97 txs=0 gas=0 fees=0 elapsed="218.332µs" +INFO [08-24|11:14:54.011] Successfully sealed new block number=5680 sealhash=5e86ae..e10a97 hash=dbf581..59e41a elapsed=5.002s +INFO [08-24|11:14:54.011] Commit new sealing work number=5681 sealhash=cf4f6c..ddab16 txs=0 gas=0 fees=0 elapsed="455.979µs" +INFO [08-24|11:14:58.906] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:14:59.005] Successfully sealed new block number=5681 sealhash=cf4f6c..ddab16 hash=41f592..f9220c elapsed=4.994s +INFO [08-24|11:14:59.006] Commit new sealing work number=5682 sealhash=5ce5c1..03ee1c txs=0 gas=0 fees=0 elapsed="296.474µs" +INFO [08-24|11:15:04.009] Successfully sealed new block number=5682 sealhash=5ce5c1..03ee1c hash=6816db..80f103 elapsed=5.003s +INFO [08-24|11:15:04.010] Commit new sealing work number=5683 sealhash=de57c7..c3563e txs=0 gas=0 fees=0 elapsed="369.709µs" +INFO [08-24|11:15:08.926] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:15:09.010] Successfully sealed new block number=5683 sealhash=de57c7..c3563e hash=cd80d4..701a4c elapsed=5.000s +INFO [08-24|11:15:09.010] Commit new sealing work number=5684 sealhash=cd940b..b35a98 txs=0 gas=0 fees=0 elapsed="333.125µs" +INFO [08-24|11:15:14.011] Successfully sealed new block number=5684 sealhash=cd940b..b35a98 hash=236a9c..17c126 elapsed=5.001s +INFO [08-24|11:15:14.012] Commit new sealing work number=5685 sealhash=c7432d..7047d4 txs=0 gas=0 fees=0 elapsed="371.609µs" +INFO [08-24|11:15:18.944] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:15:19.009] Successfully sealed new block number=5685 sealhash=c7432d..7047d4 hash=622a87..af029d elapsed=4.996s +INFO [08-24|11:15:19.009] Commit new sealing work number=5686 sealhash=f5e85c..1b3464 txs=0 gas=0 fees=0 elapsed="432.868µs" +INFO [08-24|11:15:24.012] Successfully sealed new block number=5686 sealhash=f5e85c..1b3464 hash=bb4b9f..7d3e2e elapsed=5.002s +INFO [08-24|11:15:24.012] Commit new sealing work number=5687 sealhash=e0a9b9..0fc78e txs=0 gas=0 fees=0 elapsed="338.337µs" +INFO [08-24|11:15:28.961] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:15:29.008] Successfully sealed new block number=5687 sealhash=e0a9b9..0fc78e hash=cb5c12..62016c elapsed=4.995s +INFO [08-24|11:15:29.009] Commit new sealing work number=5688 sealhash=275fc0..ee64ca txs=0 gas=0 fees=0 elapsed="801.158µs" +INFO [08-24|11:15:34.010] Successfully sealed new block number=5688 sealhash=275fc0..ee64ca hash=8b0f2f..97f652 elapsed=5.001s +INFO [08-24|11:15:34.011] Commit new sealing work number=5689 sealhash=1b6ac1..63620d txs=0 gas=0 fees=0 elapsed="328.933µs" +INFO [08-24|11:15:38.981] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:15:39.009] Successfully sealed new block number=5689 sealhash=1b6ac1..63620d hash=dee8fa..dba599 elapsed=4.997s +INFO [08-24|11:15:39.009] Commit new sealing work number=5690 sealhash=e6e651..46c03e txs=0 gas=0 fees=0 elapsed="199.751µs" +INFO [08-24|11:15:44.009] Successfully sealed new block number=5690 sealhash=e6e651..46c03e hash=9d697c..2045b1 elapsed=5.000s +INFO [08-24|11:15:44.010] Commit new sealing work number=5691 sealhash=a192a7..bb65fb txs=0 gas=0 fees=0 elapsed="454.012µs" +INFO [08-24|11:15:49.003] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:15:49.010] Successfully sealed new block number=5691 sealhash=a192a7..bb65fb hash=05fdd8..064343 elapsed=4.999s +INFO [08-24|11:15:49.010] Commit new sealing work number=5692 sealhash=25b830..e46509 txs=0 gas=0 fees=0 elapsed="466.83µs" +INFO [08-24|11:15:54.006] Successfully sealed new block number=5692 sealhash=25b830..e46509 hash=e88538..effb30 elapsed=4.995s +INFO [08-24|11:15:54.006] Commit new sealing work number=5693 sealhash=ff0f27..35e6e1 txs=0 gas=0 fees=0 elapsed="368.547µs" +INFO [08-24|11:15:59.005] Successfully sealed new block number=5693 sealhash=ff0f27..35e6e1 hash=9f933b..0db425 elapsed=4.998s +INFO [08-24|11:15:59.005] Commit new sealing work number=5694 sealhash=d43846..52712b txs=0 gas=0 fees=0 elapsed="243.468µs" +INFO [08-24|11:15:59.022] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:16:04.007] Successfully sealed new block number=5694 sealhash=d43846..52712b hash=fc44eb..d4a561 elapsed=5.001s +INFO [08-24|11:16:04.008] Commit new sealing work number=5695 sealhash=ade155..f66da7 txs=0 gas=0 fees=0 elapsed="362.991µs" +INFO [08-24|11:16:09.010] Successfully sealed new block number=5695 sealhash=ade155..f66da7 hash=07daca..8ba07d elapsed=5.002s +INFO [08-24|11:16:09.011] Commit new sealing work number=5696 sealhash=8a51f2..f6047a txs=0 gas=0 fees=0 elapsed="383.813µs" +INFO [08-24|11:16:09.046] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:16:14.011] Successfully sealed new block number=5696 sealhash=8a51f2..f6047a hash=e4ad63..fbc5bc elapsed=5.000s +INFO [08-24|11:16:14.012] Commit new sealing work number=5697 sealhash=0d1019..bfcf23 txs=0 gas=0 fees=0 elapsed="622.849µs" +INFO [08-24|11:16:19.009] Successfully sealed new block number=5697 sealhash=0d1019..bfcf23 hash=120312..78f64e elapsed=4.997s +INFO [08-24|11:16:19.010] Commit new sealing work number=5698 sealhash=df0cda..1903c1 txs=0 gas=0 fees=0 elapsed="439.807µs" +INFO [08-24|11:16:19.069] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:16:24.008] Successfully sealed new block number=5698 sealhash=df0cda..1903c1 hash=136356..b8e174 elapsed=4.998s +INFO [08-24|11:16:24.009] Commit new sealing work number=5699 sealhash=fbd301..dddbf8 txs=0 gas=0 fees=0 elapsed="379.392µs" +INFO [08-24|11:16:29.011] Successfully sealed new block number=5699 sealhash=fbd301..dddbf8 hash=70f675..8612ae elapsed=5.002s +INFO [08-24|11:16:29.012] Commit new sealing work number=5700 sealhash=ddef71..61a07e txs=0 gas=0 fees=0 elapsed="432.644µs" +INFO [08-24|11:16:29.090] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:16:34.009] Successfully sealed new block number=5700 sealhash=ddef71..61a07e hash=fddffc..00a710 elapsed=4.997s +INFO [08-24|11:16:34.010] Commit new sealing work number=5701 sealhash=b01a83..787599 txs=0 gas=0 fees=0 elapsed="360.595µs" +INFO [08-24|11:16:39.006] Successfully sealed new block number=5701 sealhash=b01a83..787599 hash=c31d6b..401716 elapsed=4.996s +INFO [08-24|11:16:39.007] Commit new sealing work number=5702 sealhash=c9b7de..cb0fcf txs=0 gas=0 fees=0 elapsed="425.751µs" +INFO [08-24|11:16:39.114] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:16:44.009] Successfully sealed new block number=5702 sealhash=c9b7de..cb0fcf hash=f2655a..77359c elapsed=5.002s +INFO [08-24|11:16:44.009] Commit new sealing work number=5703 sealhash=20ab16..018dbc txs=0 gas=0 fees=0 elapsed="269.054µs" +INFO [08-24|11:16:49.011] Successfully sealed new block number=5703 sealhash=20ab16..018dbc hash=0d9856..4a6820 elapsed=5.001s +INFO [08-24|11:16:49.011] Commit new sealing work number=5704 sealhash=294a35..5ea687 txs=0 gas=0 fees=0 elapsed="306.512µs" +INFO [08-24|11:16:49.137] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:16:54.011] Successfully sealed new block number=5704 sealhash=294a35..5ea687 hash=472b64..57803d elapsed=4.999s +INFO [08-24|11:16:54.011] Commit new sealing work number=5705 sealhash=48c91f..c20475 txs=0 gas=0 fees=0 elapsed="381.281µs" +INFO [08-24|11:16:59.004] Successfully sealed new block number=5705 sealhash=48c91f..c20475 hash=91840b..13740f elapsed=4.993s +INFO [08-24|11:16:59.005] Commit new sealing work number=5706 sealhash=100c17..fbcb13 txs=0 gas=0 fees=0 elapsed="436.389µs" +INFO [08-24|11:16:59.158] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:17:04.006] Successfully sealed new block number=5706 sealhash=100c17..fbcb13 hash=852e18..9ad39e elapsed=5.000s +INFO [08-24|11:17:04.006] Commit new sealing work number=5707 sealhash=aaabb3..d511e7 txs=0 gas=0 fees=0 elapsed="219.513µs" +INFO [08-24|11:17:09.011] Successfully sealed new block number=5707 sealhash=aaabb3..d511e7 hash=db5b4d..0efd5a elapsed=5.004s +INFO [08-24|11:17:09.011] Commit new sealing work number=5708 sealhash=214b67..5da0e9 txs=0 gas=0 fees=0 elapsed="325.009µs" +INFO [08-24|11:17:09.177] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:17:14.014] Successfully sealed new block number=5708 sealhash=214b67..5da0e9 hash=0e950d..a43cbd elapsed=5.003s +INFO [08-24|11:17:14.015] Commit new sealing work number=5709 sealhash=00af1b..b364da txs=0 gas=0 fees=0 elapsed="316.76µs" +INFO [08-24|11:17:19.004] Successfully sealed new block number=5709 sealhash=00af1b..b364da hash=a37cc2..60172e elapsed=4.989s +INFO [08-24|11:17:19.004] Commit new sealing work number=5710 sealhash=e3468c..37952f txs=0 gas=0 fees=0 elapsed="264.124µs" +INFO [08-24|11:17:19.201] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:17:24.010] Successfully sealed new block number=5710 sealhash=e3468c..37952f hash=f1979b..a31cc0 elapsed=5.005s +INFO [08-24|11:17:24.010] Commit new sealing work number=5711 sealhash=f76344..e1d4b5 txs=0 gas=0 fees=0 elapsed="481.448µs" +INFO [08-24|11:17:29.005] Successfully sealed new block number=5711 sealhash=f76344..e1d4b5 hash=80283d..46be76 elapsed=4.994s +INFO [08-24|11:17:29.005] Commit new sealing work number=5712 sealhash=890640..9610b8 txs=0 gas=0 fees=0 elapsed="255.889µs" +INFO [08-24|11:17:29.222] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:17:34.004] Successfully sealed new block number=5712 sealhash=890640..9610b8 hash=36a9da..f559c2 elapsed=4.998s +INFO [08-24|11:17:34.004] Commit new sealing work number=5713 sealhash=64e3a4..687bd6 txs=0 gas=0 fees=0 elapsed="231.905µs" +INFO [08-24|11:17:39.010] Successfully sealed new block number=5713 sealhash=64e3a4..687bd6 hash=a8c1c1..11ee38 elapsed=5.005s +INFO [08-24|11:17:39.011] Commit new sealing work number=5714 sealhash=f45828..8cc27b txs=0 gas=0 fees=0 elapsed="527.988µs" +INFO [08-24|11:17:39.248] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:17:44.009] Successfully sealed new block number=5714 sealhash=f45828..8cc27b hash=c2a518..6b9b73 elapsed=4.998s +INFO [08-24|11:17:44.010] Commit new sealing work number=5715 sealhash=409174..089d0e txs=0 gas=0 fees=0 elapsed="280.468µs" +INFO [08-24|11:17:49.010] Successfully sealed new block number=5715 sealhash=409174..089d0e hash=01377b..608b2a elapsed=5.000s +INFO [08-24|11:17:49.011] Commit new sealing work number=5716 sealhash=0ccfb3..3519cd txs=0 gas=0 fees=0 elapsed="634.682µs" +INFO [08-24|11:17:49.272] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:17:54.009] Successfully sealed new block number=5716 sealhash=0ccfb3..3519cd hash=b00aa2..501cb4 elapsed=4.998s +INFO [08-24|11:17:54.009] Commit new sealing work number=5717 sealhash=d44157..70816a txs=0 gas=0 fees=0 elapsed="319.129µs" +INFO [08-24|11:17:59.008] Successfully sealed new block number=5717 sealhash=d44157..70816a hash=caf716..fe284b elapsed=4.999s +INFO [08-24|11:17:59.009] Commit new sealing work number=5718 sealhash=6ceb16..dbbc8f txs=0 gas=0 fees=0 elapsed="321.578µs" +INFO [08-24|11:17:59.293] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:18:04.009] Successfully sealed new block number=5718 sealhash=6ceb16..dbbc8f hash=fcd4af..824d61 elapsed=4.999s +INFO [08-24|11:18:04.009] Commit new sealing work number=5719 sealhash=e96564..f1cc24 txs=0 gas=0 fees=0 elapsed="338.945µs" +INFO [08-24|11:18:09.009] Successfully sealed new block number=5719 sealhash=e96564..f1cc24 hash=6fe332..29361c elapsed=4.999s +INFO [08-24|11:18:09.010] Commit new sealing work number=5720 sealhash=460ae8..bfff49 txs=0 gas=0 fees=0 elapsed="505.139µs" +INFO [08-24|11:18:09.315] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:18:14.009] Successfully sealed new block number=5720 sealhash=460ae8..bfff49 hash=6c80c2..ac8edb elapsed=4.999s +INFO [08-24|11:18:14.010] Commit new sealing work number=5721 sealhash=6f8583..90f91a txs=0 gas=0 fees=0 elapsed="293.062µs" +INFO [08-24|11:18:19.004] Successfully sealed new block number=5721 sealhash=6f8583..90f91a hash=a5264e..9c6c92 elapsed=4.994s +INFO [08-24|11:18:19.005] Commit new sealing work number=5722 sealhash=dfba34..0b3c5d txs=0 gas=0 fees=0 elapsed="313.668µs" +INFO [08-24|11:18:19.333] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:18:24.008] Successfully sealed new block number=5722 sealhash=dfba34..0b3c5d hash=fe8711..5d88a6 elapsed=5.003s +INFO [08-24|11:18:24.008] Commit new sealing work number=5723 sealhash=57c9c9..5a04c6 txs=0 gas=0 fees=0 elapsed="373.011µs" +INFO [08-24|11:18:29.009] Successfully sealed new block number=5723 sealhash=57c9c9..5a04c6 hash=9e8095..689dfb elapsed=5.000s +INFO [08-24|11:18:29.010] Commit new sealing work number=5724 sealhash=4dec5d..59b5ff txs=0 gas=0 fees=0 elapsed="249.45µs" +INFO [08-24|11:18:29.353] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:18:34.007] Successfully sealed new block number=5724 sealhash=4dec5d..59b5ff hash=4c5a1e..da9c8b elapsed=4.997s +INFO [08-24|11:18:34.008] Commit new sealing work number=5725 sealhash=469ded..d537ad txs=0 gas=0 fees=0 elapsed="289.575µs" +INFO [08-24|11:18:39.005] Successfully sealed new block number=5725 sealhash=469ded..d537ad hash=70c1ea..f0d534 elapsed=4.997s +INFO [08-24|11:18:39.005] Commit new sealing work number=5726 sealhash=eeede1..626898 txs=0 gas=0 fees=0 elapsed="380.147µs" +INFO [08-24|11:18:39.370] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:18:44.009] Successfully sealed new block number=5726 sealhash=eeede1..626898 hash=2f2b68..286307 elapsed=5.003s +INFO [08-24|11:18:44.009] Commit new sealing work number=5727 sealhash=73f6aa..e017ce txs=0 gas=0 fees=0 elapsed="214.746µs" +INFO [08-24|11:18:49.008] Successfully sealed new block number=5727 sealhash=73f6aa..e017ce hash=2da9dc..a57cc0 elapsed=4.999s +INFO [08-24|11:18:49.009] Commit new sealing work number=5728 sealhash=fc626e..124659 txs=0 gas=0 fees=0 elapsed="202.791µs" +INFO [08-24|11:18:49.391] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:18:54.006] Successfully sealed new block number=5728 sealhash=fc626e..124659 hash=31df78..d85a56 elapsed=4.997s +INFO [08-24|11:18:54.006] Commit new sealing work number=5729 sealhash=aefe0b..e0aba1 txs=0 gas=0 fees=0 elapsed="310.944µs" +INFO [08-24|11:18:59.009] Successfully sealed new block number=5729 sealhash=aefe0b..e0aba1 hash=4bf1c4..dd7da2 elapsed=5.002s +INFO [08-24|11:18:59.009] Commit new sealing work number=5730 sealhash=e59686..77eac8 txs=0 gas=0 fees=0 elapsed="286.463µs" +INFO [08-24|11:18:59.413] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:19:04.006] Successfully sealed new block number=5730 sealhash=e59686..77eac8 hash=0d6257..cf1039 elapsed=4.996s +INFO [08-24|11:19:04.006] Commit new sealing work number=5731 sealhash=9d7b6f..258dc2 txs=0 gas=0 fees=0 elapsed="231.156µs" +INFO [08-24|11:19:09.014] Successfully sealed new block number=5731 sealhash=9d7b6f..258dc2 hash=08f71b..2516dd elapsed=5.008s +INFO [08-24|11:19:09.015] Commit new sealing work number=5732 sealhash=6632c3..2d0180 txs=0 gas=0 fees=0 elapsed="329.671µs" +INFO [08-24|11:19:09.435] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:19:14.011] Successfully sealed new block number=5732 sealhash=6632c3..2d0180 hash=ce9769..3a177e elapsed=4.996s +INFO [08-24|11:19:14.012] Commit new sealing work number=5733 sealhash=cb6fde..86490b txs=0 gas=0 fees=0 elapsed="402.292µs" +INFO [08-24|11:19:19.011] Successfully sealed new block number=5733 sealhash=cb6fde..86490b hash=99c75c..69e64b elapsed=4.998s +INFO [08-24|11:19:19.011] Commit new sealing work number=5734 sealhash=eb8eb0..40f551 txs=0 gas=0 fees=0 elapsed="361.285µs" +INFO [08-24|11:19:19.456] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:19:24.005] Successfully sealed new block number=5734 sealhash=eb8eb0..40f551 hash=9a8826..311a2c elapsed=4.994s +INFO [08-24|11:19:24.006] Commit new sealing work number=5735 sealhash=bc22fb..358ee2 txs=0 gas=0 fees=0 elapsed="306.508µs" +INFO [08-24|11:19:29.012] Successfully sealed new block number=5735 sealhash=bc22fb..358ee2 hash=743d71..eb1932 elapsed=5.006s +INFO [08-24|11:19:29.013] Commit new sealing work number=5736 sealhash=2413d8..978e71 txs=0 gas=0 fees=0 elapsed="379.659µs" +INFO [08-24|11:19:29.476] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:19:34.011] Successfully sealed new block number=5736 sealhash=2413d8..978e71 hash=33b8cf..613bcd elapsed=4.998s +INFO [08-24|11:19:34.012] Commit new sealing work number=5737 sealhash=e2e2d9..b40854 txs=0 gas=0 fees=0 elapsed="294.291µs" +INFO [08-24|11:19:39.009] Successfully sealed new block number=5737 sealhash=e2e2d9..b40854 hash=d40fd3..4cd372 elapsed=4.997s +INFO [08-24|11:19:39.010] Commit new sealing work number=5738 sealhash=692646..e454aa txs=0 gas=0 fees=0 elapsed="362.056µs" +INFO [08-24|11:19:39.498] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:19:44.009] Successfully sealed new block number=5738 sealhash=692646..e454aa hash=b82728..686d5d elapsed=4.999s +INFO [08-24|11:19:44.010] Commit new sealing work number=5739 sealhash=a50049..e4372a txs=0 gas=0 fees=0 elapsed="302.778µs" +INFO [08-24|11:19:49.009] Successfully sealed new block number=5739 sealhash=a50049..e4372a hash=214f5b..bc9bb6 elapsed=4.999s +INFO [08-24|11:19:49.009] Commit new sealing work number=5740 sealhash=c90cb2..9896cc txs=0 gas=0 fees=0 elapsed="377.169µs" +INFO [08-24|11:19:49.519] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:19:54.010] Successfully sealed new block number=5740 sealhash=c90cb2..9896cc hash=7fdcda..0bc732 elapsed=5.000s +INFO [08-24|11:19:54.010] Commit new sealing work number=5741 sealhash=a1475a..19ea02 txs=0 gas=0 fees=0 elapsed="250.759µs" +INFO [08-24|11:19:59.011] Successfully sealed new block number=5741 sealhash=a1475a..19ea02 hash=eb4716..d81ff0 elapsed=5.000s +INFO [08-24|11:19:59.011] Commit new sealing work number=5742 sealhash=b6ea29..d29b66 txs=0 gas=0 fees=0 elapsed="293.93µs" +INFO [08-24|11:19:59.542] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:20:04.009] Successfully sealed new block number=5742 sealhash=b6ea29..d29b66 hash=901663..40a3b5 elapsed=4.998s +INFO [08-24|11:20:04.010] Commit new sealing work number=5743 sealhash=c06162..b17946 txs=0 gas=0 fees=0 elapsed="333.786µs" +INFO [08-24|11:20:09.010] Successfully sealed new block number=5743 sealhash=c06162..b17946 hash=35c86e..04b316 elapsed=5.000s +INFO [08-24|11:20:09.010] Commit new sealing work number=5744 sealhash=bda8a4..789141 txs=0 gas=0 fees=0 elapsed="247.144µs" +INFO [08-24|11:20:09.562] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:20:14.010] Successfully sealed new block number=5744 sealhash=bda8a4..789141 hash=f76bd5..c42323 elapsed=4.999s +INFO [08-24|11:20:14.010] Commit new sealing work number=5745 sealhash=6e43ba..a6ac93 txs=0 gas=0 fees=0 elapsed="272.07µs" +INFO [08-24|11:20:19.005] Successfully sealed new block number=5745 sealhash=6e43ba..a6ac93 hash=2e2187..939f97 elapsed=4.994s +INFO [08-24|11:20:19.005] Commit new sealing work number=5746 sealhash=509efa..0da779 txs=0 gas=0 fees=0 elapsed="340.05µs" +INFO [08-24|11:20:19.583] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:20:24.011] Successfully sealed new block number=5746 sealhash=509efa..0da779 hash=4d5720..65277c elapsed=5.005s +INFO [08-24|11:20:24.012] Commit new sealing work number=5747 sealhash=899c1a..9460ec txs=0 gas=0 fees=0 elapsed="347.74µs" +INFO [08-24|11:20:29.011] Successfully sealed new block number=5747 sealhash=899c1a..9460ec hash=8c8894..20bb41 elapsed=4.999s +INFO [08-24|11:20:29.011] Commit new sealing work number=5748 sealhash=f3f997..2960f3 txs=0 gas=0 fees=0 elapsed="360.508µs" +INFO [08-24|11:20:29.605] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:20:34.010] Successfully sealed new block number=5748 sealhash=f3f997..2960f3 hash=5ea7ad..d524b6 elapsed=4.998s +INFO [08-24|11:20:34.010] Commit new sealing work number=5749 sealhash=d7a973..c99576 txs=0 gas=0 fees=0 elapsed="294.637µs" +INFO [08-24|11:20:39.011] Successfully sealed new block number=5749 sealhash=d7a973..c99576 hash=69f206..81087c elapsed=5.000s +INFO [08-24|11:20:39.011] Commit new sealing work number=5750 sealhash=a5a954..16ac53 txs=0 gas=0 fees=0 elapsed="475.528µs" +INFO [08-24|11:20:39.632] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:20:44.010] Successfully sealed new block number=5750 sealhash=a5a954..16ac53 hash=c48fa5..fdec08 elapsed=4.998s +INFO [08-24|11:20:44.010] Commit new sealing work number=5751 sealhash=8f8780..7a2509 txs=0 gas=0 fees=0 elapsed="219.839µs" +INFO [08-24|11:20:49.011] Successfully sealed new block number=5751 sealhash=8f8780..7a2509 hash=fbc1ad..824993 elapsed=5.000s +INFO [08-24|11:20:49.011] Commit new sealing work number=5752 sealhash=5c0031..ae1899 txs=0 gas=0 fees=0 elapsed="506.004µs" +INFO [08-24|11:20:49.652] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:20:54.012] Successfully sealed new block number=5752 sealhash=5c0031..ae1899 hash=672c67..fbbfc6 elapsed=5.000s +INFO [08-24|11:20:54.013] Commit new sealing work number=5753 sealhash=593a74..fea249 txs=0 gas=0 fees=0 elapsed="356.564µs" +INFO [08-24|11:20:59.010] Successfully sealed new block number=5753 sealhash=593a74..fea249 hash=7ab45f..f40d33 elapsed=4.997s +INFO [08-24|11:20:59.011] Commit new sealing work number=5754 sealhash=e021e4..e9d75c txs=0 gas=0 fees=0 elapsed="292.514µs" +INFO [08-24|11:20:59.674] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:21:04.011] Successfully sealed new block number=5754 sealhash=e021e4..e9d75c hash=462060..2d09b7 elapsed=5.000s +INFO [08-24|11:21:04.011] Commit new sealing work number=5755 sealhash=b2f6a4..be5410 txs=0 gas=0 fees=0 elapsed="379.881µs" +INFO [08-24|11:21:09.012] Successfully sealed new block number=5755 sealhash=b2f6a4..be5410 hash=9918a5..697449 elapsed=5.000s +INFO [08-24|11:21:09.013] Commit new sealing work number=5756 sealhash=6e90e6..2975e6 txs=0 gas=0 fees=0 elapsed="450.639µs" +INFO [08-24|11:21:09.694] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:21:14.011] Successfully sealed new block number=5756 sealhash=6e90e6..2975e6 hash=c48f58..692403 elapsed=4.997s +INFO [08-24|11:21:14.011] Commit new sealing work number=5757 sealhash=c3be69..795e56 txs=0 gas=0 fees=0 elapsed="324.548µs" +INFO [08-24|11:21:19.006] Successfully sealed new block number=5757 sealhash=c3be69..795e56 hash=173968..cea4ef elapsed=4.994s +INFO [08-24|11:21:19.007] Commit new sealing work number=5758 sealhash=81372b..855f96 txs=0 gas=0 fees=0 elapsed="722.135µs" +INFO [08-24|11:21:19.712] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:21:24.010] Successfully sealed new block number=5758 sealhash=81372b..855f96 hash=d45c40..ab6901 elapsed=5.003s +INFO [08-24|11:21:24.011] Commit new sealing work number=5759 sealhash=38d3e4..4b1f87 txs=0 gas=0 fees=0 elapsed="544.499µs" +INFO [08-24|11:21:29.010] Successfully sealed new block number=5759 sealhash=38d3e4..4b1f87 hash=9b8948..b676e7 elapsed=4.999s +INFO [08-24|11:21:29.011] Commit new sealing work number=5760 sealhash=29b92f..f01a07 txs=0 gas=0 fees=0 elapsed="606.73µs" +INFO [08-24|11:21:29.734] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:21:34.010] Successfully sealed new block number=5760 sealhash=29b92f..f01a07 hash=372425..8479ec elapsed=4.998s +INFO [08-24|11:21:34.010] Commit new sealing work number=5761 sealhash=e1e9e4..d22216 txs=0 gas=0 fees=0 elapsed="589.751µs" +INFO [08-24|11:21:39.010] Successfully sealed new block number=5761 sealhash=e1e9e4..d22216 hash=849d8f..ba6fbf elapsed=4.999s +INFO [08-24|11:21:39.011] Commit new sealing work number=5762 sealhash=d580c3..8fc53b txs=0 gas=0 fees=0 elapsed="493.963µs" +INFO [08-24|11:21:39.755] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:21:44.009] Successfully sealed new block number=5762 sealhash=d580c3..8fc53b hash=7adbda..7c0973 elapsed=4.998s +INFO [08-24|11:21:44.010] Commit new sealing work number=5763 sealhash=f16559..76b20d txs=0 gas=0 fees=0 elapsed="358.825µs" +INFO [08-24|11:21:49.004] Successfully sealed new block number=5763 sealhash=f16559..76b20d hash=d9e273..851a53 elapsed=4.993s +INFO [08-24|11:21:49.004] Commit new sealing work number=5764 sealhash=551184..da0c15 txs=0 gas=0 fees=0 elapsed="293.762µs" +INFO [08-24|11:21:49.777] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:21:54.008] Successfully sealed new block number=5764 sealhash=551184..da0c15 hash=fa8871..97ceae elapsed=5.003s +INFO [08-24|11:21:54.008] Commit new sealing work number=5765 sealhash=eb9422..1295d5 txs=0 gas=0 fees=0 elapsed="360.896µs" +INFO [08-24|11:21:59.009] Successfully sealed new block number=5765 sealhash=eb9422..1295d5 hash=7f107e..378f24 elapsed=5.000s +INFO [08-24|11:21:59.010] Commit new sealing work number=5766 sealhash=eef2d5..21104d txs=0 gas=0 fees=0 elapsed="427.666µs" +INFO [08-24|11:21:59.798] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:22:04.012] Successfully sealed new block number=5766 sealhash=eef2d5..21104d hash=2bc122..612d94 elapsed=5.002s +INFO [08-24|11:22:04.013] Commit new sealing work number=5767 sealhash=b123a8..c70179 txs=0 gas=0 fees=0 elapsed="357.537µs" +INFO [08-24|11:22:09.010] Successfully sealed new block number=5767 sealhash=b123a8..c70179 hash=b8a02e..d02475 elapsed=4.997s +INFO [08-24|11:22:09.010] Commit new sealing work number=5768 sealhash=a115dd..679525 txs=0 gas=0 fees=0 elapsed="491.837µs" +INFO [08-24|11:22:09.819] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:22:14.006] Successfully sealed new block number=5768 sealhash=a115dd..679525 hash=4ffb69..a336cc elapsed=4.995s +INFO [08-24|11:22:14.007] Commit new sealing work number=5769 sealhash=87b81c..a2dc2d txs=0 gas=0 fees=0 elapsed="306.449µs" +INFO [08-24|11:22:19.007] Successfully sealed new block number=5769 sealhash=87b81c..a2dc2d hash=4616ac..bac95e elapsed=5.000s +INFO [08-24|11:22:19.007] Commit new sealing work number=5770 sealhash=56537b..28191a txs=0 gas=0 fees=0 elapsed="316.136µs" +INFO [08-24|11:22:19.838] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:22:24.009] Successfully sealed new block number=5770 sealhash=56537b..28191a hash=b84fbd..df1558 elapsed=5.002s +INFO [08-24|11:22:24.010] Commit new sealing work number=5771 sealhash=9a10a2..581b9a txs=0 gas=0 fees=0 elapsed="416.774µs" +INFO [08-24|11:22:29.007] Successfully sealed new block number=5771 sealhash=9a10a2..581b9a hash=7b9844..d4cc19 elapsed=4.997s +INFO [08-24|11:22:29.008] Commit new sealing work number=5772 sealhash=dce274..39cd6b txs=0 gas=0 fees=0 elapsed="345.994µs" +INFO [08-24|11:22:29.861] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:22:34.007] Successfully sealed new block number=5772 sealhash=dce274..39cd6b hash=e87b7e..4beed8 elapsed=4.999s +INFO [08-24|11:22:34.007] Commit new sealing work number=5773 sealhash=0690d3..aaa9e6 txs=0 gas=0 fees=0 elapsed="233.139µs" +INFO [08-24|11:22:39.009] Successfully sealed new block number=5773 sealhash=0690d3..aaa9e6 hash=292068..7fdb72 elapsed=5.001s +INFO [08-24|11:22:39.009] Commit new sealing work number=5774 sealhash=ee57ec..deaf9b txs=0 gas=0 fees=0 elapsed="435.749µs" +INFO [08-24|11:22:39.881] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:22:44.009] Successfully sealed new block number=5774 sealhash=ee57ec..deaf9b hash=5160fc..01ff21 elapsed=4.999s +INFO [08-24|11:22:44.010] Commit new sealing work number=5775 sealhash=fbcde2..186826 txs=0 gas=0 fees=0 elapsed="325.725µs" +INFO [08-24|11:22:49.009] Successfully sealed new block number=5775 sealhash=fbcde2..186826 hash=4aa5d3..3ba1d9 elapsed=4.999s +INFO [08-24|11:22:49.010] Commit new sealing work number=5776 sealhash=1130c0..c294d4 txs=0 gas=0 fees=0 elapsed="569.476µs" +INFO [08-24|11:22:49.904] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:22:54.010] Successfully sealed new block number=5776 sealhash=1130c0..c294d4 hash=93d7ef..62ab91 elapsed=4.999s +INFO [08-24|11:22:54.010] Commit new sealing work number=5777 sealhash=215f9f..66b4fa txs=0 gas=0 fees=0 elapsed="352.739µs" +INFO [08-24|11:22:59.005] Successfully sealed new block number=5777 sealhash=215f9f..66b4fa hash=a3d205..9a070a elapsed=4.994s +INFO [08-24|11:22:59.005] Commit new sealing work number=5778 sealhash=5df31f..653417 txs=0 gas=0 fees=0 elapsed="327.009µs" +INFO [08-24|11:22:59.927] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:23:04.009] Successfully sealed new block number=5778 sealhash=5df31f..653417 hash=7849fb..0d3952 elapsed=5.003s +INFO [08-24|11:23:04.010] Commit new sealing work number=5779 sealhash=f1f2ae..d49635 txs=0 gas=0 fees=0 elapsed="353.336µs" +INFO [08-24|11:23:09.011] Successfully sealed new block number=5779 sealhash=f1f2ae..d49635 hash=58d335..a84890 elapsed=5.001s +INFO [08-24|11:23:09.012] Commit new sealing work number=5780 sealhash=5933b2..3a0e3b txs=0 gas=0 fees=0 elapsed="523.347µs" +INFO [08-24|11:23:09.947] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:23:14.010] Successfully sealed new block number=5780 sealhash=5933b2..3a0e3b hash=5b7e84..dd33eb elapsed=4.997s +INFO [08-24|11:23:14.010] Commit new sealing work number=5781 sealhash=1f3957..6ea4ad txs=0 gas=0 fees=0 elapsed="462.683µs" +INFO [08-24|11:23:19.009] Successfully sealed new block number=5781 sealhash=1f3957..6ea4ad hash=c1715a..100818 elapsed=4.998s +INFO [08-24|11:23:19.010] Commit new sealing work number=5782 sealhash=097230..73ea92 txs=0 gas=0 fees=0 elapsed="268.735µs" +INFO [08-24|11:23:19.967] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:23:24.006] Successfully sealed new block number=5782 sealhash=097230..73ea92 hash=86b40c..1095d4 elapsed=4.996s +INFO [08-24|11:23:24.006] Commit new sealing work number=5783 sealhash=e80b80..bd9dc2 txs=0 gas=0 fees=0 elapsed="230.285µs" +INFO [08-24|11:23:29.008] Successfully sealed new block number=5783 sealhash=e80b80..bd9dc2 hash=581cb0..a59b66 elapsed=5.001s +INFO [08-24|11:23:29.008] Commit new sealing work number=5784 sealhash=0506bc..dea24a txs=0 gas=0 fees=0 elapsed="281.53µs" +INFO [08-24|11:23:29.987] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:23:34.010] Successfully sealed new block number=5784 sealhash=0506bc..dea24a hash=dff722..b20468 elapsed=5.002s +INFO [08-24|11:23:34.011] Commit new sealing work number=5785 sealhash=60c26b..0eba3c txs=0 gas=0 fees=0 elapsed="328.421µs" +INFO [08-24|11:23:39.005] Successfully sealed new block number=5785 sealhash=60c26b..0eba3c hash=f3a1ca..cf21e3 elapsed=4.994s +INFO [08-24|11:23:39.006] Commit new sealing work number=5786 sealhash=9288aa..795cff txs=0 gas=0 fees=0 elapsed="641.815µs" +INFO [08-24|11:23:40.008] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:23:44.009] Successfully sealed new block number=5786 sealhash=9288aa..795cff hash=e58fd8..e84fbb elapsed=5.003s +INFO [08-24|11:23:44.010] Commit new sealing work number=5787 sealhash=060419..30f65e txs=0 gas=0 fees=0 elapsed="382.08µs" +INFO [08-24|11:23:49.010] Successfully sealed new block number=5787 sealhash=060419..30f65e hash=097501..d64712 elapsed=5.000s +INFO [08-24|11:23:49.010] Commit new sealing work number=5788 sealhash=7dc9af..30020d txs=0 gas=0 fees=0 elapsed="429.059µs" +INFO [08-24|11:23:50.029] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:23:54.006] Successfully sealed new block number=5788 sealhash=7dc9af..30020d hash=fbcebd..1e55e1 elapsed=4.995s +INFO [08-24|11:23:54.006] Commit new sealing work number=5789 sealhash=f7ec33..3400d9 txs=0 gas=0 fees=0 elapsed="325.52µs" +INFO [08-24|11:23:59.009] Successfully sealed new block number=5789 sealhash=f7ec33..3400d9 hash=94e5c6..1518e2 elapsed=5.002s +INFO [08-24|11:23:59.009] Commit new sealing work number=5790 sealhash=d3f3f1..e13897 txs=0 gas=0 fees=0 elapsed="259.102µs" +INFO [08-24|11:24:00.051] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:24:04.012] Successfully sealed new block number=5790 sealhash=d3f3f1..e13897 hash=67e5a1..63da02 elapsed=5.002s +INFO [08-24|11:24:04.012] Commit new sealing work number=5791 sealhash=15e714..5ee97b txs=0 gas=0 fees=0 elapsed="407.939µs" +INFO [08-24|11:24:09.010] Successfully sealed new block number=5791 sealhash=15e714..5ee97b hash=a41fb5..ed7e0d elapsed=4.997s +INFO [08-24|11:24:09.010] Commit new sealing work number=5792 sealhash=562a12..a6aadb txs=0 gas=0 fees=0 elapsed="421.134µs" +INFO [08-24|11:24:10.073] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:24:14.010] Successfully sealed new block number=5792 sealhash=562a12..a6aadb hash=6089e7..fad6ca elapsed=4.999s +INFO [08-24|11:24:14.011] Commit new sealing work number=5793 sealhash=11a8df..07d2ee txs=0 gas=0 fees=0 elapsed="311.893µs" +INFO [08-24|11:24:19.011] Successfully sealed new block number=5793 sealhash=11a8df..07d2ee hash=ce76ff..dce6eb elapsed=5.000s +INFO [08-24|11:24:19.012] Commit new sealing work number=5794 sealhash=af6b22..a17791 txs=0 gas=0 fees=0 elapsed="717.462µs" +INFO [08-24|11:24:20.098] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:24:24.010] Successfully sealed new block number=5794 sealhash=af6b22..a17791 hash=039163..5403e2 elapsed=4.998s +INFO [08-24|11:24:24.010] Commit new sealing work number=5795 sealhash=c76fc9..5a7662 txs=0 gas=0 fees=0 elapsed="336.14µs" +INFO [08-24|11:24:29.010] Successfully sealed new block number=5795 sealhash=c76fc9..5a7662 hash=050515..390fd8 elapsed=4.999s +INFO [08-24|11:24:29.011] Commit new sealing work number=5796 sealhash=2c2f0f..18cc35 txs=0 gas=0 fees=0 elapsed="400.986µs" +INFO [08-24|11:24:30.121] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:24:34.010] Successfully sealed new block number=5796 sealhash=2c2f0f..18cc35 hash=e6081e..31a184 elapsed=4.999s +INFO [08-24|11:24:34.010] Commit new sealing work number=5797 sealhash=ddf69a..7f628e txs=0 gas=0 fees=0 elapsed="333.482µs" +INFO [08-24|11:24:39.011] Successfully sealed new block number=5797 sealhash=ddf69a..7f628e hash=4e88f5..9d92aa elapsed=5.000s +INFO [08-24|11:24:39.012] Commit new sealing work number=5798 sealhash=ddce8b..d12223 txs=0 gas=0 fees=0 elapsed="303.634µs" +INFO [08-24|11:24:40.143] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:24:44.005] Successfully sealed new block number=5798 sealhash=ddce8b..d12223 hash=49cb19..dade1d elapsed=4.993s +INFO [08-24|11:24:44.006] Commit new sealing work number=5799 sealhash=1e7e5c..bafb05 txs=0 gas=0 fees=0 elapsed="240.722µs" +INFO [08-24|11:24:49.004] Successfully sealed new block number=5799 sealhash=1e7e5c..bafb05 hash=924a5d..ed8a75 elapsed=4.998s +INFO [08-24|11:24:49.004] Commit new sealing work number=5800 sealhash=4d3bc5..9edc30 txs=0 gas=0 fees=0 elapsed="294.556µs" +INFO [08-24|11:24:50.164] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:24:54.009] Successfully sealed new block number=5800 sealhash=4d3bc5..9edc30 hash=560866..7aeada elapsed=5.004s +INFO [08-24|11:24:54.009] Commit new sealing work number=5801 sealhash=96a588..6a8e49 txs=0 gas=0 fees=0 elapsed="423.106µs" +INFO [08-24|11:24:59.011] Successfully sealed new block number=5801 sealhash=96a588..6a8e49 hash=53b208..859d55 elapsed=5.001s +INFO [08-24|11:24:59.011] Commit new sealing work number=5802 sealhash=e9a887..3a9cae txs=0 gas=0 fees=0 elapsed="348.943µs" +INFO [08-24|11:25:00.188] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:25:04.008] Successfully sealed new block number=5802 sealhash=e9a887..3a9cae hash=a4f18f..71cc63 elapsed=4.997s +INFO [08-24|11:25:04.009] Commit new sealing work number=5803 sealhash=2f7920..f3cade txs=0 gas=0 fees=0 elapsed="355.07µs" +INFO [08-24|11:25:09.005] Successfully sealed new block number=5803 sealhash=2f7920..f3cade hash=95331a..e947b7 elapsed=4.996s +INFO [08-24|11:25:09.005] Commit new sealing work number=5804 sealhash=7bf4f3..3ed2df txs=0 gas=0 fees=0 elapsed="343.743µs" +INFO [08-24|11:25:10.209] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:25:14.010] Successfully sealed new block number=5804 sealhash=7bf4f3..3ed2df hash=5ca019..bdb9b2 elapsed=5.004s +INFO [08-24|11:25:14.010] Commit new sealing work number=5805 sealhash=1e7390..0a1d98 txs=0 gas=0 fees=0 elapsed="393.553µs" +INFO [08-24|11:25:19.005] Successfully sealed new block number=5805 sealhash=1e7390..0a1d98 hash=5b4c07..a562ab elapsed=4.995s +INFO [08-24|11:25:19.006] Commit new sealing work number=5806 sealhash=87eab9..493cf9 txs=0 gas=0 fees=0 elapsed="284.901µs" +INFO [08-24|11:25:20.230] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:25:24.008] Successfully sealed new block number=5806 sealhash=87eab9..493cf9 hash=c7b6cb..5d3674 elapsed=5.001s +INFO [08-24|11:25:24.008] Commit new sealing work number=5807 sealhash=cf56c8..d3ade4 txs=0 gas=0 fees=0 elapsed="385.962µs" +INFO [08-24|11:25:29.011] Successfully sealed new block number=5807 sealhash=cf56c8..d3ade4 hash=a465f8..ece376 elapsed=5.002s +INFO [08-24|11:25:29.011] Commit new sealing work number=5808 sealhash=087276..8fdab6 txs=0 gas=0 fees=0 elapsed="434.895µs" +INFO [08-24|11:25:30.255] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:25:34.012] Successfully sealed new block number=5808 sealhash=087276..8fdab6 hash=171994..2ca66e elapsed=5.000s +INFO [08-24|11:25:34.012] Commit new sealing work number=5809 sealhash=d1ee9a..dcad11 txs=0 gas=0 fees=0 elapsed="392.145µs" +INFO [08-24|11:25:39.010] Successfully sealed new block number=5809 sealhash=d1ee9a..dcad11 hash=103bbc..18ce83 elapsed=4.997s +INFO [08-24|11:25:39.011] Commit new sealing work number=5810 sealhash=47c14b..d0e727 txs=0 gas=0 fees=0 elapsed="243.388µs" +INFO [08-24|11:25:40.276] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:25:44.010] Successfully sealed new block number=5810 sealhash=47c14b..d0e727 hash=f4f045..55ea47 elapsed=4.999s +INFO [08-24|11:25:44.010] Commit new sealing work number=5811 sealhash=e4b614..64827a txs=0 gas=0 fees=0 elapsed="227.979µs" +INFO [08-24|11:25:49.009] Successfully sealed new block number=5811 sealhash=e4b614..64827a hash=3b839c..565718 elapsed=4.999s +INFO [08-24|11:25:49.010] Commit new sealing work number=5812 sealhash=087b86..4fa368 txs=0 gas=0 fees=0 elapsed="291.27µs" +INFO [08-24|11:25:50.299] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:25:54.006] Successfully sealed new block number=5812 sealhash=087b86..4fa368 hash=4c4324..b18571 elapsed=4.995s +INFO [08-24|11:25:54.006] Commit new sealing work number=5813 sealhash=f60505..9de979 txs=0 gas=0 fees=0 elapsed="256.838µs" +INFO [08-24|11:25:59.005] Successfully sealed new block number=5813 sealhash=f60505..9de979 hash=ce999d..e47820 elapsed=4.999s +INFO [08-24|11:25:59.006] Commit new sealing work number=5814 sealhash=16d12d..c864e8 txs=0 gas=0 fees=0 elapsed="324.101µs" +INFO [08-24|11:26:00.316] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:26:04.009] Successfully sealed new block number=5814 sealhash=16d12d..c864e8 hash=315710..ce38cb elapsed=5.003s +INFO [08-24|11:26:04.010] Commit new sealing work number=5815 sealhash=4b1f49..776351 txs=0 gas=0 fees=0 elapsed="261.625µs" +INFO [08-24|11:26:09.008] Successfully sealed new block number=5815 sealhash=4b1f49..776351 hash=a0842b..3617e2 elapsed=4.998s +INFO [08-24|11:26:09.008] Commit new sealing work number=5816 sealhash=37310e..c824db txs=0 gas=0 fees=0 elapsed="379.857µs" +INFO [08-24|11:26:10.337] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:26:14.011] Successfully sealed new block number=5816 sealhash=37310e..c824db hash=584dd6..bc1637 elapsed=5.002s +INFO [08-24|11:26:14.011] Commit new sealing work number=5817 sealhash=364062..462ffd txs=0 gas=0 fees=0 elapsed="595.923µs" +INFO [08-24|11:26:19.008] Successfully sealed new block number=5817 sealhash=364062..462ffd hash=2ae932..425314 elapsed=4.997s +INFO [08-24|11:26:19.009] Commit new sealing work number=5818 sealhash=52b59b..97e17d txs=0 gas=0 fees=0 elapsed="252.043µs" +INFO [08-24|11:26:20.359] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:26:24.005] Successfully sealed new block number=5818 sealhash=52b59b..97e17d hash=ea3921..3f8009 elapsed=4.996s +INFO [08-24|11:26:24.006] Commit new sealing work number=5819 sealhash=31a2cb..f55da8 txs=0 gas=0 fees=0 elapsed="466.147µs" +INFO [08-24|11:26:29.009] Successfully sealed new block number=5819 sealhash=31a2cb..f55da8 hash=6535b2..078144 elapsed=5.003s +INFO [08-24|11:26:29.009] Commit new sealing work number=5820 sealhash=c18c73..34bb66 txs=0 gas=0 fees=0 elapsed="286.199µs" +INFO [08-24|11:26:30.379] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:26:34.009] Successfully sealed new block number=5820 sealhash=c18c73..34bb66 hash=bcd0c5..77e89d elapsed=4.999s +INFO [08-24|11:26:34.010] Commit new sealing work number=5821 sealhash=0b385a..f84272 txs=0 gas=0 fees=0 elapsed="216.872µs" +INFO [08-24|11:26:39.005] Successfully sealed new block number=5821 sealhash=0b385a..f84272 hash=244cb1..50d09a elapsed=4.995s +INFO [08-24|11:26:39.006] Commit new sealing work number=5822 sealhash=8cc482..094d73 txs=0 gas=0 fees=0 elapsed="240.352µs" +INFO [08-24|11:26:40.402] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:26:44.011] Successfully sealed new block number=5822 sealhash=8cc482..094d73 hash=ca093a..6a641f elapsed=5.004s +INFO [08-24|11:26:44.011] Commit new sealing work number=5823 sealhash=5c6d52..36d973 txs=0 gas=0 fees=0 elapsed="278.955µs" +INFO [08-24|11:26:49.011] Successfully sealed new block number=5823 sealhash=5c6d52..36d973 hash=ec7184..4e567c elapsed=5.000s +INFO [08-24|11:26:49.012] Commit new sealing work number=5824 sealhash=4eac25..fa58bd txs=0 gas=0 fees=0 elapsed="301.339µs" +INFO [08-24|11:26:50.425] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:26:54.009] Successfully sealed new block number=5824 sealhash=4eac25..fa58bd hash=168e49..5d38ac elapsed=4.996s +INFO [08-24|11:26:54.009] Commit new sealing work number=5825 sealhash=0e1356..d6238e txs=0 gas=0 fees=0 elapsed="352.982µs" +INFO [08-24|11:26:59.008] Successfully sealed new block number=5825 sealhash=0e1356..d6238e hash=9d9ff3..00fc15 elapsed=4.999s +INFO [08-24|11:26:59.009] Commit new sealing work number=5826 sealhash=ea8c04..2c08da txs=0 gas=0 fees=0 elapsed="341.518µs" +INFO [08-24|11:27:00.449] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:27:04.008] Successfully sealed new block number=5826 sealhash=ea8c04..2c08da hash=05f734..f68b69 elapsed=4.999s +INFO [08-24|11:27:04.009] Commit new sealing work number=5827 sealhash=7b7078..58a0a8 txs=0 gas=0 fees=0 elapsed="284.747µs" +INFO [08-24|11:27:09.009] Successfully sealed new block number=5827 sealhash=7b7078..58a0a8 hash=0c8c22..5d98db elapsed=5.000s +INFO [08-24|11:27:09.010] Commit new sealing work number=5828 sealhash=1b718b..b166da txs=0 gas=0 fees=0 elapsed="384.473µs" +INFO [08-24|11:27:10.469] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:27:14.009] Successfully sealed new block number=5828 sealhash=1b718b..b166da hash=4cddaf..de50c3 elapsed=4.998s +INFO [08-24|11:27:14.009] Commit new sealing work number=5829 sealhash=d1095c..7f81e5 txs=0 gas=0 fees=0 elapsed="391.24µs" +INFO [08-24|11:27:19.008] Successfully sealed new block number=5829 sealhash=d1095c..7f81e5 hash=82edc6..9323e0 elapsed=4.998s +INFO [08-24|11:27:19.009] Commit new sealing work number=5830 sealhash=37fea8..196a61 txs=0 gas=0 fees=0 elapsed="551.681µs" +INFO [08-24|11:27:20.487] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:27:24.009] Successfully sealed new block number=5830 sealhash=37fea8..196a61 hash=a68112..36a292 elapsed=5.000s +INFO [08-24|11:27:24.010] Commit new sealing work number=5831 sealhash=155e13..9d26c2 txs=0 gas=0 fees=0 elapsed="309.506µs" +INFO [08-24|11:27:29.006] Successfully sealed new block number=5831 sealhash=155e13..9d26c2 hash=0d23a4..8b7d7a elapsed=4.996s +INFO [08-24|11:27:29.007] Commit new sealing work number=5832 sealhash=0c76f6..2d1949 txs=0 gas=0 fees=0 elapsed="597.679µs" +INFO [08-24|11:27:30.511] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:27:34.044] Successfully sealed new block number=5832 sealhash=0c76f6..2d1949 hash=19d0d1..5fe9ee elapsed=5.037s +INFO [08-24|11:27:34.045] Commit new sealing work number=5833 sealhash=2280cf..e094cf txs=0 gas=0 fees=0 elapsed="175.87µs" +INFO [08-24|11:27:39.008] Successfully sealed new block number=5833 sealhash=2280cf..e094cf hash=7c3e73..d9c035 elapsed=4.962s +INFO [08-24|11:27:39.008] Commit new sealing work number=5834 sealhash=8c2d17..18cc71 txs=0 gas=0 fees=0 elapsed="214.692µs" +INFO [08-24|11:27:40.531] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:27:44.010] Successfully sealed new block number=5834 sealhash=8c2d17..18cc71 hash=2c6881..a9b58d elapsed=5.002s +INFO [08-24|11:27:44.010] Commit new sealing work number=5835 sealhash=dd9fc4..517a96 txs=0 gas=0 fees=0 elapsed="359.004µs" +INFO [08-24|11:27:49.011] Successfully sealed new block number=5835 sealhash=dd9fc4..517a96 hash=f15ca7..a02f25 elapsed=5.000s +INFO [08-24|11:27:49.011] Commit new sealing work number=5836 sealhash=dd7d3f..8553dc txs=0 gas=0 fees=0 elapsed="308.519µs" +INFO [08-24|11:27:50.554] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:27:54.010] Successfully sealed new block number=5836 sealhash=dd7d3f..8553dc hash=6b84b8..e34cfb elapsed=4.999s +INFO [08-24|11:27:54.011] Commit new sealing work number=5837 sealhash=abb8db..a583ec txs=0 gas=0 fees=0 elapsed="368.063µs" +INFO [08-24|11:27:59.006] Successfully sealed new block number=5837 sealhash=abb8db..a583ec hash=65f22b..2d1b20 elapsed=4.994s +INFO [08-24|11:27:59.006] Commit new sealing work number=5838 sealhash=958d7b..b55a49 txs=0 gas=0 fees=0 elapsed="349.466µs" +INFO [08-24|11:28:00.577] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:28:04.011] Successfully sealed new block number=5838 sealhash=958d7b..b55a49 hash=f534d3..585cb3 elapsed=5.005s +INFO [08-24|11:28:04.012] Commit new sealing work number=5839 sealhash=d6c3cd..daf0ed txs=0 gas=0 fees=0 elapsed="455.28µs" +INFO [08-24|11:28:09.012] Successfully sealed new block number=5839 sealhash=d6c3cd..daf0ed hash=7ce218..e8a6d1 elapsed=4.999s +INFO [08-24|11:28:09.012] Commit new sealing work number=5840 sealhash=db3698..4aee92 txs=0 gas=0 fees=0 elapsed="444.94µs" +INFO [08-24|11:28:10.598] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:28:14.010] Successfully sealed new block number=5840 sealhash=db3698..4aee92 hash=6a9c46..9ab1ef elapsed=4.997s +INFO [08-24|11:28:14.010] Commit new sealing work number=5841 sealhash=1ff678..b5a151 txs=0 gas=0 fees=0 elapsed="308.947µs" +INFO [08-24|11:28:19.012] Successfully sealed new block number=5841 sealhash=1ff678..b5a151 hash=7561ed..c62972 elapsed=5.001s +INFO [08-24|11:28:19.012] Commit new sealing work number=5842 sealhash=ca5763..7e1035 txs=0 gas=0 fees=0 elapsed="329.925µs" +INFO [08-24|11:28:20.620] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:28:24.009] Successfully sealed new block number=5842 sealhash=ca5763..7e1035 hash=51f8e2..59690a elapsed=4.996s +INFO [08-24|11:28:24.009] Commit new sealing work number=5843 sealhash=112df9..a08f0c txs=0 gas=0 fees=0 elapsed="220.436µs" +INFO [08-24|11:28:29.011] Successfully sealed new block number=5843 sealhash=112df9..a08f0c hash=425cea..726744 elapsed=5.002s +INFO [08-24|11:28:29.012] Commit new sealing work number=5844 sealhash=2ed23a..9a009b txs=0 gas=0 fees=0 elapsed="299.353µs" +INFO [08-24|11:28:30.642] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:28:34.007] Successfully sealed new block number=5844 sealhash=2ed23a..9a009b hash=24f359..5b060b elapsed=4.994s +INFO [08-24|11:28:34.007] Commit new sealing work number=5845 sealhash=e2dc91..d0880d txs=0 gas=0 fees=0 elapsed="255.42µs" +INFO [08-24|11:28:39.011] Successfully sealed new block number=5845 sealhash=e2dc91..d0880d hash=aabafe..fc9ae8 elapsed=5.003s +INFO [08-24|11:28:39.011] Commit new sealing work number=5846 sealhash=efa353..d31fa8 txs=0 gas=0 fees=0 elapsed="412.284µs" +INFO [08-24|11:28:40.663] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:28:44.011] Successfully sealed new block number=5846 sealhash=efa353..d31fa8 hash=f68b3c..802e4b elapsed=4.999s +INFO [08-24|11:28:44.012] Commit new sealing work number=5847 sealhash=d8cd8a..b38e08 txs=0 gas=0 fees=0 elapsed="889.352µs" +INFO [08-24|11:28:49.005] Successfully sealed new block number=5847 sealhash=d8cd8a..b38e08 hash=0b3b89..70beec elapsed=4.993s +INFO [08-24|11:28:49.006] Commit new sealing work number=5848 sealhash=8f3193..7b4669 txs=0 gas=0 fees=0 elapsed="432.788µs" +INFO [08-24|11:28:50.685] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:28:54.010] Successfully sealed new block number=5848 sealhash=8f3193..7b4669 hash=a40efc..a3131c elapsed=5.004s +INFO [08-24|11:28:54.011] Commit new sealing work number=5849 sealhash=7a1069..e9c69e txs=0 gas=0 fees=0 elapsed="234.036µs" +INFO [08-24|11:28:59.010] Successfully sealed new block number=5849 sealhash=7a1069..e9c69e hash=ec0b2a..608add elapsed=4.998s +INFO [08-24|11:28:59.010] Commit new sealing work number=5850 sealhash=298edd..4ab58e txs=0 gas=0 fees=0 elapsed="300.632µs" +INFO [08-24|11:29:00.707] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:29:04.010] Successfully sealed new block number=5850 sealhash=298edd..4ab58e hash=140863..da271d elapsed=4.999s +INFO [08-24|11:29:04.010] Commit new sealing work number=5851 sealhash=f281af..790424 txs=0 gas=0 fees=0 elapsed="301.654µs" +INFO [08-24|11:29:09.011] Successfully sealed new block number=5851 sealhash=f281af..790424 hash=03e0c7..7e6a6f elapsed=5.000s +INFO [08-24|11:29:09.011] Commit new sealing work number=5852 sealhash=254178..8919fb txs=0 gas=0 fees=0 elapsed="404.76µs" +INFO [08-24|11:29:10.724] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:29:14.012] Successfully sealed new block number=5852 sealhash=254178..8919fb hash=3add0f..dd79ca elapsed=5.000s +INFO [08-24|11:29:14.013] Commit new sealing work number=5853 sealhash=26aca8..3c6316 txs=0 gas=0 fees=0 elapsed="391.478µs" +INFO [08-24|11:29:19.010] Successfully sealed new block number=5853 sealhash=26aca8..3c6316 hash=ec07d9..57ed7c elapsed=4.996s +INFO [08-24|11:29:19.010] Commit new sealing work number=5854 sealhash=60dfa2..f9854f txs=0 gas=0 fees=0 elapsed="391.481µs" +INFO [08-24|11:29:20.745] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:29:24.011] Successfully sealed new block number=5854 sealhash=60dfa2..f9854f hash=eccae6..1096af elapsed=5.001s +INFO [08-24|11:29:24.012] Commit new sealing work number=5855 sealhash=b6e1dc..c2fb33 txs=0 gas=0 fees=0 elapsed="349.502µs" +INFO [08-24|11:29:29.005] Successfully sealed new block number=5855 sealhash=b6e1dc..c2fb33 hash=db4dbf..b0d98b elapsed=4.993s +INFO [08-24|11:29:29.005] Commit new sealing work number=5856 sealhash=2d8b82..b8db38 txs=0 gas=0 fees=0 elapsed="259.894µs" +INFO [08-24|11:29:30.766] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:29:34.006] Successfully sealed new block number=5856 sealhash=2d8b82..b8db38 hash=e99ebd..374dd8 elapsed=5.000s +INFO [08-24|11:29:34.006] Commit new sealing work number=5857 sealhash=45d0a5..a73235 txs=0 gas=0 fees=0 elapsed="287.597µs" +INFO [08-24|11:29:39.012] Successfully sealed new block number=5857 sealhash=45d0a5..a73235 hash=e67fe5..daf43c elapsed=5.005s +INFO [08-24|11:29:39.012] Commit new sealing work number=5858 sealhash=fe7748..466338 txs=0 gas=0 fees=0 elapsed="427.724µs" +INFO [08-24|11:29:40.788] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:29:44.008] Successfully sealed new block number=5858 sealhash=fe7748..466338 hash=9e6c41..62fee0 elapsed=4.995s +INFO [08-24|11:29:44.009] Commit new sealing work number=5859 sealhash=f34e16..9c6349 txs=0 gas=0 fees=0 elapsed="381.579µs" +INFO [08-24|11:29:49.010] Successfully sealed new block number=5859 sealhash=f34e16..9c6349 hash=ab10ea..006619 elapsed=5.001s +INFO [08-24|11:29:49.011] Commit new sealing work number=5860 sealhash=0a2ecd..4eb96d txs=0 gas=0 fees=0 elapsed="402.264µs" +INFO [08-24|11:29:50.810] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:29:54.010] Successfully sealed new block number=5860 sealhash=0a2ecd..4eb96d hash=89787d..942f32 elapsed=4.999s +INFO [08-24|11:29:54.011] Commit new sealing work number=5861 sealhash=9fd0cc..d0fee1 txs=0 gas=0 fees=0 elapsed="427.544µs" +INFO [08-24|11:29:59.010] Successfully sealed new block number=5861 sealhash=9fd0cc..d0fee1 hash=21c1d9..cc9139 elapsed=4.998s +INFO [08-24|11:29:59.010] Commit new sealing work number=5862 sealhash=21ed94..c3d312 txs=0 gas=0 fees=0 elapsed="303.797µs" +INFO [08-24|11:30:00.831] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:30:04.009] Successfully sealed new block number=5862 sealhash=21ed94..c3d312 hash=11c6a5..eca60d elapsed=4.999s +INFO [08-24|11:30:04.010] Commit new sealing work number=5863 sealhash=47520e..06242c txs=0 gas=0 fees=0 elapsed="352.421µs" +INFO [08-24|11:30:09.011] Successfully sealed new block number=5863 sealhash=47520e..06242c hash=3c4b80..a8f809 elapsed=5.001s +INFO [08-24|11:30:09.012] Commit new sealing work number=5864 sealhash=95395e..131e7f txs=0 gas=0 fees=0 elapsed="555.535µs" +INFO [08-24|11:30:10.850] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:30:14.005] Successfully sealed new block number=5864 sealhash=95395e..131e7f hash=0e6c17..5a807a elapsed=4.993s +INFO [08-24|11:30:14.006] Commit new sealing work number=5865 sealhash=a90b5d..823879 txs=0 gas=0 fees=0 elapsed="284.513µs" +INFO [08-24|11:30:19.009] Successfully sealed new block number=5865 sealhash=a90b5d..823879 hash=8c79f3..2ae9ba elapsed=5.002s +INFO [08-24|11:30:19.009] Commit new sealing work number=5866 sealhash=297a65..4da323 txs=0 gas=0 fees=0 elapsed="426.46µs" +INFO [08-24|11:30:20.870] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:30:24.007] Successfully sealed new block number=5866 sealhash=297a65..4da323 hash=e0b382..3e1d6f elapsed=4.997s +INFO [08-24|11:30:24.007] Commit new sealing work number=5867 sealhash=617495..8b56db txs=0 gas=0 fees=0 elapsed="306.467µs" +INFO [08-24|11:30:29.008] Successfully sealed new block number=5867 sealhash=617495..8b56db hash=53056b..486c58 elapsed=5.000s +INFO [08-24|11:30:29.008] Commit new sealing work number=5868 sealhash=158a4e..c2b331 txs=0 gas=0 fees=0 elapsed="271.629µs" +INFO [08-24|11:30:30.889] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:30:34.009] Successfully sealed new block number=5868 sealhash=158a4e..c2b331 hash=79644f..4e5fb0 elapsed=5.000s +INFO [08-24|11:30:34.010] Commit new sealing work number=5869 sealhash=73c471..9f47ad txs=0 gas=0 fees=0 elapsed="376.309µs" +INFO [08-24|11:30:39.011] Successfully sealed new block number=5869 sealhash=73c471..9f47ad hash=597e38..ea8bad elapsed=5.001s +INFO [08-24|11:30:39.012] Commit new sealing work number=5870 sealhash=7ba9d5..e8094e txs=0 gas=0 fees=0 elapsed="364.381µs" +INFO [08-24|11:30:40.914] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:30:44.007] Successfully sealed new block number=5870 sealhash=7ba9d5..e8094e hash=54847f..4ad3d4 elapsed=4.995s +INFO [08-24|11:30:44.007] Commit new sealing work number=5871 sealhash=f2a8e1..363dba txs=0 gas=0 fees=0 elapsed="506.323µs" +INFO [08-24|11:30:49.010] Successfully sealed new block number=5871 sealhash=f2a8e1..363dba hash=a3c8b0..f428bc elapsed=5.002s +INFO [08-24|11:30:49.010] Commit new sealing work number=5872 sealhash=6dd99f..b83e63 txs=0 gas=0 fees=0 elapsed="252.843µs" +INFO [08-24|11:30:50.933] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:30:54.010] Successfully sealed new block number=5872 sealhash=6dd99f..b83e63 hash=0824e1..83847c elapsed=5.000s +INFO [08-24|11:30:54.011] Commit new sealing work number=5873 sealhash=9ca5e5..121dae txs=0 gas=0 fees=0 elapsed="309.855µs" +INFO [08-24|11:30:59.012] Successfully sealed new block number=5873 sealhash=9ca5e5..121dae hash=8d3ab2..d6b389 elapsed=5.000s +INFO [08-24|11:30:59.013] Commit new sealing work number=5874 sealhash=ee4072..f5d94c txs=0 gas=0 fees=0 elapsed="648.636µs" +INFO [08-24|11:31:00.950] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:31:04.012] Successfully sealed new block number=5874 sealhash=ee4072..f5d94c hash=95d710..b5c087 elapsed=4.998s +INFO [08-24|11:31:04.012] Commit new sealing work number=5875 sealhash=e2f60d..e2eed5 txs=0 gas=0 fees=0 elapsed="394.749µs" +INFO [08-24|11:31:09.009] Successfully sealed new block number=5875 sealhash=e2f60d..e2eed5 hash=c1149c..50d325 elapsed=4.996s +INFO [08-24|11:31:09.010] Commit new sealing work number=5876 sealhash=1cb640..16f5a3 txs=0 gas=0 fees=0 elapsed="316.133µs" +INFO [08-24|11:31:10.971] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:31:14.009] Successfully sealed new block number=5876 sealhash=1cb640..16f5a3 hash=260284..7f073e elapsed=4.999s +INFO [08-24|11:31:14.009] Commit new sealing work number=5877 sealhash=77e136..61f881 txs=0 gas=0 fees=0 elapsed="283.398µs" +INFO [08-24|11:31:19.008] Successfully sealed new block number=5877 sealhash=77e136..61f881 hash=8ae48a..c4696a elapsed=4.999s +INFO [08-24|11:31:19.009] Commit new sealing work number=5878 sealhash=b0a748..a7e6a2 txs=0 gas=0 fees=0 elapsed="354.471µs" +INFO [08-24|11:31:20.993] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:31:24.011] Successfully sealed new block number=5878 sealhash=b0a748..a7e6a2 hash=e18e6f..f1caf5 elapsed=5.001s +INFO [08-24|11:31:24.011] Commit new sealing work number=5879 sealhash=1da8f7..7ae83f txs=0 gas=0 fees=0 elapsed="353.331µs" +INFO [08-24|11:31:29.008] Successfully sealed new block number=5879 sealhash=1da8f7..7ae83f hash=319ebc..65e4ea elapsed=4.996s +INFO [08-24|11:31:29.008] Commit new sealing work number=5880 sealhash=3e8fff..e39558 txs=0 gas=0 fees=0 elapsed="335.495µs" +INFO [08-24|11:31:31.009] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:31:34.005] Successfully sealed new block number=5880 sealhash=3e8fff..e39558 hash=7b41f8..2879dd elapsed=4.996s +INFO [08-24|11:31:34.006] Commit new sealing work number=5881 sealhash=9f2743..7fc574 txs=0 gas=0 fees=0 elapsed="213.169µs" +INFO [08-24|11:31:39.012] Successfully sealed new block number=5881 sealhash=9f2743..7fc574 hash=5da633..0062b2 elapsed=5.006s +INFO [08-24|11:31:39.012] Commit new sealing work number=5882 sealhash=2700ab..9072f9 txs=0 gas=0 fees=0 elapsed="538.748µs" +INFO [08-24|11:31:41.031] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:31:44.009] Successfully sealed new block number=5882 sealhash=2700ab..9072f9 hash=15a905..6533ad elapsed=4.996s +INFO [08-24|11:31:44.010] Commit new sealing work number=5883 sealhash=733f2b..d65f92 txs=0 gas=0 fees=0 elapsed="300.36µs" +INFO [08-24|11:31:49.012] Successfully sealed new block number=5883 sealhash=733f2b..d65f92 hash=fc1f77..1604f2 elapsed=5.001s +INFO [08-24|11:31:49.012] Commit new sealing work number=5884 sealhash=7f3048..ddaccf txs=0 gas=0 fees=0 elapsed="558.797µs" +INFO [08-24|11:31:51.051] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:31:54.005] Successfully sealed new block number=5884 sealhash=7f3048..ddaccf hash=73647e..2af678 elapsed=4.993s +INFO [08-24|11:31:54.006] Commit new sealing work number=5885 sealhash=697941..13d37a txs=0 gas=0 fees=0 elapsed="495.642µs" +INFO [08-24|11:31:59.010] Successfully sealed new block number=5885 sealhash=697941..13d37a hash=3dc216..d3b7ba elapsed=5.003s +INFO [08-24|11:31:59.010] Commit new sealing work number=5886 sealhash=f8995d..e1f0cb txs=0 gas=0 fees=0 elapsed="284.353µs" +INFO [08-24|11:32:01.069] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:32:04.007] Successfully sealed new block number=5886 sealhash=f8995d..e1f0cb hash=098fbb..a61312 elapsed=4.997s +INFO [08-24|11:32:04.008] Commit new sealing work number=5887 sealhash=769571..43d5ac txs=0 gas=0 fees=0 elapsed="256.191µs" +INFO [08-24|11:32:09.007] Successfully sealed new block number=5887 sealhash=769571..43d5ac hash=06f17d..faefe2 elapsed=4.999s +INFO [08-24|11:32:09.007] Commit new sealing work number=5888 sealhash=8d6b3d..954f40 txs=0 gas=0 fees=0 elapsed="400.271µs" +INFO [08-24|11:32:11.089] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:32:14.006] Successfully sealed new block number=5888 sealhash=8d6b3d..954f40 hash=ae2427..00be76 elapsed=4.998s +INFO [08-24|11:32:14.006] Commit new sealing work number=5889 sealhash=962b29..98c962 txs=0 gas=0 fees=0 elapsed="285.201µs" +INFO [08-24|11:32:19.006] Successfully sealed new block number=5889 sealhash=962b29..98c962 hash=e95ef2..2b829c elapsed=4.999s +INFO [08-24|11:32:19.006] Commit new sealing work number=5890 sealhash=d314b5..9edaac txs=0 gas=0 fees=0 elapsed="262.818µs" +INFO [08-24|11:32:21.109] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:32:24.011] Successfully sealed new block number=5890 sealhash=d314b5..9edaac hash=e4fc11..a6fb91 elapsed=5.005s +INFO [08-24|11:32:24.012] Commit new sealing work number=5891 sealhash=60ef6c..2e0683 txs=0 gas=0 fees=0 elapsed="428.364µs" +INFO [08-24|11:32:29.011] Successfully sealed new block number=5891 sealhash=60ef6c..2e0683 hash=c3bb1b..7af376 elapsed=4.998s +INFO [08-24|11:32:29.011] Commit new sealing work number=5892 sealhash=e066d0..9fb372 txs=0 gas=0 fees=0 elapsed="292.604µs" +INFO [08-24|11:32:31.128] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:32:34.008] Successfully sealed new block number=5892 sealhash=e066d0..9fb372 hash=459f67..8ae1c3 elapsed=4.997s +INFO [08-24|11:32:34.009] Commit new sealing work number=5893 sealhash=7fec5e..c02690 txs=0 gas=0 fees=0 elapsed="435.254µs" +INFO [08-24|11:32:39.011] Successfully sealed new block number=5893 sealhash=7fec5e..c02690 hash=bee7e3..56854f elapsed=5.001s +INFO [08-24|11:32:39.011] Commit new sealing work number=5894 sealhash=c37af9..ab844b txs=0 gas=0 fees=0 elapsed="287.057µs" +INFO [08-24|11:32:41.149] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:32:44.004] Successfully sealed new block number=5894 sealhash=c37af9..ab844b hash=3ecdba..9f2635 elapsed=4.992s +INFO [08-24|11:32:44.004] Commit new sealing work number=5895 sealhash=b774dc..a32bc5 txs=0 gas=0 fees=0 elapsed="255.321µs" +INFO [08-24|11:32:49.005] Successfully sealed new block number=5895 sealhash=b774dc..a32bc5 hash=0c8c4b..ba3470 elapsed=5.000s +INFO [08-24|11:32:49.005] Commit new sealing work number=5896 sealhash=713d24..e71058 txs=0 gas=0 fees=0 elapsed="272.003µs" +INFO [08-24|11:32:51.167] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:32:54.009] Successfully sealed new block number=5896 sealhash=713d24..e71058 hash=6634bb..26faf8 elapsed=5.003s +INFO [08-24|11:32:54.010] Commit new sealing work number=5897 sealhash=8d0544..f53135 txs=0 gas=0 fees=0 elapsed="829.455µs" +INFO [08-24|11:32:59.008] Successfully sealed new block number=5897 sealhash=8d0544..f53135 hash=b28275..9e6c16 elapsed=4.998s +INFO [08-24|11:32:59.009] Commit new sealing work number=5898 sealhash=127d5e..e6ba20 txs=0 gas=0 fees=0 elapsed="398.314µs" +INFO [08-24|11:33:01.187] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:33:04.008] Successfully sealed new block number=5898 sealhash=127d5e..e6ba20 hash=d0bab1..e52d55 elapsed=4.998s +INFO [08-24|11:33:04.008] Commit new sealing work number=5899 sealhash=13880f..c1c53c txs=0 gas=0 fees=0 elapsed="277.54µs" +INFO [08-24|11:33:09.007] Successfully sealed new block number=5899 sealhash=13880f..c1c53c hash=f75c7c..807353 elapsed=4.999s +INFO [08-24|11:33:09.008] Commit new sealing work number=5900 sealhash=9326fe..a48505 txs=0 gas=0 fees=0 elapsed="313.949µs" +INFO [08-24|11:33:11.203] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:33:14.009] Successfully sealed new block number=5900 sealhash=9326fe..a48505 hash=ddc090..ff9b92 elapsed=5.000s +INFO [08-24|11:33:14.009] Commit new sealing work number=5901 sealhash=48b31a..1e2aa6 txs=0 gas=0 fees=0 elapsed="331.437µs" +INFO [08-24|11:33:19.006] Successfully sealed new block number=5901 sealhash=48b31a..1e2aa6 hash=9ee958..c1c237 elapsed=4.996s +INFO [08-24|11:33:19.006] Commit new sealing work number=5902 sealhash=312243..d670dd txs=0 gas=0 fees=0 elapsed="404.859µs" +INFO [08-24|11:33:21.225] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:33:24.009] Successfully sealed new block number=5902 sealhash=312243..d670dd hash=006ea4..df70bf elapsed=5.003s +INFO [08-24|11:33:24.010] Commit new sealing work number=5903 sealhash=19335e..e01537 txs=0 gas=0 fees=0 elapsed="421.71µs" +INFO [08-24|11:33:29.008] Successfully sealed new block number=5903 sealhash=19335e..e01537 hash=c000d4..3254c1 elapsed=4.997s +INFO [08-24|11:33:29.008] Commit new sealing work number=5904 sealhash=6d5963..d1c75a txs=0 gas=0 fees=0 elapsed="226.702µs" +INFO [08-24|11:33:31.244] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:33:34.010] Successfully sealed new block number=5904 sealhash=6d5963..d1c75a hash=d2df70..fe0570 elapsed=5.002s +INFO [08-24|11:33:34.010] Commit new sealing work number=5905 sealhash=62f920..d46155 txs=0 gas=0 fees=0 elapsed="338.654µs" +INFO [08-24|11:33:39.007] Successfully sealed new block number=5905 sealhash=62f920..d46155 hash=5207d4..9aa7f5 elapsed=4.996s +INFO [08-24|11:33:39.008] Commit new sealing work number=5906 sealhash=7b00bc..0ffe2d txs=0 gas=0 fees=0 elapsed="389.893µs" +INFO [08-24|11:33:41.260] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:33:44.010] Successfully sealed new block number=5906 sealhash=7b00bc..0ffe2d hash=d7dafe..0b6e5b elapsed=5.002s +INFO [08-24|11:33:44.010] Commit new sealing work number=5907 sealhash=8e1d2b..569851 txs=0 gas=0 fees=0 elapsed="311.835µs" +INFO [08-24|11:33:49.008] Successfully sealed new block number=5907 sealhash=8e1d2b..569851 hash=1bcb13..6a8197 elapsed=4.997s +INFO [08-24|11:33:49.008] Commit new sealing work number=5908 sealhash=c5569d..080c56 txs=0 gas=0 fees=0 elapsed="181.354µs" +INFO [08-24|11:33:51.280] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:33:54.005] Successfully sealed new block number=5908 sealhash=c5569d..080c56 hash=4278cc..9faa32 elapsed=4.997s +INFO [08-24|11:33:54.006] Commit new sealing work number=5909 sealhash=9b4600..746bd5 txs=0 gas=0 fees=0 elapsed="237.517µs" +INFO [08-24|11:33:59.010] Successfully sealed new block number=5909 sealhash=9b4600..746bd5 hash=cb5c85..f08601 elapsed=5.004s +INFO [08-24|11:33:59.011] Commit new sealing work number=5910 sealhash=85043f..6cf6b4 txs=0 gas=0 fees=0 elapsed="285.744µs" +INFO [08-24|11:34:01.303] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:34:04.009] Successfully sealed new block number=5910 sealhash=85043f..6cf6b4 hash=11b948..676697 elapsed=4.998s +INFO [08-24|11:34:04.010] Commit new sealing work number=5911 sealhash=5c1c9c..36eedf txs=0 gas=0 fees=0 elapsed="234.23µs" +INFO [08-24|11:34:09.007] Successfully sealed new block number=5911 sealhash=5c1c9c..36eedf hash=83e93c..794906 elapsed=4.996s +INFO [08-24|11:34:09.007] Commit new sealing work number=5912 sealhash=a72e7d..fcf68a txs=0 gas=0 fees=0 elapsed="328.942µs" +INFO [08-24|11:34:11.318] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:34:14.004] Successfully sealed new block number=5912 sealhash=a72e7d..fcf68a hash=554386..b3258d elapsed=4.997s +INFO [08-24|11:34:14.005] Commit new sealing work number=5913 sealhash=58dac7..04b966 txs=0 gas=0 fees=0 elapsed="686.132µs" +INFO [08-24|11:34:19.012] Successfully sealed new block number=5913 sealhash=58dac7..04b966 hash=8a9185..cb96ec elapsed=5.007s +INFO [08-24|11:34:19.013] Commit new sealing work number=5914 sealhash=f9ffa7..33bd36 txs=0 gas=0 fees=0 elapsed="252.064µs" +INFO [08-24|11:34:21.337] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:34:24.007] Successfully sealed new block number=5914 sealhash=f9ffa7..33bd36 hash=7b07ea..a3302b elapsed=4.994s +INFO [08-24|11:34:24.008] Commit new sealing work number=5915 sealhash=ba8cb1..bfe59c txs=0 gas=0 fees=0 elapsed="218.617µs" +INFO [08-24|11:34:29.006] Successfully sealed new block number=5915 sealhash=ba8cb1..bfe59c hash=bf6a74..91e034 elapsed=4.998s +INFO [08-24|11:34:29.007] Commit new sealing work number=5916 sealhash=3e28a2..bcc180 txs=0 gas=0 fees=0 elapsed="670.398µs" +INFO [08-24|11:34:31.356] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:34:34.007] Successfully sealed new block number=5916 sealhash=3e28a2..bcc180 hash=366164..3af8d9 elapsed=4.999s +INFO [08-24|11:34:34.007] Commit new sealing work number=5917 sealhash=977212..0e9207 txs=0 gas=0 fees=0 elapsed="221.581µs" +INFO [08-24|11:34:39.013] Successfully sealed new block number=5917 sealhash=977212..0e9207 hash=3f376b..8e3172 elapsed=5.006s +INFO [08-24|11:34:39.014] Commit new sealing work number=5918 sealhash=893195..0b3ba2 txs=0 gas=0 fees=0 elapsed="423.611µs" +INFO [08-24|11:34:41.375] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:34:44.006] Successfully sealed new block number=5918 sealhash=893195..0b3ba2 hash=85a772..4653c7 elapsed=4.992s +INFO [08-24|11:34:44.007] Commit new sealing work number=5919 sealhash=bdbf4d..e0b20b txs=0 gas=0 fees=0 elapsed="265.333µs" +INFO [08-24|11:34:49.007] Successfully sealed new block number=5919 sealhash=bdbf4d..e0b20b hash=92a496..257306 elapsed=5.000s +INFO [08-24|11:34:49.007] Commit new sealing work number=5920 sealhash=4836b7..68400e txs=0 gas=0 fees=0 elapsed="227.057µs" +INFO [08-24|11:34:51.392] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:34:54.006] Successfully sealed new block number=5920 sealhash=4836b7..68400e hash=b20a2c..03b86d elapsed=4.999s +INFO [08-24|11:34:54.007] Commit new sealing work number=5921 sealhash=ec4f83..a9b642 txs=0 gas=0 fees=0 elapsed="316.839µs" +INFO [08-24|11:34:59.004] Successfully sealed new block number=5921 sealhash=ec4f83..a9b642 hash=18bbf1..2c05c3 elapsed=4.997s +INFO [08-24|11:34:59.004] Commit new sealing work number=5922 sealhash=199e51..8bb141 txs=0 gas=0 fees=0 elapsed="238.016µs" +INFO [08-24|11:35:01.410] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:35:04.006] Successfully sealed new block number=5922 sealhash=199e51..8bb141 hash=854f21..ee395f elapsed=5.002s +INFO [08-24|11:35:04.007] Commit new sealing work number=5923 sealhash=ef1735..1a3088 txs=0 gas=0 fees=0 elapsed="258.044µs" +INFO [08-24|11:35:09.008] Successfully sealed new block number=5923 sealhash=ef1735..1a3088 hash=9f5a5a..705b7d elapsed=5.001s +INFO [08-24|11:35:09.008] Commit new sealing work number=5924 sealhash=bb76f6..253c7f txs=0 gas=0 fees=0 elapsed="325.699µs" +INFO [08-24|11:35:11.429] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:35:14.006] Successfully sealed new block number=5924 sealhash=bb76f6..253c7f hash=010cb2..587ef5 elapsed=4.997s +INFO [08-24|11:35:14.007] Commit new sealing work number=5925 sealhash=370d6f..8b7c41 txs=0 gas=0 fees=0 elapsed="198.469µs" +INFO [08-24|11:35:19.004] Successfully sealed new block number=5925 sealhash=370d6f..8b7c41 hash=e8789a..f3362c elapsed=4.997s +INFO [08-24|11:35:19.004] Commit new sealing work number=5926 sealhash=5f275d..090d5b txs=0 gas=0 fees=0 elapsed="292.89µs" +INFO [08-24|11:35:21.443] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:35:24.007] Successfully sealed new block number=5926 sealhash=5f275d..090d5b hash=515c51..6358c7 elapsed=5.002s +INFO [08-24|11:35:24.008] Commit new sealing work number=5927 sealhash=924d3a..6140a7 txs=0 gas=0 fees=0 elapsed="272.639µs" +INFO [08-24|11:35:29.006] Successfully sealed new block number=5927 sealhash=924d3a..6140a7 hash=aba850..9b6066 elapsed=4.998s +INFO [08-24|11:35:29.007] Commit new sealing work number=5928 sealhash=c39fa2..153a58 txs=0 gas=0 fees=0 elapsed="518.716µs" +INFO [08-24|11:35:31.461] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:35:34.008] Successfully sealed new block number=5928 sealhash=c39fa2..153a58 hash=2a6616..074d55 elapsed=5.000s +INFO [08-24|11:35:34.008] Commit new sealing work number=5929 sealhash=74bb8a..a6a79b txs=0 gas=0 fees=0 elapsed="232.851µs" +INFO [08-24|11:35:39.008] Successfully sealed new block number=5929 sealhash=74bb8a..a6a79b hash=29405f..fd4539 elapsed=4.999s +INFO [08-24|11:35:39.008] Commit new sealing work number=5930 sealhash=fb09b2..42c531 txs=0 gas=0 fees=0 elapsed="349.494µs" +INFO [08-24|11:35:41.480] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:35:44.006] Successfully sealed new block number=5930 sealhash=fb09b2..42c531 hash=fabbe7..b5c19f elapsed=4.997s +INFO [08-24|11:35:44.006] Commit new sealing work number=5931 sealhash=75c2dd..4cbc8e txs=0 gas=0 fees=0 elapsed="310.399µs" +INFO [08-24|11:35:49.006] Successfully sealed new block number=5931 sealhash=75c2dd..4cbc8e hash=c028a8..0be29b elapsed=4.999s +INFO [08-24|11:35:49.006] Commit new sealing work number=5932 sealhash=26d930..f79839 txs=0 gas=0 fees=0 elapsed="290.765µs" +INFO [08-24|11:35:51.498] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:35:54.007] Successfully sealed new block number=5932 sealhash=26d930..f79839 hash=b7bd6c..b9ff75 elapsed=5.000s +INFO [08-24|11:35:54.007] Commit new sealing work number=5933 sealhash=999d7b..0661e8 txs=0 gas=0 fees=0 elapsed="244.681µs" +INFO [08-24|11:35:59.005] Successfully sealed new block number=5933 sealhash=999d7b..0661e8 hash=9796f9..815010 elapsed=4.997s +INFO [08-24|11:35:59.005] Commit new sealing work number=5934 sealhash=0ec6ca..b39568 txs=0 gas=0 fees=0 elapsed="469.932µs" +INFO [08-24|11:36:01.517] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:36:04.006] Successfully sealed new block number=5934 sealhash=0ec6ca..b39568 hash=194b22..229986 elapsed=5.000s +INFO [08-24|11:36:04.006] Commit new sealing work number=5935 sealhash=33eec5..ac4d47 txs=0 gas=0 fees=0 elapsed="306.625µs" +INFO [08-24|11:36:09.007] Successfully sealed new block number=5935 sealhash=33eec5..ac4d47 hash=77c358..335b71 elapsed=5.000s +INFO [08-24|11:36:09.007] Commit new sealing work number=5936 sealhash=f1a2e3..b1f47b txs=0 gas=0 fees=0 elapsed="484.925µs" +INFO [08-24|11:36:11.535] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:36:14.007] Successfully sealed new block number=5936 sealhash=f1a2e3..b1f47b hash=221597..9968f8 elapsed=5.000s +INFO [08-24|11:36:14.008] Commit new sealing work number=5937 sealhash=23655b..c36d2b txs=0 gas=0 fees=0 elapsed="255.582µs" +INFO [08-24|11:36:19.007] Successfully sealed new block number=5937 sealhash=23655b..c36d2b hash=88ddee..2b3be1 elapsed=4.999s +INFO [08-24|11:36:19.007] Commit new sealing work number=5938 sealhash=1576b3..fd81e5 txs=0 gas=0 fees=0 elapsed="356.654µs" +INFO [08-24|11:36:21.553] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:36:24.007] Successfully sealed new block number=5938 sealhash=1576b3..fd81e5 hash=15fb85..41756d elapsed=5.000s +INFO [08-24|11:36:24.008] Commit new sealing work number=5939 sealhash=20ec2a..19587a txs=0 gas=0 fees=0 elapsed="364.712µs" +INFO [08-24|11:36:29.007] Successfully sealed new block number=5939 sealhash=20ec2a..19587a hash=6a4f1e..eced52 elapsed=4.999s +INFO [08-24|11:36:29.008] Commit new sealing work number=5940 sealhash=120da5..14cf16 txs=0 gas=0 fees=0 elapsed="241.381µs" +INFO [08-24|11:36:31.570] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:36:34.006] Successfully sealed new block number=5940 sealhash=120da5..14cf16 hash=5109b4..0e86f7 elapsed=4.998s +INFO [08-24|11:36:34.006] Commit new sealing work number=5941 sealhash=11c3d0..19b15b txs=0 gas=0 fees=0 elapsed="245.58µs" +INFO [08-24|11:36:39.007] Successfully sealed new block number=5941 sealhash=11c3d0..19b15b hash=831b6b..070d58 elapsed=5.000s +INFO [08-24|11:36:39.007] Commit new sealing work number=5942 sealhash=042381..28cdbd txs=0 gas=0 fees=0 elapsed="255.957µs" +INFO [08-24|11:36:41.588] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:36:44.006] Successfully sealed new block number=5942 sealhash=042381..28cdbd hash=714470..dac353 elapsed=4.998s +INFO [08-24|11:36:44.006] Commit new sealing work number=5943 sealhash=4a985c..a5b128 txs=0 gas=0 fees=0 elapsed="328.706µs" +INFO [08-24|11:36:49.007] Successfully sealed new block number=5943 sealhash=4a985c..a5b128 hash=8d1222..e522b5 elapsed=5.000s +INFO [08-24|11:36:49.007] Commit new sealing work number=5944 sealhash=7f296b..889aa5 txs=0 gas=0 fees=0 elapsed="253.84µs" +INFO [08-24|11:36:51.604] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:36:54.009] Successfully sealed new block number=5944 sealhash=7f296b..889aa5 hash=8413fe..fefa27 elapsed=5.001s +INFO [08-24|11:36:54.009] Commit new sealing work number=5945 sealhash=92d452..cfea0b txs=0 gas=0 fees=0 elapsed="362.346µs" +INFO [08-24|11:36:59.006] Successfully sealed new block number=5945 sealhash=92d452..cfea0b hash=b9de24..342d0a elapsed=4.996s +INFO [08-24|11:36:59.006] Commit new sealing work number=5946 sealhash=15cdec..e0e5ac txs=0 gas=0 fees=0 elapsed="293.51µs" +INFO [08-24|11:37:01.625] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:37:04.006] Successfully sealed new block number=5946 sealhash=15cdec..e0e5ac hash=cfa91f..5b71c0 elapsed=4.999s +INFO [08-24|11:37:04.006] Commit new sealing work number=5947 sealhash=c92e5c..0e8fa0 txs=0 gas=0 fees=0 elapsed="302.748µs" +INFO [08-24|11:37:09.005] Successfully sealed new block number=5947 sealhash=c92e5c..0e8fa0 hash=853c35..eb450f elapsed=4.999s +INFO [08-24|11:37:09.006] Commit new sealing work number=5948 sealhash=d961e3..ce2aaa txs=0 gas=0 fees=0 elapsed="403.164µs" +INFO [08-24|11:37:11.645] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:37:14.017] Successfully sealed new block number=5948 sealhash=d961e3..ce2aaa hash=06578d..521e2d elapsed=5.010s +INFO [08-24|11:37:14.018] Commit new sealing work number=5949 sealhash=803725..1b043c txs=0 gas=0 fees=0 elapsed="599.33µs" +INFO [08-24|11:37:19.015] Successfully sealed new block number=5949 sealhash=803725..1b043c hash=a3b7f1..269c61 elapsed=4.997s +INFO [08-24|11:37:19.016] Commit new sealing work number=5950 sealhash=3d1b30..8992e8 txs=0 gas=0 fees=0 elapsed="535.008µs" +INFO [08-24|11:37:21.662] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:37:24.013] Successfully sealed new block number=5950 sealhash=3d1b30..8992e8 hash=a7b2cc..241298 elapsed=4.996s +INFO [08-24|11:37:24.013] Commit new sealing work number=5951 sealhash=e33b17..743056 txs=0 gas=0 fees=0 elapsed="356.674µs" +INFO [08-24|11:37:29.018] Successfully sealed new block number=5951 sealhash=e33b17..743056 hash=5a1f0e..28b8da elapsed=5.004s +INFO [08-24|11:37:29.018] Commit new sealing work number=5952 sealhash=c3f3bc..e99218 txs=0 gas=0 fees=0 elapsed="279.155µs" +INFO [08-24|11:37:31.684] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:37:34.026] Successfully sealed new block number=5952 sealhash=c3f3bc..e99218 hash=fe2599..6a4501 elapsed=5.007s +INFO [08-24|11:37:34.026] Commit new sealing work number=5953 sealhash=3c1943..47b341 txs=0 gas=0 fees=0 elapsed="282.121µs" +INFO [08-24|11:37:39.022] Successfully sealed new block number=5953 sealhash=3c1943..47b341 hash=0538dd..313dd3 elapsed=4.996s +INFO [08-24|11:37:39.023] Commit new sealing work number=5954 sealhash=2883ba..216cb4 txs=0 gas=0 fees=0 elapsed="370.697µs" +INFO [08-24|11:37:41.706] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:37:44.019] Successfully sealed new block number=5954 sealhash=2883ba..216cb4 hash=b1dc6f..5f698a elapsed=4.995s +INFO [08-24|11:37:44.019] Commit new sealing work number=5955 sealhash=f5c543..2f10c5 txs=0 gas=0 fees=0 elapsed="499.083µs" +INFO [08-24|11:37:49.019] Successfully sealed new block number=5955 sealhash=f5c543..2f10c5 hash=31d4d6..390243 elapsed=4.999s +INFO [08-24|11:37:49.019] Commit new sealing work number=5956 sealhash=be8948..5cba3c txs=0 gas=0 fees=0 elapsed="311.457µs" +INFO [08-24|11:37:51.724] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:37:54.014] Successfully sealed new block number=5956 sealhash=be8948..5cba3c hash=07563b..54fd03 elapsed=4.995s +INFO [08-24|11:37:54.014] Commit new sealing work number=5957 sealhash=1995ab..ff43c7 txs=0 gas=0 fees=0 elapsed="255.53µs" +INFO [08-24|11:37:59.020] Successfully sealed new block number=5957 sealhash=1995ab..ff43c7 hash=28ec80..99b7bb elapsed=5.005s +INFO [08-24|11:37:59.020] Commit new sealing work number=5958 sealhash=d8edec..d4bd88 txs=0 gas=0 fees=0 elapsed="250.332µs" +INFO [08-24|11:38:01.741] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:38:04.019] Successfully sealed new block number=5958 sealhash=d8edec..d4bd88 hash=88d749..7ce3b8 elapsed=4.998s +INFO [08-24|11:38:04.019] Commit new sealing work number=5959 sealhash=5ff8ca..7cec3c txs=0 gas=0 fees=0 elapsed="244.108µs" +INFO [08-24|11:38:09.038] Successfully sealed new block number=5959 sealhash=5ff8ca..7cec3c hash=7a3ec0..981c07 elapsed=5.018s +INFO [08-24|11:38:09.039] Commit new sealing work number=5960 sealhash=0698ca..894b7a txs=0 gas=0 fees=0 elapsed="336.888µs" +INFO [08-24|11:38:11.759] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:38:14.028] Successfully sealed new block number=5960 sealhash=0698ca..894b7a hash=0218fa..23f591 elapsed=4.989s +INFO [08-24|11:38:14.029] Commit new sealing work number=5961 sealhash=0ee3ea..5ded8b txs=0 gas=0 fees=0 elapsed="293.125µs" +INFO [08-24|11:38:19.018] Successfully sealed new block number=5961 sealhash=0ee3ea..5ded8b hash=2c4a92..3b8b4e elapsed=4.989s +INFO [08-24|11:38:19.018] Commit new sealing work number=5962 sealhash=299cfc..5bcbef txs=0 gas=0 fees=0 elapsed="357.36µs" +INFO [08-24|11:38:21.779] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:38:24.023] Successfully sealed new block number=5962 sealhash=299cfc..5bcbef hash=5b5c1d..04c9b5 elapsed=5.004s +INFO [08-24|11:38:24.024] Commit new sealing work number=5963 sealhash=4e693b..ee4718 txs=0 gas=0 fees=0 elapsed="526.148µs" +INFO [08-24|11:38:29.028] Successfully sealed new block number=5963 sealhash=4e693b..ee4718 hash=909bc3..7fc513 elapsed=5.003s +INFO [08-24|11:38:29.028] Commit new sealing work number=5964 sealhash=9ca6b5..e6396e txs=0 gas=0 fees=0 elapsed="312.384µs" +INFO [08-24|11:38:31.798] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:38:34.012] Successfully sealed new block number=5964 sealhash=9ca6b5..e6396e hash=71ba7d..92205e elapsed=4.983s +INFO [08-24|11:38:34.013] Commit new sealing work number=5965 sealhash=53d28c..5a82a0 txs=0 gas=0 fees=0 elapsed="462.33µs" +INFO [08-24|11:38:39.028] Successfully sealed new block number=5965 sealhash=53d28c..5a82a0 hash=b90e95..ec9cc2 elapsed=5.015s +INFO [08-24|11:38:39.029] Commit new sealing work number=5966 sealhash=1ded88..e8be6f txs=0 gas=0 fees=0 elapsed="532.819µs" +INFO [08-24|11:38:41.815] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:38:44.015] Successfully sealed new block number=5966 sealhash=1ded88..e8be6f hash=5f0a3a..db797b elapsed=4.986s +INFO [08-24|11:38:44.016] Commit new sealing work number=5967 sealhash=d46dcc..5dec51 txs=0 gas=0 fees=0 elapsed="298.265µs" +INFO [08-24|11:38:49.028] Successfully sealed new block number=5967 sealhash=d46dcc..5dec51 hash=967836..5de5ac elapsed=5.012s +INFO [08-24|11:38:49.029] Commit new sealing work number=5968 sealhash=f48161..7016c2 txs=0 gas=0 fees=0 elapsed="365.696µs" +INFO [08-24|11:38:51.832] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:38:54.012] Successfully sealed new block number=5968 sealhash=f48161..7016c2 hash=32663b..575369 elapsed=4.982s +INFO [08-24|11:38:54.012] Commit new sealing work number=5969 sealhash=e39738..069315 txs=0 gas=0 fees=0 elapsed="361.229µs" +INFO [08-24|11:38:59.008] Successfully sealed new block number=5969 sealhash=e39738..069315 hash=01e21b..0c5470 elapsed=4.996s +INFO [08-24|11:38:59.009] Commit new sealing work number=5970 sealhash=06f48b..ebb633 txs=0 gas=0 fees=0 elapsed="352.359µs" +INFO [08-24|11:39:01.851] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:39:04.011] Successfully sealed new block number=5970 sealhash=06f48b..ebb633 hash=85163a..4d1ecd elapsed=5.001s +INFO [08-24|11:39:04.011] Commit new sealing work number=5971 sealhash=3c7e21..af908c txs=0 gas=0 fees=0 elapsed="367.027µs" +INFO [08-24|11:39:09.008] Successfully sealed new block number=5971 sealhash=3c7e21..af908c hash=9c1784..05bd78 elapsed=4.996s +INFO [08-24|11:39:09.008] Commit new sealing work number=5972 sealhash=0d21f5..0b6626 txs=0 gas=0 fees=0 elapsed="293.626µs" +INFO [08-24|11:39:11.872] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:39:14.006] Successfully sealed new block number=5972 sealhash=0d21f5..0b6626 hash=f2cac4..c052a4 elapsed=4.997s +INFO [08-24|11:39:14.006] Commit new sealing work number=5973 sealhash=56f837..a0c3f8 txs=0 gas=0 fees=0 elapsed="250.598µs" +INFO [08-24|11:39:19.011] Successfully sealed new block number=5973 sealhash=56f837..a0c3f8 hash=afc042..c04c7a elapsed=5.004s +INFO [08-24|11:39:19.011] Commit new sealing work number=5974 sealhash=57dea9..83d5f7 txs=0 gas=0 fees=0 elapsed="266.814µs" +INFO [08-24|11:39:21.893] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:39:24.005] Successfully sealed new block number=5974 sealhash=57dea9..83d5f7 hash=3303fd..a8c9e0 elapsed=4.994s +INFO [08-24|11:39:24.006] Commit new sealing work number=5975 sealhash=87a4c8..6235db txs=0 gas=0 fees=0 elapsed="330.328µs" +INFO [08-24|11:39:29.011] Successfully sealed new block number=5975 sealhash=87a4c8..6235db hash=e783ee..230c3b elapsed=5.004s +INFO [08-24|11:39:29.011] Commit new sealing work number=5976 sealhash=c57060..de939c txs=0 gas=0 fees=0 elapsed="426.012µs" +INFO [08-24|11:39:31.915] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:39:34.010] Successfully sealed new block number=5976 sealhash=c57060..de939c hash=b5e7b4..0deccd elapsed=4.998s +INFO [08-24|11:39:34.010] Commit new sealing work number=5977 sealhash=e11517..6b562e txs=0 gas=0 fees=0 elapsed="446.26µs" +INFO [08-24|11:39:39.009] Successfully sealed new block number=5977 sealhash=e11517..6b562e hash=647e35..29af03 elapsed=4.998s +INFO [08-24|11:39:39.009] Commit new sealing work number=5978 sealhash=e6bf86..a95185 txs=0 gas=0 fees=0 elapsed="254.133µs" +INFO [08-24|11:39:41.938] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:39:44.009] Successfully sealed new block number=5978 sealhash=e6bf86..a95185 hash=514b4a..8503e6 elapsed=5.000s +INFO [08-24|11:39:44.010] Commit new sealing work number=5979 sealhash=2c50f7..e7100d txs=0 gas=0 fees=0 elapsed="380.793µs" +INFO [08-24|11:39:49.010] Successfully sealed new block number=5979 sealhash=2c50f7..e7100d hash=fa9f64..9ace62 elapsed=5.000s +INFO [08-24|11:39:49.011] Commit new sealing work number=5980 sealhash=ad730d..e0fe79 txs=0 gas=0 fees=0 elapsed="458.284µs" +INFO [08-24|11:39:51.955] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:39:54.009] Successfully sealed new block number=5980 sealhash=ad730d..e0fe79 hash=2fb3a2..d418a7 elapsed=4.997s +INFO [08-24|11:39:54.009] Commit new sealing work number=5981 sealhash=b2afaf..a5275c txs=0 gas=0 fees=0 elapsed="354.487µs" +INFO [08-24|11:39:59.011] Successfully sealed new block number=5981 sealhash=b2afaf..a5275c hash=77b769..301cb7 elapsed=5.001s +INFO [08-24|11:39:59.012] Commit new sealing work number=5982 sealhash=88562d..18f6f8 txs=0 gas=0 fees=0 elapsed="304.45µs" +INFO [08-24|11:40:01.975] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:40:04.011] Successfully sealed new block number=5982 sealhash=88562d..18f6f8 hash=13de7b..621b72 elapsed=4.998s +INFO [08-24|11:40:04.011] Commit new sealing work number=5983 sealhash=b6056c..970b51 txs=0 gas=0 fees=0 elapsed="348.734µs" +INFO [08-24|11:40:09.010] Successfully sealed new block number=5983 sealhash=b6056c..970b51 hash=628220..31ff73 elapsed=4.999s +INFO [08-24|11:40:09.011] Commit new sealing work number=5984 sealhash=b668d6..d6ec0d txs=0 gas=0 fees=0 elapsed="249.013µs" +INFO [08-24|11:40:11.992] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:40:14.010] Successfully sealed new block number=5984 sealhash=b668d6..d6ec0d hash=eafe23..eed1e8 elapsed=4.998s +INFO [08-24|11:40:14.010] Commit new sealing work number=5985 sealhash=219be3..b16ebe txs=0 gas=0 fees=0 elapsed="211.979µs" +INFO [08-24|11:40:19.009] Successfully sealed new block number=5985 sealhash=219be3..b16ebe hash=59e3da..44fab4 elapsed=4.998s +INFO [08-24|11:40:19.009] Commit new sealing work number=5986 sealhash=ff58a8..b973ed txs=0 gas=0 fees=0 elapsed="313.485µs" +INFO [08-24|11:40:22.012] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:40:24.011] Successfully sealed new block number=5986 sealhash=ff58a8..b973ed hash=685924..060e56 elapsed=5.001s +INFO [08-24|11:40:24.011] Commit new sealing work number=5987 sealhash=4efcca..7ed10b txs=0 gas=0 fees=0 elapsed="397.129µs" +INFO [08-24|11:40:29.012] Successfully sealed new block number=5987 sealhash=4efcca..7ed10b hash=84a3b8..ce2378 elapsed=5.000s +INFO [08-24|11:40:29.013] Commit new sealing work number=5988 sealhash=a20092..3422a3 txs=0 gas=0 fees=0 elapsed="382.907µs" +INFO [08-24|11:40:32.031] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:40:34.009] Successfully sealed new block number=5988 sealhash=a20092..3422a3 hash=11f3e9..b0eda9 elapsed=4.996s +INFO [08-24|11:40:34.009] Commit new sealing work number=5989 sealhash=09079e..628656 txs=0 gas=0 fees=0 elapsed="306.419µs" +INFO [08-24|11:40:39.007] Successfully sealed new block number=5989 sealhash=09079e..628656 hash=a20ff3..32c492 elapsed=4.997s +INFO [08-24|11:40:39.007] Commit new sealing work number=5990 sealhash=c2328b..a0e7cf txs=0 gas=0 fees=0 elapsed="348.124µs" +INFO [08-24|11:40:42.049] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:40:44.011] Successfully sealed new block number=5990 sealhash=c2328b..a0e7cf hash=b1f45c..be88ff elapsed=5.003s +INFO [08-24|11:40:44.011] Commit new sealing work number=5991 sealhash=ef29d8..b820ef txs=0 gas=0 fees=0 elapsed="200.075µs" +INFO [08-24|11:40:49.009] Successfully sealed new block number=5991 sealhash=ef29d8..b820ef hash=9b8cd2..0adf06 elapsed=4.997s +INFO [08-24|11:40:49.009] Commit new sealing work number=5992 sealhash=578390..8502b7 txs=0 gas=0 fees=0 elapsed="270.576µs" +INFO [08-24|11:40:52.072] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:40:54.004] Successfully sealed new block number=5992 sealhash=578390..8502b7 hash=4b678b..1bec7e elapsed=4.994s +INFO [08-24|11:40:54.004] Commit new sealing work number=5993 sealhash=c676d5..abaf55 txs=0 gas=0 fees=0 elapsed="317.594µs" +INFO [08-24|11:40:59.010] Successfully sealed new block number=5993 sealhash=c676d5..abaf55 hash=7d5bfe..c55ee4 elapsed=5.006s +INFO [08-24|11:40:59.011] Commit new sealing work number=5994 sealhash=59ad42..3894da txs=0 gas=0 fees=0 elapsed="292.885µs" +INFO [08-24|11:41:02.091] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:41:04.012] Successfully sealed new block number=5994 sealhash=59ad42..3894da hash=e81a24..53a6a0 elapsed=5.000s +INFO [08-24|11:41:04.013] Commit new sealing work number=5995 sealhash=15be36..a014a6 txs=0 gas=0 fees=0 elapsed=1.041ms +INFO [08-24|11:41:09.006] Successfully sealed new block number=5995 sealhash=15be36..a014a6 hash=2bf1be..9fdd6f elapsed=4.993s +INFO [08-24|11:41:09.006] Commit new sealing work number=5996 sealhash=793d86..d66703 txs=0 gas=0 fees=0 elapsed="453.84µs" +INFO [08-24|11:41:12.111] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:41:14.005] Successfully sealed new block number=5996 sealhash=793d86..d66703 hash=c587e8..480f51 elapsed=4.998s +INFO [08-24|11:41:14.005] Commit new sealing work number=5997 sealhash=fd5e48..1e5070 txs=0 gas=0 fees=0 elapsed="295.477µs" +INFO [08-24|11:41:19.009] Successfully sealed new block number=5997 sealhash=fd5e48..1e5070 hash=5f70a6..9703d6 elapsed=5.003s +INFO [08-24|11:41:19.009] Commit new sealing work number=5998 sealhash=5a0d04..e87de1 txs=0 gas=0 fees=0 elapsed="317.029µs" +INFO [08-24|11:41:22.130] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:41:24.010] Successfully sealed new block number=5998 sealhash=5a0d04..e87de1 hash=d6afea..1b359c elapsed=5.000s +INFO [08-24|11:41:24.010] Commit new sealing work number=5999 sealhash=11de10..a194d9 txs=0 gas=0 fees=0 elapsed="415.311µs" +INFO [08-24|11:41:29.008] Successfully sealed new block number=5999 sealhash=11de10..a194d9 hash=34ff25..c8ab40 elapsed=4.997s +INFO [08-24|11:41:29.009] Commit new sealing work number=6000 sealhash=d10d82..d45788 txs=0 gas=0 fees=0 elapsed="737.445µs" +INFO [08-24|11:41:32.150] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:41:34.010] Successfully sealed new block number=6000 sealhash=d10d82..d45788 hash=9ff279..0b2113 elapsed=5.000s +INFO [08-24|11:41:34.011] Commit new sealing work number=6001 sealhash=e0c71c..ca9873 txs=0 gas=0 fees=0 elapsed="484.54µs" +INFO [08-24|11:41:39.010] Successfully sealed new block number=6001 sealhash=e0c71c..ca9873 hash=eb9761..6ae663 elapsed=4.998s +INFO [08-24|11:41:39.010] Commit new sealing work number=6002 sealhash=3ae38b..818260 txs=0 gas=0 fees=0 elapsed="565.136µs" +INFO [08-24|11:41:42.169] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:41:44.008] Successfully sealed new block number=6002 sealhash=3ae38b..818260 hash=4e07fd..e2c2a8 elapsed=4.997s +INFO [08-24|11:41:44.009] Commit new sealing work number=6003 sealhash=b3954b..44db2d txs=0 gas=0 fees=0 elapsed="510.06µs" +INFO [08-24|11:41:49.005] Successfully sealed new block number=6003 sealhash=b3954b..44db2d hash=d6054a..c9205d elapsed=4.996s +INFO [08-24|11:41:49.006] Commit new sealing work number=6004 sealhash=786d44..26b696 txs=0 gas=0 fees=0 elapsed="275.322µs" +INFO [08-24|11:41:52.192] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:41:54.009] Successfully sealed new block number=6004 sealhash=786d44..26b696 hash=ed4d91..830e4b elapsed=5.003s +INFO [08-24|11:41:54.009] Commit new sealing work number=6005 sealhash=4161d8..96aaca txs=0 gas=0 fees=0 elapsed="303.937µs" +INFO [08-24|11:41:59.009] Successfully sealed new block number=6005 sealhash=4161d8..96aaca hash=534fe6..e0c608 elapsed=5.000s +INFO [08-24|11:41:59.010] Commit new sealing work number=6006 sealhash=fffdb4..d47db1 txs=0 gas=0 fees=0 elapsed="336.203µs" +INFO [08-24|11:42:02.210] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:42:04.011] Successfully sealed new block number=6006 sealhash=fffdb4..d47db1 hash=33a1be..b53257 elapsed=5.001s +INFO [08-24|11:42:04.012] Commit new sealing work number=6007 sealhash=cfe9a3..172c29 txs=0 gas=0 fees=0 elapsed="474.264µs" +INFO [08-24|11:42:09.009] Successfully sealed new block number=6007 sealhash=cfe9a3..172c29 hash=e32eeb..d1a771 elapsed=4.997s +INFO [08-24|11:42:09.009] Commit new sealing work number=6008 sealhash=c7a156..a2441b txs=0 gas=0 fees=0 elapsed="290.547µs" +INFO [08-24|11:42:12.228] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:42:14.010] Successfully sealed new block number=6008 sealhash=c7a156..a2441b hash=eaf3a9..b6a48b elapsed=5.001s +INFO [08-24|11:42:14.011] Commit new sealing work number=6009 sealhash=d0f6e8..c415a9 txs=0 gas=0 fees=0 elapsed="381.676µs" +INFO [08-24|11:42:19.006] Successfully sealed new block number=6009 sealhash=d0f6e8..c415a9 hash=f1aba3..48d354 elapsed=4.995s +INFO [08-24|11:42:19.007] Commit new sealing work number=6010 sealhash=7e20ec..fdbd4e txs=0 gas=0 fees=0 elapsed="266.565µs" +INFO [08-24|11:42:22.248] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:42:24.012] Successfully sealed new block number=6010 sealhash=7e20ec..fdbd4e hash=3ff623..3533b8 elapsed=5.005s +INFO [08-24|11:42:24.012] Commit new sealing work number=6011 sealhash=474492..f72800 txs=0 gas=0 fees=0 elapsed="277.029µs" +INFO [08-24|11:42:29.012] Successfully sealed new block number=6011 sealhash=474492..f72800 hash=15d8bc..0fac42 elapsed=4.999s +INFO [08-24|11:42:29.013] Commit new sealing work number=6012 sealhash=687698..3d6904 txs=0 gas=0 fees=0 elapsed="413.84µs" +INFO [08-24|11:42:32.266] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:42:34.011] Successfully sealed new block number=6012 sealhash=687698..3d6904 hash=42cc74..dabb36 elapsed=4.998s +INFO [08-24|11:42:34.013] Commit new sealing work number=6013 sealhash=e57d74..3e4b8a txs=0 gas=0 fees=0 elapsed="810.745µs" +INFO [08-24|11:42:39.010] Successfully sealed new block number=6013 sealhash=e57d74..3e4b8a hash=a441a0..82968c elapsed=4.997s +INFO [08-24|11:42:39.010] Commit new sealing work number=6014 sealhash=d3b859..d18d09 txs=0 gas=0 fees=0 elapsed="332.383µs" +INFO [08-24|11:42:42.287] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:42:44.013] Successfully sealed new block number=6014 sealhash=d3b859..d18d09 hash=fd6fb2..b94cfd elapsed=5.003s +INFO [08-24|11:42:44.014] Commit new sealing work number=6015 sealhash=838523..8baf89 txs=0 gas=0 fees=0 elapsed="261.86µs" +INFO [08-24|11:42:49.011] Successfully sealed new block number=6015 sealhash=838523..8baf89 hash=1b59d6..925c24 elapsed=4.996s +INFO [08-24|11:42:49.011] Commit new sealing work number=6016 sealhash=b5564e..ffaf77 txs=0 gas=0 fees=0 elapsed="398.592µs" +INFO [08-24|11:42:52.309] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:42:54.010] Successfully sealed new block number=6016 sealhash=b5564e..ffaf77 hash=82fce7..c8d359 elapsed=4.998s +INFO [08-24|11:42:54.010] Commit new sealing work number=6017 sealhash=ad88c7..2d65cd txs=0 gas=0 fees=0 elapsed="356.508µs" +INFO [08-24|11:42:59.010] Successfully sealed new block number=6017 sealhash=ad88c7..2d65cd hash=9dbc99..358453 elapsed=4.999s +INFO [08-24|11:42:59.010] Commit new sealing work number=6018 sealhash=1f6e43..e8e670 txs=0 gas=0 fees=0 elapsed="326.23µs" +INFO [08-24|11:43:02.333] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:43:04.005] Successfully sealed new block number=6018 sealhash=1f6e43..e8e670 hash=1ad606..34ea49 elapsed=4.994s +INFO [08-24|11:43:04.006] Commit new sealing work number=6019 sealhash=e059b9..17cb4a txs=0 gas=0 fees=0 elapsed="329.968µs" +INFO [08-24|11:43:09.009] Successfully sealed new block number=6019 sealhash=e059b9..17cb4a hash=fec537..1a9955 elapsed=5.002s +INFO [08-24|11:43:09.009] Commit new sealing work number=6020 sealhash=de29e9..945756 txs=0 gas=0 fees=0 elapsed="333.866µs" +INFO [08-24|11:43:12.352] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:43:14.008] Successfully sealed new block number=6020 sealhash=de29e9..945756 hash=c138f2..116496 elapsed=4.998s +INFO [08-24|11:43:14.008] Commit new sealing work number=6021 sealhash=99a886..38aa2b txs=0 gas=0 fees=0 elapsed="257.291µs" +INFO [08-24|11:43:19.008] Successfully sealed new block number=6021 sealhash=99a886..38aa2b hash=3b1f36..33ee0e elapsed=5.000s +INFO [08-24|11:43:19.009] Commit new sealing work number=6022 sealhash=1753ab..74891e txs=0 gas=0 fees=0 elapsed="380.231µs" +INFO [08-24|11:43:22.370] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:43:24.009] Successfully sealed new block number=6022 sealhash=1753ab..74891e hash=b3b22a..02034b elapsed=5.000s +INFO [08-24|11:43:24.010] Commit new sealing work number=6023 sealhash=ca8d7a..414ad7 txs=0 gas=0 fees=0 elapsed="384.395µs" +INFO [08-24|11:43:29.011] Successfully sealed new block number=6023 sealhash=ca8d7a..414ad7 hash=fb53cf..1adf7a elapsed=5.000s +INFO [08-24|11:43:29.011] Commit new sealing work number=6024 sealhash=a95cf6..199be7 txs=0 gas=0 fees=0 elapsed="351.008µs" +INFO [08-24|11:43:32.387] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:43:34.010] Successfully sealed new block number=6024 sealhash=a95cf6..199be7 hash=a0bac6..01cebe elapsed=4.998s +INFO [08-24|11:43:34.011] Commit new sealing work number=6025 sealhash=896445..5b79ac txs=0 gas=0 fees=0 elapsed="230.705µs" +INFO [08-24|11:43:39.011] Successfully sealed new block number=6025 sealhash=896445..5b79ac hash=96c260..a5763b elapsed=5.000s +INFO [08-24|11:43:39.011] Commit new sealing work number=6026 sealhash=191ec1..7ed9fc txs=0 gas=0 fees=0 elapsed="291.238µs" +INFO [08-24|11:43:42.408] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:43:44.010] Successfully sealed new block number=6026 sealhash=191ec1..7ed9fc hash=934d68..a5e3c9 elapsed=4.999s +INFO [08-24|11:43:44.011] Commit new sealing work number=6027 sealhash=dce62a..59c56d txs=0 gas=0 fees=0 elapsed="295.351µs" +INFO [08-24|11:43:49.009] Successfully sealed new block number=6027 sealhash=dce62a..59c56d hash=2de7b4..4a1f41 elapsed=4.998s +INFO [08-24|11:43:49.010] Commit new sealing work number=6028 sealhash=a03c2e..58a6eb txs=0 gas=0 fees=0 elapsed="458.184µs" +INFO [08-24|11:43:52.424] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:43:54.009] Successfully sealed new block number=6028 sealhash=a03c2e..58a6eb hash=924e2f..30a94d elapsed=4.998s +INFO [08-24|11:43:54.009] Commit new sealing work number=6029 sealhash=a96aa6..ed45de txs=0 gas=0 fees=0 elapsed="364.192µs" +INFO [08-24|11:43:59.010] Successfully sealed new block number=6029 sealhash=a96aa6..ed45de hash=de479a..697cfc elapsed=5.001s +INFO [08-24|11:43:59.011] Commit new sealing work number=6030 sealhash=27fab6..a1e910 txs=0 gas=0 fees=0 elapsed="242.04µs" +INFO [08-24|11:44:02.446] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:44:04.006] Successfully sealed new block number=6030 sealhash=27fab6..a1e910 hash=dd6e28..2e3e8d elapsed=4.994s +INFO [08-24|11:44:04.006] Commit new sealing work number=6031 sealhash=4cbc44..62065c txs=0 gas=0 fees=0 elapsed="248.553µs" +INFO [08-24|11:44:09.010] Successfully sealed new block number=6031 sealhash=4cbc44..62065c hash=c5ea6e..921366 elapsed=5.003s +INFO [08-24|11:44:09.010] Commit new sealing work number=6032 sealhash=a1870e..2cef7d txs=0 gas=0 fees=0 elapsed="430.486µs" +INFO [08-24|11:44:12.466] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:44:14.010] Successfully sealed new block number=6032 sealhash=a1870e..2cef7d hash=a8a791..787568 elapsed=4.999s +INFO [08-24|11:44:14.010] Commit new sealing work number=6033 sealhash=5aaccc..961134 txs=0 gas=0 fees=0 elapsed="256.447µs" +INFO [08-24|11:44:19.006] Successfully sealed new block number=6033 sealhash=5aaccc..961134 hash=5a1496..7a40b8 elapsed=4.995s +INFO [08-24|11:44:19.006] Commit new sealing work number=6034 sealhash=3882bc..78c5ed txs=0 gas=0 fees=0 elapsed="351.637µs" +INFO [08-24|11:44:22.486] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:44:24.007] Successfully sealed new block number=6034 sealhash=3882bc..78c5ed hash=af9ef3..890096 elapsed=5.001s +INFO [08-24|11:44:24.008] Commit new sealing work number=6035 sealhash=6f5631..5259ba txs=0 gas=0 fees=0 elapsed="309.49µs" +INFO [08-24|11:44:29.009] Successfully sealed new block number=6035 sealhash=6f5631..5259ba hash=5f13ed..f3e074 elapsed=5.001s +INFO [08-24|11:44:29.009] Commit new sealing work number=6036 sealhash=d53ea0..8b9211 txs=0 gas=0 fees=0 elapsed="286.963µs" +INFO [08-24|11:44:32.507] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:44:34.005] Successfully sealed new block number=6036 sealhash=d53ea0..8b9211 hash=909689..06c386 elapsed=4.995s +INFO [08-24|11:44:34.005] Commit new sealing work number=6037 sealhash=43a65c..d5b4e0 txs=0 gas=0 fees=0 elapsed="229.823µs" +INFO [08-24|11:44:39.012] Successfully sealed new block number=6037 sealhash=43a65c..d5b4e0 hash=415ed9..12d595 elapsed=5.006s +INFO [08-24|11:44:39.013] Commit new sealing work number=6038 sealhash=46de99..a91464 txs=0 gas=0 fees=0 elapsed=1.229ms +INFO [08-24|11:44:42.527] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:44:44.006] Successfully sealed new block number=6038 sealhash=46de99..a91464 hash=57d4ee..146e96 elapsed=4.993s +INFO [08-24|11:44:44.007] Commit new sealing work number=6039 sealhash=1a8537..4db735 txs=0 gas=0 fees=0 elapsed="246.686µs" +INFO [08-24|11:44:49.010] Successfully sealed new block number=6039 sealhash=1a8537..4db735 hash=8e8610..c30e0e elapsed=5.003s +INFO [08-24|11:44:49.010] Commit new sealing work number=6040 sealhash=16bb62..4e3497 txs=0 gas=0 fees=0 elapsed="529.157µs" +INFO [08-24|11:44:52.547] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:44:54.009] Successfully sealed new block number=6040 sealhash=16bb62..4e3497 hash=158f76..d3d418 elapsed=4.998s +INFO [08-24|11:44:54.009] Commit new sealing work number=6041 sealhash=e3fb9c..b926a7 txs=0 gas=0 fees=0 elapsed="369.382µs" +INFO [08-24|11:44:59.011] Successfully sealed new block number=6041 sealhash=e3fb9c..b926a7 hash=cbf2cf..355073 elapsed=5.001s +INFO [08-24|11:44:59.012] Commit new sealing work number=6042 sealhash=266eac..695b22 txs=0 gas=0 fees=0 elapsed="361.284µs" +INFO [08-24|11:45:02.566] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:45:04.010] Successfully sealed new block number=6042 sealhash=266eac..695b22 hash=09e686..748516 elapsed=4.998s +INFO [08-24|11:45:04.010] Commit new sealing work number=6043 sealhash=9a660b..9bdfd0 txs=0 gas=0 fees=0 elapsed="372.303µs" +INFO [08-24|11:45:09.005] Successfully sealed new block number=6043 sealhash=9a660b..9bdfd0 hash=dc6c35..315421 elapsed=4.994s +INFO [08-24|11:45:09.006] Commit new sealing work number=6044 sealhash=dcf645..5f8b6f txs=0 gas=0 fees=0 elapsed="301.497µs" +INFO [08-24|11:45:12.586] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:45:14.011] Successfully sealed new block number=6044 sealhash=dcf645..5f8b6f hash=a2f14f..34ff9f elapsed=5.005s +INFO [08-24|11:45:14.011] Commit new sealing work number=6045 sealhash=523495..8a100b txs=0 gas=0 fees=0 elapsed="223.056µs" +INFO [08-24|11:45:19.010] Successfully sealed new block number=6045 sealhash=523495..8a100b hash=676578..84f97a elapsed=4.998s +INFO [08-24|11:45:19.011] Commit new sealing work number=6046 sealhash=f928b0..52a013 txs=0 gas=0 fees=0 elapsed="381.799µs" +INFO [08-24|11:45:22.604] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:45:24.010] Successfully sealed new block number=6046 sealhash=f928b0..52a013 hash=53b177..46ad71 elapsed=4.999s +INFO [08-24|11:45:24.011] Commit new sealing work number=6047 sealhash=613a2d..841b75 txs=0 gas=0 fees=0 elapsed="480.24µs" +INFO [08-24|11:45:29.013] Successfully sealed new block number=6047 sealhash=613a2d..841b75 hash=5d42c5..d8d519 elapsed=5.001s +INFO [08-24|11:45:29.013] Commit new sealing work number=6048 sealhash=380129..3b81df txs=0 gas=0 fees=0 elapsed="329.014µs" +INFO [08-24|11:45:32.629] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:45:34.011] Successfully sealed new block number=6048 sealhash=380129..3b81df hash=1a53cd..9bbb3d elapsed=4.998s +INFO [08-24|11:45:34.012] Commit new sealing work number=6049 sealhash=75d0f0..9be659 txs=0 gas=0 fees=0 elapsed="418.704µs" +INFO [08-24|11:45:39.007] Successfully sealed new block number=6049 sealhash=75d0f0..9be659 hash=46cf39..e6421e elapsed=4.995s +INFO [08-24|11:45:39.007] Commit new sealing work number=6050 sealhash=cece7b..816ed4 txs=0 gas=0 fees=0 elapsed="265.395µs" +INFO [08-24|11:45:42.650] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:45:44.006] Successfully sealed new block number=6050 sealhash=cece7b..816ed4 hash=c46cce..902fa9 elapsed=4.998s +INFO [08-24|11:45:44.006] Commit new sealing work number=6051 sealhash=54a17e..59b445 txs=0 gas=0 fees=0 elapsed="235.222µs" +INFO [08-24|11:45:49.010] Successfully sealed new block number=6051 sealhash=54a17e..59b445 hash=d63db6..1f3ec3 elapsed=5.003s +INFO [08-24|11:45:49.010] Commit new sealing work number=6052 sealhash=0cfc5d..de1f63 txs=0 gas=0 fees=0 elapsed="331.942µs" +INFO [08-24|11:45:52.670] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:45:54.012] Successfully sealed new block number=6052 sealhash=0cfc5d..de1f63 hash=03873a..6c0cfb elapsed=5.001s +INFO [08-24|11:45:54.012] Commit new sealing work number=6053 sealhash=a78bd8..224ea3 txs=0 gas=0 fees=0 elapsed="318.028µs" +INFO [08-24|11:45:59.005] Successfully sealed new block number=6053 sealhash=a78bd8..224ea3 hash=2d9abc..6193dd elapsed=4.993s +INFO [08-24|11:45:59.006] Commit new sealing work number=6054 sealhash=d82309..73c928 txs=0 gas=0 fees=0 elapsed="306.871µs" +INFO [08-24|11:46:02.689] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:46:04.009] Successfully sealed new block number=6054 sealhash=d82309..73c928 hash=97be3a..c59e6a elapsed=5.003s +INFO [08-24|11:46:04.010] Commit new sealing work number=6055 sealhash=374e11..b81539 txs=0 gas=0 fees=0 elapsed="382.777µs" +INFO [08-24|11:46:09.005] Successfully sealed new block number=6055 sealhash=374e11..b81539 hash=a2a290..80a75e elapsed=4.995s +INFO [08-24|11:46:09.006] Commit new sealing work number=6056 sealhash=9bbff5..c9a93c txs=0 gas=0 fees=0 elapsed="327.498µs" +INFO [08-24|11:46:12.708] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:46:14.012] Successfully sealed new block number=6056 sealhash=9bbff5..c9a93c hash=2b6a7a..22dbe4 elapsed=5.006s +INFO [08-24|11:46:14.012] Commit new sealing work number=6057 sealhash=304342..21128f txs=0 gas=0 fees=0 elapsed="328.125µs" +INFO [08-24|11:46:19.009] Successfully sealed new block number=6057 sealhash=304342..21128f hash=d78f70..6705a2 elapsed=4.996s +INFO [08-24|11:46:19.009] Commit new sealing work number=6058 sealhash=3ad8df..a0dd9b txs=0 gas=0 fees=0 elapsed="451.076µs" +INFO [08-24|11:46:22.729] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:46:24.008] Successfully sealed new block number=6058 sealhash=3ad8df..a0dd9b hash=bfac3a..448823 elapsed=4.998s +INFO [08-24|11:46:24.009] Commit new sealing work number=6059 sealhash=4d23c8..aae1fd txs=0 gas=0 fees=0 elapsed="353.728µs" +INFO [08-24|11:46:29.011] Successfully sealed new block number=6059 sealhash=4d23c8..aae1fd hash=216cab..64b41f elapsed=5.002s +INFO [08-24|11:46:29.011] Commit new sealing work number=6060 sealhash=85370b..7c3fea txs=0 gas=0 fees=0 elapsed="264.839µs" +INFO [08-24|11:46:32.748] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:46:34.008] Successfully sealed new block number=6060 sealhash=85370b..7c3fea hash=191f14..c33577 elapsed=4.996s +INFO [08-24|11:46:34.008] Commit new sealing work number=6061 sealhash=30878e..349d4f txs=0 gas=0 fees=0 elapsed="230.508µs" +INFO [08-24|11:46:39.005] Successfully sealed new block number=6061 sealhash=30878e..349d4f hash=080445..08fa6b elapsed=4.996s +INFO [08-24|11:46:39.005] Commit new sealing work number=6062 sealhash=8fa4a5..f2d831 txs=0 gas=0 fees=0 elapsed="354.188µs" +INFO [08-24|11:46:42.769] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:46:44.010] Successfully sealed new block number=6062 sealhash=8fa4a5..f2d831 hash=a5e1d5..2531f4 elapsed=5.004s +INFO [08-24|11:46:44.010] Commit new sealing work number=6063 sealhash=65107e..48976c txs=0 gas=0 fees=0 elapsed="322.267µs" +INFO [08-24|11:46:49.010] Successfully sealed new block number=6063 sealhash=65107e..48976c hash=fcd4d8..b89db8 elapsed=5.000s +INFO [08-24|11:46:49.011] Commit new sealing work number=6064 sealhash=beead3..f948c8 txs=0 gas=0 fees=0 elapsed="392.211µs" +INFO [08-24|11:46:52.789] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:46:54.008] Successfully sealed new block number=6064 sealhash=beead3..f948c8 hash=969bad..c5180b elapsed=4.997s +INFO [08-24|11:46:54.009] Commit new sealing work number=6065 sealhash=a0d122..79fcb8 txs=0 gas=0 fees=0 elapsed="185.505µs" +INFO [08-24|11:46:59.012] Successfully sealed new block number=6065 sealhash=a0d122..79fcb8 hash=12a5a0..d37872 elapsed=5.003s +INFO [08-24|11:46:59.013] Commit new sealing work number=6066 sealhash=dc1fe7..4d6191 txs=0 gas=0 fees=0 elapsed="394.551µs" +INFO [08-24|11:47:02.811] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:47:04.005] Successfully sealed new block number=6066 sealhash=dc1fe7..4d6191 hash=96eccf..4125b6 elapsed=4.991s +INFO [08-24|11:47:04.005] Commit new sealing work number=6067 sealhash=681d16..3095ec txs=0 gas=0 fees=0 elapsed="240.297µs" +INFO [08-24|11:47:09.010] Successfully sealed new block number=6067 sealhash=681d16..3095ec hash=bb1271..9d465c elapsed=5.004s +INFO [08-24|11:47:09.010] Commit new sealing work number=6068 sealhash=38f6a3..04a81c txs=0 gas=0 fees=0 elapsed="484.059µs" +INFO [08-24|11:47:12.830] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:47:14.012] Successfully sealed new block number=6068 sealhash=38f6a3..04a81c hash=aaca75..d07a08 elapsed=5.001s +INFO [08-24|11:47:14.012] Commit new sealing work number=6069 sealhash=d9bc9c..45cd5a txs=0 gas=0 fees=0 elapsed="510.348µs" +INFO [08-24|11:47:19.006] Successfully sealed new block number=6069 sealhash=d9bc9c..45cd5a hash=d965ba..c2df69 elapsed=4.993s +INFO [08-24|11:47:19.007] Commit new sealing work number=6070 sealhash=4e21b6..549d79 txs=0 gas=0 fees=0 elapsed="805.241µs" +INFO [08-24|11:47:22.848] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:47:24.005] Successfully sealed new block number=6070 sealhash=4e21b6..549d79 hash=51e1f9..00a059 elapsed=4.997s +INFO [08-24|11:47:24.005] Commit new sealing work number=6071 sealhash=0b53ae..fd6069 txs=0 gas=0 fees=0 elapsed="370.39µs" +INFO [08-24|11:47:29.008] Successfully sealed new block number=6071 sealhash=0b53ae..fd6069 hash=e3aac0..5e234c elapsed=5.003s +INFO [08-24|11:47:29.009] Commit new sealing work number=6072 sealhash=80bf22..60bc39 txs=0 gas=0 fees=0 elapsed="210.019µs" +INFO [08-24|11:47:32.865] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:47:34.011] Successfully sealed new block number=6072 sealhash=80bf22..60bc39 hash=cdcf78..e37a0e elapsed=5.002s +INFO [08-24|11:47:34.012] Commit new sealing work number=6073 sealhash=f9c9e2..f3bcaf txs=0 gas=0 fees=0 elapsed="295.739µs" +INFO [08-24|11:47:39.004] Successfully sealed new block number=6073 sealhash=f9c9e2..f3bcaf hash=437dba..a7a89c elapsed=4.992s +INFO [08-24|11:47:39.005] Commit new sealing work number=6074 sealhash=9641ff..1da3e1 txs=0 gas=0 fees=0 elapsed="226.138µs" +INFO [08-24|11:47:42.886] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:47:44.011] Successfully sealed new block number=6074 sealhash=9641ff..1da3e1 hash=872258..fd3b10 elapsed=5.006s +INFO [08-24|11:47:44.012] Commit new sealing work number=6075 sealhash=82a69d..aa9391 txs=0 gas=0 fees=0 elapsed="392.585µs" +INFO [08-24|11:47:49.009] Successfully sealed new block number=6075 sealhash=82a69d..aa9391 hash=cb8921..0ac789 elapsed=4.997s +INFO [08-24|11:47:49.010] Commit new sealing work number=6076 sealhash=06b150..3fc4a8 txs=0 gas=0 fees=0 elapsed="337.487µs" +INFO [08-24|11:47:52.904] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:47:54.010] Successfully sealed new block number=6076 sealhash=06b150..3fc4a8 hash=00147e..b8b630 elapsed=5.000s +INFO [08-24|11:47:54.010] Commit new sealing work number=6077 sealhash=b57f77..f3b210 txs=0 gas=0 fees=0 elapsed="321.085µs" +INFO [08-24|11:47:59.011] Successfully sealed new block number=6077 sealhash=b57f77..f3b210 hash=fa812b..760927 elapsed=5.000s +INFO [08-24|11:47:59.012] Commit new sealing work number=6078 sealhash=e00377..8ce6ac txs=0 gas=0 fees=0 elapsed="368.508µs" +INFO [08-24|11:48:02.925] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:48:04.010] Successfully sealed new block number=6078 sealhash=e00377..8ce6ac hash=f2ab5f..8a1d34 elapsed=4.998s +INFO [08-24|11:48:04.011] Commit new sealing work number=6079 sealhash=b2663c..45d581 txs=0 gas=0 fees=0 elapsed="372.925µs" +INFO [08-24|11:48:09.004] Successfully sealed new block number=6079 sealhash=b2663c..45d581 hash=a044a8..cd21d3 elapsed=4.993s +INFO [08-24|11:48:09.005] Commit new sealing work number=6080 sealhash=c5f435..aaaaac txs=0 gas=0 fees=0 elapsed="347.497µs" +INFO [08-24|11:48:12.946] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:48:14.004] Successfully sealed new block number=6080 sealhash=c5f435..aaaaac hash=9cc21c..3d7030 elapsed=4.999s +INFO [08-24|11:48:14.005] Commit new sealing work number=6081 sealhash=03d58a..9f569f txs=0 gas=0 fees=0 elapsed="289.18µs" +INFO [08-24|11:48:19.009] Successfully sealed new block number=6081 sealhash=03d58a..9f569f hash=e3a7a7..d12612 elapsed=5.004s +INFO [08-24|11:48:19.009] Commit new sealing work number=6082 sealhash=e1b61d..b22bbc txs=0 gas=0 fees=0 elapsed="226.172µs" +INFO [08-24|11:48:22.964] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:48:24.010] Successfully sealed new block number=6082 sealhash=e1b61d..b22bbc hash=ff8d0a..a512a3 elapsed=5.000s +INFO [08-24|11:48:24.010] Commit new sealing work number=6083 sealhash=b8cdbe..a6822e txs=0 gas=0 fees=0 elapsed="334.517µs" +INFO [08-24|11:48:29.011] Successfully sealed new block number=6083 sealhash=b8cdbe..a6822e hash=62289a..1095ed elapsed=5.000s +INFO [08-24|11:48:29.012] Commit new sealing work number=6084 sealhash=4d407b..beaa3f txs=0 gas=0 fees=0 elapsed="238.489µs" +INFO [08-24|11:48:32.980] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:48:34.009] Successfully sealed new block number=6084 sealhash=4d407b..beaa3f hash=11f92f..6a145e elapsed=4.997s +INFO [08-24|11:48:34.010] Commit new sealing work number=6085 sealhash=28ba09..08baae txs=0 gas=0 fees=0 elapsed="303.146µs" +INFO [08-24|11:48:39.008] Successfully sealed new block number=6085 sealhash=28ba09..08baae hash=996560..5054c7 elapsed=4.997s +INFO [08-24|11:48:39.008] Commit new sealing work number=6086 sealhash=43681c..142470 txs=0 gas=0 fees=0 elapsed="431.009µs" +INFO [08-24|11:48:42.999] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:48:44.008] Successfully sealed new block number=6086 sealhash=43681c..142470 hash=d5c787..306a68 elapsed=4.999s +INFO [08-24|11:48:44.008] Commit new sealing work number=6087 sealhash=b86b53..d44f32 txs=0 gas=0 fees=0 elapsed="223.732µs" +INFO [08-24|11:48:49.010] Successfully sealed new block number=6087 sealhash=b86b53..d44f32 hash=fccd90..5cadea elapsed=5.001s +INFO [08-24|11:48:49.011] Commit new sealing work number=6088 sealhash=422b17..076cce txs=0 gas=0 fees=0 elapsed="460.641µs" +INFO [08-24|11:48:53.017] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:48:54.010] Successfully sealed new block number=6088 sealhash=422b17..076cce hash=dbfc2e..3aaa13 elapsed=4.999s +INFO [08-24|11:48:54.011] Commit new sealing work number=6089 sealhash=09e308..aa76d3 txs=0 gas=0 fees=0 elapsed="639.855µs" +INFO [08-24|11:48:59.011] Successfully sealed new block number=6089 sealhash=09e308..aa76d3 hash=200a90..471816 elapsed=5.000s +INFO [08-24|11:48:59.012] Commit new sealing work number=6090 sealhash=e3ec26..86af97 txs=0 gas=0 fees=0 elapsed="252.738µs" +INFO [08-24|11:49:03.036] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:49:04.009] Successfully sealed new block number=6090 sealhash=e3ec26..86af97 hash=d596fc..8e3654 elapsed=4.997s +INFO [08-24|11:49:04.010] Commit new sealing work number=6091 sealhash=e19ba6..593a6d txs=0 gas=0 fees=0 elapsed="290.352µs" +INFO [08-24|11:49:09.011] Successfully sealed new block number=6091 sealhash=e19ba6..593a6d hash=4e061d..335364 elapsed=5.001s +INFO [08-24|11:49:09.012] Commit new sealing work number=6092 sealhash=abed4a..6f7752 txs=0 gas=0 fees=0 elapsed="381.219µs" +INFO [08-24|11:49:13.054] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:49:14.011] Successfully sealed new block number=6092 sealhash=abed4a..6f7752 hash=bb32e3..eaffa8 elapsed=4.999s +INFO [08-24|11:49:14.011] Commit new sealing work number=6093 sealhash=b549a0..6373a7 txs=0 gas=0 fees=0 elapsed="319.341µs" +INFO [08-24|11:49:19.006] Successfully sealed new block number=6093 sealhash=b549a0..6373a7 hash=5ca867..fc1d1f elapsed=4.994s +INFO [08-24|11:49:19.006] Commit new sealing work number=6094 sealhash=756a67..1ded09 txs=0 gas=0 fees=0 elapsed="306.817µs" +INFO [08-24|11:49:23.074] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:49:24.010] Successfully sealed new block number=6094 sealhash=756a67..1ded09 hash=7340a1..e8c49d elapsed=5.004s +INFO [08-24|11:49:24.011] Commit new sealing work number=6095 sealhash=9c6b90..365176 txs=0 gas=0 fees=0 elapsed="378.905µs" +INFO [08-24|11:49:29.012] Successfully sealed new block number=6095 sealhash=9c6b90..365176 hash=7466bd..a08911 elapsed=5.000s +INFO [08-24|11:49:29.012] Commit new sealing work number=6096 sealhash=4e3fb3..2cf9d9 txs=0 gas=0 fees=0 elapsed="315.324µs" +INFO [08-24|11:49:33.095] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:49:34.010] Successfully sealed new block number=6096 sealhash=4e3fb3..2cf9d9 hash=6c76e9..852e81 elapsed=4.997s +INFO [08-24|11:49:34.010] Commit new sealing work number=6097 sealhash=232907..4cabb1 txs=0 gas=0 fees=0 elapsed="239.384µs" +INFO [08-24|11:49:39.012] Successfully sealed new block number=6097 sealhash=232907..4cabb1 hash=84d6bb..5c96c7 elapsed=5.001s +INFO [08-24|11:49:39.012] Commit new sealing work number=6098 sealhash=721623..74054a txs=0 gas=0 fees=0 elapsed="398.675µs" +INFO [08-24|11:49:43.116] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:49:44.011] Successfully sealed new block number=6098 sealhash=721623..74054a hash=720c12..684a5f elapsed=4.998s +INFO [08-24|11:49:44.011] Commit new sealing work number=6099 sealhash=2cd330..dd2d94 txs=0 gas=0 fees=0 elapsed="423.824µs" +INFO [08-24|11:49:49.011] Successfully sealed new block number=6099 sealhash=2cd330..dd2d94 hash=42d762..d31cc9 elapsed=4.999s +INFO [08-24|11:49:49.011] Commit new sealing work number=6100 sealhash=3e6460..b03c99 txs=0 gas=0 fees=0 elapsed="298.373µs" +INFO [08-24|11:49:53.133] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:49:54.006] Successfully sealed new block number=6100 sealhash=3e6460..b03c99 hash=736097..37d592 elapsed=4.994s +INFO [08-24|11:49:54.006] Commit new sealing work number=6101 sealhash=c00fbc..f6af69 txs=0 gas=0 fees=0 elapsed="291.171µs" +INFO [08-24|11:49:59.005] Successfully sealed new block number=6101 sealhash=c00fbc..f6af69 hash=c13a95..762b72 elapsed=4.999s +INFO [08-24|11:49:59.006] Commit new sealing work number=6102 sealhash=1f2f51..7ab654 txs=0 gas=0 fees=0 elapsed="322.378µs" +INFO [08-24|11:50:03.153] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:50:04.008] Successfully sealed new block number=6102 sealhash=1f2f51..7ab654 hash=10a429..44a101 elapsed=5.002s +INFO [08-24|11:50:04.009] Commit new sealing work number=6103 sealhash=cc7ff8..a3a545 txs=0 gas=0 fees=0 elapsed="642.118µs" +INFO [08-24|11:50:09.010] Successfully sealed new block number=6103 sealhash=cc7ff8..a3a545 hash=78acab..bae170 elapsed=5.000s +INFO [08-24|11:50:09.010] Commit new sealing work number=6104 sealhash=7bd44b..f7cf33 txs=0 gas=0 fees=0 elapsed="515.98µs" +INFO [08-24|11:50:13.172] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:50:14.005] Successfully sealed new block number=6104 sealhash=7bd44b..f7cf33 hash=814edf..fb415e elapsed=4.994s +INFO [08-24|11:50:14.005] Commit new sealing work number=6105 sealhash=718f8d..a43e2e txs=0 gas=0 fees=0 elapsed="252.572µs" +INFO [08-24|11:50:19.010] Successfully sealed new block number=6105 sealhash=718f8d..a43e2e hash=6ada5b..bea314 elapsed=5.004s +INFO [08-24|11:50:19.011] Commit new sealing work number=6106 sealhash=7e9d73..9df6f8 txs=0 gas=0 fees=0 elapsed="324.719µs" +INFO [08-24|11:50:23.193] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:50:24.005] Successfully sealed new block number=6106 sealhash=7e9d73..9df6f8 hash=598463..1517c3 elapsed=4.994s +INFO [08-24|11:50:24.005] Commit new sealing work number=6107 sealhash=fbfb92..e21ed4 txs=0 gas=0 fees=0 elapsed="320.367µs" +INFO [08-24|11:50:29.005] Successfully sealed new block number=6107 sealhash=fbfb92..e21ed4 hash=69cf7f..b6dc7a elapsed=4.999s +INFO [08-24|11:50:29.005] Commit new sealing work number=6108 sealhash=eecb91..6b9606 txs=0 gas=0 fees=0 elapsed="261.196µs" +INFO [08-24|11:50:33.212] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:50:34.010] Successfully sealed new block number=6108 sealhash=eecb91..6b9606 hash=378496..dff7a7 elapsed=5.004s +INFO [08-24|11:50:34.010] Commit new sealing work number=6109 sealhash=b8ed56..3ab630 txs=0 gas=0 fees=0 elapsed="360.786µs" +INFO [08-24|11:50:39.005] Successfully sealed new block number=6109 sealhash=b8ed56..3ab630 hash=9b0af5..607685 elapsed=4.994s +INFO [08-24|11:50:39.005] Commit new sealing work number=6110 sealhash=1b987b..00f7a3 txs=0 gas=0 fees=0 elapsed="333.443µs" +INFO [08-24|11:50:43.232] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:50:44.011] Successfully sealed new block number=6110 sealhash=1b987b..00f7a3 hash=0a4052..82f0ee elapsed=5.005s +INFO [08-24|11:50:44.012] Commit new sealing work number=6111 sealhash=6a5759..4a53fd txs=0 gas=0 fees=0 elapsed="628.254µs" +INFO [08-24|11:50:49.009] Successfully sealed new block number=6111 sealhash=6a5759..4a53fd hash=36b7ef..65e9fd elapsed=4.997s +INFO [08-24|11:50:49.010] Commit new sealing work number=6112 sealhash=a87ae4..5f53a8 txs=0 gas=0 fees=0 elapsed="382.782µs" +INFO [08-24|11:50:53.248] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:50:54.005] Successfully sealed new block number=6112 sealhash=a87ae4..5f53a8 hash=e15d93..37be6d elapsed=4.994s +INFO [08-24|11:50:54.005] Commit new sealing work number=6113 sealhash=3994ad..ac5d53 txs=0 gas=0 fees=0 elapsed="324.09µs" +INFO [08-24|11:50:59.011] Successfully sealed new block number=6113 sealhash=3994ad..ac5d53 hash=edc1e4..86bce0 elapsed=5.006s +INFO [08-24|11:50:59.012] Commit new sealing work number=6114 sealhash=b5354c..243786 txs=0 gas=0 fees=0 elapsed="462.501µs" +INFO [08-24|11:51:03.267] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:51:04.010] Successfully sealed new block number=6114 sealhash=b5354c..243786 hash=77c325..e7a92a elapsed=4.998s +INFO [08-24|11:51:04.011] Commit new sealing work number=6115 sealhash=b8b722..32029f txs=0 gas=0 fees=0 elapsed="665.03µs" +INFO [08-24|11:51:09.008] Successfully sealed new block number=6115 sealhash=b8b722..32029f hash=839767..41e1b4 elapsed=4.997s +INFO [08-24|11:51:09.009] Commit new sealing work number=6116 sealhash=5a275e..cbcfa9 txs=0 gas=0 fees=0 elapsed="300.541µs" +INFO [08-24|11:51:13.291] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:51:14.010] Successfully sealed new block number=6116 sealhash=5a275e..cbcfa9 hash=0823bc..b1f72a elapsed=5.000s +INFO [08-24|11:51:14.010] Commit new sealing work number=6117 sealhash=82460f..61ce6e txs=0 gas=0 fees=0 elapsed="445.457µs" +INFO [08-24|11:51:19.007] Successfully sealed new block number=6117 sealhash=82460f..61ce6e hash=7e46ef..f2949c elapsed=4.997s +INFO [08-24|11:51:19.008] Commit new sealing work number=6118 sealhash=c04d27..4b109f txs=0 gas=0 fees=0 elapsed="308.548µs" +INFO [08-24|11:51:23.311] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:51:24.010] Successfully sealed new block number=6118 sealhash=c04d27..4b109f hash=64f063..b5968d elapsed=5.002s +INFO [08-24|11:51:24.011] Commit new sealing work number=6119 sealhash=f36f7d..abb8b6 txs=0 gas=0 fees=0 elapsed="253.383µs" +INFO [08-24|11:51:29.010] Successfully sealed new block number=6119 sealhash=f36f7d..abb8b6 hash=a3af67..000f22 elapsed=4.999s +INFO [08-24|11:51:29.010] Commit new sealing work number=6120 sealhash=aaed4c..9011e0 txs=0 gas=0 fees=0 elapsed="239.592µs" +INFO [08-24|11:51:33.334] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:51:34.007] Successfully sealed new block number=6120 sealhash=aaed4c..9011e0 hash=609da9..3e57a8 elapsed=4.996s +INFO [08-24|11:51:34.008] Commit new sealing work number=6121 sealhash=9370ce..b07de5 txs=0 gas=0 fees=0 elapsed="210.904µs" +INFO [08-24|11:51:39.009] Successfully sealed new block number=6121 sealhash=9370ce..b07de5 hash=1c0131..762c0c elapsed=5.001s +INFO [08-24|11:51:39.010] Commit new sealing work number=6122 sealhash=6f0fa6..804cbe txs=0 gas=0 fees=0 elapsed="295.843µs" +INFO [08-24|11:51:43.354] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:51:44.006] Successfully sealed new block number=6122 sealhash=6f0fa6..804cbe hash=6cdb5f..ac93ae elapsed=4.995s +INFO [08-24|11:51:44.006] Commit new sealing work number=6123 sealhash=179b9d..409c17 txs=0 gas=0 fees=0 elapsed="272.479µs" +INFO [08-24|11:51:49.005] Successfully sealed new block number=6123 sealhash=179b9d..409c17 hash=80dc41..14d36e elapsed=4.998s +INFO [08-24|11:51:49.005] Commit new sealing work number=6124 sealhash=23684e..79103f txs=0 gas=0 fees=0 elapsed="231.025µs" +INFO [08-24|11:51:53.371] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:51:54.010] Successfully sealed new block number=6124 sealhash=23684e..79103f hash=bdd228..78a729 elapsed=5.004s +INFO [08-24|11:51:54.010] Commit new sealing work number=6125 sealhash=52ada0..c8f81e txs=0 gas=0 fees=0 elapsed="516.534µs" +INFO [08-24|11:51:59.006] Successfully sealed new block number=6125 sealhash=52ada0..c8f81e hash=b79b47..7edd8c elapsed=4.995s +INFO [08-24|11:51:59.006] Commit new sealing work number=6126 sealhash=610046..06b15b txs=0 gas=0 fees=0 elapsed="236.198µs" +INFO [08-24|11:52:03.387] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:52:04.005] Successfully sealed new block number=6126 sealhash=610046..06b15b hash=ed0890..24aef3 elapsed=4.999s +INFO [08-24|11:52:04.006] Commit new sealing work number=6127 sealhash=cb3b50..b9abd2 txs=0 gas=0 fees=0 elapsed="223.127µs" +INFO [08-24|11:52:09.011] Successfully sealed new block number=6127 sealhash=cb3b50..b9abd2 hash=af0372..d2ef42 elapsed=5.005s +INFO [08-24|11:52:09.012] Commit new sealing work number=6128 sealhash=7a6e27..8cf012 txs=0 gas=0 fees=0 elapsed="627.106µs" +INFO [08-24|11:52:13.407] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:52:14.005] Successfully sealed new block number=6128 sealhash=7a6e27..8cf012 hash=dd6156..05b5ff elapsed=4.992s +INFO [08-24|11:52:14.005] Commit new sealing work number=6129 sealhash=a1dbec..3664ed txs=0 gas=0 fees=0 elapsed="254.176µs" +INFO [08-24|11:52:19.009] Successfully sealed new block number=6129 sealhash=a1dbec..3664ed hash=5cdd3c..9e4095 elapsed=5.003s +INFO [08-24|11:52:19.009] Commit new sealing work number=6130 sealhash=f82804..82576d txs=0 gas=0 fees=0 elapsed="337.618µs" +INFO [08-24|11:52:23.427] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:52:24.011] Successfully sealed new block number=6130 sealhash=f82804..82576d hash=d7a4ed..d0d17b elapsed=5.001s +INFO [08-24|11:52:24.011] Commit new sealing work number=6131 sealhash=1b0d27..aabe45 txs=0 gas=0 fees=0 elapsed="458.629µs" +INFO [08-24|11:52:29.010] Successfully sealed new block number=6131 sealhash=1b0d27..aabe45 hash=0da7cd..2bfdb4 elapsed=4.999s +INFO [08-24|11:52:29.011] Commit new sealing work number=6132 sealhash=b66a03..84dcdc txs=0 gas=0 fees=0 elapsed="347.909µs" +INFO [08-24|11:52:33.446] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:52:34.012] Successfully sealed new block number=6132 sealhash=b66a03..84dcdc hash=88d668..aa11c8 elapsed=5.001s +INFO [08-24|11:52:34.013] Commit new sealing work number=6133 sealhash=b3a33b..249349 txs=0 gas=0 fees=0 elapsed="282.307µs" +INFO [08-24|11:52:39.010] Successfully sealed new block number=6133 sealhash=b3a33b..249349 hash=56a3aa..7ca650 elapsed=4.997s +INFO [08-24|11:52:39.011] Commit new sealing work number=6134 sealhash=2c52c9..cda660 txs=0 gas=0 fees=0 elapsed="355.84µs" +INFO [08-24|11:52:43.467] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:52:44.011] Successfully sealed new block number=6134 sealhash=2c52c9..cda660 hash=04adbb..d1a392 elapsed=4.999s +INFO [08-24|11:52:44.011] Commit new sealing work number=6135 sealhash=4b7e66..f61782 txs=0 gas=0 fees=0 elapsed="375.063µs" +INFO [08-24|11:52:49.010] Successfully sealed new block number=6135 sealhash=4b7e66..f61782 hash=0ab4fa..691ad4 elapsed=4.998s +INFO [08-24|11:52:49.010] Commit new sealing work number=6136 sealhash=83d7dc..8aeb4d txs=0 gas=0 fees=0 elapsed="416.798µs" +INFO [08-24|11:52:53.486] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:52:54.009] Successfully sealed new block number=6136 sealhash=83d7dc..8aeb4d hash=77e7ef..b78f15 elapsed=4.998s +INFO [08-24|11:52:54.009] Commit new sealing work number=6137 sealhash=7a2dba..198e3d txs=0 gas=0 fees=0 elapsed="361.697µs" +INFO [08-24|11:52:59.008] Successfully sealed new block number=6137 sealhash=7a2dba..198e3d hash=c6ec8d..b90b06 elapsed=4.999s +INFO [08-24|11:52:59.009] Commit new sealing work number=6138 sealhash=7fda6d..c3ce3b txs=0 gas=0 fees=0 elapsed="190.263µs" +INFO [08-24|11:53:03.506] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:53:04.005] Successfully sealed new block number=6138 sealhash=7fda6d..c3ce3b hash=9bd32a..2be337 elapsed=4.996s +INFO [08-24|11:53:04.006] Commit new sealing work number=6139 sealhash=2f2a25..b0323b txs=0 gas=0 fees=0 elapsed="486.658µs" +INFO [08-24|11:53:09.007] Successfully sealed new block number=6139 sealhash=2f2a25..b0323b hash=3e6d07..790f85 elapsed=5.001s +INFO [08-24|11:53:09.008] Commit new sealing work number=6140 sealhash=5dfaee..0d9f36 txs=0 gas=0 fees=0 elapsed="374.81µs" +INFO [08-24|11:53:13.523] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:53:14.010] Successfully sealed new block number=6140 sealhash=5dfaee..0d9f36 hash=4765c9..7ebfb6 elapsed=5.001s +INFO [08-24|11:53:14.010] Commit new sealing work number=6141 sealhash=73281c..da1843 txs=0 gas=0 fees=0 elapsed="228.975µs" +INFO [08-24|11:53:19.004] Successfully sealed new block number=6141 sealhash=73281c..da1843 hash=caa481..9a106a elapsed=4.993s +INFO [08-24|11:53:19.004] Commit new sealing work number=6142 sealhash=7f6cc5..31a0c3 txs=0 gas=0 fees=0 elapsed="322.598µs" +INFO [08-24|11:53:23.544] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:53:24.010] Successfully sealed new block number=6142 sealhash=7f6cc5..31a0c3 hash=bce993..91c52e elapsed=5.005s +INFO [08-24|11:53:24.011] Commit new sealing work number=6143 sealhash=e50ca1..d32872 txs=0 gas=0 fees=0 elapsed="379.336µs" +INFO [08-24|11:53:29.011] Successfully sealed new block number=6143 sealhash=e50ca1..d32872 hash=591be1..a9b032 elapsed=4.999s +INFO [08-24|11:53:29.015] Commit new sealing work number=6144 sealhash=1d3643..42847e txs=0 gas=0 fees=0 elapsed=4.259ms +INFO [08-24|11:53:33.562] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:53:34.010] Successfully sealed new block number=6144 sealhash=1d3643..42847e hash=313948..780cee elapsed=4.995s +INFO [08-24|11:53:34.020] Commit new sealing work number=6145 sealhash=093586..0a7c9d txs=0 gas=0 fees=0 elapsed=10.032ms +INFO [08-24|11:53:39.012] Successfully sealed new block number=6145 sealhash=093586..0a7c9d hash=8eed03..d8f586 elapsed=4.991s +INFO [08-24|11:53:39.013] Commit new sealing work number=6146 sealhash=ee2522..a881ed txs=0 gas=0 fees=0 elapsed="505.098µs" +INFO [08-24|11:53:43.580] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:53:44.013] Successfully sealed new block number=6146 sealhash=ee2522..a881ed hash=ed93b9..fac478 elapsed=5.000s +INFO [08-24|11:53:44.014] Commit new sealing work number=6147 sealhash=90d3ff..84eea1 txs=0 gas=0 fees=0 elapsed="410.088µs" +INFO [08-24|11:53:49.005] Successfully sealed new block number=6147 sealhash=90d3ff..84eea1 hash=d3da58..ff46c9 elapsed=4.991s +INFO [08-24|11:53:49.005] Commit new sealing work number=6148 sealhash=63dac3..5c3d30 txs=0 gas=0 fees=0 elapsed="324.862µs" +INFO [08-24|11:53:53.596] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:53:54.005] Successfully sealed new block number=6148 sealhash=63dac3..5c3d30 hash=260d08..b6f7cd elapsed=4.999s +INFO [08-24|11:53:54.006] Commit new sealing work number=6149 sealhash=00d6d2..596771 txs=0 gas=0 fees=0 elapsed="314.843µs" +INFO [08-24|11:53:59.006] Successfully sealed new block number=6149 sealhash=00d6d2..596771 hash=57d953..b59f76 elapsed=4.999s +INFO [08-24|11:53:59.006] Commit new sealing work number=6150 sealhash=402cb2..592f67 txs=0 gas=0 fees=0 elapsed="318.726µs" +INFO [08-24|11:54:03.614] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:54:04.005] Successfully sealed new block number=6150 sealhash=402cb2..592f67 hash=3b717e..76d833 elapsed=4.998s +INFO [08-24|11:54:04.005] Commit new sealing work number=6151 sealhash=8164f1..7b0917 txs=0 gas=0 fees=0 elapsed="273.931µs" +INFO [08-24|11:54:09.005] Successfully sealed new block number=6151 sealhash=8164f1..7b0917 hash=2be0c3..77087e elapsed=4.999s +INFO [08-24|11:54:09.005] Commit new sealing work number=6152 sealhash=d9da87..be44c7 txs=0 gas=0 fees=0 elapsed="859.85µs" +INFO [08-24|11:54:13.632] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:54:14.008] Successfully sealed new block number=6152 sealhash=d9da87..be44c7 hash=90481b..ff6874 elapsed=5.002s +INFO [08-24|11:54:14.008] Commit new sealing work number=6153 sealhash=8310ee..821df5 txs=0 gas=0 fees=0 elapsed="255.372µs" +INFO [08-24|11:54:19.010] Successfully sealed new block number=6153 sealhash=8310ee..821df5 hash=14e944..7d0502 elapsed=5.001s +INFO [08-24|11:54:19.011] Commit new sealing work number=6154 sealhash=771dda..8bc00f txs=0 gas=0 fees=0 elapsed="199.079µs" +INFO [08-24|11:54:23.652] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:54:24.011] Successfully sealed new block number=6154 sealhash=771dda..8bc00f hash=046c7b..faf886 elapsed=5.000s +INFO [08-24|11:54:24.011] Commit new sealing work number=6155 sealhash=5ed437..7dfe75 txs=0 gas=0 fees=0 elapsed="367.71µs" +INFO [08-24|11:54:29.009] Successfully sealed new block number=6155 sealhash=5ed437..7dfe75 hash=e3be6d..bd1361 elapsed=4.997s +INFO [08-24|11:54:29.010] Commit new sealing work number=6156 sealhash=aaaf24..dd568e txs=0 gas=0 fees=0 elapsed="338.808µs" +INFO [08-24|11:54:33.671] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:54:34.012] Successfully sealed new block number=6156 sealhash=aaaf24..dd568e hash=259958..225991 elapsed=5.001s +INFO [08-24|11:54:34.012] Commit new sealing work number=6157 sealhash=c57ad4..6578e4 txs=0 gas=0 fees=0 elapsed="463.486µs" +INFO [08-24|11:54:39.007] Successfully sealed new block number=6157 sealhash=c57ad4..6578e4 hash=f88b7a..5d6fbf elapsed=4.994s +INFO [08-24|11:54:39.007] Commit new sealing work number=6158 sealhash=36f87d..0d603c txs=0 gas=0 fees=0 elapsed="409.445µs" +INFO [08-24|11:54:43.690] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:54:44.009] Successfully sealed new block number=6158 sealhash=36f87d..0d603c hash=e2da71..a0731c elapsed=5.002s +INFO [08-24|11:54:44.010] Commit new sealing work number=6159 sealhash=868eae..f775fd txs=0 gas=0 fees=0 elapsed="266.873µs" +INFO [08-24|11:54:49.005] Successfully sealed new block number=6159 sealhash=868eae..f775fd hash=15ed8b..2f97d0 elapsed=4.995s +INFO [08-24|11:54:49.005] Commit new sealing work number=6160 sealhash=ab82f2..4f99f8 txs=0 gas=0 fees=0 elapsed="273.906µs" +INFO [08-24|11:54:53.712] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:54:54.012] Successfully sealed new block number=6160 sealhash=ab82f2..4f99f8 hash=35bbce..ae1ba5 elapsed=5.006s +INFO [08-24|11:54:54.013] Commit new sealing work number=6161 sealhash=e6e480..21c52b txs=0 gas=0 fees=0 elapsed="705.61µs" +INFO [08-24|11:54:59.012] Successfully sealed new block number=6161 sealhash=e6e480..21c52b hash=43abce..67be34 elapsed=4.998s +INFO [08-24|11:54:59.012] Commit new sealing work number=6162 sealhash=2d8a63..6e422a txs=0 gas=0 fees=0 elapsed="402.082µs" +INFO [08-24|11:55:03.732] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:55:04.010] Successfully sealed new block number=6162 sealhash=2d8a63..6e422a hash=460cdc..f5cd1d elapsed=4.997s +INFO [08-24|11:55:04.011] Commit new sealing work number=6163 sealhash=8f5429..cf041a txs=0 gas=0 fees=0 elapsed="638.409µs" +INFO [08-24|11:55:09.005] Successfully sealed new block number=6163 sealhash=8f5429..cf041a hash=5c5d80..f6107f elapsed=4.993s +INFO [08-24|11:55:09.005] Commit new sealing work number=6164 sealhash=056875..7c2dfd txs=0 gas=0 fees=0 elapsed="398.873µs" +INFO [08-24|11:55:13.751] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:55:14.010] Successfully sealed new block number=6164 sealhash=056875..7c2dfd hash=dfc61b..fde578 elapsed=5.004s +INFO [08-24|11:55:14.010] Commit new sealing work number=6165 sealhash=b8148a..2fc57d txs=0 gas=0 fees=0 elapsed="215.17µs" +INFO [08-24|11:55:19.012] Successfully sealed new block number=6165 sealhash=b8148a..2fc57d hash=bfc69f..b406a1 elapsed=5.001s +INFO [08-24|11:55:19.012] Commit new sealing work number=6166 sealhash=8ae44d..dfd7f5 txs=0 gas=0 fees=0 elapsed="305.871µs" +INFO [08-24|11:55:23.771] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:55:24.009] Successfully sealed new block number=6166 sealhash=8ae44d..dfd7f5 hash=f1f813..db9290 elapsed=4.996s +INFO [08-24|11:55:24.009] Commit new sealing work number=6167 sealhash=ff1970..7389c5 txs=0 gas=0 fees=0 elapsed="392.212µs" +INFO [08-24|11:55:29.011] Successfully sealed new block number=6167 sealhash=ff1970..7389c5 hash=cb6ffa..639bdf elapsed=5.001s +INFO [08-24|11:55:29.011] Commit new sealing work number=6168 sealhash=3dfaac..16f6a7 txs=0 gas=0 fees=0 elapsed="375.162µs" +INFO [08-24|11:55:33.796] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:55:34.007] Successfully sealed new block number=6168 sealhash=3dfaac..16f6a7 hash=5617ed..f3e8e3 elapsed=4.995s +INFO [08-24|11:55:34.007] Commit new sealing work number=6169 sealhash=b02940..1d940f txs=0 gas=0 fees=0 elapsed="310.932µs" +INFO [08-24|11:55:39.012] Successfully sealed new block number=6169 sealhash=b02940..1d940f hash=46ef33..3939cb elapsed=5.004s +INFO [08-24|11:55:39.013] Commit new sealing work number=6170 sealhash=e17d48..d51108 txs=0 gas=0 fees=0 elapsed="801.785µs" +INFO [08-24|11:55:43.814] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:55:44.007] Successfully sealed new block number=6170 sealhash=e17d48..d51108 hash=f08198..ce9a05 elapsed=4.994s +INFO [08-24|11:55:44.008] Commit new sealing work number=6171 sealhash=ee68e9..c5a3d2 txs=0 gas=0 fees=0 elapsed="238.02µs" +INFO [08-24|11:55:49.006] Successfully sealed new block number=6171 sealhash=ee68e9..c5a3d2 hash=af1cd1..a13922 elapsed=4.997s +INFO [08-24|11:55:49.006] Commit new sealing work number=6172 sealhash=4d5825..a2d9c5 txs=0 gas=0 fees=0 elapsed="259.849µs" +INFO [08-24|11:55:53.836] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:55:54.006] Successfully sealed new block number=6172 sealhash=4d5825..a2d9c5 hash=a3f72d..5c9ddd elapsed=5.000s +INFO [08-24|11:55:54.007] Commit new sealing work number=6173 sealhash=6f9248..3db110 txs=0 gas=0 fees=0 elapsed="222.355µs" +INFO [08-24|11:55:59.011] Successfully sealed new block number=6173 sealhash=6f9248..3db110 hash=1e76c7..41898d elapsed=5.004s +INFO [08-24|11:55:59.011] Commit new sealing work number=6174 sealhash=af73dc..dbaec8 txs=0 gas=0 fees=0 elapsed="272.724µs" +INFO [08-24|11:56:03.852] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:56:04.009] Successfully sealed new block number=6174 sealhash=af73dc..dbaec8 hash=09c113..ba4685 elapsed=4.997s +INFO [08-24|11:56:04.009] Commit new sealing work number=6175 sealhash=9ed3e5..b09fcf txs=0 gas=0 fees=0 elapsed="252.8µs" +INFO [08-24|11:56:09.006] Successfully sealed new block number=6175 sealhash=9ed3e5..b09fcf hash=26400d..867f08 elapsed=4.996s +INFO [08-24|11:56:09.007] Commit new sealing work number=6176 sealhash=921e52..631dc1 txs=0 gas=0 fees=0 elapsed="443.558µs" +INFO [08-24|11:56:13.871] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:56:14.009] Successfully sealed new block number=6176 sealhash=921e52..631dc1 hash=c50caf..4f49c8 elapsed=5.001s +INFO [08-24|11:56:14.009] Commit new sealing work number=6177 sealhash=a79fab..e736dc txs=0 gas=0 fees=0 elapsed="230.277µs" +INFO [08-24|11:56:19.010] Successfully sealed new block number=6177 sealhash=a79fab..e736dc hash=cc1323..7dddf5 elapsed=5.001s +INFO [08-24|11:56:19.011] Commit new sealing work number=6178 sealhash=b4932a..5da68a txs=0 gas=0 fees=0 elapsed="410.87µs" +INFO [08-24|11:56:23.888] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:56:24.005] Successfully sealed new block number=6178 sealhash=b4932a..5da68a hash=8a5938..e62782 elapsed=4.994s +INFO [08-24|11:56:24.006] Commit new sealing work number=6179 sealhash=df1ea5..9eb688 txs=0 gas=0 fees=0 elapsed="253.834µs" +INFO [08-24|11:56:29.011] Successfully sealed new block number=6179 sealhash=df1ea5..9eb688 hash=87bc42..6e88cb elapsed=5.005s +INFO [08-24|11:56:29.012] Commit new sealing work number=6180 sealhash=911b07..f6e052 txs=0 gas=0 fees=0 elapsed="515.808µs" +INFO [08-24|11:56:33.908] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:56:34.014] Successfully sealed new block number=6180 sealhash=911b07..f6e052 hash=b88c07..f103f2 elapsed=5.001s +INFO [08-24|11:56:34.015] Commit new sealing work number=6181 sealhash=835550..da0e09 txs=0 gas=0 fees=0 elapsed="529.334µs" +INFO [08-24|11:56:39.007] Successfully sealed new block number=6181 sealhash=835550..da0e09 hash=ae73b0..8f740b elapsed=4.992s +INFO [08-24|11:56:39.008] Commit new sealing work number=6182 sealhash=474a65..a1af1f txs=0 gas=0 fees=0 elapsed="422.668µs" +INFO [08-24|11:56:43.929] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:56:44.009] Successfully sealed new block number=6182 sealhash=474a65..a1af1f hash=866b1d..13efb3 elapsed=5.001s +INFO [08-24|11:56:44.010] Commit new sealing work number=6183 sealhash=430001..0bc76e txs=0 gas=0 fees=0 elapsed="321.085µs" +INFO [08-24|11:56:49.008] Successfully sealed new block number=6183 sealhash=430001..0bc76e hash=50b1aa..5e27c4 elapsed=4.998s +INFO [08-24|11:56:49.009] Commit new sealing work number=6184 sealhash=fa73dd..e70853 txs=0 gas=0 fees=0 elapsed="342.852µs" +INFO [08-24|11:56:53.947] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:56:54.014] Successfully sealed new block number=6184 sealhash=fa73dd..e70853 hash=5dabf8..9d6164 elapsed=5.004s +INFO [08-24|11:56:54.015] Commit new sealing work number=6185 sealhash=6f759d..f043df txs=0 gas=0 fees=0 elapsed="805.321µs" +INFO [08-24|11:56:59.004] Successfully sealed new block number=6185 sealhash=6f759d..f043df hash=7ed96e..c7aa6f elapsed=4.989s +INFO [08-24|11:56:59.005] Commit new sealing work number=6186 sealhash=b498bd..93cb2d txs=0 gas=0 fees=0 elapsed="638.494µs" +INFO [08-24|11:57:03.965] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:57:04.009] Successfully sealed new block number=6186 sealhash=b498bd..93cb2d hash=e2b56b..29e67b elapsed=5.003s +INFO [08-24|11:57:04.009] Commit new sealing work number=6187 sealhash=5c8c2a..62ae48 txs=0 gas=0 fees=0 elapsed="477.718µs" +INFO [08-24|11:57:09.007] Successfully sealed new block number=6187 sealhash=5c8c2a..62ae48 hash=3ae616..535b58 elapsed=4.997s +INFO [08-24|11:57:09.007] Commit new sealing work number=6188 sealhash=8097d0..ec155c txs=0 gas=0 fees=0 elapsed="328.208µs" +INFO [08-24|11:57:13.984] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:57:14.008] Successfully sealed new block number=6188 sealhash=8097d0..ec155c hash=386a56..50307b elapsed=5.000s +INFO [08-24|11:57:14.008] Commit new sealing work number=6189 sealhash=3207be..ae3915 txs=0 gas=0 fees=0 elapsed="292.079µs" +INFO [08-24|11:57:19.005] Successfully sealed new block number=6189 sealhash=3207be..ae3915 hash=ada9ad..ff80fe elapsed=4.997s +INFO [08-24|11:57:19.006] Commit new sealing work number=6190 sealhash=74c1dd..fc9ccc txs=0 gas=0 fees=0 elapsed="316.807µs" +INFO [08-24|11:57:24.003] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:57:24.008] Successfully sealed new block number=6190 sealhash=74c1dd..fc9ccc hash=59d6a4..1ae251 elapsed=5.002s +INFO [08-24|11:57:24.009] Commit new sealing work number=6191 sealhash=c513e5..aabc54 txs=0 gas=0 fees=0 elapsed="344.716µs" +INFO [08-24|11:57:29.007] Successfully sealed new block number=6191 sealhash=c513e5..aabc54 hash=78a5d0..3beca6 elapsed=4.998s +INFO [08-24|11:57:29.007] Commit new sealing work number=6192 sealhash=c61e86..9ba845 txs=0 gas=0 fees=0 elapsed="270.195µs" +INFO [08-24|11:57:34.007] Successfully sealed new block number=6192 sealhash=c61e86..9ba845 hash=67b6a4..88de82 elapsed=4.999s +INFO [08-24|11:57:34.007] Commit new sealing work number=6193 sealhash=312859..f5b3e0 txs=0 gas=0 fees=0 elapsed="201.381µs" +INFO [08-24|11:57:34.025] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:57:39.008] Successfully sealed new block number=6193 sealhash=312859..f5b3e0 hash=f7b597..27fcd4 elapsed=5.000s +INFO [08-24|11:57:39.008] Commit new sealing work number=6194 sealhash=013f39..058d25 txs=0 gas=0 fees=0 elapsed="301.765µs" +INFO [08-24|11:57:44.008] Successfully sealed new block number=6194 sealhash=013f39..058d25 hash=1aa296..f6700e elapsed=4.999s +INFO [08-24|11:57:44.008] Commit new sealing work number=6195 sealhash=15a610..33ac18 txs=0 gas=0 fees=0 elapsed="214.689µs" +INFO [08-24|11:57:44.045] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:57:49.007] Successfully sealed new block number=6195 sealhash=15a610..33ac18 hash=6e8699..40d107 elapsed=4.999s +INFO [08-24|11:57:49.008] Commit new sealing work number=6196 sealhash=fd2100..81c183 txs=0 gas=0 fees=0 elapsed="398.184µs" +INFO [08-24|11:57:54.006] Successfully sealed new block number=6196 sealhash=fd2100..81c183 hash=fc3cef..8abc7e elapsed=4.998s +INFO [08-24|11:57:54.007] Commit new sealing work number=6197 sealhash=89ee71..8ac4e8 txs=0 gas=0 fees=0 elapsed="295.385µs" +INFO [08-24|11:57:54.065] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:57:59.006] Successfully sealed new block number=6197 sealhash=89ee71..8ac4e8 hash=596f66..2f4052 elapsed=4.999s +INFO [08-24|11:57:59.006] Commit new sealing work number=6198 sealhash=baa09d..889e3a txs=0 gas=0 fees=0 elapsed="302.074µs" +INFO [08-24|11:58:04.007] Successfully sealed new block number=6198 sealhash=baa09d..889e3a hash=b8ebd5..963b76 elapsed=5.000s +INFO [08-24|11:58:04.008] Commit new sealing work number=6199 sealhash=566f77..5c08b5 txs=0 gas=0 fees=0 elapsed="308.399µs" +INFO [08-24|11:58:04.084] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:58:09.008] Successfully sealed new block number=6199 sealhash=566f77..5c08b5 hash=8a3b8f..d34524 elapsed=5.000s +INFO [08-24|11:58:09.009] Commit new sealing work number=6200 sealhash=14390c..2a721a txs=0 gas=0 fees=0 elapsed="293.027µs" +INFO [08-24|11:58:14.006] Successfully sealed new block number=6200 sealhash=14390c..2a721a hash=67ab7f..60863b elapsed=4.997s +INFO [08-24|11:58:14.007] Commit new sealing work number=6201 sealhash=850aef..82d4b0 txs=0 gas=0 fees=0 elapsed="250.512µs" +INFO [08-24|11:58:14.103] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:58:19.006] Successfully sealed new block number=6201 sealhash=850aef..82d4b0 hash=222f67..d0ea6c elapsed=4.999s +INFO [08-24|11:58:19.006] Commit new sealing work number=6202 sealhash=53c55c..2e88a4 txs=0 gas=0 fees=0 elapsed="533.673µs" +INFO [08-24|11:58:24.008] Successfully sealed new block number=6202 sealhash=53c55c..2e88a4 hash=ef6fc0..0457d0 elapsed=5.001s +INFO [08-24|11:58:24.008] Commit new sealing work number=6203 sealhash=210ccc..4275dc txs=0 gas=0 fees=0 elapsed="285.465µs" +INFO [08-24|11:58:24.123] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:58:29.006] Successfully sealed new block number=6203 sealhash=210ccc..4275dc hash=a358f5..b7ba98 elapsed=4.998s +INFO [08-24|11:58:29.007] Commit new sealing work number=6204 sealhash=3ab378..a4505b txs=0 gas=0 fees=0 elapsed="238.998µs" +INFO [08-24|11:58:34.007] Successfully sealed new block number=6204 sealhash=3ab378..a4505b hash=01ca27..32169a elapsed=5.000s +INFO [08-24|11:58:34.007] Commit new sealing work number=6205 sealhash=82d853..9e47fa txs=0 gas=0 fees=0 elapsed="348.386µs" +INFO [08-24|11:58:34.143] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:58:39.007] Successfully sealed new block number=6205 sealhash=82d853..9e47fa hash=c8b005..92e702 elapsed=4.999s +INFO [08-24|11:58:39.007] Commit new sealing work number=6206 sealhash=edc025..687a3e txs=0 gas=0 fees=0 elapsed="435.794µs" +INFO [08-24|11:58:44.007] Successfully sealed new block number=6206 sealhash=edc025..687a3e hash=7309f9..9900ec elapsed=4.999s +INFO [08-24|11:58:44.007] Commit new sealing work number=6207 sealhash=aeb707..194d07 txs=0 gas=0 fees=0 elapsed="235.083µs" +INFO [08-24|11:58:44.163] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:58:49.008] Successfully sealed new block number=6207 sealhash=aeb707..194d07 hash=3244f5..ef29f7 elapsed=5.000s +INFO [08-24|11:58:49.008] Commit new sealing work number=6208 sealhash=6955c3..ed8b9a txs=0 gas=0 fees=0 elapsed="290.423µs" +INFO [08-24|11:58:54.007] Successfully sealed new block number=6208 sealhash=6955c3..ed8b9a hash=97a8a9..b3d97c elapsed=4.998s +INFO [08-24|11:58:54.007] Commit new sealing work number=6209 sealhash=f64f1f..4c26d3 txs=0 gas=0 fees=0 elapsed="373.537µs" +INFO [08-24|11:58:54.183] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:58:59.007] Successfully sealed new block number=6209 sealhash=f64f1f..4c26d3 hash=2551a8..fb9d90 elapsed=4.999s +INFO [08-24|11:58:59.007] Commit new sealing work number=6210 sealhash=1dc869..6647b8 txs=0 gas=0 fees=0 elapsed="265.828µs" +INFO [08-24|11:59:04.008] Successfully sealed new block number=6210 sealhash=1dc869..6647b8 hash=ed8e8b..ddce71 elapsed=5.000s +INFO [08-24|11:59:04.008] Commit new sealing work number=6211 sealhash=ab2a72..0bd99b txs=0 gas=0 fees=0 elapsed="221.763µs" +INFO [08-24|11:59:04.202] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:59:09.006] Successfully sealed new block number=6211 sealhash=ab2a72..0bd99b hash=913bab..3be52d elapsed=4.997s +INFO [08-24|11:59:09.006] Commit new sealing work number=6212 sealhash=ca40a1..7cecf7 txs=0 gas=0 fees=0 elapsed="406.959µs" +INFO [08-24|11:59:14.007] Successfully sealed new block number=6212 sealhash=ca40a1..7cecf7 hash=0bbec0..598a26 elapsed=5.000s +INFO [08-24|11:59:14.008] Commit new sealing work number=6213 sealhash=b86c22..a56d21 txs=0 gas=0 fees=0 elapsed="317.594µs" +INFO [08-24|11:59:14.220] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:59:19.008] Successfully sealed new block number=6213 sealhash=b86c22..a56d21 hash=f87f8c..8daee1 elapsed=5.000s +INFO [08-24|11:59:19.008] Commit new sealing work number=6214 sealhash=5f36f5..a9bd81 txs=0 gas=0 fees=0 elapsed="237.66µs" +INFO [08-24|11:59:24.007] Successfully sealed new block number=6214 sealhash=5f36f5..a9bd81 hash=9accaf..a2464a elapsed=4.998s +INFO [08-24|11:59:24.007] Commit new sealing work number=6215 sealhash=6022fc..c4f10a txs=0 gas=0 fees=0 elapsed="315.096µs" +INFO [08-24|11:59:24.238] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:59:29.008] Successfully sealed new block number=6215 sealhash=6022fc..c4f10a hash=8cc95d..6f863a elapsed=5.000s +INFO [08-24|11:59:29.009] Commit new sealing work number=6216 sealhash=a953c7..3065cf txs=0 gas=0 fees=0 elapsed="275.541µs" +INFO [08-24|11:59:34.008] Successfully sealed new block number=6216 sealhash=a953c7..3065cf hash=a0e3cf..1990ab elapsed=4.999s +INFO [08-24|11:59:34.008] Commit new sealing work number=6217 sealhash=b27e0e..8596b1 txs=0 gas=0 fees=0 elapsed="239.201µs" +INFO [08-24|11:59:34.254] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:59:39.009] Successfully sealed new block number=6217 sealhash=b27e0e..8596b1 hash=27d9d0..fec68d elapsed=5.000s +INFO [08-24|11:59:39.009] Commit new sealing work number=6218 sealhash=a53310..860ea7 txs=0 gas=0 fees=0 elapsed="263.658µs" +INFO [08-24|11:59:44.008] Successfully sealed new block number=6218 sealhash=a53310..860ea7 hash=c04e52..544f11 elapsed=4.998s +INFO [08-24|11:59:44.009] Commit new sealing work number=6219 sealhash=9c612e..0f4fde txs=0 gas=0 fees=0 elapsed="253.902µs" +INFO [08-24|11:59:44.271] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:59:49.004] Successfully sealed new block number=6219 sealhash=9c612e..0f4fde hash=f84b3e..f6be37 elapsed=4.995s +INFO [08-24|11:59:49.004] Commit new sealing work number=6220 sealhash=c3f95a..61f144 txs=0 gas=0 fees=0 elapsed="212.419µs" +INFO [08-24|11:59:54.009] Successfully sealed new block number=6220 sealhash=c3f95a..61f144 hash=c977b9..a42205 elapsed=5.005s +INFO [08-24|11:59:54.010] Commit new sealing work number=6221 sealhash=70d0bd..b970e3 txs=0 gas=0 fees=0 elapsed="450.271µs" +INFO [08-24|11:59:54.288] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:59:59.007] Successfully sealed new block number=6221 sealhash=70d0bd..b970e3 hash=b9b2ed..1a6a27 elapsed=4.996s +INFO [08-24|11:59:59.007] Commit new sealing work number=6222 sealhash=ddf437..6747fd txs=0 gas=0 fees=0 elapsed="293.436µs" +INFO [08-24|12:00:04.006] Successfully sealed new block number=6222 sealhash=ddf437..6747fd hash=89cf04..cd1f8a elapsed=4.998s +INFO [08-24|12:00:04.006] Commit new sealing work number=6223 sealhash=8e993f..2a330f txs=0 gas=0 fees=0 elapsed="234.312µs" +INFO [08-24|12:00:04.308] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:00:09.012] Successfully sealed new block number=6223 sealhash=8e993f..2a330f hash=15bbb3..c9fc1e elapsed=5.005s +INFO [08-24|12:00:09.012] Commit new sealing work number=6224 sealhash=b9f4b7..c192a2 txs=0 gas=0 fees=0 elapsed="268.003µs" +INFO [08-24|12:00:14.006] Successfully sealed new block number=6224 sealhash=b9f4b7..c192a2 hash=e5c437..07d25d elapsed=4.993s +INFO [08-24|12:00:14.006] Commit new sealing work number=6225 sealhash=d67148..0284a3 txs=0 gas=0 fees=0 elapsed="242.263µs" +INFO [08-24|12:00:14.329] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:00:19.012] Successfully sealed new block number=6225 sealhash=d67148..0284a3 hash=d0888d..8c355c elapsed=5.005s +INFO [08-24|12:00:19.012] Commit new sealing work number=6226 sealhash=603336..5bbe32 txs=0 gas=0 fees=0 elapsed="263.186µs" +INFO [08-24|12:00:24.006] Successfully sealed new block number=6226 sealhash=603336..5bbe32 hash=4b850a..2f4c0e elapsed=4.993s +INFO [08-24|12:00:24.006] Commit new sealing work number=6227 sealhash=e34c43..9afb0e txs=0 gas=0 fees=0 elapsed="271.167µs" +INFO [08-24|12:00:24.349] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:00:29.006] Successfully sealed new block number=6227 sealhash=e34c43..9afb0e hash=e99886..2596b8 elapsed=4.999s +INFO [08-24|12:00:29.006] Commit new sealing work number=6228 sealhash=0f82de..9092fe txs=0 gas=0 fees=0 elapsed="252.081µs" +INFO [08-24|12:00:34.010] Successfully sealed new block number=6228 sealhash=0f82de..9092fe hash=41cc07..b3fa76 elapsed=5.003s +INFO [08-24|12:00:34.010] Commit new sealing work number=6229 sealhash=19b0a4..17702e txs=0 gas=0 fees=0 elapsed="225.125µs" +INFO [08-24|12:00:34.369] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:00:39.010] Successfully sealed new block number=6229 sealhash=19b0a4..17702e hash=3d9877..752cd3 elapsed=4.999s +INFO [08-24|12:00:39.010] Commit new sealing work number=6230 sealhash=ee46a2..92c148 txs=0 gas=0 fees=0 elapsed="300.986µs" +INFO [08-24|12:00:44.006] Successfully sealed new block number=6230 sealhash=ee46a2..92c148 hash=3e6331..b3f568 elapsed=4.996s +INFO [08-24|12:00:44.007] Commit new sealing work number=6231 sealhash=1fe087..c7ac21 txs=0 gas=0 fees=0 elapsed="294.741µs" +INFO [08-24|12:00:44.386] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:00:49.008] Successfully sealed new block number=6231 sealhash=1fe087..c7ac21 hash=d09eb5..133b0d elapsed=5.001s +INFO [08-24|12:00:49.008] Commit new sealing work number=6232 sealhash=a9c026..58fb9e txs=0 gas=0 fees=0 elapsed="463.156µs" +INFO [08-24|12:00:54.005] Successfully sealed new block number=6232 sealhash=a9c026..58fb9e hash=8caad0..25e678 elapsed=4.997s +INFO [08-24|12:00:54.006] Commit new sealing work number=6233 sealhash=f4f50d..95ea53 txs=0 gas=0 fees=0 elapsed="326.052µs" +INFO [08-24|12:00:54.404] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:00:59.010] Successfully sealed new block number=6233 sealhash=f4f50d..95ea53 hash=18f4cf..eaca0d elapsed=5.003s +INFO [08-24|12:00:59.010] Commit new sealing work number=6234 sealhash=5bf368..0496c9 txs=0 gas=0 fees=0 elapsed="428.567µs" +INFO [08-24|12:01:04.007] Successfully sealed new block number=6234 sealhash=5bf368..0496c9 hash=04114e..c822eb elapsed=4.996s +INFO [08-24|12:01:04.007] Commit new sealing work number=6235 sealhash=0868b9..a5cd36 txs=0 gas=0 fees=0 elapsed="231.452µs" +INFO [08-24|12:01:04.428] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:01:09.006] Successfully sealed new block number=6235 sealhash=0868b9..a5cd36 hash=ddb79f..9322c0 elapsed=4.998s +INFO [08-24|12:01:09.006] Commit new sealing work number=6236 sealhash=5779ec..732572 txs=0 gas=0 fees=0 elapsed="228.85µs" +INFO [08-24|12:01:14.007] Successfully sealed new block number=6236 sealhash=5779ec..732572 hash=7558cf..dcac5c elapsed=5.001s +INFO [08-24|12:01:14.008] Commit new sealing work number=6237 sealhash=3b289e..0111ac txs=0 gas=0 fees=0 elapsed="271.985µs" +INFO [08-24|12:01:14.446] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:01:19.005] Successfully sealed new block number=6237 sealhash=3b289e..0111ac hash=e367d7..99aad1 elapsed=4.997s +INFO [08-24|12:01:19.006] Commit new sealing work number=6238 sealhash=af4a97..ec4c38 txs=0 gas=0 fees=0 elapsed="219.721µs" +INFO [08-24|12:01:24.010] Successfully sealed new block number=6238 sealhash=af4a97..ec4c38 hash=6debdf..ed6655 elapsed=5.004s +INFO [08-24|12:01:24.010] Commit new sealing work number=6239 sealhash=f1d6b8..6c21b3 txs=0 gas=0 fees=0 elapsed="377.471µs" +INFO [08-24|12:01:24.466] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:01:29.008] Successfully sealed new block number=6239 sealhash=f1d6b8..6c21b3 hash=f87bf4..103b8f elapsed=4.997s +INFO [08-24|12:01:29.009] Commit new sealing work number=6240 sealhash=1080c8..b54d65 txs=0 gas=0 fees=0 elapsed="226.64µs" +INFO [08-24|12:01:34.009] Successfully sealed new block number=6240 sealhash=1080c8..b54d65 hash=5f5e8d..728ddf elapsed=4.999s +INFO [08-24|12:01:34.009] Commit new sealing work number=6241 sealhash=21256b..af571f txs=0 gas=0 fees=0 elapsed="262.501µs" +INFO [08-24|12:01:34.483] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:01:39.008] Successfully sealed new block number=6241 sealhash=21256b..af571f hash=87e093..622f46 elapsed=4.998s +INFO [08-24|12:01:39.008] Commit new sealing work number=6242 sealhash=441082..f28eb0 txs=0 gas=0 fees=0 elapsed="525.452µs" +INFO [08-24|12:01:44.010] Successfully sealed new block number=6242 sealhash=441082..f28eb0 hash=1b4f70..19b7b3 elapsed=5.001s +INFO [08-24|12:01:44.010] Commit new sealing work number=6243 sealhash=b63989..a79787 txs=0 gas=0 fees=0 elapsed="363.913µs" +INFO [08-24|12:01:44.504] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:01:49.007] Successfully sealed new block number=6243 sealhash=b63989..a79787 hash=4f395c..beaed8 elapsed=4.996s +INFO [08-24|12:01:49.007] Commit new sealing work number=6244 sealhash=3f776d..194f65 txs=0 gas=0 fees=0 elapsed="374.005µs" +INFO [08-24|12:01:54.009] Successfully sealed new block number=6244 sealhash=3f776d..194f65 hash=4a044c..cf94b2 elapsed=5.001s +INFO [08-24|12:01:54.010] Commit new sealing work number=6245 sealhash=24a6f1..ec9297 txs=0 gas=0 fees=0 elapsed="587.296µs" +INFO [08-24|12:01:54.523] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:01:59.011] Successfully sealed new block number=6245 sealhash=24a6f1..ec9297 hash=2b8a2d..18c381 elapsed=5.001s +INFO [08-24|12:01:59.012] Commit new sealing work number=6246 sealhash=046af5..591a88 txs=0 gas=0 fees=0 elapsed="259.303µs" +INFO [08-24|12:02:04.010] Successfully sealed new block number=6246 sealhash=046af5..591a88 hash=286124..508ab2 elapsed=4.998s +INFO [08-24|12:02:04.011] Commit new sealing work number=6247 sealhash=9d5dd7..19befa txs=0 gas=0 fees=0 elapsed="208.672µs" +INFO [08-24|12:02:04.543] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:02:09.010] Successfully sealed new block number=6247 sealhash=9d5dd7..19befa hash=4894b5..1013b0 elapsed=4.999s +INFO [08-24|12:02:09.011] Commit new sealing work number=6248 sealhash=c41d90..a9d6f6 txs=0 gas=0 fees=0 elapsed="376.195µs" +INFO [08-24|12:02:14.012] Successfully sealed new block number=6248 sealhash=c41d90..a9d6f6 hash=9ff8a6..39e632 elapsed=5.001s +INFO [08-24|12:02:14.012] Commit new sealing work number=6249 sealhash=4f3326..411665 txs=0 gas=0 fees=0 elapsed="299.9µs" +INFO [08-24|12:02:14.563] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:02:19.007] Successfully sealed new block number=6249 sealhash=4f3326..411665 hash=62bc9f..a88590 elapsed=4.994s +INFO [08-24|12:02:19.008] Commit new sealing work number=6250 sealhash=5e1770..5c8ba7 txs=0 gas=0 fees=0 elapsed="247.822µs" +INFO [08-24|12:02:24.007] Successfully sealed new block number=6250 sealhash=5e1770..5c8ba7 hash=4e33c0..088fb9 elapsed=4.999s +INFO [08-24|12:02:24.007] Commit new sealing work number=6251 sealhash=f2229f..723d7e txs=0 gas=0 fees=0 elapsed="252.209µs" +INFO [08-24|12:02:24.578] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:02:29.007] Successfully sealed new block number=6251 sealhash=f2229f..723d7e hash=459d12..4a8156 elapsed=4.999s +INFO [08-24|12:02:29.007] Commit new sealing work number=6252 sealhash=f54bea..b53048 txs=0 gas=0 fees=0 elapsed="219.453µs" +INFO [08-24|12:02:34.011] Successfully sealed new block number=6252 sealhash=f54bea..b53048 hash=21bbbe..cbf577 elapsed=5.004s +INFO [08-24|12:02:34.012] Commit new sealing work number=6253 sealhash=f03bca..542a62 txs=0 gas=0 fees=0 elapsed="320.622µs" +INFO [08-24|12:02:34.597] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:02:39.010] Successfully sealed new block number=6253 sealhash=f03bca..542a62 hash=d2bd61..99de54 elapsed=4.998s +INFO [08-24|12:02:39.011] Commit new sealing work number=6254 sealhash=51ffc5..6319f9 txs=0 gas=0 fees=0 elapsed="561.562µs" +INFO [08-24|12:02:44.008] Successfully sealed new block number=6254 sealhash=51ffc5..6319f9 hash=9c6f91..a90e8e elapsed=4.996s +INFO [08-24|12:02:44.008] Commit new sealing work number=6255 sealhash=3a51fd..a7eb0d txs=0 gas=0 fees=0 elapsed="323.277µs" +INFO [08-24|12:02:44.618] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:02:49.011] Successfully sealed new block number=6255 sealhash=3a51fd..a7eb0d hash=83919e..0d7d4b elapsed=5.002s +INFO [08-24|12:02:49.012] Commit new sealing work number=6256 sealhash=3afef4..65a897 txs=0 gas=0 fees=0 elapsed="432.899µs" +INFO [08-24|12:02:54.005] Successfully sealed new block number=6256 sealhash=3afef4..65a897 hash=623dca..9bbb49 elapsed=4.993s +INFO [08-24|12:02:54.005] Commit new sealing work number=6257 sealhash=c7855a..22ed3d txs=0 gas=0 fees=0 elapsed="242.828µs" +INFO [08-24|12:02:54.635] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:02:59.007] Successfully sealed new block number=6257 sealhash=c7855a..22ed3d hash=60b650..f4bf2b elapsed=5.001s +INFO [08-24|12:02:59.007] Commit new sealing work number=6258 sealhash=59baaa..5864e3 txs=0 gas=0 fees=0 elapsed="209.737µs" +INFO [08-24|12:03:04.005] Successfully sealed new block number=6258 sealhash=59baaa..5864e3 hash=d67bb1..32f58b elapsed=4.997s +INFO [08-24|12:03:04.005] Commit new sealing work number=6259 sealhash=9ef5e3..aff1e7 txs=0 gas=0 fees=0 elapsed="239.275µs" +INFO [08-24|12:03:04.654] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:03:09.006] Successfully sealed new block number=6259 sealhash=9ef5e3..aff1e7 hash=249e77..5f0055 elapsed=5.000s +INFO [08-24|12:03:09.006] Commit new sealing work number=6260 sealhash=6d5e9f..ca8a2c txs=0 gas=0 fees=0 elapsed="369.729µs" +INFO [08-24|12:03:14.010] Successfully sealed new block number=6260 sealhash=6d5e9f..ca8a2c hash=704314..c55355 elapsed=5.003s +INFO [08-24|12:03:14.010] Commit new sealing work number=6261 sealhash=5294bc..47fc74 txs=0 gas=0 fees=0 elapsed="371.764µs" +INFO [08-24|12:03:14.675] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:03:19.009] Successfully sealed new block number=6261 sealhash=5294bc..47fc74 hash=db5e65..15e422 elapsed=4.998s +INFO [08-24|12:03:19.009] Commit new sealing work number=6262 sealhash=b419c0..863dfc txs=0 gas=0 fees=0 elapsed="557.062µs" +INFO [08-24|12:03:24.009] Successfully sealed new block number=6262 sealhash=b419c0..863dfc hash=cb3348..df4c5c elapsed=4.999s +INFO [08-24|12:03:24.009] Commit new sealing work number=6263 sealhash=5a4dac..608027 txs=0 gas=0 fees=0 elapsed="298.075µs" +INFO [08-24|12:03:24.695] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:03:29.008] Successfully sealed new block number=6263 sealhash=5a4dac..608027 hash=84f41e..c44d70 elapsed=4.998s +INFO [08-24|12:03:29.008] Commit new sealing work number=6264 sealhash=f59a53..8e61e6 txs=0 gas=0 fees=0 elapsed="187.675µs" +INFO [08-24|12:03:34.006] Successfully sealed new block number=6264 sealhash=f59a53..8e61e6 hash=c5c755..c93177 elapsed=4.997s +INFO [08-24|12:03:34.006] Commit new sealing work number=6265 sealhash=b00970..4681b5 txs=0 gas=0 fees=0 elapsed="245.072µs" +INFO [08-24|12:03:34.716] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:03:39.006] Successfully sealed new block number=6265 sealhash=b00970..4681b5 hash=377d00..79b14b elapsed=4.999s +INFO [08-24|12:03:39.006] Commit new sealing work number=6266 sealhash=6f5064..741b99 txs=0 gas=0 fees=0 elapsed="387.122µs" +INFO [08-24|12:03:44.011] Successfully sealed new block number=6266 sealhash=6f5064..741b99 hash=233fe3..ead916 elapsed=5.004s +INFO [08-24|12:03:44.012] Commit new sealing work number=6267 sealhash=40790a..454f1b txs=0 gas=0 fees=0 elapsed="382.797µs" +INFO [08-24|12:03:44.733] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:03:49.005] Successfully sealed new block number=6267 sealhash=40790a..454f1b hash=79662c..71303f elapsed=4.993s +INFO [08-24|12:03:49.005] Commit new sealing work number=6268 sealhash=a5b462..a9b360 txs=0 gas=0 fees=0 elapsed="319.105µs" +INFO [08-24|12:03:54.005] Successfully sealed new block number=6268 sealhash=a5b462..a9b360 hash=19ecb4..d1ce28 elapsed=5.000s +INFO [08-24|12:03:54.006] Commit new sealing work number=6269 sealhash=0bce10..dee35b txs=0 gas=0 fees=0 elapsed="323.432µs" +INFO [08-24|12:03:54.752] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:03:59.009] Successfully sealed new block number=6269 sealhash=0bce10..dee35b hash=4f1e52..b2819a elapsed=5.003s +INFO [08-24|12:03:59.010] Commit new sealing work number=6270 sealhash=90a6b2..fc712f txs=0 gas=0 fees=0 elapsed="264.259µs" +INFO [08-24|12:04:04.011] Successfully sealed new block number=6270 sealhash=90a6b2..fc712f hash=b08814..9103b0 elapsed=5.001s +INFO [08-24|12:04:04.011] Commit new sealing work number=6271 sealhash=8fca2e..66565f txs=0 gas=0 fees=0 elapsed="267.437µs" +INFO [08-24|12:04:04.774] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:04:09.005] Successfully sealed new block number=6271 sealhash=8fca2e..66565f hash=bcf611..0f119e elapsed=4.993s +INFO [08-24|12:04:09.006] Commit new sealing work number=6272 sealhash=5878c1..1bc1c5 txs=0 gas=0 fees=0 elapsed="355.211µs" +INFO [08-24|12:04:14.009] Successfully sealed new block number=6272 sealhash=5878c1..1bc1c5 hash=9340f2..a0ff14 elapsed=5.003s +INFO [08-24|12:04:14.009] Commit new sealing work number=6273 sealhash=fa2cf8..0780ed txs=0 gas=0 fees=0 elapsed="605.618µs" +INFO [08-24|12:04:14.791] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:04:19.010] Successfully sealed new block number=6273 sealhash=fa2cf8..0780ed hash=52162a..b7f3d8 elapsed=5.000s +INFO [08-24|12:04:19.010] Commit new sealing work number=6274 sealhash=5692d0..b7af77 txs=0 gas=0 fees=0 elapsed="322.801µs" +INFO [08-24|12:04:24.005] Successfully sealed new block number=6274 sealhash=5692d0..b7af77 hash=990f2d..6ff1fc elapsed=4.994s +INFO [08-24|12:04:24.005] Commit new sealing work number=6275 sealhash=492d38..96fd28 txs=0 gas=0 fees=0 elapsed="410.284µs" +INFO [08-24|12:04:24.811] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:04:29.010] Successfully sealed new block number=6275 sealhash=492d38..96fd28 hash=8059a1..b311d2 elapsed=5.004s +INFO [08-24|12:04:29.010] Commit new sealing work number=6276 sealhash=b36e0c..21d767 txs=0 gas=0 fees=0 elapsed="313.773µs" +INFO [08-24|12:04:34.009] Successfully sealed new block number=6276 sealhash=b36e0c..21d767 hash=742a7e..3f1be8 elapsed=4.999s +INFO [08-24|12:04:34.010] Commit new sealing work number=6277 sealhash=4df425..d1e021 txs=0 gas=0 fees=0 elapsed="258.247µs" +INFO [08-24|12:04:34.833] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:04:39.010] Successfully sealed new block number=6277 sealhash=4df425..d1e021 hash=61c253..e857e6 elapsed=5.000s +INFO [08-24|12:04:39.010] Commit new sealing work number=6278 sealhash=e921ff..29f609 txs=0 gas=0 fees=0 elapsed="371.251µs" +INFO [08-24|12:04:44.010] Successfully sealed new block number=6278 sealhash=e921ff..29f609 hash=7700e3..c979cb elapsed=4.999s +INFO [08-24|12:04:44.010] Commit new sealing work number=6279 sealhash=0393d1..547da3 txs=0 gas=0 fees=0 elapsed="317.161µs" +INFO [08-24|12:04:44.855] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:04:49.007] Successfully sealed new block number=6279 sealhash=0393d1..547da3 hash=4c78bd..55352e elapsed=4.996s +INFO [08-24|12:04:49.007] Commit new sealing work number=6280 sealhash=c7adf3..53dfda txs=0 gas=0 fees=0 elapsed="309.432µs" +INFO [08-24|12:04:54.010] Successfully sealed new block number=6280 sealhash=c7adf3..53dfda hash=791c64..7eb7d6 elapsed=5.003s +INFO [08-24|12:04:54.011] Commit new sealing work number=6281 sealhash=a74c39..606894 txs=0 gas=0 fees=0 elapsed="369.242µs" +INFO [08-24|12:04:54.875] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:04:59.010] Successfully sealed new block number=6281 sealhash=a74c39..606894 hash=cb922e..efef4c elapsed=4.999s +INFO [08-24|12:04:59.011] Commit new sealing work number=6282 sealhash=cbc5a4..9ff182 txs=0 gas=0 fees=0 elapsed="345.544µs" +INFO [08-24|12:05:04.005] Successfully sealed new block number=6282 sealhash=cbc5a4..9ff182 hash=f692cb..a37fd7 elapsed=4.993s +INFO [08-24|12:05:04.005] Commit new sealing work number=6283 sealhash=a50d17..ad530b txs=0 gas=0 fees=0 elapsed="240.203µs" +INFO [08-24|12:05:04.896] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:05:09.011] Successfully sealed new block number=6283 sealhash=a50d17..ad530b hash=243b34..ac6295 elapsed=5.005s +INFO [08-24|12:05:09.012] Commit new sealing work number=6284 sealhash=f7d03e..971507 txs=0 gas=0 fees=0 elapsed="571.207µs" +INFO [08-24|12:05:14.011] Successfully sealed new block number=6284 sealhash=f7d03e..971507 hash=a4a464..c9b6cd elapsed=4.998s +INFO [08-24|12:05:14.011] Commit new sealing work number=6285 sealhash=2d04b5..370f3a txs=0 gas=0 fees=0 elapsed="349.163µs" +INFO [08-24|12:05:14.914] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:05:19.010] Successfully sealed new block number=6285 sealhash=2d04b5..370f3a hash=1613c9..a485dc elapsed=4.998s +INFO [08-24|12:05:19.010] Commit new sealing work number=6286 sealhash=9d9254..260467 txs=0 gas=0 fees=0 elapsed="391.933µs" +INFO [08-24|12:05:24.011] Successfully sealed new block number=6286 sealhash=9d9254..260467 hash=8d6d30..7f97c0 elapsed=5.000s +INFO [08-24|12:05:24.012] Commit new sealing work number=6287 sealhash=c37e2b..6c242c txs=0 gas=0 fees=0 elapsed="371.296µs" +INFO [08-24|12:05:24.931] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:05:29.010] Successfully sealed new block number=6287 sealhash=c37e2b..6c242c hash=92c522..a7decf elapsed=4.998s +INFO [08-24|12:05:29.011] Commit new sealing work number=6288 sealhash=1dd7e7..bf1df4 txs=0 gas=0 fees=0 elapsed="321.525µs" +INFO [08-24|12:05:34.005] Successfully sealed new block number=6288 sealhash=1dd7e7..bf1df4 hash=6eb540..deedd9 elapsed=4.993s +INFO [08-24|12:05:34.005] Commit new sealing work number=6289 sealhash=0af349..fc1bfe txs=0 gas=0 fees=0 elapsed="262.556µs" +INFO [08-24|12:05:34.952] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:05:39.006] Successfully sealed new block number=6289 sealhash=0af349..fc1bfe hash=b97c31..1493f2 elapsed=5.001s +INFO [08-24|12:05:39.007] Commit new sealing work number=6290 sealhash=4d0139..93ac4f txs=0 gas=0 fees=0 elapsed="340.048µs" +INFO [08-24|12:05:44.008] Successfully sealed new block number=6290 sealhash=4d0139..93ac4f hash=e1424f..6a06b7 elapsed=5.001s +INFO [08-24|12:05:44.009] Commit new sealing work number=6291 sealhash=d88e17..6280e9 txs=0 gas=0 fees=0 elapsed="307.034µs" +INFO [08-24|12:05:44.972] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:05:49.006] Successfully sealed new block number=6291 sealhash=d88e17..6280e9 hash=0e04b3..d052ff elapsed=4.997s +INFO [08-24|12:05:49.006] Commit new sealing work number=6292 sealhash=5e7a1a..26b120 txs=0 gas=0 fees=0 elapsed="575.945µs" +INFO [08-24|12:05:54.006] Successfully sealed new block number=6292 sealhash=5e7a1a..26b120 hash=8f4deb..ff1cde elapsed=4.999s +INFO [08-24|12:05:54.006] Commit new sealing work number=6293 sealhash=8cc569..44e165 txs=0 gas=0 fees=0 elapsed="567.384µs" +INFO [08-24|12:05:54.992] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:05:59.006] Successfully sealed new block number=6293 sealhash=8cc569..44e165 hash=adce99..f9f366 elapsed=4.999s +INFO [08-24|12:05:59.006] Commit new sealing work number=6294 sealhash=b5dbfd..152072 txs=0 gas=0 fees=0 elapsed="260.688µs" +INFO [08-24|12:06:04.004] Successfully sealed new block number=6294 sealhash=b5dbfd..152072 hash=a2bdfc..8f4d62 elapsed=4.997s +INFO [08-24|12:06:04.004] Commit new sealing work number=6295 sealhash=460f29..db8f97 txs=0 gas=0 fees=0 elapsed="272.276µs" +INFO [08-24|12:06:05.012] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:06:09.009] Successfully sealed new block number=6295 sealhash=460f29..db8f97 hash=865751..0cd54e elapsed=5.004s +INFO [08-24|12:06:09.009] Commit new sealing work number=6296 sealhash=c9a9f4..5d5d3d txs=0 gas=0 fees=0 elapsed="449.842µs" +INFO [08-24|12:06:14.010] Successfully sealed new block number=6296 sealhash=c9a9f4..5d5d3d hash=f7c06e..78c4e7 elapsed=5.000s +INFO [08-24|12:06:14.010] Commit new sealing work number=6297 sealhash=b63eb4..93319f txs=0 gas=0 fees=0 elapsed="480.57µs" +INFO [08-24|12:06:15.029] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:06:19.010] Successfully sealed new block number=6297 sealhash=b63eb4..93319f hash=4505ee..29e2bf elapsed=5.000s +INFO [08-24|12:06:19.011] Commit new sealing work number=6298 sealhash=0f9108..1dc606 txs=0 gas=0 fees=0 elapsed="354.322µs" +INFO [08-24|12:06:24.008] Successfully sealed new block number=6298 sealhash=0f9108..1dc606 hash=b036c6..978548 elapsed=4.997s +INFO [08-24|12:06:24.008] Commit new sealing work number=6299 sealhash=a30389..727e23 txs=0 gas=0 fees=0 elapsed="267.407µs" +INFO [08-24|12:06:25.048] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:06:29.008] Successfully sealed new block number=6299 sealhash=a30389..727e23 hash=9fa773..483b71 elapsed=5.000s +INFO [08-24|12:06:29.009] Commit new sealing work number=6300 sealhash=af430e..5b0ea7 txs=0 gas=0 fees=0 elapsed="257.638µs" +INFO [08-24|12:06:34.005] Successfully sealed new block number=6300 sealhash=af430e..5b0ea7 hash=a9f572..517433 elapsed=4.996s +INFO [08-24|12:06:34.005] Commit new sealing work number=6301 sealhash=664661..ddfe4e txs=0 gas=0 fees=0 elapsed="235.643µs" +INFO [08-24|12:06:35.066] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:06:39.008] Successfully sealed new block number=6301 sealhash=664661..ddfe4e hash=7b781e..896e02 elapsed=5.002s +INFO [08-24|12:06:39.008] Commit new sealing work number=6302 sealhash=c99d27..512279 txs=0 gas=0 fees=0 elapsed="340.27µs" +INFO [08-24|12:06:44.006] Successfully sealed new block number=6302 sealhash=c99d27..512279 hash=112f1e..bb2877 elapsed=4.998s +INFO [08-24|12:06:44.007] Commit new sealing work number=6303 sealhash=f7f269..c28464 txs=0 gas=0 fees=0 elapsed="347.524µs" +INFO [08-24|12:06:45.085] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:06:49.005] Successfully sealed new block number=6303 sealhash=f7f269..c28464 hash=b4fb9d..22afad elapsed=4.998s +INFO [08-24|12:06:49.005] Commit new sealing work number=6304 sealhash=095487..7cd4a0 txs=0 gas=0 fees=0 elapsed="356.538µs" +INFO [08-24|12:06:54.006] Successfully sealed new block number=6304 sealhash=095487..7cd4a0 hash=ba9e8c..0717f2 elapsed=5.000s +INFO [08-24|12:06:54.007] Commit new sealing work number=6305 sealhash=322696..2fc80b txs=0 gas=0 fees=0 elapsed="329.742µs" +INFO [08-24|12:06:55.104] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:06:59.011] Successfully sealed new block number=6305 sealhash=322696..2fc80b hash=9e2c2e..bad527 elapsed=5.004s +INFO [08-24|12:06:59.011] Commit new sealing work number=6306 sealhash=da97f8..73abdb txs=0 gas=0 fees=0 elapsed="362.87µs" +INFO [08-24|12:07:04.006] Successfully sealed new block number=6306 sealhash=da97f8..73abdb hash=399355..a63d0a elapsed=4.994s +INFO [08-24|12:07:04.006] Commit new sealing work number=6307 sealhash=166825..ecc34c txs=0 gas=0 fees=0 elapsed="292.273µs" +INFO [08-24|12:07:05.122] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:07:09.011] Successfully sealed new block number=6307 sealhash=166825..ecc34c hash=ca8218..063c50 elapsed=5.005s +INFO [08-24|12:07:09.012] Commit new sealing work number=6308 sealhash=8cea93..7a0209 txs=0 gas=0 fees=0 elapsed="409.977µs" +INFO [08-24|12:07:14.005] Successfully sealed new block number=6308 sealhash=8cea93..7a0209 hash=79c47a..2c8523 elapsed=4.993s +INFO [08-24|12:07:14.005] Commit new sealing work number=6309 sealhash=3142e2..8a30b7 txs=0 gas=0 fees=0 elapsed="303.956µs" +INFO [08-24|12:07:15.145] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:07:19.009] Successfully sealed new block number=6309 sealhash=3142e2..8a30b7 hash=750b23..8387e3 elapsed=5.004s +INFO [08-24|12:07:19.010] Commit new sealing work number=6310 sealhash=4821ce..6dff17 txs=0 gas=0 fees=0 elapsed="293.323µs" +INFO [08-24|12:07:24.005] Successfully sealed new block number=6310 sealhash=4821ce..6dff17 hash=86097f..fabca7 elapsed=4.995s +INFO [08-24|12:07:24.005] Commit new sealing work number=6311 sealhash=476ace..74c34a txs=0 gas=0 fees=0 elapsed="282.471µs" +INFO [08-24|12:07:25.165] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:07:29.005] Successfully sealed new block number=6311 sealhash=476ace..74c34a hash=73a94f..684363 elapsed=5.000s +INFO [08-24|12:07:29.006] Commit new sealing work number=6312 sealhash=d200c4..83fae5 txs=0 gas=0 fees=0 elapsed="410.24µs" +INFO [08-24|12:07:34.011] Successfully sealed new block number=6312 sealhash=d200c4..83fae5 hash=896bac..294f4b elapsed=5.004s +INFO [08-24|12:07:34.011] Commit new sealing work number=6313 sealhash=46415a..7214a5 txs=0 gas=0 fees=0 elapsed="242.124µs" +INFO [08-24|12:07:35.186] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:07:39.009] Successfully sealed new block number=6313 sealhash=46415a..7214a5 hash=762688..dde6db elapsed=4.997s +INFO [08-24|12:07:39.009] Commit new sealing work number=6314 sealhash=c951a4..e8c5e0 txs=0 gas=0 fees=0 elapsed="340.223µs" +INFO [08-24|12:07:44.010] Successfully sealed new block number=6314 sealhash=c951a4..e8c5e0 hash=c2298c..7774e7 elapsed=5.000s +INFO [08-24|12:07:44.010] Commit new sealing work number=6315 sealhash=ec5f30..095624 txs=0 gas=0 fees=0 elapsed="420.604µs" +INFO [08-24|12:07:45.207] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:07:49.011] Successfully sealed new block number=6315 sealhash=ec5f30..095624 hash=0cf7b0..f73e04 elapsed=5.000s +INFO [08-24|12:07:49.012] Commit new sealing work number=6316 sealhash=bdec6e..81e6ad txs=0 gas=0 fees=0 elapsed="299.533µs" +INFO [08-24|12:07:54.010] Successfully sealed new block number=6316 sealhash=bdec6e..81e6ad hash=c3b8c1..449210 elapsed=4.998s +INFO [08-24|12:07:54.011] Commit new sealing work number=6317 sealhash=8eb966..175cec txs=0 gas=0 fees=0 elapsed="447.851µs" +INFO [08-24|12:07:55.225] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:07:59.008] Successfully sealed new block number=6317 sealhash=8eb966..175cec hash=841cda..2b40a9 elapsed=4.997s +INFO [08-24|12:07:59.009] Commit new sealing work number=6318 sealhash=93fa6b..323b12 txs=0 gas=0 fees=0 elapsed="269.18µs" +INFO [08-24|12:08:04.011] Successfully sealed new block number=6318 sealhash=93fa6b..323b12 hash=12fe10..b1f822 elapsed=5.002s +INFO [08-24|12:08:04.012] Commit new sealing work number=6319 sealhash=42e433..2f5997 txs=0 gas=0 fees=0 elapsed="584.887µs" +INFO [08-24|12:08:05.243] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:08:09.006] Successfully sealed new block number=6319 sealhash=42e433..2f5997 hash=386708..282cd1 elapsed=4.994s +INFO [08-24|12:08:09.006] Commit new sealing work number=6320 sealhash=a66f29..f00dfc txs=0 gas=0 fees=0 elapsed="411.718µs" +INFO [08-24|12:08:14.011] Successfully sealed new block number=6320 sealhash=a66f29..f00dfc hash=dd4427..4fa666 elapsed=5.005s +INFO [08-24|12:08:14.012] Commit new sealing work number=6321 sealhash=18e09c..5f3f35 txs=0 gas=0 fees=0 elapsed="507.143µs" +INFO [08-24|12:08:15.262] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:08:19.006] Successfully sealed new block number=6321 sealhash=18e09c..5f3f35 hash=c93648..554dbc elapsed=4.993s +INFO [08-24|12:08:19.006] Commit new sealing work number=6322 sealhash=42185d..c27eaf txs=0 gas=0 fees=0 elapsed="392.692µs" +INFO [08-24|12:08:24.010] Successfully sealed new block number=6322 sealhash=42185d..c27eaf hash=d4a567..33b0ad elapsed=5.004s +INFO [08-24|12:08:24.011] Commit new sealing work number=6323 sealhash=370986..408c12 txs=0 gas=0 fees=0 elapsed="493.757µs" +INFO [08-24|12:08:25.283] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:08:29.015] Successfully sealed new block number=6323 sealhash=370986..408c12 hash=7a58f4..c0b2fb elapsed=5.004s +INFO [08-24|12:08:29.015] Commit new sealing work number=6324 sealhash=0964a8..fb4fe5 txs=0 gas=0 fees=0 elapsed="257.616µs" +INFO [08-24|12:08:34.011] Successfully sealed new block number=6324 sealhash=0964a8..fb4fe5 hash=fcc897..c2ba30 elapsed=4.995s +INFO [08-24|12:08:34.012] Commit new sealing work number=6325 sealhash=df6e22..84e582 txs=0 gas=0 fees=0 elapsed="393.757µs" +INFO [08-24|12:08:35.301] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:08:39.016] Successfully sealed new block number=6325 sealhash=df6e22..84e582 hash=951c17..29c91e elapsed=5.004s +INFO [08-24|12:08:39.016] Commit new sealing work number=6326 sealhash=7964aa..eac6be txs=0 gas=0 fees=0 elapsed="381.441µs" +INFO [08-24|12:08:44.016] Successfully sealed new block number=6326 sealhash=7964aa..eac6be hash=82142d..59250a elapsed=4.999s +INFO [08-24|12:08:44.017] Commit new sealing work number=6327 sealhash=38c7fa..79feda txs=0 gas=0 fees=0 elapsed="300.663µs" +INFO [08-24|12:08:45.319] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:08:49.015] Successfully sealed new block number=6327 sealhash=38c7fa..79feda hash=12b68a..3f1e42 elapsed=4.997s +INFO [08-24|12:08:49.016] Commit new sealing work number=6328 sealhash=d5a9fc..18f6b5 txs=0 gas=0 fees=0 elapsed="931.99µs" +INFO [08-24|12:08:54.008] Successfully sealed new block number=6328 sealhash=d5a9fc..18f6b5 hash=f48f89..d4f1fc elapsed=4.992s +INFO [08-24|12:08:54.009] Commit new sealing work number=6329 sealhash=8666bb..42229d txs=0 gas=0 fees=0 elapsed="402.596µs" +INFO [08-24|12:08:55.340] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:08:59.020] Successfully sealed new block number=6329 sealhash=8666bb..42229d hash=b4ccee..92188c elapsed=5.011s +INFO [08-24|12:08:59.021] Commit new sealing work number=6330 sealhash=f81f69..0a6cc5 txs=0 gas=0 fees=0 elapsed="381.376µs" +INFO [08-24|12:09:04.026] Successfully sealed new block number=6330 sealhash=f81f69..0a6cc5 hash=a5b330..1c2dab elapsed=5.004s +INFO [08-24|12:09:04.026] Commit new sealing work number=6331 sealhash=6fb6a4..60464d txs=0 gas=0 fees=0 elapsed="366.147µs" +INFO [08-24|12:09:05.362] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:09:09.014] Successfully sealed new block number=6331 sealhash=6fb6a4..60464d hash=af6859..ce5398 elapsed=4.988s +INFO [08-24|12:09:09.028] Commit new sealing work number=6332 sealhash=6e4272..a51c61 txs=0 gas=0 fees=0 elapsed=13.095ms +INFO [08-24|12:09:14.018] Successfully sealed new block number=6332 sealhash=6e4272..a51c61 hash=fa3c8b..4e832e elapsed=4.990s +INFO [08-24|12:09:14.019] Commit new sealing work number=6333 sealhash=213a65..fc55b0 txs=0 gas=0 fees=0 elapsed="296.643µs" +INFO [08-24|12:09:15.383] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:09:19.016] Successfully sealed new block number=6333 sealhash=213a65..fc55b0 hash=4f1ea4..b50b60 elapsed=4.996s +INFO [08-24|12:09:19.016] Commit new sealing work number=6334 sealhash=edaa44..ba3e2f txs=0 gas=0 fees=0 elapsed="336.9µs" +INFO [08-24|12:09:24.004] Successfully sealed new block number=6334 sealhash=edaa44..ba3e2f hash=16a44f..c5ddab elapsed=4.988s +INFO [08-24|12:09:24.005] Commit new sealing work number=6335 sealhash=8641f4..61b39b txs=0 gas=0 fees=0 elapsed="348.726µs" +INFO [08-24|12:09:25.408] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:09:29.033] Successfully sealed new block number=6335 sealhash=8641f4..61b39b hash=3739be..9a1294 elapsed=5.028s +INFO [08-24|12:09:29.034] Commit new sealing work number=6336 sealhash=9ba465..a158d3 txs=0 gas=0 fees=0 elapsed="316.697µs" +INFO [08-24|12:09:34.011] Successfully sealed new block number=6336 sealhash=9ba465..a158d3 hash=93055b..fc01bb elapsed=4.976s +INFO [08-24|12:09:34.011] Commit new sealing work number=6337 sealhash=5a9879..ee0067 txs=0 gas=0 fees=0 elapsed="346.815µs" +INFO [08-24|12:09:35.426] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:09:39.007] Successfully sealed new block number=6337 sealhash=5a9879..ee0067 hash=de03f0..77f10e elapsed=4.995s +INFO [08-24|12:09:39.007] Commit new sealing work number=6338 sealhash=c7c8cb..951ebf txs=0 gas=0 fees=0 elapsed="392.322µs" +INFO [08-24|12:09:44.012] Successfully sealed new block number=6338 sealhash=c7c8cb..951ebf hash=1ca266..80546c elapsed=5.004s +INFO [08-24|12:09:44.012] Commit new sealing work number=6339 sealhash=a450dc..d40b83 txs=0 gas=0 fees=0 elapsed="338.747µs" +INFO [08-24|12:09:45.446] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:09:49.012] Successfully sealed new block number=6339 sealhash=a450dc..d40b83 hash=7fb5dc..6d1664 elapsed=4.999s +INFO [08-24|12:09:49.012] Commit new sealing work number=6340 sealhash=54f5b9..dab2ea txs=0 gas=0 fees=0 elapsed="420.162µs" +INFO [08-24|12:09:54.010] Successfully sealed new block number=6340 sealhash=54f5b9..dab2ea hash=1ec9bb..c9293f elapsed=4.997s +INFO [08-24|12:09:54.010] Commit new sealing work number=6341 sealhash=c1ddeb..6624f0 txs=0 gas=0 fees=0 elapsed="404.084µs" +INFO [08-24|12:09:55.463] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:09:59.008] Successfully sealed new block number=6341 sealhash=c1ddeb..6624f0 hash=adea84..16fe23 elapsed=4.997s +INFO [08-24|12:09:59.008] Commit new sealing work number=6342 sealhash=97e100..d389f2 txs=0 gas=0 fees=0 elapsed="214.101µs" +INFO [08-24|12:10:04.010] Successfully sealed new block number=6342 sealhash=97e100..d389f2 hash=b23e2a..3af442 elapsed=5.001s +INFO [08-24|12:10:04.010] Commit new sealing work number=6343 sealhash=fe1c4b..90573d txs=0 gas=0 fees=0 elapsed="275.213µs" +INFO [08-24|12:10:05.484] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:10:09.008] Successfully sealed new block number=6343 sealhash=fe1c4b..90573d hash=bdbc00..3f9826 elapsed=4.997s +INFO [08-24|12:10:09.008] Commit new sealing work number=6344 sealhash=bc3d3e..819a7f txs=0 gas=0 fees=0 elapsed="289.9µs" +INFO [08-24|12:10:14.008] Successfully sealed new block number=6344 sealhash=bc3d3e..819a7f hash=291ada..3c2ec3 elapsed=4.999s +INFO [08-24|12:10:14.008] Commit new sealing work number=6345 sealhash=e65dba..6d8a96 txs=0 gas=0 fees=0 elapsed="245.987µs" +INFO [08-24|12:10:15.507] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:10:19.010] Successfully sealed new block number=6345 sealhash=e65dba..6d8a96 hash=507de2..332ee5 elapsed=5.002s +INFO [08-24|12:10:19.011] Commit new sealing work number=6346 sealhash=e6c890..36919e txs=0 gas=0 fees=0 elapsed="469.998µs" +INFO [08-24|12:10:24.010] Successfully sealed new block number=6346 sealhash=e6c890..36919e hash=01f482..c7e970 elapsed=4.999s +INFO [08-24|12:10:24.011] Commit new sealing work number=6347 sealhash=351f3b..f7b7f8 txs=0 gas=0 fees=0 elapsed="311.597µs" +INFO [08-24|12:10:25.524] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:10:29.008] Successfully sealed new block number=6347 sealhash=351f3b..f7b7f8 hash=d54bbe..2dc7ed elapsed=4.997s +INFO [08-24|12:10:29.009] Commit new sealing work number=6348 sealhash=0696d5..a7a5c7 txs=0 gas=0 fees=0 elapsed="203.348µs" +INFO [08-24|12:10:34.004] Successfully sealed new block number=6348 sealhash=0696d5..a7a5c7 hash=050f8d..02f6a3 elapsed=4.995s +INFO [08-24|12:10:34.005] Commit new sealing work number=6349 sealhash=e9028f..9fe0d9 txs=0 gas=0 fees=0 elapsed="274.741µs" +INFO [08-24|12:10:35.542] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:10:39.010] Successfully sealed new block number=6349 sealhash=e9028f..9fe0d9 hash=9b5d5a..5f095e elapsed=5.005s +INFO [08-24|12:10:39.011] Commit new sealing work number=6350 sealhash=f7dd9c..410f2a txs=0 gas=0 fees=0 elapsed="880.733µs" +INFO [08-24|12:10:44.007] Successfully sealed new block number=6350 sealhash=f7dd9c..410f2a hash=fb0d1e..be6058 elapsed=4.996s +INFO [08-24|12:10:44.008] Commit new sealing work number=6351 sealhash=587ad3..638a2e txs=0 gas=0 fees=0 elapsed="307.739µs" +INFO [08-24|12:10:45.564] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:10:49.012] Successfully sealed new block number=6351 sealhash=587ad3..638a2e hash=b24112..ebd727 elapsed=5.004s +INFO [08-24|12:10:49.013] Commit new sealing work number=6352 sealhash=f68368..7e6c4e txs=0 gas=0 fees=0 elapsed="699.386µs" +INFO [08-24|12:10:54.007] Successfully sealed new block number=6352 sealhash=f68368..7e6c4e hash=45b56b..94ec8a elapsed=4.993s +INFO [08-24|12:10:54.007] Commit new sealing work number=6353 sealhash=798acf..c2248e txs=0 gas=0 fees=0 elapsed="302.53µs" +INFO [08-24|12:10:55.584] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:10:59.008] Successfully sealed new block number=6353 sealhash=798acf..c2248e hash=c08a13..ccef6d elapsed=5.001s +INFO [08-24|12:10:59.009] Commit new sealing work number=6354 sealhash=e4ecbf..e0c731 txs=0 gas=0 fees=0 elapsed="299.602µs" +INFO [08-24|12:11:04.010] Successfully sealed new block number=6354 sealhash=e4ecbf..e0c731 hash=8e9510..79d2ed elapsed=5.001s +INFO [08-24|12:11:04.011] Commit new sealing work number=6355 sealhash=0d161f..af2522 txs=0 gas=0 fees=0 elapsed="290.417µs" +INFO [08-24|12:11:05.601] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:11:09.011] Successfully sealed new block number=6355 sealhash=0d161f..af2522 hash=47534b..349a95 elapsed=5.000s +INFO [08-24|12:11:09.012] Commit new sealing work number=6356 sealhash=917368..1005c9 txs=0 gas=0 fees=0 elapsed="511.816µs" +INFO [08-24|12:11:14.011] Successfully sealed new block number=6356 sealhash=917368..1005c9 hash=8f84ed..721078 elapsed=4.999s +INFO [08-24|12:11:14.011] Commit new sealing work number=6357 sealhash=8d12f0..f02b55 txs=0 gas=0 fees=0 elapsed="300.46µs" +INFO [08-24|12:11:15.622] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:11:19.011] Successfully sealed new block number=6357 sealhash=8d12f0..f02b55 hash=82c221..7df72c elapsed=4.999s +INFO [08-24|12:11:19.011] Commit new sealing work number=6358 sealhash=318460..1766f6 txs=0 gas=0 fees=0 elapsed="443.077µs" +INFO [08-24|12:11:24.012] Successfully sealed new block number=6358 sealhash=318460..1766f6 hash=54cf82..621199 elapsed=5.000s +INFO [08-24|12:11:24.012] Commit new sealing work number=6359 sealhash=c4a8e6..62fc48 txs=0 gas=0 fees=0 elapsed="406.936µs" +INFO [08-24|12:11:25.642] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:11:29.010] Successfully sealed new block number=6359 sealhash=c4a8e6..62fc48 hash=287b1f..1223c4 elapsed=4.997s +INFO [08-24|12:11:29.010] Commit new sealing work number=6360 sealhash=1da427..a24a55 txs=0 gas=0 fees=0 elapsed="220.841µs" +INFO [08-24|12:11:34.010] Successfully sealed new block number=6360 sealhash=1da427..a24a55 hash=44ee1d..9d7743 elapsed=5.000s +INFO [08-24|12:11:34.011] Commit new sealing work number=6361 sealhash=1e8598..7eb58e txs=0 gas=0 fees=0 elapsed="266.233µs" +INFO [08-24|12:11:35.663] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:11:39.012] Successfully sealed new block number=6361 sealhash=1e8598..7eb58e hash=0428c3..621af1 elapsed=5.000s +INFO [08-24|12:11:39.012] Commit new sealing work number=6362 sealhash=3b3673..12b8c5 txs=0 gas=0 fees=0 elapsed="415.304µs" +INFO [08-24|12:11:44.010] Successfully sealed new block number=6362 sealhash=3b3673..12b8c5 hash=45539f..0e7777 elapsed=4.997s +INFO [08-24|12:11:44.010] Commit new sealing work number=6363 sealhash=250184..3e2cfa txs=0 gas=0 fees=0 elapsed="247.963µs" +INFO [08-24|12:11:45.685] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:11:49.011] Successfully sealed new block number=6363 sealhash=250184..3e2cfa hash=a5d57c..21659a elapsed=5.000s +INFO [08-24|12:11:49.011] Commit new sealing work number=6364 sealhash=208ee9..13e8bc txs=0 gas=0 fees=0 elapsed="339.955µs" +INFO [08-24|12:11:54.009] Successfully sealed new block number=6364 sealhash=208ee9..13e8bc hash=87e28e..852c93 elapsed=4.997s +INFO [08-24|12:11:54.009] Commit new sealing work number=6365 sealhash=c9df4f..efe8b6 txs=0 gas=0 fees=0 elapsed="414.117µs" +INFO [08-24|12:11:55.703] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:11:59.005] Successfully sealed new block number=6365 sealhash=c9df4f..efe8b6 hash=8eb898..786970 elapsed=4.995s +INFO [08-24|12:11:59.006] Commit new sealing work number=6366 sealhash=2076c4..e9bef6 txs=0 gas=0 fees=0 elapsed="361.623µs" +INFO [08-24|12:12:04.012] Successfully sealed new block number=6366 sealhash=2076c4..e9bef6 hash=a462f0..e25f76 elapsed=5.006s +INFO [08-24|12:12:04.012] Commit new sealing work number=6367 sealhash=efe551..dbe7cd txs=0 gas=0 fees=0 elapsed="338.019µs" +INFO [08-24|12:12:05.722] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:12:09.009] Successfully sealed new block number=6367 sealhash=efe551..dbe7cd hash=daec93..75f0b8 elapsed=4.996s +INFO [08-24|12:12:09.010] Commit new sealing work number=6368 sealhash=ca0a98..a93165 txs=0 gas=0 fees=0 elapsed="528.47µs" +INFO [08-24|12:12:14.011] Successfully sealed new block number=6368 sealhash=ca0a98..a93165 hash=6237ff..5cd7ae elapsed=5.001s +INFO [08-24|12:12:14.011] Commit new sealing work number=6369 sealhash=4137bf..d1de2e txs=0 gas=0 fees=0 elapsed="390.586µs" +INFO [08-24|12:12:15.742] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:12:19.010] Successfully sealed new block number=6369 sealhash=4137bf..d1de2e hash=5150a5..a3c1b0 elapsed=4.998s +INFO [08-24|12:12:19.011] Commit new sealing work number=6370 sealhash=9ae0ee..166663 txs=0 gas=0 fees=0 elapsed="330.431µs" +INFO [08-24|12:12:24.011] Successfully sealed new block number=6370 sealhash=9ae0ee..166663 hash=319e62..1fe3a4 elapsed=5.000s +INFO [08-24|12:12:24.011] Commit new sealing work number=6371 sealhash=0c92a2..4cb03d txs=0 gas=0 fees=0 elapsed="416.895µs" +INFO [08-24|12:12:25.761] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:12:29.012] Successfully sealed new block number=6371 sealhash=0c92a2..4cb03d hash=c079ad..1e2ab4 elapsed=5.000s +INFO [08-24|12:12:29.013] Commit new sealing work number=6372 sealhash=983b24..4dcbc0 txs=0 gas=0 fees=0 elapsed="306.109µs" +INFO [08-24|12:12:34.012] Successfully sealed new block number=6372 sealhash=983b24..4dcbc0 hash=142325..05b776 elapsed=4.999s +INFO [08-24|12:12:34.013] Commit new sealing work number=6373 sealhash=b35aaa..9e332d txs=0 gas=0 fees=0 elapsed="429.794µs" +INFO [08-24|12:12:35.781] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:12:39.010] Successfully sealed new block number=6373 sealhash=b35aaa..9e332d hash=6de4a2..443686 elapsed=4.997s +INFO [08-24|12:12:39.011] Commit new sealing work number=6374 sealhash=cfd87a..a2ba94 txs=0 gas=0 fees=0 elapsed="454.676µs" +INFO [08-24|12:12:44.010] Successfully sealed new block number=6374 sealhash=cfd87a..a2ba94 hash=ccaada..b6e633 elapsed=4.999s +INFO [08-24|12:12:44.011] Commit new sealing work number=6375 sealhash=5b6cea..b966cf txs=0 gas=0 fees=0 elapsed="394.519µs" +INFO [08-24|12:12:45.802] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:12:49.013] Successfully sealed new block number=6375 sealhash=5b6cea..b966cf hash=f427df..a6d338 elapsed=5.002s +INFO [08-24|12:12:49.015] Commit new sealing work number=6376 sealhash=54f56e..6b2b46 txs=0 gas=0 fees=0 elapsed=1.226ms +INFO [08-24|12:12:54.007] Successfully sealed new block number=6376 sealhash=54f56e..6b2b46 hash=2806d7..de086b elapsed=4.992s +INFO [08-24|12:12:54.008] Commit new sealing work number=6377 sealhash=19ca10..9a3561 txs=0 gas=0 fees=0 elapsed="211.671µs" +INFO [08-24|12:12:55.823] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:12:59.011] Successfully sealed new block number=6377 sealhash=19ca10..9a3561 hash=0d5690..b9b546 elapsed=5.003s +INFO [08-24|12:12:59.012] Commit new sealing work number=6378 sealhash=85ac42..6a98f8 txs=0 gas=0 fees=0 elapsed="411.387µs" +INFO [08-24|12:13:04.010] Successfully sealed new block number=6378 sealhash=85ac42..6a98f8 hash=7f3970..62220a elapsed=4.998s +INFO [08-24|12:13:04.010] Commit new sealing work number=6379 sealhash=fa8e2e..433d6a txs=0 gas=0 fees=0 elapsed="241.882µs" +INFO [08-24|12:13:05.843] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:13:09.009] Successfully sealed new block number=6379 sealhash=fa8e2e..433d6a hash=c9a977..035d4b elapsed=4.998s +INFO [08-24|12:13:09.009] Commit new sealing work number=6380 sealhash=4cd9ce..27c0ad txs=0 gas=0 fees=0 elapsed="350.891µs" +INFO [08-24|12:13:14.011] Successfully sealed new block number=6380 sealhash=4cd9ce..27c0ad hash=7538d8..b9e0b0 elapsed=5.001s +INFO [08-24|12:13:14.012] Commit new sealing work number=6381 sealhash=dce449..d3cf04 txs=0 gas=0 fees=0 elapsed="429.201µs" +INFO [08-24|12:13:15.863] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:13:19.011] Successfully sealed new block number=6381 sealhash=dce449..d3cf04 hash=b9e074..3e5d8e elapsed=4.999s +INFO [08-24|12:13:19.011] Commit new sealing work number=6382 sealhash=a0a9fe..6b930a txs=0 gas=0 fees=0 elapsed="243.721µs" +INFO [08-24|12:13:24.035] Successfully sealed new block number=6382 sealhash=a0a9fe..6b930a hash=9aaa10..2b5c18 elapsed=5.023s +INFO [08-24|12:13:24.036] Commit new sealing work number=6383 sealhash=bd645b..8cebf4 txs=0 gas=0 fees=0 elapsed="298.918µs" +INFO [08-24|12:13:25.882] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:13:29.011] Successfully sealed new block number=6383 sealhash=bd645b..8cebf4 hash=316c04..98c123 elapsed=4.975s +INFO [08-24|12:13:29.012] Commit new sealing work number=6384 sealhash=cb72bb..5bde9f txs=0 gas=0 fees=0 elapsed="306.88µs" +INFO [08-24|12:13:34.009] Successfully sealed new block number=6384 sealhash=cb72bb..5bde9f hash=f43b88..b2e72a elapsed=4.996s +INFO [08-24|12:13:34.010] Commit new sealing work number=6385 sealhash=467d3f..caf3f2 txs=0 gas=0 fees=0 elapsed=1.039ms +INFO [08-24|12:13:35.899] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:13:39.009] Successfully sealed new block number=6385 sealhash=467d3f..caf3f2 hash=a7e9dd..557c67 elapsed=4.999s +INFO [08-24|12:13:39.010] Commit new sealing work number=6386 sealhash=672ca3..0cee1b txs=0 gas=0 fees=0 elapsed="416.829µs" +INFO [08-24|12:13:44.009] Successfully sealed new block number=6386 sealhash=672ca3..0cee1b hash=bdc114..119e3d elapsed=4.999s +INFO [08-24|12:13:44.010] Commit new sealing work number=6387 sealhash=1bf3ed..1e996e txs=0 gas=0 fees=0 elapsed="465.826µs" +INFO [08-24|12:13:45.918] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:13:49.005] Successfully sealed new block number=6387 sealhash=1bf3ed..1e996e hash=7078cc..01eb48 elapsed=4.995s +INFO [08-24|12:13:49.006] Commit new sealing work number=6388 sealhash=90df92..66befe txs=0 gas=0 fees=0 elapsed="209.663µs" +INFO [08-24|12:13:54.010] Successfully sealed new block number=6388 sealhash=90df92..66befe hash=ce848c..3e7be7 elapsed=5.004s +INFO [08-24|12:13:54.011] Commit new sealing work number=6389 sealhash=0156d4..96b5d2 txs=0 gas=0 fees=0 elapsed="465.87µs" +INFO [08-24|12:13:55.938] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:13:59.009] Successfully sealed new block number=6389 sealhash=0156d4..96b5d2 hash=66f792..3b255e elapsed=4.998s +INFO [08-24|12:13:59.010] Commit new sealing work number=6390 sealhash=5d0901..9d51ec txs=0 gas=0 fees=0 elapsed="200.721µs" +INFO [08-24|12:14:04.009] Successfully sealed new block number=6390 sealhash=5d0901..9d51ec hash=dc006a..17c55f elapsed=4.999s +INFO [08-24|12:14:04.010] Commit new sealing work number=6391 sealhash=b50fd5..2ed585 txs=0 gas=0 fees=0 elapsed="311.202µs" +INFO [08-24|12:14:05.959] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:14:09.008] Successfully sealed new block number=6391 sealhash=b50fd5..2ed585 hash=6fb250..e5ed59 elapsed=4.998s +INFO [08-24|12:14:09.009] Commit new sealing work number=6392 sealhash=c8daef..e9eb55 txs=0 gas=0 fees=0 elapsed="299.398µs" +INFO [08-24|12:14:14.008] Successfully sealed new block number=6392 sealhash=c8daef..e9eb55 hash=02a210..324b89 elapsed=4.999s +INFO [08-24|12:14:14.009] Commit new sealing work number=6393 sealhash=56e20b..0233d0 txs=0 gas=0 fees=0 elapsed="559.758µs" +INFO [08-24|12:14:15.978] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:14:19.010] Successfully sealed new block number=6393 sealhash=56e20b..0233d0 hash=8e7771..be3863 elapsed=5.001s +INFO [08-24|12:14:19.011] Commit new sealing work number=6394 sealhash=afb599..bb2850 txs=0 gas=0 fees=0 elapsed="301.167µs" +INFO [08-24|12:14:24.009] Successfully sealed new block number=6394 sealhash=afb599..bb2850 hash=b806c5..671de4 elapsed=4.998s +INFO [08-24|12:14:24.010] Commit new sealing work number=6395 sealhash=2b9437..a19b62 txs=0 gas=0 fees=0 elapsed="258.758µs" +INFO [08-24|12:14:25.995] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:14:29.009] Successfully sealed new block number=6395 sealhash=2b9437..a19b62 hash=fefe60..1bbb21 elapsed=4.999s +INFO [08-24|12:14:29.009] Commit new sealing work number=6396 sealhash=18c821..fbdcff txs=0 gas=0 fees=0 elapsed="252.491µs" +INFO [08-24|12:14:34.011] Successfully sealed new block number=6396 sealhash=18c821..fbdcff hash=c9d596..62e010 elapsed=5.001s +INFO [08-24|12:14:34.011] Commit new sealing work number=6397 sealhash=8277b0..8e6fc4 txs=0 gas=0 fees=0 elapsed="325.377µs" +INFO [08-24|12:14:36.014] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:14:39.010] Successfully sealed new block number=6397 sealhash=8277b0..8e6fc4 hash=425fd9..f351d1 elapsed=4.998s +INFO [08-24|12:14:39.011] Commit new sealing work number=6398 sealhash=abef04..4ae59d txs=0 gas=0 fees=0 elapsed="514.044µs" +INFO [08-24|12:14:44.005] Successfully sealed new block number=6398 sealhash=abef04..4ae59d hash=e7def1..2d04d1 elapsed=4.993s +INFO [08-24|12:14:44.005] Commit new sealing work number=6399 sealhash=e17d36..3a4ccb txs=0 gas=0 fees=0 elapsed="265.474µs" +INFO [08-24|12:14:46.034] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:14:49.011] Successfully sealed new block number=6399 sealhash=e17d36..3a4ccb hash=ad674c..5cfb04 elapsed=5.006s +INFO [08-24|12:14:49.012] Commit new sealing work number=6400 sealhash=ffcdb4..dbf985 txs=0 gas=0 fees=0 elapsed="458.732µs" +INFO [08-24|12:14:54.005] Successfully sealed new block number=6400 sealhash=ffcdb4..dbf985 hash=2171f9..4b057d elapsed=4.992s +INFO [08-24|12:14:54.005] Commit new sealing work number=6401 sealhash=99fbc2..1ce7ad txs=0 gas=0 fees=0 elapsed="271.589µs" +INFO [08-24|12:14:56.053] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:14:59.011] Successfully sealed new block number=6401 sealhash=99fbc2..1ce7ad hash=ee5500..aa07ac elapsed=5.006s +INFO [08-24|12:14:59.012] Commit new sealing work number=6402 sealhash=f687bd..8e6842 txs=0 gas=0 fees=0 elapsed="297.93µs" +INFO [08-24|12:15:04.005] Successfully sealed new block number=6402 sealhash=f687bd..8e6842 hash=522cb0..ba4f2e elapsed=4.993s +INFO [08-24|12:15:04.006] Commit new sealing work number=6403 sealhash=575d52..618e8d txs=0 gas=0 fees=0 elapsed="347.314µs" +INFO [08-24|12:15:06.076] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:15:09.004] Successfully sealed new block number=6403 sealhash=575d52..618e8d hash=a1b1d2..244da3 elapsed=4.998s +INFO [08-24|12:15:09.005] Commit new sealing work number=6404 sealhash=2cfbf4..1308f1 txs=0 gas=0 fees=0 elapsed=1.241ms +INFO [08-24|12:15:14.009] Successfully sealed new block number=6404 sealhash=2cfbf4..1308f1 hash=45d779..43fbf7 elapsed=5.004s +INFO [08-24|12:15:14.010] Commit new sealing work number=6405 sealhash=3f4afd..b3860d txs=0 gas=0 fees=0 elapsed="339.115µs" +INFO [08-24|12:15:16.096] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:15:19.005] Successfully sealed new block number=6405 sealhash=3f4afd..b3860d hash=f8a53e..897fc8 elapsed=4.995s +INFO [08-24|12:15:19.006] Commit new sealing work number=6406 sealhash=da187c..ce668e txs=0 gas=0 fees=0 elapsed="245.808µs" +INFO [08-24|12:15:24.011] Successfully sealed new block number=6406 sealhash=da187c..ce668e hash=d4f92c..fda890 elapsed=5.004s +INFO [08-24|12:15:24.011] Commit new sealing work number=6407 sealhash=f15882..2335bf txs=0 gas=0 fees=0 elapsed="314.972µs" +INFO [08-24|12:15:26.118] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:15:29.010] Successfully sealed new block number=6407 sealhash=f15882..2335bf hash=13681d..4b72fe elapsed=4.998s +INFO [08-24|12:15:29.010] Commit new sealing work number=6408 sealhash=e87677..76c6a5 txs=0 gas=0 fees=0 elapsed="311.802µs" +INFO [08-24|12:15:34.006] Successfully sealed new block number=6408 sealhash=e87677..76c6a5 hash=77a8e6..e45a25 elapsed=4.996s +INFO [08-24|12:15:34.007] Commit new sealing work number=6409 sealhash=15e399..9ce3e2 txs=0 gas=0 fees=0 elapsed="211.778µs" +INFO [08-24|12:15:36.140] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:15:39.007] Successfully sealed new block number=6409 sealhash=15e399..9ce3e2 hash=e73d7f..52f26b elapsed=5.000s +INFO [08-24|12:15:39.008] Commit new sealing work number=6410 sealhash=70d1e7..47acdf txs=0 gas=0 fees=0 elapsed="382.886µs" +INFO [08-24|12:15:44.004] Successfully sealed new block number=6410 sealhash=70d1e7..47acdf hash=cec649..b34663 elapsed=4.996s +INFO [08-24|12:15:44.005] Commit new sealing work number=6411 sealhash=9fb8a0..488364 txs=0 gas=0 fees=0 elapsed="310.555µs" +INFO [08-24|12:15:46.163] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:15:49.010] Successfully sealed new block number=6411 sealhash=9fb8a0..488364 hash=d98120..7b1a32 elapsed=5.005s +INFO [08-24|12:15:49.011] Commit new sealing work number=6412 sealhash=33b76c..37eb3c txs=0 gas=0 fees=0 elapsed="296.721µs" +INFO [08-24|12:15:54.012] Successfully sealed new block number=6412 sealhash=33b76c..37eb3c hash=f3978f..94f15b elapsed=5.001s +INFO [08-24|12:15:54.013] Commit new sealing work number=6413 sealhash=640c04..935356 txs=0 gas=0 fees=0 elapsed="361.285µs" +INFO [08-24|12:15:56.180] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:15:59.005] Successfully sealed new block number=6413 sealhash=640c04..935356 hash=b3b9f4..02c714 elapsed=4.992s +INFO [08-24|12:15:59.006] Commit new sealing work number=6414 sealhash=05bfa1..285022 txs=0 gas=0 fees=0 elapsed="257.638µs" +INFO [08-24|12:16:04.013] Successfully sealed new block number=6414 sealhash=05bfa1..285022 hash=d1e239..218282 elapsed=5.007s +INFO [08-24|12:16:04.013] Commit new sealing work number=6415 sealhash=152e2a..c7198d txs=0 gas=0 fees=0 elapsed="561.079µs" +INFO [08-24|12:16:06.204] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:16:09.008] Successfully sealed new block number=6415 sealhash=152e2a..c7198d hash=a738d8..39d833 elapsed=4.995s +INFO [08-24|12:16:09.009] Commit new sealing work number=6416 sealhash=0c2921..5955a0 txs=0 gas=0 fees=0 elapsed="343.927µs" +INFO [08-24|12:16:14.009] Successfully sealed new block number=6416 sealhash=0c2921..5955a0 hash=3a57b6..94d4f0 elapsed=5.000s +INFO [08-24|12:16:14.010] Commit new sealing work number=6417 sealhash=606528..4a9e49 txs=0 gas=0 fees=0 elapsed="326.121µs" +INFO [08-24|12:16:16.225] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:16:19.005] Successfully sealed new block number=6417 sealhash=606528..4a9e49 hash=470732..a8e6ed elapsed=4.995s +INFO [08-24|12:16:19.006] Commit new sealing work number=6418 sealhash=ddfbbc..c6d11f txs=0 gas=0 fees=0 elapsed="265.077µs" +INFO [08-24|12:16:24.009] Successfully sealed new block number=6418 sealhash=ddfbbc..c6d11f hash=097633..ec5f96 elapsed=5.002s +INFO [08-24|12:16:24.009] Commit new sealing work number=6419 sealhash=a27321..64d04f txs=0 gas=0 fees=0 elapsed="346.827µs" +INFO [08-24|12:16:26.246] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:16:29.009] Successfully sealed new block number=6419 sealhash=a27321..64d04f hash=105756..34131f elapsed=4.999s +INFO [08-24|12:16:29.009] Commit new sealing work number=6420 sealhash=6d8ccc..cb6ea6 txs=0 gas=0 fees=0 elapsed="173.969µs" +INFO [08-24|12:16:34.010] Successfully sealed new block number=6420 sealhash=6d8ccc..cb6ea6 hash=e8e168..8bbbe1 elapsed=5.000s +INFO [08-24|12:16:34.010] Commit new sealing work number=6421 sealhash=0c88e9..9fed4d txs=0 gas=0 fees=0 elapsed="277.154µs" +INFO [08-24|12:16:36.264] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:16:39.010] Successfully sealed new block number=6421 sealhash=0c88e9..9fed4d hash=6f221a..b315cf elapsed=5.000s +INFO [08-24|12:16:39.011] Commit new sealing work number=6422 sealhash=13212c..3f96bc txs=0 gas=0 fees=0 elapsed="360.282µs" +INFO [08-24|12:16:44.011] Successfully sealed new block number=6422 sealhash=13212c..3f96bc hash=5ed405..0ebbf9 elapsed=4.999s +INFO [08-24|12:16:44.011] Commit new sealing work number=6423 sealhash=ac0853..ee2412 txs=0 gas=0 fees=0 elapsed="296.938µs" +INFO [08-24|12:16:46.284] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:16:49.007] Successfully sealed new block number=6423 sealhash=ac0853..ee2412 hash=e65dc8..761ae9 elapsed=4.996s +INFO [08-24|12:16:49.007] Commit new sealing work number=6424 sealhash=f2f6ab..85a695 txs=0 gas=0 fees=0 elapsed="322.352µs" +INFO [08-24|12:16:54.011] Successfully sealed new block number=6424 sealhash=f2f6ab..85a695 hash=96edb6..c233e0 elapsed=5.003s +INFO [08-24|12:16:54.012] Commit new sealing work number=6425 sealhash=0c46b3..2c9c57 txs=0 gas=0 fees=0 elapsed="367.727µs" +INFO [08-24|12:16:56.305] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:16:59.011] Successfully sealed new block number=6425 sealhash=0c46b3..2c9c57 hash=7a0f10..ad5ba2 elapsed=4.998s +INFO [08-24|12:16:59.011] Commit new sealing work number=6426 sealhash=a22e40..bf7ec6 txs=0 gas=0 fees=0 elapsed="416.525µs" +INFO [08-24|12:17:04.008] Successfully sealed new block number=6426 sealhash=a22e40..bf7ec6 hash=d99511..8fdc0d elapsed=4.997s +INFO [08-24|12:17:04.009] Commit new sealing work number=6427 sealhash=24003c..ba1dd3 txs=0 gas=0 fees=0 elapsed="304.494µs" +INFO [08-24|12:17:06.326] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:17:09.010] Successfully sealed new block number=6427 sealhash=24003c..ba1dd3 hash=fd63ad..412458 elapsed=5.001s +INFO [08-24|12:17:09.010] Commit new sealing work number=6428 sealhash=387809..a1ab2e txs=0 gas=0 fees=0 elapsed="272.828µs" +INFO [08-24|12:17:14.011] Successfully sealed new block number=6428 sealhash=387809..a1ab2e hash=a362fd..4f102a elapsed=5.000s +INFO [08-24|12:17:14.011] Commit new sealing work number=6429 sealhash=56200f..a386c5 txs=0 gas=0 fees=0 elapsed="455.931µs" +INFO [08-24|12:17:16.349] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:17:19.009] Successfully sealed new block number=6429 sealhash=56200f..a386c5 hash=5b6ef0..e86be4 elapsed=4.998s +INFO [08-24|12:17:19.010] Commit new sealing work number=6430 sealhash=4d05b4..afbddd txs=0 gas=0 fees=0 elapsed="453.736µs" +INFO [08-24|12:17:24.009] Successfully sealed new block number=6430 sealhash=4d05b4..afbddd hash=e85762..94fd7d elapsed=4.999s +INFO [08-24|12:17:24.010] Commit new sealing work number=6431 sealhash=8a774c..d9b6ba txs=0 gas=0 fees=0 elapsed="358.804µs" +INFO [08-24|12:17:26.366] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:17:29.007] Successfully sealed new block number=6431 sealhash=8a774c..d9b6ba hash=be6a1a..457ab8 elapsed=4.997s +INFO [08-24|12:17:29.008] Commit new sealing work number=6432 sealhash=e9d7fa..34a605 txs=0 gas=0 fees=0 elapsed="271.342µs" +INFO [08-24|12:17:34.009] Successfully sealed new block number=6432 sealhash=e9d7fa..34a605 hash=4caf63..e11bb9 elapsed=5.001s +INFO [08-24|12:17:34.010] Commit new sealing work number=6433 sealhash=9fcbfe..8aa073 txs=0 gas=0 fees=0 elapsed="704.846µs" +INFO [08-24|12:17:36.387] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:17:39.010] Successfully sealed new block number=6433 sealhash=9fcbfe..8aa073 hash=a86773..f8f2b2 elapsed=4.999s +INFO [08-24|12:17:39.010] Commit new sealing work number=6434 sealhash=c20ee3..ded73e txs=0 gas=0 fees=0 elapsed="819.964µs" +INFO [08-24|12:17:44.008] Successfully sealed new block number=6434 sealhash=c20ee3..ded73e hash=01a6e6..fa9c0e elapsed=4.997s +INFO [08-24|12:17:44.009] Commit new sealing work number=6435 sealhash=8a8290..f83c0a txs=0 gas=0 fees=0 elapsed="596.133µs" +INFO [08-24|12:17:46.409] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:17:49.009] Successfully sealed new block number=6435 sealhash=8a8290..f83c0a hash=8ed5c0..d11ea6 elapsed=4.999s +INFO [08-24|12:17:49.009] Commit new sealing work number=6436 sealhash=962333..544ba8 txs=0 gas=0 fees=0 elapsed="294.031µs" +INFO [08-24|12:17:54.008] Successfully sealed new block number=6436 sealhash=962333..544ba8 hash=d2a0ae..079e8e elapsed=4.998s +INFO [08-24|12:17:54.008] Commit new sealing work number=6437 sealhash=e3d2cd..139483 txs=0 gas=0 fees=0 elapsed="321.854µs" +INFO [08-24|12:17:56.433] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:17:59.010] Successfully sealed new block number=6437 sealhash=e3d2cd..139483 hash=302f15..8a9ba7 elapsed=5.001s +INFO [08-24|12:17:59.011] Commit new sealing work number=6438 sealhash=615ef0..668296 txs=0 gas=0 fees=0 elapsed="325.689µs" +INFO [08-24|12:18:04.007] Successfully sealed new block number=6438 sealhash=615ef0..668296 hash=c9004a..054b21 elapsed=4.995s +INFO [08-24|12:18:04.007] Commit new sealing work number=6439 sealhash=868f3c..d65026 txs=0 gas=0 fees=0 elapsed="286.589µs" +INFO [08-24|12:18:06.454] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:18:09.011] Successfully sealed new block number=6439 sealhash=868f3c..d65026 hash=d49511..0db594 elapsed=5.004s +INFO [08-24|12:18:09.012] Commit new sealing work number=6440 sealhash=9f64b6..c4fc35 txs=0 gas=0 fees=0 elapsed="628.321µs" +INFO [08-24|12:18:14.009] Successfully sealed new block number=6440 sealhash=9f64b6..c4fc35 hash=a41511..bb0022 elapsed=4.996s +INFO [08-24|12:18:14.009] Commit new sealing work number=6441 sealhash=03ded2..592388 txs=0 gas=0 fees=0 elapsed="545.605µs" +INFO [08-24|12:18:16.477] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:18:19.006] Successfully sealed new block number=6441 sealhash=03ded2..592388 hash=efbb85..e5f377 elapsed=4.996s +INFO [08-24|12:18:19.006] Commit new sealing work number=6442 sealhash=765f33..185e5d txs=0 gas=0 fees=0 elapsed="242.553µs" +INFO [08-24|12:18:24.006] Successfully sealed new block number=6442 sealhash=765f33..185e5d hash=5b61fc..f96ad6 elapsed=4.999s +INFO [08-24|12:18:24.006] Commit new sealing work number=6443 sealhash=7bd77f..3582d4 txs=0 gas=0 fees=0 elapsed="286.294µs" +INFO [08-24|12:18:26.498] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:18:29.011] Successfully sealed new block number=6443 sealhash=7bd77f..3582d4 hash=ce6f53..7998b5 elapsed=5.005s +INFO [08-24|12:18:29.012] Commit new sealing work number=6444 sealhash=487f95..cbfdad txs=0 gas=0 fees=0 elapsed="308.949µs" +INFO [08-24|12:18:34.093] Successfully sealed new block number=6444 sealhash=487f95..cbfdad hash=fd49c7..669472 elapsed=5.081s +INFO [08-24|12:18:34.095] Commit new sealing work number=6445 sealhash=596678..959de9 txs=0 gas=0 fees=0 elapsed=2.143ms +INFO [08-24|12:18:36.556] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:18:39.009] Successfully sealed new block number=6445 sealhash=596678..959de9 hash=71aee5..c600ae elapsed=4.913s +INFO [08-24|12:18:39.011] Commit new sealing work number=6446 sealhash=5a352d..6fefe7 txs=0 gas=0 fees=0 elapsed=1.471ms +INFO [08-24|12:18:44.010] Successfully sealed new block number=6446 sealhash=5a352d..6fefe7 hash=b3c928..7071eb elapsed=4.999s +INFO [08-24|12:18:44.015] Commit new sealing work number=6447 sealhash=0bd3f0..afab29 txs=0 gas=0 fees=0 elapsed=4.609ms +INFO [08-24|12:18:46.585] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:18:49.008] Successfully sealed new block number=6447 sealhash=0bd3f0..afab29 hash=65a12d..a88dba elapsed=4.993s +INFO [08-24|12:18:49.009] Commit new sealing work number=6448 sealhash=f3e0d4..a5109b txs=0 gas=0 fees=0 elapsed=1.072ms +INFO [08-24|12:18:54.009] Successfully sealed new block number=6448 sealhash=f3e0d4..a5109b hash=deec1b..1a504b elapsed=4.999s +INFO [08-24|12:18:54.011] Commit new sealing work number=6449 sealhash=d57ec3..4a027b txs=0 gas=0 fees=0 elapsed=1.851ms +INFO [08-24|12:18:56.616] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:18:59.012] Successfully sealed new block number=6449 sealhash=d57ec3..4a027b hash=4a184d..3d0802 elapsed=5.001s +INFO [08-24|12:18:59.014] Commit new sealing work number=6450 sealhash=b5c358..9791c5 txs=0 gas=0 fees=0 elapsed=2.114ms +INFO [08-24|12:19:04.012] Successfully sealed new block number=6450 sealhash=b5c358..9791c5 hash=f0b37d..6fd5b3 elapsed=4.997s +INFO [08-24|12:19:04.014] Commit new sealing work number=6451 sealhash=60dd4e..6bc555 txs=0 gas=0 fees=0 elapsed=1.953ms +INFO [08-24|12:19:06.647] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:19:09.012] Successfully sealed new block number=6451 sealhash=60dd4e..6bc555 hash=c2523c..4d1830 elapsed=4.998s +INFO [08-24|12:19:09.014] Commit new sealing work number=6452 sealhash=1b2b4c..852869 txs=0 gas=0 fees=0 elapsed=1.201ms +INFO [08-24|12:19:14.011] Successfully sealed new block number=6452 sealhash=1b2b4c..852869 hash=abf9f0..7bfb5d elapsed=4.997s +INFO [08-24|12:19:14.013] Commit new sealing work number=6453 sealhash=c46e94..f7e6e8 txs=0 gas=0 fees=0 elapsed=2.311ms +INFO [08-24|12:19:16.674] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:19:19.013] Successfully sealed new block number=6453 sealhash=c46e94..f7e6e8 hash=810adc..0e907b elapsed=4.999s +INFO [08-24|12:19:19.017] Commit new sealing work number=6454 sealhash=6741f6..462454 txs=0 gas=0 fees=0 elapsed=3.093ms +INFO [08-24|12:19:24.014] Successfully sealed new block number=6454 sealhash=6741f6..462454 hash=35f263..0f6f4d elapsed=4.997s +INFO [08-24|12:19:24.016] Commit new sealing work number=6455 sealhash=9bfe04..3d7dde txs=0 gas=0 fees=0 elapsed=1.778ms +INFO [08-24|12:19:26.701] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:19:29.010] Successfully sealed new block number=6455 sealhash=9bfe04..3d7dde hash=77db4a..6c9aba elapsed=4.994s +INFO [08-24|12:19:29.012] Commit new sealing work number=6456 sealhash=311e93..03ada2 txs=0 gas=0 fees=0 elapsed=1.837ms +INFO [08-24|12:19:34.016] Successfully sealed new block number=6456 sealhash=311e93..03ada2 hash=a6f433..d38400 elapsed=5.003s +INFO [08-24|12:19:34.017] Commit new sealing work number=6457 sealhash=a0a924..5d57d8 txs=0 gas=0 fees=0 elapsed=1.385ms +INFO [08-24|12:19:36.728] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:19:39.010] Successfully sealed new block number=6457 sealhash=a0a924..5d57d8 hash=b0db7f..079afa elapsed=4.992s +INFO [08-24|12:19:39.013] Commit new sealing work number=6458 sealhash=f09bc4..cf8fe6 txs=0 gas=0 fees=0 elapsed=3.345ms +INFO [08-24|12:19:44.009] Successfully sealed new block number=6458 sealhash=f09bc4..cf8fe6 hash=3b4bed..f92698 elapsed=4.996s +INFO [08-24|12:19:44.018] Commit new sealing work number=6459 sealhash=8a98bd..8b487f txs=0 gas=0 fees=0 elapsed=8.519ms +INFO [08-24|12:19:47.105] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:19:49.019] Successfully sealed new block number=6459 sealhash=8a98bd..8b487f hash=80b321..dbb594 elapsed=5.001s +INFO [08-24|12:19:49.024] Commit new sealing work number=6460 sealhash=6eb416..055f79 txs=0 gas=0 fees=0 elapsed=4.869ms +INFO [08-24|12:19:54.014] Successfully sealed new block number=6460 sealhash=6eb416..055f79 hash=880e13..be3549 elapsed=4.990s +INFO [08-24|12:19:54.017] Commit new sealing work number=6461 sealhash=cf8178..bab0f3 txs=0 gas=0 fees=0 elapsed=3.084ms +INFO [08-24|12:19:57.442] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:19:59.020] Successfully sealed new block number=6461 sealhash=cf8178..bab0f3 hash=a41e57..1bc4d4 elapsed=5.002s +INFO [08-24|12:19:59.023] Commit new sealing work number=6462 sealhash=8f8a34..357f7d txs=0 gas=0 fees=0 elapsed=2.469ms +INFO [08-24|12:20:04.022] Successfully sealed new block number=6462 sealhash=8f8a34..357f7d hash=cacdb2..250640 elapsed=5.000s +INFO [08-24|12:20:04.024] Commit new sealing work number=6463 sealhash=98e1cc..0e7363 txs=0 gas=0 fees=0 elapsed=1.473ms +INFO [08-24|12:20:07.474] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:20:09.014] Successfully sealed new block number=6463 sealhash=98e1cc..0e7363 hash=8c68a9..915495 elapsed=4.989s +INFO [08-24|12:20:09.016] Commit new sealing work number=6464 sealhash=3af7a8..d77248 txs=0 gas=0 fees=0 elapsed=2.212ms +INFO [08-24|12:20:14.014] Successfully sealed new block number=6464 sealhash=3af7a8..d77248 hash=427d05..865ba2 elapsed=4.998s +INFO [08-24|12:20:14.016] Commit new sealing work number=6465 sealhash=8a4fad..135b26 txs=0 gas=0 fees=0 elapsed=1.654ms +INFO [08-24|12:20:17.500] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:20:19.485] Successfully sealed new block number=6465 sealhash=8a4fad..135b26 hash=b22240..debba7 elapsed=5.468s +INFO [08-24|12:20:19.499] Commit new sealing work number=6466 sealhash=9550f0..d25775 txs=0 gas=0 fees=0 elapsed=4.271ms +INFO [08-24|12:20:24.015] Successfully sealed new block number=6466 sealhash=9550f0..d25775 hash=d931f8..f80a90 elapsed=4.516s +INFO [08-24|12:20:24.016] Commit new sealing work number=6467 sealhash=37f646..fad0f0 txs=0 gas=0 fees=0 elapsed="996.951µs" +INFO [08-24|12:20:27.892] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:20:29.019] Successfully sealed new block number=6467 sealhash=37f646..fad0f0 hash=1a821f..ff371c elapsed=5.002s +INFO [08-24|12:20:29.028] Commit new sealing work number=6468 sealhash=0cd126..7aecaa txs=0 gas=0 fees=0 elapsed=8.611ms +INFO [08-24|12:20:34.013] Successfully sealed new block number=6468 sealhash=0cd126..7aecaa hash=ec29f9..3f968f elapsed=4.985s +INFO [08-24|12:20:34.014] Commit new sealing work number=6469 sealhash=712a48..c8ea92 txs=0 gas=0 fees=0 elapsed=1.158ms +INFO [08-24|12:20:37.921] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:20:39.019] Successfully sealed new block number=6469 sealhash=712a48..c8ea92 hash=99584e..519880 elapsed=5.004s +INFO [08-24|12:20:39.020] Commit new sealing work number=6470 sealhash=49af72..84a144 txs=0 gas=0 fees=0 elapsed=1.382ms +INFO [08-24|12:20:44.024] Successfully sealed new block number=6470 sealhash=49af72..84a144 hash=785597..d9d401 elapsed=5.003s +INFO [08-24|12:20:44.027] Commit new sealing work number=6471 sealhash=839ae9..78db24 txs=0 gas=0 fees=0 elapsed=2.630ms +INFO [08-24|12:20:47.966] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:20:49.013] Successfully sealed new block number=6471 sealhash=839ae9..78db24 hash=1262c7..8bfb10 elapsed=4.986s +INFO [08-24|12:20:49.016] Commit new sealing work number=6472 sealhash=3bdc32..8741b1 txs=0 gas=0 fees=0 elapsed=2.487ms +INFO [08-24|12:20:54.024] Successfully sealed new block number=6472 sealhash=3bdc32..8741b1 hash=7bafce..bdb616 elapsed=5.007s +INFO [08-24|12:20:54.028] Commit new sealing work number=6473 sealhash=fadc7a..10a702 txs=0 gas=0 fees=0 elapsed=3.319ms +INFO [08-24|12:20:58.003] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:20:59.015] Successfully sealed new block number=6473 sealhash=fadc7a..10a702 hash=5789c4..3a2463 elapsed=4.987s +INFO [08-24|12:20:59.018] Commit new sealing work number=6474 sealhash=59d1e2..b2b29f txs=0 gas=0 fees=0 elapsed=2.245ms +INFO [08-24|12:21:04.020] Successfully sealed new block number=6474 sealhash=59d1e2..b2b29f hash=65bf49..78e518 elapsed=5.002s +INFO [08-24|12:21:04.028] Commit new sealing work number=6475 sealhash=bad86e..0ab324 txs=0 gas=0 fees=0 elapsed=7.897ms +INFO [08-24|12:21:08.031] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:21:09.013] Successfully sealed new block number=6475 sealhash=bad86e..0ab324 hash=81632b..6f573c elapsed=4.985s +INFO [08-24|12:21:09.017] Commit new sealing work number=6476 sealhash=668bfd..29d8d6 txs=0 gas=0 fees=0 elapsed=4.491ms +INFO [08-24|12:21:14.017] Successfully sealed new block number=6476 sealhash=668bfd..29d8d6 hash=c65dc5..f3de00 elapsed=4.999s +INFO [08-24|12:21:14.020] Commit new sealing work number=6477 sealhash=ca4cf9..3f24d3 txs=0 gas=0 fees=0 elapsed=2.607ms +INFO [08-24|12:21:18.065] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:21:19.006] Successfully sealed new block number=6477 sealhash=ca4cf9..3f24d3 hash=bb9e7a..a6d776 elapsed=4.986s +INFO [08-24|12:21:19.014] Commit new sealing work number=6478 sealhash=64a754..a17fbd txs=0 gas=0 fees=0 elapsed=7.385ms +INFO [08-24|12:21:24.019] Successfully sealed new block number=6478 sealhash=64a754..a17fbd hash=f71a17..2b2bf2 elapsed=5.005s +INFO [08-24|12:21:24.022] Commit new sealing work number=6479 sealhash=63032a..1e3144 txs=0 gas=0 fees=0 elapsed=2.652ms +INFO [08-24|12:21:28.103] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:21:29.020] Successfully sealed new block number=6479 sealhash=63032a..1e3144 hash=e437c7..afda33 elapsed=4.998s +INFO [08-24|12:21:29.023] Commit new sealing work number=6480 sealhash=4c228b..e49993 txs=0 gas=0 fees=0 elapsed=2.583ms +INFO [08-24|12:21:34.030] Successfully sealed new block number=6480 sealhash=4c228b..e49993 hash=71701d..79c535 elapsed=5.007s +INFO [08-24|12:21:34.031] Commit new sealing work number=6481 sealhash=70c870..f7d5ae txs=0 gas=0 fees=0 elapsed=1.025ms +INFO [08-24|12:21:38.136] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:21:39.026] Successfully sealed new block number=6481 sealhash=70c870..f7d5ae hash=38b9ad..a8b6f0 elapsed=4.995s +INFO [08-24|12:21:39.031] Commit new sealing work number=6482 sealhash=2fe4e6..590467 txs=0 gas=0 fees=0 elapsed=3.381ms +INFO [08-24|12:21:44.021] Successfully sealed new block number=6482 sealhash=2fe4e6..590467 hash=7af0fb..03ae79 elapsed=4.991s +INFO [08-24|12:21:44.023] Commit new sealing work number=6483 sealhash=7b8352..dbcb96 txs=0 gas=0 fees=0 elapsed=1.756ms +INFO [08-24|12:21:48.164] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:21:49.021] Successfully sealed new block number=6483 sealhash=7b8352..dbcb96 hash=a6c18e..f1295e elapsed=4.997s +INFO [08-24|12:21:49.022] Commit new sealing work number=6484 sealhash=bb5370..5d4622 txs=0 gas=0 fees=0 elapsed=1.758ms +INFO [08-24|12:21:54.021] Successfully sealed new block number=6484 sealhash=bb5370..5d4622 hash=854081..76d414 elapsed=4.998s +INFO [08-24|12:21:54.024] Commit new sealing work number=6485 sealhash=0f0c8c..703582 txs=0 gas=0 fees=0 elapsed=2.939ms +INFO [08-24|12:21:58.188] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:21:59.012] Successfully sealed new block number=6485 sealhash=0f0c8c..703582 hash=256195..3be171 elapsed=4.987s +INFO [08-24|12:21:59.013] Commit new sealing work number=6486 sealhash=fcb54f..ec96fb txs=0 gas=0 fees=0 elapsed="933.926µs" +INFO [08-24|12:22:04.012] Successfully sealed new block number=6486 sealhash=fcb54f..ec96fb hash=878d39..118760 elapsed=4.999s +INFO [08-24|12:22:04.014] Commit new sealing work number=6487 sealhash=eed2fe..1190b8 txs=0 gas=0 fees=0 elapsed=1.494ms +INFO [08-24|12:22:08.213] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:22:09.012] Successfully sealed new block number=6487 sealhash=eed2fe..1190b8 hash=8df702..a68f7e elapsed=4.997s +INFO [08-24|12:22:09.015] Commit new sealing work number=6488 sealhash=4b3913..68bec6 txs=0 gas=0 fees=0 elapsed=2.731ms +INFO [08-24|12:22:14.010] Successfully sealed new block number=6488 sealhash=4b3913..68bec6 hash=11b84e..1ece43 elapsed=4.995s +INFO [08-24|12:22:14.012] Commit new sealing work number=6489 sealhash=caf270..53b827 txs=0 gas=0 fees=0 elapsed=1.559ms +INFO [08-24|12:22:18.239] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:22:19.011] Successfully sealed new block number=6489 sealhash=caf270..53b827 hash=7e88b8..69384f elapsed=4.999s +INFO [08-24|12:22:19.013] Commit new sealing work number=6490 sealhash=31d746..36cb83 txs=0 gas=0 fees=0 elapsed=1.285ms diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/LOCK b/vote-block-skripsi/geth-vote/node1/data/geth/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00004096.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00004096.bag new file mode 100644 index 0000000..6df4fb8 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00004096.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00135168.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00135168.bag new file mode 100644 index 0000000..9323365 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00135168.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00266240.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00266240.bag new file mode 100644 index 0000000..7ad82b4 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00266240.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00397312.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00397312.bag new file mode 100644 index 0000000..41a34f0 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00397312.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00528384.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00528384.bag new file mode 100644 index 0000000..f3939c3 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00528384.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00659456.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00659456.bag new file mode 100644 index 0000000..c470b7f Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00659456.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00790528.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00790528.bag new file mode 100644 index 0000000..9f574f8 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00790528.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00921600.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00921600.bag new file mode 100644 index 0000000..90eb3ab Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_00921600.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_01052672.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_01052672.bag new file mode 100644 index 0000000..3bc4fcb Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_01052672.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_01183744.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_01183744.bag new file mode 100644 index 0000000..bfcd716 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_01183744.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_01314816.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_01314816.bag new file mode 100644 index 0000000..907e524 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_01314816.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_01445888.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_01445888.bag new file mode 100644 index 0000000..69c3176 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_01445888.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_01576960.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_01576960.bag new file mode 100644 index 0000000..841fded Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_01576960.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_01708032.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_01708032.bag new file mode 100644 index 0000000..0263c59 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_01708032.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_01839104.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_01839104.bag new file mode 100644 index 0000000..c7f8fa4 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/limbo/bkt_01839104.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00004096.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00004096.bag new file mode 100644 index 0000000..6df4fb8 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00004096.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00135168.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00135168.bag new file mode 100644 index 0000000..9323365 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00135168.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00266240.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00266240.bag new file mode 100644 index 0000000..7ad82b4 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00266240.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00397312.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00397312.bag new file mode 100644 index 0000000..41a34f0 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00397312.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00528384.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00528384.bag new file mode 100644 index 0000000..f3939c3 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00528384.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00659456.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00659456.bag new file mode 100644 index 0000000..c470b7f Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00659456.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00790528.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00790528.bag new file mode 100644 index 0000000..9f574f8 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00790528.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00921600.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00921600.bag new file mode 100644 index 0000000..90eb3ab Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_00921600.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_01052672.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_01052672.bag new file mode 100644 index 0000000..3bc4fcb Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_01052672.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_01183744.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_01183744.bag new file mode 100644 index 0000000..bfcd716 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_01183744.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_01314816.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_01314816.bag new file mode 100644 index 0000000..907e524 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_01314816.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_01445888.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_01445888.bag new file mode 100644 index 0000000..69c3176 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_01445888.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_01576960.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_01576960.bag new file mode 100644 index 0000000..841fded Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_01576960.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_01708032.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_01708032.bag new file mode 100644 index 0000000..0263c59 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_01708032.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_01839104.bag b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_01839104.bag new file mode 100644 index 0000000..c7f8fa4 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/blobpool/queue/bkt_01839104.bag differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/000036.log b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/000036.log new file mode 100644 index 0000000..016eeb3 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/000036.log differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/000039.sst b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/000039.sst new file mode 100644 index 0000000..af2bc30 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/000039.sst differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/000040.log b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/000040.log new file mode 100644 index 0000000..5963658 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/000040.log differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/000041.log b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/000041.log new file mode 100644 index 0000000..de62f48 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/000041.log differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/CURRENT b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/CURRENT new file mode 100644 index 0000000..29c0a00 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/CURRENT @@ -0,0 +1 @@ +MANIFEST-000037 diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/LOCK b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/MANIFEST-000030 b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/MANIFEST-000030 new file mode 100644 index 0000000..40aa8b5 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/MANIFEST-000030 differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/MANIFEST-000037 b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/MANIFEST-000037 new file mode 100644 index 0000000..0bd8cbe Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/MANIFEST-000037 differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/OPTIONS-000038 b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/OPTIONS-000038 new file mode 100644 index 0000000..64a984b --- /dev/null +++ b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/OPTIONS-000038 @@ -0,0 +1,107 @@ +[Version] + pebble_version=0.1 + +[Options] + bytes_per_sync=524288 + cache_size=536870912 + cleaner=delete + compaction_debt_concurrency=1073741824 + comparer=leveldb.BytewiseComparator + disable_wal=false + flush_delay_delete_range=0s + flush_delay_range_key=0s + flush_split_bytes=4194304 + format_major_version=1 + l0_compaction_concurrency=10 + l0_compaction_file_threshold=500 + l0_compaction_threshold=4 + l0_stop_writes_threshold=12 + lbase_max_bytes=67108864 + max_concurrent_compactions=8 + max_manifest_file_size=134217728 + max_open_files=524288 + mem_table_size=134217728 + mem_table_stop_writes_threshold=2 + min_deletion_rate=0 + merger=pebble.concatenate + read_compaction_rate=16000 + read_sampling_multiplier=-1 + strict_wal_tail=true + table_cache_shards=8 + table_property_collectors=[] + validate_on_ingest=false + wal_dir= + wal_bytes_per_sync=0 + max_writer_concurrency=0 + force_writer_parallelism=false + secondary_cache_size_bytes=0 + +[Level "0"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "1"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "2"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "3"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "4"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "5"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "6"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/FLOCK b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/FLOCK new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/bodies.0000.cdat b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/bodies.0000.cdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/bodies.cidx b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/bodies.cidx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/bodies.cidx differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/bodies.meta b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/bodies.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/bodies.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/diffs.0000.rdat b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/diffs.0000.rdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/diffs.meta b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/diffs.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/diffs.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/diffs.ridx b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/diffs.ridx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/diffs.ridx differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/hashes.0000.rdat b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/hashes.0000.rdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/hashes.meta b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/hashes.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/hashes.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/hashes.ridx b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/hashes.ridx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/hashes.ridx differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/headers.0000.cdat b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/headers.0000.cdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/headers.cidx b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/headers.cidx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/headers.cidx differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/headers.meta b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/headers.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/headers.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/receipts.0000.cdat b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/receipts.0000.cdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/receipts.cidx b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/receipts.cidx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/receipts.cidx differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/receipts.meta b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/receipts.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node1/data/geth/chaindata/ancient/chain/receipts.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/jwtsecret b/vote-block-skripsi/geth-vote/node1/data/geth/jwtsecret new file mode 100644 index 0000000..d5e1def --- /dev/null +++ b/vote-block-skripsi/geth-vote/node1/data/geth/jwtsecret @@ -0,0 +1 @@ +0x2637865a56823c3cdb62ea6e775d6dfd0ef2de98c60de8d09ddb73fec4cdbaa6 \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/000002.log b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/000002.log new file mode 100644 index 0000000..8abd502 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/000002.log differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/CURRENT b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/CURRENT new file mode 100644 index 0000000..7ed683d --- /dev/null +++ b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/LOCK b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/MANIFEST-000001 b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/MANIFEST-000001 new file mode 100644 index 0000000..7c30d31 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/MANIFEST-000001 differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/OPTIONS-000003 b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/OPTIONS-000003 new file mode 100644 index 0000000..12e1cf3 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/OPTIONS-000003 @@ -0,0 +1,107 @@ +[Version] + pebble_version=0.1 + +[Options] + bytes_per_sync=524288 + cache_size=16777216 + cleaner=delete + compaction_debt_concurrency=1073741824 + comparer=leveldb.BytewiseComparator + disable_wal=false + flush_delay_delete_range=0s + flush_delay_range_key=0s + flush_split_bytes=4194304 + format_major_version=1 + l0_compaction_concurrency=10 + l0_compaction_file_threshold=500 + l0_compaction_threshold=4 + l0_stop_writes_threshold=12 + lbase_max_bytes=67108864 + max_concurrent_compactions=8 + max_manifest_file_size=134217728 + max_open_files=16 + mem_table_size=4194304 + mem_table_stop_writes_threshold=2 + min_deletion_rate=0 + merger=pebble.concatenate + read_compaction_rate=16000 + read_sampling_multiplier=-1 + strict_wal_tail=true + table_cache_shards=8 + table_property_collectors=[] + validate_on_ingest=false + wal_dir= + wal_bytes_per_sync=0 + max_writer_concurrency=0 + force_writer_parallelism=false + secondary_cache_size_bytes=0 + +[Level "0"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "1"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "2"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "3"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "4"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "5"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "6"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/FLOCK b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/FLOCK new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/bodies.0000.cdat b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/bodies.0000.cdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/bodies.cidx b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/bodies.cidx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/bodies.cidx differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/bodies.meta b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/bodies.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/bodies.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/diffs.0000.rdat b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/diffs.0000.rdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/diffs.meta b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/diffs.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/diffs.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/diffs.ridx b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/diffs.ridx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/diffs.ridx differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/hashes.0000.rdat b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/hashes.0000.rdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/hashes.meta b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/hashes.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/hashes.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/hashes.ridx b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/hashes.ridx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/hashes.ridx differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/headers.0000.cdat b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/headers.0000.cdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/headers.cidx b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/headers.cidx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/headers.cidx differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/headers.meta b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/headers.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/headers.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/receipts.0000.cdat b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/receipts.0000.cdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/receipts.cidx b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/receipts.cidx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/receipts.cidx differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/receipts.meta b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/receipts.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node1/data/geth/lightchaindata/ancient/chain/receipts.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/nodekey b/vote-block-skripsi/geth-vote/node1/data/geth/nodekey new file mode 100644 index 0000000..c9b1929 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node1/data/geth/nodekey @@ -0,0 +1 @@ +7ba18c866a4de9a8a4da97d707f432c9fe820843191ae63a59e8cc7dc52b2abb \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/nodes/000015.ldb b/vote-block-skripsi/geth-vote/node1/data/geth/nodes/000015.ldb new file mode 100644 index 0000000..4616a1e Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/nodes/000015.ldb differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/nodes/000016.ldb b/vote-block-skripsi/geth-vote/node1/data/geth/nodes/000016.ldb new file mode 100644 index 0000000..92963b1 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/nodes/000016.ldb differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/nodes/000017.log b/vote-block-skripsi/geth-vote/node1/data/geth/nodes/000017.log new file mode 100644 index 0000000..a37c36b Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/nodes/000017.log differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/nodes/CURRENT b/vote-block-skripsi/geth-vote/node1/data/geth/nodes/CURRENT new file mode 100644 index 0000000..e417a51 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node1/data/geth/nodes/CURRENT @@ -0,0 +1 @@ +MANIFEST-000018 diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/nodes/CURRENT.bak b/vote-block-skripsi/geth-vote/node1/data/geth/nodes/CURRENT.bak new file mode 100644 index 0000000..23b73d9 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node1/data/geth/nodes/CURRENT.bak @@ -0,0 +1 @@ +MANIFEST-000014 diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/nodes/LOCK b/vote-block-skripsi/geth-vote/node1/data/geth/nodes/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/nodes/LOG b/vote-block-skripsi/geth-vote/node1/data/geth/nodes/LOG new file mode 100644 index 0000000..b7c59c5 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node1/data/geth/nodes/LOG @@ -0,0 +1,69 @@ +=============== Jul 24, 2024 (+07) =============== +14:40:26.194300 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +14:40:26.207399 db@open opening +14:40:26.208946 version@stat F·[] S·0B[] Sc·[] +14:40:26.217671 db@janitor F·2 G·0 +14:40:26.217756 db@open done T·10.313266ms +=============== Jul 24, 2024 (+07) =============== +14:51:02.408625 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +14:51:02.409007 version@stat F·[] S·0B[] Sc·[] +14:51:02.409063 db@open opening +14:51:02.409120 journal@recovery F·1 +14:51:02.409571 journal@recovery recovering @1 +14:51:02.414164 memdb@flush created L0@2 N·120 S·1KiB "loc..seq,v2":"version,v1" +14:51:02.414733 version@stat F·[1] S·1KiB[1KiB] Sc·[0.25] +14:51:02.428293 db@janitor F·3 G·0 +14:51:02.428380 db@open done T·19.304574ms +=============== Jul 26, 2024 (+07) =============== +11:28:45.473805 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +11:28:45.474888 version@stat F·[1] S·1KiB[1KiB] Sc·[0.25] +11:28:45.474933 db@open opening +11:28:45.475295 journal@recovery F·1 +11:28:45.475730 journal@recovery recovering @3 +11:28:45.481170 memdb@flush created L0@5 N·52 S·1KiB "loc..seq,v122":"n:\xff..ong,v148" +11:28:45.483023 version@stat F·[2] S·2KiB[2KiB] Sc·[0.50] +11:28:45.495390 db@janitor F·4 G·0 +11:28:45.495423 db@open done T·20.481614ms +11:28:45.501771 table@compaction L0·2 -> L1·0 S·2KiB Q·174 +11:28:45.506299 table@build created L1@8 N·15 S·827B "loc..seq,v122":"version,v1" +11:28:45.506340 version@stat F·[0 1] S·827B[0B 827B] Sc·[0.00 0.00] +11:28:45.522234 table@compaction committed F-1 S-1KiB Ke·0 D·157 T·20.429265ms +11:28:45.522390 table@remove removed @2 +=============== Aug 14, 2024 (+07) =============== +21:20:56.899126 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +21:20:56.901535 version@stat F·[0 1] S·827B[0B 827B] Sc·[0.00 0.00] +21:20:56.901617 db@open opening +21:20:56.902337 journal@recovery F·1 +21:20:56.907621 journal@recovery recovering @6 +21:20:56.940011 memdb@flush created L0@9 N·5673 S·55KiB "loc..seq,v175":"n:\xff..ong,v179" +21:20:56.944292 version@stat F·[1 1] S·56KiB[55KiB 827B] Sc·[0.25 0.00] +21:20:56.982519 db@janitor F·5 G·1 +21:20:56.982556 db@janitor removing table-5 +21:20:56.982657 db@open done T·81.030184ms +=============== Aug 21, 2024 (+07) =============== +09:12:20.379639 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +09:12:20.397335 version@stat F·[1 1] S·56KiB[55KiB 827B] Sc·[0.25 0.00] +09:12:20.397449 db@open opening +09:12:20.397542 journal@recovery F·1 +09:12:20.400846 journal@recovery recovering @10 +09:12:20.449432 memdb@flush created L0@12 N·2497 S·24KiB "loc..seq,v5849":"n:\xff..ong,v5855" +09:12:20.461217 version@stat F·[2 1] S·81KiB[80KiB 827B] Sc·[0.50 0.00] +09:12:20.565472 db@janitor F·5 G·0 +09:12:20.565506 db@open done T·168.043352ms +09:12:20.593747 table@compaction L0·2 -> L1·1 S·81KiB Q·8347 +09:12:20.639682 table@build created L1@15 N·17 S·845B "loc..seq,v5849":"version,v1" +09:12:20.639776 version@stat F·[0 1] S·845B[0B 845B] Sc·[0.00 0.00] +09:12:20.771101 table@compaction committed F-2 S-80KiB Ke·0 D·8168 T·177.263871ms +09:12:20.771406 table@remove removed @9 +09:12:20.771475 table@remove removed @8 +=============== Aug 24, 2024 (+07) =============== +09:19:11.228729 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +09:19:11.231542 version@stat F·[0 1] S·845B[0B 845B] Sc·[0.00 0.00] +09:19:11.231599 db@open opening +09:19:11.231666 journal@recovery F·1 +09:19:11.232343 journal@recovery recovering @13 +09:19:11.251592 memdb@flush created L0@16 N·2851 S·28KiB "loc..seq,v8347":"n:\xff..ong,v8357" +09:19:11.252898 version@stat F·[1 1] S·29KiB[28KiB 845B] Sc·[0.25 0.00] +09:19:11.273813 db@janitor F·5 G·1 +09:19:11.273923 db@janitor removing table-12 +09:19:11.274148 db@open done T·42.529408ms diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/nodes/MANIFEST-000018 b/vote-block-skripsi/geth-vote/node1/data/geth/nodes/MANIFEST-000018 new file mode 100644 index 0000000..cdf3719 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node1/data/geth/nodes/MANIFEST-000018 differ diff --git a/vote-block-skripsi/geth-vote/node1/data/geth/transactions.rlp b/vote-block-skripsi/geth-vote/node1/data/geth/transactions.rlp new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node1/data/keystore/UTC--2024-07-24T07-40-12.624952215Z--4258347dedb78fbdfd5891da6c280f1fd3d3c491 b/vote-block-skripsi/geth-vote/node1/data/keystore/UTC--2024-07-24T07-40-12.624952215Z--4258347dedb78fbdfd5891da6c280f1fd3d3c491 new file mode 100644 index 0000000..36600a9 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node1/data/keystore/UTC--2024-07-24T07-40-12.624952215Z--4258347dedb78fbdfd5891da6c280f1fd3d3c491 @@ -0,0 +1 @@ +{"address":"4258347dedb78fbdfd5891da6c280f1fd3d3c491","crypto":{"cipher":"aes-128-ctr","ciphertext":"623a42f415277e7f16f4971c56e16f385d232d4e9321b7fc915437e51b2fa753","cipherparams":{"iv":"6ef28819fd60c161bd265e0b27bf9e49"},"kdf":"scrypt","kdfparams":{"dklen":32,"n":262144,"p":1,"r":8,"salt":"c01f570c9a5c1516adabccb75dd53df9cbf31da6442222a376cb918193138e60"},"mac":"78391bdb81d2ebfb406bb2f245ba0ae4c7d1d4a3e9f444439727c7221d1700dc"},"id":"51373bd8-ccc9-422a-a199-00f116fef5c8","version":3} \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node2.log b/vote-block-skripsi/geth-vote/node2.log new file mode 100644 index 0000000..6fba092 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node2.log @@ -0,0 +1,3351 @@ +INFO [08-24|09:19:10.413] Maximum peer count ETH=50 total=50 +INFO [08-24|09:19:10.415] Smartcard socket not found, disabling err="stat /run/pcscd/pcscd.comm: no such file or directory" +INFO [08-24|09:19:10.423] Set global gas cap cap=50,000,000 +INFO [08-24|09:19:10.424] Initializing the KZG library backend=gokzg +INFO [08-24|09:19:10.575] Allocated trie memory caches clean=154.00MiB dirty=256.00MiB +INFO [08-24|09:19:10.580] Using pebble as the backing database +INFO [08-24|09:19:10.580] Allocated cache and file handles database=/home/silviaprada/geth-vote/node2/data/geth/chaindata cache=512.00MiB handles=524,288 +INFO [08-24|09:19:10.904] Opened ancient database database=/home/silviaprada/geth-vote/node2/data/geth/chaindata/ancient/chain readonly=false +INFO [08-24|09:19:10.905] State scheme set to already existing scheme=hash +INFO [08-24|09:19:10.915] Initialising Ethereum protocol network=120,202 dbversion=8 +INFO [08-24|09:19:10.916] +INFO [08-24|09:19:10.916] --------------------------------------------------------------------------------------------------------------------------------------------------------- +INFO [08-24|09:19:10.916] Chain ID: 120202 (unknown) +INFO [08-24|09:19:10.916] Consensus: Clique (proof-of-authority) +INFO [08-24|09:19:10.916] +INFO [08-24|09:19:10.916] Pre-Merge hard forks (block based): +INFO [08-24|09:19:10.916] - Homestead: #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/homestead.md) +INFO [08-24|09:19:10.916] - Tangerine Whistle (EIP 150): #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/tangerine-whistle.md) +INFO [08-24|09:19:10.916] - Spurious Dragon/1 (EIP 155): #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/spurious-dragon.md) +INFO [08-24|09:19:10.916] - Spurious Dragon/2 (EIP 158): #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/spurious-dragon.md) +INFO [08-24|09:19:10.916] - Byzantium: #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/byzantium.md) +INFO [08-24|09:19:10.916] - Constantinople: #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/constantinople.md) +INFO [08-24|09:19:10.916] - Petersburg: #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/petersburg.md) +INFO [08-24|09:19:10.916] - Istanbul: #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/istanbul.md) +INFO [08-24|09:19:10.916] - Berlin: #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/berlin.md) +INFO [08-24|09:19:10.916] - London: # (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/london.md) +INFO [08-24|09:19:10.916] +INFO [08-24|09:19:10.916] The Merge is not yet available for this network! +INFO [08-24|09:19:10.916] - Hard-fork specification: https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/paris.md +INFO [08-24|09:19:10.916] +INFO [08-24|09:19:10.916] Post-Merge hard forks (timestamp based): +INFO [08-24|09:19:10.916] +INFO [08-24|09:19:10.916] --------------------------------------------------------------------------------------------------------------------------------------------------------- +INFO [08-24|09:19:10.916] +INFO [08-24|09:19:10.916] Loaded most recent local block number=4302 hash=066493..eea1f4 td=8605 age=2d22h37m +WARN [08-24|09:19:10.916] Head state missing, repairing number=4302 hash=066493..eea1f4 +INFO [08-24|09:19:11.066] Loaded most recent local header number=4302 hash=066493..eea1f4 td=8605 age=2d22h37m +INFO [08-24|09:19:11.066] Loaded most recent local block number=10 hash=a4d7ec..90b7f8 td=21 age=1mo18h37m +INFO [08-24|09:19:11.066] Loaded most recent local snap block number=4302 hash=066493..eea1f4 td=8605 age=2d22h37m +WARN [08-24|09:19:11.114] Snapshot maintenance disabled (syncing) +INFO [08-24|09:19:11.114] Initialized transaction indexer range="last 2350000 blocks" +INFO [08-24|09:19:11.115] Loaded local transaction journal transactions=0 dropped=0 +WARN [08-24|09:19:11.194] Switch sync mode from snap sync to full sync reason="snap sync complete" +INFO [08-24|09:19:11.201] Gasprice oracle is ignoring threshold set threshold=2 +WARN [08-24|09:19:11.214] Unclean shutdown detected booted=2024-07-24T14:40:26+0700 age=1mo18h38m +WARN [08-24|09:19:11.215] Unclean shutdown detected booted=2024-07-24T14:46:21+0700 age=1mo18h32m +WARN [08-24|09:19:11.215] Unclean shutdown detected booted=2024-07-24T14:50:00+0700 age=1mo18h29m +WARN [08-24|09:19:11.215] Unclean shutdown detected booted=2024-07-24T14:51:02+0700 age=1mo18h28m +WARN [08-24|09:19:11.215] Unclean shutdown detected booted=2024-07-24T15:12:42+0700 age=1mo18h6m +WARN [08-24|09:19:11.215] Unclean shutdown detected booted=2024-07-26T14:33:45+0700 age=4w18h45m +WARN [08-24|09:19:11.215] Unclean shutdown detected booted=2024-08-14T22:40:57+0700 age=1w2d10h +WARN [08-24|09:19:11.215] Unclean shutdown detected booted=2024-08-21T10:37:20+0700 age=2d22h41m +WARN [08-24|09:19:11.219] Engine API enabled protocol=eth +WARN [08-24|09:19:11.219] Engine API started but chain not configured for merge yet +INFO [08-24|09:19:11.219] Starting peer-to-peer node instance=Geth/v1.13.15-stable-c5ba367e/linux-amd64/go1.21.6 +INFO [08-24|09:19:11.299] New local node record seq=1,721,806,826,208 id=f39596b0af76e2de ip=127.0.0.1 udp=30306 tcp=30306 +INFO [08-24|09:19:11.307] Started P2P networking self=enode://8ab39c6f4445cdad213a7bf21581bee1aef9a784501ecbb42a480b76765164aa58cac26a4509e440927f4ad77d418a07cd1e6bfd2a3c42d3fff2b1236b74f6ed@127.0.0.1:30306 +INFO [08-24|09:19:11.311] IPC endpoint opened url=/home/silviaprada/geth-vote/node2/data/geth.ipc +INFO [08-24|09:19:11.313] Loaded JWT secret file path=/home/silviaprada/geth-vote/node2/data/geth/jwtsecret crc32=0x2cfae053 +INFO [08-24|09:19:11.316] WebSocket enabled url=ws://127.0.0.1:8546 +INFO [08-24|09:19:11.316] HTTP server started endpoint=127.0.0.1:8546 auth=true prefix= cors=localhost vhosts=localhost +INFO [08-24|09:19:17.591] Unlocked account address=0xFB6Cd3f865570b3f86631c71dE0Efce5Be0940D3 +WARN [08-24|09:19:18.293] Syncing, discarded propagated block number=11 hash=80f99d..a6794b +INFO [08-24|09:19:21.320] Block synchronisation started +INFO [08-24|09:19:21.634] Looking for peers peercount=2 tried=2 static=0 +INFO [08-24|09:19:21.920] Importing heavy sidechain segment blocks=2048 start=11 end=2058 +INFO [08-24|09:19:31.680] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:19:41.708] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:19:44.798] Importing heavy sidechain segment blocks=2048 start=2059 end=4106 +INFO [08-24|09:19:51.739] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:20:01.759] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:20:03.841] Imported new chain segment number=3985 hash=6f1b4e..74df84 blocks=1927 txs=5 mgas=1.383 elapsed=19.032s mgasps=0.073 age=2d23h4m triedirty=29.79KiB +INFO [08-24|09:20:04.799] Importing sidechain segment start=4107 end=4302 +INFO [08-24|09:20:09.848] Imported new chain segment number=4303 hash=297378..1a7c9c blocks=1 txs=0 mgas=0.000 elapsed=18.708ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:20:11.815] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:20:14.029] Imported new chain segment number=4304 hash=2fed6e..ea5573 blocks=1 txs=0 mgas=0.000 elapsed=14.689ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:20:19.032] Imported new chain segment number=4305 hash=22a9e5..603c6c blocks=1 txs=0 mgas=0.000 elapsed=14.061ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:20:21.913] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:20:24.059] Imported new chain segment number=4306 hash=5e287d..a455ea blocks=1 txs=0 mgas=0.000 elapsed=29.507ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:20:29.046] Imported new chain segment number=4307 hash=eaab88..3e4909 blocks=1 txs=0 mgas=0.000 elapsed=21.086ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:20:31.939] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:20:38.618] Imported new chain segment number=4308 hash=840991..a961d6 blocks=1 txs=0 mgas=0.000 elapsed=1.411s mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:20:39.038] Imported new chain segment number=4309 hash=b2ea8a..ad4bcd blocks=1 txs=0 mgas=0.000 elapsed=18.971ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:20:42.416] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:20:44.031] Imported new chain segment number=4310 hash=005165..f2428d blocks=1 txs=0 mgas=0.000 elapsed=15.579ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:20:49.048] Imported new chain segment number=4311 hash=6dee9c..fddbaa blocks=1 txs=0 mgas=0.000 elapsed=20.641ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:20:52.441] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:20:54.062] Imported new chain segment number=4312 hash=7e1de4..fe104f blocks=1 txs=0 mgas=0.000 elapsed=33.981ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:02.786] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:21:07.534] Imported new chain segment number=4313 hash=a7d430..6865dd blocks=1 txs=0 mgas=0.000 elapsed=4.315s mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:11.639] Imported new chain segment number=4314 hash=d47601..5d2a33 blocks=1 txs=0 mgas=0.000 elapsed=1.895s mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:12.051] Imported new chain segment number=4315 hash=9ae543..34d402 blocks=1 txs=0 mgas=0.000 elapsed=384.532ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:13.067] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:21:14.059] Imported new chain segment number=4316 hash=8fea62..cee388 blocks=1 txs=0 mgas=0.000 elapsed=17.591ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:19.051] Imported new chain segment number=4317 hash=1c4bc9..ace188 blocks=1 txs=0 mgas=0.000 elapsed=16.397ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:23.540] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:21:24.076] Imported new chain segment number=4318 hash=934c63..8428a9 blocks=1 txs=0 mgas=0.000 elapsed=16.430ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:29.029] Imported new chain segment number=4319 hash=d23f90..21dd86 blocks=1 txs=0 mgas=0.000 elapsed=14.088ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:34.007] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:21:34.028] Imported new chain segment number=4320 hash=9834a8..4124fd blocks=1 txs=0 mgas=0.000 elapsed=9.435ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:39.029] Imported new chain segment number=4321 hash=3f6973..20115c blocks=1 txs=0 mgas=0.000 elapsed=13.900ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:44.032] Imported new chain segment number=4322 hash=fedcde..f64324 blocks=1 txs=0 mgas=0.000 elapsed=12.715ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:44.040] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:21:49.031] Imported new chain segment number=4323 hash=9af7dd..e09122 blocks=1 txs=0 mgas=0.000 elapsed=14.683ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:54.026] Imported new chain segment number=4324 hash=23f02f..125b7d blocks=1 txs=0 mgas=0.000 elapsed=10.925ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:54.081] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:21:59.031] Imported new chain segment number=4325 hash=7c7d32..929a38 blocks=1 txs=0 mgas=0.000 elapsed=14.657ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:04.029] Imported new chain segment number=4326 hash=38762f..d7c92b blocks=1 txs=0 mgas=0.000 elapsed=10.905ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:04.112] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:22:09.029] Imported new chain segment number=4327 hash=1618f4..e73bc9 blocks=1 txs=0 mgas=0.000 elapsed=14.680ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:14.030] Imported new chain segment number=4328 hash=c6a492..7adbcc blocks=1 txs=0 mgas=0.000 elapsed=14.081ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:14.155] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:22:19.027] Imported new chain segment number=4329 hash=b0db5e..c19f13 blocks=1 txs=0 mgas=0.000 elapsed=12.450ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:24.028] Imported new chain segment number=4330 hash=27651e..4058e6 blocks=1 txs=0 mgas=0.000 elapsed=12.077ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:24.180] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:22:29.014] Imported new chain segment number=4331 hash=8991d4..d3f02f blocks=1 txs=0 mgas=0.000 elapsed=7.180ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:34.013] Imported new chain segment number=4332 hash=152474..acddfc blocks=1 txs=0 mgas=0.000 elapsed=8.153ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:34.210] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:22:39.030] Imported new chain segment number=4333 hash=2fe3d7..fdc7ed blocks=1 txs=0 mgas=0.000 elapsed=15.960ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:44.025] Imported new chain segment number=4334 hash=f5eead..061c34 blocks=1 txs=0 mgas=0.000 elapsed=10.559ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:44.244] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:22:49.027] Imported new chain segment number=4335 hash=4d06d9..6b7e25 blocks=1 txs=0 mgas=0.000 elapsed=12.484ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:54.027] Imported new chain segment number=4336 hash=44c369..e69cee blocks=1 txs=0 mgas=0.000 elapsed=12.012ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:54.273] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:22:59.023] Imported new chain segment number=4337 hash=bfdb04..4c84ec blocks=1 txs=0 mgas=0.000 elapsed=8.119ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:04.029] Imported new chain segment number=4338 hash=e3de4e..a4e905 blocks=1 txs=0 mgas=0.000 elapsed=14.129ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:04.295] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:23:09.015] Imported new chain segment number=4339 hash=ce1415..13839b blocks=1 txs=0 mgas=0.000 elapsed=6.750ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:14.024] Imported new chain segment number=4340 hash=9eb560..4967b9 blocks=1 txs=0 mgas=0.000 elapsed=9.735ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:14.322] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:23:19.025] Imported new chain segment number=4341 hash=12602c..f3fda4 blocks=1 txs=0 mgas=0.000 elapsed=10.638ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:24.024] Imported new chain segment number=4342 hash=7253c2..92135e blocks=1 txs=0 mgas=0.000 elapsed=11.367ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:24.342] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:23:29.024] Imported new chain segment number=4343 hash=96cc23..140065 blocks=1 txs=0 mgas=0.000 elapsed=10.447ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:34.027] Imported new chain segment number=4344 hash=e6827d..5456ae blocks=1 txs=0 mgas=0.000 elapsed=12.844ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:34.370] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:23:39.018] Imported new chain segment number=4345 hash=781422..6a9ab3 blocks=1 txs=0 mgas=0.000 elapsed=8.892ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:44.030] Imported new chain segment number=4346 hash=e28a43..a793af blocks=1 txs=0 mgas=0.000 elapsed=14.225ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:44.395] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:23:49.024] Imported new chain segment number=4347 hash=977ee6..3e23b1 blocks=1 txs=0 mgas=0.000 elapsed=11.937ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:54.023] Imported new chain segment number=4348 hash=4d4180..90edb7 blocks=1 txs=0 mgas=0.000 elapsed=11.061ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:54.419] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:23:59.025] Imported new chain segment number=4349 hash=0692f2..1b0c49 blocks=1 txs=0 mgas=0.000 elapsed=11.778ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:04.022] Imported new chain segment number=4350 hash=3ea9fa..894ad3 blocks=1 txs=0 mgas=0.000 elapsed=9.507ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:04.443] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:24:09.031] Imported new chain segment number=4351 hash=c84194..735c3e blocks=1 txs=0 mgas=0.000 elapsed=17.038ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:14.026] Imported new chain segment number=4352 hash=d7c397..2f2f4a blocks=1 txs=0 mgas=0.000 elapsed=9.956ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:14.466] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:24:19.024] Imported new chain segment number=4353 hash=ae40df..55a235 blocks=1 txs=0 mgas=0.000 elapsed=10.516ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:24.020] Imported new chain segment number=4354 hash=e533d4..2dbee9 blocks=1 txs=0 mgas=0.000 elapsed=8.798ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:24.490] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:24:29.022] Imported new chain segment number=4355 hash=cde873..603f23 blocks=1 txs=0 mgas=0.000 elapsed=10.833ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:34.026] Imported new chain segment number=4356 hash=6e87b6..0042b1 blocks=1 txs=0 mgas=0.000 elapsed=13.611ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:34.516] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:24:39.033] Imported new chain segment number=4357 hash=82c86f..398a50 blocks=1 txs=0 mgas=0.000 elapsed=15.622ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:44.027] Imported new chain segment number=4358 hash=04f468..e2879a blocks=1 txs=0 mgas=0.000 elapsed=13.268ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:44.542] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:24:49.021] Imported new chain segment number=4359 hash=28a91e..72c79f blocks=1 txs=0 mgas=0.000 elapsed=10.920ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:54.024] Imported new chain segment number=4360 hash=f5d7d6..d7d285 blocks=1 txs=0 mgas=0.000 elapsed=11.715ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:54.566] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:24:59.026] Imported new chain segment number=4361 hash=833e84..507b9f blocks=1 txs=0 mgas=0.000 elapsed=12.844ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:04.019] Imported new chain segment number=4362 hash=9bb918..3c2ec3 blocks=1 txs=0 mgas=0.000 elapsed=8.814ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:04.595] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:25:09.021] Imported new chain segment number=4363 hash=73089a..8710f6 blocks=1 txs=0 mgas=0.000 elapsed=7.712ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:14.026] Imported new chain segment number=4364 hash=52516d..e56fc3 blocks=1 txs=0 mgas=0.000 elapsed=9.983ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:14.619] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:25:19.028] Imported new chain segment number=4365 hash=999b84..0676e3 blocks=1 txs=0 mgas=0.000 elapsed=13.799ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:24.024] Imported new chain segment number=4366 hash=b9ada9..318e05 blocks=1 txs=0 mgas=0.000 elapsed=11.752ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:24.646] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:25:29.026] Imported new chain segment number=4367 hash=d0d92e..46b9fa blocks=1 txs=0 mgas=0.000 elapsed=11.700ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:34.025] Imported new chain segment number=4368 hash=71a2b1..76315a blocks=1 txs=0 mgas=0.000 elapsed=11.320ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:34.670] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:25:39.017] Imported new chain segment number=4369 hash=32405e..505f6e blocks=1 txs=0 mgas=0.000 elapsed=7.392ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:44.020] Imported new chain segment number=4370 hash=56f7f2..0fcf4d blocks=1 txs=0 mgas=0.000 elapsed=7.659ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:44.697] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:25:49.023] Imported new chain segment number=4371 hash=9c8ad3..795b0d blocks=1 txs=0 mgas=0.000 elapsed=9.344ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:54.026] Imported new chain segment number=4372 hash=258154..fb4291 blocks=1 txs=0 mgas=0.000 elapsed=12.603ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:54.722] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:25:59.017] Imported new chain segment number=4373 hash=d801d8..2528e4 blocks=1 txs=0 mgas=0.000 elapsed=8.571ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:04.024] Imported new chain segment number=4374 hash=09988a..8ef9ba blocks=1 txs=0 mgas=0.000 elapsed=10.452ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:04.746] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:26:09.022] Imported new chain segment number=4375 hash=1ef9e0..fcda4d blocks=1 txs=0 mgas=0.000 elapsed=9.317ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:14.026] Imported new chain segment number=4376 hash=8dafbd..16dbc9 blocks=1 txs=0 mgas=0.000 elapsed=11.880ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:14.775] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:26:19.026] Imported new chain segment number=4377 hash=bc6696..1fbbf3 blocks=1 txs=0 mgas=0.000 elapsed=13.511ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:24.020] Imported new chain segment number=4378 hash=62135b..f1e5a0 blocks=1 txs=0 mgas=0.000 elapsed=9.421ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:24.801] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:26:29.021] Imported new chain segment number=4379 hash=e06d2a..1da327 blocks=1 txs=0 mgas=0.000 elapsed=9.979ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:34.016] Imported new chain segment number=4380 hash=1fbece..6580a6 blocks=1 txs=0 mgas=0.000 elapsed=8.620ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:34.821] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:26:39.013] Imported new chain segment number=4381 hash=26e016..3e4c6b blocks=1 txs=0 mgas=0.000 elapsed=7.299ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:44.016] Imported new chain segment number=4382 hash=fe1846..20566c blocks=1 txs=0 mgas=0.000 elapsed=6.941ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:44.844] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:26:49.018] Imported new chain segment number=4383 hash=eee654..6c1ea4 blocks=1 txs=0 mgas=0.000 elapsed=9.917ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:54.017] Imported new chain segment number=4384 hash=7793d7..0e9353 blocks=1 txs=0 mgas=0.000 elapsed=9.103ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:54.865] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:26:59.025] Imported new chain segment number=4385 hash=79554d..836d4e blocks=1 txs=0 mgas=0.000 elapsed=12.193ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:04.014] Imported new chain segment number=4386 hash=915f79..21b0fb blocks=1 txs=0 mgas=0.000 elapsed=6.664ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:04.886] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:27:09.023] Imported new chain segment number=4387 hash=f36bdc..90d09e blocks=1 txs=0 mgas=0.000 elapsed=7.708ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:14.027] Imported new chain segment number=4388 hash=20f69b..3913d0 blocks=1 txs=0 mgas=0.000 elapsed=14.122ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:14.910] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:27:19.022] Imported new chain segment number=4389 hash=80722c..6c4023 blocks=1 txs=0 mgas=0.000 elapsed=10.221ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:24.022] Imported new chain segment number=4390 hash=9c3ca0..f8a617 blocks=1 txs=0 mgas=0.000 elapsed=10.640ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:24.935] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:27:29.013] Imported new chain segment number=4391 hash=636fce..ebc538 blocks=1 txs=0 mgas=0.000 elapsed=6.745ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:34.266] Imported new chain segment number=4392 hash=844fe5..b42f66 blocks=1 txs=0 mgas=0.000 elapsed=145.582ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:34.958] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:27:39.025] Imported new chain segment number=4393 hash=a3095a..9878bf blocks=1 txs=0 mgas=0.000 elapsed=13.300ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:44.019] Imported new chain segment number=4394 hash=dfb147..7fdcf2 blocks=1 txs=0 mgas=0.000 elapsed=8.501ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:44.984] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:27:49.015] Imported new chain segment number=4395 hash=b665bb..a6da3b blocks=1 txs=0 mgas=0.000 elapsed=6.073ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:54.020] Imported new chain segment number=4396 hash=1c82f1..0786b4 blocks=1 txs=0 mgas=0.000 elapsed=9.250ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:55.009] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:27:59.021] Imported new chain segment number=4397 hash=75a2db..c5ce71 blocks=1 txs=0 mgas=0.000 elapsed=10.491ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:04.024] Imported new chain segment number=4398 hash=b85650..c5f965 blocks=1 txs=0 mgas=0.000 elapsed=12.307ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:05.218] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:28:09.039] Imported new chain segment number=4399 hash=6e89d4..5b631b blocks=1 txs=0 mgas=0.000 elapsed=13.655ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:14.808] Imported new chain segment number=4400 hash=10f825..5d4f13 blocks=1 txs=0 mgas=0.000 elapsed=67.567ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:15.362] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:28:20.098] Imported new chain segment number=4401 hash=105954..2b282a blocks=1 txs=0 mgas=0.000 elapsed=592.062ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:24.052] Imported new chain segment number=4402 hash=0261ce..bd5b05 blocks=1 txs=0 mgas=0.000 elapsed=28.561ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:25.390] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:28:29.044] Imported new chain segment number=4403 hash=dc8c37..0e46d1 blocks=1 txs=0 mgas=0.000 elapsed=15.253ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:34.483] Imported new chain segment number=4404 hash=bb8791..16b600 blocks=1 txs=0 mgas=0.000 elapsed=449.152ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:35.418] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:28:39.034] Imported new chain segment number=4405 hash=06787a..810c19 blocks=1 txs=0 mgas=0.000 elapsed=13.466ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:44.104] Imported new chain segment number=4406 hash=9265f5..2b7b22 blocks=1 txs=0 mgas=0.000 elapsed=25.995ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:45.483] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:28:49.662] Imported new chain segment number=4407 hash=8c4f59..8e9a2c blocks=1 txs=0 mgas=0.000 elapsed=389.048ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:54.174] Imported new chain segment number=4408 hash=4e2123..4f5923 blocks=1 txs=0 mgas=0.000 elapsed=157.185ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:55.645] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:28:59.386] Imported new chain segment number=4409 hash=54b89c..cf4034 blocks=1 txs=0 mgas=0.000 elapsed=154.921ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:04.198] Imported new chain segment number=4410 hash=65bda5..d3d95c blocks=1 txs=0 mgas=0.000 elapsed=32.824ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:05.673] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:29:09.039] Imported new chain segment number=4411 hash=70ac42..ee0d7a blocks=1 txs=0 mgas=0.000 elapsed=21.754ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:14.602] Imported new chain segment number=4412 hash=d84a1d..55aa94 blocks=1 txs=0 mgas=0.000 elapsed=43.983ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:15.692] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:29:19.018] Imported new chain segment number=4413 hash=3f9b72..26a3e2 blocks=1 txs=0 mgas=0.000 elapsed=6.818ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:24.018] Imported new chain segment number=4414 hash=0eb7ab..761035 blocks=1 txs=0 mgas=0.000 elapsed=7.849ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:25.713] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:29:29.017] Imported new chain segment number=4415 hash=97b89f..83a46d blocks=1 txs=0 mgas=0.000 elapsed=8.783ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:34.014] Imported new chain segment number=4416 hash=6d4edc..e3784c blocks=1 txs=0 mgas=0.000 elapsed=5.501ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:35.732] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:29:39.018] Imported new chain segment number=4417 hash=23da28..791f6b blocks=1 txs=0 mgas=0.000 elapsed=8.640ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:44.016] Imported new chain segment number=4418 hash=83cecc..220ef5 blocks=1 txs=0 mgas=0.000 elapsed=8.611ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:45.754] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:29:49.030] Imported new chain segment number=4419 hash=b237e5..5e6fa2 blocks=1 txs=0 mgas=0.000 elapsed=15.737ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:54.019] Imported new chain segment number=4420 hash=b8224b..0a5723 blocks=1 txs=0 mgas=0.000 elapsed=9.505ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:55.779] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:29:59.026] Imported new chain segment number=4421 hash=98f68a..e32838 blocks=1 txs=0 mgas=0.000 elapsed=13.202ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:04.012] Imported new chain segment number=4422 hash=61016f..b01983 blocks=1 txs=0 mgas=0.000 elapsed=4.782ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:05.804] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:30:09.016] Imported new chain segment number=4423 hash=6f723f..431af4 blocks=1 txs=0 mgas=0.000 elapsed=8.011ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:14.023] Imported new chain segment number=4424 hash=cf0f08..b83173 blocks=1 txs=0 mgas=0.000 elapsed=12.814ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:15.828] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:30:19.018] Imported new chain segment number=4425 hash=19a7e7..dd36d3 blocks=1 txs=0 mgas=0.000 elapsed=8.929ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:24.022] Imported new chain segment number=4426 hash=3368bf..c48d7f blocks=1 txs=0 mgas=0.000 elapsed=9.141ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:25.849] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:30:29.014] Imported new chain segment number=4427 hash=aeb78f..f27c90 blocks=1 txs=0 mgas=0.000 elapsed=7.222ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:34.022] Imported new chain segment number=4428 hash=1e6fd3..f107aa blocks=1 txs=0 mgas=0.000 elapsed=9.923ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:35.873] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:30:39.025] Imported new chain segment number=4429 hash=881a44..db1620 blocks=1 txs=0 mgas=0.000 elapsed=10.576ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:44.015] Imported new chain segment number=4430 hash=8be5b3..2ffb54 blocks=1 txs=0 mgas=0.000 elapsed=5.484ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:45.897] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:30:49.028] Imported new chain segment number=4431 hash=61280b..0134ac blocks=1 txs=0 mgas=0.000 elapsed=12.593ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:54.026] Imported new chain segment number=4432 hash=8cf66f..46313a blocks=1 txs=0 mgas=0.000 elapsed=13.167ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:55.919] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:30:59.026] Imported new chain segment number=4433 hash=126fda..4878cd blocks=1 txs=0 mgas=0.000 elapsed=10.941ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:04.017] Imported new chain segment number=4434 hash=5a8554..237790 blocks=1 txs=0 mgas=0.000 elapsed=4.838ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:05.943] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:31:09.026] Imported new chain segment number=4435 hash=6efaf4..721ed6 blocks=1 txs=0 mgas=0.000 elapsed=11.278ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:14.012] Imported new chain segment number=4436 hash=b8e29b..150151 blocks=1 txs=0 mgas=0.000 elapsed=6.669ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:15.966] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:31:19.031] Imported new chain segment number=4437 hash=d3a419..e0eee6 blocks=1 txs=0 mgas=0.000 elapsed=10.205ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:24.020] Imported new chain segment number=4438 hash=7651d0..2c38e0 blocks=1 txs=0 mgas=0.000 elapsed=11.079ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:26.008] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:31:29.039] Imported new chain segment number=4439 hash=2ea218..2773a9 blocks=1 txs=0 mgas=0.000 elapsed=16.495ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:34.014] Imported new chain segment number=4440 hash=914aa2..7f798e blocks=1 txs=0 mgas=0.000 elapsed=6.941ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:36.040] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:31:39.020] Imported new chain segment number=4441 hash=acf57f..435922 blocks=1 txs=0 mgas=0.000 elapsed=9.745ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:44.026] Imported new chain segment number=4442 hash=cff28e..616da8 blocks=1 txs=0 mgas=0.000 elapsed=11.880ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:46.063] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:31:49.024] Imported new chain segment number=4443 hash=d3bfb6..06b268 blocks=1 txs=0 mgas=0.000 elapsed=10.985ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:54.023] Imported new chain segment number=4444 hash=e11dcc..5ca74a blocks=1 txs=0 mgas=0.000 elapsed=10.838ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:56.086] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:31:59.026] Imported new chain segment number=4445 hash=23e8ff..1e22c4 blocks=1 txs=0 mgas=0.000 elapsed=10.015ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:04.028] Imported new chain segment number=4446 hash=169d05..8f100e blocks=1 txs=0 mgas=0.000 elapsed=13.273ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:06.112] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:32:09.016] Imported new chain segment number=4447 hash=ddbdb7..fc3bec blocks=1 txs=0 mgas=0.000 elapsed=7.078ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:14.022] Imported new chain segment number=4448 hash=bb413c..215c91 blocks=1 txs=0 mgas=0.000 elapsed=10.572ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:16.138] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:32:19.027] Imported new chain segment number=4449 hash=cf3544..8213d4 blocks=1 txs=0 mgas=0.000 elapsed=11.719ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:24.026] Imported new chain segment number=4450 hash=2b4a5e..7d38cc blocks=1 txs=0 mgas=0.000 elapsed=12.322ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:26.162] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:32:29.026] Imported new chain segment number=4451 hash=0a051d..063d10 blocks=1 txs=0 mgas=0.000 elapsed=12.405ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:34.016] Imported new chain segment number=4452 hash=84ebfa..a32bc5 blocks=1 txs=0 mgas=0.000 elapsed=7.505ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:36.185] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:32:39.031] Imported new chain segment number=4453 hash=16d576..c2403a blocks=1 txs=0 mgas=0.000 elapsed=15.845ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:44.030] Imported new chain segment number=4454 hash=c396e7..bdf36a blocks=1 txs=0 mgas=0.000 elapsed=12.471ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:46.208] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:32:49.029] Imported new chain segment number=4455 hash=df9b31..d84c0d blocks=1 txs=0 mgas=0.000 elapsed=13.713ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:54.015] Imported new chain segment number=4456 hash=b8dbcf..054816 blocks=1 txs=0 mgas=0.000 elapsed=7.040ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:56.237] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:32:59.025] Imported new chain segment number=4457 hash=406928..2d7f5b blocks=1 txs=0 mgas=0.000 elapsed=11.026ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:04.026] Imported new chain segment number=4458 hash=7ad4ed..05e980 blocks=1 txs=0 mgas=0.000 elapsed=13.064ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:06.259] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:33:09.015] Imported new chain segment number=4459 hash=ee6e3a..93fc31 blocks=1 txs=0 mgas=0.000 elapsed=8.305ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:14.023] Imported new chain segment number=4460 hash=266208..922c90 blocks=1 txs=0 mgas=0.000 elapsed=11.311ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:16.284] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:33:19.022] Imported new chain segment number=4461 hash=f6bcd7..c3f0a6 blocks=1 txs=0 mgas=0.000 elapsed=8.905ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:24.017] Imported new chain segment number=4462 hash=8d39cb..e0b4d7 blocks=1 txs=0 mgas=0.000 elapsed=9.974ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:26.306] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:33:29.020] Imported new chain segment number=4463 hash=bf9fe3..4d2a46 blocks=1 txs=0 mgas=0.000 elapsed=7.550ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:34.028] Imported new chain segment number=4464 hash=f3f2c1..6214ef blocks=1 txs=0 mgas=0.000 elapsed=13.075ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:36.330] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:33:39.023] Imported new chain segment number=4465 hash=72e066..cc130c blocks=1 txs=0 mgas=0.000 elapsed=10.111ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:44.015] Imported new chain segment number=4466 hash=56b717..29f295 blocks=1 txs=0 mgas=0.000 elapsed=6.463ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:46.355] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:33:49.027] Imported new chain segment number=4467 hash=8cfbc0..7a1c8f blocks=1 txs=0 mgas=0.000 elapsed=12.628ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:54.028] Imported new chain segment number=4468 hash=058631..a3d999 blocks=1 txs=0 mgas=0.000 elapsed=12.062ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:56.379] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:33:59.019] Imported new chain segment number=4469 hash=d6d724..1752a4 blocks=1 txs=0 mgas=0.000 elapsed=9.893ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:04.025] Imported new chain segment number=4470 hash=675b83..c56978 blocks=1 txs=0 mgas=0.000 elapsed=12.648ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:06.402] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:34:09.025] Imported new chain segment number=4471 hash=3ae4ef..0dfdf2 blocks=1 txs=0 mgas=0.000 elapsed=8.757ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:14.025] Imported new chain segment number=4472 hash=1d94ee..7d4f77 blocks=1 txs=0 mgas=0.000 elapsed=10.709ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:16.427] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:34:19.028] Imported new chain segment number=4473 hash=6b305a..48baf4 blocks=1 txs=0 mgas=0.000 elapsed=15.318ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:24.020] Imported new chain segment number=4474 hash=70466d..49138e blocks=1 txs=0 mgas=0.000 elapsed=10.306ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:26.457] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:34:29.035] Imported new chain segment number=4475 hash=a82f69..788b9e blocks=1 txs=0 mgas=0.000 elapsed=13.404ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:34.085] Imported new chain segment number=4476 hash=0c4009..8ea6d2 blocks=1 txs=0 mgas=0.000 elapsed=6.272ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:36.479] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:34:39.016] Imported new chain segment number=4477 hash=12cf1f..f8d8fd blocks=1 txs=0 mgas=0.000 elapsed=8.400ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:44.026] Imported new chain segment number=4478 hash=c1fe4b..5d737a blocks=1 txs=0 mgas=0.000 elapsed=12.010ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:46.498] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:34:49.030] Imported new chain segment number=4479 hash=277a15..53eab8 blocks=1 txs=0 mgas=0.000 elapsed=13.778ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:54.022] Imported new chain segment number=4480 hash=c9cfdc..0b10b5 blocks=1 txs=0 mgas=0.000 elapsed=9.080ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:56.520] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:34:59.026] Imported new chain segment number=4481 hash=5b35f0..f9c0cc blocks=1 txs=0 mgas=0.000 elapsed=12.856ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:04.024] Imported new chain segment number=4482 hash=b6c0cc..02c49e blocks=1 txs=0 mgas=0.000 elapsed=11.594ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:06.545] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:35:09.023] Imported new chain segment number=4483 hash=f83578..10a45b blocks=1 txs=0 mgas=0.000 elapsed=10.748ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:14.014] Imported new chain segment number=4484 hash=202634..47e988 blocks=1 txs=0 mgas=0.000 elapsed=6.513ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:16.572] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:35:19.027] Imported new chain segment number=4485 hash=efb3f1..4d08c2 blocks=1 txs=0 mgas=0.000 elapsed=14.382ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:24.024] Imported new chain segment number=4486 hash=056888..ce9886 blocks=1 txs=0 mgas=0.000 elapsed=10.413ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:26.598] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:35:29.010] Imported new chain segment number=4487 hash=717760..1a9e94 blocks=1 txs=0 mgas=0.000 elapsed=4.248ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:34.016] Imported new chain segment number=4488 hash=1903fa..f635a7 blocks=1 txs=0 mgas=0.000 elapsed=7.897ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:36.621] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:35:39.039] Imported new chain segment number=4489 hash=722c68..0b7f76 blocks=1 txs=0 mgas=0.000 elapsed=13.447ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:44.024] Imported new chain segment number=4490 hash=0e6e2d..b662a0 blocks=1 txs=0 mgas=0.000 elapsed=11.387ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:46.643] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:35:49.028] Imported new chain segment number=4491 hash=b6e43a..7b6157 blocks=1 txs=0 mgas=0.000 elapsed=13.752ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:54.030] Imported new chain segment number=4492 hash=b076dc..33e0f8 blocks=1 txs=0 mgas=0.000 elapsed=14.512ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:56.665] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:35:59.027] Imported new chain segment number=4493 hash=5e8270..7ac9df blocks=1 txs=0 mgas=0.000 elapsed=13.623ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:04.025] Imported new chain segment number=4494 hash=c39a2d..1e1900 blocks=1 txs=0 mgas=0.000 elapsed=11.234ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:06.690] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:36:09.027] Imported new chain segment number=4495 hash=dbd0a2..80f41d blocks=1 txs=0 mgas=0.000 elapsed=13.135ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:14.018] Imported new chain segment number=4496 hash=e6850a..012e37 blocks=1 txs=0 mgas=0.000 elapsed=7.305ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:16.715] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:36:19.017] Imported new chain segment number=4497 hash=9c05c7..078acb blocks=1 txs=0 mgas=0.000 elapsed=8.045ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:24.027] Imported new chain segment number=4498 hash=079c8e..68cf8d blocks=1 txs=0 mgas=0.000 elapsed=13.512ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:26.735] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:36:29.026] Imported new chain segment number=4499 hash=842d14..fed441 blocks=1 txs=0 mgas=0.000 elapsed=11.367ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:34.018] Imported new chain segment number=4500 hash=b5fc3f..195d1e blocks=1 txs=0 mgas=0.000 elapsed=9.692ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:36.756] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:36:39.016] Imported new chain segment number=4501 hash=9a3123..081193 blocks=1 txs=0 mgas=0.000 elapsed=7.969ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:44.015] Imported new chain segment number=4502 hash=65f49d..510d8b blocks=1 txs=0 mgas=0.000 elapsed=5.854ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:46.779] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:36:49.014] Imported new chain segment number=4503 hash=f55315..15af68 blocks=1 txs=0 mgas=0.000 elapsed=6.226ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:54.017] Imported new chain segment number=4504 hash=a44e71..b27edd blocks=1 txs=0 mgas=0.000 elapsed=6.437ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:56.801] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:36:59.021] Imported new chain segment number=4505 hash=c64452..bbb2a1 blocks=1 txs=0 mgas=0.000 elapsed=6.685ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:04.018] Imported new chain segment number=4506 hash=d49f58..d2f510 blocks=1 txs=0 mgas=0.000 elapsed=7.136ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:06.821] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:37:09.018] Imported new chain segment number=4507 hash=e67716..388b26 blocks=1 txs=0 mgas=0.000 elapsed=6.201ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:14.017] Imported new chain segment number=4508 hash=4d1636..53ba2a blocks=1 txs=0 mgas=0.000 elapsed=8.758ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:16.843] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:37:19.012] Imported new chain segment number=4509 hash=ae872c..ce56d1 blocks=1 txs=0 mgas=0.000 elapsed=3.954ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:24.014] Imported new chain segment number=4510 hash=a459e4..7b0e48 blocks=1 txs=0 mgas=0.000 elapsed=4.972ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:26.866] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:37:29.015] Imported new chain segment number=4511 hash=9864ab..3f4b6d blocks=1 txs=0 mgas=0.000 elapsed=5.799ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:34.022] Imported new chain segment number=4512 hash=1f8330..8b4297 blocks=1 txs=0 mgas=0.000 elapsed=12.607ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:36.891] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:37:39.019] Imported new chain segment number=4513 hash=057388..73ddb5 blocks=1 txs=0 mgas=0.000 elapsed=8.042ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:44.014] Imported new chain segment number=4514 hash=9a3b4e..3cfb0e blocks=1 txs=0 mgas=0.000 elapsed=6.274ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:46.912] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:37:49.019] Imported new chain segment number=4515 hash=621a8d..378bc7 blocks=1 txs=0 mgas=0.000 elapsed=7.026ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:54.048] Imported new chain segment number=4516 hash=8dfd1d..d846c7 blocks=1 txs=0 mgas=0.000 elapsed=24.447ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:56.961] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:37:59.019] Imported new chain segment number=4517 hash=a30955..715a74 blocks=1 txs=0 mgas=0.000 elapsed=7.846ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:04.013] Imported new chain segment number=4518 hash=d2d5f4..a299db blocks=1 txs=0 mgas=0.000 elapsed=4.337ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:07.010] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:38:09.028] Imported new chain segment number=4519 hash=edd864..a40a5a blocks=1 txs=0 mgas=0.000 elapsed=11.053ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:14.029] Imported new chain segment number=4520 hash=28017e..04a872 blocks=1 txs=0 mgas=0.000 elapsed=10.078ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:17.038] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:38:19.016] Imported new chain segment number=4521 hash=1846da..b09417 blocks=1 txs=0 mgas=0.000 elapsed=8.030ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:24.020] Imported new chain segment number=4522 hash=fbba90..dc8775 blocks=1 txs=0 mgas=0.000 elapsed=7.228ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:27.067] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:38:29.028] Imported new chain segment number=4523 hash=ac8851..7f0523 blocks=1 txs=0 mgas=0.000 elapsed=12.105ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:34.030] Imported new chain segment number=4524 hash=6c936b..de1537 blocks=1 txs=0 mgas=0.000 elapsed=9.151ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:37.091] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:38:39.023] Imported new chain segment number=4525 hash=0ae3b0..523f06 blocks=1 txs=0 mgas=0.000 elapsed=9.557ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:44.017] Imported new chain segment number=4526 hash=371ca9..70e5ec blocks=1 txs=0 mgas=0.000 elapsed=7.745ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:47.118] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:38:49.028] Imported new chain segment number=4527 hash=62f2c2..b6f8da blocks=1 txs=0 mgas=0.000 elapsed=14.113ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:54.033] Imported new chain segment number=4528 hash=273e30..8d392e blocks=1 txs=0 mgas=0.000 elapsed=14.772ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:57.140] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:38:59.014] Imported new chain segment number=4529 hash=1faed3..943afa blocks=1 txs=0 mgas=0.000 elapsed=7.421ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:04.012] Imported new chain segment number=4530 hash=116ffa..649f8c blocks=1 txs=0 mgas=0.000 elapsed=5.076ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:07.171] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:39:09.021] Imported new chain segment number=4531 hash=9ac22c..592e7f blocks=1 txs=0 mgas=0.000 elapsed=10.538ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:14.420] Imported new chain segment number=4532 hash=066c62..ae52fd blocks=1 txs=0 mgas=0.000 elapsed=18.157ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:17.196] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:39:19.026] Imported new chain segment number=4533 hash=58337a..1fddbb blocks=1 txs=0 mgas=0.000 elapsed=13.080ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:24.028] Imported new chain segment number=4534 hash=c55289..bc0f7a blocks=1 txs=0 mgas=0.000 elapsed=13.457ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:27.232] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:39:29.027] Imported new chain segment number=4535 hash=f34b29..ba9909 blocks=1 txs=0 mgas=0.000 elapsed=12.652ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:34.015] Imported new chain segment number=4536 hash=49779d..723670 blocks=1 txs=0 mgas=0.000 elapsed=5.474ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:37.254] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:39:39.028] Imported new chain segment number=4537 hash=090512..1a3624 blocks=1 txs=0 mgas=0.000 elapsed=13.752ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:44.013] Imported new chain segment number=4538 hash=15ae3b..c2f28f blocks=1 txs=0 mgas=0.000 elapsed=5.507ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:47.280] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:39:49.027] Imported new chain segment number=4539 hash=e5387f..c116a8 blocks=1 txs=0 mgas=0.000 elapsed=11.740ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:54.017] Imported new chain segment number=4540 hash=e7df1b..921fe0 blocks=1 txs=0 mgas=0.000 elapsed=5.851ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:57.301] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:39:59.027] Imported new chain segment number=4541 hash=868a38..71c121 blocks=1 txs=0 mgas=0.000 elapsed=14.495ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:04.014] Imported new chain segment number=4542 hash=3c3f5c..d7bbaf blocks=1 txs=0 mgas=0.000 elapsed=6.436ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:07.327] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:40:09.025] Imported new chain segment number=4543 hash=b4cc38..f5f6bf blocks=1 txs=0 mgas=0.000 elapsed=11.516ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:14.029] Imported new chain segment number=4544 hash=4f93ad..fdec2e blocks=1 txs=0 mgas=0.000 elapsed=12.034ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:17.349] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:40:19.026] Imported new chain segment number=4545 hash=78d006..bdfa53 blocks=1 txs=0 mgas=0.000 elapsed=10.395ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:24.025] Imported new chain segment number=4546 hash=72e8c7..4349a9 blocks=1 txs=0 mgas=0.000 elapsed=9.977ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:27.381] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:40:29.023] Imported new chain segment number=4547 hash=fa3ad4..48b4b9 blocks=1 txs=0 mgas=0.000 elapsed=12.096ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:34.014] Imported new chain segment number=4548 hash=3ec77f..ab0227 blocks=1 txs=0 mgas=0.000 elapsed=6.121ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:37.406] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:40:39.024] Imported new chain segment number=4549 hash=1f49d5..704444 blocks=1 txs=0 mgas=0.000 elapsed=10.952ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:44.025] Imported new chain segment number=4550 hash=002aba..5a2b7d blocks=1 txs=0 mgas=0.000 elapsed=9.754ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:47.433] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:40:49.028] Imported new chain segment number=4551 hash=3c01c5..d7c397 blocks=1 txs=0 mgas=0.000 elapsed=13.820ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:54.014] Imported new chain segment number=4552 hash=5009aa..3da57c blocks=1 txs=0 mgas=0.000 elapsed=6.010ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:57.459] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:40:59.015] Imported new chain segment number=4553 hash=b427cb..966d31 blocks=1 txs=0 mgas=0.000 elapsed=7.214ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:04.019] Imported new chain segment number=4554 hash=bc32ab..a7a823 blocks=1 txs=0 mgas=0.000 elapsed=7.551ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:07.479] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:41:09.015] Imported new chain segment number=4555 hash=3e5e9a..1e7efa blocks=1 txs=0 mgas=0.000 elapsed=7.726ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:14.026] Imported new chain segment number=4556 hash=5d2b68..bb976f blocks=1 txs=0 mgas=0.000 elapsed=11.863ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:17.501] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:41:19.015] Imported new chain segment number=4557 hash=5b1d33..54fa07 blocks=1 txs=0 mgas=0.000 elapsed=6.410ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:24.013] Imported new chain segment number=4558 hash=678158..ec4856 blocks=1 txs=0 mgas=0.000 elapsed=5.363ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:27.523] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:41:29.016] Imported new chain segment number=4559 hash=863f47..8afeb5 blocks=1 txs=0 mgas=0.000 elapsed=8.153ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:34.025] Imported new chain segment number=4560 hash=c83bc0..0379ec blocks=1 txs=0 mgas=0.000 elapsed=11.487ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:37.551] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:41:39.031] Imported new chain segment number=4561 hash=5d3528..b351ec blocks=1 txs=0 mgas=0.000 elapsed=12.206ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:44.033] Imported new chain segment number=4562 hash=e79212..19cdbb blocks=1 txs=0 mgas=0.000 elapsed=12.515ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:47.578] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:41:49.029] Imported new chain segment number=4563 hash=c6771a..234ce1 blocks=1 txs=0 mgas=0.000 elapsed=13.702ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:54.027] Imported new chain segment number=4564 hash=69b5fe..04a51c blocks=1 txs=0 mgas=0.000 elapsed=9.266ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:57.607] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:41:59.043] Imported new chain segment number=4565 hash=b5bbff..5b95e7 blocks=1 txs=0 mgas=0.000 elapsed=27.742ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:04.031] Imported new chain segment number=4566 hash=22f42c..dfe671 blocks=1 txs=0 mgas=0.000 elapsed=17.046ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:07.637] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:42:09.028] Imported new chain segment number=4567 hash=c5e8d4..7b8db0 blocks=1 txs=0 mgas=0.000 elapsed=12.226ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:14.025] Imported new chain segment number=4568 hash=d66ca8..ff41d9 blocks=1 txs=0 mgas=0.000 elapsed=11.483ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:17.664] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:42:19.028] Imported new chain segment number=4569 hash=36171a..24673b blocks=1 txs=0 mgas=0.000 elapsed=13.194ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:24.026] Imported new chain segment number=4570 hash=857b66..2f3b0b blocks=1 txs=0 mgas=0.000 elapsed=12.623ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:27.692] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:42:29.029] Imported new chain segment number=4571 hash=ba9307..eab10b blocks=1 txs=0 mgas=0.000 elapsed=13.920ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:34.023] Imported new chain segment number=4572 hash=45007b..041ea2 blocks=1 txs=0 mgas=0.000 elapsed=9.065ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:37.714] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:42:39.030] Imported new chain segment number=4573 hash=36a5b5..bfca82 blocks=1 txs=0 mgas=0.000 elapsed=13.937ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:44.027] Imported new chain segment number=4574 hash=a550cf..479d45 blocks=1 txs=0 mgas=0.000 elapsed=13.246ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:47.738] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:42:49.027] Imported new chain segment number=4575 hash=f9ce74..b846ea blocks=1 txs=0 mgas=0.000 elapsed=12.334ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:54.016] Imported new chain segment number=4576 hash=e0f239..7ff7e0 blocks=1 txs=0 mgas=0.000 elapsed=7.092ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:57.764] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:42:59.015] Imported new chain segment number=4577 hash=385454..954c76 blocks=1 txs=0 mgas=0.000 elapsed=6.347ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:04.028] Imported new chain segment number=4578 hash=e6e53f..23454b blocks=1 txs=0 mgas=0.000 elapsed=15.445ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:07.791] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:43:09.019] Imported new chain segment number=4579 hash=54f033..e1b6f8 blocks=1 txs=0 mgas=0.000 elapsed=7.928ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:14.025] Imported new chain segment number=4580 hash=e72086..d66b93 blocks=1 txs=0 mgas=0.000 elapsed=11.617ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:17.815] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:43:19.027] Imported new chain segment number=4581 hash=53cb5c..9fe1be blocks=1 txs=0 mgas=0.000 elapsed=12.502ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:24.028] Imported new chain segment number=4582 hash=bb9ea9..b3b7ef blocks=1 txs=0 mgas=0.000 elapsed=13.571ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:27.841] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:43:29.016] Imported new chain segment number=4583 hash=288f41..2ef242 blocks=1 txs=0 mgas=0.000 elapsed=6.769ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:34.023] Imported new chain segment number=4584 hash=35b51c..748d8f blocks=1 txs=0 mgas=0.000 elapsed=11.601ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:37.864] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:43:39.025] Imported new chain segment number=4585 hash=145e0d..bf37eb blocks=1 txs=0 mgas=0.000 elapsed=9.175ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:44.027] Imported new chain segment number=4586 hash=8cb89e..54d2ef blocks=1 txs=0 mgas=0.000 elapsed=14.073ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:47.891] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:43:49.023] Imported new chain segment number=4587 hash=f2766d..77c572 blocks=1 txs=0 mgas=0.000 elapsed=10.467ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:54.020] Imported new chain segment number=4588 hash=ea631b..d6fa36 blocks=1 txs=0 mgas=0.000 elapsed=8.510ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:57.916] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:43:59.024] Imported new chain segment number=4589 hash=3e062e..a7ae11 blocks=1 txs=0 mgas=0.000 elapsed=11.765ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:04.027] Imported new chain segment number=4590 hash=44fab5..644bc1 blocks=1 txs=0 mgas=0.000 elapsed=11.265ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:07.941] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:44:09.022] Imported new chain segment number=4591 hash=9e500e..5ed7b1 blocks=1 txs=0 mgas=0.000 elapsed=11.666ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:14.019] Imported new chain segment number=4592 hash=ca817a..0aed57 blocks=1 txs=0 mgas=0.000 elapsed=7.881ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:17.966] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:44:19.025] Imported new chain segment number=4593 hash=f9511e..f3820c blocks=1 txs=0 mgas=0.000 elapsed=12.764ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:24.036] Imported new chain segment number=4594 hash=f9970d..714b20 blocks=1 txs=0 mgas=0.000 elapsed=26.097ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:27.990] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:44:29.027] Imported new chain segment number=4595 hash=ab6d2b..2bb2fb blocks=1 txs=0 mgas=0.000 elapsed=11.977ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:34.030] Imported new chain segment number=4596 hash=b88874..39d2d6 blocks=1 txs=0 mgas=0.000 elapsed=12.698ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:38.012] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:44:39.030] Imported new chain segment number=4597 hash=6eeab0..6cf1f9 blocks=1 txs=0 mgas=0.000 elapsed=16.120ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:44.025] Imported new chain segment number=4598 hash=01f8ae..85fb4f blocks=1 txs=0 mgas=0.000 elapsed=11.139ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:48.036] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:44:49.028] Imported new chain segment number=4599 hash=e47c10..47cc1c blocks=1 txs=0 mgas=0.000 elapsed=12.682ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:54.025] Imported new chain segment number=4600 hash=c185de..b1e970 blocks=1 txs=0 mgas=0.000 elapsed=11.433ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:58.061] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:44:59.027] Imported new chain segment number=4601 hash=860cba..c3406e blocks=1 txs=0 mgas=0.000 elapsed=12.052ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:04.025] Imported new chain segment number=4602 hash=cdf219..f4214d blocks=1 txs=0 mgas=0.000 elapsed=10.777ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:08.086] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:45:09.027] Imported new chain segment number=4603 hash=cdc736..387a47 blocks=1 txs=0 mgas=0.000 elapsed=12.307ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:14.026] Imported new chain segment number=4604 hash=dee28f..f494c2 blocks=1 txs=0 mgas=0.000 elapsed=13.134ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:18.110] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:45:19.029] Imported new chain segment number=4605 hash=ac617a..fd9f1d blocks=1 txs=0 mgas=0.000 elapsed=14.637ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:24.022] Imported new chain segment number=4606 hash=6d805f..1db13b blocks=1 txs=0 mgas=0.000 elapsed=9.579ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:28.132] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:45:29.016] Imported new chain segment number=4607 hash=f1e495..bef468 blocks=1 txs=0 mgas=0.000 elapsed=7.742ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:34.014] Imported new chain segment number=4608 hash=f0b785..0a4fa5 blocks=1 txs=0 mgas=0.000 elapsed=6.253ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:38.154] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:45:39.031] Imported new chain segment number=4609 hash=4e622a..6fae7e blocks=1 txs=0 mgas=0.000 elapsed=13.884ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:44.026] Imported new chain segment number=4610 hash=4f3521..a37077 blocks=1 txs=0 mgas=0.000 elapsed=12.041ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:48.178] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:45:49.016] Imported new chain segment number=4611 hash=3103d0..61cf28 blocks=1 txs=0 mgas=0.000 elapsed=7.172ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:54.023] Imported new chain segment number=4612 hash=6faf56..519583 blocks=1 txs=0 mgas=0.000 elapsed=11.258ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:58.204] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:45:59.026] Imported new chain segment number=4613 hash=049dc0..db7bd7 blocks=1 txs=0 mgas=0.000 elapsed=12.361ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:04.022] Imported new chain segment number=4614 hash=d21461..388fe5 blocks=1 txs=0 mgas=0.000 elapsed=9.368ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:08.229] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:46:09.023] Imported new chain segment number=4615 hash=3fa530..145fb5 blocks=1 txs=0 mgas=0.000 elapsed=12.473ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:14.027] Imported new chain segment number=4616 hash=0eba33..1571c3 blocks=1 txs=0 mgas=0.000 elapsed=11.857ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:18.254] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:46:19.015] Imported new chain segment number=4617 hash=1013d6..51b12a blocks=1 txs=0 mgas=0.000 elapsed=6.886ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:24.145] Imported new chain segment number=4618 hash=c33a38..3f165b blocks=1 txs=0 mgas=0.000 elapsed=35.645ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:28.276] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:46:29.019] Imported new chain segment number=4619 hash=f33a66..e56cfb blocks=1 txs=0 mgas=0.000 elapsed=11.074ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:34.014] Imported new chain segment number=4620 hash=0f1d3b..e6398b blocks=1 txs=0 mgas=0.000 elapsed=5.633ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:38.304] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:46:39.015] Imported new chain segment number=4621 hash=fa4e66..1e3912 blocks=1 txs=0 mgas=0.000 elapsed=6.560ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:44.017] Imported new chain segment number=4622 hash=b46b57..b6d85e blocks=1 txs=0 mgas=0.000 elapsed=6.771ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:48.325] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:46:49.020] Imported new chain segment number=4623 hash=1c90b9..50e696 blocks=1 txs=0 mgas=0.000 elapsed=6.897ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:54.012] Imported new chain segment number=4624 hash=5f2ff5..67ad8b blocks=1 txs=0 mgas=0.000 elapsed=4.815ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:58.344] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:46:59.016] Imported new chain segment number=4625 hash=7bd6b3..0ec813 blocks=1 txs=0 mgas=0.000 elapsed=5.514ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:04.014] Imported new chain segment number=4626 hash=d53482..d56cdb blocks=1 txs=0 mgas=0.000 elapsed=4.760ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:08.364] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:47:09.013] Imported new chain segment number=4627 hash=3b8c63..6b3809 blocks=1 txs=0 mgas=0.000 elapsed=4.921ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:14.016] Imported new chain segment number=4628 hash=e6a742..1f72f5 blocks=1 txs=0 mgas=0.000 elapsed=6.207ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:18.388] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:47:19.010] Imported new chain segment number=4629 hash=b7497d..96ecfa blocks=1 txs=0 mgas=0.000 elapsed=5.100ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:24.015] Imported new chain segment number=4630 hash=188f7d..715d95 blocks=1 txs=0 mgas=0.000 elapsed=6.012ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:28.409] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:47:29.014] Imported new chain segment number=4631 hash=dfd12f..5a3a8b blocks=1 txs=0 mgas=0.000 elapsed=5.345ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:34.029] Imported new chain segment number=4632 hash=a264fe..0f9c8a blocks=1 txs=0 mgas=0.000 elapsed=6.356ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:38.427] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:47:39.024] Imported new chain segment number=4633 hash=008c9b..6698e8 blocks=1 txs=0 mgas=0.000 elapsed=11.134ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:45.342] Imported new chain segment number=4634 hash=97d41d..bc081e blocks=1 txs=0 mgas=0.000 elapsed=471.534ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:48.447] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:47:49.184] Imported new chain segment number=4635 hash=16e8be..8794a2 blocks=1 txs=0 mgas=0.000 elapsed=8.684ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:54.031] Imported new chain segment number=4636 hash=1682f1..8c8de5 blocks=1 txs=0 mgas=0.000 elapsed=17.111ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:58.467] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:47:59.057] Imported new chain segment number=4637 hash=5c1c21..8fdcd6 blocks=1 txs=0 mgas=0.000 elapsed=35.773ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:04.058] Imported new chain segment number=4638 hash=9d17f8..b85282 blocks=1 txs=0 mgas=0.000 elapsed=30.414ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:08.486] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:48:09.042] Imported new chain segment number=4639 hash=0c0eeb..2c64e4 blocks=1 txs=0 mgas=0.000 elapsed=14.595ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:14.029] Imported new chain segment number=4640 hash=52286e..0e9d88 blocks=1 txs=0 mgas=0.000 elapsed=14.457ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:18.506] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:48:19.042] Imported new chain segment number=4641 hash=269fd7..a596f0 blocks=1 txs=0 mgas=0.000 elapsed=20.883ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:24.041] Imported new chain segment number=4642 hash=efc476..d7ceef blocks=1 txs=0 mgas=0.000 elapsed=13.287ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:28.535] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:48:29.045] Imported new chain segment number=4643 hash=4ca300..8fc5b3 blocks=1 txs=0 mgas=0.000 elapsed=17.775ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:34.050] Imported new chain segment number=4644 hash=798e96..776d2c blocks=1 txs=0 mgas=0.000 elapsed=28.593ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:38.569] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:48:39.037] Imported new chain segment number=4645 hash=224094..59cd54 blocks=1 txs=0 mgas=0.000 elapsed=12.014ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:44.058] Imported new chain segment number=4646 hash=6a91eb..691eba blocks=1 txs=0 mgas=0.000 elapsed=21.768ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:48.598] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:48:50.042] Imported new chain segment number=4647 hash=33cfdc..3d8883 blocks=1 txs=0 mgas=0.000 elapsed=32.908ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:54.044] Imported new chain segment number=4648 hash=2bc62e..cc5f4a blocks=1 txs=0 mgas=0.000 elapsed=22.703ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:58.990] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:48:59.047] Imported new chain segment number=4649 hash=197778..632f59 blocks=1 txs=0 mgas=0.000 elapsed=20.557ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:04.014] Imported new chain segment number=4650 hash=90aa42..eeee50 blocks=1 txs=0 mgas=0.000 elapsed=4.471ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:09.012] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:49:09.020] Imported new chain segment number=4651 hash=0061c1..d2538c blocks=1 txs=0 mgas=0.000 elapsed=7.116ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:14.014] Imported new chain segment number=4652 hash=b19c1b..966245 blocks=1 txs=0 mgas=0.000 elapsed=5.235ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:19.015] Imported new chain segment number=4653 hash=7caecc..daf49d blocks=1 txs=0 mgas=0.000 elapsed=4.427ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:19.034] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:49:24.012] Imported new chain segment number=4654 hash=5f7da9..ab6b5e blocks=1 txs=0 mgas=0.000 elapsed=4.536ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:29.017] Imported new chain segment number=4655 hash=eaff4d..441134 blocks=1 txs=0 mgas=0.000 elapsed=7.006ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:29.055] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:49:34.014] Imported new chain segment number=4656 hash=b1518a..42a34b blocks=1 txs=0 mgas=0.000 elapsed=6.052ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:39.019] Imported new chain segment number=4657 hash=9fac40..e3a214 blocks=1 txs=0 mgas=0.000 elapsed=6.834ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:39.075] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:49:44.017] Imported new chain segment number=4658 hash=78b797..8fdac9 blocks=1 txs=0 mgas=0.000 elapsed=5.498ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:49.018] Imported new chain segment number=4659 hash=52d0c2..bb6c47 blocks=1 txs=0 mgas=0.000 elapsed=6.972ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:49.096] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:49:54.019] Imported new chain segment number=4660 hash=111e63..c701c9 blocks=1 txs=0 mgas=0.000 elapsed=6.569ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:59.021] Imported new chain segment number=4661 hash=eb728d..b47c96 blocks=1 txs=0 mgas=0.000 elapsed=7.564ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:59.118] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:50:04.010] Imported new chain segment number=4662 hash=8f46d9..ca2e2b blocks=1 txs=0 mgas=0.000 elapsed=4.050ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:09.019] Imported new chain segment number=4663 hash=da4654..633322 blocks=1 txs=0 mgas=0.000 elapsed=8.343ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:09.138] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:50:14.017] Imported new chain segment number=4664 hash=d8ecaf..d231e7 blocks=1 txs=0 mgas=0.000 elapsed=7.187ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:19.016] Imported new chain segment number=4665 hash=19848a..3edf88 blocks=1 txs=0 mgas=0.000 elapsed=5.128ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:19.156] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:50:24.019] Imported new chain segment number=4666 hash=853c7e..285660 blocks=1 txs=0 mgas=0.000 elapsed=7.402ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:29.017] Imported new chain segment number=4667 hash=3f3f5b..1156ba blocks=1 txs=0 mgas=0.000 elapsed=6.155ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:29.176] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:50:34.015] Imported new chain segment number=4668 hash=81bbb7..8e42a3 blocks=1 txs=0 mgas=0.000 elapsed=5.881ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:39.016] Imported new chain segment number=4669 hash=f5e34f..c6ab9f blocks=1 txs=0 mgas=0.000 elapsed=5.694ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:39.195] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:50:44.017] Imported new chain segment number=4670 hash=b81330..e69770 blocks=1 txs=0 mgas=0.000 elapsed=6.031ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:49.020] Imported new chain segment number=4671 hash=9a0bd6..b0f94e blocks=1 txs=0 mgas=0.000 elapsed=8.176ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:49.215] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:50:54.018] Imported new chain segment number=4672 hash=605db4..c23278 blocks=1 txs=0 mgas=0.000 elapsed=7.110ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:59.014] Imported new chain segment number=4673 hash=d4f94d..4096ac blocks=1 txs=0 mgas=0.000 elapsed=5.337ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:59.237] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:51:04.019] Imported new chain segment number=4674 hash=57f9b7..b57386 blocks=1 txs=0 mgas=0.000 elapsed=7.465ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:09.012] Imported new chain segment number=4675 hash=8f8778..0c4c67 blocks=1 txs=0 mgas=0.000 elapsed=5.822ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:09.257] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:51:14.013] Imported new chain segment number=4676 hash=544d58..229207 blocks=1 txs=0 mgas=0.000 elapsed=6.044ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:19.019] Imported new chain segment number=4677 hash=b02b63..cf9d13 blocks=1 txs=0 mgas=0.000 elapsed=8.684ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:19.275] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:51:24.013] Imported new chain segment number=4678 hash=009543..0d88f5 blocks=1 txs=0 mgas=0.000 elapsed=6.699ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:29.014] Imported new chain segment number=4679 hash=ab5992..1e5c6a blocks=1 txs=0 mgas=0.000 elapsed=5.682ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:29.292] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:51:34.025] Imported new chain segment number=4680 hash=cfc355..c46593 blocks=1 txs=0 mgas=0.000 elapsed=11.982ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:39.016] Imported new chain segment number=4681 hash=667b93..30297b blocks=1 txs=0 mgas=0.000 elapsed=6.808ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:39.316] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:51:44.014] Imported new chain segment number=4682 hash=e6d9b0..3b7183 blocks=1 txs=0 mgas=0.000 elapsed=5.554ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:49.016] Imported new chain segment number=4683 hash=7d9f9e..d1ee34 blocks=1 txs=0 mgas=0.000 elapsed=7.604ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:49.335] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:51:54.015] Imported new chain segment number=4684 hash=d81a31..85d23f blocks=1 txs=0 mgas=0.000 elapsed=5.870ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:59.012] Imported new chain segment number=4685 hash=6533ec..ccc4f2 blocks=1 txs=0 mgas=0.000 elapsed=5.172ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:59.353] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:52:04.014] Imported new chain segment number=4686 hash=de3096..828908 blocks=1 txs=0 mgas=0.000 elapsed=6.353ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:09.011] Imported new chain segment number=4687 hash=f3f6a5..9cce58 blocks=1 txs=0 mgas=0.000 elapsed=5.983ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:09.372] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:52:14.017] Imported new chain segment number=4688 hash=22c404..8a746b blocks=1 txs=0 mgas=0.000 elapsed=6.497ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:19.017] Imported new chain segment number=4689 hash=8fd7bb..4018c1 blocks=1 txs=0 mgas=0.000 elapsed=6.259ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:19.395] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:52:24.014] Imported new chain segment number=4690 hash=50beb2..60e371 blocks=1 txs=0 mgas=0.000 elapsed=5.533ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:29.015] Imported new chain segment number=4691 hash=c58f4e..f1635f blocks=1 txs=0 mgas=0.000 elapsed=6.785ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:29.416] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:52:34.013] Imported new chain segment number=4692 hash=c24847..931a7d blocks=1 txs=0 mgas=0.000 elapsed=5.582ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:39.018] Imported new chain segment number=4693 hash=7cc84b..c21288 blocks=1 txs=0 mgas=0.000 elapsed=7.350ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:39.435] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:52:44.018] Imported new chain segment number=4694 hash=6f21f4..530d16 blocks=1 txs=0 mgas=0.000 elapsed=6.692ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:49.014] Imported new chain segment number=4695 hash=93c9cf..c75ba0 blocks=1 txs=0 mgas=0.000 elapsed=4.894ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:49.456] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:52:54.016] Imported new chain segment number=4696 hash=713552..cd4468 blocks=1 txs=0 mgas=0.000 elapsed=6.296ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:59.016] Imported new chain segment number=4697 hash=ff06ec..7d5e3f blocks=1 txs=0 mgas=0.000 elapsed=5.640ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:59.475] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:53:04.012] Imported new chain segment number=4698 hash=b9e505..b42cfa blocks=1 txs=0 mgas=0.000 elapsed=5.966ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:09.015] Imported new chain segment number=4699 hash=e9dae0..606cd7 blocks=1 txs=0 mgas=0.000 elapsed=5.275ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:09.498] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:53:14.015] Imported new chain segment number=4700 hash=f0d362..c40176 blocks=1 txs=0 mgas=0.000 elapsed=5.443ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:19.017] Imported new chain segment number=4701 hash=94d04e..89c7b2 blocks=1 txs=0 mgas=0.000 elapsed=5.217ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:19.518] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:53:24.020] Imported new chain segment number=4702 hash=b5ddbd..db5659 blocks=1 txs=0 mgas=0.000 elapsed=7.654ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:29.014] Imported new chain segment number=4703 hash=f0eac1..414fdf blocks=1 txs=0 mgas=0.000 elapsed=5.473ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:29.537] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:53:34.013] Imported new chain segment number=4704 hash=4902f6..cf1b54 blocks=1 txs=0 mgas=0.000 elapsed=4.278ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:39.018] Imported new chain segment number=4705 hash=e97abd..5d9c8b blocks=1 txs=0 mgas=0.000 elapsed=4.778ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:39.556] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:53:44.017] Imported new chain segment number=4706 hash=d69514..9657b6 blocks=1 txs=0 mgas=0.000 elapsed=7.753ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:49.011] Imported new chain segment number=4707 hash=834c7a..5cb3ac blocks=1 txs=0 mgas=0.000 elapsed=5.427ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:49.578] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:53:54.020] Imported new chain segment number=4708 hash=51652f..be3915 blocks=1 txs=0 mgas=0.000 elapsed=8.123ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:59.012] Imported new chain segment number=4709 hash=27c646..3b1053 blocks=1 txs=0 mgas=0.000 elapsed=4.966ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:59.604] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:54:04.010] Imported new chain segment number=4710 hash=3415e7..f9579d blocks=1 txs=0 mgas=0.000 elapsed=5.245ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:09.019] Imported new chain segment number=4711 hash=a013b5..8a7a2d blocks=1 txs=0 mgas=0.000 elapsed=7.936ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:09.624] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:54:14.016] Imported new chain segment number=4712 hash=993f42..3ce69f blocks=1 txs=0 mgas=0.000 elapsed=5.258ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:19.016] Imported new chain segment number=4713 hash=8a3d22..204675 blocks=1 txs=0 mgas=0.000 elapsed=5.680ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:19.642] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:54:24.016] Imported new chain segment number=4714 hash=afc771..abc4d2 blocks=1 txs=0 mgas=0.000 elapsed=4.994ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:29.017] Imported new chain segment number=4715 hash=d1216e..7232ec blocks=1 txs=0 mgas=0.000 elapsed=5.609ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:29.663] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:54:34.011] Imported new chain segment number=4716 hash=05ffc3..235a5a blocks=1 txs=0 mgas=0.000 elapsed=4.673ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:39.014] Imported new chain segment number=4717 hash=37769d..1164c4 blocks=1 txs=0 mgas=0.000 elapsed=4.917ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:39.685] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:54:44.011] Imported new chain segment number=4718 hash=9d87fc..983a21 blocks=1 txs=0 mgas=0.000 elapsed=4.979ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:49.014] Imported new chain segment number=4719 hash=d667c3..e6f546 blocks=1 txs=0 mgas=0.000 elapsed=5.204ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:49.707] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:54:54.011] Imported new chain segment number=4720 hash=43b058..9a2ea8 blocks=1 txs=0 mgas=0.000 elapsed=4.238ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:59.019] Imported new chain segment number=4721 hash=b62c81..0397b0 blocks=1 txs=0 mgas=0.000 elapsed=7.526ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:59.726] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:55:04.017] Imported new chain segment number=4722 hash=ec6311..563555 blocks=1 txs=0 mgas=0.000 elapsed=6.101ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:09.012] Imported new chain segment number=4723 hash=58a13a..bc293e blocks=1 txs=0 mgas=0.000 elapsed=5.666ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:09.745] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:55:14.018] Imported new chain segment number=4724 hash=5aa378..e0fce8 blocks=1 txs=0 mgas=0.000 elapsed=6.435ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:19.019] Imported new chain segment number=4725 hash=0830bd..6f54db blocks=1 txs=0 mgas=0.000 elapsed=7.791ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:19.765] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:55:24.018] Imported new chain segment number=4726 hash=8fce8b..af8803 blocks=1 txs=0 mgas=0.000 elapsed=5.868ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:29.019] Imported new chain segment number=4727 hash=692e54..1f7c7a blocks=1 txs=0 mgas=0.000 elapsed=7.254ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:29.786] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:55:34.016] Imported new chain segment number=4728 hash=c4684b..07295e blocks=1 txs=0 mgas=0.000 elapsed=5.593ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:39.014] Imported new chain segment number=4729 hash=b028b1..b2cd90 blocks=1 txs=0 mgas=0.000 elapsed=5.723ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:39.807] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:55:44.012] Imported new chain segment number=4730 hash=c9274d..038521 blocks=1 txs=0 mgas=0.000 elapsed=4.934ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:49.012] Imported new chain segment number=4731 hash=ec9e67..6ebe69 blocks=1 txs=0 mgas=0.000 elapsed=5.521ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:49.829] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:55:54.019] Imported new chain segment number=4732 hash=8f9c06..5db1a4 blocks=1 txs=0 mgas=0.000 elapsed=7.423ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:59.015] Imported new chain segment number=4733 hash=50cbb8..02f78f blocks=1 txs=0 mgas=0.000 elapsed=6.459ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:59.851] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:56:04.017] Imported new chain segment number=4734 hash=3d32de..58b6ff blocks=1 txs=0 mgas=0.000 elapsed=6.638ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:09.017] Imported new chain segment number=4735 hash=c9a7f2..65bf8f blocks=1 txs=0 mgas=0.000 elapsed=5.415ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:09.871] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:56:14.019] Imported new chain segment number=4736 hash=44282e..d40176 blocks=1 txs=0 mgas=0.000 elapsed=7.110ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:19.019] Imported new chain segment number=4737 hash=7df938..a2b563 blocks=1 txs=0 mgas=0.000 elapsed=9.197ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:19.889] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:56:24.015] Imported new chain segment number=4738 hash=a62d9f..7b47e8 blocks=1 txs=0 mgas=0.000 elapsed=5.475ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:29.016] Imported new chain segment number=4739 hash=fb6b54..6464e1 blocks=1 txs=0 mgas=0.000 elapsed=5.306ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:29.909] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:56:34.011] Imported new chain segment number=4740 hash=4c9857..b24921 blocks=1 txs=0 mgas=0.000 elapsed=4.165ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:39.018] Imported new chain segment number=4741 hash=3cf157..7065af blocks=1 txs=0 mgas=0.000 elapsed=7.675ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:39.929] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:56:44.019] Imported new chain segment number=4742 hash=dbf8b9..2724c2 blocks=1 txs=0 mgas=0.000 elapsed=7.236ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:49.017] Imported new chain segment number=4743 hash=a723d5..d6180e blocks=1 txs=0 mgas=0.000 elapsed=6.192ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:49.951] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:56:54.018] Imported new chain segment number=4744 hash=d7b822..d8a1c4 blocks=1 txs=0 mgas=0.000 elapsed=6.234ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:59.019] Imported new chain segment number=4745 hash=7dd692..8c22d4 blocks=1 txs=0 mgas=0.000 elapsed=8.298ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:59.969] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:57:04.021] Imported new chain segment number=4746 hash=0fcd76..8c6f49 blocks=1 txs=0 mgas=0.000 elapsed=7.685ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:57:09.016] Imported new chain segment number=4747 hash=82da13..c18caf blocks=1 txs=0 mgas=0.000 elapsed=6.816ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:57:09.989] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:57:14.014] Imported new chain segment number=4748 hash=521287..d5be5e blocks=1 txs=0 mgas=0.000 elapsed=5.723ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:57:19.017] Imported new chain segment number=4749 hash=f140c8..c06119 blocks=1 txs=0 mgas=0.000 elapsed=6.398ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:57:20.011] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:57:24.014] Imported new chain segment number=4750 hash=d3f422..466df2 blocks=1 txs=0 mgas=0.000 elapsed=4.919ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:57:29.017] Imported new chain segment number=4751 hash=161eae..60d47a blocks=1 txs=0 mgas=0.000 elapsed=4.947ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:57:30.034] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:57:34.018] Imported new chain segment number=4752 hash=f6b555..6b4289 blocks=1 txs=0 mgas=0.000 elapsed=6.834ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:57:39.010] Imported new chain segment number=4753 hash=3f7972..82566c blocks=1 txs=0 mgas=0.000 elapsed=5.146ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:57:40.054] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:57:44.018] Imported new chain segment number=4754 hash=4f10f7..5c8b33 blocks=1 txs=0 mgas=0.000 elapsed=6.551ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:57:49.019] Imported new chain segment number=4755 hash=22162e..49ceb5 blocks=1 txs=0 mgas=0.000 elapsed=6.373ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:57:50.075] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:57:54.017] Imported new chain segment number=4756 hash=b365bc..921e31 blocks=1 txs=0 mgas=0.000 elapsed=6.165ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:57:59.018] Imported new chain segment number=4757 hash=c1851b..dec411 blocks=1 txs=0 mgas=0.000 elapsed=6.743ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:58:00.095] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:58:04.016] Imported new chain segment number=4758 hash=bbb053..84e8f6 blocks=1 txs=0 mgas=0.000 elapsed=5.966ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:58:09.016] Imported new chain segment number=4759 hash=bb2ca5..cc2d55 blocks=1 txs=0 mgas=0.000 elapsed=5.248ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:58:10.115] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:58:14.017] Imported new chain segment number=4760 hash=d9b23c..954771 blocks=1 txs=0 mgas=0.000 elapsed=7.103ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:58:19.015] Imported new chain segment number=4761 hash=88fdcc..bf6ed0 blocks=1 txs=0 mgas=0.000 elapsed=5.954ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:58:20.134] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:58:24.018] Imported new chain segment number=4762 hash=2b9412..6d9268 blocks=1 txs=0 mgas=0.000 elapsed=7.160ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:58:29.016] Imported new chain segment number=4763 hash=30a61a..bbc8ec blocks=1 txs=0 mgas=0.000 elapsed=6.137ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:58:30.153] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:58:34.017] Imported new chain segment number=4764 hash=4c73b4..ee79d3 blocks=1 txs=0 mgas=0.000 elapsed=6.900ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:58:39.018] Imported new chain segment number=4765 hash=61b62f..48c0c6 blocks=1 txs=0 mgas=0.000 elapsed=6.837ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:58:40.173] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:58:44.010] Imported new chain segment number=4766 hash=42c574..7e1c77 blocks=1 txs=0 mgas=0.000 elapsed=4.579ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:58:49.018] Imported new chain segment number=4767 hash=49a17d..db9c4a blocks=1 txs=0 mgas=0.000 elapsed=7.775ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:58:50.190] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:58:54.020] Imported new chain segment number=4768 hash=603b1e..5645cd blocks=1 txs=0 mgas=0.000 elapsed=9.235ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:58:59.014] Imported new chain segment number=4769 hash=188d53..f074f3 blocks=1 txs=0 mgas=0.000 elapsed=7.354ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:00.209] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:59:04.009] Imported new chain segment number=4770 hash=b33fbf..577a51 blocks=1 txs=0 mgas=0.000 elapsed=4.347ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:09.017] Imported new chain segment number=4771 hash=7153cf..869ae2 blocks=1 txs=0 mgas=0.000 elapsed=4.914ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:10.229] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:59:14.018] Imported new chain segment number=4772 hash=57b11c..6810ac blocks=1 txs=0 mgas=0.000 elapsed=6.683ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:19.017] Imported new chain segment number=4773 hash=f819e6..268908 blocks=1 txs=0 mgas=0.000 elapsed=5.660ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:20.247] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:59:24.018] Imported new chain segment number=4774 hash=608e33..fa60ff blocks=1 txs=0 mgas=0.000 elapsed=5.575ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:29.020] Imported new chain segment number=4775 hash=286fc7..a6e59f blocks=1 txs=0 mgas=0.000 elapsed=7.788ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:30.266] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:59:34.010] Imported new chain segment number=4776 hash=f695a5..498071 blocks=1 txs=0 mgas=0.000 elapsed=3.799ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:39.016] Imported new chain segment number=4777 hash=9abd85..e282dc blocks=1 txs=0 mgas=0.000 elapsed=6.003ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:40.286] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:59:44.011] Imported new chain segment number=4778 hash=17bbbb..61088f blocks=1 txs=0 mgas=0.000 elapsed=4.145ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:49.011] Imported new chain segment number=4779 hash=04cba7..dc4609 blocks=1 txs=0 mgas=0.000 elapsed=5.042ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:50.303] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:59:54.019] Imported new chain segment number=4780 hash=2f4513..a2f4fd blocks=1 txs=0 mgas=0.000 elapsed=5.026ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:59.016] Imported new chain segment number=4781 hash=cc1cef..47b272 blocks=1 txs=0 mgas=0.000 elapsed=5.633ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:00.320] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:00:04.016] Imported new chain segment number=4782 hash=17d620..2a88b3 blocks=1 txs=0 mgas=0.000 elapsed=5.304ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:09.017] Imported new chain segment number=4783 hash=7576c2..16b238 blocks=1 txs=0 mgas=0.000 elapsed=5.628ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:10.341] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:00:14.020] Imported new chain segment number=4784 hash=744fb5..7455e1 blocks=1 txs=0 mgas=0.000 elapsed=7.549ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:19.018] Imported new chain segment number=4785 hash=a9c358..145b5b blocks=1 txs=0 mgas=0.000 elapsed=6.605ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:20.359] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:00:24.017] Imported new chain segment number=4786 hash=42d4d3..517f01 blocks=1 txs=0 mgas=0.000 elapsed=6.072ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:29.019] Imported new chain segment number=4787 hash=60e0a9..e2dec4 blocks=1 txs=0 mgas=0.000 elapsed=7.887ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:30.378] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:00:34.017] Imported new chain segment number=4788 hash=a5f795..a7cdd6 blocks=1 txs=0 mgas=0.000 elapsed=5.839ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:39.015] Imported new chain segment number=4789 hash=839c19..31920b blocks=1 txs=0 mgas=0.000 elapsed=6.902ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:40.400] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:00:44.022] Imported new chain segment number=4790 hash=7c14c4..fdc155 blocks=1 txs=0 mgas=0.000 elapsed=8.842ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:49.013] Imported new chain segment number=4791 hash=450853..ae2cd3 blocks=1 txs=0 mgas=0.000 elapsed=5.138ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:50.421] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:00:54.009] Imported new chain segment number=4792 hash=0844d0..92bffd blocks=1 txs=0 mgas=0.000 elapsed=4.703ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:59.017] Imported new chain segment number=4793 hash=5d32d2..27e240 blocks=1 txs=0 mgas=0.000 elapsed=6.049ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:00.440] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:01:04.017] Imported new chain segment number=4794 hash=dc0055..e6530a blocks=1 txs=0 mgas=0.000 elapsed=5.935ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:09.018] Imported new chain segment number=4795 hash=789b4e..98095f blocks=1 txs=0 mgas=0.000 elapsed=6.737ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:10.460] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:01:14.019] Imported new chain segment number=4796 hash=73947b..570e63 blocks=1 txs=0 mgas=0.000 elapsed=6.982ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:19.015] Imported new chain segment number=4797 hash=2d6a84..4a8412 blocks=1 txs=0 mgas=0.000 elapsed=5.954ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:20.481] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:01:24.016] Imported new chain segment number=4798 hash=cd0a31..71da9b blocks=1 txs=0 mgas=0.000 elapsed=6.034ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:29.016] Imported new chain segment number=4799 hash=eb3412..b69388 blocks=1 txs=0 mgas=0.000 elapsed=5.240ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:30.502] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:01:34.012] Imported new chain segment number=4800 hash=63dc93..4ac6fd blocks=1 txs=0 mgas=0.000 elapsed=5.391ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:39.017] Imported new chain segment number=4801 hash=72e04e..7c2b6f blocks=1 txs=0 mgas=0.000 elapsed=6.463ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:40.521] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:01:44.018] Imported new chain segment number=4802 hash=d5c8d6..d4c1e5 blocks=1 txs=0 mgas=0.000 elapsed=5.850ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:49.010] Imported new chain segment number=4803 hash=703304..84493e blocks=1 txs=0 mgas=0.000 elapsed=5.257ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:50.542] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:01:54.010] Imported new chain segment number=4804 hash=d461bb..163881 blocks=1 txs=0 mgas=0.000 elapsed=4.464ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:59.012] Imported new chain segment number=4805 hash=e70c22..73652f blocks=1 txs=0 mgas=0.000 elapsed=3.438ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:00.564] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:02:04.010] Imported new chain segment number=4806 hash=30b276..a3060a blocks=1 txs=0 mgas=0.000 elapsed=4.430ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:09.016] Imported new chain segment number=4807 hash=c1402f..1254d6 blocks=1 txs=0 mgas=0.000 elapsed=6.033ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:10.586] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:02:14.013] Imported new chain segment number=4808 hash=b23bc5..922710 blocks=1 txs=0 mgas=0.000 elapsed=4.778ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:19.019] Imported new chain segment number=4809 hash=3e96fa..e7a111 blocks=1 txs=0 mgas=0.000 elapsed=7.115ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:20.608] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:02:24.016] Imported new chain segment number=4810 hash=d19442..bcc7d8 blocks=1 txs=0 mgas=0.000 elapsed=6.941ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:29.014] Imported new chain segment number=4811 hash=e7c5c6..b5b720 blocks=1 txs=0 mgas=0.000 elapsed=5.681ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:30.634] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:02:34.019] Imported new chain segment number=4812 hash=18b593..337adc blocks=1 txs=0 mgas=0.000 elapsed=6.123ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:39.019] Imported new chain segment number=4813 hash=8a4276..84e90c blocks=1 txs=0 mgas=0.000 elapsed=6.845ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:40.655] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:02:44.011] Imported new chain segment number=4814 hash=484a35..e29e58 blocks=1 txs=0 mgas=0.000 elapsed=5.224ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:49.018] Imported new chain segment number=4815 hash=70b6bf..17449e blocks=1 txs=0 mgas=0.000 elapsed=5.755ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:50.674] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:02:54.018] Imported new chain segment number=4816 hash=2f69a2..24d3d9 blocks=1 txs=0 mgas=0.000 elapsed=7.688ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:59.019] Imported new chain segment number=4817 hash=e6a03e..b02dad blocks=1 txs=0 mgas=0.000 elapsed=7.022ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:00.696] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:03:04.020] Imported new chain segment number=4818 hash=099657..9f2766 blocks=1 txs=0 mgas=0.000 elapsed=7.985ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:09.020] Imported new chain segment number=4819 hash=950353..f6a799 blocks=1 txs=0 mgas=0.000 elapsed=8.207ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:10.716] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:03:14.020] Imported new chain segment number=4820 hash=987e92..c16e89 blocks=1 txs=0 mgas=0.000 elapsed=7.518ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:19.017] Imported new chain segment number=4821 hash=89f5d2..e664d2 blocks=1 txs=0 mgas=0.000 elapsed=5.929ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:20.737] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:03:24.018] Imported new chain segment number=4822 hash=57b00a..6dac51 blocks=1 txs=0 mgas=0.000 elapsed=7.330ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:29.010] Imported new chain segment number=4823 hash=137c4f..eaffd3 blocks=1 txs=0 mgas=0.000 elapsed=4.029ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:30.757] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:03:34.012] Imported new chain segment number=4824 hash=9b1aef..68388f blocks=1 txs=0 mgas=0.000 elapsed=4.448ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:39.019] Imported new chain segment number=4825 hash=3e96d0..0f2e0e blocks=1 txs=0 mgas=0.000 elapsed=6.709ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:40.777] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:03:44.018] Imported new chain segment number=4826 hash=4af78c..5a86ec blocks=1 txs=0 mgas=0.000 elapsed=7.332ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:49.010] Imported new chain segment number=4827 hash=f44dd4..424ce0 blocks=1 txs=0 mgas=0.000 elapsed=4.353ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:50.797] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:03:54.020] Imported new chain segment number=4828 hash=2b85a2..9a5499 blocks=1 txs=0 mgas=0.000 elapsed=9.318ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:59.019] Imported new chain segment number=4829 hash=36b1ef..7e1371 blocks=1 txs=0 mgas=0.000 elapsed=6.675ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:00.819] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:04:04.012] Imported new chain segment number=4830 hash=0701b1..3781b4 blocks=1 txs=0 mgas=0.000 elapsed=5.432ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:09.016] Imported new chain segment number=4831 hash=e46150..987118 blocks=1 txs=0 mgas=0.000 elapsed=6.680ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:10.843] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:04:14.017] Imported new chain segment number=4832 hash=f43e48..5fa014 blocks=1 txs=0 mgas=0.000 elapsed=5.623ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:19.014] Imported new chain segment number=4833 hash=d8a4fb..09e9f8 blocks=1 txs=0 mgas=0.000 elapsed=4.726ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:20.862] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:04:24.017] Imported new chain segment number=4834 hash=c7c9c6..0254d3 blocks=1 txs=0 mgas=0.000 elapsed=7.102ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:29.010] Imported new chain segment number=4835 hash=54e2a5..d8ceec blocks=1 txs=0 mgas=0.000 elapsed=4.073ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:30.883] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:04:34.010] Imported new chain segment number=4836 hash=67d3d8..60af99 blocks=1 txs=0 mgas=0.000 elapsed=4.494ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:39.020] Imported new chain segment number=4837 hash=34454d..b7fc37 blocks=1 txs=0 mgas=0.000 elapsed=6.843ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:40.906] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:04:44.018] Imported new chain segment number=4838 hash=6d55dc..c3010f blocks=1 txs=0 mgas=0.000 elapsed=6.410ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:49.016] Imported new chain segment number=4839 hash=4922ea..00fc70 blocks=1 txs=0 mgas=0.000 elapsed=5.838ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:50.927] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:04:54.017] Imported new chain segment number=4840 hash=24965e..1585e6 blocks=1 txs=0 mgas=0.000 elapsed=5.561ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:59.019] Imported new chain segment number=4841 hash=952afe..a37197 blocks=1 txs=0 mgas=0.000 elapsed=7.867ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:00.948] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:05:04.011] Imported new chain segment number=4842 hash=d32395..a63b3e blocks=1 txs=0 mgas=0.000 elapsed=5.318ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:09.015] Imported new chain segment number=4843 hash=cd26a2..2e46e7 blocks=1 txs=0 mgas=0.000 elapsed=5.602ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:10.969] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:05:14.017] Imported new chain segment number=4844 hash=e38883..c70786 blocks=1 txs=0 mgas=0.000 elapsed=5.453ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:19.009] Imported new chain segment number=4845 hash=5d290b..7c13d0 blocks=1 txs=0 mgas=0.000 elapsed=4.653ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:20.989] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:05:24.016] Imported new chain segment number=4846 hash=347f2f..ea52b0 blocks=1 txs=0 mgas=0.000 elapsed=6.423ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:29.015] Imported new chain segment number=4847 hash=cb8111..6bbdee blocks=1 txs=0 mgas=0.000 elapsed=6.663ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:31.009] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:05:34.027] Imported new chain segment number=4848 hash=abe619..c6dc21 blocks=1 txs=0 mgas=0.000 elapsed=12.275ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:39.011] Imported new chain segment number=4849 hash=d192b8..9a8d63 blocks=1 txs=0 mgas=0.000 elapsed=5.989ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:41.030] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:05:44.020] Imported new chain segment number=4850 hash=f063c4..f7780f blocks=1 txs=0 mgas=0.000 elapsed=6.214ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:49.013] Imported new chain segment number=4851 hash=ddabb3..d1c386 blocks=1 txs=0 mgas=0.000 elapsed=4.629ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:51.050] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:05:54.018] Imported new chain segment number=4852 hash=a03189..90ea66 blocks=1 txs=0 mgas=0.000 elapsed=6.880ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:59.016] Imported new chain segment number=4853 hash=43eae6..58bb5f blocks=1 txs=0 mgas=0.000 elapsed=7.477ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:01.070] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:06:04.013] Imported new chain segment number=4854 hash=7d6882..6e192a blocks=1 txs=0 mgas=0.000 elapsed=5.152ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:09.019] Imported new chain segment number=4855 hash=db3926..f07558 blocks=1 txs=0 mgas=0.000 elapsed=8.585ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:11.092] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:06:14.019] Imported new chain segment number=4856 hash=d4dce0..06c3fc blocks=1 txs=0 mgas=0.000 elapsed=8.389ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:19.021] Imported new chain segment number=4857 hash=e2b418..ed0c2e blocks=1 txs=0 mgas=0.000 elapsed=8.599ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:21.111] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:06:24.011] Imported new chain segment number=4858 hash=139036..cee9c4 blocks=1 txs=0 mgas=0.000 elapsed=5.806ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:29.015] Imported new chain segment number=4859 hash=1af089..a744de blocks=1 txs=0 mgas=0.000 elapsed=4.317ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:31.130] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:06:34.011] Imported new chain segment number=4860 hash=ce62fd..bbe4ca blocks=1 txs=0 mgas=0.000 elapsed=4.515ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:39.020] Imported new chain segment number=4861 hash=1b27ba..327e3a blocks=1 txs=0 mgas=0.000 elapsed=9.134ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:41.151] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:06:44.012] Imported new chain segment number=4862 hash=21703d..4a2045 blocks=1 txs=0 mgas=0.000 elapsed=4.579ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:49.027] Imported new chain segment number=4863 hash=4af037..373447 blocks=1 txs=0 mgas=0.000 elapsed=12.491ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:51.172] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:06:54.012] Imported new chain segment number=4864 hash=420429..19e2f1 blocks=1 txs=0 mgas=0.000 elapsed=5.546ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:59.025] Imported new chain segment number=4865 hash=e8a43b..58a2d3 blocks=1 txs=0 mgas=0.000 elapsed=11.169ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:01.194] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:07:04.017] Imported new chain segment number=4866 hash=5f10cd..bb9784 blocks=1 txs=0 mgas=0.000 elapsed=6.001ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:09.015] Imported new chain segment number=4867 hash=d5e829..33b44d blocks=1 txs=0 mgas=0.000 elapsed=5.211ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:11.214] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:07:14.018] Imported new chain segment number=4868 hash=a83930..81e71d blocks=1 txs=0 mgas=0.000 elapsed=5.956ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:19.016] Imported new chain segment number=4869 hash=d534d0..e5ed18 blocks=1 txs=0 mgas=0.000 elapsed=6.614ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:21.235] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:07:24.018] Imported new chain segment number=4870 hash=e3d557..bceee1 blocks=1 txs=0 mgas=0.000 elapsed=6.277ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:29.018] Imported new chain segment number=4871 hash=333330..186fd1 blocks=1 txs=0 mgas=0.000 elapsed=5.669ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:31.255] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:07:34.012] Imported new chain segment number=4872 hash=587019..8a2c5f blocks=1 txs=0 mgas=0.000 elapsed=5.180ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:39.028] Imported new chain segment number=4873 hash=d6b077..7e276b blocks=1 txs=0 mgas=0.000 elapsed=11.908ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:41.281] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:07:44.012] Imported new chain segment number=4874 hash=47f65c..e32921 blocks=1 txs=0 mgas=0.000 elapsed=5.018ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:49.030] Imported new chain segment number=4875 hash=3d658d..57465d blocks=1 txs=0 mgas=0.000 elapsed=13.235ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:51.299] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:07:54.015] Imported new chain segment number=4876 hash=4c8465..c7fc77 blocks=1 txs=0 mgas=0.000 elapsed=5.925ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:59.025] Imported new chain segment number=4877 hash=55ba86..922e16 blocks=1 txs=0 mgas=0.000 elapsed=10.651ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:01.320] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:08:04.016] Imported new chain segment number=4878 hash=7968c9..32df34 blocks=1 txs=0 mgas=0.000 elapsed=5.199ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:09.018] Imported new chain segment number=4879 hash=352f24..bbf5b5 blocks=1 txs=0 mgas=0.000 elapsed=6.532ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:11.341] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:08:14.013] Imported new chain segment number=4880 hash=86893b..c2cc1a blocks=1 txs=0 mgas=0.000 elapsed=5.937ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:19.012] Imported new chain segment number=4881 hash=1d1721..72c49b blocks=1 txs=0 mgas=0.000 elapsed=5.721ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:21.364] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:08:24.023] Imported new chain segment number=4882 hash=2f1a16..8bd1e7 blocks=1 txs=0 mgas=0.000 elapsed=10.124ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:29.016] Imported new chain segment number=4883 hash=8433d7..85139b blocks=1 txs=0 mgas=0.000 elapsed=6.057ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:31.384] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:08:34.024] Imported new chain segment number=4884 hash=2bc2e6..d18c6d blocks=1 txs=0 mgas=0.000 elapsed=11.112ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:39.017] Imported new chain segment number=4885 hash=587d3a..a71865 blocks=1 txs=0 mgas=0.000 elapsed=7.925ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:41.407] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:08:44.021] Imported new chain segment number=4886 hash=652456..bec1b1 blocks=1 txs=0 mgas=0.000 elapsed=9.213ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:49.014] Imported new chain segment number=4887 hash=9e4c25..a26f5b blocks=1 txs=0 mgas=0.000 elapsed=5.419ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:51.427] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:08:54.014] Imported new chain segment number=4888 hash=7dbbd0..e5b84d blocks=1 txs=0 mgas=0.000 elapsed=6.202ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:59.013] Imported new chain segment number=4889 hash=6054b3..88f16a blocks=1 txs=0 mgas=0.000 elapsed=5.266ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:01.446] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:09:04.016] Imported new chain segment number=4890 hash=ac2caa..0ede57 blocks=1 txs=0 mgas=0.000 elapsed=7.470ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:09.014] Imported new chain segment number=4891 hash=236879..b062f3 blocks=1 txs=0 mgas=0.000 elapsed=6.249ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:11.465] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:09:14.015] Imported new chain segment number=4892 hash=069683..021da6 blocks=1 txs=0 mgas=0.000 elapsed=7.201ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:19.012] Imported new chain segment number=4893 hash=05cce2..7e7abf blocks=1 txs=0 mgas=0.000 elapsed=4.551ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:21.486] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:09:24.016] Imported new chain segment number=4894 hash=765930..f7ddeb blocks=1 txs=0 mgas=0.000 elapsed=7.789ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:29.018] Imported new chain segment number=4895 hash=54d82f..440c1f blocks=1 txs=0 mgas=0.000 elapsed=8.997ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:31.505] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:09:34.014] Imported new chain segment number=4896 hash=a2903a..4e6b5f blocks=1 txs=0 mgas=0.000 elapsed=6.012ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:39.014] Imported new chain segment number=4897 hash=38691e..c0584f blocks=1 txs=0 mgas=0.000 elapsed=5.557ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:41.526] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:09:44.016] Imported new chain segment number=4898 hash=76bc1d..bc7f01 blocks=1 txs=0 mgas=0.000 elapsed=7.602ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:49.013] Imported new chain segment number=4899 hash=0ff188..8db75f blocks=1 txs=0 mgas=0.000 elapsed=5.697ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:51.547] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:09:54.012] Imported new chain segment number=4900 hash=34fde9..b4d389 blocks=1 txs=0 mgas=0.000 elapsed=5.406ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:59.015] Imported new chain segment number=4901 hash=2a241a..9ed7ad blocks=1 txs=0 mgas=0.000 elapsed=5.375ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:01.570] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:10:04.015] Imported new chain segment number=4902 hash=20dc89..72ae04 blocks=1 txs=0 mgas=0.000 elapsed=5.305ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:09.018] Imported new chain segment number=4903 hash=c596bc..3a370c blocks=1 txs=0 mgas=0.000 elapsed=9.169ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:11.591] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:10:14.012] Imported new chain segment number=4904 hash=566926..c0a7cd blocks=1 txs=0 mgas=0.000 elapsed=4.682ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:19.012] Imported new chain segment number=4905 hash=4ec1ca..234310 blocks=1 txs=0 mgas=0.000 elapsed=4.603ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:21.612] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:10:24.012] Imported new chain segment number=4906 hash=9034b3..bcab32 blocks=1 txs=0 mgas=0.000 elapsed=4.751ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:29.015] Imported new chain segment number=4907 hash=da4369..cdd5b4 blocks=1 txs=0 mgas=0.000 elapsed=7.003ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:31.629] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:10:34.015] Imported new chain segment number=4908 hash=deb812..2482e7 blocks=1 txs=0 mgas=0.000 elapsed=7.315ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:39.013] Imported new chain segment number=4909 hash=57eeea..457ff2 blocks=1 txs=0 mgas=0.000 elapsed=5.817ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:41.649] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:10:44.012] Imported new chain segment number=4910 hash=ae6875..0054c3 blocks=1 txs=0 mgas=0.000 elapsed=5.612ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:49.016] Imported new chain segment number=4911 hash=597795..73273b blocks=1 txs=0 mgas=0.000 elapsed=6.781ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:51.669] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:10:54.014] Imported new chain segment number=4912 hash=b75b02..6a55cf blocks=1 txs=0 mgas=0.000 elapsed=5.530ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:59.013] Imported new chain segment number=4913 hash=18a211..dee43c blocks=1 txs=0 mgas=0.000 elapsed=5.641ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:01.690] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:11:04.015] Imported new chain segment number=4914 hash=70b6d6..61480c blocks=1 txs=0 mgas=0.000 elapsed=5.417ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:09.014] Imported new chain segment number=4915 hash=a3c238..d3f7a6 blocks=1 txs=0 mgas=0.000 elapsed=5.613ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:11.711] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:11:14.016] Imported new chain segment number=4916 hash=6b6d2a..4fdec7 blocks=1 txs=0 mgas=0.000 elapsed=6.992ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:19.014] Imported new chain segment number=4917 hash=9227b2..66bd72 blocks=1 txs=0 mgas=0.000 elapsed=5.085ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:21.733] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:11:24.019] Imported new chain segment number=4918 hash=d2cefd..7eab1c blocks=1 txs=0 mgas=0.000 elapsed=8.566ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:29.018] Imported new chain segment number=4919 hash=9a1907..d130bd blocks=1 txs=0 mgas=0.000 elapsed=7.180ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:31.757] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:11:34.015] Imported new chain segment number=4920 hash=389606..61e88c blocks=1 txs=0 mgas=0.000 elapsed=5.963ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:39.020] Imported new chain segment number=4921 hash=94a5b0..b91d22 blocks=1 txs=0 mgas=0.000 elapsed=6.536ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:41.778] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:11:44.018] Imported new chain segment number=4922 hash=9b5596..adf8b9 blocks=1 txs=0 mgas=0.000 elapsed=5.982ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:49.018] Imported new chain segment number=4923 hash=866979..dca8cf blocks=1 txs=0 mgas=0.000 elapsed=7.417ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:51.801] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:11:54.011] Imported new chain segment number=4924 hash=5b38a8..58f39d blocks=1 txs=0 mgas=0.000 elapsed=4.461ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:59.015] Imported new chain segment number=4925 hash=20d91b..3c8ba9 blocks=1 txs=0 mgas=0.000 elapsed=5.444ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:01.821] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:12:04.013] Imported new chain segment number=4926 hash=a726a3..61ca67 blocks=1 txs=0 mgas=0.000 elapsed=5.712ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:09.009] Imported new chain segment number=4927 hash=2d71bb..575ca7 blocks=1 txs=0 mgas=0.000 elapsed=4.837ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:11.843] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:12:14.017] Imported new chain segment number=4928 hash=2fa574..c3bb89 blocks=1 txs=0 mgas=0.000 elapsed=6.483ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:19.011] Imported new chain segment number=4929 hash=45ffea..7bc9ac blocks=1 txs=0 mgas=0.000 elapsed=4.978ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:21.860] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:12:24.018] Imported new chain segment number=4930 hash=0fb9b0..4dbb54 blocks=1 txs=0 mgas=0.000 elapsed=7.133ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:29.018] Imported new chain segment number=4931 hash=41c8dc..b2ea71 blocks=1 txs=0 mgas=0.000 elapsed=7.283ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:31.878] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:12:34.015] Imported new chain segment number=4932 hash=5a59bc..cc3338 blocks=1 txs=0 mgas=0.000 elapsed=5.720ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:39.020] Imported new chain segment number=4933 hash=1f76bc..1118e3 blocks=1 txs=0 mgas=0.000 elapsed=7.618ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:41.894] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:12:44.018] Imported new chain segment number=4934 hash=61521e..a6a297 blocks=1 txs=0 mgas=0.000 elapsed=7.635ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:49.016] Imported new chain segment number=4935 hash=739499..66cbc3 blocks=1 txs=0 mgas=0.000 elapsed=5.968ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:51.912] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:12:54.014] Imported new chain segment number=4936 hash=85facb..cbca91 blocks=1 txs=0 mgas=0.000 elapsed=5.427ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:59.017] Imported new chain segment number=4937 hash=cb6866..aae096 blocks=1 txs=0 mgas=0.000 elapsed=6.107ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:01.934] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:13:04.017] Imported new chain segment number=4938 hash=ae6ded..78ae88 blocks=1 txs=0 mgas=0.000 elapsed=6.624ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:09.016] Imported new chain segment number=4939 hash=7a4292..21c0bf blocks=1 txs=0 mgas=0.000 elapsed=4.424ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:11.956] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:13:14.015] Imported new chain segment number=4940 hash=d5facd..b9130f blocks=1 txs=0 mgas=0.000 elapsed=4.469ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:19.018] Imported new chain segment number=4941 hash=c524b4..0ebec6 blocks=1 txs=0 mgas=0.000 elapsed=6.835ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:21.978] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:13:24.017] Imported new chain segment number=4942 hash=8433c7..78b1d1 blocks=1 txs=0 mgas=0.000 elapsed=6.689ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:29.012] Imported new chain segment number=4943 hash=3928bf..201388 blocks=1 txs=0 mgas=0.000 elapsed=5.075ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:31.997] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:13:34.016] Imported new chain segment number=4944 hash=bdd70e..7a04de blocks=1 txs=0 mgas=0.000 elapsed=6.377ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:39.016] Imported new chain segment number=4945 hash=10c153..0a7c26 blocks=1 txs=0 mgas=0.000 elapsed=5.937ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:42.014] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:13:44.017] Imported new chain segment number=4946 hash=61abf9..d12cce blocks=1 txs=0 mgas=0.000 elapsed=7.190ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:49.013] Imported new chain segment number=4947 hash=2ee30c..fb2909 blocks=1 txs=0 mgas=0.000 elapsed=5.120ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:52.033] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:13:54.015] Imported new chain segment number=4948 hash=b1d5f9..0524b6 blocks=1 txs=0 mgas=0.000 elapsed=6.028ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:59.011] Imported new chain segment number=4949 hash=f486ee..b56a4b blocks=1 txs=0 mgas=0.000 elapsed=4.724ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:02.055] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:14:04.016] Imported new chain segment number=4950 hash=b58947..b88a11 blocks=1 txs=0 mgas=0.000 elapsed=5.798ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:09.011] Imported new chain segment number=4951 hash=8895e0..77eee2 blocks=1 txs=0 mgas=0.000 elapsed=6.281ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:12.077] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:14:14.016] Imported new chain segment number=4952 hash=1f6f78..a058f5 blocks=1 txs=0 mgas=0.000 elapsed=5.742ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:19.018] Imported new chain segment number=4953 hash=af627e..d6c1b7 blocks=1 txs=0 mgas=0.000 elapsed=6.496ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:22.095] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:14:24.017] Imported new chain segment number=4954 hash=c91939..24f018 blocks=1 txs=0 mgas=0.000 elapsed=6.818ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:29.018] Imported new chain segment number=4955 hash=c0cbdf..a4ac89 blocks=1 txs=0 mgas=0.000 elapsed=6.294ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:32.116] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:14:34.016] Imported new chain segment number=4956 hash=25a167..5c4249 blocks=1 txs=0 mgas=0.000 elapsed=5.366ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:39.010] Imported new chain segment number=4957 hash=93a93e..4afbc5 blocks=1 txs=0 mgas=0.000 elapsed=4.710ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:42.136] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:14:44.017] Imported new chain segment number=4958 hash=6a6762..2f5997 blocks=1 txs=0 mgas=0.000 elapsed=5.676ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:49.012] Imported new chain segment number=4959 hash=3a25c9..280330 blocks=1 txs=0 mgas=0.000 elapsed=5.247ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:52.161] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:14:54.019] Imported new chain segment number=4960 hash=6c0f1d..ef888f blocks=1 txs=0 mgas=0.000 elapsed=6.901ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:59.017] Imported new chain segment number=4961 hash=2cc5ee..baf525 blocks=1 txs=0 mgas=0.000 elapsed=5.501ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:02.178] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:15:04.012] Imported new chain segment number=4962 hash=e9e469..c8676e blocks=1 txs=0 mgas=0.000 elapsed=4.476ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:09.011] Imported new chain segment number=4963 hash=a9089e..a78cc7 blocks=1 txs=0 mgas=0.000 elapsed=5.166ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:12.197] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:15:14.010] Imported new chain segment number=4964 hash=25040e..ad2927 blocks=1 txs=0 mgas=0.000 elapsed=4.006ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:19.018] Imported new chain segment number=4965 hash=468cc7..d57e07 blocks=1 txs=0 mgas=0.000 elapsed=7.690ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:22.215] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:15:24.015] Imported new chain segment number=4966 hash=aa5804..4f543f blocks=1 txs=0 mgas=0.000 elapsed=5.988ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:29.019] Imported new chain segment number=4967 hash=3e950f..7140fa blocks=1 txs=0 mgas=0.000 elapsed=7.057ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:32.238] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:15:34.011] Imported new chain segment number=4968 hash=4e8d85..b55bce blocks=1 txs=0 mgas=0.000 elapsed=4.644ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:39.013] Imported new chain segment number=4969 hash=55e9d1..3dc689 blocks=1 txs=0 mgas=0.000 elapsed=4.925ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:42.260] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:15:44.013] Imported new chain segment number=4970 hash=b3c4e6..5c72c4 blocks=1 txs=0 mgas=0.000 elapsed=4.265ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:49.018] Imported new chain segment number=4971 hash=b16878..b6c112 blocks=1 txs=0 mgas=0.000 elapsed=6.024ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:52.281] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:15:54.010] Imported new chain segment number=4972 hash=e83845..afef16 blocks=1 txs=0 mgas=0.000 elapsed=4.491ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:59.019] Imported new chain segment number=4973 hash=4799c8..4edd15 blocks=1 txs=0 mgas=0.000 elapsed=8.192ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:02.301] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:16:04.013] Imported new chain segment number=4974 hash=707f64..2311d6 blocks=1 txs=0 mgas=0.000 elapsed=5.639ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:09.009] Imported new chain segment number=4975 hash=fb0161..74a681 blocks=1 txs=0 mgas=0.000 elapsed=4.311ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:12.327] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:16:14.015] Imported new chain segment number=4976 hash=03268f..c19b24 blocks=1 txs=0 mgas=0.000 elapsed=5.525ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:19.017] Imported new chain segment number=4977 hash=00ef09..650006 blocks=1 txs=0 mgas=0.000 elapsed=6.508ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:22.348] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:16:24.016] Imported new chain segment number=4978 hash=f64b59..70e3e4 blocks=1 txs=0 mgas=0.000 elapsed=5.832ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:29.015] Imported new chain segment number=4979 hash=c6d657..a05c22 blocks=1 txs=0 mgas=0.000 elapsed=4.905ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:32.371] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:16:34.016] Imported new chain segment number=4980 hash=587206..8c28a4 blocks=1 txs=0 mgas=0.000 elapsed=5.530ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:39.019] Imported new chain segment number=4981 hash=ce4883..991d49 blocks=1 txs=0 mgas=0.000 elapsed=7.998ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:42.390] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:16:44.018] Imported new chain segment number=4982 hash=850bfc..92a3e5 blocks=1 txs=0 mgas=0.000 elapsed=5.945ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:49.010] Imported new chain segment number=4983 hash=62987b..c4372d blocks=1 txs=0 mgas=0.000 elapsed=4.831ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:52.411] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:16:54.020] Imported new chain segment number=4984 hash=5e74d6..96b25e blocks=1 txs=0 mgas=0.000 elapsed=10.090ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:59.016] Imported new chain segment number=4985 hash=5297d4..3630a1 blocks=1 txs=0 mgas=0.000 elapsed=7.605ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:02.432] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:17:04.017] Imported new chain segment number=4986 hash=603a69..e8ad54 blocks=1 txs=0 mgas=0.000 elapsed=6.433ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:09.015] Imported new chain segment number=4987 hash=69d24c..a4bf18 blocks=1 txs=0 mgas=0.000 elapsed=4.677ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:12.450] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:17:14.010] Imported new chain segment number=4988 hash=2c9bab..5704eb blocks=1 txs=0 mgas=0.000 elapsed=4.979ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:19.015] Imported new chain segment number=4989 hash=840935..92abae blocks=1 txs=0 mgas=0.000 elapsed=5.303ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:22.476] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:17:24.011] Imported new chain segment number=4990 hash=50b859..243c22 blocks=1 txs=0 mgas=0.000 elapsed=4.691ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:29.014] Imported new chain segment number=4991 hash=5e9fae..dfc355 blocks=1 txs=0 mgas=0.000 elapsed=6.126ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:32.498] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:17:34.015] Imported new chain segment number=4992 hash=29007f..94992f blocks=1 txs=0 mgas=0.000 elapsed=6.927ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:39.015] Imported new chain segment number=4993 hash=53dbe3..cd52c5 blocks=1 txs=0 mgas=0.000 elapsed=4.586ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:42.520] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:17:44.018] Imported new chain segment number=4994 hash=adfe76..16965a blocks=1 txs=0 mgas=0.000 elapsed=5.735ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:49.017] Imported new chain segment number=4995 hash=e0235c..1fb5d9 blocks=1 txs=0 mgas=0.000 elapsed=5.410ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:52.542] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:17:54.017] Imported new chain segment number=4996 hash=5c02f4..2150bf blocks=1 txs=0 mgas=0.000 elapsed=5.804ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:59.015] Imported new chain segment number=4997 hash=40fccf..bcb53c blocks=1 txs=0 mgas=0.000 elapsed=4.677ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:02.564] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:18:04.033] Imported new chain segment number=4998 hash=b93b68..775ddb blocks=1 txs=0 mgas=0.000 elapsed=8.855ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:09.015] Imported new chain segment number=4999 hash=676c5a..8a024f blocks=1 txs=0 mgas=0.000 elapsed=4.748ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:12.587] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:18:14.011] Imported new chain segment number=5000 hash=cd44dd..26fd36 blocks=1 txs=0 mgas=0.000 elapsed=5.077ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:19.013] Imported new chain segment number=5001 hash=dab403..6faf83 blocks=1 txs=0 mgas=0.000 elapsed=5.201ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:22.607] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:18:24.020] Imported new chain segment number=5002 hash=19d269..4dcb5b blocks=1 txs=0 mgas=0.000 elapsed=7.082ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:29.015] Imported new chain segment number=5003 hash=0644bd..7fb37a blocks=1 txs=0 mgas=0.000 elapsed=5.916ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:32.625] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:18:34.013] Imported new chain segment number=5004 hash=89a180..089195 blocks=1 txs=0 mgas=0.000 elapsed=6.944ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:39.012] Imported new chain segment number=5005 hash=bdb46b..77bd10 blocks=1 txs=0 mgas=0.000 elapsed=4.978ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:42.650] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:18:44.024] Imported new chain segment number=5006 hash=a0d286..8bc586 blocks=1 txs=0 mgas=0.000 elapsed=10.881ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:49.026] Imported new chain segment number=5007 hash=f8cac7..fa3ea0 blocks=1 txs=0 mgas=0.000 elapsed=12.037ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:52.665] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:18:54.033] Imported new chain segment number=5008 hash=2ddb5a..8ad576 blocks=1 txs=0 mgas=0.000 elapsed=10.413ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:59.034] Imported new chain segment number=5009 hash=265136..565829 blocks=1 txs=0 mgas=0.000 elapsed=14.697ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:02.690] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:19:04.021] Imported new chain segment number=5010 hash=20a56d..c1e270 blocks=1 txs=0 mgas=0.000 elapsed=9.416ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:09.063] Imported new chain segment number=5011 hash=a74bbd..84018f blocks=1 txs=0 mgas=0.000 elapsed=36.388ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:12.709] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:19:14.040] Imported new chain segment number=5012 hash=d7316c..f6ab2f blocks=1 txs=0 mgas=0.000 elapsed=16.527ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:19.031] Imported new chain segment number=5013 hash=71ea2a..6f5e44 blocks=1 txs=0 mgas=0.000 elapsed=12.465ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:22.729] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:19:24.041] Imported new chain segment number=5014 hash=ab7b90..eb02e1 blocks=1 txs=0 mgas=0.000 elapsed=13.029ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:29.062] Imported new chain segment number=5015 hash=462880..8b9d4e blocks=1 txs=0 mgas=0.000 elapsed=34.094ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:32.750] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:19:34.025] Imported new chain segment number=5016 hash=182c98..855327 blocks=1 txs=0 mgas=0.000 elapsed=13.058ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:39.047] Imported new chain segment number=5017 hash=d49ee0..024bf5 blocks=1 txs=0 mgas=0.000 elapsed=16.177ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:42.771] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:19:44.024] Imported new chain segment number=5018 hash=3081ee..3be267 blocks=1 txs=0 mgas=0.000 elapsed=16.435ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:49.076] Imported new chain segment number=5019 hash=a78c5a..355beb blocks=1 txs=0 mgas=0.000 elapsed=50.514ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:52.788] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:19:54.023] Imported new chain segment number=5020 hash=c71396..04dbbf blocks=1 txs=0 mgas=0.000 elapsed=10.396ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:59.024] Imported new chain segment number=5021 hash=d772af..0e8404 blocks=1 txs=0 mgas=0.000 elapsed=12.186ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:02.810] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:20:04.017] Imported new chain segment number=5022 hash=4e127c..33e3d9 blocks=1 txs=0 mgas=0.000 elapsed=5.519ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:09.018] Imported new chain segment number=5023 hash=d781d7..87dc47 blocks=1 txs=0 mgas=0.000 elapsed=6.884ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:12.828] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:20:14.016] Imported new chain segment number=5024 hash=6ee38a..2f1ac2 blocks=1 txs=0 mgas=0.000 elapsed=5.119ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:19.015] Imported new chain segment number=5025 hash=8ffb85..db199d blocks=1 txs=0 mgas=0.000 elapsed=5.965ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:22.853] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:20:24.017] Imported new chain segment number=5026 hash=773684..77a0db blocks=1 txs=0 mgas=0.000 elapsed=4.949ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:29.015] Imported new chain segment number=5027 hash=bb2a1d..e70565 blocks=1 txs=0 mgas=0.000 elapsed=6.477ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:32.873] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:20:34.015] Imported new chain segment number=5028 hash=86671f..30bb3c blocks=1 txs=0 mgas=0.000 elapsed=6.531ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:39.017] Imported new chain segment number=5029 hash=2553a6..048c87 blocks=1 txs=0 mgas=0.000 elapsed=7.378ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:42.891] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:20:44.020] Imported new chain segment number=5030 hash=4965b2..7c2179 blocks=1 txs=0 mgas=0.000 elapsed=6.783ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:49.011] Imported new chain segment number=5031 hash=ddb411..2ae071 blocks=1 txs=0 mgas=0.000 elapsed=5.165ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:52.914] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:20:54.015] Imported new chain segment number=5032 hash=673e45..5c344e blocks=1 txs=0 mgas=0.000 elapsed=5.183ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:59.017] Imported new chain segment number=5033 hash=021e65..915291 blocks=1 txs=0 mgas=0.000 elapsed=6.320ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:02.935] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:21:04.019] Imported new chain segment number=5034 hash=92329a..8d362d blocks=1 txs=0 mgas=0.000 elapsed=5.902ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:09.010] Imported new chain segment number=5035 hash=c6eb07..9f3193 blocks=1 txs=0 mgas=0.000 elapsed=4.961ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:12.956] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:21:14.010] Imported new chain segment number=5036 hash=fe2785..26b405 blocks=1 txs=0 mgas=0.000 elapsed=4.086ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:19.015] Imported new chain segment number=5037 hash=901530..f9d1ab blocks=1 txs=0 mgas=0.000 elapsed=5.133ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:22.977] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:21:24.016] Imported new chain segment number=5038 hash=fbda55..9b7746 blocks=1 txs=0 mgas=0.000 elapsed=5.276ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:29.013] Imported new chain segment number=5039 hash=adea9c..456ae1 blocks=1 txs=0 mgas=0.000 elapsed=5.345ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:32.997] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:21:34.016] Imported new chain segment number=5040 hash=629953..b2a5da blocks=1 txs=0 mgas=0.000 elapsed=6.223ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:39.017] Imported new chain segment number=5041 hash=7aa5d3..e6e973 blocks=1 txs=0 mgas=0.000 elapsed=6.704ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:43.015] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:21:44.018] Imported new chain segment number=5042 hash=04d405..7dafb3 blocks=1 txs=0 mgas=0.000 elapsed=5.995ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:49.017] Imported new chain segment number=5043 hash=b13cff..fea6ae blocks=1 txs=0 mgas=0.000 elapsed=6.525ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:53.034] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:21:54.015] Imported new chain segment number=5044 hash=ec2bc0..29ceea blocks=1 txs=0 mgas=0.000 elapsed=6.743ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:59.014] Imported new chain segment number=5045 hash=03aabe..b88696 blocks=1 txs=0 mgas=0.000 elapsed=5.155ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:03.053] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:22:04.016] Imported new chain segment number=5046 hash=034714..70f93f blocks=1 txs=0 mgas=0.000 elapsed=5.562ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:09.015] Imported new chain segment number=5047 hash=8bba72..643be7 blocks=1 txs=0 mgas=0.000 elapsed=6.001ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:13.075] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:22:14.016] Imported new chain segment number=5048 hash=803496..c45375 blocks=1 txs=0 mgas=0.000 elapsed=5.987ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:19.018] Imported new chain segment number=5049 hash=8ce777..001f59 blocks=1 txs=0 mgas=0.000 elapsed=6.115ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:23.096] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:22:24.019] Imported new chain segment number=5050 hash=0021e7..c1931c blocks=1 txs=0 mgas=0.000 elapsed=6.937ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:29.017] Imported new chain segment number=5051 hash=c27753..ca8881 blocks=1 txs=0 mgas=0.000 elapsed=5.402ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:33.116] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:22:34.016] Imported new chain segment number=5052 hash=8de476..951494 blocks=1 txs=0 mgas=0.000 elapsed=7.105ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:39.018] Imported new chain segment number=5053 hash=977df0..8deb4a blocks=1 txs=0 mgas=0.000 elapsed=6.469ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:43.136] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:22:44.018] Imported new chain segment number=5054 hash=57e6d5..a1814d blocks=1 txs=0 mgas=0.000 elapsed=7.543ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:49.020] Imported new chain segment number=5055 hash=92ee00..428d31 blocks=1 txs=0 mgas=0.000 elapsed=7.247ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:53.156] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:22:54.018] Imported new chain segment number=5056 hash=b35f36..fa59f1 blocks=1 txs=0 mgas=0.000 elapsed=6.463ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:59.021] Imported new chain segment number=5057 hash=a9e1db..c6e5c0 blocks=1 txs=0 mgas=0.000 elapsed=7.320ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:03.175] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:23:04.016] Imported new chain segment number=5058 hash=aad9e3..5110c6 blocks=1 txs=0 mgas=0.000 elapsed=5.377ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:09.016] Imported new chain segment number=5059 hash=7ff854..c849f2 blocks=1 txs=0 mgas=0.000 elapsed=5.595ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:13.197] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:23:14.014] Imported new chain segment number=5060 hash=5764c7..b66f8f blocks=1 txs=0 mgas=0.000 elapsed=5.364ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:19.017] Imported new chain segment number=5061 hash=2a205f..0149bb blocks=1 txs=0 mgas=0.000 elapsed=5.817ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:23.217] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:23:24.018] Imported new chain segment number=5062 hash=beb618..8030d5 blocks=1 txs=0 mgas=0.000 elapsed=6.401ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:29.018] Imported new chain segment number=5063 hash=2ba31b..61e8ff blocks=1 txs=0 mgas=0.000 elapsed=9.113ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:33.236] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:23:34.012] Imported new chain segment number=5064 hash=8b4b1e..84174c blocks=1 txs=0 mgas=0.000 elapsed=4.574ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:39.016] Imported new chain segment number=5065 hash=8d4735..5c0489 blocks=1 txs=0 mgas=0.000 elapsed=5.668ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:43.256] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:23:44.020] Imported new chain segment number=5066 hash=ded283..739cff blocks=1 txs=0 mgas=0.000 elapsed=7.676ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:49.016] Imported new chain segment number=5067 hash=7eca0f..773bfd blocks=1 txs=0 mgas=0.000 elapsed=6.037ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:53.276] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:23:54.014] Imported new chain segment number=5068 hash=44e342..3a3280 blocks=1 txs=0 mgas=0.000 elapsed=5.965ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:59.016] Imported new chain segment number=5069 hash=fb358a..8c6d64 blocks=1 txs=0 mgas=0.000 elapsed=6.451ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:03.293] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:24:04.016] Imported new chain segment number=5070 hash=1dd787..8632e1 blocks=1 txs=0 mgas=0.000 elapsed=6.332ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:09.011] Imported new chain segment number=5071 hash=68f9e7..775a67 blocks=1 txs=0 mgas=0.000 elapsed=4.610ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:13.316] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:24:14.015] Imported new chain segment number=5072 hash=15315c..eded0d blocks=1 txs=0 mgas=0.000 elapsed=5.668ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:19.020] Imported new chain segment number=5073 hash=7b8041..dbd0a7 blocks=1 txs=0 mgas=0.000 elapsed=5.712ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:23.336] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:24:24.014] Imported new chain segment number=5074 hash=a395f1..b5cf7f blocks=1 txs=0 mgas=0.000 elapsed=5.736ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:29.044] Imported new chain segment number=5075 hash=fd6283..8963c7 blocks=1 txs=0 mgas=0.000 elapsed=6.882ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:33.356] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:24:34.040] Imported new chain segment number=5076 hash=2a3666..14215f blocks=1 txs=0 mgas=0.000 elapsed=5.886ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:39.013] Imported new chain segment number=5077 hash=d56990..c05fb8 blocks=1 txs=0 mgas=0.000 elapsed=5.114ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:43.374] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:24:44.016] Imported new chain segment number=5078 hash=f16cbc..b51d1e blocks=1 txs=0 mgas=0.000 elapsed=5.934ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:49.015] Imported new chain segment number=5079 hash=00f4a2..259a6a blocks=1 txs=0 mgas=0.000 elapsed=6.017ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:53.393] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:24:54.013] Imported new chain segment number=5080 hash=a9715d..4b2492 blocks=1 txs=0 mgas=0.000 elapsed=4.965ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:59.011] Imported new chain segment number=5081 hash=e2e7a0..2fd53f blocks=1 txs=0 mgas=0.000 elapsed=5.332ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:03.414] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:25:04.018] Imported new chain segment number=5082 hash=1d9333..e91f97 blocks=1 txs=0 mgas=0.000 elapsed=6.658ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:09.017] Imported new chain segment number=5083 hash=a47eeb..fd9828 blocks=1 txs=0 mgas=0.000 elapsed=5.421ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:13.434] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:25:14.016] Imported new chain segment number=5084 hash=0ffe10..1177a8 blocks=1 txs=0 mgas=0.000 elapsed=5.297ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:19.014] Imported new chain segment number=5085 hash=529ca2..189aff blocks=1 txs=0 mgas=0.000 elapsed=5.087ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:23.452] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:25:24.013] Imported new chain segment number=5086 hash=12b595..3de3f5 blocks=1 txs=0 mgas=0.000 elapsed=5.496ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:29.017] Imported new chain segment number=5087 hash=dda034..101399 blocks=1 txs=0 mgas=0.000 elapsed=6.118ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:33.475] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:25:34.014] Imported new chain segment number=5088 hash=7b42e6..e84cb3 blocks=1 txs=0 mgas=0.000 elapsed=6.178ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:39.018] Imported new chain segment number=5089 hash=a6ae22..5d4649 blocks=1 txs=0 mgas=0.000 elapsed=7.588ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:43.499] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:25:44.013] Imported new chain segment number=5090 hash=c88211..b96f04 blocks=1 txs=0 mgas=0.000 elapsed=5.153ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:49.011] Imported new chain segment number=5091 hash=988e09..cea533 blocks=1 txs=0 mgas=0.000 elapsed=4.365ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:53.520] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:25:54.038] Imported new chain segment number=5092 hash=68bda0..9ced63 blocks=1 txs=0 mgas=0.000 elapsed=6.722ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:59.016] Imported new chain segment number=5093 hash=fb2539..9b4a26 blocks=1 txs=0 mgas=0.000 elapsed=6.507ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:03.537] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:26:04.013] Imported new chain segment number=5094 hash=dda3e7..ca26dc blocks=1 txs=0 mgas=0.000 elapsed=4.554ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:09.017] Imported new chain segment number=5095 hash=4965bd..4d87f8 blocks=1 txs=0 mgas=0.000 elapsed=5.852ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:13.560] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:26:14.019] Imported new chain segment number=5096 hash=0e54d5..d6c04e blocks=1 txs=0 mgas=0.000 elapsed=6.649ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:19.013] Imported new chain segment number=5097 hash=a9a9f8..1a91da blocks=1 txs=0 mgas=0.000 elapsed=6.116ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:23.583] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:26:24.012] Imported new chain segment number=5098 hash=a1fa38..9b867d blocks=1 txs=0 mgas=0.000 elapsed=5.304ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:29.010] Imported new chain segment number=5099 hash=79130e..153481 blocks=1 txs=0 mgas=0.000 elapsed=4.843ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:33.604] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:26:34.015] Imported new chain segment number=5100 hash=48c9c7..81dd81 blocks=1 txs=0 mgas=0.000 elapsed=5.524ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:39.019] Imported new chain segment number=5101 hash=288100..4a2c69 blocks=1 txs=0 mgas=0.000 elapsed=7.530ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:43.627] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:26:44.017] Imported new chain segment number=5102 hash=86cc51..54569c blocks=1 txs=0 mgas=0.000 elapsed=5.979ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:49.018] Imported new chain segment number=5103 hash=db7d52..e1398e blocks=1 txs=0 mgas=0.000 elapsed=7.587ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:53.647] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:26:54.011] Imported new chain segment number=5104 hash=0e67b8..76a334 blocks=1 txs=0 mgas=0.000 elapsed=5.191ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:59.019] Imported new chain segment number=5105 hash=1b131c..5134a6 blocks=1 txs=0 mgas=0.000 elapsed=7.613ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:03.668] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:27:04.012] Imported new chain segment number=5106 hash=9987b7..cfede5 blocks=1 txs=0 mgas=0.000 elapsed=5.048ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:09.016] Imported new chain segment number=5107 hash=e27c1d..0a8e5b blocks=1 txs=0 mgas=0.000 elapsed=5.234ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:13.689] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:27:14.018] Imported new chain segment number=5108 hash=33f8ec..b4d827 blocks=1 txs=0 mgas=0.000 elapsed=7.195ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:19.017] Imported new chain segment number=5109 hash=724706..b86384 blocks=1 txs=0 mgas=0.000 elapsed=6.781ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:23.712] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:27:24.019] Imported new chain segment number=5110 hash=927d8a..e5836c blocks=1 txs=0 mgas=0.000 elapsed=7.804ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:29.019] Imported new chain segment number=5111 hash=b53f81..1beeb7 blocks=1 txs=0 mgas=0.000 elapsed=6.778ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:33.735] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:27:34.016] Imported new chain segment number=5112 hash=1ba60d..5002bb blocks=1 txs=0 mgas=0.000 elapsed=5.556ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:39.016] Imported new chain segment number=5113 hash=a22bfb..cb693f blocks=1 txs=0 mgas=0.000 elapsed=5.621ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:43.755] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:27:44.017] Imported new chain segment number=5114 hash=6aaa9a..0550f2 blocks=1 txs=0 mgas=0.000 elapsed=6.588ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:49.016] Imported new chain segment number=5115 hash=91da91..74b480 blocks=1 txs=0 mgas=0.000 elapsed=5.761ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:53.775] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:27:54.012] Imported new chain segment number=5116 hash=0443bc..bc876a blocks=1 txs=0 mgas=0.000 elapsed=5.483ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:59.018] Imported new chain segment number=5117 hash=8ce490..ea9e60 blocks=1 txs=0 mgas=0.000 elapsed=6.609ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:03.796] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:28:04.017] Imported new chain segment number=5118 hash=268e17..bec527 blocks=1 txs=0 mgas=0.000 elapsed=6.308ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:09.017] Imported new chain segment number=5119 hash=fda98a..7c6f93 blocks=1 txs=0 mgas=0.000 elapsed=6.573ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:13.817] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:28:14.015] Imported new chain segment number=5120 hash=6d984c..5873ed blocks=1 txs=0 mgas=0.000 elapsed=6.723ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:19.014] Imported new chain segment number=5121 hash=41e130..f494e4 blocks=1 txs=0 mgas=0.000 elapsed=5.126ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:23.841] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:28:24.015] Imported new chain segment number=5122 hash=fb9d49..0348ab blocks=1 txs=0 mgas=0.000 elapsed=4.577ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:29.014] Imported new chain segment number=5123 hash=e62b2f..4a2347 blocks=1 txs=0 mgas=0.000 elapsed=5.828ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:33.864] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:28:34.013] Imported new chain segment number=5124 hash=fcd48e..e11b8d blocks=1 txs=0 mgas=0.000 elapsed=4.407ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:39.011] Imported new chain segment number=5125 hash=354969..242ebb blocks=1 txs=0 mgas=0.000 elapsed=4.802ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:43.886] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:28:44.016] Imported new chain segment number=5126 hash=d66765..ea677b blocks=1 txs=0 mgas=0.000 elapsed=6.426ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:49.019] Imported new chain segment number=5127 hash=6b0682..a5f18a blocks=1 txs=0 mgas=0.000 elapsed=7.708ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:53.908] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:28:54.011] Imported new chain segment number=5128 hash=d97c85..93e70a blocks=1 txs=0 mgas=0.000 elapsed=4.847ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:59.018] Imported new chain segment number=5129 hash=28a599..197f90 blocks=1 txs=0 mgas=0.000 elapsed=7.512ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:03.929] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:29:04.016] Imported new chain segment number=5130 hash=cd8e56..df6b85 blocks=1 txs=0 mgas=0.000 elapsed=5.227ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:09.017] Imported new chain segment number=5131 hash=f71741..1110b1 blocks=1 txs=0 mgas=0.000 elapsed=6.435ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:13.950] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:29:14.014] Imported new chain segment number=5132 hash=ec3492..55ceec blocks=1 txs=0 mgas=0.000 elapsed=4.589ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:19.015] Imported new chain segment number=5133 hash=230fc9..c79c8f blocks=1 txs=0 mgas=0.000 elapsed=5.058ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:23.971] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:29:24.015] Imported new chain segment number=5134 hash=f6c495..9cc871 blocks=1 txs=0 mgas=0.000 elapsed=6.127ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:29.008] Imported new chain segment number=5135 hash=75d72b..9c089a blocks=1 txs=0 mgas=0.000 elapsed=4.403ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:33.991] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:29:34.016] Imported new chain segment number=5136 hash=f7f78a..f8a0b1 blocks=1 txs=0 mgas=0.000 elapsed=6.801ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:39.016] Imported new chain segment number=5137 hash=6d26ce..0fb164 blocks=1 txs=0 mgas=0.000 elapsed=6.238ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:44.012] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:29:44.020] Imported new chain segment number=5138 hash=1cb1e4..f3ea1e blocks=1 txs=0 mgas=0.000 elapsed=8.002ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:49.017] Imported new chain segment number=5139 hash=5f5e16..991acc blocks=1 txs=0 mgas=0.000 elapsed=7.372ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:54.016] Imported new chain segment number=5140 hash=73c955..356ed3 blocks=1 txs=0 mgas=0.000 elapsed=5.704ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:54.033] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:29:59.016] Imported new chain segment number=5141 hash=3542e4..f446d4 blocks=1 txs=0 mgas=0.000 elapsed=5.025ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:04.018] Imported new chain segment number=5142 hash=73e632..5cbc11 blocks=1 txs=0 mgas=0.000 elapsed=5.451ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:04.055] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:30:09.018] Imported new chain segment number=5143 hash=359515..fc1771 blocks=1 txs=0 mgas=0.000 elapsed=6.458ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:14.018] Imported new chain segment number=5144 hash=4a1bd1..c0d1d1 blocks=1 txs=0 mgas=0.000 elapsed=6.487ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:14.076] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:30:19.012] Imported new chain segment number=5145 hash=e22d02..a0a923 blocks=1 txs=0 mgas=0.000 elapsed=6.320ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:24.012] Imported new chain segment number=5146 hash=c531de..268132 blocks=1 txs=0 mgas=0.000 elapsed=6.120ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:24.096] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:30:29.014] Imported new chain segment number=5147 hash=3c4cbb..311777 blocks=1 txs=0 mgas=0.000 elapsed=7.099ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:34.015] Imported new chain segment number=5148 hash=74f1b5..3a5cc9 blocks=1 txs=0 mgas=0.000 elapsed=5.963ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:34.114] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:30:39.015] Imported new chain segment number=5149 hash=932509..3691f3 blocks=1 txs=0 mgas=0.000 elapsed=5.838ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:44.015] Imported new chain segment number=5150 hash=fbb70a..6ba8d4 blocks=1 txs=0 mgas=0.000 elapsed=6.149ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:44.133] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:30:49.027] Imported new chain segment number=5151 hash=f049a3..60f0e3 blocks=1 txs=0 mgas=0.000 elapsed=13.479ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:54.015] Imported new chain segment number=5152 hash=3c571d..80c07b blocks=1 txs=0 mgas=0.000 elapsed=5.551ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:54.155] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:30:59.017] Imported new chain segment number=5153 hash=453338..4e15b8 blocks=1 txs=0 mgas=0.000 elapsed=6.398ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:04.013] Imported new chain segment number=5154 hash=975673..5e4402 blocks=1 txs=0 mgas=0.000 elapsed=5.474ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:04.174] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:31:09.014] Imported new chain segment number=5155 hash=d394d7..a29b9d blocks=1 txs=0 mgas=0.000 elapsed=5.901ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:14.011] Imported new chain segment number=5156 hash=9680f3..3562ab blocks=1 txs=0 mgas=0.000 elapsed=5.708ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:14.194] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:31:19.017] Imported new chain segment number=5157 hash=3bc5dc..161671 blocks=1 txs=0 mgas=0.000 elapsed=5.868ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:24.015] Imported new chain segment number=5158 hash=83c3db..346498 blocks=1 txs=0 mgas=0.000 elapsed=4.752ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:24.216] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:31:29.016] Imported new chain segment number=5159 hash=6f3e6c..ce535a blocks=1 txs=0 mgas=0.000 elapsed=6.235ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:34.020] Imported new chain segment number=5160 hash=30c3b7..0efa49 blocks=1 txs=0 mgas=0.000 elapsed=6.751ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:34.237] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:31:39.028] Imported new chain segment number=5161 hash=b4fe3c..727687 blocks=1 txs=0 mgas=0.000 elapsed=10.769ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:44.015] Imported new chain segment number=5162 hash=4d10e9..50b4c1 blocks=1 txs=0 mgas=0.000 elapsed=5.389ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:44.256] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:31:49.017] Imported new chain segment number=5163 hash=c9c7c7..827b76 blocks=1 txs=0 mgas=0.000 elapsed=5.673ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:54.013] Imported new chain segment number=5164 hash=63931d..d3b2dc blocks=1 txs=0 mgas=0.000 elapsed=4.696ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:54.281] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:31:59.017] Imported new chain segment number=5165 hash=b05c0b..d08ed4 blocks=1 txs=0 mgas=0.000 elapsed=5.775ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:04.015] Imported new chain segment number=5166 hash=5ff948..17b02e blocks=1 txs=0 mgas=0.000 elapsed=7.101ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:04.303] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:32:09.013] Imported new chain segment number=5167 hash=ddb760..32790f blocks=1 txs=0 mgas=0.000 elapsed=5.392ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:14.013] Imported new chain segment number=5168 hash=0613ce..43b550 blocks=1 txs=0 mgas=0.000 elapsed=4.426ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:14.325] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:32:19.017] Imported new chain segment number=5169 hash=3223cc..ee9847 blocks=1 txs=0 mgas=0.000 elapsed=6.875ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:24.015] Imported new chain segment number=5170 hash=1d2433..33f1c0 blocks=1 txs=0 mgas=0.000 elapsed=5.650ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:24.346] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:32:29.015] Imported new chain segment number=5171 hash=62a3e7..b1fe04 blocks=1 txs=0 mgas=0.000 elapsed=5.495ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:34.014] Imported new chain segment number=5172 hash=2db5e5..cb4033 blocks=1 txs=0 mgas=0.000 elapsed=5.326ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:34.367] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:32:39.017] Imported new chain segment number=5173 hash=302907..92bbea blocks=1 txs=0 mgas=0.000 elapsed=6.425ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:44.018] Imported new chain segment number=5174 hash=85fa67..e4b1b0 blocks=1 txs=0 mgas=0.000 elapsed=8.546ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:44.389] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:32:49.016] Imported new chain segment number=5175 hash=7e6505..14aa1e blocks=1 txs=0 mgas=0.000 elapsed=4.900ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:54.011] Imported new chain segment number=5176 hash=66d629..dd789f blocks=1 txs=0 mgas=0.000 elapsed=4.491ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:54.407] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:32:59.018] Imported new chain segment number=5177 hash=8a0f7e..d9fe4b blocks=1 txs=0 mgas=0.000 elapsed=6.273ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:04.017] Imported new chain segment number=5178 hash=1bb18c..004bc1 blocks=1 txs=0 mgas=0.000 elapsed=8.002ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:04.427] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:33:09.015] Imported new chain segment number=5179 hash=7a54ae..5dbd4b blocks=1 txs=0 mgas=0.000 elapsed=5.652ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:14.012] Imported new chain segment number=5180 hash=f09641..1a96df blocks=1 txs=0 mgas=0.000 elapsed=4.818ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:14.448] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:33:19.017] Imported new chain segment number=5181 hash=a54816..0d520a blocks=1 txs=0 mgas=0.000 elapsed=5.541ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:24.013] Imported new chain segment number=5182 hash=006b9b..d9d54d blocks=1 txs=0 mgas=0.000 elapsed=5.116ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:24.468] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:33:29.010] Imported new chain segment number=5183 hash=7709b9..a067f6 blocks=1 txs=0 mgas=0.000 elapsed=5.441ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:34.011] Imported new chain segment number=5184 hash=f1a439..340718 blocks=1 txs=0 mgas=0.000 elapsed=4.626ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:34.490] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:33:39.016] Imported new chain segment number=5185 hash=0218b4..a1c703 blocks=1 txs=0 mgas=0.000 elapsed=6.389ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:44.014] Imported new chain segment number=5186 hash=f729ab..1d8068 blocks=1 txs=0 mgas=0.000 elapsed=5.751ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:44.509] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:33:49.015] Imported new chain segment number=5187 hash=e5c142..981952 blocks=1 txs=0 mgas=0.000 elapsed=5.107ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:54.010] Imported new chain segment number=5188 hash=441141..df6eef blocks=1 txs=0 mgas=0.000 elapsed=4.289ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:54.527] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:33:59.011] Imported new chain segment number=5189 hash=c89ad5..ed0833 blocks=1 txs=0 mgas=0.000 elapsed=4.887ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:04.015] Imported new chain segment number=5190 hash=cae450..a35ac0 blocks=1 txs=0 mgas=0.000 elapsed=5.472ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:04.547] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:34:09.013] Imported new chain segment number=5191 hash=9b2327..86f93b blocks=1 txs=0 mgas=0.000 elapsed=4.939ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:14.012] Imported new chain segment number=5192 hash=49d676..9dd5ed blocks=1 txs=0 mgas=0.000 elapsed=4.457ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:14.568] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:34:19.017] Imported new chain segment number=5193 hash=606852..c07925 blocks=1 txs=0 mgas=0.000 elapsed=6.676ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:24.018] Imported new chain segment number=5194 hash=b02f5c..123012 blocks=1 txs=0 mgas=0.000 elapsed=7.217ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:24.593] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:34:29.010] Imported new chain segment number=5195 hash=a2c6e0..b914af blocks=1 txs=0 mgas=0.000 elapsed=4.509ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:34.020] Imported new chain segment number=5196 hash=7ca4af..454296 blocks=1 txs=0 mgas=0.000 elapsed=7.837ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:34.611] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:34:39.014] Imported new chain segment number=5197 hash=f3e890..7c4cf0 blocks=1 txs=0 mgas=0.000 elapsed=5.308ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:44.012] Imported new chain segment number=5198 hash=5c25a2..f8d50f blocks=1 txs=0 mgas=0.000 elapsed=4.698ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:44.631] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:34:49.015] Imported new chain segment number=5199 hash=cb291d..55a5aa blocks=1 txs=0 mgas=0.000 elapsed=5.854ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:54.015] Imported new chain segment number=5200 hash=f4108f..f2c00d blocks=1 txs=0 mgas=0.000 elapsed=5.152ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:54.652] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:34:59.018] Imported new chain segment number=5201 hash=497aae..c22bea blocks=1 txs=0 mgas=0.000 elapsed=6.875ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:04.015] Imported new chain segment number=5202 hash=c470aa..8f30fe blocks=1 txs=0 mgas=0.000 elapsed=5.682ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:04.676] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:35:09.011] Imported new chain segment number=5203 hash=fdfcd6..8c87c0 blocks=1 txs=0 mgas=0.000 elapsed=3.575ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:14.016] Imported new chain segment number=5204 hash=62d87c..8aa526 blocks=1 txs=0 mgas=0.000 elapsed=5.366ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:14.698] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:35:19.016] Imported new chain segment number=5205 hash=b17890..5fd57e blocks=1 txs=0 mgas=0.000 elapsed=7.272ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:24.016] Imported new chain segment number=5206 hash=53826b..5890fc blocks=1 txs=0 mgas=0.000 elapsed=5.906ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:24.717] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:35:29.012] Imported new chain segment number=5207 hash=f06fc8..30a0ab blocks=1 txs=0 mgas=0.000 elapsed=4.936ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:34.015] Imported new chain segment number=5208 hash=2582f8..12f272 blocks=1 txs=0 mgas=0.000 elapsed=5.651ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:34.736] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:35:39.012] Imported new chain segment number=5209 hash=bc92ef..18823d blocks=1 txs=0 mgas=0.000 elapsed=6.016ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:44.017] Imported new chain segment number=5210 hash=b8376f..965a73 blocks=1 txs=0 mgas=0.000 elapsed=6.418ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:44.755] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:35:49.018] Imported new chain segment number=5211 hash=acec7c..e61074 blocks=1 txs=0 mgas=0.000 elapsed=8.060ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:54.017] Imported new chain segment number=5212 hash=ea01a3..1b033c blocks=1 txs=0 mgas=0.000 elapsed=5.529ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:54.774] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:35:59.012] Imported new chain segment number=5213 hash=a3a116..a9829f blocks=1 txs=0 mgas=0.000 elapsed=6.377ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:04.014] Imported new chain segment number=5214 hash=87d11a..4ead2d blocks=1 txs=0 mgas=0.000 elapsed=5.650ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:04.793] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:36:09.016] Imported new chain segment number=5215 hash=99e306..4f5fde blocks=1 txs=0 mgas=0.000 elapsed=6.935ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:14.017] Imported new chain segment number=5216 hash=851328..1099fc blocks=1 txs=0 mgas=0.000 elapsed=6.335ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:14.813] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:36:19.011] Imported new chain segment number=5217 hash=e4ac9b..80d69a blocks=1 txs=0 mgas=0.000 elapsed=5.737ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:24.016] Imported new chain segment number=5218 hash=75c94c..e09f16 blocks=1 txs=0 mgas=0.000 elapsed=6.265ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:24.835] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:36:29.016] Imported new chain segment number=5219 hash=bc2cdf..067143 blocks=1 txs=0 mgas=0.000 elapsed=6.152ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:34.013] Imported new chain segment number=5220 hash=aff5c6..1fd896 blocks=1 txs=0 mgas=0.000 elapsed=6.001ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:34.861] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:36:39.017] Imported new chain segment number=5221 hash=4e7b56..abc0ad blocks=1 txs=0 mgas=0.000 elapsed=6.872ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:44.018] Imported new chain segment number=5222 hash=ed4daf..f6543d blocks=1 txs=0 mgas=0.000 elapsed=8.117ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:44.884] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:36:49.018] Imported new chain segment number=5223 hash=186025..60ba0a blocks=1 txs=0 mgas=0.000 elapsed=6.339ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:54.025] Imported new chain segment number=5224 hash=3d7357..6efe9c blocks=1 txs=0 mgas=0.000 elapsed=12.077ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:54.904] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:36:59.011] Imported new chain segment number=5225 hash=24065c..964c77 blocks=1 txs=0 mgas=0.000 elapsed=4.831ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:04.012] Imported new chain segment number=5226 hash=2de81a..c9b97b blocks=1 txs=0 mgas=0.000 elapsed=5.644ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:04.927] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:37:09.017] Imported new chain segment number=5227 hash=905c55..60552f blocks=1 txs=0 mgas=0.000 elapsed=5.461ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:14.016] Imported new chain segment number=5228 hash=f9d402..775328 blocks=1 txs=0 mgas=0.000 elapsed=9.922ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:14.947] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:37:19.013] Imported new chain segment number=5229 hash=8fc614..91a5bf blocks=1 txs=0 mgas=0.000 elapsed=5.672ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:24.017] Imported new chain segment number=5230 hash=58d026..74c894 blocks=1 txs=0 mgas=0.000 elapsed=5.771ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:24.964] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:37:29.010] Imported new chain segment number=5231 hash=38421b..266285 blocks=1 txs=0 mgas=0.000 elapsed=4.839ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:34.018] Imported new chain segment number=5232 hash=a8b725..f47616 blocks=1 txs=0 mgas=0.000 elapsed=6.441ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:34.982] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:37:39.018] Imported new chain segment number=5233 hash=89c550..ce03d4 blocks=1 txs=0 mgas=0.000 elapsed=7.126ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:44.012] Imported new chain segment number=5234 hash=799855..ba7c00 blocks=1 txs=0 mgas=0.000 elapsed=5.442ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:45.007] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:37:49.017] Imported new chain segment number=5235 hash=fb6e3b..eab81b blocks=1 txs=0 mgas=0.000 elapsed=6.486ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:54.019] Imported new chain segment number=5236 hash=40fe2b..3b5ffb blocks=1 txs=0 mgas=0.000 elapsed=7.869ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:55.028] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:37:59.011] Imported new chain segment number=5237 hash=782e3e..48644d blocks=1 txs=0 mgas=0.000 elapsed=5.120ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:04.015] Imported new chain segment number=5238 hash=4b22a9..ff5886 blocks=1 txs=0 mgas=0.000 elapsed=5.195ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:05.050] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:38:09.011] Imported new chain segment number=5239 hash=934123..7ada98 blocks=1 txs=0 mgas=0.000 elapsed=4.711ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:14.018] Imported new chain segment number=5240 hash=bc3447..bcc340 blocks=1 txs=0 mgas=0.000 elapsed=7.291ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:15.069] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:38:19.017] Imported new chain segment number=5241 hash=013e1d..3ae771 blocks=1 txs=0 mgas=0.000 elapsed=6.261ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:24.013] Imported new chain segment number=5242 hash=d20e2b..758a7a blocks=1 txs=0 mgas=0.000 elapsed=4.514ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:25.087] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:38:29.019] Imported new chain segment number=5243 hash=b952ed..2644a7 blocks=1 txs=0 mgas=0.000 elapsed=6.719ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:34.018] Imported new chain segment number=5244 hash=d0c1bc..97d408 blocks=1 txs=0 mgas=0.000 elapsed=7.109ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:35.110] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:38:39.015] Imported new chain segment number=5245 hash=e0b2d7..499732 blocks=1 txs=0 mgas=0.000 elapsed=5.049ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:44.016] Imported new chain segment number=5246 hash=7e791b..edf090 blocks=1 txs=0 mgas=0.000 elapsed=6.497ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:45.130] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:38:49.020] Imported new chain segment number=5247 hash=ebba96..6409d1 blocks=1 txs=0 mgas=0.000 elapsed=7.271ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:54.019] Imported new chain segment number=5248 hash=7c50b5..c9c23a blocks=1 txs=0 mgas=0.000 elapsed=7.750ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:55.149] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:38:59.018] Imported new chain segment number=5249 hash=bf2ce0..2e8dd2 blocks=1 txs=0 mgas=0.000 elapsed=5.815ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:04.017] Imported new chain segment number=5250 hash=0dd877..a44b6d blocks=1 txs=0 mgas=0.000 elapsed=6.625ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:05.171] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:39:09.016] Imported new chain segment number=5251 hash=5ce786..9e3f43 blocks=1 txs=0 mgas=0.000 elapsed=4.553ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:14.019] Imported new chain segment number=5252 hash=b7bbae..ce297b blocks=1 txs=0 mgas=0.000 elapsed=7.541ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:15.190] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:39:19.020] Imported new chain segment number=5253 hash=c3b92a..48c71b blocks=1 txs=0 mgas=0.000 elapsed=6.222ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:24.017] Imported new chain segment number=5254 hash=8f5373..c3ef58 blocks=1 txs=0 mgas=0.000 elapsed=5.748ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:25.210] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:39:29.011] Imported new chain segment number=5255 hash=771eaf..d8e6c4 blocks=1 txs=0 mgas=0.000 elapsed=5.627ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:34.020] Imported new chain segment number=5256 hash=0ea0b4..9a2f53 blocks=1 txs=0 mgas=0.000 elapsed=7.736ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:35.230] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:39:39.018] Imported new chain segment number=5257 hash=1d8759..4ed376 blocks=1 txs=0 mgas=0.000 elapsed=7.264ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:44.019] Imported new chain segment number=5258 hash=c336e9..bffa59 blocks=1 txs=0 mgas=0.000 elapsed=7.304ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:45.252] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:39:49.010] Imported new chain segment number=5259 hash=f142e0..fe03e6 blocks=1 txs=0 mgas=0.000 elapsed=5.015ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:54.013] Imported new chain segment number=5260 hash=61d365..8ea56c blocks=1 txs=0 mgas=0.000 elapsed=5.803ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:55.272] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:39:59.013] Imported new chain segment number=5261 hash=f7b0f5..36e64f blocks=1 txs=0 mgas=0.000 elapsed=4.676ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:04.019] Imported new chain segment number=5262 hash=2d5f05..effb09 blocks=1 txs=0 mgas=0.000 elapsed=5.801ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:05.290] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:40:09.017] Imported new chain segment number=5263 hash=219e5d..55862c blocks=1 txs=0 mgas=0.000 elapsed=6.149ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:14.011] Imported new chain segment number=5264 hash=5dc2ea..a9751b blocks=1 txs=0 mgas=0.000 elapsed=4.471ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:15.308] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:40:19.015] Imported new chain segment number=5265 hash=406b64..315376 blocks=1 txs=0 mgas=0.000 elapsed=5.644ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:24.018] Imported new chain segment number=5266 hash=62c174..15ae1e blocks=1 txs=0 mgas=0.000 elapsed=6.581ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:25.328] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:40:29.019] Imported new chain segment number=5267 hash=08f81b..6346ca blocks=1 txs=0 mgas=0.000 elapsed=6.729ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:34.017] Imported new chain segment number=5268 hash=68d61b..6dad4e blocks=1 txs=0 mgas=0.000 elapsed=6.202ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:35.349] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:40:39.017] Imported new chain segment number=5269 hash=9fc3a7..d26065 blocks=1 txs=0 mgas=0.000 elapsed=6.961ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:44.015] Imported new chain segment number=5270 hash=bdbae9..9ba944 blocks=1 txs=0 mgas=0.000 elapsed=5.857ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:45.367] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:40:49.013] Imported new chain segment number=5271 hash=b4f430..db8185 blocks=1 txs=0 mgas=0.000 elapsed=6.250ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:54.016] Imported new chain segment number=5272 hash=17a1c9..f9aa02 blocks=1 txs=0 mgas=0.000 elapsed=6.538ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:55.386] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:40:59.016] Imported new chain segment number=5273 hash=c4ad79..59eac8 blocks=1 txs=0 mgas=0.000 elapsed=6.479ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:04.012] Imported new chain segment number=5274 hash=d13495..4084cc blocks=1 txs=0 mgas=0.000 elapsed=4.710ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:05.406] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:41:09.018] Imported new chain segment number=5275 hash=0deafa..9da236 blocks=1 txs=0 mgas=0.000 elapsed=7.442ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:14.018] Imported new chain segment number=5276 hash=7dffcc..ba6ff0 blocks=1 txs=0 mgas=0.000 elapsed=7.169ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:15.426] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:41:19.011] Imported new chain segment number=5277 hash=1d6dc7..a3ad98 blocks=1 txs=0 mgas=0.000 elapsed=4.484ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:24.018] Imported new chain segment number=5278 hash=bd194c..2469a1 blocks=1 txs=0 mgas=0.000 elapsed=6.048ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:25.445] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:41:29.018] Imported new chain segment number=5279 hash=541336..9a2f62 blocks=1 txs=0 mgas=0.000 elapsed=6.895ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:34.014] Imported new chain segment number=5280 hash=466819..06e5f5 blocks=1 txs=0 mgas=0.000 elapsed=5.361ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:35.466] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:41:39.013] Imported new chain segment number=5281 hash=f7c215..b72100 blocks=1 txs=0 mgas=0.000 elapsed=5.815ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:44.014] Imported new chain segment number=5282 hash=1a5f2b..385c15 blocks=1 txs=0 mgas=0.000 elapsed=6.688ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:45.486] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:41:49.014] Imported new chain segment number=5283 hash=db157c..e5e26e blocks=1 txs=0 mgas=0.000 elapsed=7.501ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:54.014] Imported new chain segment number=5284 hash=1d3c09..bb27ac blocks=1 txs=0 mgas=0.000 elapsed=4.436ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:55.504] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:41:59.010] Imported new chain segment number=5285 hash=c8d927..46d81c blocks=1 txs=0 mgas=0.000 elapsed=4.496ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:04.016] Imported new chain segment number=5286 hash=5bfefc..6533fb blocks=1 txs=0 mgas=0.000 elapsed=6.144ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:05.522] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:42:09.011] Imported new chain segment number=5287 hash=098ea3..fd6646 blocks=1 txs=0 mgas=0.000 elapsed=4.606ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:14.010] Imported new chain segment number=5288 hash=d599c7..b7f438 blocks=1 txs=0 mgas=0.000 elapsed=4.446ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:15.543] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:42:19.013] Imported new chain segment number=5289 hash=51200a..f4d4f5 blocks=1 txs=0 mgas=0.000 elapsed=4.457ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:24.012] Imported new chain segment number=5290 hash=f3e613..359ec9 blocks=1 txs=0 mgas=0.000 elapsed=5.732ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:25.565] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:42:29.017] Imported new chain segment number=5291 hash=b7b715..56ffed blocks=1 txs=0 mgas=0.000 elapsed=6.165ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:34.011] Imported new chain segment number=5292 hash=decc9e..406e99 blocks=1 txs=0 mgas=0.000 elapsed=5.130ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:35.585] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:42:39.019] Imported new chain segment number=5293 hash=24e9b7..8bb5d2 blocks=1 txs=0 mgas=0.000 elapsed=6.902ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:44.017] Imported new chain segment number=5294 hash=152d22..b874fb blocks=1 txs=0 mgas=0.000 elapsed=6.649ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:45.605] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:42:49.012] Imported new chain segment number=5295 hash=9cd3a0..8c80d2 blocks=1 txs=0 mgas=0.000 elapsed=4.564ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:54.019] Imported new chain segment number=5296 hash=57c6f7..073d8f blocks=1 txs=0 mgas=0.000 elapsed=6.932ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:55.625] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:42:59.022] Imported new chain segment number=5297 hash=7cae5a..ca2aff blocks=1 txs=0 mgas=0.000 elapsed=8.926ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:04.019] Imported new chain segment number=5298 hash=d54e3f..19fd93 blocks=1 txs=0 mgas=0.000 elapsed=6.462ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:05.646] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:43:09.015] Imported new chain segment number=5299 hash=25089b..61676a blocks=1 txs=0 mgas=0.000 elapsed=4.948ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:14.019] Imported new chain segment number=5300 hash=ff9d27..523da9 blocks=1 txs=0 mgas=0.000 elapsed=9.728ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:15.663] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:43:19.015] Imported new chain segment number=5301 hash=a6c076..7a95a1 blocks=1 txs=0 mgas=0.000 elapsed=5.976ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:24.011] Imported new chain segment number=5302 hash=b57d72..ab2964 blocks=1 txs=0 mgas=0.000 elapsed=5.270ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:25.682] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:43:29.010] Imported new chain segment number=5303 hash=4becfe..01a17e blocks=1 txs=0 mgas=0.000 elapsed=4.421ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:34.014] Imported new chain segment number=5304 hash=0ae4de..59d4c3 blocks=1 txs=0 mgas=0.000 elapsed=4.429ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:35.703] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:43:39.012] Imported new chain segment number=5305 hash=27d704..65c0ce blocks=1 txs=0 mgas=0.000 elapsed=6.306ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:44.011] Imported new chain segment number=5306 hash=d20a6c..4b3ab4 blocks=1 txs=0 mgas=0.000 elapsed=5.085ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:45.727] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:43:49.017] Imported new chain segment number=5307 hash=31cc93..c31b2b blocks=1 txs=0 mgas=0.000 elapsed=5.847ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:54.020] Imported new chain segment number=5308 hash=46f302..212fd7 blocks=1 txs=0 mgas=0.000 elapsed=6.207ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:55.749] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:43:59.014] Imported new chain segment number=5309 hash=11315d..b45089 blocks=1 txs=0 mgas=0.000 elapsed=5.199ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:04.011] Imported new chain segment number=5310 hash=bcf351..292c9f blocks=1 txs=0 mgas=0.000 elapsed=5.050ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:05.772] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:44:09.017] Imported new chain segment number=5311 hash=f2d2ae..194fee blocks=1 txs=0 mgas=0.000 elapsed=6.780ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:14.021] Imported new chain segment number=5312 hash=cf8360..ed67a5 blocks=1 txs=0 mgas=0.000 elapsed=8.387ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:15.794] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:44:19.010] Imported new chain segment number=5313 hash=f8170e..a0f2b0 blocks=1 txs=0 mgas=0.000 elapsed=4.940ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:24.011] Imported new chain segment number=5314 hash=a3a80c..8184e6 blocks=1 txs=0 mgas=0.000 elapsed=4.895ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:25.813] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:44:29.013] Imported new chain segment number=5315 hash=a684bc..5f3d0b blocks=1 txs=0 mgas=0.000 elapsed=5.631ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:34.011] Imported new chain segment number=5316 hash=f2a0bf..e2051a blocks=1 txs=0 mgas=0.000 elapsed=4.761ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:35.835] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:44:39.017] Imported new chain segment number=5317 hash=d8639f..f533c1 blocks=1 txs=0 mgas=0.000 elapsed=7.150ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:44.018] Imported new chain segment number=5318 hash=dfceaf..8f1499 blocks=1 txs=0 mgas=0.000 elapsed=7.184ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:45.854] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:44:49.015] Imported new chain segment number=5319 hash=7fed49..1f5c9f blocks=1 txs=0 mgas=0.000 elapsed=5.696ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:54.015] Imported new chain segment number=5320 hash=daa3fd..7f7756 blocks=1 txs=0 mgas=0.000 elapsed=5.465ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:55.875] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:44:59.016] Imported new chain segment number=5321 hash=6e859d..d8a3f0 blocks=1 txs=0 mgas=0.000 elapsed=6.082ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:04.018] Imported new chain segment number=5322 hash=b759d1..7be69c blocks=1 txs=0 mgas=0.000 elapsed=6.644ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:05.902] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:45:09.022] Imported new chain segment number=5323 hash=04428d..ebe038 blocks=1 txs=0 mgas=0.000 elapsed=6.990ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:14.019] Imported new chain segment number=5324 hash=555b71..0c1ab0 blocks=1 txs=0 mgas=0.000 elapsed=6.935ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:15.922] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:45:19.012] Imported new chain segment number=5325 hash=9b47b1..f59211 blocks=1 txs=0 mgas=0.000 elapsed=6.333ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:24.015] Imported new chain segment number=5326 hash=a40dd7..6f6275 blocks=1 txs=0 mgas=0.000 elapsed=5.659ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:25.944] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:45:29.018] Imported new chain segment number=5327 hash=0bfc99..feb9d6 blocks=1 txs=0 mgas=0.000 elapsed=6.699ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:34.021] Imported new chain segment number=5328 hash=4fca40..f33713 blocks=1 txs=0 mgas=0.000 elapsed=7.582ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:35.965] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:45:39.016] Imported new chain segment number=5329 hash=31d335..2bfec4 blocks=1 txs=0 mgas=0.000 elapsed=6.404ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:44.011] Imported new chain segment number=5330 hash=98764b..631d8a blocks=1 txs=0 mgas=0.000 elapsed=4.449ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:45.983] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:45:49.011] Imported new chain segment number=5331 hash=d090f3..c06b8f blocks=1 txs=0 mgas=0.000 elapsed=5.559ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:54.017] Imported new chain segment number=5332 hash=edbc1a..3913bd blocks=1 txs=0 mgas=0.000 elapsed=5.741ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:56.004] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:45:59.014] Imported new chain segment number=5333 hash=b725fd..74d251 blocks=1 txs=0 mgas=0.000 elapsed=6.160ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:04.019] Imported new chain segment number=5334 hash=610048..814ab5 blocks=1 txs=0 mgas=0.000 elapsed=5.950ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:06.024] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:46:09.014] Imported new chain segment number=5335 hash=353716..3a8d87 blocks=1 txs=0 mgas=0.000 elapsed=4.902ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:14.011] Imported new chain segment number=5336 hash=b17e27..6848cf blocks=1 txs=0 mgas=0.000 elapsed=4.577ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:16.046] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:46:19.017] Imported new chain segment number=5337 hash=e809c1..0746b1 blocks=1 txs=0 mgas=0.000 elapsed=6.130ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:24.015] Imported new chain segment number=5338 hash=ad7707..f4e706 blocks=1 txs=0 mgas=0.000 elapsed=6.193ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:26.066] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:46:29.015] Imported new chain segment number=5339 hash=8dc7af..7a5f82 blocks=1 txs=0 mgas=0.000 elapsed=5.738ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:34.019] Imported new chain segment number=5340 hash=a38e41..f1db67 blocks=1 txs=0 mgas=0.000 elapsed=6.392ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:36.087] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:46:39.012] Imported new chain segment number=5341 hash=3192ae..c1c4d1 blocks=1 txs=0 mgas=0.000 elapsed=5.200ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:44.010] Imported new chain segment number=5342 hash=db647a..24e5a8 blocks=1 txs=0 mgas=0.000 elapsed=4.359ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:46.108] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:46:49.015] Imported new chain segment number=5343 hash=6b7eb6..2873ce blocks=1 txs=0 mgas=0.000 elapsed=5.339ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:54.020] Imported new chain segment number=5344 hash=38c9b0..863722 blocks=1 txs=0 mgas=0.000 elapsed=8.357ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:56.128] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:46:59.012] Imported new chain segment number=5345 hash=c3f87f..d5e30d blocks=1 txs=0 mgas=0.000 elapsed=5.074ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:04.017] Imported new chain segment number=5346 hash=74b0f6..4aa581 blocks=1 txs=0 mgas=0.000 elapsed=6.863ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:06.147] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:47:09.020] Imported new chain segment number=5347 hash=d4c2a6..36a1bf blocks=1 txs=0 mgas=0.000 elapsed=6.551ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:14.013] Imported new chain segment number=5348 hash=19b297..4e7cd7 blocks=1 txs=0 mgas=0.000 elapsed=6.179ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:16.168] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:47:19.018] Imported new chain segment number=5349 hash=72b1ea..6fc997 blocks=1 txs=0 mgas=0.000 elapsed=6.108ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:24.017] Imported new chain segment number=5350 hash=8e97cb..1d87c2 blocks=1 txs=0 mgas=0.000 elapsed=5.780ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:26.192] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:47:29.018] Imported new chain segment number=5351 hash=5210ef..3601da blocks=1 txs=0 mgas=0.000 elapsed=6.095ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:34.018] Imported new chain segment number=5352 hash=4c0d5a..d8829c blocks=1 txs=0 mgas=0.000 elapsed=6.639ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:36.215] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:47:39.010] Imported new chain segment number=5353 hash=f34af3..ff8a9a blocks=1 txs=0 mgas=0.000 elapsed=3.707ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:44.018] Imported new chain segment number=5354 hash=ad4044..2b44a0 blocks=1 txs=0 mgas=0.000 elapsed=7.178ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:46.237] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:47:49.015] Imported new chain segment number=5355 hash=f741e9..e3f404 blocks=1 txs=0 mgas=0.000 elapsed=5.716ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:54.019] Imported new chain segment number=5356 hash=1a2bbe..26f6ff blocks=1 txs=0 mgas=0.000 elapsed=7.706ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:56.257] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:47:59.017] Imported new chain segment number=5357 hash=4a513c..e9df0b blocks=1 txs=0 mgas=0.000 elapsed=5.170ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:04.019] Imported new chain segment number=5358 hash=675458..23c378 blocks=1 txs=0 mgas=0.000 elapsed=7.881ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:06.279] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:48:09.015] Imported new chain segment number=5359 hash=c4b32d..594788 blocks=1 txs=0 mgas=0.000 elapsed=5.265ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:14.018] Imported new chain segment number=5360 hash=4b23c3..610dea blocks=1 txs=0 mgas=0.000 elapsed=9.054ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:16.296] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:48:19.016] Imported new chain segment number=5361 hash=83984c..5d841c blocks=1 txs=0 mgas=0.000 elapsed=5.561ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:24.015] Imported new chain segment number=5362 hash=258330..7ac473 blocks=1 txs=0 mgas=0.000 elapsed=5.657ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:26.319] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:48:29.020] Imported new chain segment number=5363 hash=8e49c1..3dc524 blocks=1 txs=0 mgas=0.000 elapsed=6.149ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:34.012] Imported new chain segment number=5364 hash=b8496d..384ff1 blocks=1 txs=0 mgas=0.000 elapsed=6.150ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:36.340] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:48:39.010] Imported new chain segment number=5365 hash=67b359..977ab8 blocks=1 txs=0 mgas=0.000 elapsed=3.938ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:44.010] Imported new chain segment number=5366 hash=7ef566..b1fb91 blocks=1 txs=0 mgas=0.000 elapsed=4.550ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:46.360] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:48:49.018] Imported new chain segment number=5367 hash=a8ecc1..f92a9f blocks=1 txs=0 mgas=0.000 elapsed=6.221ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:54.019] Imported new chain segment number=5368 hash=8dc781..a064c7 blocks=1 txs=0 mgas=0.000 elapsed=7.503ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:56.383] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:48:59.016] Imported new chain segment number=5369 hash=8835c0..1f5c2e blocks=1 txs=0 mgas=0.000 elapsed=4.567ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:04.019] Imported new chain segment number=5370 hash=8e4d73..cafcda blocks=1 txs=0 mgas=0.000 elapsed=6.118ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:06.406] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:49:09.016] Imported new chain segment number=5371 hash=5e3a67..a759f2 blocks=1 txs=0 mgas=0.000 elapsed=4.952ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:14.012] Imported new chain segment number=5372 hash=cb5080..7e2e50 blocks=1 txs=0 mgas=0.000 elapsed=5.109ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:16.424] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:49:19.012] Imported new chain segment number=5373 hash=42a3ff..1aa48d blocks=1 txs=0 mgas=0.000 elapsed=4.629ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:24.018] Imported new chain segment number=5374 hash=9386c2..2968c8 blocks=1 txs=0 mgas=0.000 elapsed=8.228ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:26.443] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:49:29.018] Imported new chain segment number=5375 hash=985767..58b2bf blocks=1 txs=0 mgas=0.000 elapsed=6.228ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:34.010] Imported new chain segment number=5376 hash=25662c..7b0a64 blocks=1 txs=0 mgas=0.000 elapsed=4.145ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:36.463] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:49:39.015] Imported new chain segment number=5377 hash=bc9be3..2e98b3 blocks=1 txs=0 mgas=0.000 elapsed=5.934ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:44.012] Imported new chain segment number=5378 hash=2c5d20..9dc422 blocks=1 txs=0 mgas=0.000 elapsed=5.710ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:46.484] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:49:49.011] Imported new chain segment number=5379 hash=5d7bf5..714443 blocks=1 txs=0 mgas=0.000 elapsed=4.638ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:54.012] Imported new chain segment number=5380 hash=d02c92..130b36 blocks=1 txs=0 mgas=0.000 elapsed=5.379ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:56.501] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:49:59.012] Imported new chain segment number=5381 hash=bf0c68..9fde68 blocks=1 txs=0 mgas=0.000 elapsed=5.460ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:04.011] Imported new chain segment number=5382 hash=e9aade..c32dae blocks=1 txs=0 mgas=0.000 elapsed=4.525ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:06.522] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:50:09.015] Imported new chain segment number=5383 hash=a4fe5a..623777 blocks=1 txs=0 mgas=0.000 elapsed=5.967ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:14.011] Imported new chain segment number=5384 hash=96517e..27ba47 blocks=1 txs=0 mgas=0.000 elapsed=4.176ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:16.540] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:50:19.015] Imported new chain segment number=5385 hash=65e423..dd02c2 blocks=1 txs=0 mgas=0.000 elapsed=4.845ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:24.010] Imported new chain segment number=5386 hash=9bd536..a09b9e blocks=1 txs=0 mgas=0.000 elapsed=4.241ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:26.562] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:50:29.017] Imported new chain segment number=5387 hash=d1fdbf..1119b3 blocks=1 txs=0 mgas=0.000 elapsed=6.010ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:34.017] Imported new chain segment number=5388 hash=d3072a..30d99f blocks=1 txs=0 mgas=0.000 elapsed=6.510ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:36.584] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:50:39.015] Imported new chain segment number=5389 hash=aaa949..d138af blocks=1 txs=0 mgas=0.000 elapsed=5.903ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:44.014] Imported new chain segment number=5390 hash=8e471e..eb6cea blocks=1 txs=0 mgas=0.000 elapsed=5.176ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:46.607] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:50:49.015] Imported new chain segment number=5391 hash=2bae45..7aa423 blocks=1 txs=0 mgas=0.000 elapsed=5.437ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:54.014] Imported new chain segment number=5392 hash=7bf5da..bb9a99 blocks=1 txs=0 mgas=0.000 elapsed=5.144ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:56.628] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:50:59.015] Imported new chain segment number=5393 hash=43bb41..7936dc blocks=1 txs=0 mgas=0.000 elapsed=4.931ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:04.016] Imported new chain segment number=5394 hash=38aebb..53dbb4 blocks=1 txs=0 mgas=0.000 elapsed=5.798ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:06.648] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:51:09.019] Imported new chain segment number=5395 hash=42e469..4ac447 blocks=1 txs=0 mgas=0.000 elapsed=6.881ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:14.010] Imported new chain segment number=5396 hash=8efe1b..6590f3 blocks=1 txs=0 mgas=0.000 elapsed=4.186ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:16.665] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:51:19.015] Imported new chain segment number=5397 hash=312271..0516d1 blocks=1 txs=0 mgas=0.000 elapsed=5.248ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:24.012] Imported new chain segment number=5398 hash=dcbeb9..e153b8 blocks=1 txs=0 mgas=0.000 elapsed=4.789ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:26.683] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:51:29.018] Imported new chain segment number=5399 hash=54e0fa..1abbca blocks=1 txs=0 mgas=0.000 elapsed=7.378ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:34.016] Imported new chain segment number=5400 hash=cc0529..5a0f5b blocks=1 txs=0 mgas=0.000 elapsed=5.755ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:36.704] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:51:39.017] Imported new chain segment number=5401 hash=105241..8f3a4d blocks=1 txs=0 mgas=0.000 elapsed=7.009ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:44.015] Imported new chain segment number=5402 hash=182439..7b9458 blocks=1 txs=0 mgas=0.000 elapsed=6.415ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:46.729] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:51:49.017] Imported new chain segment number=5403 hash=1fd9dd..18bb5a blocks=1 txs=0 mgas=0.000 elapsed=7.561ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:54.009] Imported new chain segment number=5404 hash=1415a3..312184 blocks=1 txs=0 mgas=0.000 elapsed=3.738ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:56.750] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:51:59.011] Imported new chain segment number=5405 hash=4caeda..9e3e39 blocks=1 txs=0 mgas=0.000 elapsed=5.144ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:04.010] Imported new chain segment number=5406 hash=b6cc89..d47446 blocks=1 txs=0 mgas=0.000 elapsed=4.861ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:06.770] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:52:09.016] Imported new chain segment number=5407 hash=f4cfa0..086e1f blocks=1 txs=0 mgas=0.000 elapsed=6.741ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:14.015] Imported new chain segment number=5408 hash=49701f..acaffb blocks=1 txs=0 mgas=0.000 elapsed=6.018ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:16.792] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:52:19.015] Imported new chain segment number=5409 hash=e6b4ce..75a2d2 blocks=1 txs=0 mgas=0.000 elapsed=5.013ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:24.021] Imported new chain segment number=5410 hash=f2720c..f9f261 blocks=1 txs=0 mgas=0.000 elapsed=9.574ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:26.813] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:52:29.017] Imported new chain segment number=5411 hash=18f87e..e3d0b4 blocks=1 txs=0 mgas=0.000 elapsed=6.708ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:34.018] Imported new chain segment number=5412 hash=5f099d..dcd263 blocks=1 txs=0 mgas=0.000 elapsed=7.064ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:36.835] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:52:39.021] Imported new chain segment number=5413 hash=53c6b9..4781eb blocks=1 txs=0 mgas=0.000 elapsed=7.310ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:44.016] Imported new chain segment number=5414 hash=f45d5e..df7aa8 blocks=1 txs=0 mgas=0.000 elapsed=5.607ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:46.856] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:52:49.013] Imported new chain segment number=5415 hash=e60863..226277 blocks=1 txs=0 mgas=0.000 elapsed=4.802ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:54.010] Imported new chain segment number=5416 hash=199555..7c25cc blocks=1 txs=0 mgas=0.000 elapsed=4.552ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:56.876] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:52:59.010] Imported new chain segment number=5417 hash=8eaedf..59c5cc blocks=1 txs=0 mgas=0.000 elapsed=4.815ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:04.027] Imported new chain segment number=5418 hash=667b98..b81c10 blocks=1 txs=0 mgas=0.000 elapsed=12.033ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:06.897] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:53:09.018] Imported new chain segment number=5419 hash=da8c86..fa9651 blocks=1 txs=0 mgas=0.000 elapsed=7.074ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:14.010] Imported new chain segment number=5420 hash=e60371..a287b8 blocks=1 txs=0 mgas=0.000 elapsed=4.279ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:16.917] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:53:19.011] Imported new chain segment number=5421 hash=283d36..fc1669 blocks=1 txs=0 mgas=0.000 elapsed=4.403ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:24.017] Imported new chain segment number=5422 hash=d419e2..d61d6b blocks=1 txs=0 mgas=0.000 elapsed=5.815ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:26.937] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:53:29.020] Imported new chain segment number=5423 hash=9098eb..3963e3 blocks=1 txs=0 mgas=0.000 elapsed=7.242ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:34.019] Imported new chain segment number=5424 hash=44c0b4..7fecd9 blocks=1 txs=0 mgas=0.000 elapsed=7.525ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:36.956] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:53:39.018] Imported new chain segment number=5425 hash=50c1a9..83f6ba blocks=1 txs=0 mgas=0.000 elapsed=6.620ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:44.018] Imported new chain segment number=5426 hash=5e60a8..2294b0 blocks=1 txs=0 mgas=0.000 elapsed=6.058ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:46.973] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:53:49.010] Imported new chain segment number=5427 hash=75e1e4..4289a0 blocks=1 txs=0 mgas=0.000 elapsed=5.138ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:54.014] Imported new chain segment number=5428 hash=00465e..63232b blocks=1 txs=0 mgas=0.000 elapsed=6.538ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:56.996] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:53:59.019] Imported new chain segment number=5429 hash=03045c..e7ec31 blocks=1 txs=0 mgas=0.000 elapsed=5.868ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:04.018] Imported new chain segment number=5430 hash=f5188e..dee785 blocks=1 txs=0 mgas=0.000 elapsed=6.278ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:07.018] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:54:09.016] Imported new chain segment number=5431 hash=cb013f..dff180 blocks=1 txs=0 mgas=0.000 elapsed=5.742ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:14.012] Imported new chain segment number=5432 hash=d5f3ca..af7e8c blocks=1 txs=0 mgas=0.000 elapsed=5.574ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:17.038] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:54:19.018] Imported new chain segment number=5433 hash=a47793..3ba0f0 blocks=1 txs=0 mgas=0.000 elapsed=8.742ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:24.014] Imported new chain segment number=5434 hash=ca0a16..1a08f8 blocks=1 txs=0 mgas=0.000 elapsed=4.810ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:27.060] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:54:29.012] Imported new chain segment number=5435 hash=109963..1f1988 blocks=1 txs=0 mgas=0.000 elapsed=5.725ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:34.016] Imported new chain segment number=5436 hash=dc50ea..b7ae82 blocks=1 txs=0 mgas=0.000 elapsed=5.423ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:37.082] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:54:39.019] Imported new chain segment number=5437 hash=4a85d6..1006ab blocks=1 txs=0 mgas=0.000 elapsed=8.674ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:44.011] Imported new chain segment number=5438 hash=b4110e..5f04a2 blocks=1 txs=0 mgas=0.000 elapsed=5.527ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:47.104] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:54:49.014] Imported new chain segment number=5439 hash=c29937..4c3241 blocks=1 txs=0 mgas=0.000 elapsed=4.680ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:54.019] Imported new chain segment number=5440 hash=c95972..9a9873 blocks=1 txs=0 mgas=0.000 elapsed=6.015ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:57.127] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:54:59.016] Imported new chain segment number=5441 hash=85bca2..c4487e blocks=1 txs=0 mgas=0.000 elapsed=5.861ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:04.018] Imported new chain segment number=5442 hash=09558e..c7f88b blocks=1 txs=0 mgas=0.000 elapsed=6.020ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:07.146] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:55:09.012] Imported new chain segment number=5443 hash=b613b7..7e3fb6 blocks=1 txs=0 mgas=0.000 elapsed=4.535ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:14.012] Imported new chain segment number=5444 hash=f6e1df..e3f99d blocks=1 txs=0 mgas=0.000 elapsed=4.616ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:17.166] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:55:19.027] Imported new chain segment number=5445 hash=644654..fd80d5 blocks=1 txs=0 mgas=0.000 elapsed=11.493ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:24.018] Imported new chain segment number=5446 hash=fd96ad..a5be8c blocks=1 txs=0 mgas=0.000 elapsed=6.711ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:27.188] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:55:29.016] Imported new chain segment number=5447 hash=4838e4..0e3686 blocks=1 txs=0 mgas=0.000 elapsed=4.697ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:34.011] Imported new chain segment number=5448 hash=21966a..d7573e blocks=1 txs=0 mgas=0.000 elapsed=3.916ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:37.209] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:55:39.014] Imported new chain segment number=5449 hash=a8f950..5c21d7 blocks=1 txs=0 mgas=0.000 elapsed=6.522ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:44.013] Imported new chain segment number=5450 hash=ccc124..b1bfc9 blocks=1 txs=0 mgas=0.000 elapsed=4.875ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:47.231] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:55:49.015] Imported new chain segment number=5451 hash=39393d..b0bd33 blocks=1 txs=0 mgas=0.000 elapsed=6.019ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:54.016] Imported new chain segment number=5452 hash=dccbd3..bd67fc blocks=1 txs=0 mgas=0.000 elapsed=5.870ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:57.247] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:55:59.014] Imported new chain segment number=5453 hash=712e09..8d30fe blocks=1 txs=0 mgas=0.000 elapsed=5.291ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:04.011] Imported new chain segment number=5454 hash=899337..870095 blocks=1 txs=0 mgas=0.000 elapsed=4.943ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:07.266] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:56:09.020] Imported new chain segment number=5455 hash=263cc6..84bfb8 blocks=1 txs=0 mgas=0.000 elapsed=6.814ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:14.015] Imported new chain segment number=5456 hash=9c6e38..62b9be blocks=1 txs=0 mgas=0.000 elapsed=5.952ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:17.284] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:56:19.012] Imported new chain segment number=5457 hash=a13811..3f815a blocks=1 txs=0 mgas=0.000 elapsed=5.357ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:24.012] Imported new chain segment number=5458 hash=3b3da3..9ac966 blocks=1 txs=0 mgas=0.000 elapsed=5.958ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:27.303] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:56:29.017] Imported new chain segment number=5459 hash=aa343e..72dc0b blocks=1 txs=0 mgas=0.000 elapsed=5.946ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:34.017] Imported new chain segment number=5460 hash=fe4d96..48f1d7 blocks=1 txs=0 mgas=0.000 elapsed=5.424ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:37.324] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:56:39.016] Imported new chain segment number=5461 hash=79960a..bfbfb8 blocks=1 txs=0 mgas=0.000 elapsed=7.104ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:44.015] Imported new chain segment number=5462 hash=1c043a..7e4051 blocks=1 txs=0 mgas=0.000 elapsed=5.146ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:47.345] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:56:49.009] Imported new chain segment number=5463 hash=5fd5c2..e4cbec blocks=1 txs=0 mgas=0.000 elapsed=4.997ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:54.014] Imported new chain segment number=5464 hash=219ea7..55d94e blocks=1 txs=0 mgas=0.000 elapsed=5.101ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:57.365] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:56:59.013] Imported new chain segment number=5465 hash=75b819..a7125b blocks=1 txs=0 mgas=0.000 elapsed=5.379ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:04.013] Imported new chain segment number=5466 hash=8a34c9..d49e00 blocks=1 txs=0 mgas=0.000 elapsed=6.308ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:07.384] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:57:09.015] Imported new chain segment number=5467 hash=0db2ef..92ed2b blocks=1 txs=0 mgas=0.000 elapsed=4.730ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:14.024] Imported new chain segment number=5468 hash=9868f1..59dded blocks=1 txs=0 mgas=0.000 elapsed=10.170ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:17.405] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:57:19.016] Imported new chain segment number=5469 hash=21323e..d9727b blocks=1 txs=0 mgas=0.000 elapsed=5.878ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:24.018] Imported new chain segment number=5470 hash=c4bfad..1fdf26 blocks=1 txs=0 mgas=0.000 elapsed=7.192ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:27.425] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:57:29.018] Imported new chain segment number=5471 hash=28e4e3..007c6d blocks=1 txs=0 mgas=0.000 elapsed=5.740ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:34.012] Imported new chain segment number=5472 hash=ae65f2..168772 blocks=1 txs=0 mgas=0.000 elapsed=5.912ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:37.445] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:57:39.017] Imported new chain segment number=5473 hash=3cfaba..91f214 blocks=1 txs=0 mgas=0.000 elapsed=7.110ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:44.010] Imported new chain segment number=5474 hash=831c73..961f96 blocks=1 txs=0 mgas=0.000 elapsed=4.547ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:47.468] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:57:49.012] Imported new chain segment number=5475 hash=31d0b3..27f499 blocks=1 txs=0 mgas=0.000 elapsed=4.671ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:54.016] Imported new chain segment number=5476 hash=47d863..3d98bd blocks=1 txs=0 mgas=0.000 elapsed=6.472ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:57.490] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:57:59.015] Imported new chain segment number=5477 hash=f17b15..8e695c blocks=1 txs=0 mgas=0.000 elapsed=5.718ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:04.013] Imported new chain segment number=5478 hash=505f5e..3689ec blocks=1 txs=0 mgas=0.000 elapsed=4.971ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:07.508] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:58:09.012] Imported new chain segment number=5479 hash=fc1ff1..4b0a6d blocks=1 txs=0 mgas=0.000 elapsed=4.601ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:14.018] Imported new chain segment number=5480 hash=1d65ca..904f03 blocks=1 txs=0 mgas=0.000 elapsed=6.494ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:17.527] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:58:19.011] Imported new chain segment number=5481 hash=c606ed..59d4d4 blocks=1 txs=0 mgas=0.000 elapsed=4.383ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:24.013] Imported new chain segment number=5482 hash=fcf02d..5bf51f blocks=1 txs=0 mgas=0.000 elapsed=5.734ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:27.546] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:58:29.016] Imported new chain segment number=5483 hash=684ef3..2b82e0 blocks=1 txs=0 mgas=0.000 elapsed=5.560ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:34.019] Imported new chain segment number=5484 hash=1bc08b..914e92 blocks=1 txs=0 mgas=0.000 elapsed=7.522ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:37.565] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:58:39.015] Imported new chain segment number=5485 hash=3457cf..2b2d26 blocks=1 txs=0 mgas=0.000 elapsed=6.578ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:44.013] Imported new chain segment number=5486 hash=c95851..347859 blocks=1 txs=0 mgas=0.000 elapsed=5.152ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:47.585] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:58:49.017] Imported new chain segment number=5487 hash=dd3813..0df606 blocks=1 txs=0 mgas=0.000 elapsed=5.278ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:54.015] Imported new chain segment number=5488 hash=108b49..643149 blocks=1 txs=0 mgas=0.000 elapsed=5.281ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:57.608] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:58:59.015] Imported new chain segment number=5489 hash=c993d8..f37857 blocks=1 txs=0 mgas=0.000 elapsed=5.613ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:04.014] Imported new chain segment number=5490 hash=a2c367..ebb5a3 blocks=1 txs=0 mgas=0.000 elapsed=6.981ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:07.629] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:59:09.023] Imported new chain segment number=5491 hash=7ffb2a..ef52d4 blocks=1 txs=0 mgas=0.000 elapsed=8.796ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:14.011] Imported new chain segment number=5492 hash=34289c..34bef5 blocks=1 txs=0 mgas=0.000 elapsed=4.701ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:17.653] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:59:19.020] Imported new chain segment number=5493 hash=0b2534..e3dd78 blocks=1 txs=0 mgas=0.000 elapsed=5.442ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:24.016] Imported new chain segment number=5494 hash=083814..95cde8 blocks=1 txs=0 mgas=0.000 elapsed=5.303ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:27.673] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:59:29.018] Imported new chain segment number=5495 hash=a3807b..14b7fe blocks=1 txs=0 mgas=0.000 elapsed=6.476ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:34.014] Imported new chain segment number=5496 hash=cb1778..953ccf blocks=1 txs=0 mgas=0.000 elapsed=4.625ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:37.695] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:59:39.010] Imported new chain segment number=5497 hash=582c90..22065f blocks=1 txs=0 mgas=0.000 elapsed=4.536ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:44.017] Imported new chain segment number=5498 hash=966e24..d04296 blocks=1 txs=0 mgas=0.000 elapsed=5.931ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:47.715] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:59:49.009] Imported new chain segment number=5499 hash=ceb351..6556d3 blocks=1 txs=0 mgas=0.000 elapsed=4.715ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:54.018] Imported new chain segment number=5500 hash=adb578..770108 blocks=1 txs=0 mgas=0.000 elapsed=6.433ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:57.736] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:59:59.020] Imported new chain segment number=5501 hash=fd8929..418cfc blocks=1 txs=0 mgas=0.000 elapsed=8.208ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:04.018] Imported new chain segment number=5502 hash=41029f..e454e8 blocks=1 txs=0 mgas=0.000 elapsed=6.660ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:07.755] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:00:09.018] Imported new chain segment number=5503 hash=b43b68..5ae7c2 blocks=1 txs=0 mgas=0.000 elapsed=7.883ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:14.020] Imported new chain segment number=5504 hash=77df02..f011b2 blocks=1 txs=0 mgas=0.000 elapsed=8.418ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:17.774] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:00:19.011] Imported new chain segment number=5505 hash=595e55..798890 blocks=1 txs=0 mgas=0.000 elapsed=4.258ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:24.018] Imported new chain segment number=5506 hash=4b5d89..fbd4a6 blocks=1 txs=0 mgas=0.000 elapsed=5.957ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:27.796] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:00:29.018] Imported new chain segment number=5507 hash=6f4050..8657eb blocks=1 txs=0 mgas=0.000 elapsed=7.634ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:34.019] Imported new chain segment number=5508 hash=751add..9d218d blocks=1 txs=0 mgas=0.000 elapsed=7.904ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:37.816] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:00:39.015] Imported new chain segment number=5509 hash=1149f3..e238a8 blocks=1 txs=0 mgas=0.000 elapsed=4.752ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:44.014] Imported new chain segment number=5510 hash=8900b2..adc7a6 blocks=1 txs=0 mgas=0.000 elapsed=4.387ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:47.837] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:00:49.014] Imported new chain segment number=5511 hash=deec43..8d0fbe blocks=1 txs=0 mgas=0.000 elapsed=6.074ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:54.015] Imported new chain segment number=5512 hash=7d24e1..cba917 blocks=1 txs=0 mgas=0.000 elapsed=6.524ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:57.857] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:00:59.011] Imported new chain segment number=5513 hash=4c85d5..5c8acd blocks=1 txs=0 mgas=0.000 elapsed=4.808ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:04.016] Imported new chain segment number=5514 hash=313203..f3678a blocks=1 txs=0 mgas=0.000 elapsed=5.671ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:07.878] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:01:09.018] Imported new chain segment number=5515 hash=75b708..1fb55e blocks=1 txs=0 mgas=0.000 elapsed=8.357ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:14.010] Imported new chain segment number=5516 hash=c1c27e..15bd43 blocks=1 txs=0 mgas=0.000 elapsed=4.535ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:17.899] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:01:19.018] Imported new chain segment number=5517 hash=c15005..efb369 blocks=1 txs=0 mgas=0.000 elapsed=7.183ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:24.023] Imported new chain segment number=5518 hash=c32024..b47fd2 blocks=1 txs=0 mgas=0.000 elapsed=8.645ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:27.921] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:01:29.019] Imported new chain segment number=5519 hash=e9d065..52e4ee blocks=1 txs=0 mgas=0.000 elapsed=7.014ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:34.018] Imported new chain segment number=5520 hash=7b285f..0f8563 blocks=1 txs=0 mgas=0.000 elapsed=4.988ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:37.943] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:01:39.015] Imported new chain segment number=5521 hash=44c33d..d03b2d blocks=1 txs=0 mgas=0.000 elapsed=5.829ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:44.019] Imported new chain segment number=5522 hash=de70ec..0a7359 blocks=1 txs=0 mgas=0.000 elapsed=7.851ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:47.966] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:01:49.011] Imported new chain segment number=5523 hash=b280eb..724667 blocks=1 txs=0 mgas=0.000 elapsed=4.930ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:54.017] Imported new chain segment number=5524 hash=b3ce91..9f9610 blocks=1 txs=0 mgas=0.000 elapsed=7.620ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:57.986] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:01:59.019] Imported new chain segment number=5525 hash=e8858c..1df3bc blocks=1 txs=0 mgas=0.000 elapsed=6.818ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:04.027] Imported new chain segment number=5526 hash=f6681c..f0805e blocks=1 txs=0 mgas=0.000 elapsed=12.990ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:08.005] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:02:09.010] Imported new chain segment number=5527 hash=f3dbb5..f248ba blocks=1 txs=0 mgas=0.000 elapsed=4.660ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:14.011] Imported new chain segment number=5528 hash=98dd92..aab5cd blocks=1 txs=0 mgas=0.000 elapsed=5.635ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:18.024] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:02:19.014] Imported new chain segment number=5529 hash=40fbcc..8461ac blocks=1 txs=0 mgas=0.000 elapsed=5.746ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:24.019] Imported new chain segment number=5530 hash=8f76ce..3deab5 blocks=1 txs=0 mgas=0.000 elapsed=7.796ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:28.046] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:02:29.017] Imported new chain segment number=5531 hash=1d1751..51d764 blocks=1 txs=0 mgas=0.000 elapsed=6.128ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:34.020] Imported new chain segment number=5532 hash=63ee6f..288294 blocks=1 txs=0 mgas=0.000 elapsed=7.558ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:38.066] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:02:39.013] Imported new chain segment number=5533 hash=a973b2..afcd06 blocks=1 txs=0 mgas=0.000 elapsed=5.104ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:44.012] Imported new chain segment number=5534 hash=122c6e..3e72af blocks=1 txs=0 mgas=0.000 elapsed=6.813ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:48.084] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:02:49.025] Imported new chain segment number=5535 hash=2fe9be..bb751a blocks=1 txs=0 mgas=0.000 elapsed=11.191ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:54.013] Imported new chain segment number=5536 hash=2040db..366688 blocks=1 txs=0 mgas=0.000 elapsed=5.293ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:58.104] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:02:59.034] Imported new chain segment number=5537 hash=dcff13..3ddfb8 blocks=1 txs=0 mgas=0.000 elapsed=13.096ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:04.033] Imported new chain segment number=5538 hash=d87750..8ab4df blocks=1 txs=0 mgas=0.000 elapsed=19.651ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:08.126] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:03:09.037] Imported new chain segment number=5539 hash=b46817..98d113 blocks=1 txs=0 mgas=0.000 elapsed=13.259ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:14.030] Imported new chain segment number=5540 hash=4f9a48..068eee blocks=1 txs=0 mgas=0.000 elapsed=12.297ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:18.148] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:03:23.575] Imported new chain segment number=5541 hash=044f6b..53fb24 blocks=1 txs=0 mgas=0.000 elapsed=1.514s mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:24.786] Imported new chain segment number=5542 hash=6d27ac..bdec06 blocks=1 txs=0 mgas=0.000 elapsed=21.627ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:28.167] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:03:29.039] Imported new chain segment number=5543 hash=af48af..3a04b2 blocks=1 txs=0 mgas=0.000 elapsed=21.769ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:34.043] Imported new chain segment number=5544 hash=98bc5e..27000e blocks=1 txs=0 mgas=0.000 elapsed=16.214ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:38.186] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:03:39.028] Imported new chain segment number=5545 hash=f95f66..7b07c8 blocks=1 txs=0 mgas=0.000 elapsed=12.237ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:44.044] Imported new chain segment number=5546 hash=2b1a1c..5e2d54 blocks=1 txs=0 mgas=0.000 elapsed=24.424ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:48.206] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:03:49.048] Imported new chain segment number=5547 hash=23f7e1..4ae156 blocks=1 txs=0 mgas=0.000 elapsed=31.551ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:54.019] Imported new chain segment number=5548 hash=ab83e9..8326ab blocks=1 txs=0 mgas=0.000 elapsed=12.441ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:58.227] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:03:59.036] Imported new chain segment number=5549 hash=a32c65..a5516f blocks=1 txs=0 mgas=0.000 elapsed=15.120ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:04.028] Imported new chain segment number=5550 hash=151c9a..1f3154 blocks=1 txs=0 mgas=0.000 elapsed=18.467ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:08.245] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:04:09.010] Imported new chain segment number=5551 hash=57d6a5..07e819 blocks=1 txs=0 mgas=0.000 elapsed=4.049ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:14.015] Imported new chain segment number=5552 hash=f5725b..ee9807 blocks=1 txs=0 mgas=0.000 elapsed=8.019ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:18.265] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:04:19.013] Imported new chain segment number=5553 hash=82545a..8dfb22 blocks=1 txs=0 mgas=0.000 elapsed=6.686ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:24.015] Imported new chain segment number=5554 hash=57cafa..bf7f38 blocks=1 txs=0 mgas=0.000 elapsed=5.464ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:28.285] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:04:29.014] Imported new chain segment number=5555 hash=8be266..bbfffa blocks=1 txs=0 mgas=0.000 elapsed=5.202ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:34.015] Imported new chain segment number=5556 hash=cb0e72..ed8d27 blocks=1 txs=0 mgas=0.000 elapsed=5.604ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:38.305] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:04:39.012] Imported new chain segment number=5557 hash=dbc1e9..f6e150 blocks=1 txs=0 mgas=0.000 elapsed=6.329ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:44.013] Imported new chain segment number=5558 hash=277e8b..fa41a8 blocks=1 txs=0 mgas=0.000 elapsed=5.766ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:48.322] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:04:49.012] Imported new chain segment number=5559 hash=b86cd6..5313fd blocks=1 txs=0 mgas=0.000 elapsed=4.811ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:54.014] Imported new chain segment number=5560 hash=d7e91a..5bdd10 blocks=1 txs=0 mgas=0.000 elapsed=7.484ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:58.342] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:04:59.013] Imported new chain segment number=5561 hash=80472d..b1fb94 blocks=1 txs=0 mgas=0.000 elapsed=5.788ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:04.016] Imported new chain segment number=5562 hash=35fb46..12fb9f blocks=1 txs=0 mgas=0.000 elapsed=6.861ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:08.361] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:05:09.014] Imported new chain segment number=5563 hash=b01c98..23f192 blocks=1 txs=0 mgas=0.000 elapsed=4.685ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:14.015] Imported new chain segment number=5564 hash=0e1eab..0a2b82 blocks=1 txs=0 mgas=0.000 elapsed=5.416ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:18.381] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:05:19.015] Imported new chain segment number=5565 hash=19abe9..67f9d6 blocks=1 txs=0 mgas=0.000 elapsed=6.315ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:24.010] Imported new chain segment number=5566 hash=ec3d48..e2742a blocks=1 txs=0 mgas=0.000 elapsed=4.689ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:28.397] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:05:29.011] Imported new chain segment number=5567 hash=ef0e1c..710fc4 blocks=1 txs=0 mgas=0.000 elapsed=5.098ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:34.014] Imported new chain segment number=5568 hash=61e092..5813d1 blocks=1 txs=0 mgas=0.000 elapsed=5.490ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:38.416] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:05:39.014] Imported new chain segment number=5569 hash=eac5a8..77c4ed blocks=1 txs=0 mgas=0.000 elapsed=5.762ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:44.015] Imported new chain segment number=5570 hash=4b01b8..7014df blocks=1 txs=0 mgas=0.000 elapsed=6.563ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:48.435] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:05:49.015] Imported new chain segment number=5571 hash=9d990f..955785 blocks=1 txs=0 mgas=0.000 elapsed=5.420ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:54.014] Imported new chain segment number=5572 hash=7fee85..6487b5 blocks=1 txs=0 mgas=0.000 elapsed=5.106ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:58.450] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:05:59.016] Imported new chain segment number=5573 hash=22348d..c86b7d blocks=1 txs=0 mgas=0.000 elapsed=8.887ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:04.014] Imported new chain segment number=5574 hash=14f873..f667a6 blocks=1 txs=0 mgas=0.000 elapsed=7.327ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:08.470] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:06:09.014] Imported new chain segment number=5575 hash=6f2bb9..8ac5d8 blocks=1 txs=0 mgas=0.000 elapsed=5.100ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:14.014] Imported new chain segment number=5576 hash=5420c6..5e6e94 blocks=1 txs=0 mgas=0.000 elapsed=6.507ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:18.490] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:06:19.013] Imported new chain segment number=5577 hash=71f49d..28091e blocks=1 txs=0 mgas=0.000 elapsed=4.617ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:24.013] Imported new chain segment number=5578 hash=a47704..0bcdab blocks=1 txs=0 mgas=0.000 elapsed=5.307ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:28.510] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:06:29.018] Imported new chain segment number=5579 hash=306ee5..23c687 blocks=1 txs=0 mgas=0.000 elapsed=7.347ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:34.017] Imported new chain segment number=5580 hash=5f7cdc..e7442b blocks=1 txs=0 mgas=0.000 elapsed=5.200ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:38.531] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:06:39.019] Imported new chain segment number=5581 hash=43a4d0..2ad781 blocks=1 txs=0 mgas=0.000 elapsed=8.470ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:44.013] Imported new chain segment number=5582 hash=2cb688..98171e blocks=1 txs=0 mgas=0.000 elapsed=5.737ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:48.550] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:06:49.015] Imported new chain segment number=5583 hash=7b3769..7d3efe blocks=1 txs=0 mgas=0.000 elapsed=6.213ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:54.016] Imported new chain segment number=5584 hash=b83e50..e124cf blocks=1 txs=0 mgas=0.000 elapsed=7.064ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:58.569] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:06:59.016] Imported new chain segment number=5585 hash=6a68b7..ef8fbd blocks=1 txs=0 mgas=0.000 elapsed=5.950ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:04.009] Imported new chain segment number=5586 hash=14a415..72e8c0 blocks=1 txs=0 mgas=0.000 elapsed=3.966ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:08.587] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:07:09.012] Imported new chain segment number=5587 hash=79ddc2..e9bfe9 blocks=1 txs=0 mgas=0.000 elapsed=5.402ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:14.015] Imported new chain segment number=5588 hash=fa6d69..dba5dd blocks=1 txs=0 mgas=0.000 elapsed=4.972ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:18.607] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:07:19.015] Imported new chain segment number=5589 hash=8a8bbc..dd4e48 blocks=1 txs=0 mgas=0.000 elapsed=5.559ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:24.015] Imported new chain segment number=5590 hash=141124..558811 blocks=1 txs=0 mgas=0.000 elapsed=5.971ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:28.626] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:07:29.017] Imported new chain segment number=5591 hash=086196..cb5f91 blocks=1 txs=0 mgas=0.000 elapsed=6.192ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:34.019] Imported new chain segment number=5592 hash=b8539e..896236 blocks=1 txs=0 mgas=0.000 elapsed=8.464ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:38.645] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:07:39.017] Imported new chain segment number=5593 hash=1b8e4a..613c2e blocks=1 txs=0 mgas=0.000 elapsed=5.971ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:44.018] Imported new chain segment number=5594 hash=972595..f97b1e blocks=1 txs=0 mgas=0.000 elapsed=5.677ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:48.667] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:07:49.017] Imported new chain segment number=5595 hash=06ba2a..8eb6df blocks=1 txs=0 mgas=0.000 elapsed=6.241ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:54.017] Imported new chain segment number=5596 hash=0a7382..b8fa01 blocks=1 txs=0 mgas=0.000 elapsed=7.121ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:58.685] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:07:59.016] Imported new chain segment number=5597 hash=4b9199..2584ef blocks=1 txs=0 mgas=0.000 elapsed=5.607ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:04.014] Imported new chain segment number=5598 hash=9cb757..b0a408 blocks=1 txs=0 mgas=0.000 elapsed=5.195ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:08.705] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:08:09.016] Imported new chain segment number=5599 hash=759c64..f120b4 blocks=1 txs=0 mgas=0.000 elapsed=5.382ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:14.016] Imported new chain segment number=5600 hash=841c83..b6ea0f blocks=1 txs=0 mgas=0.000 elapsed=5.591ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:18.724] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:08:19.014] Imported new chain segment number=5601 hash=4b8dac..34a433 blocks=1 txs=0 mgas=0.000 elapsed=5.781ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:24.012] Imported new chain segment number=5602 hash=b1e0fb..821b31 blocks=1 txs=0 mgas=0.000 elapsed=4.907ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:28.745] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:08:29.015] Imported new chain segment number=5603 hash=e316f7..ec1f9b blocks=1 txs=0 mgas=0.000 elapsed=6.097ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:34.020] Imported new chain segment number=5604 hash=8120fc..acb3ad blocks=1 txs=0 mgas=0.000 elapsed=6.801ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:38.764] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:08:39.012] Imported new chain segment number=5605 hash=abf75f..0b4aa7 blocks=1 txs=0 mgas=0.000 elapsed=6.175ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:44.012] Imported new chain segment number=5606 hash=9474fd..d6952f blocks=1 txs=0 mgas=0.000 elapsed=3.917ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:48.785] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:08:49.011] Imported new chain segment number=5607 hash=199fd6..a8da26 blocks=1 txs=0 mgas=0.000 elapsed=4.631ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:54.019] Imported new chain segment number=5608 hash=f645ec..2c5107 blocks=1 txs=0 mgas=0.000 elapsed=7.398ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:58.804] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:08:59.019] Imported new chain segment number=5609 hash=a09d97..23f252 blocks=1 txs=0 mgas=0.000 elapsed=5.845ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:04.018] Imported new chain segment number=5610 hash=6e6e61..ca147a blocks=1 txs=0 mgas=0.000 elapsed=6.585ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:08.822] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:09:09.013] Imported new chain segment number=5611 hash=1b387f..822341 blocks=1 txs=0 mgas=0.000 elapsed=4.772ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:14.014] Imported new chain segment number=5612 hash=3d5e06..1d4192 blocks=1 txs=0 mgas=0.000 elapsed=6.105ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:18.842] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:09:19.015] Imported new chain segment number=5613 hash=f928ef..1f4637 blocks=1 txs=0 mgas=0.000 elapsed=5.932ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:24.013] Imported new chain segment number=5614 hash=a91349..0b2dff blocks=1 txs=0 mgas=0.000 elapsed=4.913ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:28.864] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:09:29.013] Imported new chain segment number=5615 hash=bda5c4..537460 blocks=1 txs=0 mgas=0.000 elapsed=4.867ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:34.017] Imported new chain segment number=5616 hash=f3ec45..84a264 blocks=1 txs=0 mgas=0.000 elapsed=7.288ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:38.884] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:09:39.015] Imported new chain segment number=5617 hash=d6d482..784003 blocks=1 txs=0 mgas=0.000 elapsed=5.335ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:44.013] Imported new chain segment number=5618 hash=169301..006c94 blocks=1 txs=0 mgas=0.000 elapsed=6.371ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:48.900] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:09:49.014] Imported new chain segment number=5619 hash=cba86e..2ad8e3 blocks=1 txs=0 mgas=0.000 elapsed=7.664ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:54.017] Imported new chain segment number=5620 hash=b8f4ff..711acc blocks=1 txs=0 mgas=0.000 elapsed=8.849ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:58.920] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:09:59.014] Imported new chain segment number=5621 hash=0ea336..3c3aab blocks=1 txs=0 mgas=0.000 elapsed=5.402ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:04.019] Imported new chain segment number=5622 hash=fc3b08..0eb04a blocks=1 txs=0 mgas=0.000 elapsed=10.336ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:08.940] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:10:09.010] Imported new chain segment number=5623 hash=09c53d..cb67bd blocks=1 txs=0 mgas=0.000 elapsed=5.977ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:14.011] Imported new chain segment number=5624 hash=db5400..2d1760 blocks=1 txs=0 mgas=0.000 elapsed=5.223ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:18.960] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:10:19.011] Imported new chain segment number=5625 hash=26909c..64f076 blocks=1 txs=0 mgas=0.000 elapsed=5.689ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:24.014] Imported new chain segment number=5626 hash=1e625e..94d117 blocks=1 txs=0 mgas=0.000 elapsed=5.255ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:28.980] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:10:29.016] Imported new chain segment number=5627 hash=423f73..fe6d7f blocks=1 txs=0 mgas=0.000 elapsed=5.763ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:34.014] Imported new chain segment number=5628 hash=5c649e..d989ac blocks=1 txs=0 mgas=0.000 elapsed=5.388ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:39.004] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:10:39.016] Imported new chain segment number=5629 hash=2351e9..03720a blocks=1 txs=0 mgas=0.000 elapsed=5.857ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:44.018] Imported new chain segment number=5630 hash=ddf7a4..0abc07 blocks=1 txs=0 mgas=0.000 elapsed=6.481ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:49.016] Imported new chain segment number=5631 hash=a99914..45d880 blocks=1 txs=0 mgas=0.000 elapsed=5.419ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:49.023] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:10:54.016] Imported new chain segment number=5632 hash=1be2b9..378057 blocks=1 txs=0 mgas=0.000 elapsed=7.430ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:59.012] Imported new chain segment number=5633 hash=df3013..72635c blocks=1 txs=0 mgas=0.000 elapsed=4.492ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:59.042] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:11:04.014] Imported new chain segment number=5634 hash=558599..cc978b blocks=1 txs=0 mgas=0.000 elapsed=6.329ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:09.013] Imported new chain segment number=5635 hash=ca2471..2e9b6a blocks=1 txs=0 mgas=0.000 elapsed=5.214ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:09.065] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:11:14.018] Imported new chain segment number=5636 hash=b1a328..23fd6e blocks=1 txs=0 mgas=0.000 elapsed=5.977ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:19.015] Imported new chain segment number=5637 hash=f6f8ae..922dfc blocks=1 txs=0 mgas=0.000 elapsed=5.230ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:19.082] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:11:24.017] Imported new chain segment number=5638 hash=ae8e37..41dec5 blocks=1 txs=0 mgas=0.000 elapsed=5.854ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:29.019] Imported new chain segment number=5639 hash=f6112f..1b8cb4 blocks=1 txs=0 mgas=0.000 elapsed=6.810ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:29.109] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:11:34.016] Imported new chain segment number=5640 hash=70dae6..654986 blocks=1 txs=0 mgas=0.000 elapsed=3.898ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:39.014] Imported new chain segment number=5641 hash=d690e0..3cc132 blocks=1 txs=0 mgas=0.000 elapsed=5.976ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:39.130] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:11:44.019] Imported new chain segment number=5642 hash=d64fc8..90130f blocks=1 txs=0 mgas=0.000 elapsed=6.742ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:49.017] Imported new chain segment number=5643 hash=a66cb6..11d632 blocks=1 txs=0 mgas=0.000 elapsed=6.498ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:49.152] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:11:54.011] Imported new chain segment number=5644 hash=f28744..39d20f blocks=1 txs=0 mgas=0.000 elapsed=4.980ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:59.016] Imported new chain segment number=5645 hash=76f3d7..861bb9 blocks=1 txs=0 mgas=0.000 elapsed=5.115ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:59.170] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:12:04.013] Imported new chain segment number=5646 hash=f55c6e..c80329 blocks=1 txs=0 mgas=0.000 elapsed=5.603ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:09.013] Imported new chain segment number=5647 hash=b068ba..3820c0 blocks=1 txs=0 mgas=0.000 elapsed=5.161ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:09.191] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:12:14.017] Imported new chain segment number=5648 hash=5b0309..b4163c blocks=1 txs=0 mgas=0.000 elapsed=6.518ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:19.019] Imported new chain segment number=5649 hash=1e80c1..55ac71 blocks=1 txs=0 mgas=0.000 elapsed=6.480ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:19.211] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:12:24.018] Imported new chain segment number=5650 hash=1424d7..54cff0 blocks=1 txs=0 mgas=0.000 elapsed=7.106ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:29.017] Imported new chain segment number=5651 hash=ce6508..3978bf blocks=1 txs=0 mgas=0.000 elapsed=5.534ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:29.232] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:12:34.018] Imported new chain segment number=5652 hash=edf40a..b023d9 blocks=1 txs=0 mgas=0.000 elapsed=6.569ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:39.017] Imported new chain segment number=5653 hash=0069c4..4311c5 blocks=1 txs=0 mgas=0.000 elapsed=4.294ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:39.253] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:12:44.011] Imported new chain segment number=5654 hash=8929fd..5366ae blocks=1 txs=0 mgas=0.000 elapsed=5.120ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:49.013] Imported new chain segment number=5655 hash=448778..accb1d blocks=1 txs=0 mgas=0.000 elapsed=5.231ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:49.274] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:12:54.018] Imported new chain segment number=5656 hash=4e9159..f5d68a blocks=1 txs=0 mgas=0.000 elapsed=6.532ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:59.015] Imported new chain segment number=5657 hash=5239aa..12ed62 blocks=1 txs=0 mgas=0.000 elapsed=5.356ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:59.295] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:13:04.017] Imported new chain segment number=5658 hash=7bc63f..60254f blocks=1 txs=0 mgas=0.000 elapsed=6.544ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:09.017] Imported new chain segment number=5659 hash=ed61b0..2ab44b blocks=1 txs=0 mgas=0.000 elapsed=5.928ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:09.313] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:13:14.016] Imported new chain segment number=5660 hash=ee3c90..0e61c6 blocks=1 txs=0 mgas=0.000 elapsed=7.098ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:19.014] Imported new chain segment number=5661 hash=fe6db0..b54c92 blocks=1 txs=0 mgas=0.000 elapsed=4.895ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:19.336] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:13:24.011] Imported new chain segment number=5662 hash=4ec219..6f5304 blocks=1 txs=0 mgas=0.000 elapsed=5.183ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:29.017] Imported new chain segment number=5663 hash=b24294..c54ff9 blocks=1 txs=0 mgas=0.000 elapsed=6.491ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:29.356] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:13:34.015] Imported new chain segment number=5664 hash=0a6480..d31b32 blocks=1 txs=0 mgas=0.000 elapsed=5.392ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:39.017] Imported new chain segment number=5665 hash=cf1d7b..e2d268 blocks=1 txs=0 mgas=0.000 elapsed=6.206ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:39.378] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:13:44.013] Imported new chain segment number=5666 hash=1b88a3..a48dea blocks=1 txs=0 mgas=0.000 elapsed=5.749ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:49.011] Imported new chain segment number=5667 hash=d9b1eb..898b7d blocks=1 txs=0 mgas=0.000 elapsed=4.883ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:49.398] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:13:54.017] Imported new chain segment number=5668 hash=f1cc39..0a23d7 blocks=1 txs=0 mgas=0.000 elapsed=5.788ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:59.015] Imported new chain segment number=5669 hash=399107..618161 blocks=1 txs=0 mgas=0.000 elapsed=5.351ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:59.417] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:14:04.016] Imported new chain segment number=5670 hash=ef383d..ad2228 blocks=1 txs=0 mgas=0.000 elapsed=5.862ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:09.015] Imported new chain segment number=5671 hash=44b311..754827 blocks=1 txs=0 mgas=0.000 elapsed=5.088ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:09.437] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:14:14.016] Imported new chain segment number=5672 hash=4722c9..2dabb2 blocks=1 txs=0 mgas=0.000 elapsed=6.053ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:19.016] Imported new chain segment number=5673 hash=fc1635..e30080 blocks=1 txs=0 mgas=0.000 elapsed=5.245ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:19.458] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:14:24.016] Imported new chain segment number=5674 hash=a095d2..df8331 blocks=1 txs=0 mgas=0.000 elapsed=5.595ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:29.017] Imported new chain segment number=5675 hash=a6bbfd..0223e0 blocks=1 txs=0 mgas=0.000 elapsed=6.792ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:29.480] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:14:34.015] Imported new chain segment number=5676 hash=0e6864..acea2d blocks=1 txs=0 mgas=0.000 elapsed=6.124ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:39.014] Imported new chain segment number=5677 hash=a5dc3a..65b66d blocks=1 txs=0 mgas=0.000 elapsed=4.969ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:39.500] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:14:44.019] Imported new chain segment number=5678 hash=619122..8267ab blocks=1 txs=0 mgas=0.000 elapsed=7.374ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:49.017] Imported new chain segment number=5679 hash=491d6d..e190e7 blocks=1 txs=0 mgas=0.000 elapsed=6.009ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:49.520] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:14:54.018] Imported new chain segment number=5680 hash=dbf581..59e41a blocks=1 txs=0 mgas=0.000 elapsed=6.277ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:59.016] Imported new chain segment number=5681 hash=41f592..f9220c blocks=1 txs=0 mgas=0.000 elapsed=8.503ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:59.539] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:15:04.016] Imported new chain segment number=5682 hash=6816db..80f103 blocks=1 txs=0 mgas=0.000 elapsed=4.947ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:09.017] Imported new chain segment number=5683 hash=cd80d4..701a4c blocks=1 txs=0 mgas=0.000 elapsed=6.636ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:09.561] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:15:14.019] Imported new chain segment number=5684 hash=236a9c..17c126 blocks=1 txs=0 mgas=0.000 elapsed=6.820ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:19.017] Imported new chain segment number=5685 hash=622a87..af029d blocks=1 txs=0 mgas=0.000 elapsed=7.073ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:19.580] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:15:24.019] Imported new chain segment number=5686 hash=bb4b9f..7d3e2e blocks=1 txs=0 mgas=0.000 elapsed=6.228ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:29.015] Imported new chain segment number=5687 hash=cb5c12..62016c blocks=1 txs=0 mgas=0.000 elapsed=5.399ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:29.597] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:15:34.017] Imported new chain segment number=5688 hash=8b0f2f..97f652 blocks=1 txs=0 mgas=0.000 elapsed=6.151ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:39.015] Imported new chain segment number=5689 hash=dee8fa..dba599 blocks=1 txs=0 mgas=0.000 elapsed=5.373ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:39.618] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:15:44.017] Imported new chain segment number=5690 hash=9d697c..2045b1 blocks=1 txs=0 mgas=0.000 elapsed=7.209ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:49.018] Imported new chain segment number=5691 hash=05fdd8..064343 blocks=1 txs=0 mgas=0.000 elapsed=7.181ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:49.638] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:15:54.012] Imported new chain segment number=5692 hash=e88538..effb30 blocks=1 txs=0 mgas=0.000 elapsed=4.964ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:59.013] Imported new chain segment number=5693 hash=9f933b..0db425 blocks=1 txs=0 mgas=0.000 elapsed=6.727ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:59.656] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:16:04.015] Imported new chain segment number=5694 hash=fc44eb..d4a561 blocks=1 txs=0 mgas=0.000 elapsed=6.217ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:09.019] Imported new chain segment number=5695 hash=07daca..8ba07d blocks=1 txs=0 mgas=0.000 elapsed=7.928ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:09.675] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:16:14.020] Imported new chain segment number=5696 hash=e4ad63..fbc5bc blocks=1 txs=0 mgas=0.000 elapsed=6.615ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:19.017] Imported new chain segment number=5697 hash=120312..78f64e blocks=1 txs=0 mgas=0.000 elapsed=6.414ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:19.694] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:16:24.014] Imported new chain segment number=5698 hash=136356..b8e174 blocks=1 txs=0 mgas=0.000 elapsed=4.318ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:29.019] Imported new chain segment number=5699 hash=70f675..8612ae blocks=1 txs=0 mgas=0.000 elapsed=6.785ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:29.715] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:16:34.016] Imported new chain segment number=5700 hash=fddffc..00a710 blocks=1 txs=0 mgas=0.000 elapsed=5.542ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:39.012] Imported new chain segment number=5701 hash=c31d6b..401716 blocks=1 txs=0 mgas=0.000 elapsed=4.940ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:39.733] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:16:44.016] Imported new chain segment number=5702 hash=f2655a..77359c blocks=1 txs=0 mgas=0.000 elapsed=6.588ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:49.018] Imported new chain segment number=5703 hash=0d9856..4a6820 blocks=1 txs=0 mgas=0.000 elapsed=6.315ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:49.752] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:16:54.018] Imported new chain segment number=5704 hash=472b64..57803d blocks=1 txs=0 mgas=0.000 elapsed=6.657ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:59.010] Imported new chain segment number=5705 hash=91840b..13740f blocks=1 txs=0 mgas=0.000 elapsed=4.710ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:59.772] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:17:04.010] Imported new chain segment number=5706 hash=852e18..9ad39e blocks=1 txs=0 mgas=0.000 elapsed=4.085ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:09.019] Imported new chain segment number=5707 hash=db5b4d..0efd5a blocks=1 txs=0 mgas=0.000 elapsed=6.777ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:09.795] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:17:14.022] Imported new chain segment number=5708 hash=0e950d..a43cbd blocks=1 txs=0 mgas=0.000 elapsed=6.581ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:19.010] Imported new chain segment number=5709 hash=a37cc2..60172e blocks=1 txs=0 mgas=0.000 elapsed=4.723ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:19.817] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:17:24.017] Imported new chain segment number=5710 hash=f1979b..a31cc0 blocks=1 txs=0 mgas=0.000 elapsed=6.882ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:29.010] Imported new chain segment number=5711 hash=80283d..46be76 blocks=1 txs=0 mgas=0.000 elapsed=4.862ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:29.836] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:17:34.011] Imported new chain segment number=5712 hash=36a9da..f559c2 blocks=1 txs=0 mgas=0.000 elapsed=5.984ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:39.018] Imported new chain segment number=5713 hash=a8c1c1..11ee38 blocks=1 txs=0 mgas=0.000 elapsed=6.642ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:39.852] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:17:44.016] Imported new chain segment number=5714 hash=c2a518..6b9b73 blocks=1 txs=0 mgas=0.000 elapsed=5.781ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:49.019] Imported new chain segment number=5715 hash=01377b..608b2a blocks=1 txs=0 mgas=0.000 elapsed=6.868ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:49.873] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:17:54.016] Imported new chain segment number=5716 hash=b00aa2..501cb4 blocks=1 txs=0 mgas=0.000 elapsed=6.637ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:59.017] Imported new chain segment number=5717 hash=caf716..fe284b blocks=1 txs=0 mgas=0.000 elapsed=7.686ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:59.891] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:18:04.016] Imported new chain segment number=5718 hash=fcd4af..824d61 blocks=1 txs=0 mgas=0.000 elapsed=6.213ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:18:09.016] Imported new chain segment number=5719 hash=6fe332..29361c blocks=1 txs=0 mgas=0.000 elapsed=6.135ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:18:09.913] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:18:14.017] Imported new chain segment number=5720 hash=6c80c2..ac8edb blocks=1 txs=0 mgas=0.000 elapsed=6.709ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:18:19.010] Imported new chain segment number=5721 hash=a5264e..9c6c92 blocks=1 txs=0 mgas=0.000 elapsed=4.750ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:18:19.933] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:18:24.014] Imported new chain segment number=5722 hash=fe8711..5d88a6 blocks=1 txs=0 mgas=0.000 elapsed=5.411ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:18:29.015] Imported new chain segment number=5723 hash=9e8095..689dfb blocks=1 txs=0 mgas=0.000 elapsed=5.197ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:18:29.953] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:18:34.014] Imported new chain segment number=5724 hash=4c5a1e..da9c8b blocks=1 txs=0 mgas=0.000 elapsed=5.874ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:18:39.010] Imported new chain segment number=5725 hash=70c1ea..f0d534 blocks=1 txs=0 mgas=0.000 elapsed=4.818ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:18:39.973] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:18:44.015] Imported new chain segment number=5726 hash=2f2b68..286307 blocks=1 txs=0 mgas=0.000 elapsed=5.507ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:18:49.016] Imported new chain segment number=5727 hash=2da9dc..a57cc0 blocks=1 txs=0 mgas=0.000 elapsed=6.225ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:18:49.992] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:18:54.012] Imported new chain segment number=5728 hash=31df78..d85a56 blocks=1 txs=0 mgas=0.000 elapsed=5.127ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:18:59.016] Imported new chain segment number=5729 hash=4bf1c4..dd7da2 blocks=1 txs=0 mgas=0.000 elapsed=6.422ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:00.009] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:19:04.011] Imported new chain segment number=5730 hash=0d6257..cf1039 blocks=1 txs=0 mgas=0.000 elapsed=4.436ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:09.024] Imported new chain segment number=5731 hash=08f71b..2516dd blocks=1 txs=0 mgas=0.000 elapsed=8.897ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:10.031] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:19:14.021] Imported new chain segment number=5732 hash=ce9769..3a177e blocks=1 txs=0 mgas=0.000 elapsed=7.967ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:19.018] Imported new chain segment number=5733 hash=99c75c..69e64b blocks=1 txs=0 mgas=0.000 elapsed=6.492ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:20.051] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:19:24.011] Imported new chain segment number=5734 hash=9a8826..311a2c blocks=1 txs=0 mgas=0.000 elapsed=4.367ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:29.019] Imported new chain segment number=5735 hash=743d71..eb1932 blocks=1 txs=0 mgas=0.000 elapsed=6.473ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:30.070] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:19:34.018] Imported new chain segment number=5736 hash=33b8cf..613bcd blocks=1 txs=0 mgas=0.000 elapsed=6.020ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:39.017] Imported new chain segment number=5737 hash=d40fd3..4cd372 blocks=1 txs=0 mgas=0.000 elapsed=5.850ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:40.089] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:19:44.016] Imported new chain segment number=5738 hash=b82728..686d5d blocks=1 txs=0 mgas=0.000 elapsed=5.857ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:49.016] Imported new chain segment number=5739 hash=214f5b..bc9bb6 blocks=1 txs=0 mgas=0.000 elapsed=6.391ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:50.113] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:19:54.018] Imported new chain segment number=5740 hash=7fdcda..0bc732 blocks=1 txs=0 mgas=0.000 elapsed=6.859ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:59.018] Imported new chain segment number=5741 hash=eb4716..d81ff0 blocks=1 txs=0 mgas=0.000 elapsed=6.199ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:00.134] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:20:04.016] Imported new chain segment number=5742 hash=901663..40a3b5 blocks=1 txs=0 mgas=0.000 elapsed=5.854ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:09.019] Imported new chain segment number=5743 hash=35c86e..04b316 blocks=1 txs=0 mgas=0.000 elapsed=8.198ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:10.156] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:20:14.018] Imported new chain segment number=5744 hash=f76bd5..c42323 blocks=1 txs=0 mgas=0.000 elapsed=6.218ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:19.010] Imported new chain segment number=5745 hash=2e2187..939f97 blocks=1 txs=0 mgas=0.000 elapsed=4.988ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:20.177] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:20:24.019] Imported new chain segment number=5746 hash=4d5720..65277c blocks=1 txs=0 mgas=0.000 elapsed=7.171ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:29.018] Imported new chain segment number=5747 hash=8c8894..20bb41 blocks=1 txs=0 mgas=0.000 elapsed=6.368ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:30.196] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:20:34.017] Imported new chain segment number=5748 hash=5ea7ad..d524b6 blocks=1 txs=0 mgas=0.000 elapsed=6.238ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:39.017] Imported new chain segment number=5749 hash=69f206..81087c blocks=1 txs=0 mgas=0.000 elapsed=5.751ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:40.217] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:20:44.017] Imported new chain segment number=5750 hash=c48fa5..fdec08 blocks=1 txs=0 mgas=0.000 elapsed=6.488ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:49.019] Imported new chain segment number=5751 hash=fbc1ad..824993 blocks=1 txs=0 mgas=0.000 elapsed=7.565ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:50.234] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:20:54.019] Imported new chain segment number=5752 hash=672c67..fbbfc6 blocks=1 txs=0 mgas=0.000 elapsed=6.322ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:59.017] Imported new chain segment number=5753 hash=7ab45f..f40d33 blocks=1 txs=0 mgas=0.000 elapsed=5.432ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:00.255] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:21:04.019] Imported new chain segment number=5754 hash=462060..2d09b7 blocks=1 txs=0 mgas=0.000 elapsed=6.965ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:09.021] Imported new chain segment number=5755 hash=9918a5..697449 blocks=1 txs=0 mgas=0.000 elapsed=7.386ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:10.274] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:21:14.017] Imported new chain segment number=5756 hash=c48f58..692403 blocks=1 txs=0 mgas=0.000 elapsed=5.651ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:19.012] Imported new chain segment number=5757 hash=173968..cea4ef blocks=1 txs=0 mgas=0.000 elapsed=5.287ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:20.298] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:21:24.016] Imported new chain segment number=5758 hash=d45c40..ab6901 blocks=1 txs=0 mgas=0.000 elapsed=5.533ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:29.018] Imported new chain segment number=5759 hash=9b8948..b676e7 blocks=1 txs=0 mgas=0.000 elapsed=6.707ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:30.320] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:21:34.018] Imported new chain segment number=5760 hash=372425..8479ec blocks=1 txs=0 mgas=0.000 elapsed=6.942ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:39.018] Imported new chain segment number=5761 hash=849d8f..ba6fbf blocks=1 txs=0 mgas=0.000 elapsed=6.527ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:40.342] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:21:44.015] Imported new chain segment number=5762 hash=7adbda..7c0973 blocks=1 txs=0 mgas=0.000 elapsed=5.245ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:49.011] Imported new chain segment number=5763 hash=d9e273..851a53 blocks=1 txs=0 mgas=0.000 elapsed=6.606ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:50.363] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:21:54.014] Imported new chain segment number=5764 hash=fa8871..97ceae blocks=1 txs=0 mgas=0.000 elapsed=5.027ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:59.016] Imported new chain segment number=5765 hash=7f107e..378f24 blocks=1 txs=0 mgas=0.000 elapsed=5.836ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:00.384] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:22:04.019] Imported new chain segment number=5766 hash=2bc122..612d94 blocks=1 txs=0 mgas=0.000 elapsed=6.294ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:09.016] Imported new chain segment number=5767 hash=b8a02e..d02475 blocks=1 txs=0 mgas=0.000 elapsed=5.737ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:10.402] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:22:14.013] Imported new chain segment number=5768 hash=4ffb69..a336cc blocks=1 txs=0 mgas=0.000 elapsed=5.762ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:19.012] Imported new chain segment number=5769 hash=4616ac..bac95e blocks=1 txs=0 mgas=0.000 elapsed=4.443ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:20.419] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:22:24.017] Imported new chain segment number=5770 hash=b84fbd..df1558 blocks=1 txs=0 mgas=0.000 elapsed=6.630ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:29.013] Imported new chain segment number=5771 hash=7b9844..d4cc19 blocks=1 txs=0 mgas=0.000 elapsed=4.731ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:30.437] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:22:34.014] Imported new chain segment number=5772 hash=e87b7e..4beed8 blocks=1 txs=0 mgas=0.000 elapsed=5.388ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:39.017] Imported new chain segment number=5773 hash=292068..7fdb72 blocks=1 txs=0 mgas=0.000 elapsed=6.247ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:40.458] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:22:44.016] Imported new chain segment number=5774 hash=5160fc..01ff21 blocks=1 txs=0 mgas=0.000 elapsed=6.278ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:49.017] Imported new chain segment number=5775 hash=4aa5d3..3ba1d9 blocks=1 txs=0 mgas=0.000 elapsed=6.279ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:50.476] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:22:54.017] Imported new chain segment number=5776 hash=93d7ef..62ab91 blocks=1 txs=0 mgas=0.000 elapsed=6.916ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:59.011] Imported new chain segment number=5777 hash=a3d205..9a070a blocks=1 txs=0 mgas=0.000 elapsed=5.065ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:00.495] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:23:04.018] Imported new chain segment number=5778 hash=7849fb..0d3952 blocks=1 txs=0 mgas=0.000 elapsed=6.856ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:09.020] Imported new chain segment number=5779 hash=58d335..a84890 blocks=1 txs=0 mgas=0.000 elapsed=7.871ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:10.515] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:23:14.017] Imported new chain segment number=5780 hash=5b7e84..dd33eb blocks=1 txs=0 mgas=0.000 elapsed=6.615ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:19.019] Imported new chain segment number=5781 hash=c1715a..100818 blocks=1 txs=0 mgas=0.000 elapsed=8.816ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:20.534] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:23:24.012] Imported new chain segment number=5782 hash=86b40c..1095d4 blocks=1 txs=0 mgas=0.000 elapsed=5.121ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:29.012] Imported new chain segment number=5783 hash=581cb0..a59b66 blocks=1 txs=0 mgas=0.000 elapsed=4.193ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:30.552] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:23:34.021] Imported new chain segment number=5784 hash=dff722..b20468 blocks=1 txs=0 mgas=0.000 elapsed=8.721ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:39.011] Imported new chain segment number=5785 hash=f3a1ca..cf21e3 blocks=1 txs=0 mgas=0.000 elapsed=4.599ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:40.569] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:23:44.017] Imported new chain segment number=5786 hash=e58fd8..e84fbb blocks=1 txs=0 mgas=0.000 elapsed=6.698ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:49.018] Imported new chain segment number=5787 hash=097501..d64712 blocks=1 txs=0 mgas=0.000 elapsed=6.720ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:50.591] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:23:54.012] Imported new chain segment number=5788 hash=fbcebd..1e55e1 blocks=1 txs=0 mgas=0.000 elapsed=5.588ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:59.018] Imported new chain segment number=5789 hash=94e5c6..1518e2 blocks=1 txs=0 mgas=0.000 elapsed=6.921ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:00.612] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:24:04.020] Imported new chain segment number=5790 hash=67e5a1..63da02 blocks=1 txs=0 mgas=0.000 elapsed=6.802ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:09.018] Imported new chain segment number=5791 hash=a41fb5..ed7e0d blocks=1 txs=0 mgas=0.000 elapsed=6.132ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:10.634] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:24:14.017] Imported new chain segment number=5792 hash=6089e7..fad6ca blocks=1 txs=0 mgas=0.000 elapsed=6.360ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:19.018] Imported new chain segment number=5793 hash=ce76ff..dce6eb blocks=1 txs=0 mgas=0.000 elapsed=6.523ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:20.656] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:24:24.018] Imported new chain segment number=5794 hash=039163..5403e2 blocks=1 txs=0 mgas=0.000 elapsed=6.696ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:29.017] Imported new chain segment number=5795 hash=050515..390fd8 blocks=1 txs=0 mgas=0.000 elapsed=6.607ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:30.678] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:24:34.018] Imported new chain segment number=5796 hash=e6081e..31a184 blocks=1 txs=0 mgas=0.000 elapsed=6.981ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:39.018] Imported new chain segment number=5797 hash=4e88f5..9d92aa blocks=1 txs=0 mgas=0.000 elapsed=6.299ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:40.698] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:24:44.011] Imported new chain segment number=5798 hash=49cb19..dade1d blocks=1 txs=0 mgas=0.000 elapsed=4.481ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:49.009] Imported new chain segment number=5799 hash=924a5d..ed8a75 blocks=1 txs=0 mgas=0.000 elapsed=4.629ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:50.717] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:24:54.016] Imported new chain segment number=5800 hash=560866..7aeada blocks=1 txs=0 mgas=0.000 elapsed=6.314ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:59.020] Imported new chain segment number=5801 hash=53b208..859d55 blocks=1 txs=0 mgas=0.000 elapsed=7.511ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:00.736] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:25:04.015] Imported new chain segment number=5802 hash=a4f18f..71cc63 blocks=1 txs=0 mgas=0.000 elapsed=6.115ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:09.010] Imported new chain segment number=5803 hash=95331a..e947b7 blocks=1 txs=0 mgas=0.000 elapsed=4.350ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:10.756] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:25:14.019] Imported new chain segment number=5804 hash=5ca019..bdb9b2 blocks=1 txs=0 mgas=0.000 elapsed=7.509ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:19.011] Imported new chain segment number=5805 hash=5b4c07..a562ab blocks=1 txs=0 mgas=0.000 elapsed=5.039ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:20.777] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:25:24.014] Imported new chain segment number=5806 hash=c7b6cb..5d3674 blocks=1 txs=0 mgas=0.000 elapsed=5.593ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:29.018] Imported new chain segment number=5807 hash=a465f8..ece376 blocks=1 txs=0 mgas=0.000 elapsed=6.706ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:30.797] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:25:34.018] Imported new chain segment number=5808 hash=171994..2ca66e blocks=1 txs=0 mgas=0.000 elapsed=5.297ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:39.018] Imported new chain segment number=5809 hash=103bbc..18ce83 blocks=1 txs=0 mgas=0.000 elapsed=6.842ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:40.817] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:25:44.017] Imported new chain segment number=5810 hash=f4f045..55ea47 blocks=1 txs=0 mgas=0.000 elapsed=6.384ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:49.017] Imported new chain segment number=5811 hash=3b839c..565718 blocks=1 txs=0 mgas=0.000 elapsed=6.085ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:50.835] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:25:54.011] Imported new chain segment number=5812 hash=4c4324..b18571 blocks=1 txs=0 mgas=0.000 elapsed=4.448ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:59.011] Imported new chain segment number=5813 hash=ce999d..e47820 blocks=1 txs=0 mgas=0.000 elapsed=5.319ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:00.855] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:26:04.016] Imported new chain segment number=5814 hash=315710..ce38cb blocks=1 txs=0 mgas=0.000 elapsed=5.554ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:09.014] Imported new chain segment number=5815 hash=a0842b..3617e2 blocks=1 txs=0 mgas=0.000 elapsed=5.342ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:10.874] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:26:14.019] Imported new chain segment number=5816 hash=584dd6..bc1637 blocks=1 txs=0 mgas=0.000 elapsed=7.178ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:19.017] Imported new chain segment number=5817 hash=2ae932..425314 blocks=1 txs=0 mgas=0.000 elapsed=8.158ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:20.895] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:26:24.010] Imported new chain segment number=5818 hash=ea3921..3f8009 blocks=1 txs=0 mgas=0.000 elapsed=4.203ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:29.015] Imported new chain segment number=5819 hash=6535b2..078144 blocks=1 txs=0 mgas=0.000 elapsed=5.486ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:30.913] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:26:34.015] Imported new chain segment number=5820 hash=bcd0c5..77e89d blocks=1 txs=0 mgas=0.000 elapsed=5.131ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:39.011] Imported new chain segment number=5821 hash=244cb1..50d09a blocks=1 txs=0 mgas=0.000 elapsed=5.347ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:40.932] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:26:44.018] Imported new chain segment number=5822 hash=ca093a..6a641f blocks=1 txs=0 mgas=0.000 elapsed=6.192ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:49.019] Imported new chain segment number=5823 hash=ec7184..4e567c blocks=1 txs=0 mgas=0.000 elapsed=6.652ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:50.953] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:26:54.015] Imported new chain segment number=5824 hash=168e49..5d38ac blocks=1 txs=0 mgas=0.000 elapsed=5.912ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:59.016] Imported new chain segment number=5825 hash=9d9ff3..00fc15 blocks=1 txs=0 mgas=0.000 elapsed=6.094ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:00.975] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:27:04.015] Imported new chain segment number=5826 hash=05f734..f68b69 blocks=1 txs=0 mgas=0.000 elapsed=5.411ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:09.016] Imported new chain segment number=5827 hash=0c8c22..5d98db blocks=1 txs=0 mgas=0.000 elapsed=5.274ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:10.997] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:27:14.014] Imported new chain segment number=5828 hash=4cddaf..de50c3 blocks=1 txs=0 mgas=0.000 elapsed=5.025ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:19.022] Imported new chain segment number=5829 hash=82edc6..9323e0 blocks=1 txs=0 mgas=0.000 elapsed=11.787ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:21.015] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:27:24.015] Imported new chain segment number=5830 hash=a68112..36a292 blocks=1 txs=0 mgas=0.000 elapsed=5.121ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:29.014] Imported new chain segment number=5831 hash=0d23a4..8b7d7a blocks=1 txs=0 mgas=0.000 elapsed=6.316ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:31.036] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:27:34.052] Imported new chain segment number=5832 hash=19d0d1..5fe9ee blocks=1 txs=0 mgas=0.000 elapsed=6.429ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:39.014] Imported new chain segment number=5833 hash=7c3e73..d9c035 blocks=1 txs=0 mgas=0.000 elapsed=6.093ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:41.053] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:27:44.018] Imported new chain segment number=5834 hash=2c6881..a9b58d blocks=1 txs=0 mgas=0.000 elapsed=6.620ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:49.016] Imported new chain segment number=5835 hash=f15ca7..a02f25 blocks=1 txs=0 mgas=0.000 elapsed=4.897ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:51.071] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:27:54.020] Imported new chain segment number=5836 hash=6b84b8..e34cfb blocks=1 txs=0 mgas=0.000 elapsed=7.243ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:59.013] Imported new chain segment number=5837 hash=65f22b..2d1b20 blocks=1 txs=0 mgas=0.000 elapsed=5.914ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:01.092] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:28:04.018] Imported new chain segment number=5838 hash=f534d3..585cb3 blocks=1 txs=0 mgas=0.000 elapsed=5.888ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:09.019] Imported new chain segment number=5839 hash=7ce218..e8a6d1 blocks=1 txs=0 mgas=0.000 elapsed=6.394ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:11.113] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:28:14.019] Imported new chain segment number=5840 hash=6a9c46..9ab1ef blocks=1 txs=0 mgas=0.000 elapsed=7.683ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:19.020] Imported new chain segment number=5841 hash=7561ed..c62972 blocks=1 txs=0 mgas=0.000 elapsed=6.320ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:21.132] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:28:24.017] Imported new chain segment number=5842 hash=51f8e2..59690a blocks=1 txs=0 mgas=0.000 elapsed=6.472ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:29.017] Imported new chain segment number=5843 hash=425cea..726744 blocks=1 txs=0 mgas=0.000 elapsed=5.074ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:31.151] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:28:34.014] Imported new chain segment number=5844 hash=24f359..5b060b blocks=1 txs=0 mgas=0.000 elapsed=6.293ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:39.017] Imported new chain segment number=5845 hash=aabafe..fc9ae8 blocks=1 txs=0 mgas=0.000 elapsed=5.546ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:41.171] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:28:44.017] Imported new chain segment number=5846 hash=f68b3c..802e4b blocks=1 txs=0 mgas=0.000 elapsed=5.662ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:49.012] Imported new chain segment number=5847 hash=0b3b89..70beec blocks=1 txs=0 mgas=0.000 elapsed=5.224ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:51.190] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:28:54.018] Imported new chain segment number=5848 hash=a40efc..a3131c blocks=1 txs=0 mgas=0.000 elapsed=6.908ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:59.017] Imported new chain segment number=5849 hash=ec0b2a..608add blocks=1 txs=0 mgas=0.000 elapsed=7.032ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:01.207] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:29:04.018] Imported new chain segment number=5850 hash=140863..da271d blocks=1 txs=0 mgas=0.000 elapsed=6.573ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:09.017] Imported new chain segment number=5851 hash=03e0c7..7e6a6f blocks=1 txs=0 mgas=0.000 elapsed=4.978ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:11.226] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:29:14.021] Imported new chain segment number=5852 hash=3add0f..dd79ca blocks=1 txs=0 mgas=0.000 elapsed=7.762ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:19.016] Imported new chain segment number=5853 hash=ec07d9..57ed7c blocks=1 txs=0 mgas=0.000 elapsed=5.581ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:21.246] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:29:24.019] Imported new chain segment number=5854 hash=eccae6..1096af blocks=1 txs=0 mgas=0.000 elapsed=6.548ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:29.011] Imported new chain segment number=5855 hash=db4dbf..b0d98b blocks=1 txs=0 mgas=0.000 elapsed=4.899ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:31.268] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:29:34.011] Imported new chain segment number=5856 hash=e99ebd..374dd8 blocks=1 txs=0 mgas=0.000 elapsed=4.132ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:39.021] Imported new chain segment number=5857 hash=e67fe5..daf43c blocks=1 txs=0 mgas=0.000 elapsed=8.088ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:41.288] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:29:44.015] Imported new chain segment number=5858 hash=9e6c41..62fee0 blocks=1 txs=0 mgas=0.000 elapsed=6.113ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:49.019] Imported new chain segment number=5859 hash=ab10ea..006619 blocks=1 txs=0 mgas=0.000 elapsed=8.482ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:51.309] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:29:54.018] Imported new chain segment number=5860 hash=89787d..942f32 blocks=1 txs=0 mgas=0.000 elapsed=6.850ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:59.016] Imported new chain segment number=5861 hash=21c1d9..cc9139 blocks=1 txs=0 mgas=0.000 elapsed=5.364ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:01.330] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:30:04.017] Imported new chain segment number=5862 hash=11c6a5..eca60d blocks=1 txs=0 mgas=0.000 elapsed=6.369ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:09.019] Imported new chain segment number=5863 hash=3c4b80..a8f809 blocks=1 txs=0 mgas=0.000 elapsed=6.565ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:11.348] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:30:14.010] Imported new chain segment number=5864 hash=0e6c17..5a807a blocks=1 txs=0 mgas=0.000 elapsed=4.090ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:19.016] Imported new chain segment number=5865 hash=8c79f3..2ae9ba blocks=1 txs=0 mgas=0.000 elapsed=6.229ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:21.372] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:30:24.013] Imported new chain segment number=5866 hash=e0b382..3e1d6f blocks=1 txs=0 mgas=0.000 elapsed=5.612ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:29.015] Imported new chain segment number=5867 hash=53056b..486c58 blocks=1 txs=0 mgas=0.000 elapsed=6.057ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:31.392] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:30:34.016] Imported new chain segment number=5868 hash=79644f..4e5fb0 blocks=1 txs=0 mgas=0.000 elapsed=5.868ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:39.018] Imported new chain segment number=5869 hash=597e38..ea8bad blocks=1 txs=0 mgas=0.000 elapsed=6.037ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:41.414] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:30:44.013] Imported new chain segment number=5870 hash=54847f..4ad3d4 blocks=1 txs=0 mgas=0.000 elapsed=6.003ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:49.018] Imported new chain segment number=5871 hash=a3c8b0..f428bc blocks=1 txs=0 mgas=0.000 elapsed=7.899ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:51.433] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:30:54.018] Imported new chain segment number=5872 hash=0824e1..83847c blocks=1 txs=0 mgas=0.000 elapsed=6.974ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:59.020] Imported new chain segment number=5873 hash=8d3ab2..d6b389 blocks=1 txs=0 mgas=0.000 elapsed=7.145ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:01.451] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:31:04.019] Imported new chain segment number=5874 hash=95d710..b5c087 blocks=1 txs=0 mgas=0.000 elapsed=5.792ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:09.016] Imported new chain segment number=5875 hash=c1149c..50d325 blocks=1 txs=0 mgas=0.000 elapsed=5.818ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:11.472] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:31:14.014] Imported new chain segment number=5876 hash=260284..7f073e blocks=1 txs=0 mgas=0.000 elapsed=4.756ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:19.015] Imported new chain segment number=5877 hash=8ae48a..c4696a blocks=1 txs=0 mgas=0.000 elapsed=5.217ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:21.492] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:31:24.018] Imported new chain segment number=5878 hash=e18e6f..f1caf5 blocks=1 txs=0 mgas=0.000 elapsed=7.127ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:29.016] Imported new chain segment number=5879 hash=319ebc..65e4ea blocks=1 txs=0 mgas=0.000 elapsed=7.018ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:31.513] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:31:34.011] Imported new chain segment number=5880 hash=7b41f8..2879dd blocks=1 txs=0 mgas=0.000 elapsed=4.789ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:39.021] Imported new chain segment number=5881 hash=5da633..0062b2 blocks=1 txs=0 mgas=0.000 elapsed=4.549ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:41.531] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:31:44.019] Imported new chain segment number=5882 hash=15a905..6533ad blocks=1 txs=0 mgas=0.000 elapsed=7.363ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:49.020] Imported new chain segment number=5883 hash=fc1f77..1604f2 blocks=1 txs=0 mgas=0.000 elapsed=7.645ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:51.552] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:31:54.011] Imported new chain segment number=5884 hash=73647e..2af678 blocks=1 txs=0 mgas=0.000 elapsed=4.801ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:59.017] Imported new chain segment number=5885 hash=3dc216..d3b7ba blocks=1 txs=0 mgas=0.000 elapsed=6.244ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:01.572] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:32:04.013] Imported new chain segment number=5886 hash=098fbb..a61312 blocks=1 txs=0 mgas=0.000 elapsed=5.338ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:09.014] Imported new chain segment number=5887 hash=06f17d..faefe2 blocks=1 txs=0 mgas=0.000 elapsed=5.938ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:11.591] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:32:14.011] Imported new chain segment number=5888 hash=ae2427..00be76 blocks=1 txs=0 mgas=0.000 elapsed=4.561ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:19.012] Imported new chain segment number=5889 hash=e95ef2..2b829c blocks=1 txs=0 mgas=0.000 elapsed=5.077ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:21.610] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:32:24.020] Imported new chain segment number=5890 hash=e4fc11..a6fb91 blocks=1 txs=0 mgas=0.000 elapsed=7.589ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:29.019] Imported new chain segment number=5891 hash=c3bb1b..7af376 blocks=1 txs=0 mgas=0.000 elapsed=7.043ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:31.629] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:32:34.015] Imported new chain segment number=5892 hash=459f67..8ae1c3 blocks=1 txs=0 mgas=0.000 elapsed=5.594ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:39.018] Imported new chain segment number=5893 hash=bee7e3..56854f blocks=1 txs=0 mgas=0.000 elapsed=6.405ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:41.650] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:32:44.011] Imported new chain segment number=5894 hash=3ecdba..9f2635 blocks=1 txs=0 mgas=0.000 elapsed=5.517ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:49.010] Imported new chain segment number=5895 hash=0c8c4b..ba3470 blocks=1 txs=0 mgas=0.000 elapsed=4.586ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:51.669] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:32:54.016] Imported new chain segment number=5896 hash=6634bb..26faf8 blocks=1 txs=0 mgas=0.000 elapsed=5.984ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:59.019] Imported new chain segment number=5897 hash=b28275..9e6c16 blocks=1 txs=0 mgas=0.000 elapsed=8.322ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:01.687] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:33:04.014] Imported new chain segment number=5898 hash=d0bab1..e52d55 blocks=1 txs=0 mgas=0.000 elapsed=5.688ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:09.013] Imported new chain segment number=5899 hash=f75c7c..807353 blocks=1 txs=0 mgas=0.000 elapsed=4.728ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:11.706] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:33:14.016] Imported new chain segment number=5900 hash=ddc090..ff9b92 blocks=1 txs=0 mgas=0.000 elapsed=6.727ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:19.011] Imported new chain segment number=5901 hash=9ee958..c1c237 blocks=1 txs=0 mgas=0.000 elapsed=4.356ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:21.724] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:33:24.018] Imported new chain segment number=5902 hash=006ea4..df70bf blocks=1 txs=0 mgas=0.000 elapsed=7.338ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:29.016] Imported new chain segment number=5903 hash=c000d4..3254c1 blocks=1 txs=0 mgas=0.000 elapsed=8.136ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:31.744] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:33:34.016] Imported new chain segment number=5904 hash=d2df70..fe0570 blocks=1 txs=0 mgas=0.000 elapsed=5.713ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:39.013] Imported new chain segment number=5905 hash=5207d4..9aa7f5 blocks=1 txs=0 mgas=0.000 elapsed=5.228ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:41.763] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:33:44.019] Imported new chain segment number=5906 hash=d7dafe..0b6e5b blocks=1 txs=0 mgas=0.000 elapsed=6.503ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:49.015] Imported new chain segment number=5907 hash=1bcb13..6a8197 blocks=1 txs=0 mgas=0.000 elapsed=6.733ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:51.781] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:33:54.012] Imported new chain segment number=5908 hash=4278cc..9faa32 blocks=1 txs=0 mgas=0.000 elapsed=5.485ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:59.017] Imported new chain segment number=5909 hash=cb5c85..f08601 blocks=1 txs=0 mgas=0.000 elapsed=5.358ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:01.803] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:34:04.016] Imported new chain segment number=5910 hash=11b948..676697 blocks=1 txs=0 mgas=0.000 elapsed=5.958ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:09.014] Imported new chain segment number=5911 hash=83e93c..794906 blocks=1 txs=0 mgas=0.000 elapsed=6.284ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:11.819] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:34:14.011] Imported new chain segment number=5912 hash=554386..b3258d blocks=1 txs=0 mgas=0.000 elapsed=5.700ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:19.022] Imported new chain segment number=5913 hash=8a9185..cb96ec blocks=1 txs=0 mgas=0.000 elapsed=9.437ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:21.837] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:34:24.014] Imported new chain segment number=5914 hash=7b07ea..a3302b blocks=1 txs=0 mgas=0.000 elapsed=5.537ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:29.012] Imported new chain segment number=5915 hash=bf6a74..91e034 blocks=1 txs=0 mgas=0.000 elapsed=4.864ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:31.857] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:34:34.012] Imported new chain segment number=5916 hash=366164..3af8d9 blocks=1 txs=0 mgas=0.000 elapsed=4.420ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:39.022] Imported new chain segment number=5917 hash=3f376b..8e3172 blocks=1 txs=0 mgas=0.000 elapsed=7.853ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:41.874] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:34:44.015] Imported new chain segment number=5918 hash=85a772..4653c7 blocks=1 txs=0 mgas=0.000 elapsed=6.890ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:49.018] Imported new chain segment number=5919 hash=92a496..257306 blocks=1 txs=0 mgas=0.000 elapsed=9.392ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:51.892] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:34:54.012] Imported new chain segment number=5920 hash=b20a2c..03b86d blocks=1 txs=0 mgas=0.000 elapsed=5.075ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:59.009] Imported new chain segment number=5921 hash=18bbf1..2c05c3 blocks=1 txs=0 mgas=0.000 elapsed=4.253ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:01.910] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:35:04.015] Imported new chain segment number=5922 hash=854f21..ee395f blocks=1 txs=0 mgas=0.000 elapsed=7.324ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:09.015] Imported new chain segment number=5923 hash=9f5a5a..705b7d blocks=1 txs=0 mgas=0.000 elapsed=5.826ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:11.928] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:35:14.013] Imported new chain segment number=5924 hash=010cb2..587ef5 blocks=1 txs=0 mgas=0.000 elapsed=5.467ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:19.011] Imported new chain segment number=5925 hash=e8789a..f3362c blocks=1 txs=0 mgas=0.000 elapsed=5.876ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:21.945] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:35:24.014] Imported new chain segment number=5926 hash=515c51..6358c7 blocks=1 txs=0 mgas=0.000 elapsed=6.020ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:29.013] Imported new chain segment number=5927 hash=aba850..9b6066 blocks=1 txs=0 mgas=0.000 elapsed=5.324ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:31.962] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:35:34.014] Imported new chain segment number=5928 hash=2a6616..074d55 blocks=1 txs=0 mgas=0.000 elapsed=5.862ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:39.016] Imported new chain segment number=5929 hash=29405f..fd4539 blocks=1 txs=0 mgas=0.000 elapsed=6.623ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:41.981] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:35:44.012] Imported new chain segment number=5930 hash=fabbe7..b5c19f blocks=1 txs=0 mgas=0.000 elapsed=5.825ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:49.011] Imported new chain segment number=5931 hash=c028a8..0be29b blocks=1 txs=0 mgas=0.000 elapsed=4.645ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:52.000] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:35:54.014] Imported new chain segment number=5932 hash=b7bd6c..b9ff75 blocks=1 txs=0 mgas=0.000 elapsed=6.086ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:59.012] Imported new chain segment number=5933 hash=9796f9..815010 blocks=1 txs=0 mgas=0.000 elapsed=6.257ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:02.018] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:36:04.012] Imported new chain segment number=5934 hash=194b22..229986 blocks=1 txs=0 mgas=0.000 elapsed=5.591ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:09.015] Imported new chain segment number=5935 hash=77c358..335b71 blocks=1 txs=0 mgas=0.000 elapsed=6.148ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:12.036] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:36:14.013] Imported new chain segment number=5936 hash=221597..9968f8 blocks=1 txs=0 mgas=0.000 elapsed=4.459ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:19.016] Imported new chain segment number=5937 hash=88ddee..2b3be1 blocks=1 txs=0 mgas=0.000 elapsed=7.919ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:22.053] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:36:24.014] Imported new chain segment number=5938 hash=15fb85..41756d blocks=1 txs=0 mgas=0.000 elapsed=5.478ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:29.013] Imported new chain segment number=5939 hash=6a4f1e..eced52 blocks=1 txs=0 mgas=0.000 elapsed=5.204ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:32.070] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:36:34.013] Imported new chain segment number=5940 hash=5109b4..0e86f7 blocks=1 txs=0 mgas=0.000 elapsed=5.780ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:39.013] Imported new chain segment number=5941 hash=831b6b..070d58 blocks=1 txs=0 mgas=0.000 elapsed=5.060ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:42.088] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:36:44.013] Imported new chain segment number=5942 hash=714470..dac353 blocks=1 txs=0 mgas=0.000 elapsed=5.047ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:49.013] Imported new chain segment number=5943 hash=8d1222..e522b5 blocks=1 txs=0 mgas=0.000 elapsed=5.684ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:52.106] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:36:54.016] Imported new chain segment number=5944 hash=8413fe..fefa27 blocks=1 txs=0 mgas=0.000 elapsed=6.400ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:59.013] Imported new chain segment number=5945 hash=b9de24..342d0a blocks=1 txs=0 mgas=0.000 elapsed=6.245ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:02.125] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:37:04.012] Imported new chain segment number=5946 hash=cfa91f..5b71c0 blocks=1 txs=0 mgas=0.000 elapsed=5.029ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:09.011] Imported new chain segment number=5947 hash=853c35..eb450f blocks=1 txs=0 mgas=0.000 elapsed=5.040ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:12.143] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:37:14.030] Imported new chain segment number=5948 hash=06578d..521e2d blocks=1 txs=0 mgas=0.000 elapsed=11.885ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:19.043] Imported new chain segment number=5949 hash=a3b7f1..269c61 blocks=1 txs=0 mgas=0.000 elapsed=25.420ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:22.163] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:37:24.037] Imported new chain segment number=5950 hash=a7b2cc..241298 blocks=1 txs=0 mgas=0.000 elapsed=21.839ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:29.031] Imported new chain segment number=5951 hash=5a1f0e..28b8da blocks=1 txs=0 mgas=0.000 elapsed=12.799ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:32.182] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:37:34.049] Imported new chain segment number=5952 hash=fe2599..6a4501 blocks=1 txs=0 mgas=0.000 elapsed=22.205ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:39.051] Imported new chain segment number=5953 hash=0538dd..313dd3 blocks=1 txs=0 mgas=0.000 elapsed=27.428ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:42.201] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:37:44.032] Imported new chain segment number=5954 hash=b1dc6f..5f698a blocks=1 txs=0 mgas=0.000 elapsed=12.967ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:49.031] Imported new chain segment number=5955 hash=31d4d6..390243 blocks=1 txs=0 mgas=0.000 elapsed=11.279ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:52.220] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:37:54.032] Imported new chain segment number=5956 hash=07563b..54fd03 blocks=1 txs=0 mgas=0.000 elapsed=17.535ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:59.053] Imported new chain segment number=5957 hash=28ec80..99b7bb blocks=1 txs=0 mgas=0.000 elapsed=31.223ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:02.238] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:38:04.041] Imported new chain segment number=5958 hash=88d749..7ce3b8 blocks=1 txs=0 mgas=0.000 elapsed=20.945ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:09.069] Imported new chain segment number=5959 hash=7a3ec0..981c07 blocks=1 txs=0 mgas=0.000 elapsed=29.949ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:12.256] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:38:14.063] Imported new chain segment number=5960 hash=0218fa..23f591 blocks=1 txs=0 mgas=0.000 elapsed=33.285ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:19.033] Imported new chain segment number=5961 hash=2c4a92..3b8b4e blocks=1 txs=0 mgas=0.000 elapsed=14.831ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:22.275] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:38:24.041] Imported new chain segment number=5962 hash=5b5c1d..04c9b5 blocks=1 txs=0 mgas=0.000 elapsed=16.950ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:29.040] Imported new chain segment number=5963 hash=909bc3..7fc513 blocks=1 txs=0 mgas=0.000 elapsed=12.184ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:32.294] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:38:34.026] Imported new chain segment number=5964 hash=71ba7d..92205e blocks=1 txs=0 mgas=0.000 elapsed=6.510ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:39.050] Imported new chain segment number=5965 hash=b90e95..ec9cc2 blocks=1 txs=0 mgas=0.000 elapsed=21.472ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:42.313] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:38:44.046] Imported new chain segment number=5966 hash=5f0a3a..db797b blocks=1 txs=0 mgas=0.000 elapsed=29.971ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:49.053] Imported new chain segment number=5967 hash=967836..5de5ac blocks=1 txs=0 mgas=0.000 elapsed=23.316ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:52.333] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:38:54.020] Imported new chain segment number=5968 hash=32663b..575369 blocks=1 txs=0 mgas=0.000 elapsed=5.966ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:59.016] Imported new chain segment number=5969 hash=01e21b..0c5470 blocks=1 txs=0 mgas=0.000 elapsed=6.163ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:02.353] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:39:04.018] Imported new chain segment number=5970 hash=85163a..4d1ecd blocks=1 txs=0 mgas=0.000 elapsed=6.015ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:09.014] Imported new chain segment number=5971 hash=9c1784..05bd78 blocks=1 txs=0 mgas=0.000 elapsed=5.412ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:12.370] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:39:14.012] Imported new chain segment number=5972 hash=f2cac4..c052a4 blocks=1 txs=0 mgas=0.000 elapsed=5.775ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:19.020] Imported new chain segment number=5973 hash=afc042..c04c7a blocks=1 txs=0 mgas=0.000 elapsed=6.390ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:22.392] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:39:24.011] Imported new chain segment number=5974 hash=3303fd..a8c9e0 blocks=1 txs=0 mgas=0.000 elapsed=4.677ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:29.019] Imported new chain segment number=5975 hash=e783ee..230c3b blocks=1 txs=0 mgas=0.000 elapsed=7.393ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:32.413] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:39:34.019] Imported new chain segment number=5976 hash=b5e7b4..0deccd blocks=1 txs=0 mgas=0.000 elapsed=7.009ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:39.015] Imported new chain segment number=5977 hash=647e35..29af03 blocks=1 txs=0 mgas=0.000 elapsed=5.966ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:42.433] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:39:44.017] Imported new chain segment number=5978 hash=514b4a..8503e6 blocks=1 txs=0 mgas=0.000 elapsed=6.244ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:49.019] Imported new chain segment number=5979 hash=fa9f64..9ace62 blocks=1 txs=0 mgas=0.000 elapsed=7.438ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:52.454] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:39:54.016] Imported new chain segment number=5980 hash=2fb3a2..d418a7 blocks=1 txs=0 mgas=0.000 elapsed=6.786ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:59.018] Imported new chain segment number=5981 hash=77b769..301cb7 blocks=1 txs=0 mgas=0.000 elapsed=6.133ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:02.474] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:40:04.017] Imported new chain segment number=5982 hash=13de7b..621b72 blocks=1 txs=0 mgas=0.000 elapsed=5.580ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:09.017] Imported new chain segment number=5983 hash=628220..31ff73 blocks=1 txs=0 mgas=0.000 elapsed=5.848ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:12.493] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:40:14.017] Imported new chain segment number=5984 hash=eafe23..eed1e8 blocks=1 txs=0 mgas=0.000 elapsed=6.206ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:19.016] Imported new chain segment number=5985 hash=59e3da..44fab4 blocks=1 txs=0 mgas=0.000 elapsed=6.824ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:22.511] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:40:24.019] Imported new chain segment number=5986 hash=685924..060e56 blocks=1 txs=0 mgas=0.000 elapsed=6.004ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:29.021] Imported new chain segment number=5987 hash=84a3b8..ce2378 blocks=1 txs=0 mgas=0.000 elapsed=7.946ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:32.533] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:40:34.016] Imported new chain segment number=5988 hash=11f3e9..b0eda9 blocks=1 txs=0 mgas=0.000 elapsed=5.946ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:39.012] Imported new chain segment number=5989 hash=a20ff3..32c492 blocks=1 txs=0 mgas=0.000 elapsed=4.957ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:42.551] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:40:44.018] Imported new chain segment number=5990 hash=b1f45c..be88ff blocks=1 txs=0 mgas=0.000 elapsed=6.210ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:49.016] Imported new chain segment number=5991 hash=9b8cd2..0adf06 blocks=1 txs=0 mgas=0.000 elapsed=6.802ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:52.573] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:40:54.009] Imported new chain segment number=5992 hash=4b678b..1bec7e blocks=1 txs=0 mgas=0.000 elapsed=4.459ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:59.017] Imported new chain segment number=5993 hash=7d5bfe..c55ee4 blocks=1 txs=0 mgas=0.000 elapsed=5.966ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:02.593] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:41:04.020] Imported new chain segment number=5994 hash=e81a24..53a6a0 blocks=1 txs=0 mgas=0.000 elapsed=7.616ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:09.013] Imported new chain segment number=5995 hash=2bf1be..9fdd6f blocks=1 txs=0 mgas=0.000 elapsed=6.430ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:12.611] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:41:14.010] Imported new chain segment number=5996 hash=c587e8..480f51 blocks=1 txs=0 mgas=0.000 elapsed=4.391ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:19.015] Imported new chain segment number=5997 hash=5f70a6..9703d6 blocks=1 txs=0 mgas=0.000 elapsed=5.298ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:22.630] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:41:24.017] Imported new chain segment number=5998 hash=d6afea..1b359c blocks=1 txs=0 mgas=0.000 elapsed=6.420ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:29.016] Imported new chain segment number=5999 hash=34ff25..c8ab40 blocks=1 txs=0 mgas=0.000 elapsed=6.821ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:32.652] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:41:34.017] Imported new chain segment number=6000 hash=9ff279..0b2113 blocks=1 txs=0 mgas=0.000 elapsed=6.262ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:39.017] Imported new chain segment number=6001 hash=eb9761..6ae663 blocks=1 txs=0 mgas=0.000 elapsed=6.115ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:42.668] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:41:44.016] Imported new chain segment number=6002 hash=4e07fd..e2c2a8 blocks=1 txs=0 mgas=0.000 elapsed=7.166ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:49.013] Imported new chain segment number=6003 hash=d6054a..c9205d blocks=1 txs=0 mgas=0.000 elapsed=6.182ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:52.689] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:41:54.015] Imported new chain segment number=6004 hash=ed4d91..830e4b blocks=1 txs=0 mgas=0.000 elapsed=5.683ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:59.017] Imported new chain segment number=6005 hash=534fe6..e0c608 blocks=1 txs=0 mgas=0.000 elapsed=6.833ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:02.713] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:42:04.020] Imported new chain segment number=6006 hash=33a1be..b53257 blocks=1 txs=0 mgas=0.000 elapsed=7.157ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:09.017] Imported new chain segment number=6007 hash=e32eeb..d1a771 blocks=1 txs=0 mgas=0.000 elapsed=6.954ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:12.731] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:42:14.018] Imported new chain segment number=6008 hash=eaf3a9..b6a48b blocks=1 txs=0 mgas=0.000 elapsed=6.526ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:19.012] Imported new chain segment number=6009 hash=f1aba3..48d354 blocks=1 txs=0 mgas=0.000 elapsed=4.848ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:22.749] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:42:24.019] Imported new chain segment number=6010 hash=3ff623..3533b8 blocks=1 txs=0 mgas=0.000 elapsed=5.851ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:29.020] Imported new chain segment number=6011 hash=15d8bc..0fac42 blocks=1 txs=0 mgas=0.000 elapsed=6.672ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:32.772] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:42:34.019] Imported new chain segment number=6012 hash=42cc74..dabb36 blocks=1 txs=0 mgas=0.000 elapsed=6.430ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:39.016] Imported new chain segment number=6013 hash=a441a0..82968c blocks=1 txs=0 mgas=0.000 elapsed=5.938ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:42.790] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:42:44.022] Imported new chain segment number=6014 hash=fd6fb2..b94cfd blocks=1 txs=0 mgas=0.000 elapsed=7.315ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:49.020] Imported new chain segment number=6015 hash=1b59d6..925c24 blocks=1 txs=0 mgas=0.000 elapsed=7.191ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:52.808] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:42:54.018] Imported new chain segment number=6016 hash=82fce7..c8d359 blocks=1 txs=0 mgas=0.000 elapsed=5.971ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:59.017] Imported new chain segment number=6017 hash=9dbc99..358453 blocks=1 txs=0 mgas=0.000 elapsed=6.806ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:02.827] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:43:04.011] Imported new chain segment number=6018 hash=1ad606..34ea49 blocks=1 txs=0 mgas=0.000 elapsed=4.719ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:09.014] Imported new chain segment number=6019 hash=fec537..1a9955 blocks=1 txs=0 mgas=0.000 elapsed=4.453ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:12.845] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:43:14.016] Imported new chain segment number=6020 hash=c138f2..116496 blocks=1 txs=0 mgas=0.000 elapsed=7.557ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:19.014] Imported new chain segment number=6021 hash=3b1f36..33ee0e blocks=1 txs=0 mgas=0.000 elapsed=4.668ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:22.864] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:43:24.017] Imported new chain segment number=6022 hash=b3b22a..02034b blocks=1 txs=0 mgas=0.000 elapsed=6.622ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:29.018] Imported new chain segment number=6023 hash=fb53cf..1adf7a blocks=1 txs=0 mgas=0.000 elapsed=6.288ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:32.887] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:43:34.018] Imported new chain segment number=6024 hash=a0bac6..01cebe blocks=1 txs=0 mgas=0.000 elapsed=6.917ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:39.017] Imported new chain segment number=6025 hash=96c260..a5763b blocks=1 txs=0 mgas=0.000 elapsed=5.465ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:42.906] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:43:44.019] Imported new chain segment number=6026 hash=934d68..a5e3c9 blocks=1 txs=0 mgas=0.000 elapsed=7.336ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:49.016] Imported new chain segment number=6027 hash=2de7b4..4a1f41 blocks=1 txs=0 mgas=0.000 elapsed=5.397ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:52.925] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:43:54.014] Imported new chain segment number=6028 hash=924e2f..30a94d blocks=1 txs=0 mgas=0.000 elapsed=4.190ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:59.018] Imported new chain segment number=6029 hash=de479a..697cfc blocks=1 txs=0 mgas=0.000 elapsed=6.236ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:02.947] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:44:04.014] Imported new chain segment number=6030 hash=dd6e28..2e3e8d blocks=1 txs=0 mgas=0.000 elapsed=6.524ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:09.016] Imported new chain segment number=6031 hash=c5ea6e..921366 blocks=1 txs=0 mgas=0.000 elapsed=5.740ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:12.970] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:44:14.017] Imported new chain segment number=6032 hash=a8a791..787568 blocks=1 txs=0 mgas=0.000 elapsed=5.553ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:19.010] Imported new chain segment number=6033 hash=5a1496..7a40b8 blocks=1 txs=0 mgas=0.000 elapsed=4.096ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:22.989] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:44:24.016] Imported new chain segment number=6034 hash=af9ef3..890096 blocks=1 txs=0 mgas=0.000 elapsed=8.074ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:29.017] Imported new chain segment number=6035 hash=5f13ed..f3e074 blocks=1 txs=0 mgas=0.000 elapsed=6.664ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:33.007] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:44:34.010] Imported new chain segment number=6036 hash=909689..06c386 blocks=1 txs=0 mgas=0.000 elapsed=4.688ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:39.019] Imported new chain segment number=6037 hash=415ed9..12d595 blocks=1 txs=0 mgas=0.000 elapsed=6.660ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:43.025] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:44:44.011] Imported new chain segment number=6038 hash=57d4ee..146e96 blocks=1 txs=0 mgas=0.000 elapsed=4.076ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:49.018] Imported new chain segment number=6039 hash=8e8610..c30e0e blocks=1 txs=0 mgas=0.000 elapsed=7.483ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:53.046] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:44:54.015] Imported new chain segment number=6040 hash=158f76..d3d418 blocks=1 txs=0 mgas=0.000 elapsed=5.128ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:59.019] Imported new chain segment number=6041 hash=cbf2cf..355073 blocks=1 txs=0 mgas=0.000 elapsed=6.618ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:03.066] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:45:04.018] Imported new chain segment number=6042 hash=09e686..748516 blocks=1 txs=0 mgas=0.000 elapsed=6.945ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:09.011] Imported new chain segment number=6043 hash=dc6c35..315421 blocks=1 txs=0 mgas=0.000 elapsed=4.717ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:13.086] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:45:14.018] Imported new chain segment number=6044 hash=a2f14f..34ff9f blocks=1 txs=0 mgas=0.000 elapsed=5.688ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:19.018] Imported new chain segment number=6045 hash=676578..84f97a blocks=1 txs=0 mgas=0.000 elapsed=6.648ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:23.105] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:45:24.018] Imported new chain segment number=6046 hash=53b177..46ad71 blocks=1 txs=0 mgas=0.000 elapsed=6.862ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:29.021] Imported new chain segment number=6047 hash=5d42c5..d8d519 blocks=1 txs=0 mgas=0.000 elapsed=6.674ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:33.125] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:45:34.019] Imported new chain segment number=6048 hash=1a53cd..9bbb3d blocks=1 txs=0 mgas=0.000 elapsed=6.889ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:39.013] Imported new chain segment number=6049 hash=46cf39..e6421e blocks=1 txs=0 mgas=0.000 elapsed=5.832ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:43.149] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:45:44.011] Imported new chain segment number=6050 hash=c46cce..902fa9 blocks=1 txs=0 mgas=0.000 elapsed=4.744ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:49.019] Imported new chain segment number=6051 hash=d63db6..1f3ec3 blocks=1 txs=0 mgas=0.000 elapsed=8.529ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:53.168] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:45:54.019] Imported new chain segment number=6052 hash=03873a..6c0cfb blocks=1 txs=0 mgas=0.000 elapsed=6.592ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:59.011] Imported new chain segment number=6053 hash=2d9abc..6193dd blocks=1 txs=0 mgas=0.000 elapsed=4.771ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:03.187] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:46:04.015] Imported new chain segment number=6054 hash=97be3a..c59e6a blocks=1 txs=0 mgas=0.000 elapsed=5.160ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:09.011] Imported new chain segment number=6055 hash=a2a290..80a75e blocks=1 txs=0 mgas=0.000 elapsed=4.820ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:13.205] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:46:14.018] Imported new chain segment number=6056 hash=2b6a7a..22dbe4 blocks=1 txs=0 mgas=0.000 elapsed=6.139ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:19.016] Imported new chain segment number=6057 hash=d78f70..6705a2 blocks=1 txs=0 mgas=0.000 elapsed=5.964ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:23.225] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:46:24.014] Imported new chain segment number=6058 hash=bfac3a..448823 blocks=1 txs=0 mgas=0.000 elapsed=5.228ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:29.018] Imported new chain segment number=6059 hash=216cab..64b41f blocks=1 txs=0 mgas=0.000 elapsed=6.648ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:33.244] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:46:34.015] Imported new chain segment number=6060 hash=191f14..c33577 blocks=1 txs=0 mgas=0.000 elapsed=6.158ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:39.011] Imported new chain segment number=6061 hash=080445..08fa6b blocks=1 txs=0 mgas=0.000 elapsed=5.046ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:43.263] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:46:44.018] Imported new chain segment number=6062 hash=a5e1d5..2531f4 blocks=1 txs=0 mgas=0.000 elapsed=6.508ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:49.019] Imported new chain segment number=6063 hash=fcd4d8..b89db8 blocks=1 txs=0 mgas=0.000 elapsed=6.622ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:53.283] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:46:54.014] Imported new chain segment number=6064 hash=969bad..c5180b blocks=1 txs=0 mgas=0.000 elapsed=4.658ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:59.021] Imported new chain segment number=6065 hash=12a5a0..d37872 blocks=1 txs=0 mgas=0.000 elapsed=7.314ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:03.303] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:47:04.010] Imported new chain segment number=6066 hash=96eccf..4125b6 blocks=1 txs=0 mgas=0.000 elapsed=4.946ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:09.018] Imported new chain segment number=6067 hash=bb1271..9d465c blocks=1 txs=0 mgas=0.000 elapsed=5.490ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:13.322] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:47:14.020] Imported new chain segment number=6068 hash=aaca75..d07a08 blocks=1 txs=0 mgas=0.000 elapsed=7.610ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:19.012] Imported new chain segment number=6069 hash=d965ba..c2df69 blocks=1 txs=0 mgas=0.000 elapsed=5.780ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:23.345] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:47:24.010] Imported new chain segment number=6070 hash=51e1f9..00a059 blocks=1 txs=0 mgas=0.000 elapsed=4.849ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:29.016] Imported new chain segment number=6071 hash=e3aac0..5e234c blocks=1 txs=0 mgas=0.000 elapsed=6.357ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:33.366] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:47:34.018] Imported new chain segment number=6072 hash=cdcf78..e37a0e blocks=1 txs=0 mgas=0.000 elapsed=6.056ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:39.010] Imported new chain segment number=6073 hash=437dba..a7a89c blocks=1 txs=0 mgas=0.000 elapsed=4.461ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:43.385] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:47:44.020] Imported new chain segment number=6074 hash=872258..fd3b10 blocks=1 txs=0 mgas=0.000 elapsed=7.437ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:49.015] Imported new chain segment number=6075 hash=cb8921..0ac789 blocks=1 txs=0 mgas=0.000 elapsed=5.652ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:53.404] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:47:54.019] Imported new chain segment number=6076 hash=00147e..b8b630 blocks=1 txs=0 mgas=0.000 elapsed=7.129ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:59.018] Imported new chain segment number=6077 hash=fa812b..760927 blocks=1 txs=0 mgas=0.000 elapsed=6.481ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:03.423] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:48:04.017] Imported new chain segment number=6078 hash=f2ab5f..8a1d34 blocks=1 txs=0 mgas=0.000 elapsed=6.679ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:09.009] Imported new chain segment number=6079 hash=a044a8..cd21d3 blocks=1 txs=0 mgas=0.000 elapsed=4.089ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:13.440] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:48:14.010] Imported new chain segment number=6080 hash=9cc21c..3d7030 blocks=1 txs=0 mgas=0.000 elapsed=5.152ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:19.015] Imported new chain segment number=6081 hash=e3a7a7..d12612 blocks=1 txs=0 mgas=0.000 elapsed=4.746ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:23.460] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:48:24.017] Imported new chain segment number=6082 hash=ff8d0a..a512a3 blocks=1 txs=0 mgas=0.000 elapsed=6.631ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:29.017] Imported new chain segment number=6083 hash=62289a..1095ed blocks=1 txs=0 mgas=0.000 elapsed=5.437ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:33.481] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:48:34.017] Imported new chain segment number=6084 hash=11f92f..6a145e blocks=1 txs=0 mgas=0.000 elapsed=6.472ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:39.013] Imported new chain segment number=6085 hash=996560..5054c7 blocks=1 txs=0 mgas=0.000 elapsed=4.427ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:43.500] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:48:44.016] Imported new chain segment number=6086 hash=d5c787..306a68 blocks=1 txs=0 mgas=0.000 elapsed=7.095ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:49.018] Imported new chain segment number=6087 hash=fccd90..5cadea blocks=1 txs=0 mgas=0.000 elapsed=7.729ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:53.517] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:48:54.019] Imported new chain segment number=6088 hash=dbfc2e..3aaa13 blocks=1 txs=0 mgas=0.000 elapsed=7.941ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:59.018] Imported new chain segment number=6089 hash=200a90..471816 blocks=1 txs=0 mgas=0.000 elapsed=6.348ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:03.535] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:49:04.018] Imported new chain segment number=6090 hash=d596fc..8e3654 blocks=1 txs=0 mgas=0.000 elapsed=7.291ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:09.019] Imported new chain segment number=6091 hash=4e061d..335364 blocks=1 txs=0 mgas=0.000 elapsed=6.378ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:13.553] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:49:14.018] Imported new chain segment number=6092 hash=bb32e3..eaffa8 blocks=1 txs=0 mgas=0.000 elapsed=5.848ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:19.012] Imported new chain segment number=6093 hash=5ca867..fc1d1f blocks=1 txs=0 mgas=0.000 elapsed=5.179ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:23.571] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:49:24.020] Imported new chain segment number=6094 hash=7340a1..e8c49d blocks=1 txs=0 mgas=0.000 elapsed=7.668ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:29.018] Imported new chain segment number=6095 hash=7466bd..a08911 blocks=1 txs=0 mgas=0.000 elapsed=5.920ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:33.591] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:49:34.017] Imported new chain segment number=6096 hash=6c76e9..852e81 blocks=1 txs=0 mgas=0.000 elapsed=6.565ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:39.020] Imported new chain segment number=6097 hash=84d6bb..5c96c7 blocks=1 txs=0 mgas=0.000 elapsed=7.275ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:43.611] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:49:44.017] Imported new chain segment number=6098 hash=720c12..684a5f blocks=1 txs=0 mgas=0.000 elapsed=5.571ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:49.019] Imported new chain segment number=6099 hash=42d762..d31cc9 blocks=1 txs=0 mgas=0.000 elapsed=7.393ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:53.631] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:49:54.012] Imported new chain segment number=6100 hash=736097..37d592 blocks=1 txs=0 mgas=0.000 elapsed=5.272ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:59.011] Imported new chain segment number=6101 hash=c13a95..762b72 blocks=1 txs=0 mgas=0.000 elapsed=4.569ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:03.649] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:50:04.014] Imported new chain segment number=6102 hash=10a429..44a101 blocks=1 txs=0 mgas=0.000 elapsed=4.711ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:09.019] Imported new chain segment number=6103 hash=78acab..bae170 blocks=1 txs=0 mgas=0.000 elapsed=8.006ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:13.670] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:50:14.011] Imported new chain segment number=6104 hash=814edf..fb415e blocks=1 txs=0 mgas=0.000 elapsed=4.758ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:19.018] Imported new chain segment number=6105 hash=6ada5b..bea314 blocks=1 txs=0 mgas=0.000 elapsed=7.372ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:23.691] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:50:24.011] Imported new chain segment number=6106 hash=598463..1517c3 blocks=1 txs=0 mgas=0.000 elapsed=4.962ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:29.011] Imported new chain segment number=6107 hash=69cf7f..b6dc7a blocks=1 txs=0 mgas=0.000 elapsed=5.421ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:33.709] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:50:34.019] Imported new chain segment number=6108 hash=378496..dff7a7 blocks=1 txs=0 mgas=0.000 elapsed=7.861ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:39.010] Imported new chain segment number=6109 hash=9b0af5..607685 blocks=1 txs=0 mgas=0.000 elapsed=4.508ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:43.728] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:50:44.019] Imported new chain segment number=6110 hash=0a4052..82f0ee blocks=1 txs=0 mgas=0.000 elapsed=6.428ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:49.019] Imported new chain segment number=6111 hash=36b7ef..65e9fd blocks=1 txs=0 mgas=0.000 elapsed=8.413ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:53.749] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:50:54.010] Imported new chain segment number=6112 hash=e15d93..37be6d blocks=1 txs=0 mgas=0.000 elapsed=4.508ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:59.020] Imported new chain segment number=6113 hash=edc1e4..86bce0 blocks=1 txs=0 mgas=0.000 elapsed=7.491ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:03.770] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:51:04.017] Imported new chain segment number=6114 hash=77c325..e7a92a blocks=1 txs=0 mgas=0.000 elapsed=6.217ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:09.018] Imported new chain segment number=6115 hash=839767..41e1b4 blocks=1 txs=0 mgas=0.000 elapsed=7.577ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:13.792] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:51:14.019] Imported new chain segment number=6116 hash=0823bc..b1f72a blocks=1 txs=0 mgas=0.000 elapsed=7.229ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:19.013] Imported new chain segment number=6117 hash=7e46ef..f2949c blocks=1 txs=0 mgas=0.000 elapsed=4.552ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:23.812] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:51:24.017] Imported new chain segment number=6118 hash=64f063..b5968d blocks=1 txs=0 mgas=0.000 elapsed=5.552ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:29.019] Imported new chain segment number=6119 hash=a3af67..000f22 blocks=1 txs=0 mgas=0.000 elapsed=7.565ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:33.829] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:51:34.012] Imported new chain segment number=6120 hash=609da9..3e57a8 blocks=1 txs=0 mgas=0.000 elapsed=4.512ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:39.015] Imported new chain segment number=6121 hash=1c0131..762c0c blocks=1 txs=0 mgas=0.000 elapsed=5.197ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:43.847] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:51:44.013] Imported new chain segment number=6122 hash=6cdb5f..ac93ae blocks=1 txs=0 mgas=0.000 elapsed=5.566ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:49.010] Imported new chain segment number=6123 hash=80dc41..14d36e blocks=1 txs=0 mgas=0.000 elapsed=4.932ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:53.868] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:51:54.016] Imported new chain segment number=6124 hash=bdd228..78a729 blocks=1 txs=0 mgas=0.000 elapsed=6.032ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:59.012] Imported new chain segment number=6125 hash=b79b47..7edd8c blocks=1 txs=0 mgas=0.000 elapsed=4.940ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:03.885] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:52:04.011] Imported new chain segment number=6126 hash=ed0890..24aef3 blocks=1 txs=0 mgas=0.000 elapsed=4.800ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:09.019] Imported new chain segment number=6127 hash=af0372..d2ef42 blocks=1 txs=0 mgas=0.000 elapsed=7.035ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:13.907] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:52:14.010] Imported new chain segment number=6128 hash=dd6156..05b5ff blocks=1 txs=0 mgas=0.000 elapsed=4.757ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:19.017] Imported new chain segment number=6129 hash=5cdd3c..9e4095 blocks=1 txs=0 mgas=0.000 elapsed=7.315ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:23.926] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:52:24.018] Imported new chain segment number=6130 hash=d7a4ed..d0d17b blocks=1 txs=0 mgas=0.000 elapsed=6.451ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:29.017] Imported new chain segment number=6131 hash=0da7cd..2bfdb4 blocks=1 txs=0 mgas=0.000 elapsed=5.380ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:33.949] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:52:34.021] Imported new chain segment number=6132 hash=88d668..aa11c8 blocks=1 txs=0 mgas=0.000 elapsed=7.440ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:39.019] Imported new chain segment number=6133 hash=56a3aa..7ca650 blocks=1 txs=0 mgas=0.000 elapsed=7.804ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:43.968] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:52:44.017] Imported new chain segment number=6134 hash=04adbb..d1a392 blocks=1 txs=0 mgas=0.000 elapsed=6.039ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:49.017] Imported new chain segment number=6135 hash=0ab4fa..691ad4 blocks=1 txs=0 mgas=0.000 elapsed=6.092ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:53.986] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:52:54.016] Imported new chain segment number=6136 hash=77e7ef..b78f15 blocks=1 txs=0 mgas=0.000 elapsed=6.461ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:59.014] Imported new chain segment number=6137 hash=c6ec8d..b90b06 blocks=1 txs=0 mgas=0.000 elapsed=5.139ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:04.007] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:53:04.012] Imported new chain segment number=6138 hash=9bd32a..2be337 blocks=1 txs=0 mgas=0.000 elapsed=6.520ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:09.014] Imported new chain segment number=6139 hash=3e6d07..790f85 blocks=1 txs=0 mgas=0.000 elapsed=5.858ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:14.016] Imported new chain segment number=6140 hash=4765c9..7ebfb6 blocks=1 txs=0 mgas=0.000 elapsed=5.423ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:14.023] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:53:19.012] Imported new chain segment number=6141 hash=caa481..9a106a blocks=1 txs=0 mgas=0.000 elapsed=7.324ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:24.019] Imported new chain segment number=6142 hash=bce993..91c52e blocks=1 txs=0 mgas=0.000 elapsed=7.881ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:24.046] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:53:29.018] Imported new chain segment number=6143 hash=591be1..a9b032 blocks=1 txs=0 mgas=0.000 elapsed=6.480ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:34.018] Imported new chain segment number=6144 hash=313948..780cee blocks=1 txs=0 mgas=0.000 elapsed=6.654ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:34.064] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:53:39.020] Imported new chain segment number=6145 hash=8eed03..d8f586 blocks=1 txs=0 mgas=0.000 elapsed=7.202ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:44.023] Imported new chain segment number=6146 hash=ed93b9..fac478 blocks=1 txs=0 mgas=0.000 elapsed=8.730ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:44.081] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:53:49.011] Imported new chain segment number=6147 hash=d3da58..ff46c9 blocks=1 txs=0 mgas=0.000 elapsed=5.071ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:54.011] Imported new chain segment number=6148 hash=260d08..b6f7cd blocks=1 txs=0 mgas=0.000 elapsed=4.626ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:54.099] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:53:59.021] Imported new chain segment number=6149 hash=57d953..b59f76 blocks=1 txs=0 mgas=0.000 elapsed=14.094ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:04.010] Imported new chain segment number=6150 hash=3b717e..76d833 blocks=1 txs=0 mgas=0.000 elapsed=4.914ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:04.117] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:54:09.011] Imported new chain segment number=6151 hash=2be0c3..77087e blocks=1 txs=0 mgas=0.000 elapsed=5.422ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:14.015] Imported new chain segment number=6152 hash=90481b..ff6874 blocks=1 txs=0 mgas=0.000 elapsed=5.816ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:14.135] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:54:19.020] Imported new chain segment number=6153 hash=14e944..7d0502 blocks=1 txs=0 mgas=0.000 elapsed=8.747ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:24.019] Imported new chain segment number=6154 hash=046c7b..faf886 blocks=1 txs=0 mgas=0.000 elapsed=5.921ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:24.153] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:54:29.016] Imported new chain segment number=6155 hash=e3be6d..bd1361 blocks=1 txs=0 mgas=0.000 elapsed=5.999ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:34.020] Imported new chain segment number=6156 hash=259958..225991 blocks=1 txs=0 mgas=0.000 elapsed=7.083ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:34.172] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:54:39.013] Imported new chain segment number=6157 hash=f88b7a..5d6fbf blocks=1 txs=0 mgas=0.000 elapsed=5.613ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:44.017] Imported new chain segment number=6158 hash=e2da71..a0731c blocks=1 txs=0 mgas=0.000 elapsed=6.595ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:44.191] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:54:49.010] Imported new chain segment number=6159 hash=15ed8b..2f97d0 blocks=1 txs=0 mgas=0.000 elapsed=4.001ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:54.020] Imported new chain segment number=6160 hash=35bbce..ae1ba5 blocks=1 txs=0 mgas=0.000 elapsed=6.682ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:54.213] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:54:59.018] Imported new chain segment number=6161 hash=43abce..67be34 blocks=1 txs=0 mgas=0.000 elapsed=5.827ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:04.017] Imported new chain segment number=6162 hash=460cdc..f5cd1d blocks=1 txs=0 mgas=0.000 elapsed=5.363ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:04.233] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:55:09.011] Imported new chain segment number=6163 hash=5c5d80..f6107f blocks=1 txs=0 mgas=0.000 elapsed=4.839ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:14.016] Imported new chain segment number=6164 hash=dfc61b..fde578 blocks=1 txs=0 mgas=0.000 elapsed=4.970ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:14.253] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:55:19.019] Imported new chain segment number=6165 hash=bfc69f..b406a1 blocks=1 txs=0 mgas=0.000 elapsed=6.605ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:24.016] Imported new chain segment number=6166 hash=f1f813..db9290 blocks=1 txs=0 mgas=0.000 elapsed=6.124ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:24.272] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:55:29.018] Imported new chain segment number=6167 hash=cb6ffa..639bdf blocks=1 txs=0 mgas=0.000 elapsed=6.698ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:34.013] Imported new chain segment number=6168 hash=5617ed..f3e8e3 blocks=1 txs=0 mgas=0.000 elapsed=5.004ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:34.297] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:55:39.025] Imported new chain segment number=6169 hash=46ef33..3939cb blocks=1 txs=0 mgas=0.000 elapsed=11.698ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:44.014] Imported new chain segment number=6170 hash=f08198..ce9a05 blocks=1 txs=0 mgas=0.000 elapsed=5.769ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:44.317] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:55:49.010] Imported new chain segment number=6171 hash=af1cd1..a13922 blocks=1 txs=0 mgas=0.000 elapsed=4.204ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:54.011] Imported new chain segment number=6172 hash=a3f72d..5c9ddd blocks=1 txs=0 mgas=0.000 elapsed=4.483ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:54.332] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:55:59.019] Imported new chain segment number=6173 hash=1e76c7..41898d blocks=1 txs=0 mgas=0.000 elapsed=6.257ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:04.014] Imported new chain segment number=6174 hash=09c113..ba4685 blocks=1 txs=0 mgas=0.000 elapsed=4.343ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:04.350] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:56:09.014] Imported new chain segment number=6175 hash=26400d..867f08 blocks=1 txs=0 mgas=0.000 elapsed=6.659ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:14.014] Imported new chain segment number=6176 hash=c50caf..4f49c8 blocks=1 txs=0 mgas=0.000 elapsed=5.051ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:14.367] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:56:19.017] Imported new chain segment number=6177 hash=cc1323..7dddf5 blocks=1 txs=0 mgas=0.000 elapsed=6.042ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:24.012] Imported new chain segment number=6178 hash=8a5938..e62782 blocks=1 txs=0 mgas=0.000 elapsed=5.424ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:24.386] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:56:29.022] Imported new chain segment number=6179 hash=87bc42..6e88cb blocks=1 txs=0 mgas=0.000 elapsed=9.541ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:34.028] Imported new chain segment number=6180 hash=b88c07..f103f2 blocks=1 txs=0 mgas=0.000 elapsed=11.501ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:34.410] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:56:39.012] Imported new chain segment number=6181 hash=ae73b0..8f740b blocks=1 txs=0 mgas=0.000 elapsed=4.522ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:44.015] Imported new chain segment number=6182 hash=866b1d..13efb3 blocks=1 txs=0 mgas=0.000 elapsed=5.446ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:44.431] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:56:49.016] Imported new chain segment number=6183 hash=50b1aa..5e27c4 blocks=1 txs=0 mgas=0.000 elapsed=6.555ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:54.024] Imported new chain segment number=6184 hash=5dabf8..9d6164 blocks=1 txs=0 mgas=0.000 elapsed=8.850ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:54.448] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:56:59.010] Imported new chain segment number=6185 hash=7ed96e..c7aa6f blocks=1 txs=0 mgas=0.000 elapsed=4.853ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:04.018] Imported new chain segment number=6186 hash=e2b56b..29e67b blocks=1 txs=0 mgas=0.000 elapsed=8.546ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:04.467] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:57:09.011] Imported new chain segment number=6187 hash=3ae616..535b58 blocks=1 txs=0 mgas=0.000 elapsed=4.011ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:14.012] Imported new chain segment number=6188 hash=386a56..50307b blocks=1 txs=0 mgas=0.000 elapsed=3.449ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:14.485] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:57:19.010] Imported new chain segment number=6189 hash=ada9ad..ff80fe blocks=1 txs=0 mgas=0.000 elapsed=4.584ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:24.014] Imported new chain segment number=6190 hash=59d6a4..1ae251 blocks=1 txs=0 mgas=0.000 elapsed=4.675ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:24.503] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:57:29.013] Imported new chain segment number=6191 hash=78a5d0..3beca6 blocks=1 txs=0 mgas=0.000 elapsed=4.995ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:34.011] Imported new chain segment number=6192 hash=67b6a4..88de82 blocks=1 txs=0 mgas=0.000 elapsed=4.018ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:34.521] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:57:39.015] Imported new chain segment number=6193 hash=f7b597..27fcd4 blocks=1 txs=0 mgas=0.000 elapsed=6.213ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:44.013] Imported new chain segment number=6194 hash=1aa296..f6700e blocks=1 txs=0 mgas=0.000 elapsed=5.081ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:44.538] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:57:49.015] Imported new chain segment number=6195 hash=6e8699..40d107 blocks=1 txs=0 mgas=0.000 elapsed=6.482ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:54.012] Imported new chain segment number=6196 hash=fc3cef..8abc7e blocks=1 txs=0 mgas=0.000 elapsed=5.579ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:54.558] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:57:59.013] Imported new chain segment number=6197 hash=596f66..2f4052 blocks=1 txs=0 mgas=0.000 elapsed=6.451ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:04.015] Imported new chain segment number=6198 hash=b8ebd5..963b76 blocks=1 txs=0 mgas=0.000 elapsed=6.873ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:04.578] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:58:09.014] Imported new chain segment number=6199 hash=8a3b8f..d34524 blocks=1 txs=0 mgas=0.000 elapsed=5.173ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:14.013] Imported new chain segment number=6200 hash=67ab7f..60863b blocks=1 txs=0 mgas=0.000 elapsed=5.934ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:14.596] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:58:19.013] Imported new chain segment number=6201 hash=222f67..d0ea6c blocks=1 txs=0 mgas=0.000 elapsed=5.610ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:24.014] Imported new chain segment number=6202 hash=ef6fc0..0457d0 blocks=1 txs=0 mgas=0.000 elapsed=5.378ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:24.613] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:58:29.013] Imported new chain segment number=6203 hash=a358f5..b7ba98 blocks=1 txs=0 mgas=0.000 elapsed=5.645ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:34.013] Imported new chain segment number=6204 hash=01ca27..32169a blocks=1 txs=0 mgas=0.000 elapsed=5.028ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:34.632] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:58:39.013] Imported new chain segment number=6205 hash=c8b005..92e702 blocks=1 txs=0 mgas=0.000 elapsed=5.257ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:44.011] Imported new chain segment number=6206 hash=7309f9..9900ec blocks=1 txs=0 mgas=0.000 elapsed=3.524ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:44.652] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:58:49.014] Imported new chain segment number=6207 hash=3244f5..ef29f7 blocks=1 txs=0 mgas=0.000 elapsed=5.723ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:54.015] Imported new chain segment number=6208 hash=97a8a9..b3d97c blocks=1 txs=0 mgas=0.000 elapsed=7.238ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:54.672] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:58:59.013] Imported new chain segment number=6209 hash=2551a8..fb9d90 blocks=1 txs=0 mgas=0.000 elapsed=5.937ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:04.013] Imported new chain segment number=6210 hash=ed8e8b..ddce71 blocks=1 txs=0 mgas=0.000 elapsed=4.971ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:04.693] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:59:09.013] Imported new chain segment number=6211 hash=913bab..3be52d blocks=1 txs=0 mgas=0.000 elapsed=6.063ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:14.014] Imported new chain segment number=6212 hash=0bbec0..598a26 blocks=1 txs=0 mgas=0.000 elapsed=6.255ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:14.713] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:59:19.015] Imported new chain segment number=6213 hash=f87f8c..8daee1 blocks=1 txs=0 mgas=0.000 elapsed=6.665ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:24.013] Imported new chain segment number=6214 hash=9accaf..a2464a blocks=1 txs=0 mgas=0.000 elapsed=5.013ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:24.732] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:59:29.016] Imported new chain segment number=6215 hash=8cc95d..6f863a blocks=1 txs=0 mgas=0.000 elapsed=5.897ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:34.015] Imported new chain segment number=6216 hash=a0e3cf..1990ab blocks=1 txs=0 mgas=0.000 elapsed=6.036ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:34.751] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:59:39.016] Imported new chain segment number=6217 hash=27d9d0..fec68d blocks=1 txs=0 mgas=0.000 elapsed=6.095ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:44.014] Imported new chain segment number=6218 hash=c04e52..544f11 blocks=1 txs=0 mgas=0.000 elapsed=5.005ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:44.769] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:59:49.009] Imported new chain segment number=6219 hash=f84b3e..f6be37 blocks=1 txs=0 mgas=0.000 elapsed=4.509ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:54.017] Imported new chain segment number=6220 hash=c977b9..a42205 blocks=1 txs=0 mgas=0.000 elapsed=6.430ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:54.787] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:59:59.013] Imported new chain segment number=6221 hash=b9b2ed..1a6a27 blocks=1 txs=0 mgas=0.000 elapsed=5.416ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:04.012] Imported new chain segment number=6222 hash=89cf04..cd1f8a blocks=1 txs=0 mgas=0.000 elapsed=5.260ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:04.809] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:00:09.020] Imported new chain segment number=6223 hash=15bbb3..c9fc1e blocks=1 txs=0 mgas=0.000 elapsed=7.381ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:14.012] Imported new chain segment number=6224 hash=e5c437..07d25d blocks=1 txs=0 mgas=0.000 elapsed=5.589ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:14.828] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:00:19.020] Imported new chain segment number=6225 hash=d0888d..8c355c blocks=1 txs=0 mgas=0.000 elapsed=6.692ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:24.011] Imported new chain segment number=6226 hash=4b850a..2f4c0e blocks=1 txs=0 mgas=0.000 elapsed=4.707ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:24.850] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:00:29.011] Imported new chain segment number=6227 hash=e99886..2596b8 blocks=1 txs=0 mgas=0.000 elapsed=4.411ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:34.016] Imported new chain segment number=6228 hash=41cc07..b3fa76 blocks=1 txs=0 mgas=0.000 elapsed=4.429ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:34.870] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:00:39.017] Imported new chain segment number=6229 hash=3d9877..752cd3 blocks=1 txs=0 mgas=0.000 elapsed=6.703ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:44.011] Imported new chain segment number=6230 hash=3e6331..b3f568 blocks=1 txs=0 mgas=0.000 elapsed=4.301ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:44.886] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:00:49.015] Imported new chain segment number=6231 hash=d09eb5..133b0d blocks=1 txs=0 mgas=0.000 elapsed=6.276ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:54.011] Imported new chain segment number=6232 hash=8caad0..25e678 blocks=1 txs=0 mgas=0.000 elapsed=4.709ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:54.906] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:00:59.018] Imported new chain segment number=6233 hash=18f4cf..eaca0d blocks=1 txs=0 mgas=0.000 elapsed=7.178ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:04.011] Imported new chain segment number=6234 hash=04114e..c822eb blocks=1 txs=0 mgas=0.000 elapsed=4.238ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:04.926] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:01:09.011] Imported new chain segment number=6235 hash=ddb79f..9322c0 blocks=1 txs=0 mgas=0.000 elapsed=4.265ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:14.013] Imported new chain segment number=6236 hash=7558cf..dcac5c blocks=1 txs=0 mgas=0.000 elapsed=5.420ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:14.947] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:01:19.013] Imported new chain segment number=6237 hash=e367d7..99aad1 blocks=1 txs=0 mgas=0.000 elapsed=6.366ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:24.018] Imported new chain segment number=6238 hash=6debdf..ed6655 blocks=1 txs=0 mgas=0.000 elapsed=6.623ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:24.966] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:01:29.016] Imported new chain segment number=6239 hash=f87bf4..103b8f blocks=1 txs=0 mgas=0.000 elapsed=7.018ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:34.017] Imported new chain segment number=6240 hash=5f5e8d..728ddf blocks=1 txs=0 mgas=0.000 elapsed=6.170ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:34.984] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:01:39.014] Imported new chain segment number=6241 hash=87e093..622f46 blocks=1 txs=0 mgas=0.000 elapsed=5.387ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:44.017] Imported new chain segment number=6242 hash=1b4f70..19b7b3 blocks=1 txs=0 mgas=0.000 elapsed=6.123ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:45.005] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:01:49.014] Imported new chain segment number=6243 hash=4f395c..beaed8 blocks=1 txs=0 mgas=0.000 elapsed=6.368ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:54.017] Imported new chain segment number=6244 hash=4a044c..cf94b2 blocks=1 txs=0 mgas=0.000 elapsed=6.689ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:55.024] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:01:59.020] Imported new chain segment number=6245 hash=2b8a2d..18c381 blocks=1 txs=0 mgas=0.000 elapsed=7.205ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:04.015] Imported new chain segment number=6246 hash=286124..508ab2 blocks=1 txs=0 mgas=0.000 elapsed=4.339ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:05.045] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:02:09.018] Imported new chain segment number=6247 hash=4894b5..1013b0 blocks=1 txs=0 mgas=0.000 elapsed=6.840ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:14.019] Imported new chain segment number=6248 hash=9ff8a6..39e632 blocks=1 txs=0 mgas=0.000 elapsed=5.944ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:15.063] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:02:19.015] Imported new chain segment number=6249 hash=62bc9f..a88590 blocks=1 txs=0 mgas=0.000 elapsed=6.274ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:24.018] Imported new chain segment number=6250 hash=4e33c0..088fb9 blocks=1 txs=0 mgas=0.000 elapsed=9.312ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:25.079] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:02:29.014] Imported new chain segment number=6251 hash=459d12..4a8156 blocks=1 txs=0 mgas=0.000 elapsed=6.196ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:34.018] Imported new chain segment number=6252 hash=21bbbe..cbf577 blocks=1 txs=0 mgas=0.000 elapsed=5.984ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:35.097] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:02:39.017] Imported new chain segment number=6253 hash=d2bd61..99de54 blocks=1 txs=0 mgas=0.000 elapsed=6.282ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:44.014] Imported new chain segment number=6254 hash=9c6f91..a90e8e blocks=1 txs=0 mgas=0.000 elapsed=5.717ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:45.117] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:02:49.019] Imported new chain segment number=6255 hash=83919e..0d7d4b blocks=1 txs=0 mgas=0.000 elapsed=6.525ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:54.013] Imported new chain segment number=6256 hash=623dca..9bbb49 blocks=1 txs=0 mgas=0.000 elapsed=6.013ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:55.135] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:02:59.014] Imported new chain segment number=6257 hash=60b650..f4bf2b blocks=1 txs=0 mgas=0.000 elapsed=5.466ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:04.011] Imported new chain segment number=6258 hash=d67bb1..32f58b blocks=1 txs=0 mgas=0.000 elapsed=5.231ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:05.154] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:03:09.010] Imported new chain segment number=6259 hash=249e77..5f0055 blocks=1 txs=0 mgas=0.000 elapsed=4.028ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:14.018] Imported new chain segment number=6260 hash=704314..c55355 blocks=1 txs=0 mgas=0.000 elapsed=7.189ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:15.173] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:03:19.016] Imported new chain segment number=6261 hash=db5e65..15e422 blocks=1 txs=0 mgas=0.000 elapsed=6.643ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:24.016] Imported new chain segment number=6262 hash=cb3348..df4c5c blocks=1 txs=0 mgas=0.000 elapsed=6.147ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:25.190] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:03:29.014] Imported new chain segment number=6263 hash=84f41e..c44d70 blocks=1 txs=0 mgas=0.000 elapsed=5.829ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:34.012] Imported new chain segment number=6264 hash=c5c755..c93177 blocks=1 txs=0 mgas=0.000 elapsed=4.849ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:35.209] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:03:39.011] Imported new chain segment number=6265 hash=377d00..79b14b blocks=1 txs=0 mgas=0.000 elapsed=4.439ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:44.019] Imported new chain segment number=6266 hash=233fe3..ead916 blocks=1 txs=0 mgas=0.000 elapsed=6.514ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:45.227] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:03:49.011] Imported new chain segment number=6267 hash=79662c..71303f blocks=1 txs=0 mgas=0.000 elapsed=4.698ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:54.011] Imported new chain segment number=6268 hash=19ecb4..d1ce28 blocks=1 txs=0 mgas=0.000 elapsed=4.802ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:55.248] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:03:59.017] Imported new chain segment number=6269 hash=4f1e52..b2819a blocks=1 txs=0 mgas=0.000 elapsed=6.138ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:04.019] Imported new chain segment number=6270 hash=b08814..9103b0 blocks=1 txs=0 mgas=0.000 elapsed=6.141ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:05.268] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:04:09.011] Imported new chain segment number=6271 hash=bcf611..0f119e blocks=1 txs=0 mgas=0.000 elapsed=5.028ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:14.016] Imported new chain segment number=6272 hash=9340f2..a0ff14 blocks=1 txs=0 mgas=0.000 elapsed=6.010ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:15.286] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:04:19.016] Imported new chain segment number=6273 hash=52162a..b7f3d8 blocks=1 txs=0 mgas=0.000 elapsed=5.264ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:24.010] Imported new chain segment number=6274 hash=990f2d..6ff1fc blocks=1 txs=0 mgas=0.000 elapsed=4.500ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:25.306] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:04:29.018] Imported new chain segment number=6275 hash=8059a1..b311d2 blocks=1 txs=0 mgas=0.000 elapsed=7.092ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:34.016] Imported new chain segment number=6276 hash=742a7e..3f1be8 blocks=1 txs=0 mgas=0.000 elapsed=6.101ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:35.326] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:04:39.018] Imported new chain segment number=6277 hash=61c253..e857e6 blocks=1 txs=0 mgas=0.000 elapsed=6.312ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:44.017] Imported new chain segment number=6278 hash=7700e3..c979cb blocks=1 txs=0 mgas=0.000 elapsed=6.604ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:45.349] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:04:49.013] Imported new chain segment number=6279 hash=4c78bd..55352e blocks=1 txs=0 mgas=0.000 elapsed=5.715ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:54.018] Imported new chain segment number=6280 hash=791c64..7eb7d6 blocks=1 txs=0 mgas=0.000 elapsed=6.670ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:55.370] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:04:59.019] Imported new chain segment number=6281 hash=cb922e..efef4c blocks=1 txs=0 mgas=0.000 elapsed=7.403ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:04.011] Imported new chain segment number=6282 hash=f692cb..a37fd7 blocks=1 txs=0 mgas=0.000 elapsed=5.348ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:05.390] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:05:09.019] Imported new chain segment number=6283 hash=243b34..ac6295 blocks=1 txs=0 mgas=0.000 elapsed=7.230ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:14.018] Imported new chain segment number=6284 hash=a4a464..c9b6cd blocks=1 txs=0 mgas=0.000 elapsed=6.255ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:15.409] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:05:19.018] Imported new chain segment number=6285 hash=1613c9..a485dc blocks=1 txs=0 mgas=0.000 elapsed=6.709ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:24.019] Imported new chain segment number=6286 hash=8d6d30..7f97c0 blocks=1 txs=0 mgas=0.000 elapsed=6.425ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:25.430] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:05:29.017] Imported new chain segment number=6287 hash=92c522..a7decf blocks=1 txs=0 mgas=0.000 elapsed=6.090ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:34.011] Imported new chain segment number=6288 hash=6eb540..deedd9 blocks=1 txs=0 mgas=0.000 elapsed=4.952ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:35.451] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:05:39.013] Imported new chain segment number=6289 hash=b97c31..1493f2 blocks=1 txs=0 mgas=0.000 elapsed=5.801ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:44.017] Imported new chain segment number=6290 hash=e1424f..6a06b7 blocks=1 txs=0 mgas=0.000 elapsed=6.623ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:45.473] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:05:49.013] Imported new chain segment number=6291 hash=0e04b3..d052ff blocks=1 txs=0 mgas=0.000 elapsed=5.863ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:54.012] Imported new chain segment number=6292 hash=8f4deb..ff1cde blocks=1 txs=0 mgas=0.000 elapsed=4.982ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:55.492] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:05:59.012] Imported new chain segment number=6293 hash=adce99..f9f366 blocks=1 txs=0 mgas=0.000 elapsed=4.712ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:04.010] Imported new chain segment number=6294 hash=a2bdfc..8f4d62 blocks=1 txs=0 mgas=0.000 elapsed=5.001ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:05.513] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:06:09.018] Imported new chain segment number=6295 hash=865751..0cd54e blocks=1 txs=0 mgas=0.000 elapsed=7.751ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:14.016] Imported new chain segment number=6296 hash=f7c06e..78c4e7 blocks=1 txs=0 mgas=0.000 elapsed=5.832ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:15.530] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:06:19.017] Imported new chain segment number=6297 hash=4505ee..29e2bf blocks=1 txs=0 mgas=0.000 elapsed=5.959ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:24.016] Imported new chain segment number=6298 hash=b036c6..978548 blocks=1 txs=0 mgas=0.000 elapsed=7.264ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:25.548] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:06:29.014] Imported new chain segment number=6299 hash=9fa773..483b71 blocks=1 txs=0 mgas=0.000 elapsed=5.285ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:34.011] Imported new chain segment number=6300 hash=a9f572..517433 blocks=1 txs=0 mgas=0.000 elapsed=5.469ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:35.566] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:06:39.014] Imported new chain segment number=6301 hash=7b781e..896e02 blocks=1 txs=0 mgas=0.000 elapsed=4.949ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:44.014] Imported new chain segment number=6302 hash=112f1e..bb2877 blocks=1 txs=0 mgas=0.000 elapsed=6.635ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:45.587] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:06:49.013] Imported new chain segment number=6303 hash=b4fb9d..22afad blocks=1 txs=0 mgas=0.000 elapsed=5.964ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:54.012] Imported new chain segment number=6304 hash=ba9e8c..0717f2 blocks=1 txs=0 mgas=0.000 elapsed=5.006ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:55.608] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:06:59.018] Imported new chain segment number=6305 hash=9e2c2e..bad527 blocks=1 txs=0 mgas=0.000 elapsed=6.323ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:04.011] Imported new chain segment number=6306 hash=399355..a63d0a blocks=1 txs=0 mgas=0.000 elapsed=4.914ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:05.628] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:07:09.018] Imported new chain segment number=6307 hash=ca8218..063c50 blocks=1 txs=0 mgas=0.000 elapsed=6.215ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:14.011] Imported new chain segment number=6308 hash=79c47a..2c8523 blocks=1 txs=0 mgas=0.000 elapsed=4.995ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:15.649] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:07:19.015] Imported new chain segment number=6309 hash=750b23..8387e3 blocks=1 txs=0 mgas=0.000 elapsed=5.530ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:24.010] Imported new chain segment number=6310 hash=86097f..fabca7 blocks=1 txs=0 mgas=0.000 elapsed=4.625ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:25.670] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:07:29.011] Imported new chain segment number=6311 hash=73a94f..684363 blocks=1 txs=0 mgas=0.000 elapsed=4.704ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:34.018] Imported new chain segment number=6312 hash=896bac..294f4b blocks=1 txs=0 mgas=0.000 elapsed=5.485ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:35.689] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:07:39.015] Imported new chain segment number=6313 hash=762688..dde6db blocks=1 txs=0 mgas=0.000 elapsed=5.390ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:44.018] Imported new chain segment number=6314 hash=c2298c..7774e7 blocks=1 txs=0 mgas=0.000 elapsed=5.926ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:45.707] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:07:49.020] Imported new chain segment number=6315 hash=0cf7b0..f73e04 blocks=1 txs=0 mgas=0.000 elapsed=6.743ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:54.020] Imported new chain segment number=6316 hash=c3b8c1..449210 blocks=1 txs=0 mgas=0.000 elapsed=7.940ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:55.727] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:07:59.016] Imported new chain segment number=6317 hash=841cda..2b40a9 blocks=1 txs=0 mgas=0.000 elapsed=6.211ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:04.021] Imported new chain segment number=6318 hash=12fe10..b1f822 blocks=1 txs=0 mgas=0.000 elapsed=8.739ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:05.744] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:08:09.012] Imported new chain segment number=6319 hash=386708..282cd1 blocks=1 txs=0 mgas=0.000 elapsed=5.793ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:14.020] Imported new chain segment number=6320 hash=dd4427..4fa666 blocks=1 txs=0 mgas=0.000 elapsed=7.544ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:15.764] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:08:19.011] Imported new chain segment number=6321 hash=c93648..554dbc blocks=1 txs=0 mgas=0.000 elapsed=4.512ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:24.029] Imported new chain segment number=6322 hash=d4a567..33b0ad blocks=1 txs=0 mgas=0.000 elapsed=17.433ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:25.782] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:08:29.029] Imported new chain segment number=6323 hash=7a58f4..c0b2fb blocks=1 txs=0 mgas=0.000 elapsed=13.178ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:34.022] Imported new chain segment number=6324 hash=fcc897..c2ba30 blocks=1 txs=0 mgas=0.000 elapsed=9.979ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:35.800] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:08:39.036] Imported new chain segment number=6325 hash=951c17..29c91e blocks=1 txs=0 mgas=0.000 elapsed=18.616ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:44.030] Imported new chain segment number=6326 hash=82142d..59250a blocks=1 txs=0 mgas=0.000 elapsed=13.454ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:45.821] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:08:49.029] Imported new chain segment number=6327 hash=12b68a..3f1e42 blocks=1 txs=0 mgas=0.000 elapsed=14.030ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:54.031] Imported new chain segment number=6328 hash=f48f89..d4f1fc blocks=1 txs=0 mgas=0.000 elapsed=21.274ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:55.841] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:08:59.036] Imported new chain segment number=6329 hash=b4ccee..92188c blocks=1 txs=0 mgas=0.000 elapsed=14.889ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:04.043] Imported new chain segment number=6330 hash=a5b330..1c2dab blocks=1 txs=0 mgas=0.000 elapsed=16.108ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:05.865] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:09:09.030] Imported new chain segment number=6331 hash=af6859..ce5398 blocks=1 txs=0 mgas=0.000 elapsed=14.517ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:14.048] Imported new chain segment number=6332 hash=fa3c8b..4e832e blocks=1 txs=0 mgas=0.000 elapsed=27.522ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:15.885] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:09:19.035] Imported new chain segment number=6333 hash=4f1ea4..b50b60 blocks=1 txs=0 mgas=0.000 elapsed=18.278ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:24.033] Imported new chain segment number=6334 hash=16a44f..c5ddab blocks=1 txs=0 mgas=0.000 elapsed=18.587ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:25.906] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:09:29.058] Imported new chain segment number=6335 hash=3739be..9a1294 blocks=1 txs=0 mgas=0.000 elapsed=23.613ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:34.019] Imported new chain segment number=6336 hash=93055b..fc01bb blocks=1 txs=0 mgas=0.000 elapsed=6.778ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:35.926] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:09:39.013] Imported new chain segment number=6337 hash=de03f0..77f10e blocks=1 txs=0 mgas=0.000 elapsed=5.377ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:44.020] Imported new chain segment number=6338 hash=1ca266..80546c blocks=1 txs=0 mgas=0.000 elapsed=7.636ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:45.944] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:09:49.019] Imported new chain segment number=6339 hash=7fb5dc..6d1664 blocks=1 txs=0 mgas=0.000 elapsed=6.104ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:54.017] Imported new chain segment number=6340 hash=1ec9bb..c9293f blocks=1 txs=0 mgas=0.000 elapsed=6.246ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:55.962] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:09:59.014] Imported new chain segment number=6341 hash=adea84..16fe23 blocks=1 txs=0 mgas=0.000 elapsed=5.484ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:04.018] Imported new chain segment number=6342 hash=b23e2a..3af442 blocks=1 txs=0 mgas=0.000 elapsed=6.673ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:05.984] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:10:09.015] Imported new chain segment number=6343 hash=bdbc00..3f9826 blocks=1 txs=0 mgas=0.000 elapsed=5.337ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:14.016] Imported new chain segment number=6344 hash=291ada..3c2ec3 blocks=1 txs=0 mgas=0.000 elapsed=7.492ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:16.006] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:10:19.017] Imported new chain segment number=6345 hash=507de2..332ee5 blocks=1 txs=0 mgas=0.000 elapsed=6.159ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:24.017] Imported new chain segment number=6346 hash=01f482..c7e970 blocks=1 txs=0 mgas=0.000 elapsed=6.250ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:26.024] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:10:29.016] Imported new chain segment number=6347 hash=d54bbe..2dc7ed blocks=1 txs=0 mgas=0.000 elapsed=6.135ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:34.010] Imported new chain segment number=6348 hash=050f8d..02f6a3 blocks=1 txs=0 mgas=0.000 elapsed=4.871ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:36.044] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:10:39.018] Imported new chain segment number=6349 hash=9b5d5a..5f095e blocks=1 txs=0 mgas=0.000 elapsed=6.360ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:44.014] Imported new chain segment number=6350 hash=fb0d1e..be6058 blocks=1 txs=0 mgas=0.000 elapsed=5.436ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:46.066] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:10:49.023] Imported new chain segment number=6351 hash=b24112..ebd727 blocks=1 txs=0 mgas=0.000 elapsed=10.211ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:54.012] Imported new chain segment number=6352 hash=45b56b..94ec8a blocks=1 txs=0 mgas=0.000 elapsed=4.814ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:56.083] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:10:59.015] Imported new chain segment number=6353 hash=c08a13..ccef6d blocks=1 txs=0 mgas=0.000 elapsed=5.896ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:04.018] Imported new chain segment number=6354 hash=8e9510..79d2ed blocks=1 txs=0 mgas=0.000 elapsed=5.542ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:06.104] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:11:09.019] Imported new chain segment number=6355 hash=47534b..349a95 blocks=1 txs=0 mgas=0.000 elapsed=6.588ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:14.019] Imported new chain segment number=6356 hash=8f84ed..721078 blocks=1 txs=0 mgas=0.000 elapsed=6.731ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:16.123] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:11:19.021] Imported new chain segment number=6357 hash=82c221..7df72c blocks=1 txs=0 mgas=0.000 elapsed=8.387ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:24.020] Imported new chain segment number=6358 hash=54cf82..621199 blocks=1 txs=0 mgas=0.000 elapsed=6.864ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:26.143] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:11:29.015] Imported new chain segment number=6359 hash=287b1f..1223c4 blocks=1 txs=0 mgas=0.000 elapsed=5.000ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:34.018] Imported new chain segment number=6360 hash=44ee1d..9d7743 blocks=1 txs=0 mgas=0.000 elapsed=6.733ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:36.164] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:11:39.020] Imported new chain segment number=6361 hash=0428c3..621af1 blocks=1 txs=0 mgas=0.000 elapsed=7.213ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:44.017] Imported new chain segment number=6362 hash=45539f..0e7777 blocks=1 txs=0 mgas=0.000 elapsed=6.749ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:46.185] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:11:49.018] Imported new chain segment number=6363 hash=a5d57c..21659a blocks=1 txs=0 mgas=0.000 elapsed=6.536ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:54.016] Imported new chain segment number=6364 hash=87e28e..852c93 blocks=1 txs=0 mgas=0.000 elapsed=6.603ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:56.202] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:11:59.011] Imported new chain segment number=6365 hash=8eb898..786970 blocks=1 txs=0 mgas=0.000 elapsed=4.842ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:04.020] Imported new chain segment number=6366 hash=a462f0..e25f76 blocks=1 txs=0 mgas=0.000 elapsed=7.007ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:06.221] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:12:09.016] Imported new chain segment number=6367 hash=daec93..75f0b8 blocks=1 txs=0 mgas=0.000 elapsed=6.313ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:14.020] Imported new chain segment number=6368 hash=6237ff..5cd7ae blocks=1 txs=0 mgas=0.000 elapsed=7.074ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:16.242] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:12:19.018] Imported new chain segment number=6369 hash=5150a5..a3c1b0 blocks=1 txs=0 mgas=0.000 elapsed=6.353ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:24.019] Imported new chain segment number=6370 hash=319e62..1fe3a4 blocks=1 txs=0 mgas=0.000 elapsed=7.203ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:26.262] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:12:29.020] Imported new chain segment number=6371 hash=c079ad..1e2ab4 blocks=1 txs=0 mgas=0.000 elapsed=6.510ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:34.019] Imported new chain segment number=6372 hash=142325..05b776 blocks=1 txs=0 mgas=0.000 elapsed=5.732ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:36.280] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:12:39.017] Imported new chain segment number=6373 hash=6de4a2..443686 blocks=1 txs=0 mgas=0.000 elapsed=5.798ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:44.016] Imported new chain segment number=6374 hash=ccaada..b6e633 blocks=1 txs=0 mgas=0.000 elapsed=5.144ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:46.304] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:12:49.023] Imported new chain segment number=6375 hash=f427df..a6d338 blocks=1 txs=0 mgas=0.000 elapsed=8.725ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:54.013] Imported new chain segment number=6376 hash=2806d7..de086b blocks=1 txs=0 mgas=0.000 elapsed=5.142ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:56.323] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:12:59.019] Imported new chain segment number=6377 hash=0d5690..b9b546 blocks=1 txs=0 mgas=0.000 elapsed=6.826ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:04.017] Imported new chain segment number=6378 hash=7f3970..62220a blocks=1 txs=0 mgas=0.000 elapsed=6.506ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:06.341] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:13:09.016] Imported new chain segment number=6379 hash=c9a977..035d4b blocks=1 txs=0 mgas=0.000 elapsed=5.857ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:14.018] Imported new chain segment number=6380 hash=7538d8..b9e0b0 blocks=1 txs=0 mgas=0.000 elapsed=6.361ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:16.362] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:13:19.018] Imported new chain segment number=6381 hash=b9e074..3e5d8e blocks=1 txs=0 mgas=0.000 elapsed=5.858ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:24.042] Imported new chain segment number=6382 hash=9aaa10..2b5c18 blocks=1 txs=0 mgas=0.000 elapsed=5.414ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:26.380] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:13:29.018] Imported new chain segment number=6383 hash=316c04..98c123 blocks=1 txs=0 mgas=0.000 elapsed=5.967ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:34.016] Imported new chain segment number=6384 hash=f43b88..b2e72a blocks=1 txs=0 mgas=0.000 elapsed=6.822ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:36.401] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:13:39.018] Imported new chain segment number=6385 hash=a7e9dd..557c67 blocks=1 txs=0 mgas=0.000 elapsed=7.069ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:44.017] Imported new chain segment number=6386 hash=bdc114..119e3d blocks=1 txs=0 mgas=0.000 elapsed=6.933ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:46.420] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:13:49.010] Imported new chain segment number=6387 hash=7078cc..01eb48 blocks=1 txs=0 mgas=0.000 elapsed=4.413ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:54.018] Imported new chain segment number=6388 hash=ce848c..3e7be7 blocks=1 txs=0 mgas=0.000 elapsed=7.191ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:56.438] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:13:59.016] Imported new chain segment number=6389 hash=66f792..3b255e blocks=1 txs=0 mgas=0.000 elapsed=5.133ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:04.017] Imported new chain segment number=6390 hash=dc006a..17c55f blocks=1 txs=0 mgas=0.000 elapsed=6.245ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:06.458] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:14:09.016] Imported new chain segment number=6391 hash=6fb250..e5ed59 blocks=1 txs=0 mgas=0.000 elapsed=6.520ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:14.014] Imported new chain segment number=6392 hash=02a210..324b89 blocks=1 txs=0 mgas=0.000 elapsed=5.178ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:16.479] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:14:19.018] Imported new chain segment number=6393 hash=8e7771..be3863 blocks=1 txs=0 mgas=0.000 elapsed=6.433ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:24.016] Imported new chain segment number=6394 hash=b806c5..671de4 blocks=1 txs=0 mgas=0.000 elapsed=5.665ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:26.499] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:14:29.016] Imported new chain segment number=6395 hash=fefe60..1bbb21 blocks=1 txs=0 mgas=0.000 elapsed=6.959ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:34.019] Imported new chain segment number=6396 hash=c9d596..62e010 blocks=1 txs=0 mgas=0.000 elapsed=7.356ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:36.515] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:14:39.018] Imported new chain segment number=6397 hash=425fd9..f351d1 blocks=1 txs=0 mgas=0.000 elapsed=6.018ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:44.010] Imported new chain segment number=6398 hash=e7def1..2d04d1 blocks=1 txs=0 mgas=0.000 elapsed=4.708ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:46.537] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:14:49.020] Imported new chain segment number=6399 hash=ad674c..5cfb04 blocks=1 txs=0 mgas=0.000 elapsed=8.422ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:54.010] Imported new chain segment number=6400 hash=2171f9..4b057d blocks=1 txs=0 mgas=0.000 elapsed=4.544ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:56.555] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:14:59.020] Imported new chain segment number=6401 hash=ee5500..aa07ac blocks=1 txs=0 mgas=0.000 elapsed=7.297ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:04.012] Imported new chain segment number=6402 hash=522cb0..ba4f2e blocks=1 txs=0 mgas=0.000 elapsed=5.715ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:06.575] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:15:09.012] Imported new chain segment number=6403 hash=a1b1d2..244da3 blocks=1 txs=0 mgas=0.000 elapsed=6.813ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:14.018] Imported new chain segment number=6404 hash=45d779..43fbf7 blocks=1 txs=0 mgas=0.000 elapsed=6.707ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:16.597] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:15:19.013] Imported new chain segment number=6405 hash=f8a53e..897fc8 blocks=1 txs=0 mgas=0.000 elapsed=5.435ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:24.020] Imported new chain segment number=6406 hash=d4f92c..fda890 blocks=1 txs=0 mgas=0.000 elapsed=7.907ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:26.619] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:15:29.017] Imported new chain segment number=6407 hash=13681d..4b72fe blocks=1 txs=0 mgas=0.000 elapsed=6.290ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:34.012] Imported new chain segment number=6408 hash=77a8e6..e45a25 blocks=1 txs=0 mgas=0.000 elapsed=4.859ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:36.638] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:15:39.013] Imported new chain segment number=6409 hash=e73d7f..52f26b blocks=1 txs=0 mgas=0.000 elapsed=4.734ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:44.011] Imported new chain segment number=6410 hash=cec649..b34663 blocks=1 txs=0 mgas=0.000 elapsed=5.288ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:46.659] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:15:49.018] Imported new chain segment number=6411 hash=d98120..7b1a32 blocks=1 txs=0 mgas=0.000 elapsed=7.072ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:54.019] Imported new chain segment number=6412 hash=f3978f..94f15b blocks=1 txs=0 mgas=0.000 elapsed=6.612ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:56.681] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:15:59.010] Imported new chain segment number=6413 hash=b3b9f4..02c714 blocks=1 txs=0 mgas=0.000 elapsed=4.440ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:04.021] Imported new chain segment number=6414 hash=d1e239..218282 blocks=1 txs=0 mgas=0.000 elapsed=7.717ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:06.703] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:16:09.015] Imported new chain segment number=6415 hash=a738d8..39d833 blocks=1 txs=0 mgas=0.000 elapsed=5.921ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:14.015] Imported new chain segment number=6416 hash=3a57b6..94d4f0 blocks=1 txs=0 mgas=0.000 elapsed=4.928ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:16.726] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:16:19.013] Imported new chain segment number=6417 hash=470732..a8e6ed blocks=1 txs=0 mgas=0.000 elapsed=6.413ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:24.016] Imported new chain segment number=6418 hash=097633..ec5f96 blocks=1 txs=0 mgas=0.000 elapsed=5.636ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:26.744] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:16:29.015] Imported new chain segment number=6419 hash=105756..34131f blocks=1 txs=0 mgas=0.000 elapsed=5.596ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:34.015] Imported new chain segment number=6420 hash=e8e168..8bbbe1 blocks=1 txs=0 mgas=0.000 elapsed=5.010ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:36.764] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:16:39.018] Imported new chain segment number=6421 hash=6f221a..b315cf blocks=1 txs=0 mgas=0.000 elapsed=6.835ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:44.020] Imported new chain segment number=6422 hash=5ed405..0ebbf9 blocks=1 txs=0 mgas=0.000 elapsed=7.733ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:46.786] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:16:49.015] Imported new chain segment number=6423 hash=e65dc8..761ae9 blocks=1 txs=0 mgas=0.000 elapsed=6.803ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:54.019] Imported new chain segment number=6424 hash=96edb6..c233e0 blocks=1 txs=0 mgas=0.000 elapsed=6.561ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:56.808] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:16:59.019] Imported new chain segment number=6425 hash=7a0f10..ad5ba2 blocks=1 txs=0 mgas=0.000 elapsed=7.306ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:04.015] Imported new chain segment number=6426 hash=d99511..8fdc0d blocks=1 txs=0 mgas=0.000 elapsed=5.940ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:06.829] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:17:09.017] Imported new chain segment number=6427 hash=fd63ad..412458 blocks=1 txs=0 mgas=0.000 elapsed=5.537ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:14.019] Imported new chain segment number=6428 hash=a362fd..4f102a blocks=1 txs=0 mgas=0.000 elapsed=7.499ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:16.852] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:17:19.016] Imported new chain segment number=6429 hash=5b6ef0..e86be4 blocks=1 txs=0 mgas=0.000 elapsed=5.319ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:24.016] Imported new chain segment number=6430 hash=e85762..94fd7d blocks=1 txs=0 mgas=0.000 elapsed=5.757ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:26.870] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:17:29.014] Imported new chain segment number=6431 hash=be6a1a..457ab8 blocks=1 txs=0 mgas=0.000 elapsed=5.880ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:34.017] Imported new chain segment number=6432 hash=4caf63..e11bb9 blocks=1 txs=0 mgas=0.000 elapsed=7.303ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:36.888] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:17:39.017] Imported new chain segment number=6433 hash=a86773..f8f2b2 blocks=1 txs=0 mgas=0.000 elapsed=6.134ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:44.017] Imported new chain segment number=6434 hash=01a6e6..fa9c0e blocks=1 txs=0 mgas=0.000 elapsed=7.161ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:46.909] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:17:49.014] Imported new chain segment number=6435 hash=8ed5c0..d11ea6 blocks=1 txs=0 mgas=0.000 elapsed=4.319ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:54.014] Imported new chain segment number=6436 hash=d2a0ae..079e8e blocks=1 txs=0 mgas=0.000 elapsed=5.384ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:56.930] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:17:59.018] Imported new chain segment number=6437 hash=302f15..8a9ba7 blocks=1 txs=0 mgas=0.000 elapsed=6.576ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:04.011] Imported new chain segment number=6438 hash=c9004a..054b21 blocks=1 txs=0 mgas=0.000 elapsed=3.966ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:06.949] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:18:09.018] Imported new chain segment number=6439 hash=d49511..0db594 blocks=1 txs=0 mgas=0.000 elapsed=5.858ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:14.018] Imported new chain segment number=6440 hash=a41511..bb0022 blocks=1 txs=0 mgas=0.000 elapsed=7.315ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:16.970] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:18:19.011] Imported new chain segment number=6441 hash=efbb85..e5f377 blocks=1 txs=0 mgas=0.000 elapsed=4.238ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:24.011] Imported new chain segment number=6442 hash=5b61fc..f96ad6 blocks=1 txs=0 mgas=0.000 elapsed=4.500ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:26.991] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:18:29.026] Imported new chain segment number=6443 hash=ce6f53..7998b5 blocks=1 txs=0 mgas=0.000 elapsed=13.826ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:34.125] Imported new chain segment number=6444 hash=fd49c7..669472 blocks=1 txs=0 mgas=0.000 elapsed=28.770ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:37.042] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:18:39.020] Imported new chain segment number=6445 hash=71aee5..c600ae blocks=1 txs=0 mgas=0.000 elapsed=8.048ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:44.025] Imported new chain segment number=6446 hash=b3c928..7071eb blocks=1 txs=0 mgas=0.000 elapsed=10.834ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:47.073] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:18:49.018] Imported new chain segment number=6447 hash=65a12d..a88dba blocks=1 txs=0 mgas=0.000 elapsed=7.485ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:54.023] Imported new chain segment number=6448 hash=deec1b..1a504b blocks=1 txs=0 mgas=0.000 elapsed=6.391ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:57.102] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:18:59.027] Imported new chain segment number=6449 hash=4a184d..3d0802 blocks=1 txs=0 mgas=0.000 elapsed=11.864ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:04.022] Imported new chain segment number=6450 hash=f0b37d..6fd5b3 blocks=1 txs=0 mgas=0.000 elapsed=7.500ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:07.129] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:19:09.024] Imported new chain segment number=6451 hash=c2523c..4d1830 blocks=1 txs=0 mgas=0.000 elapsed=8.664ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:14.027] Imported new chain segment number=6452 hash=abf9f0..7bfb5d blocks=1 txs=0 mgas=0.000 elapsed=12.457ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:17.154] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:19:19.028] Imported new chain segment number=6453 hash=810adc..0e907b blocks=1 txs=0 mgas=0.000 elapsed=10.173ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:24.030] Imported new chain segment number=6454 hash=35f263..0f6f4d blocks=1 txs=0 mgas=0.000 elapsed=11.766ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:27.177] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:19:29.022] Imported new chain segment number=6455 hash=77db4a..6c9aba blocks=1 txs=0 mgas=0.000 elapsed=8.900ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:34.032] Imported new chain segment number=6456 hash=a6f433..d38400 blocks=1 txs=0 mgas=0.000 elapsed=11.342ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:37.202] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:19:39.025] Imported new chain segment number=6457 hash=b0db7f..079afa blocks=1 txs=0 mgas=0.000 elapsed=10.743ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:44.023] Imported new chain segment number=6458 hash=3b4bed..f92698 blocks=1 txs=0 mgas=0.000 elapsed=7.774ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:47.600] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:19:49.042] Imported new chain segment number=6459 hash=80b321..dbb594 blocks=1 txs=0 mgas=0.000 elapsed=11.017ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:54.027] Imported new chain segment number=6460 hash=880e13..be3549 blocks=1 txs=0 mgas=0.000 elapsed=7.385ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:57.658] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:19:59.051] Imported new chain segment number=6461 hash=a41e57..1bc4d4 blocks=1 txs=0 mgas=0.000 elapsed=25.413ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:04.046] Imported new chain segment number=6462 hash=cacdb2..250640 blocks=1 txs=0 mgas=0.000 elapsed=17.616ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:07.704] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:20:09.036] Imported new chain segment number=6463 hash=8c68a9..915495 blocks=1 txs=0 mgas=0.000 elapsed=12.015ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:14.033] Imported new chain segment number=6464 hash=427d05..865ba2 blocks=1 txs=0 mgas=0.000 elapsed=15.377ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:17.740] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:20:19.515] Imported new chain segment number=6465 hash=b22240..debba7 blocks=1 txs=0 mgas=0.000 elapsed=19.259ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:24.035] Imported new chain segment number=6466 hash=d931f8..f80a90 blocks=1 txs=0 mgas=0.000 elapsed=16.015ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:27.786] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:20:29.045] Imported new chain segment number=6467 hash=1a821f..ff371c blocks=1 txs=0 mgas=0.000 elapsed=10.850ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:34.030] Imported new chain segment number=6468 hash=ec29f9..3f968f blocks=1 txs=0 mgas=0.000 elapsed=13.214ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:37.954] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:20:39.043] Imported new chain segment number=6469 hash=99584e..519880 blocks=1 txs=0 mgas=0.000 elapsed=20.479ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:44.034] Imported new chain segment number=6470 hash=785597..d9d401 blocks=1 txs=0 mgas=0.000 elapsed=6.345ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:47.981] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:20:49.033] Imported new chain segment number=6471 hash=1262c7..8bfb10 blocks=1 txs=0 mgas=0.000 elapsed=11.645ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:54.059] Imported new chain segment number=6472 hash=7bafce..bdb616 blocks=1 txs=0 mgas=0.000 elapsed=28.534ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:58.008] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:20:59.035] Imported new chain segment number=6473 hash=5789c4..3a2463 blocks=1 txs=0 mgas=0.000 elapsed=17.398ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:04.044] Imported new chain segment number=6474 hash=65bf49..78e518 blocks=1 txs=0 mgas=0.000 elapsed=15.474ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:08.035] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:21:09.048] Imported new chain segment number=6475 hash=81632b..6f573c blocks=1 txs=0 mgas=0.000 elapsed=25.725ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:14.052] Imported new chain segment number=6476 hash=c65dc5..f3de00 blocks=1 txs=0 mgas=0.000 elapsed=27.002ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:18.063] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:21:19.025] Imported new chain segment number=6477 hash=bb9e7a..a6d776 blocks=1 txs=0 mgas=0.000 elapsed=16.877ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:24.051] Imported new chain segment number=6478 hash=f71a17..2b2bf2 blocks=1 txs=0 mgas=0.000 elapsed=25.361ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:28.084] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:21:29.055] Imported new chain segment number=6479 hash=e437c7..afda33 blocks=1 txs=0 mgas=0.000 elapsed=24.786ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:34.051] Imported new chain segment number=6480 hash=71701d..79c535 blocks=1 txs=0 mgas=0.000 elapsed=18.790ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:38.111] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:21:39.056] Imported new chain segment number=6481 hash=38b9ad..a8b6f0 blocks=1 txs=0 mgas=0.000 elapsed=21.972ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:44.057] Imported new chain segment number=6482 hash=7af0fb..03ae79 blocks=1 txs=0 mgas=0.000 elapsed=33.046ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:48.138] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:21:49.052] Imported new chain segment number=6483 hash=a6c18e..f1295e blocks=1 txs=0 mgas=0.000 elapsed=28.140ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:54.060] Imported new chain segment number=6484 hash=854081..76d414 blocks=1 txs=0 mgas=0.000 elapsed=34.037ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:58.165] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:21:59.033] Imported new chain segment number=6485 hash=256195..3be171 blocks=1 txs=0 mgas=0.000 elapsed=17.991ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:22:04.032] Imported new chain segment number=6486 hash=878d39..118760 blocks=1 txs=0 mgas=0.000 elapsed=15.732ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:22:08.191] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:22:09.025] Imported new chain segment number=6487 hash=8df702..a68f7e blocks=1 txs=0 mgas=0.000 elapsed=10.003ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:22:14.026] Imported new chain segment number=6488 hash=11b84e..1ece43 blocks=1 txs=0 mgas=0.000 elapsed=12.489ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:22:18.221] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:22:19.028] Imported new chain segment number=6489 hash=7e88b8..69384f blocks=1 txs=0 mgas=0.000 elapsed=14.797ms mgasps=0.000 triedirty=39.90KiB diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/LOCK b/vote-block-skripsi/geth-vote/node2/data/geth/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00004096.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00004096.bag new file mode 100644 index 0000000..6df4fb8 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00004096.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00135168.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00135168.bag new file mode 100644 index 0000000..9323365 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00135168.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00266240.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00266240.bag new file mode 100644 index 0000000..7ad82b4 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00266240.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00397312.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00397312.bag new file mode 100644 index 0000000..41a34f0 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00397312.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00528384.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00528384.bag new file mode 100644 index 0000000..f3939c3 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00528384.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00659456.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00659456.bag new file mode 100644 index 0000000..c470b7f Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00659456.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00790528.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00790528.bag new file mode 100644 index 0000000..9f574f8 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00790528.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00921600.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00921600.bag new file mode 100644 index 0000000..90eb3ab Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_00921600.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_01052672.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_01052672.bag new file mode 100644 index 0000000..3bc4fcb Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_01052672.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_01183744.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_01183744.bag new file mode 100644 index 0000000..bfcd716 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_01183744.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_01314816.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_01314816.bag new file mode 100644 index 0000000..907e524 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_01314816.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_01445888.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_01445888.bag new file mode 100644 index 0000000..69c3176 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_01445888.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_01576960.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_01576960.bag new file mode 100644 index 0000000..841fded Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_01576960.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_01708032.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_01708032.bag new file mode 100644 index 0000000..0263c59 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_01708032.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_01839104.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_01839104.bag new file mode 100644 index 0000000..c7f8fa4 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/limbo/bkt_01839104.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00004096.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00004096.bag new file mode 100644 index 0000000..6df4fb8 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00004096.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00135168.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00135168.bag new file mode 100644 index 0000000..9323365 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00135168.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00266240.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00266240.bag new file mode 100644 index 0000000..7ad82b4 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00266240.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00397312.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00397312.bag new file mode 100644 index 0000000..41a34f0 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00397312.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00528384.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00528384.bag new file mode 100644 index 0000000..f3939c3 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00528384.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00659456.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00659456.bag new file mode 100644 index 0000000..c470b7f Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00659456.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00790528.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00790528.bag new file mode 100644 index 0000000..9f574f8 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00790528.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00921600.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00921600.bag new file mode 100644 index 0000000..90eb3ab Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_00921600.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_01052672.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_01052672.bag new file mode 100644 index 0000000..3bc4fcb Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_01052672.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_01183744.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_01183744.bag new file mode 100644 index 0000000..bfcd716 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_01183744.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_01314816.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_01314816.bag new file mode 100644 index 0000000..907e524 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_01314816.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_01445888.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_01445888.bag new file mode 100644 index 0000000..69c3176 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_01445888.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_01576960.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_01576960.bag new file mode 100644 index 0000000..841fded Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_01576960.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_01708032.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_01708032.bag new file mode 100644 index 0000000..0263c59 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_01708032.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_01839104.bag b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_01839104.bag new file mode 100644 index 0000000..c7f8fa4 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/blobpool/queue/bkt_01839104.bag differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/000050.log b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/000050.log new file mode 100644 index 0000000..04a27e1 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/000050.log differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/000053.sst b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/000053.sst new file mode 100644 index 0000000..b02c0d1 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/000053.sst differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/000054.log b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/000054.log new file mode 100644 index 0000000..4d258d7 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/000054.log differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/000055.log b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/000055.log new file mode 100644 index 0000000..71e7992 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/000055.log differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/CURRENT b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/CURRENT new file mode 100644 index 0000000..29ffc22 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/CURRENT @@ -0,0 +1 @@ +MANIFEST-000051 diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/LOCK b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/MANIFEST-000044 b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/MANIFEST-000044 new file mode 100644 index 0000000..460abe0 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/MANIFEST-000044 differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/MANIFEST-000051 b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/MANIFEST-000051 new file mode 100644 index 0000000..f6a1945 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/MANIFEST-000051 differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/OPTIONS-000052 b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/OPTIONS-000052 new file mode 100644 index 0000000..64a984b --- /dev/null +++ b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/OPTIONS-000052 @@ -0,0 +1,107 @@ +[Version] + pebble_version=0.1 + +[Options] + bytes_per_sync=524288 + cache_size=536870912 + cleaner=delete + compaction_debt_concurrency=1073741824 + comparer=leveldb.BytewiseComparator + disable_wal=false + flush_delay_delete_range=0s + flush_delay_range_key=0s + flush_split_bytes=4194304 + format_major_version=1 + l0_compaction_concurrency=10 + l0_compaction_file_threshold=500 + l0_compaction_threshold=4 + l0_stop_writes_threshold=12 + lbase_max_bytes=67108864 + max_concurrent_compactions=8 + max_manifest_file_size=134217728 + max_open_files=524288 + mem_table_size=134217728 + mem_table_stop_writes_threshold=2 + min_deletion_rate=0 + merger=pebble.concatenate + read_compaction_rate=16000 + read_sampling_multiplier=-1 + strict_wal_tail=true + table_cache_shards=8 + table_property_collectors=[] + validate_on_ingest=false + wal_dir= + wal_bytes_per_sync=0 + max_writer_concurrency=0 + force_writer_parallelism=false + secondary_cache_size_bytes=0 + +[Level "0"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "1"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "2"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "3"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "4"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "5"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "6"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/FLOCK b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/FLOCK new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/bodies.0000.cdat b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/bodies.0000.cdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/bodies.cidx b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/bodies.cidx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/bodies.cidx differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/bodies.meta b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/bodies.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/bodies.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/diffs.0000.rdat b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/diffs.0000.rdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/diffs.meta b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/diffs.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/diffs.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/diffs.ridx b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/diffs.ridx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/diffs.ridx differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/hashes.0000.rdat b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/hashes.0000.rdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/hashes.meta b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/hashes.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/hashes.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/hashes.ridx b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/hashes.ridx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/hashes.ridx differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/headers.0000.cdat b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/headers.0000.cdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/headers.cidx b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/headers.cidx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/headers.cidx differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/headers.meta b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/headers.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/headers.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/receipts.0000.cdat b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/receipts.0000.cdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/receipts.cidx b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/receipts.cidx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/receipts.cidx differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/receipts.meta b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/receipts.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node2/data/geth/chaindata/ancient/chain/receipts.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/jwtsecret b/vote-block-skripsi/geth-vote/node2/data/geth/jwtsecret new file mode 100644 index 0000000..6cdeb07 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node2/data/geth/jwtsecret @@ -0,0 +1 @@ +0xb760d987ef7f4311b990543600f72e43015ba2c3e78f43839aaa6dee5afd5027 \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/000002.log b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/000002.log new file mode 100644 index 0000000..8abd502 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/000002.log differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/CURRENT b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/CURRENT new file mode 100644 index 0000000..7ed683d --- /dev/null +++ b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/LOCK b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/MANIFEST-000001 b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/MANIFEST-000001 new file mode 100644 index 0000000..7c30d31 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/MANIFEST-000001 differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/OPTIONS-000003 b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/OPTIONS-000003 new file mode 100644 index 0000000..12e1cf3 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/OPTIONS-000003 @@ -0,0 +1,107 @@ +[Version] + pebble_version=0.1 + +[Options] + bytes_per_sync=524288 + cache_size=16777216 + cleaner=delete + compaction_debt_concurrency=1073741824 + comparer=leveldb.BytewiseComparator + disable_wal=false + flush_delay_delete_range=0s + flush_delay_range_key=0s + flush_split_bytes=4194304 + format_major_version=1 + l0_compaction_concurrency=10 + l0_compaction_file_threshold=500 + l0_compaction_threshold=4 + l0_stop_writes_threshold=12 + lbase_max_bytes=67108864 + max_concurrent_compactions=8 + max_manifest_file_size=134217728 + max_open_files=16 + mem_table_size=4194304 + mem_table_stop_writes_threshold=2 + min_deletion_rate=0 + merger=pebble.concatenate + read_compaction_rate=16000 + read_sampling_multiplier=-1 + strict_wal_tail=true + table_cache_shards=8 + table_property_collectors=[] + validate_on_ingest=false + wal_dir= + wal_bytes_per_sync=0 + max_writer_concurrency=0 + force_writer_parallelism=false + secondary_cache_size_bytes=0 + +[Level "0"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "1"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "2"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "3"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "4"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "5"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "6"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/FLOCK b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/FLOCK new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/bodies.0000.cdat b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/bodies.0000.cdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/bodies.cidx b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/bodies.cidx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/bodies.cidx differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/bodies.meta b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/bodies.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/bodies.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/diffs.0000.rdat b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/diffs.0000.rdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/diffs.meta b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/diffs.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/diffs.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/diffs.ridx b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/diffs.ridx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/diffs.ridx differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/hashes.0000.rdat b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/hashes.0000.rdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/hashes.meta b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/hashes.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/hashes.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/hashes.ridx b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/hashes.ridx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/hashes.ridx differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/headers.0000.cdat b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/headers.0000.cdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/headers.cidx b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/headers.cidx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/headers.cidx differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/headers.meta b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/headers.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/headers.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/receipts.0000.cdat b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/receipts.0000.cdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/receipts.cidx b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/receipts.cidx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/receipts.cidx differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/receipts.meta b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/receipts.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node2/data/geth/lightchaindata/ancient/chain/receipts.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/nodekey b/vote-block-skripsi/geth-vote/node2/data/geth/nodekey new file mode 100644 index 0000000..a62e24e --- /dev/null +++ b/vote-block-skripsi/geth-vote/node2/data/geth/nodekey @@ -0,0 +1 @@ +c1553cb3ed8a5721b41ffb98fad4f2fe8168dea7ab095fe062ee2b631ff3bb6e \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/nodes/000026.ldb b/vote-block-skripsi/geth-vote/node2/data/geth/nodes/000026.ldb new file mode 100644 index 0000000..c0d70c6 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/nodes/000026.ldb differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/nodes/000027.ldb b/vote-block-skripsi/geth-vote/node2/data/geth/nodes/000027.ldb new file mode 100644 index 0000000..db46211 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/nodes/000027.ldb differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/nodes/000028.log b/vote-block-skripsi/geth-vote/node2/data/geth/nodes/000028.log new file mode 100644 index 0000000..a5dcd41 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/nodes/000028.log differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/nodes/CURRENT b/vote-block-skripsi/geth-vote/node2/data/geth/nodes/CURRENT new file mode 100644 index 0000000..52f34be --- /dev/null +++ b/vote-block-skripsi/geth-vote/node2/data/geth/nodes/CURRENT @@ -0,0 +1 @@ +MANIFEST-000029 diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/nodes/CURRENT.bak b/vote-block-skripsi/geth-vote/node2/data/geth/nodes/CURRENT.bak new file mode 100644 index 0000000..f622090 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node2/data/geth/nodes/CURRENT.bak @@ -0,0 +1 @@ +MANIFEST-000025 diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/nodes/LOCK b/vote-block-skripsi/geth-vote/node2/data/geth/nodes/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/nodes/LOG b/vote-block-skripsi/geth-vote/node2/data/geth/nodes/LOG new file mode 100644 index 0000000..9a8b572 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node2/data/geth/nodes/LOG @@ -0,0 +1,112 @@ +=============== Jul 24, 2024 (+07) =============== +14:40:26.183477 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +14:40:26.194414 db@open opening +14:40:26.197671 version@stat F·[] S·0B[] Sc·[] +14:40:26.199675 db@janitor F·2 G·0 +14:40:26.199743 db@open done T·5.313205ms +=============== Jul 24, 2024 (+07) =============== +14:46:21.726199 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +14:46:21.726566 version@stat F·[] S·0B[] Sc·[] +14:46:21.726622 db@open opening +14:46:21.726666 journal@recovery F·1 +14:46:21.729371 journal@recovery recovering @1 +14:46:21.733448 memdb@flush created L0@2 N·99 S·1KiB "loc..seq,v2":"version,v1" +14:46:21.734710 version@stat F·[1] S·1KiB[1KiB] Sc·[0.25] +14:46:21.745711 db@janitor F·3 G·0 +14:46:21.745757 db@open done T·19.125631ms +=============== Jul 24, 2024 (+07) =============== +14:50:00.811756 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +14:50:00.812085 version@stat F·[1] S·1KiB[1KiB] Sc·[0.25] +14:50:00.812189 db@open opening +14:50:00.812255 journal@recovery F·1 +14:50:00.817533 journal@recovery recovering @3 +14:50:00.826242 memdb@flush created L0@5 N·173 S·2KiB "loc..seq,v101":"n:\xff..ong,v127" +14:50:00.827128 version@stat F·[2] S·3KiB[3KiB] Sc·[0.50] +14:50:00.842548 db@janitor F·4 G·0 +14:50:00.842644 db@open done T·30.441021ms +14:50:00.848993 table@compaction L0·2 -> L1·0 S·3KiB Q·274 +14:50:00.855983 table@build created L1@8 N·14 S·687B "loc..seq,v101":"version,v1" +14:50:00.856187 version@stat F·[0 1] S·687B[0B 687B] Sc·[0.00 0.00] +14:50:00.864049 table@compaction committed F-1 S-2KiB Ke·0 D·258 T·14.958393ms +14:50:00.864281 table@remove removed @2 +=============== Jul 24, 2024 (+07) =============== +14:51:02.395631 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +14:51:02.395837 version@stat F·[0 1] S·687B[0B 687B] Sc·[0.00 0.00] +14:51:02.395894 db@open opening +14:51:02.395967 journal@recovery F·1 +14:51:02.397136 journal@recovery recovering @6 +14:51:02.403107 memdb@flush created L0@9 N·50 S·811B "loc..seq,v275":"n:\xff..ong,v286" +14:51:02.405258 version@stat F·[1 1] S·1KiB[811B 687B] Sc·[0.25 0.00] +14:51:02.416017 db@janitor F·5 G·1 +14:51:02.416044 db@janitor removing table-5 +14:51:02.416081 db@open done T·20.17486ms +=============== Jul 24, 2024 (+07) =============== +14:52:42.266248 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +14:52:42.266372 version@stat F·[1 1] S·1KiB[811B 687B] Sc·[0.25 0.00] +14:52:42.266417 db@open opening +14:52:42.266450 journal@recovery F·1 +14:52:42.266993 journal@recovery recovering @10 +14:52:42.269834 memdb@flush created L0@12 N·48 S·914B "loc..seq,v326":"n:\xff..ong,v354" +14:52:42.271091 version@stat F·[2 1] S·2KiB[1KiB 687B] Sc·[0.50 0.00] +14:52:42.279808 db@janitor F·5 G·0 +14:52:42.279847 db@open done T·13.420646ms +14:52:42.282770 table@compaction L0·2 -> L1·1 S·2KiB Q·374 +14:52:42.287180 table@build created L1@15 N·15 S·684B "loc..seq,v326":"version,v1" +14:52:42.287320 version@stat F·[0 1] S·684B[0B 684B] Sc·[0.00 0.00] +14:52:42.303171 table@compaction committed F-2 S-1KiB Ke·0 D·97 T·20.328491ms +14:52:42.303376 table@remove removed @9 +14:52:42.303438 table@remove removed @8 +=============== Jul 26, 2024 (+07) =============== +11:28:45.473295 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +11:28:45.474830 version@stat F·[0 1] S·684B[0B 684B] Sc·[0.00 0.00] +11:28:45.474905 db@open opening +11:28:45.475295 journal@recovery F·1 +11:28:45.477417 journal@recovery recovering @13 +11:28:45.484584 memdb@flush created L0@16 N·612 S·6KiB "loc..seq,v375":"n:\xff..ong,v380" +11:28:45.486201 version@stat F·[1 1] S·7KiB[6KiB 684B] Sc·[0.25 0.00] +11:28:45.500419 db@janitor F·5 G·1 +11:28:45.500456 db@janitor removing table-12 +11:28:45.500501 db@open done T·25.58502ms +11:29:08.677719 table@compaction L0·1 -> L1·1 S·7KiB Q·1017 +11:29:08.767457 table@build created L1@19 N·15 S·689B "loc..seq,v375":"version,v1" +11:29:08.767818 version@stat F·[0 1] S·689B[0B 689B] Sc·[0.00 0.00] +11:29:08.773225 table@compaction committed F-1 S-6KiB Ke·0 D·612 T·89.243907ms +11:29:08.777183 table@remove removed @15 +=============== Aug 14, 2024 (+07) =============== +21:20:56.949812 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +21:20:56.952984 version@stat F·[0 1] S·689B[0B 689B] Sc·[0.00 0.00] +21:20:56.953071 db@open opening +21:20:56.953145 journal@recovery F·1 +21:20:56.954260 journal@recovery recovering @17 +21:20:57.010745 memdb@flush created L0@20 N·5685 S·56KiB "loc..seq,v988":"n:\xff..ong,v995" +21:20:57.018738 version@stat F·[1 1] S·56KiB[56KiB 689B] Sc·[0.25 0.00] +21:20:57.076425 db@janitor F·5 G·1 +21:20:57.076713 db@janitor removing table-16 +21:20:57.077071 db@open done T·123.9886ms +=============== Aug 21, 2024 (+07) =============== +09:12:20.377366 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +09:12:20.379157 version@stat F·[1 1] S·56KiB[56KiB 689B] Sc·[0.25 0.00] +09:12:20.379211 db@open opening +09:12:20.379287 journal@recovery F·1 +09:12:20.390497 journal@recovery recovering @21 +09:12:20.458579 memdb@flush created L0@23 N·2502 S·24KiB "loc..seq,v6674":"n:\xff..ong,v6685" +09:12:20.471518 version@stat F·[2 1] S·81KiB[81KiB 689B] Sc·[0.50 0.00] +09:12:20.591002 db@janitor F·5 G·0 +09:12:20.591071 db@open done T·211.847374ms +09:12:20.608324 table@compaction L0·2 -> L1·1 S·81KiB Q·9177 +09:12:20.667998 table@build created L1@26 N·17 S·839B "loc..seq,v6674":"version,v1" +09:12:20.668150 version@stat F·[0 1] S·839B[0B 839B] Sc·[0.00 0.00] +09:12:20.845514 table@compaction committed F-2 S-81KiB Ke·0 D·8185 T·237.13477ms +09:12:20.846325 table@remove removed @20 +09:12:20.846520 table@remove removed @19 +=============== Aug 24, 2024 (+07) =============== +09:19:11.226519 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +09:19:11.230828 version@stat F·[0 1] S·839B[0B 839B] Sc·[0.00 0.00] +09:19:11.230911 db@open opening +09:19:11.231565 journal@recovery F·1 +09:19:11.234800 journal@recovery recovering @24 +09:19:11.248820 memdb@flush created L0@27 N·2787 S·27KiB "loc..seq,v9177":"n:\xff..ong,v9182" +09:19:11.258036 version@stat F·[1 1] S·28KiB[27KiB 839B] Sc·[0.25 0.00] +09:19:11.289037 db@janitor F·5 G·1 +09:19:11.289234 db@janitor removing table-23 +09:19:11.289525 db@open done T·58.596007ms diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/nodes/MANIFEST-000029 b/vote-block-skripsi/geth-vote/node2/data/geth/nodes/MANIFEST-000029 new file mode 100644 index 0000000..0695079 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node2/data/geth/nodes/MANIFEST-000029 differ diff --git a/vote-block-skripsi/geth-vote/node2/data/geth/transactions.rlp b/vote-block-skripsi/geth-vote/node2/data/geth/transactions.rlp new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node2/data/keystore/UTC--2024-07-24T07-40-15.156950893Z--fb6cd3f865570b3f86631c71de0efce5be0940d3 b/vote-block-skripsi/geth-vote/node2/data/keystore/UTC--2024-07-24T07-40-15.156950893Z--fb6cd3f865570b3f86631c71de0efce5be0940d3 new file mode 100644 index 0000000..a106b61 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node2/data/keystore/UTC--2024-07-24T07-40-15.156950893Z--fb6cd3f865570b3f86631c71de0efce5be0940d3 @@ -0,0 +1 @@ +{"address":"fb6cd3f865570b3f86631c71de0efce5be0940d3","crypto":{"cipher":"aes-128-ctr","ciphertext":"25cfc080a1b4751b5bc3f231a8843c307ca14d00f0831304af7efb750e794007","cipherparams":{"iv":"34f4daf5b5e9d1d96ec638ed1494e67b"},"kdf":"scrypt","kdfparams":{"dklen":32,"n":262144,"p":1,"r":8,"salt":"365f33e8d7a79c1f433fcdbdfd0baa27ea46b194f1cd70d99e297a3c45f48c8c"},"mac":"3f738e6bfec52915d8debe4026b512b793ccd0180545622193e582e6f633508f"},"id":"a157766b-f8e4-499a-bb21-7991446e6404","version":3} \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node3.log b/vote-block-skripsi/geth-vote/node3.log new file mode 100644 index 0000000..be410d5 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node3.log @@ -0,0 +1,3351 @@ +INFO [08-24|09:19:10.411] Maximum peer count ETH=50 total=50 +INFO [08-24|09:19:10.415] Smartcard socket not found, disabling err="stat /run/pcscd/pcscd.comm: no such file or directory" +INFO [08-24|09:19:10.430] Set global gas cap cap=50,000,000 +INFO [08-24|09:19:10.430] Initializing the KZG library backend=gokzg +INFO [08-24|09:19:10.557] Allocated trie memory caches clean=154.00MiB dirty=256.00MiB +INFO [08-24|09:19:10.557] Using pebble as the backing database +INFO [08-24|09:19:10.557] Allocated cache and file handles database=/home/silviaprada/geth-vote/node3/data/geth/chaindata cache=512.00MiB handles=524,288 +INFO [08-24|09:19:10.908] Opened ancient database database=/home/silviaprada/geth-vote/node3/data/geth/chaindata/ancient/chain readonly=false +INFO [08-24|09:19:10.915] State scheme set to already existing scheme=hash +INFO [08-24|09:19:10.918] Initialising Ethereum protocol network=120,202 dbversion=8 +INFO [08-24|09:19:10.919] +INFO [08-24|09:19:10.919] --------------------------------------------------------------------------------------------------------------------------------------------------------- +INFO [08-24|09:19:10.919] Chain ID: 120202 (unknown) +INFO [08-24|09:19:10.919] Consensus: Clique (proof-of-authority) +INFO [08-24|09:19:10.919] +INFO [08-24|09:19:10.919] Pre-Merge hard forks (block based): +INFO [08-24|09:19:10.919] - Homestead: #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/homestead.md) +INFO [08-24|09:19:10.919] - Tangerine Whistle (EIP 150): #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/tangerine-whistle.md) +INFO [08-24|09:19:10.919] - Spurious Dragon/1 (EIP 155): #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/spurious-dragon.md) +INFO [08-24|09:19:10.919] - Spurious Dragon/2 (EIP 158): #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/spurious-dragon.md) +INFO [08-24|09:19:10.919] - Byzantium: #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/byzantium.md) +INFO [08-24|09:19:10.919] - Constantinople: #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/constantinople.md) +INFO [08-24|09:19:10.919] - Petersburg: #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/petersburg.md) +INFO [08-24|09:19:10.919] - Istanbul: #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/istanbul.md) +INFO [08-24|09:19:10.919] - Berlin: #0 (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/berlin.md) +INFO [08-24|09:19:10.919] - London: # (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/london.md) +INFO [08-24|09:19:10.919] +INFO [08-24|09:19:10.919] The Merge is not yet available for this network! +INFO [08-24|09:19:10.919] - Hard-fork specification: https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/paris.md +INFO [08-24|09:19:10.919] +INFO [08-24|09:19:10.919] Post-Merge hard forks (timestamp based): +INFO [08-24|09:19:10.919] +INFO [08-24|09:19:10.919] --------------------------------------------------------------------------------------------------------------------------------------------------------- +INFO [08-24|09:19:10.919] +INFO [08-24|09:19:10.919] Loaded most recent local block number=4302 hash=066493..eea1f4 td=8605 age=2d22h37m +WARN [08-24|09:19:10.919] Head state missing, repairing number=4302 hash=066493..eea1f4 +INFO [08-24|09:19:11.105] Loaded most recent local header number=4302 hash=066493..eea1f4 td=8605 age=2d22h37m +INFO [08-24|09:19:11.105] Loaded most recent local block number=10 hash=a4d7ec..90b7f8 td=21 age=1mo18h37m +INFO [08-24|09:19:11.105] Loaded most recent local snap block number=4302 hash=066493..eea1f4 td=8605 age=2d22h37m +WARN [08-24|09:19:11.159] Snapshot maintenance disabled (syncing) +INFO [08-24|09:19:11.160] Initialized transaction indexer range="last 2350000 blocks" +INFO [08-24|09:19:11.162] Loaded local transaction journal transactions=0 dropped=0 +WARN [08-24|09:19:11.233] Switch sync mode from snap sync to full sync reason="snap sync complete" +INFO [08-24|09:19:11.237] Gasprice oracle is ignoring threshold set threshold=2 +WARN [08-24|09:19:11.241] Unclean shutdown detected booted=2024-07-24T14:40:26+0700 age=1mo18h38m +WARN [08-24|09:19:11.241] Unclean shutdown detected booted=2024-07-24T14:46:21+0700 age=1mo18h32m +WARN [08-24|09:19:11.241] Unclean shutdown detected booted=2024-07-24T14:50:00+0700 age=1mo18h29m +WARN [08-24|09:19:11.241] Unclean shutdown detected booted=2024-07-24T14:51:02+0700 age=1mo18h28m +WARN [08-24|09:19:11.241] Unclean shutdown detected booted=2024-07-24T15:12:42+0700 age=1mo18h6m +WARN [08-24|09:19:11.241] Unclean shutdown detected booted=2024-07-26T14:33:45+0700 age=4w18h45m +WARN [08-24|09:19:11.241] Unclean shutdown detected booted=2024-08-14T22:40:57+0700 age=1w2d10h +WARN [08-24|09:19:11.241] Unclean shutdown detected booted=2024-08-21T10:37:20+0700 age=2d22h41m +WARN [08-24|09:19:11.242] Engine API enabled protocol=eth +WARN [08-24|09:19:11.242] Engine API started but chain not configured for merge yet +INFO [08-24|09:19:11.242] Starting peer-to-peer node instance=Geth/v1.13.15-stable-c5ba367e/linux-amd64/go1.21.6 +INFO [08-24|09:19:11.331] New local node record seq=1,721,806,826,252 id=ff3325bcdc0ef40b ip=127.0.0.1 udp=30308 tcp=30308 +INFO [08-24|09:19:11.334] Started P2P networking self=enode://09065bb833eb535438c1e154e91d2c5213ce63c4b8ba46432a6ffc7266c73cd46e3bb2db4adb59f9d4ec2319672e86b043790c770f15b555b6db1c226f089c43@127.0.0.1:30308 +INFO [08-24|09:19:11.337] IPC endpoint opened url=/home/silviaprada/geth-vote/node3/data/geth.ipc +INFO [08-24|09:19:11.340] Loaded JWT secret file path=/home/silviaprada/geth-vote/node3/data/geth/jwtsecret crc32=0xf7e2914e +INFO [08-24|09:19:11.374] WebSocket enabled url=ws://127.0.0.1:8548 +INFO [08-24|09:19:11.374] HTTP server started endpoint=127.0.0.1:8548 auth=true prefix= cors=localhost vhosts=localhost +WARN [08-24|09:19:18.394] Syncing, discarded propagated block number=11 hash=80f99d..a6794b +INFO [08-24|09:19:18.983] Unlocked account address=0xbF3fe388cd2B24248fBA34b13F549078ece6A727 +INFO [08-24|09:19:21.378] Block synchronisation started +INFO [08-24|09:19:21.611] Looking for peers peercount=2 tried=2 static=0 +INFO [08-24|09:19:21.901] Importing heavy sidechain segment blocks=2048 start=11 end=2058 +INFO [08-24|09:19:31.666] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:19:41.688] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:19:45.225] Importing heavy sidechain segment blocks=2048 start=2059 end=4106 +INFO [08-24|09:19:51.710] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:20:01.730] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:20:03.853] Imported new chain segment number=3985 hash=6f1b4e..74df84 blocks=1927 txs=5 mgas=1.383 elapsed=18.606s mgasps=0.074 age=2d23h4m triedirty=29.79KiB +INFO [08-24|09:20:04.798] Importing sidechain segment start=4107 end=4302 +INFO [08-24|09:20:09.858] Imported new chain segment number=4303 hash=297378..1a7c9c blocks=1 txs=0 mgas=0.000 elapsed=24.464ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:20:11.754] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:20:14.038] Imported new chain segment number=4304 hash=2fed6e..ea5573 blocks=1 txs=0 mgas=0.000 elapsed=22.146ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:20:19.041] Imported new chain segment number=4305 hash=22a9e5..603c6c blocks=1 txs=0 mgas=0.000 elapsed=21.573ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:20:21.808] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:20:24.079] Imported new chain segment number=4306 hash=5e287d..a455ea blocks=1 txs=0 mgas=0.000 elapsed=46.681ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:20:29.056] Imported new chain segment number=4307 hash=eaab88..3e4909 blocks=1 txs=0 mgas=0.000 elapsed=29.052ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:20:31.838] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:20:38.606] Imported new chain segment number=4308 hash=840991..a961d6 blocks=1 txs=0 mgas=0.000 elapsed=2.119s mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:20:39.042] Imported new chain segment number=4309 hash=b2ea8a..ad4bcd blocks=1 txs=0 mgas=0.000 elapsed=20.571ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:20:41.893] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:20:44.041] Imported new chain segment number=4310 hash=005165..f2428d blocks=1 txs=0 mgas=0.000 elapsed=24.578ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:20:49.058] Imported new chain segment number=4311 hash=6dee9c..fddbaa blocks=1 txs=0 mgas=0.000 elapsed=27.705ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:20:51.925] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:20:54.078] Imported new chain segment number=4312 hash=7e1de4..fe104f blocks=1 txs=0 mgas=0.000 elapsed=47.468ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:02.284] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:21:07.533] Imported new chain segment number=4313 hash=a7d430..6865dd blocks=1 txs=0 mgas=0.000 elapsed=4.317s mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:11.654] Imported new chain segment number=4314 hash=d47601..5d2a33 blocks=1 txs=0 mgas=0.000 elapsed=1.296s mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:11.759] Imported new chain segment number=4315 hash=9ae543..34d402 blocks=1 txs=0 mgas=0.000 elapsed=89.714ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:12.775] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:21:14.059] Imported new chain segment number=4316 hash=8fea62..cee388 blocks=1 txs=0 mgas=0.000 elapsed=22.680ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:19.073] Imported new chain segment number=4317 hash=1c4bc9..ace188 blocks=1 txs=0 mgas=0.000 elapsed=35.607ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:23.134] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:21:24.077] Imported new chain segment number=4318 hash=934c63..8428a9 blocks=1 txs=0 mgas=0.000 elapsed=13.175ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:29.032] Imported new chain segment number=4319 hash=d23f90..21dd86 blocks=1 txs=0 mgas=0.000 elapsed=15.752ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:33.509] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:21:34.032] Imported new chain segment number=4320 hash=9834a8..4124fd blocks=1 txs=0 mgas=0.000 elapsed=8.217ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:39.032] Imported new chain segment number=4321 hash=3f6973..20115c blocks=1 txs=0 mgas=0.000 elapsed=13.533ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:43.543] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:21:44.034] Imported new chain segment number=4322 hash=fedcde..f64324 blocks=1 txs=0 mgas=0.000 elapsed=13.234ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:49.034] Imported new chain segment number=4323 hash=9af7dd..e09122 blocks=1 txs=0 mgas=0.000 elapsed=15.440ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:53.575] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:21:54.029] Imported new chain segment number=4324 hash=23f02f..125b7d blocks=1 txs=0 mgas=0.000 elapsed=13.502ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:21:59.035] Imported new chain segment number=4325 hash=7c7d32..929a38 blocks=1 txs=0 mgas=0.000 elapsed=14.257ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:03.612] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:22:04.033] Imported new chain segment number=4326 hash=38762f..d7c92b blocks=1 txs=0 mgas=0.000 elapsed=12.935ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:09.032] Imported new chain segment number=4327 hash=1618f4..e73bc9 blocks=1 txs=0 mgas=0.000 elapsed=14.250ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:13.637] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:22:14.033] Imported new chain segment number=4328 hash=c6a492..7adbcc blocks=1 txs=0 mgas=0.000 elapsed=11.813ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:19.031] Imported new chain segment number=4329 hash=b0db5e..c19f13 blocks=1 txs=0 mgas=0.000 elapsed=13.656ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:23.664] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:22:24.027] Imported new chain segment number=4330 hash=27651e..4058e6 blocks=1 txs=0 mgas=0.000 elapsed=12.126ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:29.016] Imported new chain segment number=4331 hash=8991d4..d3f02f blocks=1 txs=0 mgas=0.000 elapsed=7.623ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:33.689] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:22:34.015] Imported new chain segment number=4332 hash=152474..acddfc blocks=1 txs=0 mgas=0.000 elapsed=8.630ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:39.034] Imported new chain segment number=4333 hash=2fe3d7..fdc7ed blocks=1 txs=0 mgas=0.000 elapsed=18.545ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:43.714] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:22:44.027] Imported new chain segment number=4334 hash=f5eead..061c34 blocks=1 txs=0 mgas=0.000 elapsed=11.262ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:49.030] Imported new chain segment number=4335 hash=4d06d9..6b7e25 blocks=1 txs=0 mgas=0.000 elapsed=14.430ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:53.745] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:22:54.029] Imported new chain segment number=4336 hash=44c369..e69cee blocks=1 txs=0 mgas=0.000 elapsed=11.892ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:22:59.020] Imported new chain segment number=4337 hash=bfdb04..4c84ec blocks=1 txs=0 mgas=0.000 elapsed=7.314ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:03.773] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:23:04.034] Imported new chain segment number=4338 hash=e3de4e..a4e905 blocks=1 txs=0 mgas=0.000 elapsed=16.784ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:09.013] Imported new chain segment number=4339 hash=ce1415..13839b blocks=1 txs=0 mgas=0.000 elapsed=6.312ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:13.798] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:23:14.027] Imported new chain segment number=4340 hash=9eb560..4967b9 blocks=1 txs=0 mgas=0.000 elapsed=11.123ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:19.027] Imported new chain segment number=4341 hash=12602c..f3fda4 blocks=1 txs=0 mgas=0.000 elapsed=11.119ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:23.824] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:23:24.028] Imported new chain segment number=4342 hash=7253c2..92135e blocks=1 txs=0 mgas=0.000 elapsed=12.318ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:29.027] Imported new chain segment number=4343 hash=96cc23..140065 blocks=1 txs=0 mgas=0.000 elapsed=12.436ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:33.850] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:23:34.031] Imported new chain segment number=4344 hash=e6827d..5456ae blocks=1 txs=0 mgas=0.000 elapsed=15.122ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:39.016] Imported new chain segment number=4345 hash=781422..6a9ab3 blocks=1 txs=0 mgas=0.000 elapsed=7.725ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:43.874] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:23:44.034] Imported new chain segment number=4346 hash=e28a43..a793af blocks=1 txs=0 mgas=0.000 elapsed=16.075ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:49.027] Imported new chain segment number=4347 hash=977ee6..3e23b1 blocks=1 txs=0 mgas=0.000 elapsed=12.947ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:53.899] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:23:54.026] Imported new chain segment number=4348 hash=4d4180..90edb7 blocks=1 txs=0 mgas=0.000 elapsed=12.874ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:23:59.028] Imported new chain segment number=4349 hash=0692f2..1b0c49 blocks=1 txs=0 mgas=0.000 elapsed=12.576ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:03.923] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:24:04.025] Imported new chain segment number=4350 hash=3ea9fa..894ad3 blocks=1 txs=0 mgas=0.000 elapsed=11.150ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:09.027] Imported new chain segment number=4351 hash=c84194..735c3e blocks=1 txs=0 mgas=0.000 elapsed=14.511ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:13.948] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:24:14.029] Imported new chain segment number=4352 hash=d7c397..2f2f4a blocks=1 txs=0 mgas=0.000 elapsed=10.767ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:19.029] Imported new chain segment number=4353 hash=ae40df..55a235 blocks=1 txs=0 mgas=0.000 elapsed=13.316ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:23.976] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:24:24.022] Imported new chain segment number=4354 hash=e533d4..2dbee9 blocks=1 txs=0 mgas=0.000 elapsed=10.369ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:29.025] Imported new chain segment number=4355 hash=cde873..603f23 blocks=1 txs=0 mgas=0.000 elapsed=12.415ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:33.997] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:24:34.031] Imported new chain segment number=4356 hash=6e87b6..0042b1 blocks=1 txs=0 mgas=0.000 elapsed=15.766ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:39.028] Imported new chain segment number=4357 hash=82c86f..398a50 blocks=1 txs=0 mgas=0.000 elapsed=12.009ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:44.021] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:24:44.030] Imported new chain segment number=4358 hash=04f468..e2879a blocks=1 txs=0 mgas=0.000 elapsed=15.066ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:49.024] Imported new chain segment number=4359 hash=28a91e..72c79f blocks=1 txs=0 mgas=0.000 elapsed=12.674ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:54.027] Imported new chain segment number=4360 hash=f5d7d6..d7d285 blocks=1 txs=0 mgas=0.000 elapsed=13.359ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:24:54.044] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:24:59.029] Imported new chain segment number=4361 hash=833e84..507b9f blocks=1 txs=0 mgas=0.000 elapsed=14.758ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:04.021] Imported new chain segment number=4362 hash=9bb918..3c2ec3 blocks=1 txs=0 mgas=0.000 elapsed=10.138ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:04.070] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:25:09.021] Imported new chain segment number=4363 hash=73089a..8710f6 blocks=1 txs=0 mgas=0.000 elapsed=8.907ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:14.023] Imported new chain segment number=4364 hash=52516d..e56fc3 blocks=1 txs=0 mgas=0.000 elapsed=8.547ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:14.096] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:25:19.032] Imported new chain segment number=4365 hash=999b84..0676e3 blocks=1 txs=0 mgas=0.000 elapsed=16.296ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:24.028] Imported new chain segment number=4366 hash=b9ada9..318e05 blocks=1 txs=0 mgas=0.000 elapsed=15.020ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:24.118] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:25:29.030] Imported new chain segment number=4367 hash=d0d92e..46b9fa blocks=1 txs=0 mgas=0.000 elapsed=13.928ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:34.029] Imported new chain segment number=4368 hash=71a2b1..76315a blocks=1 txs=0 mgas=0.000 elapsed=13.886ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:34.143] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:25:39.019] Imported new chain segment number=4369 hash=32405e..505f6e blocks=1 txs=0 mgas=0.000 elapsed=8.532ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:44.023] Imported new chain segment number=4370 hash=56f7f2..0fcf4d blocks=1 txs=0 mgas=0.000 elapsed=9.865ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:44.171] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:25:49.026] Imported new chain segment number=4371 hash=9c8ad3..795b0d blocks=1 txs=0 mgas=0.000 elapsed=11.111ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:54.029] Imported new chain segment number=4372 hash=258154..fb4291 blocks=1 txs=0 mgas=0.000 elapsed=14.747ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:25:54.192] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:25:59.019] Imported new chain segment number=4373 hash=d801d8..2528e4 blocks=1 txs=0 mgas=0.000 elapsed=9.404ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:04.027] Imported new chain segment number=4374 hash=09988a..8ef9ba blocks=1 txs=0 mgas=0.000 elapsed=12.883ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:04.217] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:26:09.022] Imported new chain segment number=4375 hash=1ef9e0..fcda4d blocks=1 txs=0 mgas=0.000 elapsed=8.265ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:14.030] Imported new chain segment number=4376 hash=8dafbd..16dbc9 blocks=1 txs=0 mgas=0.000 elapsed=13.645ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:14.243] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:26:19.023] Imported new chain segment number=4377 hash=bc6696..1fbbf3 blocks=1 txs=0 mgas=0.000 elapsed=12.201ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:24.022] Imported new chain segment number=4378 hash=62135b..f1e5a0 blocks=1 txs=0 mgas=0.000 elapsed=10.723ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:24.268] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:26:29.023] Imported new chain segment number=4379 hash=e06d2a..1da327 blocks=1 txs=0 mgas=0.000 elapsed=9.296ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:34.020] Imported new chain segment number=4380 hash=1fbece..6580a6 blocks=1 txs=0 mgas=0.000 elapsed=12.142ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:34.292] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:26:39.015] Imported new chain segment number=4381 hash=26e016..3e4c6b blocks=1 txs=0 mgas=0.000 elapsed=8.601ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:44.019] Imported new chain segment number=4382 hash=fe1846..20566c blocks=1 txs=0 mgas=0.000 elapsed=8.339ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:44.313] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:26:49.020] Imported new chain segment number=4383 hash=eee654..6c1ea4 blocks=1 txs=0 mgas=0.000 elapsed=11.352ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:54.020] Imported new chain segment number=4384 hash=7793d7..0e9353 blocks=1 txs=0 mgas=0.000 elapsed=11.447ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:26:54.339] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:26:59.028] Imported new chain segment number=4385 hash=79554d..836d4e blocks=1 txs=0 mgas=0.000 elapsed=13.694ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:04.016] Imported new chain segment number=4386 hash=915f79..21b0fb blocks=1 txs=0 mgas=0.000 elapsed=8.359ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:04.361] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:27:09.029] Imported new chain segment number=4387 hash=f36bdc..90d09e blocks=1 txs=0 mgas=0.000 elapsed=12.358ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:14.029] Imported new chain segment number=4388 hash=20f69b..3913d0 blocks=1 txs=0 mgas=0.000 elapsed=15.588ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:14.384] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:27:19.025] Imported new chain segment number=4389 hash=80722c..6c4023 blocks=1 txs=0 mgas=0.000 elapsed=11.736ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:24.025] Imported new chain segment number=4390 hash=9c3ca0..f8a617 blocks=1 txs=0 mgas=0.000 elapsed=12.232ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:24.407] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:27:29.016] Imported new chain segment number=4391 hash=636fce..ebc538 blocks=1 txs=0 mgas=0.000 elapsed=8.535ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:34.265] Imported new chain segment number=4392 hash=844fe5..b42f66 blocks=1 txs=0 mgas=0.000 elapsed=143.941ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:34.430] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:27:39.028] Imported new chain segment number=4393 hash=a3095a..9878bf blocks=1 txs=0 mgas=0.000 elapsed=15.584ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:44.023] Imported new chain segment number=4394 hash=dfb147..7fdcf2 blocks=1 txs=0 mgas=0.000 elapsed=9.038ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:44.457] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:27:49.017] Imported new chain segment number=4395 hash=b665bb..a6da3b blocks=1 txs=0 mgas=0.000 elapsed=6.677ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:54.017] Imported new chain segment number=4396 hash=1c82f1..0786b4 blocks=1 txs=0 mgas=0.000 elapsed=8.177ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:27:54.482] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:27:59.023] Imported new chain segment number=4397 hash=75a2db..c5ce71 blocks=1 txs=0 mgas=0.000 elapsed=11.600ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:04.019] Imported new chain segment number=4398 hash=b85650..c5f965 blocks=1 txs=0 mgas=0.000 elapsed=9.077ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:04.675] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:28:09.043] Imported new chain segment number=4399 hash=6e89d4..5b631b blocks=1 txs=0 mgas=0.000 elapsed=17.001ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:14.793] Imported new chain segment number=4400 hash=10f825..5d4f13 blocks=1 txs=0 mgas=0.000 elapsed=44.089ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:14.862] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:28:20.181] Imported new chain segment number=4401 hash=105954..2b282a blocks=1 txs=0 mgas=0.000 elapsed=626.547ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:24.041] Imported new chain segment number=4402 hash=0261ce..bd5b05 blocks=1 txs=0 mgas=0.000 elapsed=19.134ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:24.946] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:28:29.052] Imported new chain segment number=4403 hash=dc8c37..0e46d1 blocks=1 txs=0 mgas=0.000 elapsed=23.291ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:34.349] Imported new chain segment number=4404 hash=bb8791..16b600 blocks=1 txs=0 mgas=0.000 elapsed=314.491ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:34.971] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:28:39.036] Imported new chain segment number=4405 hash=06787a..810c19 blocks=1 txs=0 mgas=0.000 elapsed=14.455ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:44.095] Imported new chain segment number=4406 hash=9265f5..2b7b22 blocks=1 txs=0 mgas=0.000 elapsed=18.905ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:45.025] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:28:49.879] Imported new chain segment number=4407 hash=8c4f59..8e9a2c blocks=1 txs=0 mgas=0.000 elapsed=604.030ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:54.178] Imported new chain segment number=4408 hash=4e2123..4f5923 blocks=1 txs=0 mgas=0.000 elapsed=159.326ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:28:55.075] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:28:59.386] Imported new chain segment number=4409 hash=54b89c..cf4034 blocks=1 txs=0 mgas=0.000 elapsed=153.390ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:04.200] Imported new chain segment number=4410 hash=65bda5..d3d95c blocks=1 txs=0 mgas=0.000 elapsed=33.911ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:05.462] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:29:09.041] Imported new chain segment number=4411 hash=70ac42..ee0d7a blocks=1 txs=0 mgas=0.000 elapsed=22.488ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:14.602] Imported new chain segment number=4412 hash=d84a1d..55aa94 blocks=1 txs=0 mgas=0.000 elapsed=42.276ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:15.484] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:29:19.016] Imported new chain segment number=4413 hash=3f9b72..26a3e2 blocks=1 txs=0 mgas=0.000 elapsed=6.292ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:24.020] Imported new chain segment number=4414 hash=0eb7ab..761035 blocks=1 txs=0 mgas=0.000 elapsed=9.225ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:25.504] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:29:29.019] Imported new chain segment number=4415 hash=97b89f..83a46d blocks=1 txs=0 mgas=0.000 elapsed=10.223ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:34.016] Imported new chain segment number=4416 hash=6d4edc..e3784c blocks=1 txs=0 mgas=0.000 elapsed=6.744ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:35.521] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:29:39.022] Imported new chain segment number=4417 hash=23da28..791f6b blocks=1 txs=0 mgas=0.000 elapsed=11.244ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:44.019] Imported new chain segment number=4418 hash=83cecc..220ef5 blocks=1 txs=0 mgas=0.000 elapsed=9.566ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:45.541] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:29:49.026] Imported new chain segment number=4419 hash=b237e5..5e6fa2 blocks=1 txs=0 mgas=0.000 elapsed=14.089ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:54.022] Imported new chain segment number=4420 hash=b8224b..0a5723 blocks=1 txs=0 mgas=0.000 elapsed=12.161ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:29:55.564] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:29:59.028] Imported new chain segment number=4421 hash=98f68a..e32838 blocks=1 txs=0 mgas=0.000 elapsed=12.791ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:04.012] Imported new chain segment number=4422 hash=61016f..b01983 blocks=1 txs=0 mgas=0.000 elapsed=4.227ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:05.586] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:30:09.018] Imported new chain segment number=4423 hash=6f723f..431af4 blocks=1 txs=0 mgas=0.000 elapsed=9.571ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:14.018] Imported new chain segment number=4424 hash=cf0f08..b83173 blocks=1 txs=0 mgas=0.000 elapsed=7.395ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:15.610] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:30:19.020] Imported new chain segment number=4425 hash=19a7e7..dd36d3 blocks=1 txs=0 mgas=0.000 elapsed=9.517ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:24.024] Imported new chain segment number=4426 hash=3368bf..c48d7f blocks=1 txs=0 mgas=0.000 elapsed=10.090ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:25.631] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:30:29.016] Imported new chain segment number=4427 hash=aeb78f..f27c90 blocks=1 txs=0 mgas=0.000 elapsed=7.708ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:34.025] Imported new chain segment number=4428 hash=1e6fd3..f107aa blocks=1 txs=0 mgas=0.000 elapsed=10.731ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:35.656] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:30:39.029] Imported new chain segment number=4429 hash=881a44..db1620 blocks=1 txs=0 mgas=0.000 elapsed=9.198ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:44.015] Imported new chain segment number=4430 hash=8be5b3..2ffb54 blocks=1 txs=0 mgas=0.000 elapsed=4.858ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:45.677] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:30:49.030] Imported new chain segment number=4431 hash=61280b..0134ac blocks=1 txs=0 mgas=0.000 elapsed=13.949ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:54.029] Imported new chain segment number=4432 hash=8cf66f..46313a blocks=1 txs=0 mgas=0.000 elapsed=14.594ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:30:55.701] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:30:59.029] Imported new chain segment number=4433 hash=126fda..4878cd blocks=1 txs=0 mgas=0.000 elapsed=12.316ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:04.019] Imported new chain segment number=4434 hash=5a8554..237790 blocks=1 txs=0 mgas=0.000 elapsed=3.787ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:05.726] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:31:09.029] Imported new chain segment number=4435 hash=6efaf4..721ed6 blocks=1 txs=0 mgas=0.000 elapsed=13.084ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:14.014] Imported new chain segment number=4436 hash=b8e29b..150151 blocks=1 txs=0 mgas=0.000 elapsed=7.627ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:15.750] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:31:19.029] Imported new chain segment number=4437 hash=d3a419..e0eee6 blocks=1 txs=0 mgas=0.000 elapsed=9.159ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:24.020] Imported new chain segment number=4438 hash=7651d0..2c38e0 blocks=1 txs=0 mgas=0.000 elapsed=10.035ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:25.794] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:31:29.042] Imported new chain segment number=4439 hash=2ea218..2773a9 blocks=1 txs=0 mgas=0.000 elapsed=17.355ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:34.016] Imported new chain segment number=4440 hash=914aa2..7f798e blocks=1 txs=0 mgas=0.000 elapsed=8.048ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:35.876] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:31:39.017] Imported new chain segment number=4441 hash=acf57f..435922 blocks=1 txs=0 mgas=0.000 elapsed=8.731ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:44.030] Imported new chain segment number=4442 hash=cff28e..616da8 blocks=1 txs=0 mgas=0.000 elapsed=14.159ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:45.901] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:31:49.024] Imported new chain segment number=4443 hash=d3bfb6..06b268 blocks=1 txs=0 mgas=0.000 elapsed=9.882ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:54.027] Imported new chain segment number=4444 hash=e11dcc..5ca74a blocks=1 txs=0 mgas=0.000 elapsed=13.097ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:31:55.923] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:31:59.026] Imported new chain segment number=4445 hash=23e8ff..1e22c4 blocks=1 txs=0 mgas=0.000 elapsed=8.858ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:04.031] Imported new chain segment number=4446 hash=169d05..8f100e blocks=1 txs=0 mgas=0.000 elapsed=14.154ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:05.950] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:32:09.014] Imported new chain segment number=4447 hash=ddbdb7..fc3bec blocks=1 txs=0 mgas=0.000 elapsed=5.864ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:14.025] Imported new chain segment number=4448 hash=bb413c..215c91 blocks=1 txs=0 mgas=0.000 elapsed=12.160ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:15.978] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:32:19.031] Imported new chain segment number=4449 hash=cf3544..8213d4 blocks=1 txs=0 mgas=0.000 elapsed=13.965ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:24.029] Imported new chain segment number=4450 hash=2b4a5e..7d38cc blocks=1 txs=0 mgas=0.000 elapsed=12.590ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:26.002] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:32:29.030] Imported new chain segment number=4451 hash=0a051d..063d10 blocks=1 txs=0 mgas=0.000 elapsed=14.803ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:34.018] Imported new chain segment number=4452 hash=84ebfa..a32bc5 blocks=1 txs=0 mgas=0.000 elapsed=8.847ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:36.026] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:32:39.034] Imported new chain segment number=4453 hash=16d576..c2403a blocks=1 txs=0 mgas=0.000 elapsed=17.924ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:44.032] Imported new chain segment number=4454 hash=c396e7..bdf36a blocks=1 txs=0 mgas=0.000 elapsed=11.553ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:46.051] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:32:49.025] Imported new chain segment number=4455 hash=df9b31..d84c0d blocks=1 txs=0 mgas=0.000 elapsed=10.986ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:54.018] Imported new chain segment number=4456 hash=b8dbcf..054816 blocks=1 txs=0 mgas=0.000 elapsed=8.094ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:32:56.074] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:32:59.028] Imported new chain segment number=4457 hash=406928..2d7f5b blocks=1 txs=0 mgas=0.000 elapsed=12.487ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:04.030] Imported new chain segment number=4458 hash=7ad4ed..05e980 blocks=1 txs=0 mgas=0.000 elapsed=14.650ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:06.098] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:33:09.018] Imported new chain segment number=4459 hash=ee6e3a..93fc31 blocks=1 txs=0 mgas=0.000 elapsed=10.289ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:14.027] Imported new chain segment number=4460 hash=266208..922c90 blocks=1 txs=0 mgas=0.000 elapsed=13.259ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:16.119] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:33:19.024] Imported new chain segment number=4461 hash=f6bcd7..c3f0a6 blocks=1 txs=0 mgas=0.000 elapsed=9.277ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:24.015] Imported new chain segment number=4462 hash=8d39cb..e0b4d7 blocks=1 txs=0 mgas=0.000 elapsed=7.246ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:26.147] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:33:29.023] Imported new chain segment number=4463 hash=bf9fe3..4d2a46 blocks=1 txs=0 mgas=0.000 elapsed=8.912ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:34.031] Imported new chain segment number=4464 hash=f3f2c1..6214ef blocks=1 txs=0 mgas=0.000 elapsed=15.190ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:36.174] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:33:39.027] Imported new chain segment number=4465 hash=72e066..cc130c blocks=1 txs=0 mgas=0.000 elapsed=12.313ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:44.017] Imported new chain segment number=4466 hash=56b717..29f295 blocks=1 txs=0 mgas=0.000 elapsed=7.540ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:46.198] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:33:49.023] Imported new chain segment number=4467 hash=8cfbc0..7a1c8f blocks=1 txs=0 mgas=0.000 elapsed=10.497ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:54.031] Imported new chain segment number=4468 hash=058631..a3d999 blocks=1 txs=0 mgas=0.000 elapsed=13.792ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:33:56.224] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:33:59.021] Imported new chain segment number=4469 hash=d6d724..1752a4 blocks=1 txs=0 mgas=0.000 elapsed=11.147ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:04.028] Imported new chain segment number=4470 hash=675b83..c56978 blocks=1 txs=0 mgas=0.000 elapsed=13.369ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:06.248] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:34:09.029] Imported new chain segment number=4471 hash=3ae4ef..0dfdf2 blocks=1 txs=0 mgas=0.000 elapsed=9.140ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:14.028] Imported new chain segment number=4472 hash=1d94ee..7d4f77 blocks=1 txs=0 mgas=0.000 elapsed=12.344ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:16.270] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:34:19.027] Imported new chain segment number=4473 hash=6b305a..48baf4 blocks=1 txs=0 mgas=0.000 elapsed=13.298ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:24.016] Imported new chain segment number=4474 hash=70466d..49138e blocks=1 txs=0 mgas=0.000 elapsed=7.448ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:26.312] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:34:29.037] Imported new chain segment number=4475 hash=a82f69..788b9e blocks=1 txs=0 mgas=0.000 elapsed=12.468ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:34.085] Imported new chain segment number=4476 hash=0c4009..8ea6d2 blocks=1 txs=0 mgas=0.000 elapsed=5.611ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:36.331] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:34:39.019] Imported new chain segment number=4477 hash=12cf1f..f8d8fd blocks=1 txs=0 mgas=0.000 elapsed=10.226ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:44.029] Imported new chain segment number=4478 hash=c1fe4b..5d737a blocks=1 txs=0 mgas=0.000 elapsed=14.129ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:46.358] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:34:49.027] Imported new chain segment number=4479 hash=277a15..53eab8 blocks=1 txs=0 mgas=0.000 elapsed=11.745ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:54.026] Imported new chain segment number=4480 hash=c9cfdc..0b10b5 blocks=1 txs=0 mgas=0.000 elapsed=8.911ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:34:56.385] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:34:59.030] Imported new chain segment number=4481 hash=5b35f0..f9c0cc blocks=1 txs=0 mgas=0.000 elapsed=16.495ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:04.026] Imported new chain segment number=4482 hash=b6c0cc..02c49e blocks=1 txs=0 mgas=0.000 elapsed=12.292ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:06.406] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:35:09.026] Imported new chain segment number=4483 hash=f83578..10a45b blocks=1 txs=0 mgas=0.000 elapsed=13.085ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:14.018] Imported new chain segment number=4484 hash=202634..47e988 blocks=1 txs=0 mgas=0.000 elapsed=9.233ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:16.432] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:35:19.030] Imported new chain segment number=4485 hash=efb3f1..4d08c2 blocks=1 txs=0 mgas=0.000 elapsed=16.644ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:24.028] Imported new chain segment number=4486 hash=056888..ce9886 blocks=1 txs=0 mgas=0.000 elapsed=12.233ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:26.454] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:35:29.010] Imported new chain segment number=4487 hash=717760..1a9e94 blocks=1 txs=0 mgas=0.000 elapsed=3.419ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:34.018] Imported new chain segment number=4488 hash=1903fa..f635a7 blocks=1 txs=0 mgas=0.000 elapsed=8.099ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:36.477] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:35:39.037] Imported new chain segment number=4489 hash=722c68..0b7f76 blocks=1 txs=0 mgas=0.000 elapsed=12.026ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:44.027] Imported new chain segment number=4490 hash=0e6e2d..b662a0 blocks=1 txs=0 mgas=0.000 elapsed=12.990ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:46.499] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:35:49.025] Imported new chain segment number=4491 hash=b6e43a..7b6157 blocks=1 txs=0 mgas=0.000 elapsed=11.497ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:54.034] Imported new chain segment number=4492 hash=b076dc..33e0f8 blocks=1 txs=0 mgas=0.000 elapsed=16.780ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:35:56.525] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:35:59.031] Imported new chain segment number=4493 hash=5e8270..7ac9df blocks=1 txs=0 mgas=0.000 elapsed=15.445ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:04.029] Imported new chain segment number=4494 hash=c39a2d..1e1900 blocks=1 txs=0 mgas=0.000 elapsed=13.430ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:06.549] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:36:09.032] Imported new chain segment number=4495 hash=dbd0a2..80f41d blocks=1 txs=0 mgas=0.000 elapsed=17.009ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:14.021] Imported new chain segment number=4496 hash=e6850a..012e37 blocks=1 txs=0 mgas=0.000 elapsed=8.566ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:16.573] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:36:19.019] Imported new chain segment number=4497 hash=9c05c7..078acb blocks=1 txs=0 mgas=0.000 elapsed=9.286ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:24.029] Imported new chain segment number=4498 hash=079c8e..68cf8d blocks=1 txs=0 mgas=0.000 elapsed=14.192ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:26.599] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:36:29.030] Imported new chain segment number=4499 hash=842d14..fed441 blocks=1 txs=0 mgas=0.000 elapsed=13.888ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:34.019] Imported new chain segment number=4500 hash=b5fc3f..195d1e blocks=1 txs=0 mgas=0.000 elapsed=10.522ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:36.666] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:36:39.018] Imported new chain segment number=4501 hash=9a3123..081193 blocks=1 txs=0 mgas=0.000 elapsed=8.823ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:44.017] Imported new chain segment number=4502 hash=65f49d..510d8b blocks=1 txs=0 mgas=0.000 elapsed=6.902ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:46.689] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:36:49.014] Imported new chain segment number=4503 hash=f55315..15af68 blocks=1 txs=0 mgas=0.000 elapsed=5.675ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:54.019] Imported new chain segment number=4504 hash=a44e71..b27edd blocks=1 txs=0 mgas=0.000 elapsed=8.249ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:36:56.713] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:36:59.020] Imported new chain segment number=4505 hash=c64452..bbb2a1 blocks=1 txs=0 mgas=0.000 elapsed=6.362ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:04.016] Imported new chain segment number=4506 hash=d49f58..d2f510 blocks=1 txs=0 mgas=0.000 elapsed=5.695ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:06.734] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:37:09.020] Imported new chain segment number=4507 hash=e67716..388b26 blocks=1 txs=0 mgas=0.000 elapsed=7.502ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:14.019] Imported new chain segment number=4508 hash=4d1636..53ba2a blocks=1 txs=0 mgas=0.000 elapsed=10.524ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:16.756] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:37:19.012] Imported new chain segment number=4509 hash=ae872c..ce56d1 blocks=1 txs=0 mgas=0.000 elapsed=4.696ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:24.015] Imported new chain segment number=4510 hash=a459e4..7b0e48 blocks=1 txs=0 mgas=0.000 elapsed=5.817ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:26.775] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:37:29.017] Imported new chain segment number=4511 hash=9864ab..3f4b6d blocks=1 txs=0 mgas=0.000 elapsed=7.296ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:34.024] Imported new chain segment number=4512 hash=1f8330..8b4297 blocks=1 txs=0 mgas=0.000 elapsed=13.804ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:36.796] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:37:39.019] Imported new chain segment number=4513 hash=057388..73ddb5 blocks=1 txs=0 mgas=0.000 elapsed=7.297ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:44.016] Imported new chain segment number=4514 hash=9a3b4e..3cfb0e blocks=1 txs=0 mgas=0.000 elapsed=7.601ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:46.814] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:37:49.021] Imported new chain segment number=4515 hash=621a8d..378bc7 blocks=1 txs=0 mgas=0.000 elapsed=7.582ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:54.050] Imported new chain segment number=4516 hash=8dfd1d..d846c7 blocks=1 txs=0 mgas=0.000 elapsed=18.856ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:37:56.917] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:37:59.021] Imported new chain segment number=4517 hash=a30955..715a74 blocks=1 txs=0 mgas=0.000 elapsed=7.424ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:04.015] Imported new chain segment number=4518 hash=d2d5f4..a299db blocks=1 txs=0 mgas=0.000 elapsed=4.474ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:06.950] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:38:09.036] Imported new chain segment number=4519 hash=edd864..a40a5a blocks=1 txs=0 mgas=0.000 elapsed=15.218ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:14.027] Imported new chain segment number=4520 hash=28017e..04a872 blocks=1 txs=0 mgas=0.000 elapsed=9.418ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:16.988] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:38:19.014] Imported new chain segment number=4521 hash=1846da..b09417 blocks=1 txs=0 mgas=0.000 elapsed=6.732ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:24.021] Imported new chain segment number=4522 hash=fbba90..dc8775 blocks=1 txs=0 mgas=0.000 elapsed=7.230ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:27.016] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:38:29.030] Imported new chain segment number=4523 hash=ac8851..7f0523 blocks=1 txs=0 mgas=0.000 elapsed=12.338ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:34.032] Imported new chain segment number=4524 hash=6c936b..de1537 blocks=1 txs=0 mgas=0.000 elapsed=9.430ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:37.043] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:38:39.026] Imported new chain segment number=4525 hash=0ae3b0..523f06 blocks=1 txs=0 mgas=0.000 elapsed=10.218ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:44.019] Imported new chain segment number=4526 hash=371ca9..70e5ec blocks=1 txs=0 mgas=0.000 elapsed=8.352ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:47.073] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:38:49.031] Imported new chain segment number=4527 hash=62f2c2..b6f8da blocks=1 txs=0 mgas=0.000 elapsed=14.173ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:54.037] Imported new chain segment number=4528 hash=273e30..8d392e blocks=1 txs=0 mgas=0.000 elapsed=15.858ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:38:57.099] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:38:59.017] Imported new chain segment number=4529 hash=1faed3..943afa blocks=1 txs=0 mgas=0.000 elapsed=8.526ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:04.014] Imported new chain segment number=4530 hash=116ffa..649f8c blocks=1 txs=0 mgas=0.000 elapsed=4.727ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:07.122] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:39:09.025] Imported new chain segment number=4531 hash=9ac22c..592e7f blocks=1 txs=0 mgas=0.000 elapsed=12.257ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:14.416] Imported new chain segment number=4532 hash=066c62..ae52fd blocks=1 txs=0 mgas=0.000 elapsed=15.934ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:17.145] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:39:19.029] Imported new chain segment number=4533 hash=58337a..1fddbb blocks=1 txs=0 mgas=0.000 elapsed=12.923ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:24.031] Imported new chain segment number=4534 hash=c55289..bc0f7a blocks=1 txs=0 mgas=0.000 elapsed=14.409ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:27.181] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:39:29.032] Imported new chain segment number=4535 hash=f34b29..ba9909 blocks=1 txs=0 mgas=0.000 elapsed=14.471ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:34.019] Imported new chain segment number=4536 hash=49779d..723670 blocks=1 txs=0 mgas=0.000 elapsed=6.414ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:37.205] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:39:39.031] Imported new chain segment number=4537 hash=090512..1a3624 blocks=1 txs=0 mgas=0.000 elapsed=14.454ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:44.015] Imported new chain segment number=4538 hash=15ae3b..c2f28f blocks=1 txs=0 mgas=0.000 elapsed=4.694ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:47.227] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:39:49.029] Imported new chain segment number=4539 hash=e5387f..c116a8 blocks=1 txs=0 mgas=0.000 elapsed=10.905ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:54.020] Imported new chain segment number=4540 hash=e7df1b..921fe0 blocks=1 txs=0 mgas=0.000 elapsed=5.703ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:39:57.247] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:39:59.031] Imported new chain segment number=4541 hash=868a38..71c121 blocks=1 txs=0 mgas=0.000 elapsed=15.903ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:04.016] Imported new chain segment number=4542 hash=3c3f5c..d7bbaf blocks=1 txs=0 mgas=0.000 elapsed=6.778ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:07.268] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:40:09.028] Imported new chain segment number=4543 hash=b4cc38..f5f6bf blocks=1 txs=0 mgas=0.000 elapsed=12.371ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:14.033] Imported new chain segment number=4544 hash=4f93ad..fdec2e blocks=1 txs=0 mgas=0.000 elapsed=14.088ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:17.291] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:40:19.028] Imported new chain segment number=4545 hash=78d006..bdfa53 blocks=1 txs=0 mgas=0.000 elapsed=10.893ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:24.029] Imported new chain segment number=4546 hash=72e8c7..4349a9 blocks=1 txs=0 mgas=0.000 elapsed=12.009ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:27.316] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:40:29.027] Imported new chain segment number=4547 hash=fa3ad4..48b4b9 blocks=1 txs=0 mgas=0.000 elapsed=14.027ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:34.016] Imported new chain segment number=4548 hash=3ec77f..ab0227 blocks=1 txs=0 mgas=0.000 elapsed=6.783ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:37.340] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:40:39.028] Imported new chain segment number=4549 hash=1f49d5..704444 blocks=1 txs=0 mgas=0.000 elapsed=12.989ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:44.028] Imported new chain segment number=4550 hash=002aba..5a2b7d blocks=1 txs=0 mgas=0.000 elapsed=9.393ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:47.364] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:40:49.031] Imported new chain segment number=4551 hash=3c01c5..d7c397 blocks=1 txs=0 mgas=0.000 elapsed=14.666ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:54.016] Imported new chain segment number=4552 hash=5009aa..3da57c blocks=1 txs=0 mgas=0.000 elapsed=7.859ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:40:57.390] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:40:59.017] Imported new chain segment number=4553 hash=b427cb..966d31 blocks=1 txs=0 mgas=0.000 elapsed=8.260ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:04.021] Imported new chain segment number=4554 hash=bc32ab..a7a823 blocks=1 txs=0 mgas=0.000 elapsed=8.376ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:07.413] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:41:09.017] Imported new chain segment number=4555 hash=3e5e9a..1e7efa blocks=1 txs=0 mgas=0.000 elapsed=9.150ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:14.029] Imported new chain segment number=4556 hash=5d2b68..bb976f blocks=1 txs=0 mgas=0.000 elapsed=13.292ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:17.433] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:41:19.015] Imported new chain segment number=4557 hash=5b1d33..54fa07 blocks=1 txs=0 mgas=0.000 elapsed=5.776ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:24.014] Imported new chain segment number=4558 hash=678158..ec4856 blocks=1 txs=0 mgas=0.000 elapsed=5.629ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:27.455] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:41:29.019] Imported new chain segment number=4559 hash=863f47..8afeb5 blocks=1 txs=0 mgas=0.000 elapsed=9.436ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:34.027] Imported new chain segment number=4560 hash=c83bc0..0379ec blocks=1 txs=0 mgas=0.000 elapsed=11.650ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:37.482] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:41:39.034] Imported new chain segment number=4561 hash=5d3528..b351ec blocks=1 txs=0 mgas=0.000 elapsed=11.949ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:44.031] Imported new chain segment number=4562 hash=e79212..19cdbb blocks=1 txs=0 mgas=0.000 elapsed=12.103ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:47.514] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:41:49.032] Imported new chain segment number=4563 hash=c6771a..234ce1 blocks=1 txs=0 mgas=0.000 elapsed=15.025ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:54.024] Imported new chain segment number=4564 hash=69b5fe..04a51c blocks=1 txs=0 mgas=0.000 elapsed=8.952ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:41:57.546] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:41:59.037] Imported new chain segment number=4565 hash=b5bbff..5b95e7 blocks=1 txs=0 mgas=0.000 elapsed=8.238ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:04.035] Imported new chain segment number=4566 hash=22f42c..dfe671 blocks=1 txs=0 mgas=0.000 elapsed=18.271ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:07.572] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:42:09.032] Imported new chain segment number=4567 hash=c5e8d4..7b8db0 blocks=1 txs=0 mgas=0.000 elapsed=14.291ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:14.029] Imported new chain segment number=4568 hash=d66ca8..ff41d9 blocks=1 txs=0 mgas=0.000 elapsed=13.618ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:17.599] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:42:19.025] Imported new chain segment number=4569 hash=36171a..24673b blocks=1 txs=0 mgas=0.000 elapsed=11.142ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:24.029] Imported new chain segment number=4570 hash=857b66..2f3b0b blocks=1 txs=0 mgas=0.000 elapsed=14.233ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:27.627] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:42:29.032] Imported new chain segment number=4571 hash=ba9307..eab10b blocks=1 txs=0 mgas=0.000 elapsed=15.134ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:34.026] Imported new chain segment number=4572 hash=45007b..041ea2 blocks=1 txs=0 mgas=0.000 elapsed=9.879ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:37.657] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:42:39.027] Imported new chain segment number=4573 hash=36a5b5..bfca82 blocks=1 txs=0 mgas=0.000 elapsed=12.025ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:44.030] Imported new chain segment number=4574 hash=a550cf..479d45 blocks=1 txs=0 mgas=0.000 elapsed=14.291ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:47.680] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:42:49.030] Imported new chain segment number=4575 hash=f9ce74..b846ea blocks=1 txs=0 mgas=0.000 elapsed=14.235ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:54.019] Imported new chain segment number=4576 hash=e0f239..7ff7e0 blocks=1 txs=0 mgas=0.000 elapsed=8.861ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:42:57.705] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:42:59.017] Imported new chain segment number=4577 hash=385454..954c76 blocks=1 txs=0 mgas=0.000 elapsed=7.330ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:04.031] Imported new chain segment number=4578 hash=e6e53f..23454b blocks=1 txs=0 mgas=0.000 elapsed=16.907ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:07.731] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:43:09.017] Imported new chain segment number=4579 hash=54f033..e1b6f8 blocks=1 txs=0 mgas=0.000 elapsed=6.905ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:14.028] Imported new chain segment number=4580 hash=e72086..d66b93 blocks=1 txs=0 mgas=0.000 elapsed=13.426ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:17.755] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:43:19.030] Imported new chain segment number=4581 hash=53cb5c..9fe1be blocks=1 txs=0 mgas=0.000 elapsed=14.515ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:24.031] Imported new chain segment number=4582 hash=bb9ea9..b3b7ef blocks=1 txs=0 mgas=0.000 elapsed=15.353ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:27.778] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:43:29.019] Imported new chain segment number=4583 hash=288f41..2ef242 blocks=1 txs=0 mgas=0.000 elapsed=7.805ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:34.027] Imported new chain segment number=4584 hash=35b51c..748d8f blocks=1 txs=0 mgas=0.000 elapsed=12.528ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:37.805] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:43:39.025] Imported new chain segment number=4585 hash=145e0d..bf37eb blocks=1 txs=0 mgas=0.000 elapsed=7.884ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:44.031] Imported new chain segment number=4586 hash=8cb89e..54d2ef blocks=1 txs=0 mgas=0.000 elapsed=15.915ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:47.828] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:43:49.027] Imported new chain segment number=4587 hash=f2766d..77c572 blocks=1 txs=0 mgas=0.000 elapsed=12.398ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:54.023] Imported new chain segment number=4588 hash=ea631b..d6fa36 blocks=1 txs=0 mgas=0.000 elapsed=9.858ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:43:57.853] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:43:59.027] Imported new chain segment number=4589 hash=3e062e..a7ae11 blocks=1 txs=0 mgas=0.000 elapsed=13.062ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:04.030] Imported new chain segment number=4590 hash=44fab5..644bc1 blocks=1 txs=0 mgas=0.000 elapsed=12.351ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:07.877] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:44:09.024] Imported new chain segment number=4591 hash=9e500e..5ed7b1 blocks=1 txs=0 mgas=0.000 elapsed=11.765ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:14.021] Imported new chain segment number=4592 hash=ca817a..0aed57 blocks=1 txs=0 mgas=0.000 elapsed=8.899ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:17.902] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:44:19.028] Imported new chain segment number=4593 hash=f9511e..f3820c blocks=1 txs=0 mgas=0.000 elapsed=13.438ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:24.034] Imported new chain segment number=4594 hash=f9970d..714b20 blocks=1 txs=0 mgas=0.000 elapsed=23.586ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:27.925] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:44:29.031] Imported new chain segment number=4595 hash=ab6d2b..2bb2fb blocks=1 txs=0 mgas=0.000 elapsed=13.203ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:34.033] Imported new chain segment number=4596 hash=b88874..39d2d6 blocks=1 txs=0 mgas=0.000 elapsed=15.007ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:37.948] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:44:39.027] Imported new chain segment number=4597 hash=6eeab0..6cf1f9 blocks=1 txs=0 mgas=0.000 elapsed=13.742ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:44.028] Imported new chain segment number=4598 hash=01f8ae..85fb4f blocks=1 txs=0 mgas=0.000 elapsed=12.786ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:47.971] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:44:49.031] Imported new chain segment number=4599 hash=e47c10..47cc1c blocks=1 txs=0 mgas=0.000 elapsed=14.390ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:54.028] Imported new chain segment number=4600 hash=c185de..b1e970 blocks=1 txs=0 mgas=0.000 elapsed=12.600ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:44:57.998] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:44:59.030] Imported new chain segment number=4601 hash=860cba..c3406e blocks=1 txs=0 mgas=0.000 elapsed=13.196ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:04.028] Imported new chain segment number=4602 hash=cdf219..f4214d blocks=1 txs=0 mgas=0.000 elapsed=12.381ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:08.022] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:45:09.031] Imported new chain segment number=4603 hash=cdc736..387a47 blocks=1 txs=0 mgas=0.000 elapsed=13.928ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:14.029] Imported new chain segment number=4604 hash=dee28f..f494c2 blocks=1 txs=0 mgas=0.000 elapsed=15.826ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:18.046] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:45:19.025] Imported new chain segment number=4605 hash=ac617a..fd9f1d blocks=1 txs=0 mgas=0.000 elapsed=12.647ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:24.025] Imported new chain segment number=4606 hash=6d805f..1db13b blocks=1 txs=0 mgas=0.000 elapsed=11.798ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:28.069] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:45:29.021] Imported new chain segment number=4607 hash=f1e495..bef468 blocks=1 txs=0 mgas=0.000 elapsed=10.800ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:34.016] Imported new chain segment number=4608 hash=f0b785..0a4fa5 blocks=1 txs=0 mgas=0.000 elapsed=7.158ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:38.094] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:45:39.028] Imported new chain segment number=4609 hash=4e622a..6fae7e blocks=1 txs=0 mgas=0.000 elapsed=11.885ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:44.029] Imported new chain segment number=4610 hash=4f3521..a37077 blocks=1 txs=0 mgas=0.000 elapsed=13.415ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:48.118] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:45:49.018] Imported new chain segment number=4611 hash=3103d0..61cf28 blocks=1 txs=0 mgas=0.000 elapsed=7.954ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:54.024] Imported new chain segment number=4612 hash=6faf56..519583 blocks=1 txs=0 mgas=0.000 elapsed=11.175ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:45:58.142] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:45:59.029] Imported new chain segment number=4613 hash=049dc0..db7bd7 blocks=1 txs=0 mgas=0.000 elapsed=12.505ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:04.024] Imported new chain segment number=4614 hash=d21461..388fe5 blocks=1 txs=0 mgas=0.000 elapsed=10.269ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:08.165] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:46:09.028] Imported new chain segment number=4615 hash=3fa530..145fb5 blocks=1 txs=0 mgas=0.000 elapsed=15.026ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:14.031] Imported new chain segment number=4616 hash=0eba33..1571c3 blocks=1 txs=0 mgas=0.000 elapsed=13.757ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:18.189] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:46:19.017] Imported new chain segment number=4617 hash=1013d6..51b12a blocks=1 txs=0 mgas=0.000 elapsed=8.841ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:24.153] Imported new chain segment number=4618 hash=c33a38..3f165b blocks=1 txs=0 mgas=0.000 elapsed=43.233ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:28.212] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:46:29.021] Imported new chain segment number=4619 hash=f33a66..e56cfb blocks=1 txs=0 mgas=0.000 elapsed=12.381ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:34.013] Imported new chain segment number=4620 hash=0f1d3b..e6398b blocks=1 txs=0 mgas=0.000 elapsed=5.235ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:38.251] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:46:39.016] Imported new chain segment number=4621 hash=fa4e66..1e3912 blocks=1 txs=0 mgas=0.000 elapsed=7.254ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:44.018] Imported new chain segment number=4622 hash=b46b57..b6d85e blocks=1 txs=0 mgas=0.000 elapsed=6.884ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:48.272] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:46:49.021] Imported new chain segment number=4623 hash=1c90b9..50e696 blocks=1 txs=0 mgas=0.000 elapsed=6.590ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:54.013] Imported new chain segment number=4624 hash=5f2ff5..67ad8b blocks=1 txs=0 mgas=0.000 elapsed=5.487ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:46:58.295] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:46:59.017] Imported new chain segment number=4625 hash=7bd6b3..0ec813 blocks=1 txs=0 mgas=0.000 elapsed=5.918ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:04.015] Imported new chain segment number=4626 hash=d53482..d56cdb blocks=1 txs=0 mgas=0.000 elapsed=5.008ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:08.316] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:47:09.015] Imported new chain segment number=4627 hash=3b8c63..6b3809 blocks=1 txs=0 mgas=0.000 elapsed=5.607ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:14.018] Imported new chain segment number=4628 hash=e6a742..1f72f5 blocks=1 txs=0 mgas=0.000 elapsed=6.875ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:18.339] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:47:19.011] Imported new chain segment number=4629 hash=b7497d..96ecfa blocks=1 txs=0 mgas=0.000 elapsed=5.946ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:24.018] Imported new chain segment number=4630 hash=188f7d..715d95 blocks=1 txs=0 mgas=0.000 elapsed=7.439ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:28.358] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:47:29.014] Imported new chain segment number=4631 hash=dfd12f..5a3a8b blocks=1 txs=0 mgas=0.000 elapsed=4.644ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:34.028] Imported new chain segment number=4632 hash=a264fe..0f9c8a blocks=1 txs=0 mgas=0.000 elapsed=6.688ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:38.377] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:47:39.025] Imported new chain segment number=4633 hash=008c9b..6698e8 blocks=1 txs=0 mgas=0.000 elapsed=11.403ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:45.203] Imported new chain segment number=4634 hash=97d41d..bc081e blocks=1 txs=0 mgas=0.000 elapsed=464.509ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:48.407] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:47:49.184] Imported new chain segment number=4635 hash=16e8be..8794a2 blocks=1 txs=0 mgas=0.000 elapsed=7.736ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:54.040] Imported new chain segment number=4636 hash=1682f1..8c8de5 blocks=1 txs=0 mgas=0.000 elapsed=25.295ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:47:58.634] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:47:59.061] Imported new chain segment number=4637 hash=5c1c21..8fdcd6 blocks=1 txs=0 mgas=0.000 elapsed=38.189ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:04.100] Imported new chain segment number=4638 hash=9d17f8..b85282 blocks=1 txs=0 mgas=0.000 elapsed=57.543ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:08.676] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:48:09.052] Imported new chain segment number=4639 hash=0c0eeb..2c64e4 blocks=1 txs=0 mgas=0.000 elapsed=22.839ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:14.038] Imported new chain segment number=4640 hash=52286e..0e9d88 blocks=1 txs=0 mgas=0.000 elapsed=21.619ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:18.693] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:48:19.044] Imported new chain segment number=4641 hash=269fd7..a596f0 blocks=1 txs=0 mgas=0.000 elapsed=21.416ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:24.043] Imported new chain segment number=4642 hash=efc476..d7ceef blocks=1 txs=0 mgas=0.000 elapsed=13.154ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:28.714] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:48:29.047] Imported new chain segment number=4643 hash=4ca300..8fc5b3 blocks=1 txs=0 mgas=0.000 elapsed=18.111ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:34.051] Imported new chain segment number=4644 hash=798e96..776d2c blocks=1 txs=0 mgas=0.000 elapsed=29.987ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:38.738] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:48:39.040] Imported new chain segment number=4645 hash=224094..59cd54 blocks=1 txs=0 mgas=0.000 elapsed=12.785ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:44.056] Imported new chain segment number=4646 hash=6a91eb..691eba blocks=1 txs=0 mgas=0.000 elapsed=21.303ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:48.758] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:48:50.042] Imported new chain segment number=4647 hash=33cfdc..3d8883 blocks=1 txs=0 mgas=0.000 elapsed=32.209ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:54.056] Imported new chain segment number=4648 hash=2bc62e..cc5f4a blocks=1 txs=0 mgas=0.000 elapsed=32.506ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:48:58.798] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:48:59.059] Imported new chain segment number=4649 hash=197778..632f59 blocks=1 txs=0 mgas=0.000 elapsed=31.794ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:04.013] Imported new chain segment number=4650 hash=90aa42..eeee50 blocks=1 txs=0 mgas=0.000 elapsed=5.798ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:08.824] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:49:09.022] Imported new chain segment number=4651 hash=0061c1..d2538c blocks=1 txs=0 mgas=0.000 elapsed=8.264ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:14.015] Imported new chain segment number=4652 hash=b19c1b..966245 blocks=1 txs=0 mgas=0.000 elapsed=5.338ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:18.843] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:49:19.015] Imported new chain segment number=4653 hash=7caecc..daf49d blocks=1 txs=0 mgas=0.000 elapsed=3.890ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:24.013] Imported new chain segment number=4654 hash=5f7da9..ab6b5e blocks=1 txs=0 mgas=0.000 elapsed=4.953ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:28.864] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:49:29.015] Imported new chain segment number=4655 hash=eaff4d..441134 blocks=1 txs=0 mgas=0.000 elapsed=6.128ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:34.016] Imported new chain segment number=4656 hash=b1518a..42a34b blocks=1 txs=0 mgas=0.000 elapsed=7.003ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:38.883] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:49:39.021] Imported new chain segment number=4657 hash=9fac40..e3a214 blocks=1 txs=0 mgas=0.000 elapsed=8.299ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:44.017] Imported new chain segment number=4658 hash=78b797..8fdac9 blocks=1 txs=0 mgas=0.000 elapsed=4.810ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:48.901] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:49:49.019] Imported new chain segment number=4659 hash=52d0c2..bb6c47 blocks=1 txs=0 mgas=0.000 elapsed=7.700ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:54.021] Imported new chain segment number=4660 hash=111e63..c701c9 blocks=1 txs=0 mgas=0.000 elapsed=6.668ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:49:58.921] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:49:59.023] Imported new chain segment number=4661 hash=eb728d..b47c96 blocks=1 txs=0 mgas=0.000 elapsed=6.743ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:04.012] Imported new chain segment number=4662 hash=8f46d9..ca2e2b blocks=1 txs=0 mgas=0.000 elapsed=4.849ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:08.940] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:50:09.020] Imported new chain segment number=4663 hash=da4654..633322 blocks=1 txs=0 mgas=0.000 elapsed=8.441ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:14.019] Imported new chain segment number=4664 hash=d8ecaf..d231e7 blocks=1 txs=0 mgas=0.000 elapsed=8.135ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:18.961] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:50:19.018] Imported new chain segment number=4665 hash=19848a..3edf88 blocks=1 txs=0 mgas=0.000 elapsed=5.659ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:24.021] Imported new chain segment number=4666 hash=853c7e..285660 blocks=1 txs=0 mgas=0.000 elapsed=7.757ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:28.984] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:50:29.018] Imported new chain segment number=4667 hash=3f3f5b..1156ba blocks=1 txs=0 mgas=0.000 elapsed=6.606ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:34.016] Imported new chain segment number=4668 hash=81bbb7..8e42a3 blocks=1 txs=0 mgas=0.000 elapsed=5.942ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:39.003] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:50:39.018] Imported new chain segment number=4669 hash=f5e34f..c6ab9f blocks=1 txs=0 mgas=0.000 elapsed=6.151ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:44.018] Imported new chain segment number=4670 hash=b81330..e69770 blocks=1 txs=0 mgas=0.000 elapsed=6.932ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:49.020] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:50:49.022] Imported new chain segment number=4671 hash=9a0bd6..b0f94e blocks=1 txs=0 mgas=0.000 elapsed=9.517ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:54.019] Imported new chain segment number=4672 hash=605db4..c23278 blocks=1 txs=0 mgas=0.000 elapsed=7.890ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:59.013] Imported new chain segment number=4673 hash=d4f94d..4096ac blocks=1 txs=0 mgas=0.000 elapsed=4.535ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:50:59.038] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:51:04.021] Imported new chain segment number=4674 hash=57f9b7..b57386 blocks=1 txs=0 mgas=0.000 elapsed=8.534ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:09.013] Imported new chain segment number=4675 hash=8f8778..0c4c67 blocks=1 txs=0 mgas=0.000 elapsed=6.634ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:09.061] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:51:14.014] Imported new chain segment number=4676 hash=544d58..229207 blocks=1 txs=0 mgas=0.000 elapsed=6.900ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:19.022] Imported new chain segment number=4677 hash=b02b63..cf9d13 blocks=1 txs=0 mgas=0.000 elapsed=9.010ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:19.079] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:51:24.015] Imported new chain segment number=4678 hash=009543..0d88f5 blocks=1 txs=0 mgas=0.000 elapsed=7.591ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:29.016] Imported new chain segment number=4679 hash=ab5992..1e5c6a blocks=1 txs=0 mgas=0.000 elapsed=6.153ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:29.100] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:51:34.028] Imported new chain segment number=4680 hash=cfc355..c46593 blocks=1 txs=0 mgas=0.000 elapsed=14.173ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:39.014] Imported new chain segment number=4681 hash=667b93..30297b blocks=1 txs=0 mgas=0.000 elapsed=5.691ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:39.123] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:51:44.015] Imported new chain segment number=4682 hash=e6d9b0..3b7183 blocks=1 txs=0 mgas=0.000 elapsed=6.036ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:49.019] Imported new chain segment number=4683 hash=7d9f9e..d1ee34 blocks=1 txs=0 mgas=0.000 elapsed=9.477ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:49.142] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:51:54.017] Imported new chain segment number=4684 hash=d81a31..85d23f blocks=1 txs=0 mgas=0.000 elapsed=6.585ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:59.013] Imported new chain segment number=4685 hash=6533ec..ccc4f2 blocks=1 txs=0 mgas=0.000 elapsed=5.281ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:51:59.163] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:52:04.016] Imported new chain segment number=4686 hash=de3096..828908 blocks=1 txs=0 mgas=0.000 elapsed=8.002ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:09.013] Imported new chain segment number=4687 hash=f3f6a5..9cce58 blocks=1 txs=0 mgas=0.000 elapsed=6.818ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:09.186] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:52:14.018] Imported new chain segment number=4688 hash=22c404..8a746b blocks=1 txs=0 mgas=0.000 elapsed=7.327ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:19.018] Imported new chain segment number=4689 hash=8fd7bb..4018c1 blocks=1 txs=0 mgas=0.000 elapsed=6.915ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:19.204] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:52:24.016] Imported new chain segment number=4690 hash=50beb2..60e371 blocks=1 txs=0 mgas=0.000 elapsed=6.247ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:29.017] Imported new chain segment number=4691 hash=c58f4e..f1635f blocks=1 txs=0 mgas=0.000 elapsed=7.155ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:29.225] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:52:34.014] Imported new chain segment number=4692 hash=c24847..931a7d blocks=1 txs=0 mgas=0.000 elapsed=6.171ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:39.019] Imported new chain segment number=4693 hash=7cc84b..c21288 blocks=1 txs=0 mgas=0.000 elapsed=8.302ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:39.245] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:52:44.016] Imported new chain segment number=4694 hash=6f21f4..530d16 blocks=1 txs=0 mgas=0.000 elapsed=6.441ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:49.014] Imported new chain segment number=4695 hash=93c9cf..c75ba0 blocks=1 txs=0 mgas=0.000 elapsed=4.253ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:49.267] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:52:54.018] Imported new chain segment number=4696 hash=713552..cd4468 blocks=1 txs=0 mgas=0.000 elapsed=7.236ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:59.017] Imported new chain segment number=4697 hash=ff06ec..7d5e3f blocks=1 txs=0 mgas=0.000 elapsed=6.233ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:52:59.288] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:53:04.013] Imported new chain segment number=4698 hash=b9e505..b42cfa blocks=1 txs=0 mgas=0.000 elapsed=6.505ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:09.017] Imported new chain segment number=4699 hash=e9dae0..606cd7 blocks=1 txs=0 mgas=0.000 elapsed=6.900ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:09.310] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:53:14.016] Imported new chain segment number=4700 hash=f0d362..c40176 blocks=1 txs=0 mgas=0.000 elapsed=5.789ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:19.018] Imported new chain segment number=4701 hash=94d04e..89c7b2 blocks=1 txs=0 mgas=0.000 elapsed=5.705ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:19.330] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:53:24.022] Imported new chain segment number=4702 hash=b5ddbd..db5659 blocks=1 txs=0 mgas=0.000 elapsed=8.333ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:29.015] Imported new chain segment number=4703 hash=f0eac1..414fdf blocks=1 txs=0 mgas=0.000 elapsed=5.886ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:29.351] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:53:34.014] Imported new chain segment number=4704 hash=4902f6..cf1b54 blocks=1 txs=0 mgas=0.000 elapsed=4.898ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:39.018] Imported new chain segment number=4705 hash=e97abd..5d9c8b blocks=1 txs=0 mgas=0.000 elapsed=5.657ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:39.372] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:53:44.019] Imported new chain segment number=4706 hash=d69514..9657b6 blocks=1 txs=0 mgas=0.000 elapsed=9.749ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:49.013] Imported new chain segment number=4707 hash=834c7a..5cb3ac blocks=1 txs=0 mgas=0.000 elapsed=6.597ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:49.393] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:53:54.019] Imported new chain segment number=4708 hash=51652f..be3915 blocks=1 txs=0 mgas=0.000 elapsed=6.982ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:59.013] Imported new chain segment number=4709 hash=27c646..3b1053 blocks=1 txs=0 mgas=0.000 elapsed=5.385ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:53:59.411] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:54:04.012] Imported new chain segment number=4710 hash=3415e7..f9579d blocks=1 txs=0 mgas=0.000 elapsed=5.984ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:09.017] Imported new chain segment number=4711 hash=a013b5..8a7a2d blocks=1 txs=0 mgas=0.000 elapsed=7.034ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:09.433] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:54:14.017] Imported new chain segment number=4712 hash=993f42..3ce69f blocks=1 txs=0 mgas=0.000 elapsed=5.725ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:19.018] Imported new chain segment number=4713 hash=8a3d22..204675 blocks=1 txs=0 mgas=0.000 elapsed=6.057ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:19.454] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:54:24.017] Imported new chain segment number=4714 hash=afc771..abc4d2 blocks=1 txs=0 mgas=0.000 elapsed=5.564ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:29.015] Imported new chain segment number=4715 hash=d1216e..7232ec blocks=1 txs=0 mgas=0.000 elapsed=4.738ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:29.475] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:54:34.013] Imported new chain segment number=4716 hash=05ffc3..235a5a blocks=1 txs=0 mgas=0.000 elapsed=6.035ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:39.015] Imported new chain segment number=4717 hash=37769d..1164c4 blocks=1 txs=0 mgas=0.000 elapsed=4.663ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:39.497] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:54:44.013] Imported new chain segment number=4718 hash=9d87fc..983a21 blocks=1 txs=0 mgas=0.000 elapsed=5.991ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:49.012] Imported new chain segment number=4719 hash=d667c3..e6f546 blocks=1 txs=0 mgas=0.000 elapsed=4.558ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:49.517] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:54:54.012] Imported new chain segment number=4720 hash=43b058..9a2ea8 blocks=1 txs=0 mgas=0.000 elapsed=4.661ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:59.021] Imported new chain segment number=4721 hash=b62c81..0397b0 blocks=1 txs=0 mgas=0.000 elapsed=8.152ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:54:59.536] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:55:04.018] Imported new chain segment number=4722 hash=ec6311..563555 blocks=1 txs=0 mgas=0.000 elapsed=6.711ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:09.013] Imported new chain segment number=4723 hash=58a13a..bc293e blocks=1 txs=0 mgas=0.000 elapsed=6.278ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:09.557] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:55:14.020] Imported new chain segment number=4724 hash=5aa378..e0fce8 blocks=1 txs=0 mgas=0.000 elapsed=6.543ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:19.020] Imported new chain segment number=4725 hash=0830bd..6f54db blocks=1 txs=0 mgas=0.000 elapsed=8.392ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:19.577] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:55:24.020] Imported new chain segment number=4726 hash=8fce8b..af8803 blocks=1 txs=0 mgas=0.000 elapsed=6.840ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:29.018] Imported new chain segment number=4727 hash=692e54..1f7c7a blocks=1 txs=0 mgas=0.000 elapsed=6.568ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:29.599] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:55:34.017] Imported new chain segment number=4728 hash=c4684b..07295e blocks=1 txs=0 mgas=0.000 elapsed=6.261ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:39.016] Imported new chain segment number=4729 hash=b028b1..b2cd90 blocks=1 txs=0 mgas=0.000 elapsed=6.436ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:39.619] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:55:44.013] Imported new chain segment number=4730 hash=c9274d..038521 blocks=1 txs=0 mgas=0.000 elapsed=5.883ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:49.014] Imported new chain segment number=4731 hash=ec9e67..6ebe69 blocks=1 txs=0 mgas=0.000 elapsed=7.228ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:49.639] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:55:54.017] Imported new chain segment number=4732 hash=8f9c06..5db1a4 blocks=1 txs=0 mgas=0.000 elapsed=6.435ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:59.016] Imported new chain segment number=4733 hash=50cbb8..02f78f blocks=1 txs=0 mgas=0.000 elapsed=7.026ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:55:59.659] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:56:04.018] Imported new chain segment number=4734 hash=3d32de..58b6ff blocks=1 txs=0 mgas=0.000 elapsed=7.337ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:09.016] Imported new chain segment number=4735 hash=c9a7f2..65bf8f blocks=1 txs=0 mgas=0.000 elapsed=5.622ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:09.683] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:56:14.018] Imported new chain segment number=4736 hash=44282e..d40176 blocks=1 txs=0 mgas=0.000 elapsed=6.167ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:19.018] Imported new chain segment number=4737 hash=7df938..a2b563 blocks=1 txs=0 mgas=0.000 elapsed=8.671ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:19.702] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:56:24.016] Imported new chain segment number=4738 hash=a62d9f..7b47e8 blocks=1 txs=0 mgas=0.000 elapsed=6.031ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:29.016] Imported new chain segment number=4739 hash=fb6b54..6464e1 blocks=1 txs=0 mgas=0.000 elapsed=4.662ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:29.723] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:56:34.012] Imported new chain segment number=4740 hash=4c9857..b24921 blocks=1 txs=0 mgas=0.000 elapsed=4.990ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:39.019] Imported new chain segment number=4741 hash=3cf157..7065af blocks=1 txs=0 mgas=0.000 elapsed=8.312ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:39.745] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:56:44.020] Imported new chain segment number=4742 hash=dbf8b9..2724c2 blocks=1 txs=0 mgas=0.000 elapsed=7.720ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:49.018] Imported new chain segment number=4743 hash=a723d5..d6180e blocks=1 txs=0 mgas=0.000 elapsed=7.034ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:49.767] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:56:54.019] Imported new chain segment number=4744 hash=d7b822..d8a1c4 blocks=1 txs=0 mgas=0.000 elapsed=6.693ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:59.021] Imported new chain segment number=4745 hash=7dd692..8c22d4 blocks=1 txs=0 mgas=0.000 elapsed=9.309ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:56:59.788] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:57:04.019] Imported new chain segment number=4746 hash=0fcd76..8c6f49 blocks=1 txs=0 mgas=0.000 elapsed=7.330ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:57:09.018] Imported new chain segment number=4747 hash=82da13..c18caf blocks=1 txs=0 mgas=0.000 elapsed=7.398ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:57:09.811] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:57:14.014] Imported new chain segment number=4748 hash=521287..d5be5e blocks=1 txs=0 mgas=0.000 elapsed=4.845ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:57:19.018] Imported new chain segment number=4749 hash=f140c8..c06119 blocks=1 txs=0 mgas=0.000 elapsed=6.824ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:57:19.834] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:57:24.015] Imported new chain segment number=4750 hash=d3f422..466df2 blocks=1 txs=0 mgas=0.000 elapsed=5.634ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:57:29.018] Imported new chain segment number=4751 hash=161eae..60d47a blocks=1 txs=0 mgas=0.000 elapsed=5.027ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:57:29.859] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:57:34.019] Imported new chain segment number=4752 hash=f6b555..6b4289 blocks=1 txs=0 mgas=0.000 elapsed=7.689ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:57:39.012] Imported new chain segment number=4753 hash=3f7972..82566c blocks=1 txs=0 mgas=0.000 elapsed=6.223ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:57:39.882] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:57:44.020] Imported new chain segment number=4754 hash=4f10f7..5c8b33 blocks=1 txs=0 mgas=0.000 elapsed=7.185ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:57:49.020] Imported new chain segment number=4755 hash=22162e..49ceb5 blocks=1 txs=0 mgas=0.000 elapsed=6.831ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:57:49.903] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:57:54.019] Imported new chain segment number=4756 hash=b365bc..921e31 blocks=1 txs=0 mgas=0.000 elapsed=7.087ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:57:59.020] Imported new chain segment number=4757 hash=c1851b..dec411 blocks=1 txs=0 mgas=0.000 elapsed=6.991ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:57:59.929] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:58:04.017] Imported new chain segment number=4758 hash=bbb053..84e8f6 blocks=1 txs=0 mgas=0.000 elapsed=6.463ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:58:09.017] Imported new chain segment number=4759 hash=bb2ca5..cc2d55 blocks=1 txs=0 mgas=0.000 elapsed=5.837ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:58:09.947] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:58:14.018] Imported new chain segment number=4760 hash=d9b23c..954771 blocks=1 txs=0 mgas=0.000 elapsed=7.647ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:58:19.017] Imported new chain segment number=4761 hash=88fdcc..bf6ed0 blocks=1 txs=0 mgas=0.000 elapsed=6.683ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:58:19.970] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:58:24.016] Imported new chain segment number=4762 hash=2b9412..6d9268 blocks=1 txs=0 mgas=0.000 elapsed=6.152ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:58:29.018] Imported new chain segment number=4763 hash=30a61a..bbc8ec blocks=1 txs=0 mgas=0.000 elapsed=7.131ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:58:29.994] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:58:34.018] Imported new chain segment number=4764 hash=4c73b4..ee79d3 blocks=1 txs=0 mgas=0.000 elapsed=7.372ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:58:39.020] Imported new chain segment number=4765 hash=61b62f..48c0c6 blocks=1 txs=0 mgas=0.000 elapsed=7.495ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:58:40.013] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:58:44.012] Imported new chain segment number=4766 hash=42c574..7e1c77 blocks=1 txs=0 mgas=0.000 elapsed=5.632ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:58:49.016] Imported new chain segment number=4767 hash=49a17d..db9c4a blocks=1 txs=0 mgas=0.000 elapsed=5.977ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:58:50.035] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:58:54.022] Imported new chain segment number=4768 hash=603b1e..5645cd blocks=1 txs=0 mgas=0.000 elapsed=10.503ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:58:59.013] Imported new chain segment number=4769 hash=188d53..f074f3 blocks=1 txs=0 mgas=0.000 elapsed=6.194ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:00.054] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:59:04.011] Imported new chain segment number=4770 hash=b33fbf..577a51 blocks=1 txs=0 mgas=0.000 elapsed=5.141ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:09.018] Imported new chain segment number=4771 hash=7153cf..869ae2 blocks=1 txs=0 mgas=0.000 elapsed=5.305ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:10.075] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:59:14.019] Imported new chain segment number=4772 hash=57b11c..6810ac blocks=1 txs=0 mgas=0.000 elapsed=7.155ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:19.018] Imported new chain segment number=4773 hash=f819e6..268908 blocks=1 txs=0 mgas=0.000 elapsed=6.123ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:20.101] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:59:24.018] Imported new chain segment number=4774 hash=608e33..fa60ff blocks=1 txs=0 mgas=0.000 elapsed=5.090ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:29.023] Imported new chain segment number=4775 hash=286fc7..a6e59f blocks=1 txs=0 mgas=0.000 elapsed=9.818ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:30.119] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:59:34.010] Imported new chain segment number=4776 hash=f695a5..498071 blocks=1 txs=0 mgas=0.000 elapsed=3.226ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:39.017] Imported new chain segment number=4777 hash=9abd85..e282dc blocks=1 txs=0 mgas=0.000 elapsed=7.277ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:40.139] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:59:44.012] Imported new chain segment number=4778 hash=17bbbb..61088f blocks=1 txs=0 mgas=0.000 elapsed=4.976ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:49.013] Imported new chain segment number=4779 hash=04cba7..dc4609 blocks=1 txs=0 mgas=0.000 elapsed=5.927ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:50.160] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|09:59:54.020] Imported new chain segment number=4780 hash=2f4513..a2f4fd blocks=1 txs=0 mgas=0.000 elapsed=5.555ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|09:59:59.017] Imported new chain segment number=4781 hash=cc1cef..47b272 blocks=1 txs=0 mgas=0.000 elapsed=6.201ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:00.182] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:00:04.018] Imported new chain segment number=4782 hash=17d620..2a88b3 blocks=1 txs=0 mgas=0.000 elapsed=6.332ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:09.015] Imported new chain segment number=4783 hash=7576c2..16b238 blocks=1 txs=0 mgas=0.000 elapsed=5.425ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:10.202] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:00:14.022] Imported new chain segment number=4784 hash=744fb5..7455e1 blocks=1 txs=0 mgas=0.000 elapsed=8.630ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:19.020] Imported new chain segment number=4785 hash=a9c358..145b5b blocks=1 txs=0 mgas=0.000 elapsed=7.056ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:20.225] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:00:24.018] Imported new chain segment number=4786 hash=42d4d3..517f01 blocks=1 txs=0 mgas=0.000 elapsed=6.548ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:29.020] Imported new chain segment number=4787 hash=60e0a9..e2dec4 blocks=1 txs=0 mgas=0.000 elapsed=8.445ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:30.242] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:00:34.017] Imported new chain segment number=4788 hash=a5f795..a7cdd6 blocks=1 txs=0 mgas=0.000 elapsed=5.056ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:39.018] Imported new chain segment number=4789 hash=839c19..31920b blocks=1 txs=0 mgas=0.000 elapsed=8.519ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:40.262] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:00:44.023] Imported new chain segment number=4790 hash=7c14c4..fdc155 blocks=1 txs=0 mgas=0.000 elapsed=9.706ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:49.014] Imported new chain segment number=4791 hash=450853..ae2cd3 blocks=1 txs=0 mgas=0.000 elapsed=5.995ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:50.281] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:00:54.011] Imported new chain segment number=4792 hash=0844d0..92bffd blocks=1 txs=0 mgas=0.000 elapsed=5.387ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:00:59.018] Imported new chain segment number=4793 hash=5d32d2..27e240 blocks=1 txs=0 mgas=0.000 elapsed=6.437ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:00.304] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:01:04.019] Imported new chain segment number=4794 hash=dc0055..e6530a blocks=1 txs=0 mgas=0.000 elapsed=6.791ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:09.019] Imported new chain segment number=4795 hash=789b4e..98095f blocks=1 txs=0 mgas=0.000 elapsed=7.049ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:10.327] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:01:14.021] Imported new chain segment number=4796 hash=73947b..570e63 blocks=1 txs=0 mgas=0.000 elapsed=8.517ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:19.017] Imported new chain segment number=4797 hash=2d6a84..4a8412 blocks=1 txs=0 mgas=0.000 elapsed=6.721ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:20.346] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:01:24.017] Imported new chain segment number=4798 hash=cd0a31..71da9b blocks=1 txs=0 mgas=0.000 elapsed=7.124ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:29.017] Imported new chain segment number=4799 hash=eb3412..b69388 blocks=1 txs=0 mgas=0.000 elapsed=5.890ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:30.369] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:01:34.013] Imported new chain segment number=4800 hash=63dc93..4ac6fd blocks=1 txs=0 mgas=0.000 elapsed=6.070ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:39.019] Imported new chain segment number=4801 hash=72e04e..7c2b6f blocks=1 txs=0 mgas=0.000 elapsed=7.325ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:40.394] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:01:44.019] Imported new chain segment number=4802 hash=d5c8d6..d4c1e5 blocks=1 txs=0 mgas=0.000 elapsed=6.480ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:49.012] Imported new chain segment number=4803 hash=703304..84493e blocks=1 txs=0 mgas=0.000 elapsed=5.928ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:50.414] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:01:54.011] Imported new chain segment number=4804 hash=d461bb..163881 blocks=1 txs=0 mgas=0.000 elapsed=4.675ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:01:59.012] Imported new chain segment number=4805 hash=e70c22..73652f blocks=1 txs=0 mgas=0.000 elapsed=3.041ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:00.434] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:02:04.012] Imported new chain segment number=4806 hash=30b276..a3060a blocks=1 txs=0 mgas=0.000 elapsed=5.227ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:09.018] Imported new chain segment number=4807 hash=c1402f..1254d6 blocks=1 txs=0 mgas=0.000 elapsed=6.723ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:10.456] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:02:14.014] Imported new chain segment number=4808 hash=b23bc5..922710 blocks=1 txs=0 mgas=0.000 elapsed=5.380ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:19.020] Imported new chain segment number=4809 hash=3e96fa..e7a111 blocks=1 txs=0 mgas=0.000 elapsed=7.054ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:20.477] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:02:24.018] Imported new chain segment number=4810 hash=d19442..bcc7d8 blocks=1 txs=0 mgas=0.000 elapsed=8.011ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:29.015] Imported new chain segment number=4811 hash=e7c5c6..b5b720 blocks=1 txs=0 mgas=0.000 elapsed=5.898ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:30.500] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:02:34.020] Imported new chain segment number=4812 hash=18b593..337adc blocks=1 txs=0 mgas=0.000 elapsed=6.910ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:39.021] Imported new chain segment number=4813 hash=8a4276..84e90c blocks=1 txs=0 mgas=0.000 elapsed=8.069ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:40.521] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:02:44.013] Imported new chain segment number=4814 hash=484a35..e29e58 blocks=1 txs=0 mgas=0.000 elapsed=6.023ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:49.019] Imported new chain segment number=4815 hash=70b6bf..17449e blocks=1 txs=0 mgas=0.000 elapsed=6.254ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:50.541] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:02:54.018] Imported new chain segment number=4816 hash=2f69a2..24d3d9 blocks=1 txs=0 mgas=0.000 elapsed=6.976ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:02:59.018] Imported new chain segment number=4817 hash=e6a03e..b02dad blocks=1 txs=0 mgas=0.000 elapsed=6.495ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:00.563] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:03:04.019] Imported new chain segment number=4818 hash=099657..9f2766 blocks=1 txs=0 mgas=0.000 elapsed=7.447ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:09.020] Imported new chain segment number=4819 hash=950353..f6a799 blocks=1 txs=0 mgas=0.000 elapsed=7.138ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:10.585] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:03:14.019] Imported new chain segment number=4820 hash=987e92..c16e89 blocks=1 txs=0 mgas=0.000 elapsed=7.003ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:19.015] Imported new chain segment number=4821 hash=89f5d2..e664d2 blocks=1 txs=0 mgas=0.000 elapsed=5.001ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:20.605] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:03:24.019] Imported new chain segment number=4822 hash=57b00a..6dac51 blocks=1 txs=0 mgas=0.000 elapsed=8.115ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:29.011] Imported new chain segment number=4823 hash=137c4f..eaffd3 blocks=1 txs=0 mgas=0.000 elapsed=4.937ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:30.623] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:03:34.013] Imported new chain segment number=4824 hash=9b1aef..68388f blocks=1 txs=0 mgas=0.000 elapsed=5.060ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:39.020] Imported new chain segment number=4825 hash=3e96d0..0f2e0e blocks=1 txs=0 mgas=0.000 elapsed=7.489ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:40.645] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:03:44.019] Imported new chain segment number=4826 hash=4af78c..5a86ec blocks=1 txs=0 mgas=0.000 elapsed=7.792ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:49.010] Imported new chain segment number=4827 hash=f44dd4..424ce0 blocks=1 txs=0 mgas=0.000 elapsed=3.834ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:50.667] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:03:54.018] Imported new chain segment number=4828 hash=2b85a2..9a5499 blocks=1 txs=0 mgas=0.000 elapsed=6.645ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:03:59.018] Imported new chain segment number=4829 hash=36b1ef..7e1371 blocks=1 txs=0 mgas=0.000 elapsed=6.221ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:00.689] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:04:04.014] Imported new chain segment number=4830 hash=0701b1..3781b4 blocks=1 txs=0 mgas=0.000 elapsed=6.460ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:09.014] Imported new chain segment number=4831 hash=e46150..987118 blocks=1 txs=0 mgas=0.000 elapsed=5.481ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:10.710] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:04:14.018] Imported new chain segment number=4832 hash=f43e48..5fa014 blocks=1 txs=0 mgas=0.000 elapsed=6.165ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:19.015] Imported new chain segment number=4833 hash=d8a4fb..09e9f8 blocks=1 txs=0 mgas=0.000 elapsed=5.774ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:20.729] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:04:24.018] Imported new chain segment number=4834 hash=c7c9c6..0254d3 blocks=1 txs=0 mgas=0.000 elapsed=7.657ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:29.010] Imported new chain segment number=4835 hash=54e2a5..d8ceec blocks=1 txs=0 mgas=0.000 elapsed=3.562ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:30.752] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:04:34.011] Imported new chain segment number=4836 hash=67d3d8..60af99 blocks=1 txs=0 mgas=0.000 elapsed=5.370ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:39.021] Imported new chain segment number=4837 hash=34454d..b7fc37 blocks=1 txs=0 mgas=0.000 elapsed=7.674ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:40.770] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:04:44.019] Imported new chain segment number=4838 hash=6d55dc..c3010f blocks=1 txs=0 mgas=0.000 elapsed=7.140ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:49.018] Imported new chain segment number=4839 hash=4922ea..00fc70 blocks=1 txs=0 mgas=0.000 elapsed=6.907ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:50.790] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:04:54.019] Imported new chain segment number=4840 hash=24965e..1585e6 blocks=1 txs=0 mgas=0.000 elapsed=6.327ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:04:59.021] Imported new chain segment number=4841 hash=952afe..a37197 blocks=1 txs=0 mgas=0.000 elapsed=8.733ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:00.813] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:05:04.013] Imported new chain segment number=4842 hash=d32395..a63b3e blocks=1 txs=0 mgas=0.000 elapsed=7.104ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:09.015] Imported new chain segment number=4843 hash=cd26a2..2e46e7 blocks=1 txs=0 mgas=0.000 elapsed=4.931ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:10.836] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:05:14.018] Imported new chain segment number=4844 hash=e38883..c70786 blocks=1 txs=0 mgas=0.000 elapsed=6.058ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:19.010] Imported new chain segment number=4845 hash=5d290b..7c13d0 blocks=1 txs=0 mgas=0.000 elapsed=5.362ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:20.857] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:05:24.015] Imported new chain segment number=4846 hash=347f2f..ea52b0 blocks=1 txs=0 mgas=0.000 elapsed=5.735ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:29.016] Imported new chain segment number=4847 hash=cb8111..6bbdee blocks=1 txs=0 mgas=0.000 elapsed=7.034ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:30.875] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:05:34.031] Imported new chain segment number=4848 hash=abe619..c6dc21 blocks=1 txs=0 mgas=0.000 elapsed=14.954ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:39.013] Imported new chain segment number=4849 hash=d192b8..9a8d63 blocks=1 txs=0 mgas=0.000 elapsed=6.968ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:40.896] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:05:44.018] Imported new chain segment number=4850 hash=f063c4..f7780f blocks=1 txs=0 mgas=0.000 elapsed=5.871ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:49.014] Imported new chain segment number=4851 hash=ddabb3..d1c386 blocks=1 txs=0 mgas=0.000 elapsed=5.231ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:50.916] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:05:54.019] Imported new chain segment number=4852 hash=a03189..90ea66 blocks=1 txs=0 mgas=0.000 elapsed=7.525ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:05:59.018] Imported new chain segment number=4853 hash=43eae6..58bb5f blocks=1 txs=0 mgas=0.000 elapsed=8.381ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:00.938] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:06:04.014] Imported new chain segment number=4854 hash=7d6882..6e192a blocks=1 txs=0 mgas=0.000 elapsed=5.719ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:09.017] Imported new chain segment number=4855 hash=db3926..f07558 blocks=1 txs=0 mgas=0.000 elapsed=6.709ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:10.960] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:06:14.021] Imported new chain segment number=4856 hash=d4dce0..06c3fc blocks=1 txs=0 mgas=0.000 elapsed=9.393ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:19.023] Imported new chain segment number=4857 hash=e2b418..ed0c2e blocks=1 txs=0 mgas=0.000 elapsed=9.743ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:20.980] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:06:24.012] Imported new chain segment number=4858 hash=139036..cee9c4 blocks=1 txs=0 mgas=0.000 elapsed=6.497ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:29.017] Imported new chain segment number=4859 hash=1af089..a744de blocks=1 txs=0 mgas=0.000 elapsed=5.107ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:30.999] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:06:34.012] Imported new chain segment number=4860 hash=ce62fd..bbe4ca blocks=1 txs=0 mgas=0.000 elapsed=5.491ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:39.023] Imported new chain segment number=4861 hash=1b27ba..327e3a blocks=1 txs=0 mgas=0.000 elapsed=10.812ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:41.020] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:06:44.013] Imported new chain segment number=4862 hash=21703d..4a2045 blocks=1 txs=0 mgas=0.000 elapsed=5.248ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:49.031] Imported new chain segment number=4863 hash=4af037..373447 blocks=1 txs=0 mgas=0.000 elapsed=15.280ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:51.041] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:06:54.014] Imported new chain segment number=4864 hash=420429..19e2f1 blocks=1 txs=0 mgas=0.000 elapsed=6.905ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:06:59.028] Imported new chain segment number=4865 hash=e8a43b..58a2d3 blocks=1 txs=0 mgas=0.000 elapsed=13.101ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:01.063] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:07:04.018] Imported new chain segment number=4866 hash=5f10cd..bb9784 blocks=1 txs=0 mgas=0.000 elapsed=6.409ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:09.016] Imported new chain segment number=4867 hash=d5e829..33b44d blocks=1 txs=0 mgas=0.000 elapsed=4.835ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:11.085] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:07:14.019] Imported new chain segment number=4868 hash=a83930..81e71d blocks=1 txs=0 mgas=0.000 elapsed=6.407ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:19.018] Imported new chain segment number=4869 hash=d534d0..e5ed18 blocks=1 txs=0 mgas=0.000 elapsed=7.576ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:21.106] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:07:24.019] Imported new chain segment number=4870 hash=e3d557..bceee1 blocks=1 txs=0 mgas=0.000 elapsed=6.531ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:29.018] Imported new chain segment number=4871 hash=333330..186fd1 blocks=1 txs=0 mgas=0.000 elapsed=5.076ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:31.128] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:07:34.013] Imported new chain segment number=4872 hash=587019..8a2c5f blocks=1 txs=0 mgas=0.000 elapsed=5.907ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:39.030] Imported new chain segment number=4873 hash=d6b077..7e276b blocks=1 txs=0 mgas=0.000 elapsed=12.186ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:41.148] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:07:44.013] Imported new chain segment number=4874 hash=47f65c..e32921 blocks=1 txs=0 mgas=0.000 elapsed=6.316ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:49.033] Imported new chain segment number=4875 hash=3d658d..57465d blocks=1 txs=0 mgas=0.000 elapsed=15.469ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:51.170] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:07:54.016] Imported new chain segment number=4876 hash=4c8465..c7fc77 blocks=1 txs=0 mgas=0.000 elapsed=6.930ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:07:59.027] Imported new chain segment number=4877 hash=55ba86..922e16 blocks=1 txs=0 mgas=0.000 elapsed=11.743ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:01.189] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:08:04.017] Imported new chain segment number=4878 hash=7968c9..32df34 blocks=1 txs=0 mgas=0.000 elapsed=6.634ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:09.019] Imported new chain segment number=4879 hash=352f24..bbf5b5 blocks=1 txs=0 mgas=0.000 elapsed=7.200ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:11.212] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:08:14.015] Imported new chain segment number=4880 hash=86893b..c2cc1a blocks=1 txs=0 mgas=0.000 elapsed=6.711ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:19.011] Imported new chain segment number=4881 hash=1d1721..72c49b blocks=1 txs=0 mgas=0.000 elapsed=4.962ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:21.232] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:08:24.026] Imported new chain segment number=4882 hash=2f1a16..8bd1e7 blocks=1 txs=0 mgas=0.000 elapsed=11.642ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:29.017] Imported new chain segment number=4883 hash=8433d7..85139b blocks=1 txs=0 mgas=0.000 elapsed=6.375ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:31.253] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:08:34.022] Imported new chain segment number=4884 hash=2bc2e6..d18c6d blocks=1 txs=0 mgas=0.000 elapsed=9.701ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:39.019] Imported new chain segment number=4885 hash=587d3a..a71865 blocks=1 txs=0 mgas=0.000 elapsed=9.187ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:41.275] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:08:44.024] Imported new chain segment number=4886 hash=652456..bec1b1 blocks=1 txs=0 mgas=0.000 elapsed=10.699ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:49.016] Imported new chain segment number=4887 hash=9e4c25..a26f5b blocks=1 txs=0 mgas=0.000 elapsed=6.269ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:51.297] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:08:54.013] Imported new chain segment number=4888 hash=7dbbd0..e5b84d blocks=1 txs=0 mgas=0.000 elapsed=5.370ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:08:59.015] Imported new chain segment number=4889 hash=6054b3..88f16a blocks=1 txs=0 mgas=0.000 elapsed=6.576ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:01.314] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:09:04.014] Imported new chain segment number=4890 hash=ac2caa..0ede57 blocks=1 txs=0 mgas=0.000 elapsed=6.084ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:09.017] Imported new chain segment number=4891 hash=236879..b062f3 blocks=1 txs=0 mgas=0.000 elapsed=8.932ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:11.334] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:09:14.017] Imported new chain segment number=4892 hash=069683..021da6 blocks=1 txs=0 mgas=0.000 elapsed=8.667ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:19.012] Imported new chain segment number=4893 hash=05cce2..7e7abf blocks=1 txs=0 mgas=0.000 elapsed=3.968ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:21.356] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:09:24.018] Imported new chain segment number=4894 hash=765930..f7ddeb blocks=1 txs=0 mgas=0.000 elapsed=9.220ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:29.020] Imported new chain segment number=4895 hash=54d82f..440c1f blocks=1 txs=0 mgas=0.000 elapsed=7.566ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:31.375] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:09:34.016] Imported new chain segment number=4896 hash=a2903a..4e6b5f blocks=1 txs=0 mgas=0.000 elapsed=7.498ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:39.016] Imported new chain segment number=4897 hash=38691e..c0584f blocks=1 txs=0 mgas=0.000 elapsed=6.832ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:41.396] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:09:44.019] Imported new chain segment number=4898 hash=76bc1d..bc7f01 blocks=1 txs=0 mgas=0.000 elapsed=9.809ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:49.015] Imported new chain segment number=4899 hash=0ff188..8db75f blocks=1 txs=0 mgas=0.000 elapsed=7.426ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:51.417] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:09:54.014] Imported new chain segment number=4900 hash=34fde9..b4d389 blocks=1 txs=0 mgas=0.000 elapsed=6.240ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:09:59.014] Imported new chain segment number=4901 hash=2a241a..9ed7ad blocks=1 txs=0 mgas=0.000 elapsed=5.059ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:01.441] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:10:04.017] Imported new chain segment number=4902 hash=20dc89..72ae04 blocks=1 txs=0 mgas=0.000 elapsed=6.487ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:09.020] Imported new chain segment number=4903 hash=c596bc..3a370c blocks=1 txs=0 mgas=0.000 elapsed=10.449ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:11.462] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:10:14.014] Imported new chain segment number=4904 hash=566926..c0a7cd blocks=1 txs=0 mgas=0.000 elapsed=5.415ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:19.014] Imported new chain segment number=4905 hash=4ec1ca..234310 blocks=1 txs=0 mgas=0.000 elapsed=5.439ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:21.483] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:10:24.013] Imported new chain segment number=4906 hash=9034b3..bcab32 blocks=1 txs=0 mgas=0.000 elapsed=5.919ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:29.016] Imported new chain segment number=4907 hash=da4369..cdd5b4 blocks=1 txs=0 mgas=0.000 elapsed=7.926ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:31.503] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:10:34.017] Imported new chain segment number=4908 hash=deb812..2482e7 blocks=1 txs=0 mgas=0.000 elapsed=8.636ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:39.015] Imported new chain segment number=4909 hash=57eeea..457ff2 blocks=1 txs=0 mgas=0.000 elapsed=6.710ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:41.524] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:10:44.014] Imported new chain segment number=4910 hash=ae6875..0054c3 blocks=1 txs=0 mgas=0.000 elapsed=6.571ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:49.017] Imported new chain segment number=4911 hash=597795..73273b blocks=1 txs=0 mgas=0.000 elapsed=7.370ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:51.544] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:10:54.014] Imported new chain segment number=4912 hash=b75b02..6a55cf blocks=1 txs=0 mgas=0.000 elapsed=4.966ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:10:59.015] Imported new chain segment number=4913 hash=18a211..dee43c blocks=1 txs=0 mgas=0.000 elapsed=7.264ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:01.564] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:11:04.015] Imported new chain segment number=4914 hash=70b6d6..61480c blocks=1 txs=0 mgas=0.000 elapsed=4.881ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:09.016] Imported new chain segment number=4915 hash=a3c238..d3f7a6 blocks=1 txs=0 mgas=0.000 elapsed=6.397ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:11.585] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:11:14.018] Imported new chain segment number=4916 hash=6b6d2a..4fdec7 blocks=1 txs=0 mgas=0.000 elapsed=8.092ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:19.016] Imported new chain segment number=4917 hash=9227b2..66bd72 blocks=1 txs=0 mgas=0.000 elapsed=5.879ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:21.604] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:11:24.022] Imported new chain segment number=4918 hash=d2cefd..7eab1c blocks=1 txs=0 mgas=0.000 elapsed=11.172ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:29.020] Imported new chain segment number=4919 hash=9a1907..d130bd blocks=1 txs=0 mgas=0.000 elapsed=8.392ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:31.626] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:11:34.016] Imported new chain segment number=4920 hash=389606..61e88c blocks=1 txs=0 mgas=0.000 elapsed=5.514ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:39.019] Imported new chain segment number=4921 hash=94a5b0..b91d22 blocks=1 txs=0 mgas=0.000 elapsed=5.935ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:41.648] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:11:44.020] Imported new chain segment number=4922 hash=9b5596..adf8b9 blocks=1 txs=0 mgas=0.000 elapsed=6.934ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:49.020] Imported new chain segment number=4923 hash=866979..dca8cf blocks=1 txs=0 mgas=0.000 elapsed=8.460ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:51.671] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:11:54.012] Imported new chain segment number=4924 hash=5b38a8..58f39d blocks=1 txs=0 mgas=0.000 elapsed=5.163ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:11:59.016] Imported new chain segment number=4925 hash=20d91b..3c8ba9 blocks=1 txs=0 mgas=0.000 elapsed=6.113ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:01.692] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:12:04.012] Imported new chain segment number=4926 hash=a726a3..61ca67 blocks=1 txs=0 mgas=0.000 elapsed=4.927ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:09.011] Imported new chain segment number=4927 hash=2d71bb..575ca7 blocks=1 txs=0 mgas=0.000 elapsed=5.511ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:11.712] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:12:14.019] Imported new chain segment number=4928 hash=2fa574..c3bb89 blocks=1 txs=0 mgas=0.000 elapsed=7.546ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:19.012] Imported new chain segment number=4929 hash=45ffea..7bc9ac blocks=1 txs=0 mgas=0.000 elapsed=5.684ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:21.733] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:12:24.019] Imported new chain segment number=4930 hash=0fb9b0..4dbb54 blocks=1 txs=0 mgas=0.000 elapsed=8.021ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:29.021] Imported new chain segment number=4931 hash=41c8dc..b2ea71 blocks=1 txs=0 mgas=0.000 elapsed=8.979ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:31.753] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:12:34.018] Imported new chain segment number=4932 hash=5a59bc..cc3338 blocks=1 txs=0 mgas=0.000 elapsed=7.684ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:39.022] Imported new chain segment number=4933 hash=1f76bc..1118e3 blocks=1 txs=0 mgas=0.000 elapsed=8.596ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:41.774] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:12:44.020] Imported new chain segment number=4934 hash=61521e..a6a297 blocks=1 txs=0 mgas=0.000 elapsed=8.784ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:49.018] Imported new chain segment number=4935 hash=739499..66cbc3 blocks=1 txs=0 mgas=0.000 elapsed=6.496ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:51.795] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:12:54.016] Imported new chain segment number=4936 hash=85facb..cbca91 blocks=1 txs=0 mgas=0.000 elapsed=6.722ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:12:59.018] Imported new chain segment number=4937 hash=cb6866..aae096 blocks=1 txs=0 mgas=0.000 elapsed=6.816ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:01.814] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:13:04.019] Imported new chain segment number=4938 hash=ae6ded..78ae88 blocks=1 txs=0 mgas=0.000 elapsed=7.497ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:09.016] Imported new chain segment number=4939 hash=7a4292..21c0bf blocks=1 txs=0 mgas=0.000 elapsed=4.958ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:11.831] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:13:14.016] Imported new chain segment number=4940 hash=d5facd..b9130f blocks=1 txs=0 mgas=0.000 elapsed=5.008ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:19.019] Imported new chain segment number=4941 hash=c524b4..0ebec6 blocks=1 txs=0 mgas=0.000 elapsed=7.676ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:21.850] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:13:24.018] Imported new chain segment number=4942 hash=8433c7..78b1d1 blocks=1 txs=0 mgas=0.000 elapsed=7.441ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:29.013] Imported new chain segment number=4943 hash=3928bf..201388 blocks=1 txs=0 mgas=0.000 elapsed=5.827ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:31.872] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:13:34.017] Imported new chain segment number=4944 hash=bdd70e..7a04de blocks=1 txs=0 mgas=0.000 elapsed=6.949ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:39.017] Imported new chain segment number=4945 hash=10c153..0a7c26 blocks=1 txs=0 mgas=0.000 elapsed=6.186ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:41.892] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:13:44.018] Imported new chain segment number=4946 hash=61abf9..d12cce blocks=1 txs=0 mgas=0.000 elapsed=7.754ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:49.014] Imported new chain segment number=4947 hash=2ee30c..fb2909 blocks=1 txs=0 mgas=0.000 elapsed=5.465ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:51.912] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:13:54.016] Imported new chain segment number=4948 hash=b1d5f9..0524b6 blocks=1 txs=0 mgas=0.000 elapsed=6.759ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:13:59.013] Imported new chain segment number=4949 hash=f486ee..b56a4b blocks=1 txs=0 mgas=0.000 elapsed=5.713ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:01.935] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:14:04.017] Imported new chain segment number=4950 hash=b58947..b88a11 blocks=1 txs=0 mgas=0.000 elapsed=6.481ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:09.013] Imported new chain segment number=4951 hash=8895e0..77eee2 blocks=1 txs=0 mgas=0.000 elapsed=7.162ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:11.956] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:14:14.017] Imported new chain segment number=4952 hash=1f6f78..a058f5 blocks=1 txs=0 mgas=0.000 elapsed=6.428ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:19.021] Imported new chain segment number=4953 hash=af627e..d6c1b7 blocks=1 txs=0 mgas=0.000 elapsed=8.899ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:21.976] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:14:24.018] Imported new chain segment number=4954 hash=c91939..24f018 blocks=1 txs=0 mgas=0.000 elapsed=7.717ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:29.019] Imported new chain segment number=4955 hash=c0cbdf..a4ac89 blocks=1 txs=0 mgas=0.000 elapsed=6.913ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:31.995] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:14:34.017] Imported new chain segment number=4956 hash=25a167..5c4249 blocks=1 txs=0 mgas=0.000 elapsed=5.919ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:39.012] Imported new chain segment number=4957 hash=93a93e..4afbc5 blocks=1 txs=0 mgas=0.000 elapsed=5.712ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:42.017] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:14:44.019] Imported new chain segment number=4958 hash=6a6762..2f5997 blocks=1 txs=0 mgas=0.000 elapsed=6.869ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:49.014] Imported new chain segment number=4959 hash=3a25c9..280330 blocks=1 txs=0 mgas=0.000 elapsed=5.887ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:52.037] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:14:54.018] Imported new chain segment number=4960 hash=6c0f1d..ef888f blocks=1 txs=0 mgas=0.000 elapsed=6.195ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:14:59.018] Imported new chain segment number=4961 hash=2cc5ee..baf525 blocks=1 txs=0 mgas=0.000 elapsed=6.205ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:02.061] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:15:04.013] Imported new chain segment number=4962 hash=e9e469..c8676e blocks=1 txs=0 mgas=0.000 elapsed=5.228ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:09.013] Imported new chain segment number=4963 hash=a9089e..a78cc7 blocks=1 txs=0 mgas=0.000 elapsed=6.659ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:12.080] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:15:14.011] Imported new chain segment number=4964 hash=25040e..ad2927 blocks=1 txs=0 mgas=0.000 elapsed=4.782ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:19.019] Imported new chain segment number=4965 hash=468cc7..d57e07 blocks=1 txs=0 mgas=0.000 elapsed=8.444ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:22.103] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:15:24.017] Imported new chain segment number=4966 hash=aa5804..4f543f blocks=1 txs=0 mgas=0.000 elapsed=6.613ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:29.020] Imported new chain segment number=4967 hash=3e950f..7140fa blocks=1 txs=0 mgas=0.000 elapsed=7.987ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:32.127] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:15:34.012] Imported new chain segment number=4968 hash=4e8d85..b55bce blocks=1 txs=0 mgas=0.000 elapsed=5.477ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:39.014] Imported new chain segment number=4969 hash=55e9d1..3dc689 blocks=1 txs=0 mgas=0.000 elapsed=5.622ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:42.149] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:15:44.014] Imported new chain segment number=4970 hash=b3c4e6..5c72c4 blocks=1 txs=0 mgas=0.000 elapsed=4.966ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:49.019] Imported new chain segment number=4971 hash=b16878..b6c112 blocks=1 txs=0 mgas=0.000 elapsed=6.620ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:52.172] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:15:54.011] Imported new chain segment number=4972 hash=e83845..afef16 blocks=1 txs=0 mgas=0.000 elapsed=5.208ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:15:59.021] Imported new chain segment number=4973 hash=4799c8..4edd15 blocks=1 txs=0 mgas=0.000 elapsed=9.080ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:02.193] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:16:04.015] Imported new chain segment number=4974 hash=707f64..2311d6 blocks=1 txs=0 mgas=0.000 elapsed=6.643ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:09.011] Imported new chain segment number=4975 hash=fb0161..74a681 blocks=1 txs=0 mgas=0.000 elapsed=5.214ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:12.214] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:16:14.017] Imported new chain segment number=4976 hash=03268f..c19b24 blocks=1 txs=0 mgas=0.000 elapsed=6.025ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:19.018] Imported new chain segment number=4977 hash=00ef09..650006 blocks=1 txs=0 mgas=0.000 elapsed=6.921ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:22.236] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:16:24.018] Imported new chain segment number=4978 hash=f64b59..70e3e4 blocks=1 txs=0 mgas=0.000 elapsed=7.204ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:29.016] Imported new chain segment number=4979 hash=c6d657..a05c22 blocks=1 txs=0 mgas=0.000 elapsed=5.502ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:32.256] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:16:34.018] Imported new chain segment number=4980 hash=587206..8c28a4 blocks=1 txs=0 mgas=0.000 elapsed=6.415ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:39.017] Imported new chain segment number=4981 hash=ce4883..991d49 blocks=1 txs=0 mgas=0.000 elapsed=6.677ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:42.276] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:16:44.019] Imported new chain segment number=4982 hash=850bfc..92a3e5 blocks=1 txs=0 mgas=0.000 elapsed=6.368ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:49.012] Imported new chain segment number=4983 hash=62987b..c4372d blocks=1 txs=0 mgas=0.000 elapsed=6.261ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:52.296] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:16:54.023] Imported new chain segment number=4984 hash=5e74d6..96b25e blocks=1 txs=0 mgas=0.000 elapsed=11.752ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:16:59.014] Imported new chain segment number=4985 hash=5297d4..3630a1 blocks=1 txs=0 mgas=0.000 elapsed=6.651ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:02.317] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:17:04.019] Imported new chain segment number=4986 hash=603a69..e8ad54 blocks=1 txs=0 mgas=0.000 elapsed=7.415ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:09.015] Imported new chain segment number=4987 hash=69d24c..a4bf18 blocks=1 txs=0 mgas=0.000 elapsed=4.025ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:12.338] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:17:14.010] Imported new chain segment number=4988 hash=2c9bab..5704eb blocks=1 txs=0 mgas=0.000 elapsed=4.415ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:19.017] Imported new chain segment number=4989 hash=840935..92abae blocks=1 txs=0 mgas=0.000 elapsed=6.512ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:22.357] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:17:24.012] Imported new chain segment number=4990 hash=50b859..243c22 blocks=1 txs=0 mgas=0.000 elapsed=5.661ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:29.016] Imported new chain segment number=4991 hash=5e9fae..dfc355 blocks=1 txs=0 mgas=0.000 elapsed=7.692ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:32.375] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:17:34.014] Imported new chain segment number=4992 hash=29007f..94992f blocks=1 txs=0 mgas=0.000 elapsed=6.174ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:39.015] Imported new chain segment number=4993 hash=53dbe3..cd52c5 blocks=1 txs=0 mgas=0.000 elapsed=5.291ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:42.394] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:17:44.019] Imported new chain segment number=4994 hash=adfe76..16965a blocks=1 txs=0 mgas=0.000 elapsed=6.225ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:49.018] Imported new chain segment number=4995 hash=e0235c..1fb5d9 blocks=1 txs=0 mgas=0.000 elapsed=5.715ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:52.414] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:17:54.018] Imported new chain segment number=4996 hash=5c02f4..2150bf blocks=1 txs=0 mgas=0.000 elapsed=6.151ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:17:59.016] Imported new chain segment number=4997 hash=40fccf..bcb53c blocks=1 txs=0 mgas=0.000 elapsed=5.242ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:02.437] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:18:04.037] Imported new chain segment number=4998 hash=b93b68..775ddb blocks=1 txs=0 mgas=0.000 elapsed=12.222ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:09.015] Imported new chain segment number=4999 hash=676c5a..8a024f blocks=1 txs=0 mgas=0.000 elapsed=4.189ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:12.457] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:18:14.012] Imported new chain segment number=5000 hash=cd44dd..26fd36 blocks=1 txs=0 mgas=0.000 elapsed=5.703ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:19.015] Imported new chain segment number=5001 hash=dab403..6faf83 blocks=1 txs=0 mgas=0.000 elapsed=6.222ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:22.477] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:18:24.022] Imported new chain segment number=5002 hash=19d269..4dcb5b blocks=1 txs=0 mgas=0.000 elapsed=8.440ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:29.017] Imported new chain segment number=5003 hash=0644bd..7fb37a blocks=1 txs=0 mgas=0.000 elapsed=6.443ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:32.496] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:18:34.015] Imported new chain segment number=5004 hash=89a180..089195 blocks=1 txs=0 mgas=0.000 elapsed=8.140ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:39.014] Imported new chain segment number=5005 hash=bdb46b..77bd10 blocks=1 txs=0 mgas=0.000 elapsed=5.919ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:42.513] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:18:44.024] Imported new chain segment number=5006 hash=a0d286..8bc586 blocks=1 txs=0 mgas=0.000 elapsed=10.326ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:49.034] Imported new chain segment number=5007 hash=f8cac7..fa3ea0 blocks=1 txs=0 mgas=0.000 elapsed=19.835ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:52.530] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:18:54.033] Imported new chain segment number=5008 hash=2ddb5a..8ad576 blocks=1 txs=0 mgas=0.000 elapsed=9.740ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:18:59.042] Imported new chain segment number=5009 hash=265136..565829 blocks=1 txs=0 mgas=0.000 elapsed=21.938ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:02.549] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:19:04.021] Imported new chain segment number=5010 hash=20a56d..c1e270 blocks=1 txs=0 mgas=0.000 elapsed=8.936ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:09.067] Imported new chain segment number=5011 hash=a74bbd..84018f blocks=1 txs=0 mgas=0.000 elapsed=39.068ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:12.569] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:19:14.049] Imported new chain segment number=5012 hash=d7316c..f6ab2f blocks=1 txs=0 mgas=0.000 elapsed=24.189ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:19.039] Imported new chain segment number=5013 hash=71ea2a..6f5e44 blocks=1 txs=0 mgas=0.000 elapsed=20.010ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:22.590] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:19:24.041] Imported new chain segment number=5014 hash=ab7b90..eb02e1 blocks=1 txs=0 mgas=0.000 elapsed=12.524ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:29.059] Imported new chain segment number=5015 hash=462880..8b9d4e blocks=1 txs=0 mgas=0.000 elapsed=31.806ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:32.613] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:19:34.025] Imported new chain segment number=5016 hash=182c98..855327 blocks=1 txs=0 mgas=0.000 elapsed=12.365ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:39.062] Imported new chain segment number=5017 hash=d49ee0..024bf5 blocks=1 txs=0 mgas=0.000 elapsed=31.272ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:42.633] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:19:44.024] Imported new chain segment number=5018 hash=3081ee..3be267 blocks=1 txs=0 mgas=0.000 elapsed=16.828ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:49.079] Imported new chain segment number=5019 hash=a78c5a..355beb blocks=1 txs=0 mgas=0.000 elapsed=52.679ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:52.654] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:19:54.023] Imported new chain segment number=5020 hash=c71396..04dbbf blocks=1 txs=0 mgas=0.000 elapsed=11.040ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:19:59.024] Imported new chain segment number=5021 hash=d772af..0e8404 blocks=1 txs=0 mgas=0.000 elapsed=11.331ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:02.672] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:20:04.018] Imported new chain segment number=5022 hash=4e127c..33e3d9 blocks=1 txs=0 mgas=0.000 elapsed=6.196ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:09.019] Imported new chain segment number=5023 hash=d781d7..87dc47 blocks=1 txs=0 mgas=0.000 elapsed=7.502ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:12.693] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:20:14.016] Imported new chain segment number=5024 hash=6ee38a..2f1ac2 blocks=1 txs=0 mgas=0.000 elapsed=4.388ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:19.016] Imported new chain segment number=5025 hash=8ffb85..db199d blocks=1 txs=0 mgas=0.000 elapsed=6.375ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:22.716] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:20:24.018] Imported new chain segment number=5026 hash=773684..77a0db blocks=1 txs=0 mgas=0.000 elapsed=5.589ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:29.017] Imported new chain segment number=5027 hash=bb2a1d..e70565 blocks=1 txs=0 mgas=0.000 elapsed=7.460ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:32.736] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:20:34.017] Imported new chain segment number=5028 hash=86671f..30bb3c blocks=1 txs=0 mgas=0.000 elapsed=7.651ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:39.015] Imported new chain segment number=5029 hash=2553a6..048c87 blocks=1 txs=0 mgas=0.000 elapsed=6.225ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:42.758] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:20:44.022] Imported new chain segment number=5030 hash=4965b2..7c2179 blocks=1 txs=0 mgas=0.000 elapsed=7.674ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:49.012] Imported new chain segment number=5031 hash=ddb411..2ae071 blocks=1 txs=0 mgas=0.000 elapsed=5.882ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:52.781] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:20:54.017] Imported new chain segment number=5032 hash=673e45..5c344e blocks=1 txs=0 mgas=0.000 elapsed=6.606ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:20:59.017] Imported new chain segment number=5033 hash=021e65..915291 blocks=1 txs=0 mgas=0.000 elapsed=5.722ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:02.802] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:21:04.020] Imported new chain segment number=5034 hash=92329a..8d362d blocks=1 txs=0 mgas=0.000 elapsed=6.438ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:09.012] Imported new chain segment number=5035 hash=c6eb07..9f3193 blocks=1 txs=0 mgas=0.000 elapsed=5.695ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:12.824] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:21:14.012] Imported new chain segment number=5036 hash=fe2785..26b405 blocks=1 txs=0 mgas=0.000 elapsed=5.110ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:19.015] Imported new chain segment number=5037 hash=901530..f9d1ab blocks=1 txs=0 mgas=0.000 elapsed=4.467ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:22.844] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:21:24.016] Imported new chain segment number=5038 hash=fbda55..9b7746 blocks=1 txs=0 mgas=0.000 elapsed=4.648ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:29.014] Imported new chain segment number=5039 hash=adea9c..456ae1 blocks=1 txs=0 mgas=0.000 elapsed=5.832ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:32.866] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:21:34.018] Imported new chain segment number=5040 hash=629953..b2a5da blocks=1 txs=0 mgas=0.000 elapsed=7.429ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:39.017] Imported new chain segment number=5041 hash=7aa5d3..e6e973 blocks=1 txs=0 mgas=0.000 elapsed=6.107ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:42.886] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:21:44.020] Imported new chain segment number=5042 hash=04d405..7dafb3 blocks=1 txs=0 mgas=0.000 elapsed=7.461ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:49.018] Imported new chain segment number=5043 hash=b13cff..fea6ae blocks=1 txs=0 mgas=0.000 elapsed=7.103ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:52.905] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:21:54.018] Imported new chain segment number=5044 hash=ec2bc0..29ceea blocks=1 txs=0 mgas=0.000 elapsed=8.362ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:21:59.016] Imported new chain segment number=5045 hash=03aabe..b88696 blocks=1 txs=0 mgas=0.000 elapsed=5.940ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:02.926] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:22:04.017] Imported new chain segment number=5046 hash=034714..70f93f blocks=1 txs=0 mgas=0.000 elapsed=6.010ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:09.016] Imported new chain segment number=5047 hash=8bba72..643be7 blocks=1 txs=0 mgas=0.000 elapsed=5.815ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:12.949] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:22:14.018] Imported new chain segment number=5048 hash=803496..c45375 blocks=1 txs=0 mgas=0.000 elapsed=6.729ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:19.020] Imported new chain segment number=5049 hash=8ce777..001f59 blocks=1 txs=0 mgas=0.000 elapsed=6.662ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:22.972] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:22:24.017] Imported new chain segment number=5050 hash=0021e7..c1931c blocks=1 txs=0 mgas=0.000 elapsed=6.140ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:29.019] Imported new chain segment number=5051 hash=c27753..ca8881 blocks=1 txs=0 mgas=0.000 elapsed=5.953ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:32.995] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:22:34.019] Imported new chain segment number=5052 hash=8de476..951494 blocks=1 txs=0 mgas=0.000 elapsed=8.577ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:39.020] Imported new chain segment number=5053 hash=977df0..8deb4a blocks=1 txs=0 mgas=0.000 elapsed=7.613ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:43.015] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:22:44.020] Imported new chain segment number=5054 hash=57e6d5..a1814d blocks=1 txs=0 mgas=0.000 elapsed=8.396ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:49.021] Imported new chain segment number=5055 hash=92ee00..428d31 blocks=1 txs=0 mgas=0.000 elapsed=7.821ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:53.035] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:22:54.019] Imported new chain segment number=5056 hash=b35f36..fa59f1 blocks=1 txs=0 mgas=0.000 elapsed=6.943ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:22:59.022] Imported new chain segment number=5057 hash=a9e1db..c6e5c0 blocks=1 txs=0 mgas=0.000 elapsed=8.124ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:03.054] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:23:04.018] Imported new chain segment number=5058 hash=aad9e3..5110c6 blocks=1 txs=0 mgas=0.000 elapsed=6.512ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:09.017] Imported new chain segment number=5059 hash=7ff854..c849f2 blocks=1 txs=0 mgas=0.000 elapsed=6.097ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:13.075] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:23:14.013] Imported new chain segment number=5060 hash=5764c7..b66f8f blocks=1 txs=0 mgas=0.000 elapsed=4.762ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:19.018] Imported new chain segment number=5061 hash=2a205f..0149bb blocks=1 txs=0 mgas=0.000 elapsed=6.412ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:23.095] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:23:24.019] Imported new chain segment number=5062 hash=beb618..8030d5 blocks=1 txs=0 mgas=0.000 elapsed=7.361ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:29.014] Imported new chain segment number=5063 hash=2ba31b..61e8ff blocks=1 txs=0 mgas=0.000 elapsed=6.417ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:33.115] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:23:34.013] Imported new chain segment number=5064 hash=8b4b1e..84174c blocks=1 txs=0 mgas=0.000 elapsed=5.242ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:39.014] Imported new chain segment number=5065 hash=8d4735..5c0489 blocks=1 txs=0 mgas=0.000 elapsed=4.767ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:43.137] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:23:44.022] Imported new chain segment number=5066 hash=ded283..739cff blocks=1 txs=0 mgas=0.000 elapsed=8.863ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:49.018] Imported new chain segment number=5067 hash=7eca0f..773bfd blocks=1 txs=0 mgas=0.000 elapsed=6.563ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:53.156] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:23:54.016] Imported new chain segment number=5068 hash=44e342..3a3280 blocks=1 txs=0 mgas=0.000 elapsed=7.200ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:23:59.018] Imported new chain segment number=5069 hash=fb358a..8c6d64 blocks=1 txs=0 mgas=0.000 elapsed=7.305ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:03.175] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:24:04.017] Imported new chain segment number=5070 hash=1dd787..8632e1 blocks=1 txs=0 mgas=0.000 elapsed=6.835ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:09.012] Imported new chain segment number=5071 hash=68f9e7..775a67 blocks=1 txs=0 mgas=0.000 elapsed=5.637ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:13.197] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:24:14.017] Imported new chain segment number=5072 hash=15315c..eded0d blocks=1 txs=0 mgas=0.000 elapsed=6.148ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:19.022] Imported new chain segment number=5073 hash=7b8041..dbd0a7 blocks=1 txs=0 mgas=0.000 elapsed=6.399ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:23.220] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:24:24.015] Imported new chain segment number=5074 hash=a395f1..b5cf7f blocks=1 txs=0 mgas=0.000 elapsed=6.385ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:29.045] Imported new chain segment number=5075 hash=fd6283..8963c7 blocks=1 txs=0 mgas=0.000 elapsed=7.430ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:33.242] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:24:34.042] Imported new chain segment number=5076 hash=2a3666..14215f blocks=1 txs=0 mgas=0.000 elapsed=7.179ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:39.015] Imported new chain segment number=5077 hash=d56990..c05fb8 blocks=1 txs=0 mgas=0.000 elapsed=5.899ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:43.265] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:24:44.018] Imported new chain segment number=5078 hash=f16cbc..b51d1e blocks=1 txs=0 mgas=0.000 elapsed=6.657ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:49.017] Imported new chain segment number=5079 hash=00f4a2..259a6a blocks=1 txs=0 mgas=0.000 elapsed=7.309ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:53.286] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:24:54.015] Imported new chain segment number=5080 hash=a9715d..4b2492 blocks=1 txs=0 mgas=0.000 elapsed=6.359ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:24:59.013] Imported new chain segment number=5081 hash=e2e7a0..2fd53f blocks=1 txs=0 mgas=0.000 elapsed=6.422ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:03.306] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:25:04.020] Imported new chain segment number=5082 hash=1d9333..e91f97 blocks=1 txs=0 mgas=0.000 elapsed=7.836ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:09.019] Imported new chain segment number=5083 hash=a47eeb..fd9828 blocks=1 txs=0 mgas=0.000 elapsed=6.727ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:13.328] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:25:14.018] Imported new chain segment number=5084 hash=0ffe10..1177a8 blocks=1 txs=0 mgas=0.000 elapsed=5.724ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:19.015] Imported new chain segment number=5085 hash=529ca2..189aff blocks=1 txs=0 mgas=0.000 elapsed=5.730ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:23.348] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:25:24.015] Imported new chain segment number=5086 hash=12b595..3de3f5 blocks=1 txs=0 mgas=0.000 elapsed=6.905ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:29.019] Imported new chain segment number=5087 hash=dda034..101399 blocks=1 txs=0 mgas=0.000 elapsed=7.096ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:33.371] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:25:34.012] Imported new chain segment number=5088 hash=7b42e6..e84cb3 blocks=1 txs=0 mgas=0.000 elapsed=4.975ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:39.020] Imported new chain segment number=5089 hash=a6ae22..5d4649 blocks=1 txs=0 mgas=0.000 elapsed=8.712ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:43.389] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:25:44.013] Imported new chain segment number=5090 hash=c88211..b96f04 blocks=1 txs=0 mgas=0.000 elapsed=4.366ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:49.012] Imported new chain segment number=5091 hash=988e09..cea533 blocks=1 txs=0 mgas=0.000 elapsed=5.143ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:53.411] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:25:54.040] Imported new chain segment number=5092 hash=68bda0..9ced63 blocks=1 txs=0 mgas=0.000 elapsed=8.456ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:25:59.018] Imported new chain segment number=5093 hash=fb2539..9b4a26 blocks=1 txs=0 mgas=0.000 elapsed=7.002ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:03.435] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:26:04.014] Imported new chain segment number=5094 hash=dda3e7..ca26dc blocks=1 txs=0 mgas=0.000 elapsed=5.243ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:09.016] Imported new chain segment number=5095 hash=4965bd..4d87f8 blocks=1 txs=0 mgas=0.000 elapsed=5.519ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:13.456] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:26:14.021] Imported new chain segment number=5096 hash=0e54d5..d6c04e blocks=1 txs=0 mgas=0.000 elapsed=7.968ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:19.012] Imported new chain segment number=5097 hash=a9a9f8..1a91da blocks=1 txs=0 mgas=0.000 elapsed=5.293ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:23.476] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:26:24.013] Imported new chain segment number=5098 hash=a1fa38..9b867d blocks=1 txs=0 mgas=0.000 elapsed=6.231ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:29.012] Imported new chain segment number=5099 hash=79130e..153481 blocks=1 txs=0 mgas=0.000 elapsed=5.597ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:33.499] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:26:34.015] Imported new chain segment number=5100 hash=48c9c7..81dd81 blocks=1 txs=0 mgas=0.000 elapsed=4.980ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:39.020] Imported new chain segment number=5101 hash=288100..4a2c69 blocks=1 txs=0 mgas=0.000 elapsed=8.501ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:43.520] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:26:44.019] Imported new chain segment number=5102 hash=86cc51..54569c blocks=1 txs=0 mgas=0.000 elapsed=6.674ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:49.020] Imported new chain segment number=5103 hash=db7d52..e1398e blocks=1 txs=0 mgas=0.000 elapsed=8.659ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:53.542] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:26:54.012] Imported new chain segment number=5104 hash=0e67b8..76a334 blocks=1 txs=0 mgas=0.000 elapsed=5.748ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:26:59.020] Imported new chain segment number=5105 hash=1b131c..5134a6 blocks=1 txs=0 mgas=0.000 elapsed=8.562ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:03.562] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:27:04.013] Imported new chain segment number=5106 hash=9987b7..cfede5 blocks=1 txs=0 mgas=0.000 elapsed=5.728ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:09.017] Imported new chain segment number=5107 hash=e27c1d..0a8e5b blocks=1 txs=0 mgas=0.000 elapsed=5.778ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:13.584] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:27:14.019] Imported new chain segment number=5108 hash=33f8ec..b4d827 blocks=1 txs=0 mgas=0.000 elapsed=8.109ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:19.018] Imported new chain segment number=5109 hash=724706..b86384 blocks=1 txs=0 mgas=0.000 elapsed=7.702ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:23.606] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:27:24.019] Imported new chain segment number=5110 hash=927d8a..e5836c blocks=1 txs=0 mgas=0.000 elapsed=6.998ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:29.021] Imported new chain segment number=5111 hash=b53f81..1beeb7 blocks=1 txs=0 mgas=0.000 elapsed=8.412ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:33.628] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:27:34.017] Imported new chain segment number=5112 hash=1ba60d..5002bb blocks=1 txs=0 mgas=0.000 elapsed=6.062ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:39.017] Imported new chain segment number=5113 hash=a22bfb..cb693f blocks=1 txs=0 mgas=0.000 elapsed=6.136ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:43.648] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:27:44.018] Imported new chain segment number=5114 hash=6aaa9a..0550f2 blocks=1 txs=0 mgas=0.000 elapsed=7.177ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:49.017] Imported new chain segment number=5115 hash=91da91..74b480 blocks=1 txs=0 mgas=0.000 elapsed=6.348ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:53.668] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:27:54.011] Imported new chain segment number=5116 hash=0443bc..bc876a blocks=1 txs=0 mgas=0.000 elapsed=4.669ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:27:59.020] Imported new chain segment number=5117 hash=8ce490..ea9e60 blocks=1 txs=0 mgas=0.000 elapsed=7.000ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:03.689] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:28:04.018] Imported new chain segment number=5118 hash=268e17..bec527 blocks=1 txs=0 mgas=0.000 elapsed=6.874ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:09.019] Imported new chain segment number=5119 hash=fda98a..7c6f93 blocks=1 txs=0 mgas=0.000 elapsed=7.591ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:13.709] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:28:14.017] Imported new chain segment number=5120 hash=6d984c..5873ed blocks=1 txs=0 mgas=0.000 elapsed=7.952ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:19.015] Imported new chain segment number=5121 hash=41e130..f494e4 blocks=1 txs=0 mgas=0.000 elapsed=5.734ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:23.729] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:28:24.015] Imported new chain segment number=5122 hash=fb9d49..0348ab blocks=1 txs=0 mgas=0.000 elapsed=4.152ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:29.015] Imported new chain segment number=5123 hash=e62b2f..4a2347 blocks=1 txs=0 mgas=0.000 elapsed=6.537ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:33.749] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:28:34.014] Imported new chain segment number=5124 hash=fcd48e..e11b8d blocks=1 txs=0 mgas=0.000 elapsed=5.098ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:39.012] Imported new chain segment number=5125 hash=354969..242ebb blocks=1 txs=0 mgas=0.000 elapsed=5.502ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:43.771] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:28:44.018] Imported new chain segment number=5126 hash=d66765..ea677b blocks=1 txs=0 mgas=0.000 elapsed=6.945ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:49.021] Imported new chain segment number=5127 hash=6b0682..a5f18a blocks=1 txs=0 mgas=0.000 elapsed=8.978ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:53.791] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:28:54.012] Imported new chain segment number=5128 hash=d97c85..93e70a blocks=1 txs=0 mgas=0.000 elapsed=5.758ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:28:59.019] Imported new chain segment number=5129 hash=28a599..197f90 blocks=1 txs=0 mgas=0.000 elapsed=7.974ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:03.815] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:29:04.017] Imported new chain segment number=5130 hash=cd8e56..df6b85 blocks=1 txs=0 mgas=0.000 elapsed=5.588ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:09.018] Imported new chain segment number=5131 hash=f71741..1110b1 blocks=1 txs=0 mgas=0.000 elapsed=7.206ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:13.835] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:29:14.014] Imported new chain segment number=5132 hash=ec3492..55ceec blocks=1 txs=0 mgas=0.000 elapsed=5.178ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:19.016] Imported new chain segment number=5133 hash=230fc9..c79c8f blocks=1 txs=0 mgas=0.000 elapsed=5.703ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:23.856] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:29:24.016] Imported new chain segment number=5134 hash=f6c495..9cc871 blocks=1 txs=0 mgas=0.000 elapsed=6.831ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:29.010] Imported new chain segment number=5135 hash=75d72b..9c089a blocks=1 txs=0 mgas=0.000 elapsed=5.164ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:33.879] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:29:34.014] Imported new chain segment number=5136 hash=f7f78a..f8a0b1 blocks=1 txs=0 mgas=0.000 elapsed=6.279ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:39.017] Imported new chain segment number=5137 hash=6d26ce..0fb164 blocks=1 txs=0 mgas=0.000 elapsed=6.873ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:43.899] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:29:44.019] Imported new chain segment number=5138 hash=1cb1e4..f3ea1e blocks=1 txs=0 mgas=0.000 elapsed=7.271ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:49.018] Imported new chain segment number=5139 hash=5f5e16..991acc blocks=1 txs=0 mgas=0.000 elapsed=8.166ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:53.920] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:29:54.018] Imported new chain segment number=5140 hash=73c955..356ed3 blocks=1 txs=0 mgas=0.000 elapsed=6.046ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:29:59.017] Imported new chain segment number=5141 hash=3542e4..f446d4 blocks=1 txs=0 mgas=0.000 elapsed=5.752ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:03.940] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:30:04.018] Imported new chain segment number=5142 hash=73e632..5cbc11 blocks=1 txs=0 mgas=0.000 elapsed=4.865ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:09.019] Imported new chain segment number=5143 hash=359515..fc1771 blocks=1 txs=0 mgas=0.000 elapsed=6.751ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:13.964] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:30:14.019] Imported new chain segment number=5144 hash=4a1bd1..c0d1d1 blocks=1 txs=0 mgas=0.000 elapsed=6.931ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:19.015] Imported new chain segment number=5145 hash=e22d02..a0a923 blocks=1 txs=0 mgas=0.000 elapsed=7.995ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:23.984] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:30:24.014] Imported new chain segment number=5146 hash=c531de..268132 blocks=1 txs=0 mgas=0.000 elapsed=7.076ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:29.016] Imported new chain segment number=5147 hash=3c4cbb..311777 blocks=1 txs=0 mgas=0.000 elapsed=8.327ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:34.000] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:30:34.016] Imported new chain segment number=5148 hash=74f1b5..3a5cc9 blocks=1 txs=0 mgas=0.000 elapsed=6.372ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:39.016] Imported new chain segment number=5149 hash=932509..3691f3 blocks=1 txs=0 mgas=0.000 elapsed=6.716ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:44.016] Imported new chain segment number=5150 hash=fbb70a..6ba8d4 blocks=1 txs=0 mgas=0.000 elapsed=6.351ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:44.019] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:30:49.029] Imported new chain segment number=5151 hash=f049a3..60f0e3 blocks=1 txs=0 mgas=0.000 elapsed=14.101ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:54.016] Imported new chain segment number=5152 hash=3c571d..80c07b blocks=1 txs=0 mgas=0.000 elapsed=6.228ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:30:54.040] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:30:59.019] Imported new chain segment number=5153 hash=453338..4e15b8 blocks=1 txs=0 mgas=0.000 elapsed=7.011ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:04.015] Imported new chain segment number=5154 hash=975673..5e4402 blocks=1 txs=0 mgas=0.000 elapsed=6.404ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:04.061] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:31:09.015] Imported new chain segment number=5155 hash=d394d7..a29b9d blocks=1 txs=0 mgas=0.000 elapsed=6.395ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:14.012] Imported new chain segment number=5156 hash=9680f3..3562ab blocks=1 txs=0 mgas=0.000 elapsed=6.497ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:14.079] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:31:19.019] Imported new chain segment number=5157 hash=3bc5dc..161671 blocks=1 txs=0 mgas=0.000 elapsed=6.468ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:24.016] Imported new chain segment number=5158 hash=83c3db..346498 blocks=1 txs=0 mgas=0.000 elapsed=5.540ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:24.099] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:31:29.018] Imported new chain segment number=5159 hash=6f3e6c..ce535a blocks=1 txs=0 mgas=0.000 elapsed=6.761ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:34.018] Imported new chain segment number=5160 hash=30c3b7..0efa49 blocks=1 txs=0 mgas=0.000 elapsed=6.293ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:34.121] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:31:39.026] Imported new chain segment number=5161 hash=b4fe3c..727687 blocks=1 txs=0 mgas=0.000 elapsed=9.539ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:44.016] Imported new chain segment number=5162 hash=4d10e9..50b4c1 blocks=1 txs=0 mgas=0.000 elapsed=6.156ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:44.140] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:31:49.017] Imported new chain segment number=5163 hash=c9c7c7..827b76 blocks=1 txs=0 mgas=0.000 elapsed=5.015ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:54.014] Imported new chain segment number=5164 hash=63931d..d3b2dc blocks=1 txs=0 mgas=0.000 elapsed=5.345ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:31:54.161] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:31:59.018] Imported new chain segment number=5165 hash=b05c0b..d08ed4 blocks=1 txs=0 mgas=0.000 elapsed=6.266ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:04.016] Imported new chain segment number=5166 hash=5ff948..17b02e blocks=1 txs=0 mgas=0.000 elapsed=8.013ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:04.176] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:32:09.014] Imported new chain segment number=5167 hash=ddb760..32790f blocks=1 txs=0 mgas=0.000 elapsed=6.296ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:14.014] Imported new chain segment number=5168 hash=0613ce..43b550 blocks=1 txs=0 mgas=0.000 elapsed=5.203ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:14.198] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:32:19.019] Imported new chain segment number=5169 hash=3223cc..ee9847 blocks=1 txs=0 mgas=0.000 elapsed=7.706ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:24.016] Imported new chain segment number=5170 hash=1d2433..33f1c0 blocks=1 txs=0 mgas=0.000 elapsed=6.246ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:24.219] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:32:29.016] Imported new chain segment number=5171 hash=62a3e7..b1fe04 blocks=1 txs=0 mgas=0.000 elapsed=6.099ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:34.016] Imported new chain segment number=5172 hash=2db5e5..cb4033 blocks=1 txs=0 mgas=0.000 elapsed=5.731ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:34.241] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:32:39.019] Imported new chain segment number=5173 hash=302907..92bbea blocks=1 txs=0 mgas=0.000 elapsed=7.702ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:44.020] Imported new chain segment number=5174 hash=85fa67..e4b1b0 blocks=1 txs=0 mgas=0.000 elapsed=9.674ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:44.264] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:32:49.017] Imported new chain segment number=5175 hash=7e6505..14aa1e blocks=1 txs=0 mgas=0.000 elapsed=5.302ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:54.012] Imported new chain segment number=5176 hash=66d629..dd789f blocks=1 txs=0 mgas=0.000 elapsed=5.613ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:32:54.287] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:32:59.019] Imported new chain segment number=5177 hash=8a0f7e..d9fe4b blocks=1 txs=0 mgas=0.000 elapsed=7.471ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:04.018] Imported new chain segment number=5178 hash=1bb18c..004bc1 blocks=1 txs=0 mgas=0.000 elapsed=8.938ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:04.309] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:33:09.016] Imported new chain segment number=5179 hash=7a54ae..5dbd4b blocks=1 txs=0 mgas=0.000 elapsed=6.325ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:14.014] Imported new chain segment number=5180 hash=f09641..1a96df blocks=1 txs=0 mgas=0.000 elapsed=7.194ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:14.330] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:33:19.019] Imported new chain segment number=5181 hash=a54816..0d520a blocks=1 txs=0 mgas=0.000 elapsed=6.673ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:24.015] Imported new chain segment number=5182 hash=006b9b..d9d54d blocks=1 txs=0 mgas=0.000 elapsed=5.938ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:24.351] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:33:29.012] Imported new chain segment number=5183 hash=7709b9..a067f6 blocks=1 txs=0 mgas=0.000 elapsed=6.935ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:34.012] Imported new chain segment number=5184 hash=f1a439..340718 blocks=1 txs=0 mgas=0.000 elapsed=5.440ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:34.371] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:33:39.018] Imported new chain segment number=5185 hash=0218b4..a1c703 blocks=1 txs=0 mgas=0.000 elapsed=7.326ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:44.016] Imported new chain segment number=5186 hash=f729ab..1d8068 blocks=1 txs=0 mgas=0.000 elapsed=6.537ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:44.390] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:33:49.016] Imported new chain segment number=5187 hash=e5c142..981952 blocks=1 txs=0 mgas=0.000 elapsed=5.678ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:54.011] Imported new chain segment number=5188 hash=441141..df6eef blocks=1 txs=0 mgas=0.000 elapsed=5.135ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:33:54.412] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:33:59.012] Imported new chain segment number=5189 hash=c89ad5..ed0833 blocks=1 txs=0 mgas=0.000 elapsed=5.720ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:04.016] Imported new chain segment number=5190 hash=cae450..a35ac0 blocks=1 txs=0 mgas=0.000 elapsed=6.172ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:04.433] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:34:09.015] Imported new chain segment number=5191 hash=9b2327..86f93b blocks=1 txs=0 mgas=0.000 elapsed=6.471ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:14.013] Imported new chain segment number=5192 hash=49d676..9dd5ed blocks=1 txs=0 mgas=0.000 elapsed=5.096ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:14.453] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:34:19.018] Imported new chain segment number=5193 hash=606852..c07925 blocks=1 txs=0 mgas=0.000 elapsed=7.527ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:24.019] Imported new chain segment number=5194 hash=b02f5c..123012 blocks=1 txs=0 mgas=0.000 elapsed=8.151ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:24.475] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:34:29.011] Imported new chain segment number=5195 hash=a2c6e0..b914af blocks=1 txs=0 mgas=0.000 elapsed=5.424ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:34.021] Imported new chain segment number=5196 hash=7ca4af..454296 blocks=1 txs=0 mgas=0.000 elapsed=8.657ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:34.496] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:34:39.015] Imported new chain segment number=5197 hash=f3e890..7c4cf0 blocks=1 txs=0 mgas=0.000 elapsed=5.961ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:44.014] Imported new chain segment number=5198 hash=5c25a2..f8d50f blocks=1 txs=0 mgas=0.000 elapsed=5.540ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:44.515] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:34:49.016] Imported new chain segment number=5199 hash=cb291d..55a5aa blocks=1 txs=0 mgas=0.000 elapsed=6.419ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:54.016] Imported new chain segment number=5200 hash=f4108f..f2c00d blocks=1 txs=0 mgas=0.000 elapsed=5.732ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:34:54.531] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:34:59.020] Imported new chain segment number=5201 hash=497aae..c22bea blocks=1 txs=0 mgas=0.000 elapsed=7.910ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:04.017] Imported new chain segment number=5202 hash=c470aa..8f30fe blocks=1 txs=0 mgas=0.000 elapsed=6.432ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:04.551] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:35:09.011] Imported new chain segment number=5203 hash=fdfcd6..8c87c0 blocks=1 txs=0 mgas=0.000 elapsed=3.060ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:14.017] Imported new chain segment number=5204 hash=62d87c..8aa526 blocks=1 txs=0 mgas=0.000 elapsed=6.163ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:14.570] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:35:19.017] Imported new chain segment number=5205 hash=b17890..5fd57e blocks=1 txs=0 mgas=0.000 elapsed=7.852ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:24.016] Imported new chain segment number=5206 hash=53826b..5890fc blocks=1 txs=0 mgas=0.000 elapsed=5.213ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:24.589] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:35:29.014] Imported new chain segment number=5207 hash=f06fc8..30a0ab blocks=1 txs=0 mgas=0.000 elapsed=5.702ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:34.016] Imported new chain segment number=5208 hash=2582f8..12f272 blocks=1 txs=0 mgas=0.000 elapsed=6.177ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:34.609] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:35:39.013] Imported new chain segment number=5209 hash=bc92ef..18823d blocks=1 txs=0 mgas=0.000 elapsed=6.488ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:44.018] Imported new chain segment number=5210 hash=b8376f..965a73 blocks=1 txs=0 mgas=0.000 elapsed=7.336ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:44.632] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:35:49.020] Imported new chain segment number=5211 hash=acec7c..e61074 blocks=1 txs=0 mgas=0.000 elapsed=9.135ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:54.017] Imported new chain segment number=5212 hash=ea01a3..1b033c blocks=1 txs=0 mgas=0.000 elapsed=5.053ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:35:54.652] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:35:59.013] Imported new chain segment number=5213 hash=a3a116..a9829f blocks=1 txs=0 mgas=0.000 elapsed=7.269ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:04.015] Imported new chain segment number=5214 hash=87d11a..4ead2d blocks=1 txs=0 mgas=0.000 elapsed=6.340ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:04.672] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:36:09.018] Imported new chain segment number=5215 hash=99e306..4f5fde blocks=1 txs=0 mgas=0.000 elapsed=7.979ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:14.016] Imported new chain segment number=5216 hash=851328..1099fc blocks=1 txs=0 mgas=0.000 elapsed=5.806ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:14.693] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:36:19.013] Imported new chain segment number=5217 hash=e4ac9b..80d69a blocks=1 txs=0 mgas=0.000 elapsed=6.731ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:24.018] Imported new chain segment number=5218 hash=75c94c..e09f16 blocks=1 txs=0 mgas=0.000 elapsed=6.693ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:24.714] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:36:29.018] Imported new chain segment number=5219 hash=bc2cdf..067143 blocks=1 txs=0 mgas=0.000 elapsed=7.406ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:34.015] Imported new chain segment number=5220 hash=aff5c6..1fd896 blocks=1 txs=0 mgas=0.000 elapsed=7.315ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:34.735] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:36:39.019] Imported new chain segment number=5221 hash=4e7b56..abc0ad blocks=1 txs=0 mgas=0.000 elapsed=7.943ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:44.021] Imported new chain segment number=5222 hash=ed4daf..f6543d blocks=1 txs=0 mgas=0.000 elapsed=9.917ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:44.756] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:36:49.020] Imported new chain segment number=5223 hash=186025..60ba0a blocks=1 txs=0 mgas=0.000 elapsed=7.733ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:54.022] Imported new chain segment number=5224 hash=3d7357..6efe9c blocks=1 txs=0 mgas=0.000 elapsed=10.445ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:36:54.777] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:36:59.013] Imported new chain segment number=5225 hash=24065c..964c77 blocks=1 txs=0 mgas=0.000 elapsed=6.047ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:04.011] Imported new chain segment number=5226 hash=2de81a..c9b97b blocks=1 txs=0 mgas=0.000 elapsed=4.513ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:04.796] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:37:09.018] Imported new chain segment number=5227 hash=905c55..60552f blocks=1 txs=0 mgas=0.000 elapsed=6.411ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:14.018] Imported new chain segment number=5228 hash=f9d402..775328 blocks=1 txs=0 mgas=0.000 elapsed=10.682ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:14.816] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:37:19.011] Imported new chain segment number=5229 hash=8fc614..91a5bf blocks=1 txs=0 mgas=0.000 elapsed=4.502ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:24.018] Imported new chain segment number=5230 hash=58d026..74c894 blocks=1 txs=0 mgas=0.000 elapsed=6.414ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:24.836] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:37:29.012] Imported new chain segment number=5231 hash=38421b..266285 blocks=1 txs=0 mgas=0.000 elapsed=5.901ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:34.019] Imported new chain segment number=5232 hash=a8b725..f47616 blocks=1 txs=0 mgas=0.000 elapsed=7.199ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:34.858] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:37:39.016] Imported new chain segment number=5233 hash=89c550..ce03d4 blocks=1 txs=0 mgas=0.000 elapsed=6.153ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:44.011] Imported new chain segment number=5234 hash=799855..ba7c00 blocks=1 txs=0 mgas=0.000 elapsed=4.781ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:44.881] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:37:49.019] Imported new chain segment number=5235 hash=fb6e3b..eab81b blocks=1 txs=0 mgas=0.000 elapsed=7.970ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:54.020] Imported new chain segment number=5236 hash=40fe2b..3b5ffb blocks=1 txs=0 mgas=0.000 elapsed=8.482ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:37:54.902] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:37:59.011] Imported new chain segment number=5237 hash=782e3e..48644d blocks=1 txs=0 mgas=0.000 elapsed=4.644ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:04.016] Imported new chain segment number=5238 hash=4b22a9..ff5886 blocks=1 txs=0 mgas=0.000 elapsed=6.230ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:04.923] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:38:09.012] Imported new chain segment number=5239 hash=934123..7ada98 blocks=1 txs=0 mgas=0.000 elapsed=5.620ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:14.019] Imported new chain segment number=5240 hash=bc3447..bcc340 blocks=1 txs=0 mgas=0.000 elapsed=7.823ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:14.945] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:38:19.019] Imported new chain segment number=5241 hash=013e1d..3ae771 blocks=1 txs=0 mgas=0.000 elapsed=7.182ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:24.015] Imported new chain segment number=5242 hash=d20e2b..758a7a blocks=1 txs=0 mgas=0.000 elapsed=5.646ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:24.964] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:38:29.021] Imported new chain segment number=5243 hash=b952ed..2644a7 blocks=1 txs=0 mgas=0.000 elapsed=7.669ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:34.016] Imported new chain segment number=5244 hash=d0c1bc..97d408 blocks=1 txs=0 mgas=0.000 elapsed=6.217ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:34.986] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:38:39.016] Imported new chain segment number=5245 hash=e0b2d7..499732 blocks=1 txs=0 mgas=0.000 elapsed=5.627ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:44.017] Imported new chain segment number=5246 hash=7e791b..edf090 blocks=1 txs=0 mgas=0.000 elapsed=7.067ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:45.006] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:38:49.019] Imported new chain segment number=5247 hash=ebba96..6409d1 blocks=1 txs=0 mgas=0.000 elapsed=6.738ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:54.020] Imported new chain segment number=5248 hash=7c50b5..c9c23a blocks=1 txs=0 mgas=0.000 elapsed=8.288ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:38:55.025] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:38:59.020] Imported new chain segment number=5249 hash=bf2ce0..2e8dd2 blocks=1 txs=0 mgas=0.000 elapsed=6.359ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:04.018] Imported new chain segment number=5250 hash=0dd877..a44b6d blocks=1 txs=0 mgas=0.000 elapsed=7.239ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:05.045] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:39:09.016] Imported new chain segment number=5251 hash=5ce786..9e3f43 blocks=1 txs=0 mgas=0.000 elapsed=3.929ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:14.020] Imported new chain segment number=5252 hash=b7bbae..ce297b blocks=1 txs=0 mgas=0.000 elapsed=7.907ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:15.069] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:39:19.021] Imported new chain segment number=5253 hash=c3b92a..48c71b blocks=1 txs=0 mgas=0.000 elapsed=7.257ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:24.018] Imported new chain segment number=5254 hash=8f5373..c3ef58 blocks=1 txs=0 mgas=0.000 elapsed=6.411ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:25.089] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:39:29.012] Imported new chain segment number=5255 hash=771eaf..d8e6c4 blocks=1 txs=0 mgas=0.000 elapsed=6.863ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:34.022] Imported new chain segment number=5256 hash=0ea0b4..9a2f53 blocks=1 txs=0 mgas=0.000 elapsed=8.741ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:35.109] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:39:39.020] Imported new chain segment number=5257 hash=1d8759..4ed376 blocks=1 txs=0 mgas=0.000 elapsed=8.310ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:44.020] Imported new chain segment number=5258 hash=c336e9..bffa59 blocks=1 txs=0 mgas=0.000 elapsed=7.908ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:45.133] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:39:49.012] Imported new chain segment number=5259 hash=f142e0..fe03e6 blocks=1 txs=0 mgas=0.000 elapsed=5.749ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:54.016] Imported new chain segment number=5260 hash=61d365..8ea56c blocks=1 txs=0 mgas=0.000 elapsed=8.336ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:39:55.152] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:39:59.014] Imported new chain segment number=5261 hash=f7b0f5..36e64f blocks=1 txs=0 mgas=0.000 elapsed=5.528ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:04.020] Imported new chain segment number=5262 hash=2d5f05..effb09 blocks=1 txs=0 mgas=0.000 elapsed=6.409ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:05.171] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:40:09.019] Imported new chain segment number=5263 hash=219e5d..55862c blocks=1 txs=0 mgas=0.000 elapsed=6.948ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:14.012] Imported new chain segment number=5264 hash=5dc2ea..a9751b blocks=1 txs=0 mgas=0.000 elapsed=5.324ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:15.193] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:40:19.016] Imported new chain segment number=5265 hash=406b64..315376 blocks=1 txs=0 mgas=0.000 elapsed=6.492ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:24.018] Imported new chain segment number=5266 hash=62c174..15ae1e blocks=1 txs=0 mgas=0.000 elapsed=5.821ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:25.213] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:40:29.018] Imported new chain segment number=5267 hash=08f81b..6346ca blocks=1 txs=0 mgas=0.000 elapsed=6.729ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:34.019] Imported new chain segment number=5268 hash=68d61b..6dad4e blocks=1 txs=0 mgas=0.000 elapsed=6.824ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:35.233] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:40:39.018] Imported new chain segment number=5269 hash=9fc3a7..d26065 blocks=1 txs=0 mgas=0.000 elapsed=7.352ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:44.016] Imported new chain segment number=5270 hash=bdbae9..9ba944 blocks=1 txs=0 mgas=0.000 elapsed=6.413ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:45.254] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:40:49.012] Imported new chain segment number=5271 hash=b4f430..db8185 blocks=1 txs=0 mgas=0.000 elapsed=5.646ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:54.019] Imported new chain segment number=5272 hash=17a1c9..f9aa02 blocks=1 txs=0 mgas=0.000 elapsed=8.970ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:40:55.276] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:40:59.018] Imported new chain segment number=5273 hash=c4ad79..59eac8 blocks=1 txs=0 mgas=0.000 elapsed=7.767ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:04.013] Imported new chain segment number=5274 hash=d13495..4084cc blocks=1 txs=0 mgas=0.000 elapsed=5.668ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:05.295] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:41:09.019] Imported new chain segment number=5275 hash=0deafa..9da236 blocks=1 txs=0 mgas=0.000 elapsed=7.770ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:14.020] Imported new chain segment number=5276 hash=7dffcc..ba6ff0 blocks=1 txs=0 mgas=0.000 elapsed=7.953ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:15.315] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:41:19.012] Imported new chain segment number=5277 hash=1d6dc7..a3ad98 blocks=1 txs=0 mgas=0.000 elapsed=5.212ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:24.019] Imported new chain segment number=5278 hash=bd194c..2469a1 blocks=1 txs=0 mgas=0.000 elapsed=6.916ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:25.334] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:41:29.019] Imported new chain segment number=5279 hash=541336..9a2f62 blocks=1 txs=0 mgas=0.000 elapsed=7.789ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:34.016] Imported new chain segment number=5280 hash=466819..06e5f5 blocks=1 txs=0 mgas=0.000 elapsed=5.702ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:35.355] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:41:39.015] Imported new chain segment number=5281 hash=f7c215..b72100 blocks=1 txs=0 mgas=0.000 elapsed=7.418ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:44.016] Imported new chain segment number=5282 hash=1a5f2b..385c15 blocks=1 txs=0 mgas=0.000 elapsed=7.575ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:45.375] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:41:49.016] Imported new chain segment number=5283 hash=db157c..e5e26e blocks=1 txs=0 mgas=0.000 elapsed=8.640ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:54.014] Imported new chain segment number=5284 hash=1d3c09..bb27ac blocks=1 txs=0 mgas=0.000 elapsed=5.102ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:41:55.395] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:41:59.012] Imported new chain segment number=5285 hash=c8d927..46d81c blocks=1 txs=0 mgas=0.000 elapsed=5.264ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:04.018] Imported new chain segment number=5286 hash=5bfefc..6533fb blocks=1 txs=0 mgas=0.000 elapsed=6.910ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:05.414] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:42:09.013] Imported new chain segment number=5287 hash=098ea3..fd6646 blocks=1 txs=0 mgas=0.000 elapsed=5.337ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:14.011] Imported new chain segment number=5288 hash=d599c7..b7f438 blocks=1 txs=0 mgas=0.000 elapsed=5.253ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:15.433] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:42:19.015] Imported new chain segment number=5289 hash=51200a..f4d4f5 blocks=1 txs=0 mgas=0.000 elapsed=5.065ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:24.013] Imported new chain segment number=5290 hash=f3e613..359ec9 blocks=1 txs=0 mgas=0.000 elapsed=6.855ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:25.455] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:42:29.018] Imported new chain segment number=5291 hash=b7b715..56ffed blocks=1 txs=0 mgas=0.000 elapsed=6.574ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:34.013] Imported new chain segment number=5292 hash=decc9e..406e99 blocks=1 txs=0 mgas=0.000 elapsed=5.878ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:35.475] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:42:39.021] Imported new chain segment number=5293 hash=24e9b7..8bb5d2 blocks=1 txs=0 mgas=0.000 elapsed=7.765ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:44.018] Imported new chain segment number=5294 hash=152d22..b874fb blocks=1 txs=0 mgas=0.000 elapsed=7.106ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:45.497] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:42:49.013] Imported new chain segment number=5295 hash=9cd3a0..8c80d2 blocks=1 txs=0 mgas=0.000 elapsed=5.016ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:54.017] Imported new chain segment number=5296 hash=57c6f7..073d8f blocks=1 txs=0 mgas=0.000 elapsed=6.345ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:42:55.519] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:42:59.024] Imported new chain segment number=5297 hash=7cae5a..ca2aff blocks=1 txs=0 mgas=0.000 elapsed=10.374ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:04.018] Imported new chain segment number=5298 hash=d54e3f..19fd93 blocks=1 txs=0 mgas=0.000 elapsed=6.006ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:05.539] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:43:09.016] Imported new chain segment number=5299 hash=25089b..61676a blocks=1 txs=0 mgas=0.000 elapsed=5.550ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:14.021] Imported new chain segment number=5300 hash=ff9d27..523da9 blocks=1 txs=0 mgas=0.000 elapsed=10.635ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:15.559] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:43:19.017] Imported new chain segment number=5301 hash=a6c076..7a95a1 blocks=1 txs=0 mgas=0.000 elapsed=6.860ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:24.013] Imported new chain segment number=5302 hash=b57d72..ab2964 blocks=1 txs=0 mgas=0.000 elapsed=6.377ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:25.581] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:43:29.011] Imported new chain segment number=5303 hash=4becfe..01a17e blocks=1 txs=0 mgas=0.000 elapsed=5.050ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:34.014] Imported new chain segment number=5304 hash=0ae4de..59d4c3 blocks=1 txs=0 mgas=0.000 elapsed=3.848ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:35.599] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:43:39.014] Imported new chain segment number=5305 hash=27d704..65c0ce blocks=1 txs=0 mgas=0.000 elapsed=7.062ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:44.013] Imported new chain segment number=5306 hash=d20a6c..4b3ab4 blocks=1 txs=0 mgas=0.000 elapsed=5.958ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:45.619] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:43:49.018] Imported new chain segment number=5307 hash=31cc93..c31b2b blocks=1 txs=0 mgas=0.000 elapsed=6.290ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:54.019] Imported new chain segment number=5308 hash=46f302..212fd7 blocks=1 txs=0 mgas=0.000 elapsed=6.442ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:43:55.638] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:43:59.015] Imported new chain segment number=5309 hash=11315d..b45089 blocks=1 txs=0 mgas=0.000 elapsed=5.619ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:04.013] Imported new chain segment number=5310 hash=bcf351..292c9f blocks=1 txs=0 mgas=0.000 elapsed=5.994ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:05.664] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:44:09.018] Imported new chain segment number=5311 hash=f2d2ae..194fee blocks=1 txs=0 mgas=0.000 elapsed=7.556ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:14.023] Imported new chain segment number=5312 hash=cf8360..ed67a5 blocks=1 txs=0 mgas=0.000 elapsed=9.695ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:15.683] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:44:19.012] Imported new chain segment number=5313 hash=f8170e..a0f2b0 blocks=1 txs=0 mgas=0.000 elapsed=5.877ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:24.013] Imported new chain segment number=5314 hash=a3a80c..8184e6 blocks=1 txs=0 mgas=0.000 elapsed=5.738ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:25.703] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:44:29.015] Imported new chain segment number=5315 hash=a684bc..5f3d0b blocks=1 txs=0 mgas=0.000 elapsed=6.931ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:34.012] Imported new chain segment number=5316 hash=f2a0bf..e2051a blocks=1 txs=0 mgas=0.000 elapsed=5.847ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:35.721] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:44:39.019] Imported new chain segment number=5317 hash=d8639f..f533c1 blocks=1 txs=0 mgas=0.000 elapsed=7.389ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:44.020] Imported new chain segment number=5318 hash=dfceaf..8f1499 blocks=1 txs=0 mgas=0.000 elapsed=4.741ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:45.741] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:44:49.017] Imported new chain segment number=5319 hash=7fed49..1f5c9f blocks=1 txs=0 mgas=0.000 elapsed=6.636ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:54.016] Imported new chain segment number=5320 hash=daa3fd..7f7756 blocks=1 txs=0 mgas=0.000 elapsed=5.949ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:44:55.760] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:44:59.017] Imported new chain segment number=5321 hash=6e859d..d8a3f0 blocks=1 txs=0 mgas=0.000 elapsed=6.742ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:04.019] Imported new chain segment number=5322 hash=b759d1..7be69c blocks=1 txs=0 mgas=0.000 elapsed=7.672ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:05.780] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:45:09.024] Imported new chain segment number=5323 hash=04428d..ebe038 blocks=1 txs=0 mgas=0.000 elapsed=8.410ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:14.020] Imported new chain segment number=5324 hash=555b71..0c1ab0 blocks=1 txs=0 mgas=0.000 elapsed=7.576ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:15.800] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:45:19.014] Imported new chain segment number=5325 hash=9b47b1..f59211 blocks=1 txs=0 mgas=0.000 elapsed=7.586ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:24.017] Imported new chain segment number=5326 hash=a40dd7..6f6275 blocks=1 txs=0 mgas=0.000 elapsed=6.348ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:25.821] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:45:29.018] Imported new chain segment number=5327 hash=0bfc99..feb9d6 blocks=1 txs=0 mgas=0.000 elapsed=6.001ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:34.020] Imported new chain segment number=5328 hash=4fca40..f33713 blocks=1 txs=0 mgas=0.000 elapsed=6.793ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:35.841] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:45:39.017] Imported new chain segment number=5329 hash=31d335..2bfec4 blocks=1 txs=0 mgas=0.000 elapsed=7.016ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:44.013] Imported new chain segment number=5330 hash=98764b..631d8a blocks=1 txs=0 mgas=0.000 elapsed=4.602ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:45.863] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:45:49.012] Imported new chain segment number=5331 hash=d090f3..c06b8f blocks=1 txs=0 mgas=0.000 elapsed=6.418ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:54.015] Imported new chain segment number=5332 hash=edbc1a..3913bd blocks=1 txs=0 mgas=0.000 elapsed=5.199ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:45:55.880] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:45:59.015] Imported new chain segment number=5333 hash=b725fd..74d251 blocks=1 txs=0 mgas=0.000 elapsed=7.016ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:04.020] Imported new chain segment number=5334 hash=610048..814ab5 blocks=1 txs=0 mgas=0.000 elapsed=6.575ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:05.900] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:46:09.015] Imported new chain segment number=5335 hash=353716..3a8d87 blocks=1 txs=0 mgas=0.000 elapsed=5.400ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:14.013] Imported new chain segment number=5336 hash=b17e27..6848cf blocks=1 txs=0 mgas=0.000 elapsed=5.496ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:15.924] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:46:19.018] Imported new chain segment number=5337 hash=e809c1..0746b1 blocks=1 txs=0 mgas=0.000 elapsed=6.647ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:24.016] Imported new chain segment number=5338 hash=ad7707..f4e706 blocks=1 txs=0 mgas=0.000 elapsed=6.586ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:25.945] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:46:29.016] Imported new chain segment number=5339 hash=8dc7af..7a5f82 blocks=1 txs=0 mgas=0.000 elapsed=6.504ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:34.020] Imported new chain segment number=5340 hash=a38e41..f1db67 blocks=1 txs=0 mgas=0.000 elapsed=6.913ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:35.968] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:46:39.013] Imported new chain segment number=5341 hash=3192ae..c1c4d1 blocks=1 txs=0 mgas=0.000 elapsed=6.029ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:44.011] Imported new chain segment number=5342 hash=db647a..24e5a8 blocks=1 txs=0 mgas=0.000 elapsed=5.167ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:45.987] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:46:49.013] Imported new chain segment number=5343 hash=6b7eb6..2873ce blocks=1 txs=0 mgas=0.000 elapsed=4.322ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:54.017] Imported new chain segment number=5344 hash=38c9b0..863722 blocks=1 txs=0 mgas=0.000 elapsed=6.775ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:46:56.011] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:46:59.013] Imported new chain segment number=5345 hash=c3f87f..d5e30d blocks=1 txs=0 mgas=0.000 elapsed=5.637ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:04.019] Imported new chain segment number=5346 hash=74b0f6..4aa581 blocks=1 txs=0 mgas=0.000 elapsed=7.891ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:06.031] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:47:09.022] Imported new chain segment number=5347 hash=d4c2a6..36a1bf blocks=1 txs=0 mgas=0.000 elapsed=7.478ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:14.014] Imported new chain segment number=5348 hash=19b297..4e7cd7 blocks=1 txs=0 mgas=0.000 elapsed=6.775ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:16.050] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:47:19.020] Imported new chain segment number=5349 hash=72b1ea..6fc997 blocks=1 txs=0 mgas=0.000 elapsed=6.938ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:24.018] Imported new chain segment number=5350 hash=8e97cb..1d87c2 blocks=1 txs=0 mgas=0.000 elapsed=6.367ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:26.072] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:47:29.019] Imported new chain segment number=5351 hash=5210ef..3601da blocks=1 txs=0 mgas=0.000 elapsed=6.399ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:34.019] Imported new chain segment number=5352 hash=4c0d5a..d8829c blocks=1 txs=0 mgas=0.000 elapsed=7.275ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:36.094] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:47:39.010] Imported new chain segment number=5353 hash=f34af3..ff8a9a blocks=1 txs=0 mgas=0.000 elapsed=3.170ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:44.020] Imported new chain segment number=5354 hash=ad4044..2b44a0 blocks=1 txs=0 mgas=0.000 elapsed=7.436ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:46.116] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:47:49.016] Imported new chain segment number=5355 hash=f741e9..e3f404 blocks=1 txs=0 mgas=0.000 elapsed=6.295ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:54.020] Imported new chain segment number=5356 hash=1a2bbe..26f6ff blocks=1 txs=0 mgas=0.000 elapsed=8.062ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:47:56.135] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:47:59.017] Imported new chain segment number=5357 hash=4a513c..e9df0b blocks=1 txs=0 mgas=0.000 elapsed=4.409ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:04.021] Imported new chain segment number=5358 hash=675458..23c378 blocks=1 txs=0 mgas=0.000 elapsed=9.373ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:06.155] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:48:09.016] Imported new chain segment number=5359 hash=c4b32d..594788 blocks=1 txs=0 mgas=0.000 elapsed=5.936ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:14.020] Imported new chain segment number=5360 hash=4b23c3..610dea blocks=1 txs=0 mgas=0.000 elapsed=10.144ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:16.173] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:48:19.018] Imported new chain segment number=5361 hash=83984c..5d841c blocks=1 txs=0 mgas=0.000 elapsed=6.372ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:24.016] Imported new chain segment number=5362 hash=258330..7ac473 blocks=1 txs=0 mgas=0.000 elapsed=6.553ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:26.196] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:48:29.021] Imported new chain segment number=5363 hash=8e49c1..3dc524 blocks=1 txs=0 mgas=0.000 elapsed=6.744ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:34.011] Imported new chain segment number=5364 hash=b8496d..384ff1 blocks=1 txs=0 mgas=0.000 elapsed=5.189ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:36.217] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:48:39.010] Imported new chain segment number=5365 hash=67b359..977ab8 blocks=1 txs=0 mgas=0.000 elapsed=3.357ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:44.012] Imported new chain segment number=5366 hash=7ef566..b1fb91 blocks=1 txs=0 mgas=0.000 elapsed=5.148ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:46.239] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:48:49.019] Imported new chain segment number=5367 hash=a8ecc1..f92a9f blocks=1 txs=0 mgas=0.000 elapsed=6.998ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:54.017] Imported new chain segment number=5368 hash=8dc781..a064c7 blocks=1 txs=0 mgas=0.000 elapsed=6.981ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:48:56.258] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:48:59.017] Imported new chain segment number=5369 hash=8835c0..1f5c2e blocks=1 txs=0 mgas=0.000 elapsed=4.227ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:04.020] Imported new chain segment number=5370 hash=8e4d73..cafcda blocks=1 txs=0 mgas=0.000 elapsed=6.394ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:06.281] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:49:09.017] Imported new chain segment number=5371 hash=5e3a67..a759f2 blocks=1 txs=0 mgas=0.000 elapsed=5.419ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:14.013] Imported new chain segment number=5372 hash=cb5080..7e2e50 blocks=1 txs=0 mgas=0.000 elapsed=5.719ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:16.301] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:49:19.014] Imported new chain segment number=5373 hash=42a3ff..1aa48d blocks=1 txs=0 mgas=0.000 elapsed=5.278ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:24.017] Imported new chain segment number=5374 hash=9386c2..2968c8 blocks=1 txs=0 mgas=0.000 elapsed=7.246ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:26.320] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:49:29.020] Imported new chain segment number=5375 hash=985767..58b2bf blocks=1 txs=0 mgas=0.000 elapsed=7.522ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:34.011] Imported new chain segment number=5376 hash=25662c..7b0a64 blocks=1 txs=0 mgas=0.000 elapsed=4.853ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:36.341] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:49:39.017] Imported new chain segment number=5377 hash=bc9be3..2e98b3 blocks=1 txs=0 mgas=0.000 elapsed=6.858ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:44.013] Imported new chain segment number=5378 hash=2c5d20..9dc422 blocks=1 txs=0 mgas=0.000 elapsed=6.765ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:46.362] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:49:49.013] Imported new chain segment number=5379 hash=5d7bf5..714443 blocks=1 txs=0 mgas=0.000 elapsed=5.502ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:54.010] Imported new chain segment number=5380 hash=d02c92..130b36 blocks=1 txs=0 mgas=0.000 elapsed=4.615ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:49:56.377] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:49:59.013] Imported new chain segment number=5381 hash=bf0c68..9fde68 blocks=1 txs=0 mgas=0.000 elapsed=6.333ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:04.013] Imported new chain segment number=5382 hash=e9aade..c32dae blocks=1 txs=0 mgas=0.000 elapsed=5.515ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:06.399] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:50:09.017] Imported new chain segment number=5383 hash=a4fe5a..623777 blocks=1 txs=0 mgas=0.000 elapsed=6.860ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:14.012] Imported new chain segment number=5384 hash=96517e..27ba47 blocks=1 txs=0 mgas=0.000 elapsed=5.005ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:16.419] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:50:19.016] Imported new chain segment number=5385 hash=65e423..dd02c2 blocks=1 txs=0 mgas=0.000 elapsed=5.499ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:24.011] Imported new chain segment number=5386 hash=9bd536..a09b9e blocks=1 txs=0 mgas=0.000 elapsed=4.788ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:26.439] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:50:29.018] Imported new chain segment number=5387 hash=d1fdbf..1119b3 blocks=1 txs=0 mgas=0.000 elapsed=6.352ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:34.018] Imported new chain segment number=5388 hash=d3072a..30d99f blocks=1 txs=0 mgas=0.000 elapsed=7.024ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:36.459] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:50:39.017] Imported new chain segment number=5389 hash=aaa949..d138af blocks=1 txs=0 mgas=0.000 elapsed=6.393ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:44.015] Imported new chain segment number=5390 hash=8e471e..eb6cea blocks=1 txs=0 mgas=0.000 elapsed=5.768ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:46.481] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:50:49.016] Imported new chain segment number=5391 hash=2bae45..7aa423 blocks=1 txs=0 mgas=0.000 elapsed=5.928ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:54.016] Imported new chain segment number=5392 hash=7bf5da..bb9a99 blocks=1 txs=0 mgas=0.000 elapsed=6.150ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:50:56.501] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:50:59.015] Imported new chain segment number=5393 hash=43bb41..7936dc blocks=1 txs=0 mgas=0.000 elapsed=4.332ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:04.018] Imported new chain segment number=5394 hash=38aebb..53dbb4 blocks=1 txs=0 mgas=0.000 elapsed=6.470ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:06.523] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:51:09.020] Imported new chain segment number=5395 hash=42e469..4ac447 blocks=1 txs=0 mgas=0.000 elapsed=7.496ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:14.010] Imported new chain segment number=5396 hash=8efe1b..6590f3 blocks=1 txs=0 mgas=0.000 elapsed=3.681ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:16.546] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:51:19.016] Imported new chain segment number=5397 hash=312271..0516d1 blocks=1 txs=0 mgas=0.000 elapsed=6.188ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:24.013] Imported new chain segment number=5398 hash=dcbeb9..e153b8 blocks=1 txs=0 mgas=0.000 elapsed=5.367ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:26.567] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:51:29.020] Imported new chain segment number=5399 hash=54e0fa..1abbca blocks=1 txs=0 mgas=0.000 elapsed=8.350ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:34.017] Imported new chain segment number=5400 hash=cc0529..5a0f5b blocks=1 txs=0 mgas=0.000 elapsed=6.214ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:36.591] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:51:39.020] Imported new chain segment number=5401 hash=105241..8f3a4d blocks=1 txs=0 mgas=0.000 elapsed=8.401ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:44.016] Imported new chain segment number=5402 hash=182439..7b9458 blocks=1 txs=0 mgas=0.000 elapsed=7.106ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:46.617] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:51:49.019] Imported new chain segment number=5403 hash=1fd9dd..18bb5a blocks=1 txs=0 mgas=0.000 elapsed=8.140ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:54.009] Imported new chain segment number=5404 hash=1415a3..312184 blocks=1 txs=0 mgas=0.000 elapsed=3.358ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:51:56.638] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:51:59.010] Imported new chain segment number=5405 hash=4caeda..9e3e39 blocks=1 txs=0 mgas=0.000 elapsed=4.495ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:04.011] Imported new chain segment number=5406 hash=b6cc89..d47446 blocks=1 txs=0 mgas=0.000 elapsed=5.971ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:06.656] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:52:09.017] Imported new chain segment number=5407 hash=f4cfa0..086e1f blocks=1 txs=0 mgas=0.000 elapsed=7.628ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:14.016] Imported new chain segment number=5408 hash=49701f..acaffb blocks=1 txs=0 mgas=0.000 elapsed=6.537ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:16.676] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:52:19.017] Imported new chain segment number=5409 hash=e6b4ce..75a2d2 blocks=1 txs=0 mgas=0.000 elapsed=5.933ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:24.022] Imported new chain segment number=5410 hash=f2720c..f9f261 blocks=1 txs=0 mgas=0.000 elapsed=10.084ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:26.696] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:52:29.019] Imported new chain segment number=5411 hash=18f87e..e3d0b4 blocks=1 txs=0 mgas=0.000 elapsed=7.425ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:34.019] Imported new chain segment number=5412 hash=5f099d..dcd263 blocks=1 txs=0 mgas=0.000 elapsed=7.474ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:36.715] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:52:39.023] Imported new chain segment number=5413 hash=53c6b9..4781eb blocks=1 txs=0 mgas=0.000 elapsed=8.060ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:44.017] Imported new chain segment number=5414 hash=f45d5e..df7aa8 blocks=1 txs=0 mgas=0.000 elapsed=6.154ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:46.733] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:52:49.014] Imported new chain segment number=5415 hash=e60863..226277 blocks=1 txs=0 mgas=0.000 elapsed=5.922ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:54.011] Imported new chain segment number=5416 hash=199555..7c25cc blocks=1 txs=0 mgas=0.000 elapsed=5.494ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:52:56.757] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:52:59.012] Imported new chain segment number=5417 hash=8eaedf..59c5cc blocks=1 txs=0 mgas=0.000 elapsed=5.968ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:04.024] Imported new chain segment number=5418 hash=667b98..b81c10 blocks=1 txs=0 mgas=0.000 elapsed=10.042ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:06.777] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:53:09.020] Imported new chain segment number=5419 hash=da8c86..fa9651 blocks=1 txs=0 mgas=0.000 elapsed=7.593ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:14.012] Imported new chain segment number=5420 hash=e60371..a287b8 blocks=1 txs=0 mgas=0.000 elapsed=5.301ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:16.799] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:53:19.013] Imported new chain segment number=5421 hash=283d36..fc1669 blocks=1 txs=0 mgas=0.000 elapsed=5.967ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:24.018] Imported new chain segment number=5422 hash=d419e2..d61d6b blocks=1 txs=0 mgas=0.000 elapsed=6.077ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:26.818] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:53:29.019] Imported new chain segment number=5423 hash=9098eb..3963e3 blocks=1 txs=0 mgas=0.000 elapsed=6.288ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:34.021] Imported new chain segment number=5424 hash=44c0b4..7fecd9 blocks=1 txs=0 mgas=0.000 elapsed=8.289ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:36.838] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:53:39.019] Imported new chain segment number=5425 hash=50c1a9..83f6ba blocks=1 txs=0 mgas=0.000 elapsed=7.009ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:44.019] Imported new chain segment number=5426 hash=5e60a8..2294b0 blocks=1 txs=0 mgas=0.000 elapsed=6.706ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:46.861] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:53:49.012] Imported new chain segment number=5427 hash=75e1e4..4289a0 blocks=1 txs=0 mgas=0.000 elapsed=5.619ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:54.013] Imported new chain segment number=5428 hash=00465e..63232b blocks=1 txs=0 mgas=0.000 elapsed=6.036ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:53:56.884] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:53:59.020] Imported new chain segment number=5429 hash=03045c..e7ec31 blocks=1 txs=0 mgas=0.000 elapsed=7.001ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:04.020] Imported new chain segment number=5430 hash=f5188e..dee785 blocks=1 txs=0 mgas=0.000 elapsed=7.208ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:06.903] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:54:09.018] Imported new chain segment number=5431 hash=cb013f..dff180 blocks=1 txs=0 mgas=0.000 elapsed=6.275ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:14.011] Imported new chain segment number=5432 hash=d5f3ca..af7e8c blocks=1 txs=0 mgas=0.000 elapsed=4.687ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:16.925] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:54:19.021] Imported new chain segment number=5433 hash=a47793..3ba0f0 blocks=1 txs=0 mgas=0.000 elapsed=10.375ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:24.015] Imported new chain segment number=5434 hash=ca0a16..1a08f8 blocks=1 txs=0 mgas=0.000 elapsed=5.569ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:26.946] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:54:29.013] Imported new chain segment number=5435 hash=109963..1f1988 blocks=1 txs=0 mgas=0.000 elapsed=6.848ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:34.018] Imported new chain segment number=5436 hash=dc50ea..b7ae82 blocks=1 txs=0 mgas=0.000 elapsed=6.610ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:36.970] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:54:39.021] Imported new chain segment number=5437 hash=4a85d6..1006ab blocks=1 txs=0 mgas=0.000 elapsed=9.640ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:44.012] Imported new chain segment number=5438 hash=b4110e..5f04a2 blocks=1 txs=0 mgas=0.000 elapsed=6.251ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:46.992] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:54:49.015] Imported new chain segment number=5439 hash=c29937..4c3241 blocks=1 txs=0 mgas=0.000 elapsed=5.326ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:54.020] Imported new chain segment number=5440 hash=c95972..9a9873 blocks=1 txs=0 mgas=0.000 elapsed=6.533ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:54:57.015] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:54:59.018] Imported new chain segment number=5441 hash=85bca2..c4487e blocks=1 txs=0 mgas=0.000 elapsed=6.245ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:04.019] Imported new chain segment number=5442 hash=09558e..c7f88b blocks=1 txs=0 mgas=0.000 elapsed=6.350ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:07.034] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:55:09.014] Imported new chain segment number=5443 hash=b613b7..7e3fb6 blocks=1 txs=0 mgas=0.000 elapsed=5.202ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:14.014] Imported new chain segment number=5444 hash=f6e1df..e3f99d blocks=1 txs=0 mgas=0.000 elapsed=5.618ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:17.054] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:55:19.029] Imported new chain segment number=5445 hash=644654..fd80d5 blocks=1 txs=0 mgas=0.000 elapsed=12.055ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:24.019] Imported new chain segment number=5446 hash=fd96ad..a5be8c blocks=1 txs=0 mgas=0.000 elapsed=7.436ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:27.076] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:55:29.017] Imported new chain segment number=5447 hash=4838e4..0e3686 blocks=1 txs=0 mgas=0.000 elapsed=5.031ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:34.012] Imported new chain segment number=5448 hash=21966a..d7573e blocks=1 txs=0 mgas=0.000 elapsed=4.664ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:37.096] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:55:39.016] Imported new chain segment number=5449 hash=a8f950..5c21d7 blocks=1 txs=0 mgas=0.000 elapsed=7.112ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:44.015] Imported new chain segment number=5450 hash=ccc124..b1bfc9 blocks=1 txs=0 mgas=0.000 elapsed=5.463ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:47.117] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:55:49.017] Imported new chain segment number=5451 hash=39393d..b0bd33 blocks=1 txs=0 mgas=0.000 elapsed=6.707ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:54.018] Imported new chain segment number=5452 hash=dccbd3..bd67fc blocks=1 txs=0 mgas=0.000 elapsed=6.955ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:55:57.137] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:55:59.015] Imported new chain segment number=5453 hash=712e09..8d30fe blocks=1 txs=0 mgas=0.000 elapsed=5.899ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:04.013] Imported new chain segment number=5454 hash=899337..870095 blocks=1 txs=0 mgas=0.000 elapsed=5.751ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:07.159] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:56:09.020] Imported new chain segment number=5455 hash=263cc6..84bfb8 blocks=1 txs=0 mgas=0.000 elapsed=6.118ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:14.017] Imported new chain segment number=5456 hash=9c6e38..62b9be blocks=1 txs=0 mgas=0.000 elapsed=6.862ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:17.179] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:56:19.011] Imported new chain segment number=5457 hash=a13811..3f815a blocks=1 txs=0 mgas=0.000 elapsed=4.702ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:24.013] Imported new chain segment number=5458 hash=3b3da3..9ac966 blocks=1 txs=0 mgas=0.000 elapsed=7.032ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:27.197] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:56:29.018] Imported new chain segment number=5459 hash=aa343e..72dc0b blocks=1 txs=0 mgas=0.000 elapsed=6.674ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:34.018] Imported new chain segment number=5460 hash=fe4d96..48f1d7 blocks=1 txs=0 mgas=0.000 elapsed=6.113ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:37.217] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:56:39.017] Imported new chain segment number=5461 hash=79960a..bfbfb8 blocks=1 txs=0 mgas=0.000 elapsed=7.629ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:44.016] Imported new chain segment number=5462 hash=1c043a..7e4051 blocks=1 txs=0 mgas=0.000 elapsed=5.792ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:47.240] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:56:49.011] Imported new chain segment number=5463 hash=5fd5c2..e4cbec blocks=1 txs=0 mgas=0.000 elapsed=5.821ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:54.015] Imported new chain segment number=5464 hash=219ea7..55d94e blocks=1 txs=0 mgas=0.000 elapsed=5.870ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:56:57.260] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:56:59.015] Imported new chain segment number=5465 hash=75b819..a7125b blocks=1 txs=0 mgas=0.000 elapsed=6.417ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:04.014] Imported new chain segment number=5466 hash=8a34c9..d49e00 blocks=1 txs=0 mgas=0.000 elapsed=7.129ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:07.279] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:57:09.015] Imported new chain segment number=5467 hash=0db2ef..92ed2b blocks=1 txs=0 mgas=0.000 elapsed=4.146ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:14.026] Imported new chain segment number=5468 hash=9868f1..59dded blocks=1 txs=0 mgas=0.000 elapsed=11.356ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:17.302] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:57:19.018] Imported new chain segment number=5469 hash=21323e..d9727b blocks=1 txs=0 mgas=0.000 elapsed=6.189ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:24.020] Imported new chain segment number=5470 hash=c4bfad..1fdf26 blocks=1 txs=0 mgas=0.000 elapsed=8.217ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:27.322] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:57:29.020] Imported new chain segment number=5471 hash=28e4e3..007c6d blocks=1 txs=0 mgas=0.000 elapsed=6.274ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:34.013] Imported new chain segment number=5472 hash=ae65f2..168772 blocks=1 txs=0 mgas=0.000 elapsed=6.537ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:37.341] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:57:39.019] Imported new chain segment number=5473 hash=3cfaba..91f214 blocks=1 txs=0 mgas=0.000 elapsed=8.477ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:44.012] Imported new chain segment number=5474 hash=831c73..961f96 blocks=1 txs=0 mgas=0.000 elapsed=5.460ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:47.361] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:57:49.013] Imported new chain segment number=5475 hash=31d0b3..27f499 blocks=1 txs=0 mgas=0.000 elapsed=5.221ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:54.018] Imported new chain segment number=5476 hash=47d863..3d98bd blocks=1 txs=0 mgas=0.000 elapsed=7.626ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:57:57.380] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:57:59.017] Imported new chain segment number=5477 hash=f17b15..8e695c blocks=1 txs=0 mgas=0.000 elapsed=6.657ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:04.013] Imported new chain segment number=5478 hash=505f5e..3689ec blocks=1 txs=0 mgas=0.000 elapsed=4.444ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:07.401] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:58:09.014] Imported new chain segment number=5479 hash=fc1ff1..4b0a6d blocks=1 txs=0 mgas=0.000 elapsed=5.837ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:14.019] Imported new chain segment number=5480 hash=1d65ca..904f03 blocks=1 txs=0 mgas=0.000 elapsed=7.544ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:17.424] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:58:19.012] Imported new chain segment number=5481 hash=c606ed..59d4d4 blocks=1 txs=0 mgas=0.000 elapsed=4.953ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:24.014] Imported new chain segment number=5482 hash=fcf02d..5bf51f blocks=1 txs=0 mgas=0.000 elapsed=6.019ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:27.443] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:58:29.017] Imported new chain segment number=5483 hash=684ef3..2b82e0 blocks=1 txs=0 mgas=0.000 elapsed=6.158ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:34.020] Imported new chain segment number=5484 hash=1bc08b..914e92 blocks=1 txs=0 mgas=0.000 elapsed=8.041ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:37.462] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:58:39.016] Imported new chain segment number=5485 hash=3457cf..2b2d26 blocks=1 txs=0 mgas=0.000 elapsed=7.446ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:44.014] Imported new chain segment number=5486 hash=c95851..347859 blocks=1 txs=0 mgas=0.000 elapsed=5.773ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:47.482] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:58:49.018] Imported new chain segment number=5487 hash=dd3813..0df606 blocks=1 txs=0 mgas=0.000 elapsed=6.039ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:54.016] Imported new chain segment number=5488 hash=108b49..643149 blocks=1 txs=0 mgas=0.000 elapsed=5.772ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:58:57.502] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:58:59.016] Imported new chain segment number=5489 hash=c993d8..f37857 blocks=1 txs=0 mgas=0.000 elapsed=6.137ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:04.012] Imported new chain segment number=5490 hash=a2c367..ebb5a3 blocks=1 txs=0 mgas=0.000 elapsed=6.101ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:07.524] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:59:09.026] Imported new chain segment number=5491 hash=7ffb2a..ef52d4 blocks=1 txs=0 mgas=0.000 elapsed=10.146ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:14.013] Imported new chain segment number=5492 hash=34289c..34bef5 blocks=1 txs=0 mgas=0.000 elapsed=6.097ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:17.546] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:59:19.019] Imported new chain segment number=5493 hash=0b2534..e3dd78 blocks=1 txs=0 mgas=0.000 elapsed=5.568ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:24.017] Imported new chain segment number=5494 hash=083814..95cde8 blocks=1 txs=0 mgas=0.000 elapsed=6.008ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:27.567] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:59:29.019] Imported new chain segment number=5495 hash=a3807b..14b7fe blocks=1 txs=0 mgas=0.000 elapsed=7.343ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:34.015] Imported new chain segment number=5496 hash=cb1778..953ccf blocks=1 txs=0 mgas=0.000 elapsed=5.620ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:37.586] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:59:39.012] Imported new chain segment number=5497 hash=582c90..22065f blocks=1 txs=0 mgas=0.000 elapsed=5.432ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:44.018] Imported new chain segment number=5498 hash=966e24..d04296 blocks=1 txs=0 mgas=0.000 elapsed=6.501ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:47.608] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:59:49.010] Imported new chain segment number=5499 hash=ceb351..6556d3 blocks=1 txs=0 mgas=0.000 elapsed=5.398ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:54.020] Imported new chain segment number=5500 hash=adb578..770108 blocks=1 txs=0 mgas=0.000 elapsed=7.490ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|10:59:57.630] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|10:59:59.021] Imported new chain segment number=5501 hash=fd8929..418cfc blocks=1 txs=0 mgas=0.000 elapsed=8.806ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:04.020] Imported new chain segment number=5502 hash=41029f..e454e8 blocks=1 txs=0 mgas=0.000 elapsed=7.502ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:07.654] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:00:09.017] Imported new chain segment number=5503 hash=b43b68..5ae7c2 blocks=1 txs=0 mgas=0.000 elapsed=6.812ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:14.018] Imported new chain segment number=5504 hash=77df02..f011b2 blocks=1 txs=0 mgas=0.000 elapsed=7.119ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:17.674] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:00:19.012] Imported new chain segment number=5505 hash=595e55..798890 blocks=1 txs=0 mgas=0.000 elapsed=4.902ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:24.018] Imported new chain segment number=5506 hash=4b5d89..fbd4a6 blocks=1 txs=0 mgas=0.000 elapsed=5.335ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:27.697] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:00:29.020] Imported new chain segment number=5507 hash=6f4050..8657eb blocks=1 txs=0 mgas=0.000 elapsed=8.190ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:34.017] Imported new chain segment number=5508 hash=751add..9d218d blocks=1 txs=0 mgas=0.000 elapsed=6.905ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:37.718] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:00:39.017] Imported new chain segment number=5509 hash=1149f3..e238a8 blocks=1 txs=0 mgas=0.000 elapsed=5.769ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:44.015] Imported new chain segment number=5510 hash=8900b2..adc7a6 blocks=1 txs=0 mgas=0.000 elapsed=4.757ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:47.737] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:00:49.015] Imported new chain segment number=5511 hash=deec43..8d0fbe blocks=1 txs=0 mgas=0.000 elapsed=6.671ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:54.017] Imported new chain segment number=5512 hash=7d24e1..cba917 blocks=1 txs=0 mgas=0.000 elapsed=7.084ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:00:57.756] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:00:59.012] Imported new chain segment number=5513 hash=4c85d5..5c8acd blocks=1 txs=0 mgas=0.000 elapsed=5.539ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:04.018] Imported new chain segment number=5514 hash=313203..f3678a blocks=1 txs=0 mgas=0.000 elapsed=6.647ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:07.777] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:01:09.020] Imported new chain segment number=5515 hash=75b708..1fb55e blocks=1 txs=0 mgas=0.000 elapsed=9.904ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:14.011] Imported new chain segment number=5516 hash=c1c27e..15bd43 blocks=1 txs=0 mgas=0.000 elapsed=5.163ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:17.797] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:01:19.017] Imported new chain segment number=5517 hash=c15005..efb369 blocks=1 txs=0 mgas=0.000 elapsed=6.546ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:24.025] Imported new chain segment number=5518 hash=c32024..b47fd2 blocks=1 txs=0 mgas=0.000 elapsed=9.350ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:27.817] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:01:29.020] Imported new chain segment number=5519 hash=e9d065..52e4ee blocks=1 txs=0 mgas=0.000 elapsed=7.281ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:34.018] Imported new chain segment number=5520 hash=7b285f..0f8563 blocks=1 txs=0 mgas=0.000 elapsed=5.744ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:37.838] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:01:39.016] Imported new chain segment number=5521 hash=44c33d..d03b2d blocks=1 txs=0 mgas=0.000 elapsed=6.494ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:44.017] Imported new chain segment number=5522 hash=de70ec..0a7359 blocks=1 txs=0 mgas=0.000 elapsed=6.688ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:47.861] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:01:49.012] Imported new chain segment number=5523 hash=b280eb..724667 blocks=1 txs=0 mgas=0.000 elapsed=5.607ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:54.016] Imported new chain segment number=5524 hash=b3ce91..9f9610 blocks=1 txs=0 mgas=0.000 elapsed=6.693ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:01:57.881] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:01:59.021] Imported new chain segment number=5525 hash=e8858c..1df3bc blocks=1 txs=0 mgas=0.000 elapsed=7.753ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:04.033] Imported new chain segment number=5526 hash=f6681c..f0805e blocks=1 txs=0 mgas=0.000 elapsed=17.131ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:07.902] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:02:09.012] Imported new chain segment number=5527 hash=f3dbb5..f248ba blocks=1 txs=0 mgas=0.000 elapsed=5.352ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:14.013] Imported new chain segment number=5528 hash=98dd92..aab5cd blocks=1 txs=0 mgas=0.000 elapsed=6.946ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:17.921] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:02:19.015] Imported new chain segment number=5529 hash=40fbcc..8461ac blocks=1 txs=0 mgas=0.000 elapsed=6.463ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:24.018] Imported new chain segment number=5530 hash=8f76ce..3deab5 blocks=1 txs=0 mgas=0.000 elapsed=7.349ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:27.943] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:02:29.018] Imported new chain segment number=5531 hash=1d1751..51d764 blocks=1 txs=0 mgas=0.000 elapsed=6.577ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:34.018] Imported new chain segment number=5532 hash=63ee6f..288294 blocks=1 txs=0 mgas=0.000 elapsed=6.776ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:37.965] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:02:39.015] Imported new chain segment number=5533 hash=a973b2..afcd06 blocks=1 txs=0 mgas=0.000 elapsed=6.431ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:44.014] Imported new chain segment number=5534 hash=122c6e..3e72af blocks=1 txs=0 mgas=0.000 elapsed=8.041ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:47.987] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:02:49.028] Imported new chain segment number=5535 hash=2fe9be..bb751a blocks=1 txs=0 mgas=0.000 elapsed=7.168ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:54.014] Imported new chain segment number=5536 hash=2040db..366688 blocks=1 txs=0 mgas=0.000 elapsed=6.271ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:02:58.005] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:02:59.043] Imported new chain segment number=5537 hash=dcff13..3ddfb8 blocks=1 txs=0 mgas=0.000 elapsed=21.869ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:04.025] Imported new chain segment number=5538 hash=d87750..8ab4df blocks=1 txs=0 mgas=0.000 elapsed=11.774ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:08.027] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:03:09.037] Imported new chain segment number=5539 hash=b46817..98d113 blocks=1 txs=0 mgas=0.000 elapsed=12.062ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:14.039] Imported new chain segment number=5540 hash=4f9a48..068eee blocks=1 txs=0 mgas=0.000 elapsed=20.410ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:18.044] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:03:23.575] Imported new chain segment number=5541 hash=044f6b..53fb24 blocks=1 txs=0 mgas=0.000 elapsed=1.513s mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:24.789] Imported new chain segment number=5542 hash=6d27ac..bdec06 blocks=1 txs=0 mgas=0.000 elapsed=18.052ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:28.066] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:03:29.050] Imported new chain segment number=5543 hash=af48af..3a04b2 blocks=1 txs=0 mgas=0.000 elapsed=32.111ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:34.058] Imported new chain segment number=5544 hash=98bc5e..27000e blocks=1 txs=0 mgas=0.000 elapsed=29.983ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:38.086] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:03:39.028] Imported new chain segment number=5545 hash=f95f66..7b07c8 blocks=1 txs=0 mgas=0.000 elapsed=11.394ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:44.055] Imported new chain segment number=5546 hash=2b1a1c..5e2d54 blocks=1 txs=0 mgas=0.000 elapsed=34.589ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:48.106] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:03:49.051] Imported new chain segment number=5547 hash=23f7e1..4ae156 blocks=1 txs=0 mgas=0.000 elapsed=32.679ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:54.019] Imported new chain segment number=5548 hash=ab83e9..8326ab blocks=1 txs=0 mgas=0.000 elapsed=11.880ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:03:58.128] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:03:59.052] Imported new chain segment number=5549 hash=a32c65..a5516f blocks=1 txs=0 mgas=0.000 elapsed=31.073ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:04.028] Imported new chain segment number=5550 hash=151c9a..1f3154 blocks=1 txs=0 mgas=0.000 elapsed=17.824ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:08.150] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:04:09.012] Imported new chain segment number=5551 hash=57d6a5..07e819 blocks=1 txs=0 mgas=0.000 elapsed=4.854ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:14.013] Imported new chain segment number=5552 hash=f5725b..ee9807 blocks=1 txs=0 mgas=0.000 elapsed=6.755ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:18.171] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:04:19.016] Imported new chain segment number=5553 hash=82545a..8dfb22 blocks=1 txs=0 mgas=0.000 elapsed=8.509ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:24.016] Imported new chain segment number=5554 hash=57cafa..bf7f38 blocks=1 txs=0 mgas=0.000 elapsed=6.276ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:28.193] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:04:29.015] Imported new chain segment number=5555 hash=8be266..bbfffa blocks=1 txs=0 mgas=0.000 elapsed=5.949ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:34.016] Imported new chain segment number=5556 hash=cb0e72..ed8d27 blocks=1 txs=0 mgas=0.000 elapsed=6.897ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:38.215] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:04:39.014] Imported new chain segment number=5557 hash=dbc1e9..f6e150 blocks=1 txs=0 mgas=0.000 elapsed=7.613ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:44.015] Imported new chain segment number=5558 hash=277e8b..fa41a8 blocks=1 txs=0 mgas=0.000 elapsed=6.597ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:48.236] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:04:49.014] Imported new chain segment number=5559 hash=b86cd6..5313fd blocks=1 txs=0 mgas=0.000 elapsed=5.472ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:54.016] Imported new chain segment number=5560 hash=d7e91a..5bdd10 blocks=1 txs=0 mgas=0.000 elapsed=8.280ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:04:58.256] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:04:59.015] Imported new chain segment number=5561 hash=80472d..b1fb94 blocks=1 txs=0 mgas=0.000 elapsed=7.085ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:04.018] Imported new chain segment number=5562 hash=35fb46..12fb9f blocks=1 txs=0 mgas=0.000 elapsed=8.365ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:08.276] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:05:09.015] Imported new chain segment number=5563 hash=b01c98..23f192 blocks=1 txs=0 mgas=0.000 elapsed=5.697ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:14.016] Imported new chain segment number=5564 hash=0e1eab..0a2b82 blocks=1 txs=0 mgas=0.000 elapsed=6.217ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:18.305] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:05:19.016] Imported new chain segment number=5565 hash=19abe9..67f9d6 blocks=1 txs=0 mgas=0.000 elapsed=7.183ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:24.011] Imported new chain segment number=5566 hash=ec3d48..e2742a blocks=1 txs=0 mgas=0.000 elapsed=5.512ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:28.325] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:05:29.013] Imported new chain segment number=5567 hash=ef0e1c..710fc4 blocks=1 txs=0 mgas=0.000 elapsed=5.978ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:34.015] Imported new chain segment number=5568 hash=61e092..5813d1 blocks=1 txs=0 mgas=0.000 elapsed=6.105ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:38.346] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:05:39.015] Imported new chain segment number=5569 hash=eac5a8..77c4ed blocks=1 txs=0 mgas=0.000 elapsed=6.326ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:44.014] Imported new chain segment number=5570 hash=4b01b8..7014df blocks=1 txs=0 mgas=0.000 elapsed=6.038ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:48.368] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:05:49.016] Imported new chain segment number=5571 hash=9d990f..955785 blocks=1 txs=0 mgas=0.000 elapsed=6.368ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:54.014] Imported new chain segment number=5572 hash=7fee85..6487b5 blocks=1 txs=0 mgas=0.000 elapsed=4.573ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:05:58.388] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:05:59.018] Imported new chain segment number=5573 hash=22348d..c86b7d blocks=1 txs=0 mgas=0.000 elapsed=10.794ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:04.016] Imported new chain segment number=5574 hash=14f873..f667a6 blocks=1 txs=0 mgas=0.000 elapsed=8.918ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:08.411] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:06:09.015] Imported new chain segment number=5575 hash=6f2bb9..8ac5d8 blocks=1 txs=0 mgas=0.000 elapsed=5.933ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:14.016] Imported new chain segment number=5576 hash=5420c6..5e6e94 blocks=1 txs=0 mgas=0.000 elapsed=7.126ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:18.433] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:06:19.013] Imported new chain segment number=5577 hash=71f49d..28091e blocks=1 txs=0 mgas=0.000 elapsed=4.048ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:24.014] Imported new chain segment number=5578 hash=a47704..0bcdab blocks=1 txs=0 mgas=0.000 elapsed=6.140ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:28.452] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:06:29.021] Imported new chain segment number=5579 hash=306ee5..23c687 blocks=1 txs=0 mgas=0.000 elapsed=10.083ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:34.017] Imported new chain segment number=5580 hash=5f7cdc..e7442b blocks=1 txs=0 mgas=0.000 elapsed=4.658ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:38.474] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:06:39.021] Imported new chain segment number=5581 hash=43a4d0..2ad781 blocks=1 txs=0 mgas=0.000 elapsed=9.444ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:44.015] Imported new chain segment number=5582 hash=2cb688..98171e blocks=1 txs=0 mgas=0.000 elapsed=6.387ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:48.494] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:06:49.017] Imported new chain segment number=5583 hash=7b3769..7d3efe blocks=1 txs=0 mgas=0.000 elapsed=7.149ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:54.018] Imported new chain segment number=5584 hash=b83e50..e124cf blocks=1 txs=0 mgas=0.000 elapsed=8.665ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:06:58.515] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:06:59.017] Imported new chain segment number=5585 hash=6a68b7..ef8fbd blocks=1 txs=0 mgas=0.000 elapsed=6.427ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:04.010] Imported new chain segment number=5586 hash=14a415..72e8c0 blocks=1 txs=0 mgas=0.000 elapsed=4.763ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:08.535] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:07:09.010] Imported new chain segment number=5587 hash=79ddc2..e9bfe9 blocks=1 txs=0 mgas=0.000 elapsed=4.685ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:14.017] Imported new chain segment number=5588 hash=fa6d69..dba5dd blocks=1 txs=0 mgas=0.000 elapsed=7.561ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:18.556] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:07:19.017] Imported new chain segment number=5589 hash=8a8bbc..dd4e48 blocks=1 txs=0 mgas=0.000 elapsed=6.318ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:24.016] Imported new chain segment number=5590 hash=141124..558811 blocks=1 txs=0 mgas=0.000 elapsed=6.705ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:28.579] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:07:29.018] Imported new chain segment number=5591 hash=086196..cb5f91 blocks=1 txs=0 mgas=0.000 elapsed=6.860ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:34.021] Imported new chain segment number=5592 hash=b8539e..896236 blocks=1 txs=0 mgas=0.000 elapsed=9.643ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:38.600] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:07:39.018] Imported new chain segment number=5593 hash=1b8e4a..613c2e blocks=1 txs=0 mgas=0.000 elapsed=6.616ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:44.019] Imported new chain segment number=5594 hash=972595..f97b1e blocks=1 txs=0 mgas=0.000 elapsed=6.071ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:48.624] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:07:49.019] Imported new chain segment number=5595 hash=06ba2a..8eb6df blocks=1 txs=0 mgas=0.000 elapsed=6.715ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:54.018] Imported new chain segment number=5596 hash=0a7382..b8fa01 blocks=1 txs=0 mgas=0.000 elapsed=7.513ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:07:58.646] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:07:59.018] Imported new chain segment number=5597 hash=4b9199..2584ef blocks=1 txs=0 mgas=0.000 elapsed=6.542ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:04.015] Imported new chain segment number=5598 hash=9cb757..b0a408 blocks=1 txs=0 mgas=0.000 elapsed=5.639ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:08.669] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:08:09.017] Imported new chain segment number=5599 hash=759c64..f120b4 blocks=1 txs=0 mgas=0.000 elapsed=5.735ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:14.017] Imported new chain segment number=5600 hash=841c83..b6ea0f blocks=1 txs=0 mgas=0.000 elapsed=5.832ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:18.685] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:08:19.016] Imported new chain segment number=5601 hash=4b8dac..34a433 blocks=1 txs=0 mgas=0.000 elapsed=6.230ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:24.014] Imported new chain segment number=5602 hash=b1e0fb..821b31 blocks=1 txs=0 mgas=0.000 elapsed=5.592ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:28.702] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:08:29.017] Imported new chain segment number=5603 hash=e316f7..ec1f9b blocks=1 txs=0 mgas=0.000 elapsed=6.971ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:34.022] Imported new chain segment number=5604 hash=8120fc..acb3ad blocks=1 txs=0 mgas=0.000 elapsed=7.739ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:38.724] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:08:39.015] Imported new chain segment number=5605 hash=abf75f..0b4aa7 blocks=1 txs=0 mgas=0.000 elapsed=7.621ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:44.012] Imported new chain segment number=5606 hash=9474fd..d6952f blocks=1 txs=0 mgas=0.000 elapsed=3.211ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:48.744] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:08:49.013] Imported new chain segment number=5607 hash=199fd6..a8da26 blocks=1 txs=0 mgas=0.000 elapsed=5.458ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:54.020] Imported new chain segment number=5608 hash=f645ec..2c5107 blocks=1 txs=0 mgas=0.000 elapsed=7.571ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:08:58.766] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:08:59.020] Imported new chain segment number=5609 hash=a09d97..23f252 blocks=1 txs=0 mgas=0.000 elapsed=6.307ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:04.020] Imported new chain segment number=5610 hash=6e6e61..ca147a blocks=1 txs=0 mgas=0.000 elapsed=7.247ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:08.784] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:09:09.014] Imported new chain segment number=5611 hash=1b387f..822341 blocks=1 txs=0 mgas=0.000 elapsed=5.433ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:14.015] Imported new chain segment number=5612 hash=3d5e06..1d4192 blocks=1 txs=0 mgas=0.000 elapsed=6.647ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:18.802] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:09:19.016] Imported new chain segment number=5613 hash=f928ef..1f4637 blocks=1 txs=0 mgas=0.000 elapsed=6.478ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:24.014] Imported new chain segment number=5614 hash=a91349..0b2dff blocks=1 txs=0 mgas=0.000 elapsed=5.602ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:28.826] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:09:29.014] Imported new chain segment number=5615 hash=bda5c4..537460 blocks=1 txs=0 mgas=0.000 elapsed=5.311ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:34.019] Imported new chain segment number=5616 hash=f3ec45..84a264 blocks=1 txs=0 mgas=0.000 elapsed=8.322ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:38.848] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:09:39.016] Imported new chain segment number=5617 hash=d6d482..784003 blocks=1 txs=0 mgas=0.000 elapsed=5.843ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:44.016] Imported new chain segment number=5618 hash=169301..006c94 blocks=1 txs=0 mgas=0.000 elapsed=7.551ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:48.866] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:09:49.016] Imported new chain segment number=5619 hash=cba86e..2ad8e3 blocks=1 txs=0 mgas=0.000 elapsed=8.044ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:54.019] Imported new chain segment number=5620 hash=b8f4ff..711acc blocks=1 txs=0 mgas=0.000 elapsed=9.870ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:09:58.885] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:09:59.015] Imported new chain segment number=5621 hash=0ea336..3c3aab blocks=1 txs=0 mgas=0.000 elapsed=5.882ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:04.022] Imported new chain segment number=5622 hash=fc3b08..0eb04a blocks=1 txs=0 mgas=0.000 elapsed=12.826ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:08.904] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:10:09.012] Imported new chain segment number=5623 hash=09c53d..cb67bd blocks=1 txs=0 mgas=0.000 elapsed=7.036ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:14.012] Imported new chain segment number=5624 hash=db5400..2d1760 blocks=1 txs=0 mgas=0.000 elapsed=5.781ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:18.925] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:10:19.013] Imported new chain segment number=5625 hash=26909c..64f076 blocks=1 txs=0 mgas=0.000 elapsed=7.449ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:24.015] Imported new chain segment number=5626 hash=1e625e..94d117 blocks=1 txs=0 mgas=0.000 elapsed=4.935ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:28.949] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:10:29.015] Imported new chain segment number=5627 hash=423f73..fe6d7f blocks=1 txs=0 mgas=0.000 elapsed=5.191ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:34.016] Imported new chain segment number=5628 hash=5c649e..d989ac blocks=1 txs=0 mgas=0.000 elapsed=5.631ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:38.972] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:10:39.017] Imported new chain segment number=5629 hash=2351e9..03720a blocks=1 txs=0 mgas=0.000 elapsed=6.454ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:44.020] Imported new chain segment number=5630 hash=ddf7a4..0abc07 blocks=1 txs=0 mgas=0.000 elapsed=7.204ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:48.992] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:10:49.016] Imported new chain segment number=5631 hash=a99914..45d880 blocks=1 txs=0 mgas=0.000 elapsed=4.917ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:54.018] Imported new chain segment number=5632 hash=1be2b9..378057 blocks=1 txs=0 mgas=0.000 elapsed=8.109ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:10:59.010] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:10:59.014] Imported new chain segment number=5633 hash=df3013..72635c blocks=1 txs=0 mgas=0.000 elapsed=5.310ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:04.016] Imported new chain segment number=5634 hash=558599..cc978b blocks=1 txs=0 mgas=0.000 elapsed=7.492ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:09.014] Imported new chain segment number=5635 hash=ca2471..2e9b6a blocks=1 txs=0 mgas=0.000 elapsed=5.953ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:09.033] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:11:14.019] Imported new chain segment number=5636 hash=b1a328..23fd6e blocks=1 txs=0 mgas=0.000 elapsed=6.730ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:19.016] Imported new chain segment number=5637 hash=f6f8ae..922dfc blocks=1 txs=0 mgas=0.000 elapsed=5.724ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:19.051] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:11:24.018] Imported new chain segment number=5638 hash=ae8e37..41dec5 blocks=1 txs=0 mgas=0.000 elapsed=6.552ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:29.020] Imported new chain segment number=5639 hash=f6112f..1b8cb4 blocks=1 txs=0 mgas=0.000 elapsed=7.734ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:29.080] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:11:34.015] Imported new chain segment number=5640 hash=70dae6..654986 blocks=1 txs=0 mgas=0.000 elapsed=4.823ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:39.015] Imported new chain segment number=5641 hash=d690e0..3cc132 blocks=1 txs=0 mgas=0.000 elapsed=6.612ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:39.101] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:11:44.021] Imported new chain segment number=5642 hash=d64fc8..90130f blocks=1 txs=0 mgas=0.000 elapsed=7.683ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:49.019] Imported new chain segment number=5643 hash=a66cb6..11d632 blocks=1 txs=0 mgas=0.000 elapsed=6.794ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:49.121] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:11:54.013] Imported new chain segment number=5644 hash=f28744..39d20f blocks=1 txs=0 mgas=0.000 elapsed=5.671ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:59.018] Imported new chain segment number=5645 hash=76f3d7..861bb9 blocks=1 txs=0 mgas=0.000 elapsed=5.772ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:11:59.144] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:12:04.011] Imported new chain segment number=5646 hash=f55c6e..c80329 blocks=1 txs=0 mgas=0.000 elapsed=4.629ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:09.014] Imported new chain segment number=5647 hash=b068ba..3820c0 blocks=1 txs=0 mgas=0.000 elapsed=6.230ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:09.165] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:12:14.019] Imported new chain segment number=5648 hash=5b0309..b4163c blocks=1 txs=0 mgas=0.000 elapsed=7.190ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:19.020] Imported new chain segment number=5649 hash=1e80c1..55ac71 blocks=1 txs=0 mgas=0.000 elapsed=7.375ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:19.187] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:12:24.019] Imported new chain segment number=5650 hash=1424d7..54cff0 blocks=1 txs=0 mgas=0.000 elapsed=7.583ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:29.019] Imported new chain segment number=5651 hash=ce6508..3978bf blocks=1 txs=0 mgas=0.000 elapsed=6.115ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:29.209] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:12:34.019] Imported new chain segment number=5652 hash=edf40a..b023d9 blocks=1 txs=0 mgas=0.000 elapsed=6.340ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:39.019] Imported new chain segment number=5653 hash=0069c4..4311c5 blocks=1 txs=0 mgas=0.000 elapsed=4.499ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:39.233] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:12:44.012] Imported new chain segment number=5654 hash=8929fd..5366ae blocks=1 txs=0 mgas=0.000 elapsed=5.790ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:49.014] Imported new chain segment number=5655 hash=448778..accb1d blocks=1 txs=0 mgas=0.000 elapsed=6.185ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:49.255] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:12:54.020] Imported new chain segment number=5656 hash=4e9159..f5d68a blocks=1 txs=0 mgas=0.000 elapsed=7.104ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:59.017] Imported new chain segment number=5657 hash=5239aa..12ed62 blocks=1 txs=0 mgas=0.000 elapsed=5.980ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:12:59.276] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:13:04.018] Imported new chain segment number=5658 hash=7bc63f..60254f blocks=1 txs=0 mgas=0.000 elapsed=6.632ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:09.017] Imported new chain segment number=5659 hash=ed61b0..2ab44b blocks=1 txs=0 mgas=0.000 elapsed=6.404ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:09.298] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:13:14.018] Imported new chain segment number=5660 hash=ee3c90..0e61c6 blocks=1 txs=0 mgas=0.000 elapsed=8.253ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:19.015] Imported new chain segment number=5661 hash=fe6db0..b54c92 blocks=1 txs=0 mgas=0.000 elapsed=4.816ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:19.317] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:13:24.013] Imported new chain segment number=5662 hash=4ec219..6f5304 blocks=1 txs=0 mgas=0.000 elapsed=6.365ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:29.018] Imported new chain segment number=5663 hash=b24294..c54ff9 blocks=1 txs=0 mgas=0.000 elapsed=7.034ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:29.336] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:13:34.014] Imported new chain segment number=5664 hash=0a6480..d31b32 blocks=1 txs=0 mgas=0.000 elapsed=4.947ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:39.019] Imported new chain segment number=5665 hash=cf1d7b..e2d268 blocks=1 txs=0 mgas=0.000 elapsed=6.951ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:39.357] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:13:44.015] Imported new chain segment number=5666 hash=1b88a3..a48dea blocks=1 txs=0 mgas=0.000 elapsed=6.733ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:49.012] Imported new chain segment number=5667 hash=d9b1eb..898b7d blocks=1 txs=0 mgas=0.000 elapsed=5.296ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:49.378] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:13:54.018] Imported new chain segment number=5668 hash=f1cc39..0a23d7 blocks=1 txs=0 mgas=0.000 elapsed=6.273ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:59.016] Imported new chain segment number=5669 hash=399107..618161 blocks=1 txs=0 mgas=0.000 elapsed=5.712ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:13:59.399] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:14:04.017] Imported new chain segment number=5670 hash=ef383d..ad2228 blocks=1 txs=0 mgas=0.000 elapsed=5.746ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:09.015] Imported new chain segment number=5671 hash=44b311..754827 blocks=1 txs=0 mgas=0.000 elapsed=4.341ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:09.421] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:14:14.017] Imported new chain segment number=5672 hash=4722c9..2dabb2 blocks=1 txs=0 mgas=0.000 elapsed=4.926ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:19.017] Imported new chain segment number=5673 hash=fc1635..e30080 blocks=1 txs=0 mgas=0.000 elapsed=5.637ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:19.444] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:14:24.017] Imported new chain segment number=5674 hash=a095d2..df8331 blocks=1 txs=0 mgas=0.000 elapsed=6.059ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:29.019] Imported new chain segment number=5675 hash=a6bbfd..0223e0 blocks=1 txs=0 mgas=0.000 elapsed=7.919ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:29.465] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:14:34.017] Imported new chain segment number=5676 hash=0e6864..acea2d blocks=1 txs=0 mgas=0.000 elapsed=7.179ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:39.015] Imported new chain segment number=5677 hash=a5dc3a..65b66d blocks=1 txs=0 mgas=0.000 elapsed=5.715ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:39.485] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:14:44.021] Imported new chain segment number=5678 hash=619122..8267ab blocks=1 txs=0 mgas=0.000 elapsed=7.406ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:49.015] Imported new chain segment number=5679 hash=491d6d..e190e7 blocks=1 txs=0 mgas=0.000 elapsed=5.910ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:49.505] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:14:54.019] Imported new chain segment number=5680 hash=dbf581..59e41a blocks=1 txs=0 mgas=0.000 elapsed=6.705ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:59.018] Imported new chain segment number=5681 hash=41f592..f9220c blocks=1 txs=0 mgas=0.000 elapsed=9.670ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:14:59.525] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:15:04.017] Imported new chain segment number=5682 hash=6816db..80f103 blocks=1 txs=0 mgas=0.000 elapsed=4.903ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:09.019] Imported new chain segment number=5683 hash=cd80d4..701a4c blocks=1 txs=0 mgas=0.000 elapsed=7.348ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:09.545] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:15:14.020] Imported new chain segment number=5684 hash=236a9c..17c126 blocks=1 txs=0 mgas=0.000 elapsed=7.265ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:19.018] Imported new chain segment number=5685 hash=622a87..af029d blocks=1 txs=0 mgas=0.000 elapsed=7.110ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:19.568] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:15:24.020] Imported new chain segment number=5686 hash=bb4b9f..7d3e2e blocks=1 txs=0 mgas=0.000 elapsed=5.951ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:29.016] Imported new chain segment number=5687 hash=cb5c12..62016c blocks=1 txs=0 mgas=0.000 elapsed=6.016ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:29.591] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:15:34.018] Imported new chain segment number=5688 hash=8b0f2f..97f652 blocks=1 txs=0 mgas=0.000 elapsed=6.581ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:39.015] Imported new chain segment number=5689 hash=dee8fa..dba599 blocks=1 txs=0 mgas=0.000 elapsed=4.809ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:39.611] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:15:44.018] Imported new chain segment number=5690 hash=9d697c..2045b1 blocks=1 txs=0 mgas=0.000 elapsed=7.627ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:49.019] Imported new chain segment number=5691 hash=05fdd8..064343 blocks=1 txs=0 mgas=0.000 elapsed=8.065ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:49.633] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:15:54.013] Imported new chain segment number=5692 hash=e88538..effb30 blocks=1 txs=0 mgas=0.000 elapsed=5.405ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:59.014] Imported new chain segment number=5693 hash=9f933b..0db425 blocks=1 txs=0 mgas=0.000 elapsed=7.549ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:15:59.654] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:16:04.013] Imported new chain segment number=5694 hash=fc44eb..d4a561 blocks=1 txs=0 mgas=0.000 elapsed=5.198ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:09.021] Imported new chain segment number=5695 hash=07daca..8ba07d blocks=1 txs=0 mgas=0.000 elapsed=8.571ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:09.676] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:16:14.021] Imported new chain segment number=5696 hash=e4ad63..fbc5bc blocks=1 txs=0 mgas=0.000 elapsed=6.903ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:19.018] Imported new chain segment number=5697 hash=120312..78f64e blocks=1 txs=0 mgas=0.000 elapsed=6.764ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:19.695] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:16:24.015] Imported new chain segment number=5698 hash=136356..b8e174 blocks=1 txs=0 mgas=0.000 elapsed=5.052ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:29.021] Imported new chain segment number=5699 hash=70f675..8612ae blocks=1 txs=0 mgas=0.000 elapsed=7.588ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:29.714] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:16:34.017] Imported new chain segment number=5700 hash=fddffc..00a710 blocks=1 txs=0 mgas=0.000 elapsed=6.239ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:39.014] Imported new chain segment number=5701 hash=c31d6b..401716 blocks=1 txs=0 mgas=0.000 elapsed=5.427ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:39.734] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:16:44.018] Imported new chain segment number=5702 hash=f2655a..77359c blocks=1 txs=0 mgas=0.000 elapsed=6.227ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:49.020] Imported new chain segment number=5703 hash=0d9856..4a6820 blocks=1 txs=0 mgas=0.000 elapsed=7.047ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:49.752] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:16:54.019] Imported new chain segment number=5704 hash=472b64..57803d blocks=1 txs=0 mgas=0.000 elapsed=7.235ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:59.011] Imported new chain segment number=5705 hash=91840b..13740f blocks=1 txs=0 mgas=0.000 elapsed=5.368ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:16:59.772] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:17:04.011] Imported new chain segment number=5706 hash=852e18..9ad39e blocks=1 txs=0 mgas=0.000 elapsed=4.859ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:09.020] Imported new chain segment number=5707 hash=db5b4d..0efd5a blocks=1 txs=0 mgas=0.000 elapsed=6.727ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:09.792] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:17:14.024] Imported new chain segment number=5708 hash=0e950d..a43cbd blocks=1 txs=0 mgas=0.000 elapsed=7.260ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:19.011] Imported new chain segment number=5709 hash=a37cc2..60172e blocks=1 txs=0 mgas=0.000 elapsed=5.315ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:19.814] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:17:24.019] Imported new chain segment number=5710 hash=f1979b..a31cc0 blocks=1 txs=0 mgas=0.000 elapsed=7.677ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:29.012] Imported new chain segment number=5711 hash=80283d..46be76 blocks=1 txs=0 mgas=0.000 elapsed=6.057ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:29.835] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:17:34.012] Imported new chain segment number=5712 hash=36a9da..f559c2 blocks=1 txs=0 mgas=0.000 elapsed=5.753ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:39.020] Imported new chain segment number=5713 hash=a8c1c1..11ee38 blocks=1 txs=0 mgas=0.000 elapsed=7.620ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:39.854] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:17:44.017] Imported new chain segment number=5714 hash=c2a518..6b9b73 blocks=1 txs=0 mgas=0.000 elapsed=6.429ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:49.017] Imported new chain segment number=5715 hash=01377b..608b2a blocks=1 txs=0 mgas=0.000 elapsed=6.006ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:49.873] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:17:54.019] Imported new chain segment number=5716 hash=b00aa2..501cb4 blocks=1 txs=0 mgas=0.000 elapsed=7.814ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:59.019] Imported new chain segment number=5717 hash=caf716..fe284b blocks=1 txs=0 mgas=0.000 elapsed=8.586ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:17:59.893] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:18:04.017] Imported new chain segment number=5718 hash=fcd4af..824d61 blocks=1 txs=0 mgas=0.000 elapsed=6.296ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:18:09.017] Imported new chain segment number=5719 hash=6fe332..29361c blocks=1 txs=0 mgas=0.000 elapsed=6.135ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:18:09.912] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:18:14.018] Imported new chain segment number=5720 hash=6c80c2..ac8edb blocks=1 txs=0 mgas=0.000 elapsed=7.136ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:18:19.011] Imported new chain segment number=5721 hash=a5264e..9c6c92 blocks=1 txs=0 mgas=0.000 elapsed=5.791ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:18:19.932] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:18:24.015] Imported new chain segment number=5722 hash=fe8711..5d88a6 blocks=1 txs=0 mgas=0.000 elapsed=6.022ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:18:29.016] Imported new chain segment number=5723 hash=9e8095..689dfb blocks=1 txs=0 mgas=0.000 elapsed=5.807ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:18:29.952] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:18:34.015] Imported new chain segment number=5724 hash=4c5a1e..da9c8b blocks=1 txs=0 mgas=0.000 elapsed=7.119ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:18:39.012] Imported new chain segment number=5725 hash=70c1ea..f0d534 blocks=1 txs=0 mgas=0.000 elapsed=5.725ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:18:39.971] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:18:44.016] Imported new chain segment number=5726 hash=2f2b68..286307 blocks=1 txs=0 mgas=0.000 elapsed=5.847ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:18:49.015] Imported new chain segment number=5727 hash=2da9dc..a57cc0 blocks=1 txs=0 mgas=0.000 elapsed=5.666ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:18:49.993] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:18:54.013] Imported new chain segment number=5728 hash=31df78..d85a56 blocks=1 txs=0 mgas=0.000 elapsed=5.820ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:18:59.015] Imported new chain segment number=5729 hash=4bf1c4..dd7da2 blocks=1 txs=0 mgas=0.000 elapsed=6.054ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:00.010] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:19:04.012] Imported new chain segment number=5730 hash=0d6257..cf1039 blocks=1 txs=0 mgas=0.000 elapsed=5.283ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:09.027] Imported new chain segment number=5731 hash=08f71b..2516dd blocks=1 txs=0 mgas=0.000 elapsed=10.761ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:10.032] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:19:14.020] Imported new chain segment number=5732 hash=ce9769..3a177e blocks=1 txs=0 mgas=0.000 elapsed=7.524ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:19.020] Imported new chain segment number=5733 hash=99c75c..69e64b blocks=1 txs=0 mgas=0.000 elapsed=6.966ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:20.051] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:19:24.012] Imported new chain segment number=5734 hash=9a8826..311a2c blocks=1 txs=0 mgas=0.000 elapsed=5.026ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:29.021] Imported new chain segment number=5735 hash=743d71..eb1932 blocks=1 txs=0 mgas=0.000 elapsed=7.022ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:30.070] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:19:34.019] Imported new chain segment number=5736 hash=33b8cf..613bcd blocks=1 txs=0 mgas=0.000 elapsed=6.404ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:39.015] Imported new chain segment number=5737 hash=d40fd3..4cd372 blocks=1 txs=0 mgas=0.000 elapsed=5.532ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:40.089] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:19:44.017] Imported new chain segment number=5738 hash=b82728..686d5d blocks=1 txs=0 mgas=0.000 elapsed=6.244ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:49.017] Imported new chain segment number=5739 hash=214f5b..bc9bb6 blocks=1 txs=0 mgas=0.000 elapsed=6.986ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:50.113] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:19:54.020] Imported new chain segment number=5740 hash=7fdcda..0bc732 blocks=1 txs=0 mgas=0.000 elapsed=8.173ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:19:59.019] Imported new chain segment number=5741 hash=eb4716..d81ff0 blocks=1 txs=0 mgas=0.000 elapsed=6.724ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:00.133] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:20:04.018] Imported new chain segment number=5742 hash=901663..40a3b5 blocks=1 txs=0 mgas=0.000 elapsed=6.286ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:09.021] Imported new chain segment number=5743 hash=35c86e..04b316 blocks=1 txs=0 mgas=0.000 elapsed=9.447ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:10.156] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:20:14.017] Imported new chain segment number=5744 hash=f76bd5..c42323 blocks=1 txs=0 mgas=0.000 elapsed=5.470ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:19.012] Imported new chain segment number=5745 hash=2e2187..939f97 blocks=1 txs=0 mgas=0.000 elapsed=5.976ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:20.178] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:20:24.020] Imported new chain segment number=5746 hash=4d5720..65277c blocks=1 txs=0 mgas=0.000 elapsed=7.403ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:29.020] Imported new chain segment number=5747 hash=8c8894..20bb41 blocks=1 txs=0 mgas=0.000 elapsed=7.051ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:30.195] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:20:34.019] Imported new chain segment number=5748 hash=5ea7ad..d524b6 blocks=1 txs=0 mgas=0.000 elapsed=6.841ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:39.019] Imported new chain segment number=5749 hash=69f206..81087c blocks=1 txs=0 mgas=0.000 elapsed=6.647ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:40.215] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:20:44.019] Imported new chain segment number=5750 hash=c48fa5..fdec08 blocks=1 txs=0 mgas=0.000 elapsed=6.939ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:49.021] Imported new chain segment number=5751 hash=fbc1ad..824993 blocks=1 txs=0 mgas=0.000 elapsed=8.154ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:50.236] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:20:54.021] Imported new chain segment number=5752 hash=672c67..fbbfc6 blocks=1 txs=0 mgas=0.000 elapsed=6.787ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:20:59.017] Imported new chain segment number=5753 hash=7ab45f..f40d33 blocks=1 txs=0 mgas=0.000 elapsed=4.772ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:00.255] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:21:04.020] Imported new chain segment number=5754 hash=462060..2d09b7 blocks=1 txs=0 mgas=0.000 elapsed=7.470ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:09.022] Imported new chain segment number=5755 hash=9918a5..697449 blocks=1 txs=0 mgas=0.000 elapsed=7.780ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:10.274] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:21:14.018] Imported new chain segment number=5756 hash=c48f58..692403 blocks=1 txs=0 mgas=0.000 elapsed=6.230ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:19.014] Imported new chain segment number=5757 hash=173968..cea4ef blocks=1 txs=0 mgas=0.000 elapsed=6.488ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:20.298] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:21:24.018] Imported new chain segment number=5758 hash=d45c40..ab6901 blocks=1 txs=0 mgas=0.000 elapsed=6.561ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:29.019] Imported new chain segment number=5759 hash=9b8948..b676e7 blocks=1 txs=0 mgas=0.000 elapsed=7.345ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:30.320] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:21:34.019] Imported new chain segment number=5760 hash=372425..8479ec blocks=1 txs=0 mgas=0.000 elapsed=7.605ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:39.019] Imported new chain segment number=5761 hash=849d8f..ba6fbf blocks=1 txs=0 mgas=0.000 elapsed=7.316ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:40.341] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:21:44.015] Imported new chain segment number=5762 hash=7adbda..7c0973 blocks=1 txs=0 mgas=0.000 elapsed=4.745ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:49.013] Imported new chain segment number=5763 hash=d9e273..851a53 blocks=1 txs=0 mgas=0.000 elapsed=7.653ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:50.363] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:21:54.015] Imported new chain segment number=5764 hash=fa8871..97ceae blocks=1 txs=0 mgas=0.000 elapsed=5.964ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:21:59.016] Imported new chain segment number=5765 hash=7f107e..378f24 blocks=1 txs=0 mgas=0.000 elapsed=5.211ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:00.381] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:22:04.021] Imported new chain segment number=5766 hash=2bc122..612d94 blocks=1 txs=0 mgas=0.000 elapsed=6.928ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:09.018] Imported new chain segment number=5767 hash=b8a02e..d02475 blocks=1 txs=0 mgas=0.000 elapsed=6.218ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:10.402] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:22:14.014] Imported new chain segment number=5768 hash=4ffb69..a336cc blocks=1 txs=0 mgas=0.000 elapsed=6.647ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:19.013] Imported new chain segment number=5769 hash=4616ac..bac95e blocks=1 txs=0 mgas=0.000 elapsed=5.132ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:20.421] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:22:24.019] Imported new chain segment number=5770 hash=b84fbd..df1558 blocks=1 txs=0 mgas=0.000 elapsed=8.077ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:29.014] Imported new chain segment number=5771 hash=7b9844..d4cc19 blocks=1 txs=0 mgas=0.000 elapsed=5.288ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:30.438] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:22:34.013] Imported new chain segment number=5772 hash=e87b7e..4beed8 blocks=1 txs=0 mgas=0.000 elapsed=5.037ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:39.016] Imported new chain segment number=5773 hash=292068..7fdb72 blocks=1 txs=0 mgas=0.000 elapsed=6.529ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:40.457] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:22:44.018] Imported new chain segment number=5774 hash=5160fc..01ff21 blocks=1 txs=0 mgas=0.000 elapsed=6.642ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:49.018] Imported new chain segment number=5775 hash=4aa5d3..3ba1d9 blocks=1 txs=0 mgas=0.000 elapsed=5.656ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:50.474] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:22:54.018] Imported new chain segment number=5776 hash=93d7ef..62ab91 blocks=1 txs=0 mgas=0.000 elapsed=7.389ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:22:59.012] Imported new chain segment number=5777 hash=a3d205..9a070a blocks=1 txs=0 mgas=0.000 elapsed=5.715ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:00.496] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:23:04.017] Imported new chain segment number=5778 hash=7849fb..0d3952 blocks=1 txs=0 mgas=0.000 elapsed=6.801ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:09.022] Imported new chain segment number=5779 hash=58d335..a84890 blocks=1 txs=0 mgas=0.000 elapsed=8.466ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:10.517] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:23:14.019] Imported new chain segment number=5780 hash=5b7e84..dd33eb blocks=1 txs=0 mgas=0.000 elapsed=7.417ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:19.022] Imported new chain segment number=5781 hash=c1715a..100818 blocks=1 txs=0 mgas=0.000 elapsed=10.626ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:20.534] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:23:24.013] Imported new chain segment number=5782 hash=86b40c..1095d4 blocks=1 txs=0 mgas=0.000 elapsed=6.059ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:29.012] Imported new chain segment number=5783 hash=581cb0..a59b66 blocks=1 txs=0 mgas=0.000 elapsed=3.605ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:30.553] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:23:34.019] Imported new chain segment number=5784 hash=dff722..b20468 blocks=1 txs=0 mgas=0.000 elapsed=8.037ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:39.012] Imported new chain segment number=5785 hash=f3a1ca..cf21e3 blocks=1 txs=0 mgas=0.000 elapsed=5.248ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:40.571] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:23:44.018] Imported new chain segment number=5786 hash=e58fd8..e84fbb blocks=1 txs=0 mgas=0.000 elapsed=5.751ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:49.020] Imported new chain segment number=5787 hash=097501..d64712 blocks=1 txs=0 mgas=0.000 elapsed=7.368ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:50.591] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:23:54.011] Imported new chain segment number=5788 hash=fbcebd..1e55e1 blocks=1 txs=0 mgas=0.000 elapsed=4.865ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:23:59.016] Imported new chain segment number=5789 hash=94e5c6..1518e2 blocks=1 txs=0 mgas=0.000 elapsed=6.182ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:00.610] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:24:04.021] Imported new chain segment number=5790 hash=67e5a1..63da02 blocks=1 txs=0 mgas=0.000 elapsed=7.334ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:09.016] Imported new chain segment number=5791 hash=a41fb5..ed7e0d blocks=1 txs=0 mgas=0.000 elapsed=5.363ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:10.632] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:24:14.019] Imported new chain segment number=5792 hash=6089e7..fad6ca blocks=1 txs=0 mgas=0.000 elapsed=6.736ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:19.020] Imported new chain segment number=5793 hash=ce76ff..dce6eb blocks=1 txs=0 mgas=0.000 elapsed=7.877ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:20.655] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:24:24.019] Imported new chain segment number=5794 hash=039163..5403e2 blocks=1 txs=0 mgas=0.000 elapsed=7.524ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:29.018] Imported new chain segment number=5795 hash=050515..390fd8 blocks=1 txs=0 mgas=0.000 elapsed=7.106ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:30.677] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:24:34.019] Imported new chain segment number=5796 hash=e6081e..31a184 blocks=1 txs=0 mgas=0.000 elapsed=7.173ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:39.020] Imported new chain segment number=5797 hash=4e88f5..9d92aa blocks=1 txs=0 mgas=0.000 elapsed=7.081ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:40.697] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:24:44.012] Imported new chain segment number=5798 hash=49cb19..dade1d blocks=1 txs=0 mgas=0.000 elapsed=5.179ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:49.011] Imported new chain segment number=5799 hash=924a5d..ed8a75 blocks=1 txs=0 mgas=0.000 elapsed=5.640ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:50.715] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:24:54.017] Imported new chain segment number=5800 hash=560866..7aeada blocks=1 txs=0 mgas=0.000 elapsed=6.812ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:24:59.022] Imported new chain segment number=5801 hash=53b208..859d55 blocks=1 txs=0 mgas=0.000 elapsed=9.025ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:00.736] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:25:04.017] Imported new chain segment number=5802 hash=a4f18f..71cc63 blocks=1 txs=0 mgas=0.000 elapsed=6.905ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:09.011] Imported new chain segment number=5803 hash=95331a..e947b7 blocks=1 txs=0 mgas=0.000 elapsed=5.070ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:10.755] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:25:14.017] Imported new chain segment number=5804 hash=5ca019..bdb9b2 blocks=1 txs=0 mgas=0.000 elapsed=6.912ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:19.012] Imported new chain segment number=5805 hash=5b4c07..a562ab blocks=1 txs=0 mgas=0.000 elapsed=5.584ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:20.776] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:25:24.016] Imported new chain segment number=5806 hash=c7b6cb..5d3674 blocks=1 txs=0 mgas=0.000 elapsed=6.331ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:29.020] Imported new chain segment number=5807 hash=a465f8..ece376 blocks=1 txs=0 mgas=0.000 elapsed=7.402ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:30.797] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:25:34.019] Imported new chain segment number=5808 hash=171994..2ca66e blocks=1 txs=0 mgas=0.000 elapsed=5.645ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:39.019] Imported new chain segment number=5809 hash=103bbc..18ce83 blocks=1 txs=0 mgas=0.000 elapsed=6.765ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:40.816] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:25:44.018] Imported new chain segment number=5810 hash=f4f045..55ea47 blocks=1 txs=0 mgas=0.000 elapsed=7.105ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:49.018] Imported new chain segment number=5811 hash=3b839c..565718 blocks=1 txs=0 mgas=0.000 elapsed=7.369ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:50.836] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:25:54.012] Imported new chain segment number=5812 hash=4c4324..b18571 blocks=1 txs=0 mgas=0.000 elapsed=5.171ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:25:59.013] Imported new chain segment number=5813 hash=ce999d..e47820 blocks=1 txs=0 mgas=0.000 elapsed=6.394ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:00.855] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:26:04.018] Imported new chain segment number=5814 hash=315710..ce38cb blocks=1 txs=0 mgas=0.000 elapsed=6.437ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:09.016] Imported new chain segment number=5815 hash=a0842b..3617e2 blocks=1 txs=0 mgas=0.000 elapsed=6.387ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:10.875] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:26:14.024] Imported new chain segment number=5816 hash=584dd6..bc1637 blocks=1 txs=0 mgas=0.000 elapsed=10.790ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:19.019] Imported new chain segment number=5817 hash=2ae932..425314 blocks=1 txs=0 mgas=0.000 elapsed=8.693ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:20.894] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:26:24.011] Imported new chain segment number=5818 hash=ea3921..3f8009 blocks=1 txs=0 mgas=0.000 elapsed=4.932ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:29.017] Imported new chain segment number=5819 hash=6535b2..078144 blocks=1 txs=0 mgas=0.000 elapsed=5.986ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:30.913] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:26:34.017] Imported new chain segment number=5820 hash=bcd0c5..77e89d blocks=1 txs=0 mgas=0.000 elapsed=5.718ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:39.013] Imported new chain segment number=5821 hash=244cb1..50d09a blocks=1 txs=0 mgas=0.000 elapsed=5.974ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:40.932] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:26:44.019] Imported new chain segment number=5822 hash=ca093a..6a641f blocks=1 txs=0 mgas=0.000 elapsed=6.505ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:49.020] Imported new chain segment number=5823 hash=ec7184..4e567c blocks=1 txs=0 mgas=0.000 elapsed=7.112ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:50.954] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:26:54.017] Imported new chain segment number=5824 hash=168e49..5d38ac blocks=1 txs=0 mgas=0.000 elapsed=6.475ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:26:59.017] Imported new chain segment number=5825 hash=9d9ff3..00fc15 blocks=1 txs=0 mgas=0.000 elapsed=6.893ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:00.975] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:27:04.016] Imported new chain segment number=5826 hash=05f734..f68b69 blocks=1 txs=0 mgas=0.000 elapsed=5.999ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:09.017] Imported new chain segment number=5827 hash=0c8c22..5d98db blocks=1 txs=0 mgas=0.000 elapsed=6.034ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:10.996] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:27:14.016] Imported new chain segment number=5828 hash=4cddaf..de50c3 blocks=1 txs=0 mgas=0.000 elapsed=5.748ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:19.019] Imported new chain segment number=5829 hash=82edc6..9323e0 blocks=1 txs=0 mgas=0.000 elapsed=9.881ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:21.014] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:27:24.016] Imported new chain segment number=5830 hash=a68112..36a292 blocks=1 txs=0 mgas=0.000 elapsed=5.699ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:29.012] Imported new chain segment number=5831 hash=0d23a4..8b7d7a blocks=1 txs=0 mgas=0.000 elapsed=5.358ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:31.035] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:27:34.050] Imported new chain segment number=5832 hash=19d0d1..5fe9ee blocks=1 txs=0 mgas=0.000 elapsed=5.236ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:39.016] Imported new chain segment number=5833 hash=7c3e73..d9c035 blocks=1 txs=0 mgas=0.000 elapsed=6.536ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:41.053] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:27:44.019] Imported new chain segment number=5834 hash=2c6881..a9b58d blocks=1 txs=0 mgas=0.000 elapsed=7.492ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:49.017] Imported new chain segment number=5835 hash=f15ca7..a02f25 blocks=1 txs=0 mgas=0.000 elapsed=5.623ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:51.074] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:27:54.021] Imported new chain segment number=5836 hash=6b84b8..e34cfb blocks=1 txs=0 mgas=0.000 elapsed=5.315ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:27:59.012] Imported new chain segment number=5837 hash=65f22b..2d1b20 blocks=1 txs=0 mgas=0.000 elapsed=5.171ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:01.090] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:28:04.019] Imported new chain segment number=5838 hash=f534d3..585cb3 blocks=1 txs=0 mgas=0.000 elapsed=6.306ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:09.021] Imported new chain segment number=5839 hash=7ce218..e8a6d1 blocks=1 txs=0 mgas=0.000 elapsed=7.193ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:11.111] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:28:14.020] Imported new chain segment number=5840 hash=6a9c46..9ab1ef blocks=1 txs=0 mgas=0.000 elapsed=8.563ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:19.021] Imported new chain segment number=5841 hash=7561ed..c62972 blocks=1 txs=0 mgas=0.000 elapsed=6.336ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:21.132] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:28:24.016] Imported new chain segment number=5842 hash=51f8e2..59690a blocks=1 txs=0 mgas=0.000 elapsed=5.794ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:29.018] Imported new chain segment number=5843 hash=425cea..726744 blocks=1 txs=0 mgas=0.000 elapsed=5.702ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:31.150] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:28:34.015] Imported new chain segment number=5844 hash=24f359..5b060b blocks=1 txs=0 mgas=0.000 elapsed=6.826ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:39.018] Imported new chain segment number=5845 hash=aabafe..fc9ae8 blocks=1 txs=0 mgas=0.000 elapsed=5.915ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:41.171] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:28:44.018] Imported new chain segment number=5846 hash=f68b3c..802e4b blocks=1 txs=0 mgas=0.000 elapsed=6.160ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:49.011] Imported new chain segment number=5847 hash=0b3b89..70beec blocks=1 txs=0 mgas=0.000 elapsed=4.521ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:51.189] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:28:54.019] Imported new chain segment number=5848 hash=a40efc..a3131c blocks=1 txs=0 mgas=0.000 elapsed=7.470ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:28:59.019] Imported new chain segment number=5849 hash=ec0b2a..608add blocks=1 txs=0 mgas=0.000 elapsed=7.980ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:01.208] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:29:04.020] Imported new chain segment number=5850 hash=140863..da271d blocks=1 txs=0 mgas=0.000 elapsed=7.783ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:09.018] Imported new chain segment number=5851 hash=03e0c7..7e6a6f blocks=1 txs=0 mgas=0.000 elapsed=5.972ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:11.225] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:29:14.022] Imported new chain segment number=5852 hash=3add0f..dd79ca blocks=1 txs=0 mgas=0.000 elapsed=8.231ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:19.018] Imported new chain segment number=5853 hash=ec07d9..57ed7c blocks=1 txs=0 mgas=0.000 elapsed=6.890ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:21.248] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:29:24.020] Imported new chain segment number=5854 hash=eccae6..1096af blocks=1 txs=0 mgas=0.000 elapsed=6.967ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:29.012] Imported new chain segment number=5855 hash=db4dbf..b0d98b blocks=1 txs=0 mgas=0.000 elapsed=5.940ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:31.269] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:29:34.012] Imported new chain segment number=5856 hash=e99ebd..374dd8 blocks=1 txs=0 mgas=0.000 elapsed=4.749ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:39.018] Imported new chain segment number=5857 hash=e67fe5..daf43c blocks=1 txs=0 mgas=0.000 elapsed=4.918ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:41.287] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:29:44.016] Imported new chain segment number=5858 hash=9e6c41..62fee0 blocks=1 txs=0 mgas=0.000 elapsed=6.666ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:49.021] Imported new chain segment number=5859 hash=ab10ea..006619 blocks=1 txs=0 mgas=0.000 elapsed=9.193ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:51.310] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:29:54.019] Imported new chain segment number=5860 hash=89787d..942f32 blocks=1 txs=0 mgas=0.000 elapsed=7.300ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:29:59.016] Imported new chain segment number=5861 hash=21c1d9..cc9139 blocks=1 txs=0 mgas=0.000 elapsed=4.843ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:01.330] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:30:04.018] Imported new chain segment number=5862 hash=11c6a5..eca60d blocks=1 txs=0 mgas=0.000 elapsed=7.328ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:09.020] Imported new chain segment number=5863 hash=3c4b80..a8f809 blocks=1 txs=0 mgas=0.000 elapsed=7.443ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:11.351] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:30:14.011] Imported new chain segment number=5864 hash=0e6c17..5a807a blocks=1 txs=0 mgas=0.000 elapsed=4.550ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:19.017] Imported new chain segment number=5865 hash=8c79f3..2ae9ba blocks=1 txs=0 mgas=0.000 elapsed=6.752ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:21.372] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:30:24.014] Imported new chain segment number=5866 hash=e0b382..3e1d6f blocks=1 txs=0 mgas=0.000 elapsed=5.846ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:29.016] Imported new chain segment number=5867 hash=53056b..486c58 blocks=1 txs=0 mgas=0.000 elapsed=6.788ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:31.392] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:30:34.017] Imported new chain segment number=5868 hash=79644f..4e5fb0 blocks=1 txs=0 mgas=0.000 elapsed=6.437ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:39.020] Imported new chain segment number=5869 hash=597e38..ea8bad blocks=1 txs=0 mgas=0.000 elapsed=6.541ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:41.414] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:30:44.015] Imported new chain segment number=5870 hash=54847f..4ad3d4 blocks=1 txs=0 mgas=0.000 elapsed=7.271ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:49.020] Imported new chain segment number=5871 hash=a3c8b0..f428bc blocks=1 txs=0 mgas=0.000 elapsed=8.871ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:51.433] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:30:54.020] Imported new chain segment number=5872 hash=0824e1..83847c blocks=1 txs=0 mgas=0.000 elapsed=7.721ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:30:59.021] Imported new chain segment number=5873 hash=8d3ab2..d6b389 blocks=1 txs=0 mgas=0.000 elapsed=7.536ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:01.452] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:31:04.020] Imported new chain segment number=5874 hash=95d710..b5c087 blocks=1 txs=0 mgas=0.000 elapsed=6.312ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:09.017] Imported new chain segment number=5875 hash=c1149c..50d325 blocks=1 txs=0 mgas=0.000 elapsed=6.374ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:11.473] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:31:14.014] Imported new chain segment number=5876 hash=260284..7f073e blocks=1 txs=0 mgas=0.000 elapsed=4.101ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:19.013] Imported new chain segment number=5877 hash=8ae48a..c4696a blocks=1 txs=0 mgas=0.000 elapsed=4.514ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:21.492] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:31:24.020] Imported new chain segment number=5878 hash=e18e6f..f1caf5 blocks=1 txs=0 mgas=0.000 elapsed=7.872ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:29.017] Imported new chain segment number=5879 hash=319ebc..65e4ea blocks=1 txs=0 mgas=0.000 elapsed=7.501ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:31.513] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:31:34.012] Imported new chain segment number=5880 hash=7b41f8..2879dd blocks=1 txs=0 mgas=0.000 elapsed=5.402ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:39.024] Imported new chain segment number=5881 hash=5da633..0062b2 blocks=1 txs=0 mgas=0.000 elapsed=10.333ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:41.532] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:31:44.017] Imported new chain segment number=5882 hash=15a905..6533ad blocks=1 txs=0 mgas=0.000 elapsed=6.826ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:49.022] Imported new chain segment number=5883 hash=fc1f77..1604f2 blocks=1 txs=0 mgas=0.000 elapsed=8.116ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:51.552] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:31:54.013] Imported new chain segment number=5884 hash=73647e..2af678 blocks=1 txs=0 mgas=0.000 elapsed=6.049ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:31:59.018] Imported new chain segment number=5885 hash=3dc216..d3b7ba blocks=1 txs=0 mgas=0.000 elapsed=6.865ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:01.571] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:32:04.015] Imported new chain segment number=5886 hash=098fbb..a61312 blocks=1 txs=0 mgas=0.000 elapsed=6.240ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:09.015] Imported new chain segment number=5887 hash=06f17d..faefe2 blocks=1 txs=0 mgas=0.000 elapsed=6.711ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:11.590] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:32:14.012] Imported new chain segment number=5888 hash=ae2427..00be76 blocks=1 txs=0 mgas=0.000 elapsed=5.175ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:19.013] Imported new chain segment number=5889 hash=e95ef2..2b829c blocks=1 txs=0 mgas=0.000 elapsed=5.859ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:21.611] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:32:24.018] Imported new chain segment number=5890 hash=e4fc11..a6fb91 blocks=1 txs=0 mgas=0.000 elapsed=6.319ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:29.020] Imported new chain segment number=5891 hash=c3bb1b..7af376 blocks=1 txs=0 mgas=0.000 elapsed=7.716ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:31.631] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:32:34.017] Imported new chain segment number=5892 hash=459f67..8ae1c3 blocks=1 txs=0 mgas=0.000 elapsed=6.384ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:39.019] Imported new chain segment number=5893 hash=bee7e3..56854f blocks=1 txs=0 mgas=0.000 elapsed=6.518ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:41.653] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:32:44.012] Imported new chain segment number=5894 hash=3ecdba..9f2635 blocks=1 txs=0 mgas=0.000 elapsed=5.680ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:49.011] Imported new chain segment number=5895 hash=0c8c4b..ba3470 blocks=1 txs=0 mgas=0.000 elapsed=5.265ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:51.670] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:32:54.017] Imported new chain segment number=5896 hash=6634bb..26faf8 blocks=1 txs=0 mgas=0.000 elapsed=6.489ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:32:59.018] Imported new chain segment number=5897 hash=b28275..9e6c16 blocks=1 txs=0 mgas=0.000 elapsed=7.837ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:01.688] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:33:04.015] Imported new chain segment number=5898 hash=d0bab1..e52d55 blocks=1 txs=0 mgas=0.000 elapsed=6.181ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:09.014] Imported new chain segment number=5899 hash=f75c7c..807353 blocks=1 txs=0 mgas=0.000 elapsed=5.584ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:11.706] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:33:14.018] Imported new chain segment number=5900 hash=ddc090..ff9b92 blocks=1 txs=0 mgas=0.000 elapsed=8.184ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:19.012] Imported new chain segment number=5901 hash=9ee958..c1c237 blocks=1 txs=0 mgas=0.000 elapsed=5.003ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:21.725] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:33:24.019] Imported new chain segment number=5902 hash=006ea4..df70bf blocks=1 txs=0 mgas=0.000 elapsed=7.682ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:29.018] Imported new chain segment number=5903 hash=c000d4..3254c1 blocks=1 txs=0 mgas=0.000 elapsed=8.992ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:31.744] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:33:34.018] Imported new chain segment number=5904 hash=d2df70..fe0570 blocks=1 txs=0 mgas=0.000 elapsed=5.788ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:39.015] Imported new chain segment number=5905 hash=5207d4..9aa7f5 blocks=1 txs=0 mgas=0.000 elapsed=6.151ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:41.761] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:33:44.020] Imported new chain segment number=5906 hash=d7dafe..0b6e5b blocks=1 txs=0 mgas=0.000 elapsed=7.482ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:49.016] Imported new chain segment number=5907 hash=1bcb13..6a8197 blocks=1 txs=0 mgas=0.000 elapsed=6.949ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:51.782] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:33:54.011] Imported new chain segment number=5908 hash=4278cc..9faa32 blocks=1 txs=0 mgas=0.000 elapsed=4.922ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:33:59.018] Imported new chain segment number=5909 hash=cb5c85..f08601 blocks=1 txs=0 mgas=0.000 elapsed=5.960ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:01.803] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:34:04.017] Imported new chain segment number=5910 hash=11b948..676697 blocks=1 txs=0 mgas=0.000 elapsed=6.692ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:09.017] Imported new chain segment number=5911 hash=83e93c..794906 blocks=1 txs=0 mgas=0.000 elapsed=8.084ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:11.821] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:34:14.013] Imported new chain segment number=5912 hash=554386..b3258d blocks=1 txs=0 mgas=0.000 elapsed=6.931ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:19.024] Imported new chain segment number=5913 hash=8a9185..cb96ec blocks=1 txs=0 mgas=0.000 elapsed=10.269ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:21.838] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:34:24.013] Imported new chain segment number=5914 hash=7b07ea..a3302b blocks=1 txs=0 mgas=0.000 elapsed=4.890ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:29.013] Imported new chain segment number=5915 hash=bf6a74..91e034 blocks=1 txs=0 mgas=0.000 elapsed=5.578ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:31.856] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:34:34.013] Imported new chain segment number=5916 hash=366164..3af8d9 blocks=1 txs=0 mgas=0.000 elapsed=5.174ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:39.023] Imported new chain segment number=5917 hash=3f376b..8e3172 blocks=1 txs=0 mgas=0.000 elapsed=8.574ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:41.875] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:34:44.013] Imported new chain segment number=5918 hash=85a772..4653c7 blocks=1 txs=0 mgas=0.000 elapsed=6.366ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:49.016] Imported new chain segment number=5919 hash=92a496..257306 blocks=1 txs=0 mgas=0.000 elapsed=8.310ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:51.893] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:34:54.014] Imported new chain segment number=5920 hash=b20a2c..03b86d blocks=1 txs=0 mgas=0.000 elapsed=6.343ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:34:59.009] Imported new chain segment number=5921 hash=18bbf1..2c05c3 blocks=1 txs=0 mgas=0.000 elapsed=3.818ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:01.910] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:35:04.017] Imported new chain segment number=5922 hash=854f21..ee395f blocks=1 txs=0 mgas=0.000 elapsed=8.849ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:09.016] Imported new chain segment number=5923 hash=9f5a5a..705b7d blocks=1 txs=0 mgas=0.000 elapsed=6.158ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:11.930] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:35:14.014] Imported new chain segment number=5924 hash=010cb2..587ef5 blocks=1 txs=0 mgas=0.000 elapsed=6.032ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:19.013] Imported new chain segment number=5925 hash=e8789a..f3362c blocks=1 txs=0 mgas=0.000 elapsed=6.909ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:21.948] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:35:24.016] Imported new chain segment number=5926 hash=515c51..6358c7 blocks=1 txs=0 mgas=0.000 elapsed=7.259ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:29.014] Imported new chain segment number=5927 hash=aba850..9b6066 blocks=1 txs=0 mgas=0.000 elapsed=6.033ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:31.966] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:35:34.016] Imported new chain segment number=5928 hash=2a6616..074d55 blocks=1 txs=0 mgas=0.000 elapsed=6.531ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:39.014] Imported new chain segment number=5929 hash=29405f..fd4539 blocks=1 txs=0 mgas=0.000 elapsed=5.441ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:41.986] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:35:44.014] Imported new chain segment number=5930 hash=fabbe7..b5c19f blocks=1 txs=0 mgas=0.000 elapsed=6.518ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:49.013] Imported new chain segment number=5931 hash=c028a8..0be29b blocks=1 txs=0 mgas=0.000 elapsed=5.883ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:52.006] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:35:54.016] Imported new chain segment number=5932 hash=b7bd6c..b9ff75 blocks=1 txs=0 mgas=0.000 elapsed=7.150ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:35:59.013] Imported new chain segment number=5933 hash=9796f9..815010 blocks=1 txs=0 mgas=0.000 elapsed=7.027ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:02.024] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:36:04.013] Imported new chain segment number=5934 hash=194b22..229986 blocks=1 txs=0 mgas=0.000 elapsed=5.785ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:09.016] Imported new chain segment number=5935 hash=77c358..335b71 blocks=1 txs=0 mgas=0.000 elapsed=7.169ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:12.039] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:36:14.014] Imported new chain segment number=5936 hash=221597..9968f8 blocks=1 txs=0 mgas=0.000 elapsed=5.264ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:19.018] Imported new chain segment number=5937 hash=88ddee..2b3be1 blocks=1 txs=0 mgas=0.000 elapsed=9.275ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:22.054] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:36:24.015] Imported new chain segment number=5938 hash=15fb85..41756d blocks=1 txs=0 mgas=0.000 elapsed=6.144ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:29.014] Imported new chain segment number=5939 hash=6a4f1e..eced52 blocks=1 txs=0 mgas=0.000 elapsed=5.952ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:32.072] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:36:34.011] Imported new chain segment number=5940 hash=5109b4..0e86f7 blocks=1 txs=0 mgas=0.000 elapsed=5.115ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:39.014] Imported new chain segment number=5941 hash=831b6b..070d58 blocks=1 txs=0 mgas=0.000 elapsed=5.937ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:42.089] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:36:44.012] Imported new chain segment number=5942 hash=714470..dac353 blocks=1 txs=0 mgas=0.000 elapsed=4.769ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:49.014] Imported new chain segment number=5943 hash=8d1222..e522b5 blocks=1 txs=0 mgas=0.000 elapsed=5.975ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:52.106] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:36:54.018] Imported new chain segment number=5944 hash=8413fe..fefa27 blocks=1 txs=0 mgas=0.000 elapsed=8.012ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:36:59.014] Imported new chain segment number=5945 hash=b9de24..342d0a blocks=1 txs=0 mgas=0.000 elapsed=5.729ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:02.126] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:37:04.013] Imported new chain segment number=5946 hash=cfa91f..5b71c0 blocks=1 txs=0 mgas=0.000 elapsed=5.568ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:09.012] Imported new chain segment number=5947 hash=853c35..eb450f blocks=1 txs=0 mgas=0.000 elapsed=5.438ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:12.146] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:37:14.039] Imported new chain segment number=5948 hash=06578d..521e2d blocks=1 txs=0 mgas=0.000 elapsed=20.444ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:19.040] Imported new chain segment number=5949 hash=a3b7f1..269c61 blocks=1 txs=0 mgas=0.000 elapsed=22.633ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:22.163] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:37:24.035] Imported new chain segment number=5950 hash=a7b2cc..241298 blocks=1 txs=0 mgas=0.000 elapsed=20.632ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:29.040] Imported new chain segment number=5951 hash=5a1f0e..28b8da blocks=1 txs=0 mgas=0.000 elapsed=20.481ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:32.182] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:37:34.058] Imported new chain segment number=5952 hash=fe2599..6a4501 blocks=1 txs=0 mgas=0.000 elapsed=30.770ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:39.053] Imported new chain segment number=5953 hash=0538dd..313dd3 blocks=1 txs=0 mgas=0.000 elapsed=29.132ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:42.203] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:37:44.041] Imported new chain segment number=5954 hash=b1dc6f..5f698a blocks=1 txs=0 mgas=0.000 elapsed=20.804ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:49.031] Imported new chain segment number=5955 hash=31d4d6..390243 blocks=1 txs=0 mgas=0.000 elapsed=10.600ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:52.219] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:37:54.032] Imported new chain segment number=5956 hash=07563b..54fd03 blocks=1 txs=0 mgas=0.000 elapsed=17.124ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:37:59.050] Imported new chain segment number=5957 hash=28ec80..99b7bb blocks=1 txs=0 mgas=0.000 elapsed=29.509ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:02.238] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:38:04.043] Imported new chain segment number=5958 hash=88d749..7ce3b8 blocks=1 txs=0 mgas=0.000 elapsed=22.560ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:09.072] Imported new chain segment number=5959 hash=7a3ec0..981c07 blocks=1 txs=0 mgas=0.000 elapsed=31.984ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:12.254] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:38:14.060] Imported new chain segment number=5960 hash=0218fa..23f591 blocks=1 txs=0 mgas=0.000 elapsed=30.763ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:19.048] Imported new chain segment number=5961 hash=2c4a92..3b8b4e blocks=1 txs=0 mgas=0.000 elapsed=28.552ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:22.272] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:38:24.058] Imported new chain segment number=5962 hash=5b5c1d..04c9b5 blocks=1 txs=0 mgas=0.000 elapsed=32.351ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:29.040] Imported new chain segment number=5963 hash=909bc3..7fc513 blocks=1 txs=0 mgas=0.000 elapsed=11.551ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:32.294] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:38:34.026] Imported new chain segment number=5964 hash=71ba7d..92205e blocks=1 txs=0 mgas=0.000 elapsed=13.144ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:39.062] Imported new chain segment number=5965 hash=b90e95..ec9cc2 blocks=1 txs=0 mgas=0.000 elapsed=32.185ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:42.314] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:38:44.048] Imported new chain segment number=5966 hash=5f0a3a..db797b blocks=1 txs=0 mgas=0.000 elapsed=31.382ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:49.065] Imported new chain segment number=5967 hash=967836..5de5ac blocks=1 txs=0 mgas=0.000 elapsed=34.524ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:52.334] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:38:54.019] Imported new chain segment number=5968 hash=32663b..575369 blocks=1 txs=0 mgas=0.000 elapsed=6.234ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:38:59.016] Imported new chain segment number=5969 hash=01e21b..0c5470 blocks=1 txs=0 mgas=0.000 elapsed=5.588ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:02.352] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:39:04.019] Imported new chain segment number=5970 hash=85163a..4d1ecd blocks=1 txs=0 mgas=0.000 elapsed=6.480ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:09.016] Imported new chain segment number=5971 hash=9c1784..05bd78 blocks=1 txs=0 mgas=0.000 elapsed=6.806ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:12.371] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:39:14.014] Imported new chain segment number=5972 hash=f2cac4..c052a4 blocks=1 txs=0 mgas=0.000 elapsed=6.696ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:19.019] Imported new chain segment number=5973 hash=afc042..c04c7a blocks=1 txs=0 mgas=0.000 elapsed=5.606ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:22.393] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:39:24.012] Imported new chain segment number=5974 hash=3303fd..a8c9e0 blocks=1 txs=0 mgas=0.000 elapsed=5.298ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:29.021] Imported new chain segment number=5975 hash=e783ee..230c3b blocks=1 txs=0 mgas=0.000 elapsed=7.672ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:32.414] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:39:34.018] Imported new chain segment number=5976 hash=b5e7b4..0deccd blocks=1 txs=0 mgas=0.000 elapsed=6.365ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:39.017] Imported new chain segment number=5977 hash=647e35..29af03 blocks=1 txs=0 mgas=0.000 elapsed=5.018ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:42.436] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:39:44.018] Imported new chain segment number=5978 hash=514b4a..8503e6 blocks=1 txs=0 mgas=0.000 elapsed=6.586ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:49.021] Imported new chain segment number=5979 hash=fa9f64..9ace62 blocks=1 txs=0 mgas=0.000 elapsed=8.409ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:52.454] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:39:54.018] Imported new chain segment number=5980 hash=2fb3a2..d418a7 blocks=1 txs=0 mgas=0.000 elapsed=7.680ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:39:59.019] Imported new chain segment number=5981 hash=77b769..301cb7 blocks=1 txs=0 mgas=0.000 elapsed=6.519ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:02.474] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:40:04.018] Imported new chain segment number=5982 hash=13de7b..621b72 blocks=1 txs=0 mgas=0.000 elapsed=6.108ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:09.018] Imported new chain segment number=5983 hash=628220..31ff73 blocks=1 txs=0 mgas=0.000 elapsed=5.420ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:12.495] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:40:14.018] Imported new chain segment number=5984 hash=eafe23..eed1e8 blocks=1 txs=0 mgas=0.000 elapsed=6.746ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:19.018] Imported new chain segment number=5985 hash=59e3da..44fab4 blocks=1 txs=0 mgas=0.000 elapsed=7.138ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:22.513] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:40:24.020] Imported new chain segment number=5986 hash=685924..060e56 blocks=1 txs=0 mgas=0.000 elapsed=5.899ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:29.023] Imported new chain segment number=5987 hash=84a3b8..ce2378 blocks=1 txs=0 mgas=0.000 elapsed=8.863ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:32.532] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:40:34.017] Imported new chain segment number=5988 hash=11f3e9..b0eda9 blocks=1 txs=0 mgas=0.000 elapsed=6.278ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:39.014] Imported new chain segment number=5989 hash=a20ff3..32c492 blocks=1 txs=0 mgas=0.000 elapsed=5.998ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:42.552] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:40:44.019] Imported new chain segment number=5990 hash=b1f45c..be88ff blocks=1 txs=0 mgas=0.000 elapsed=7.179ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:49.018] Imported new chain segment number=5991 hash=9b8cd2..0adf06 blocks=1 txs=0 mgas=0.000 elapsed=7.369ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:52.573] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:40:54.011] Imported new chain segment number=5992 hash=4b678b..1bec7e blocks=1 txs=0 mgas=0.000 elapsed=5.437ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:40:59.018] Imported new chain segment number=5993 hash=7d5bfe..c55ee4 blocks=1 txs=0 mgas=0.000 elapsed=6.468ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:02.592] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:41:04.022] Imported new chain segment number=5994 hash=e81a24..53a6a0 blocks=1 txs=0 mgas=0.000 elapsed=8.481ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:09.014] Imported new chain segment number=5995 hash=2bf1be..9fdd6f blocks=1 txs=0 mgas=0.000 elapsed=7.602ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:12.613] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:41:14.011] Imported new chain segment number=5996 hash=c587e8..480f51 blocks=1 txs=0 mgas=0.000 elapsed=4.608ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:19.016] Imported new chain segment number=5997 hash=5f70a6..9703d6 blocks=1 txs=0 mgas=0.000 elapsed=5.869ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:22.631] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:41:24.019] Imported new chain segment number=5998 hash=d6afea..1b359c blocks=1 txs=0 mgas=0.000 elapsed=7.568ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:29.017] Imported new chain segment number=5999 hash=34ff25..c8ab40 blocks=1 txs=0 mgas=0.000 elapsed=7.502ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:32.650] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:41:34.018] Imported new chain segment number=6000 hash=9ff279..0b2113 blocks=1 txs=0 mgas=0.000 elapsed=6.748ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:39.019] Imported new chain segment number=6001 hash=eb9761..6ae663 blocks=1 txs=0 mgas=0.000 elapsed=7.399ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:42.667] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:41:44.018] Imported new chain segment number=6002 hash=4e07fd..e2c2a8 blocks=1 txs=0 mgas=0.000 elapsed=8.856ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:49.012] Imported new chain segment number=6003 hash=d6054a..c9205d blocks=1 txs=0 mgas=0.000 elapsed=5.496ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:52.690] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:41:54.017] Imported new chain segment number=6004 hash=ed4d91..830e4b blocks=1 txs=0 mgas=0.000 elapsed=7.061ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:41:59.018] Imported new chain segment number=6005 hash=534fe6..e0c608 blocks=1 txs=0 mgas=0.000 elapsed=7.237ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:02.710] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:42:04.018] Imported new chain segment number=6006 hash=33a1be..b53257 blocks=1 txs=0 mgas=0.000 elapsed=5.832ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:09.018] Imported new chain segment number=6007 hash=e32eeb..d1a771 blocks=1 txs=0 mgas=0.000 elapsed=7.689ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:12.731] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:42:14.019] Imported new chain segment number=6008 hash=eaf3a9..b6a48b blocks=1 txs=0 mgas=0.000 elapsed=7.088ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:19.014] Imported new chain segment number=6009 hash=f1aba3..48d354 blocks=1 txs=0 mgas=0.000 elapsed=5.215ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:22.748] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:42:24.021] Imported new chain segment number=6010 hash=3ff623..3533b8 blocks=1 txs=0 mgas=0.000 elapsed=6.278ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:29.022] Imported new chain segment number=6011 hash=15d8bc..0fac42 blocks=1 txs=0 mgas=0.000 elapsed=7.661ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:32.770] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:42:34.020] Imported new chain segment number=6012 hash=42cc74..dabb36 blocks=1 txs=0 mgas=0.000 elapsed=7.221ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:39.018] Imported new chain segment number=6013 hash=a441a0..82968c blocks=1 txs=0 mgas=0.000 elapsed=6.408ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:42.790] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:42:44.023] Imported new chain segment number=6014 hash=fd6fb2..b94cfd blocks=1 txs=0 mgas=0.000 elapsed=8.343ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:49.021] Imported new chain segment number=6015 hash=1b59d6..925c24 blocks=1 txs=0 mgas=0.000 elapsed=7.455ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:52.811] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:42:54.017] Imported new chain segment number=6016 hash=82fce7..c8d359 blocks=1 txs=0 mgas=0.000 elapsed=5.355ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:42:59.019] Imported new chain segment number=6017 hash=9dbc99..358453 blocks=1 txs=0 mgas=0.000 elapsed=7.036ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:02.834] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:43:04.012] Imported new chain segment number=6018 hash=1ad606..34ea49 blocks=1 txs=0 mgas=0.000 elapsed=5.488ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:09.015] Imported new chain segment number=6019 hash=fec537..1a9955 blocks=1 txs=0 mgas=0.000 elapsed=5.282ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:12.852] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:43:14.018] Imported new chain segment number=6020 hash=c138f2..116496 blocks=1 txs=0 mgas=0.000 elapsed=7.879ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:19.015] Imported new chain segment number=6021 hash=3b1f36..33ee0e blocks=1 txs=0 mgas=0.000 elapsed=5.519ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:22.871] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:43:24.018] Imported new chain segment number=6022 hash=b3b22a..02034b blocks=1 txs=0 mgas=0.000 elapsed=6.734ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:29.019] Imported new chain segment number=6023 hash=fb53cf..1adf7a blocks=1 txs=0 mgas=0.000 elapsed=7.152ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:32.889] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:43:34.019] Imported new chain segment number=6024 hash=a0bac6..01cebe blocks=1 txs=0 mgas=0.000 elapsed=7.466ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:39.018] Imported new chain segment number=6025 hash=96c260..a5763b blocks=1 txs=0 mgas=0.000 elapsed=5.858ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:42.907] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:43:44.021] Imported new chain segment number=6026 hash=934d68..a5e3c9 blocks=1 txs=0 mgas=0.000 elapsed=8.584ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:49.017] Imported new chain segment number=6027 hash=2de7b4..4a1f41 blocks=1 txs=0 mgas=0.000 elapsed=5.858ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:52.927] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:43:54.014] Imported new chain segment number=6028 hash=924e2f..30a94d blocks=1 txs=0 mgas=0.000 elapsed=4.737ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:43:59.020] Imported new chain segment number=6029 hash=de479a..697cfc blocks=1 txs=0 mgas=0.000 elapsed=7.330ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:02.946] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:44:04.015] Imported new chain segment number=6030 hash=dd6e28..2e3e8d blocks=1 txs=0 mgas=0.000 elapsed=6.786ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:09.017] Imported new chain segment number=6031 hash=c5ea6e..921366 blocks=1 txs=0 mgas=0.000 elapsed=5.073ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:12.967] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:44:14.018] Imported new chain segment number=6032 hash=a8a791..787568 blocks=1 txs=0 mgas=0.000 elapsed=6.250ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:19.012] Imported new chain segment number=6033 hash=5a1496..7a40b8 blocks=1 txs=0 mgas=0.000 elapsed=4.774ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:22.988] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:44:24.019] Imported new chain segment number=6034 hash=af9ef3..890096 blocks=1 txs=0 mgas=0.000 elapsed=10.019ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:29.018] Imported new chain segment number=6035 hash=5f13ed..f3e074 blocks=1 txs=0 mgas=0.000 elapsed=7.325ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:33.005] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:44:34.012] Imported new chain segment number=6036 hash=909689..06c386 blocks=1 txs=0 mgas=0.000 elapsed=6.054ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:39.021] Imported new chain segment number=6037 hash=415ed9..12d595 blocks=1 txs=0 mgas=0.000 elapsed=7.509ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:43.025] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:44:44.012] Imported new chain segment number=6038 hash=57d4ee..146e96 blocks=1 txs=0 mgas=0.000 elapsed=4.734ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:49.020] Imported new chain segment number=6039 hash=8e8610..c30e0e blocks=1 txs=0 mgas=0.000 elapsed=7.410ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:53.046] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:44:54.016] Imported new chain segment number=6040 hash=158f76..d3d418 blocks=1 txs=0 mgas=0.000 elapsed=5.697ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:44:59.020] Imported new chain segment number=6041 hash=cbf2cf..355073 blocks=1 txs=0 mgas=0.000 elapsed=7.161ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:03.068] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:45:04.020] Imported new chain segment number=6042 hash=09e686..748516 blocks=1 txs=0 mgas=0.000 elapsed=8.173ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:09.012] Imported new chain segment number=6043 hash=dc6c35..315421 blocks=1 txs=0 mgas=0.000 elapsed=5.620ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:13.086] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:45:14.020] Imported new chain segment number=6044 hash=a2f14f..34ff9f blocks=1 txs=0 mgas=0.000 elapsed=6.125ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:19.019] Imported new chain segment number=6045 hash=676578..84f97a blocks=1 txs=0 mgas=0.000 elapsed=7.750ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:23.106] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:45:24.020] Imported new chain segment number=6046 hash=53b177..46ad71 blocks=1 txs=0 mgas=0.000 elapsed=7.947ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:29.023] Imported new chain segment number=6047 hash=5d42c5..d8d519 blocks=1 txs=0 mgas=0.000 elapsed=7.520ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:33.130] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:45:34.021] Imported new chain segment number=6048 hash=1a53cd..9bbb3d blocks=1 txs=0 mgas=0.000 elapsed=7.990ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:39.015] Imported new chain segment number=6049 hash=46cf39..e6421e blocks=1 txs=0 mgas=0.000 elapsed=6.128ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:43.149] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:45:44.013] Imported new chain segment number=6050 hash=c46cce..902fa9 blocks=1 txs=0 mgas=0.000 elapsed=5.609ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:49.022] Imported new chain segment number=6051 hash=d63db6..1f3ec3 blocks=1 txs=0 mgas=0.000 elapsed=10.454ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:53.170] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:45:54.020] Imported new chain segment number=6052 hash=03873a..6c0cfb blocks=1 txs=0 mgas=0.000 elapsed=7.393ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:45:59.012] Imported new chain segment number=6053 hash=2d9abc..6193dd blocks=1 txs=0 mgas=0.000 elapsed=5.884ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:03.189] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:46:04.017] Imported new chain segment number=6054 hash=97be3a..c59e6a blocks=1 txs=0 mgas=0.000 elapsed=6.115ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:09.012] Imported new chain segment number=6055 hash=a2a290..80a75e blocks=1 txs=0 mgas=0.000 elapsed=5.455ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:13.209] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:46:14.020] Imported new chain segment number=6056 hash=2b6a7a..22dbe4 blocks=1 txs=0 mgas=0.000 elapsed=6.782ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:19.016] Imported new chain segment number=6057 hash=d78f70..6705a2 blocks=1 txs=0 mgas=0.000 elapsed=5.265ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:23.226] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:46:24.015] Imported new chain segment number=6058 hash=bfac3a..448823 blocks=1 txs=0 mgas=0.000 elapsed=5.752ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:29.020] Imported new chain segment number=6059 hash=216cab..64b41f blocks=1 txs=0 mgas=0.000 elapsed=7.126ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:33.243] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:46:34.016] Imported new chain segment number=6060 hash=191f14..c33577 blocks=1 txs=0 mgas=0.000 elapsed=6.474ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:39.012] Imported new chain segment number=6061 hash=080445..08fa6b blocks=1 txs=0 mgas=0.000 elapsed=6.273ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:43.262] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:46:44.019] Imported new chain segment number=6062 hash=a5e1d5..2531f4 blocks=1 txs=0 mgas=0.000 elapsed=7.090ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:49.018] Imported new chain segment number=6063 hash=fcd4d8..b89db8 blocks=1 txs=0 mgas=0.000 elapsed=6.388ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:53.282] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:46:54.015] Imported new chain segment number=6064 hash=969bad..c5180b blocks=1 txs=0 mgas=0.000 elapsed=5.338ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:46:59.022] Imported new chain segment number=6065 hash=12a5a0..d37872 blocks=1 txs=0 mgas=0.000 elapsed=8.273ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:03.302] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:47:04.011] Imported new chain segment number=6066 hash=96eccf..4125b6 blocks=1 txs=0 mgas=0.000 elapsed=5.686ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:09.016] Imported new chain segment number=6067 hash=bb1271..9d465c blocks=1 txs=0 mgas=0.000 elapsed=5.146ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:13.322] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:47:14.022] Imported new chain segment number=6068 hash=aaca75..d07a08 blocks=1 txs=0 mgas=0.000 elapsed=8.465ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:19.014] Imported new chain segment number=6069 hash=d965ba..c2df69 blocks=1 txs=0 mgas=0.000 elapsed=5.044ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:23.341] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:47:24.012] Imported new chain segment number=6070 hash=51e1f9..00a059 blocks=1 txs=0 mgas=0.000 elapsed=5.671ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:29.016] Imported new chain segment number=6071 hash=e3aac0..5e234c blocks=1 txs=0 mgas=0.000 elapsed=5.854ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:33.360] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:47:34.019] Imported new chain segment number=6072 hash=cdcf78..e37a0e blocks=1 txs=0 mgas=0.000 elapsed=6.898ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:39.011] Imported new chain segment number=6073 hash=437dba..a7a89c blocks=1 txs=0 mgas=0.000 elapsed=5.185ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:43.379] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:47:44.022] Imported new chain segment number=6074 hash=872258..fd3b10 blocks=1 txs=0 mgas=0.000 elapsed=9.185ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:49.017] Imported new chain segment number=6075 hash=cb8921..0ac789 blocks=1 txs=0 mgas=0.000 elapsed=5.909ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:53.399] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:47:54.017] Imported new chain segment number=6076 hash=00147e..b8b630 blocks=1 txs=0 mgas=0.000 elapsed=6.779ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:47:59.020] Imported new chain segment number=6077 hash=fa812b..760927 blocks=1 txs=0 mgas=0.000 elapsed=7.049ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:03.421] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:48:04.019] Imported new chain segment number=6078 hash=f2ab5f..8a1d34 blocks=1 txs=0 mgas=0.000 elapsed=7.245ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:09.010] Imported new chain segment number=6079 hash=a044a8..cd21d3 blocks=1 txs=0 mgas=0.000 elapsed=4.806ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:13.441] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:48:14.012] Imported new chain segment number=6080 hash=9cc21c..3d7030 blocks=1 txs=0 mgas=0.000 elapsed=6.668ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:19.016] Imported new chain segment number=6081 hash=e3a7a7..d12612 blocks=1 txs=0 mgas=0.000 elapsed=5.377ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:23.462] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:48:24.019] Imported new chain segment number=6082 hash=ff8d0a..a512a3 blocks=1 txs=0 mgas=0.000 elapsed=7.378ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:29.019] Imported new chain segment number=6083 hash=62289a..1095ed blocks=1 txs=0 mgas=0.000 elapsed=6.649ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:33.481] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:48:34.018] Imported new chain segment number=6084 hash=11f92f..6a145e blocks=1 txs=0 mgas=0.000 elapsed=7.141ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:39.014] Imported new chain segment number=6085 hash=996560..5054c7 blocks=1 txs=0 mgas=0.000 elapsed=5.042ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:43.502] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:48:44.017] Imported new chain segment number=6086 hash=d5c787..306a68 blocks=1 txs=0 mgas=0.000 elapsed=7.683ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:49.020] Imported new chain segment number=6087 hash=fccd90..5cadea blocks=1 txs=0 mgas=0.000 elapsed=8.611ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:53.519] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:48:54.021] Imported new chain segment number=6088 hash=dbfc2e..3aaa13 blocks=1 txs=0 mgas=0.000 elapsed=9.031ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:48:59.020] Imported new chain segment number=6089 hash=200a90..471816 blocks=1 txs=0 mgas=0.000 elapsed=7.736ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:03.536] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:49:04.016] Imported new chain segment number=6090 hash=d596fc..8e3654 blocks=1 txs=0 mgas=0.000 elapsed=6.122ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:09.019] Imported new chain segment number=6091 hash=4e061d..335364 blocks=1 txs=0 mgas=0.000 elapsed=5.613ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:13.553] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:49:14.019] Imported new chain segment number=6092 hash=bb32e3..eaffa8 blocks=1 txs=0 mgas=0.000 elapsed=6.133ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:19.013] Imported new chain segment number=6093 hash=5ca867..fc1d1f blocks=1 txs=0 mgas=0.000 elapsed=6.135ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:23.571] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:49:24.019] Imported new chain segment number=6094 hash=7340a1..e8c49d blocks=1 txs=0 mgas=0.000 elapsed=6.895ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:29.020] Imported new chain segment number=6095 hash=7466bd..a08911 blocks=1 txs=0 mgas=0.000 elapsed=6.713ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:33.591] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:49:34.018] Imported new chain segment number=6096 hash=6c76e9..852e81 blocks=1 txs=0 mgas=0.000 elapsed=7.384ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:39.021] Imported new chain segment number=6097 hash=84d6bb..5c96c7 blocks=1 txs=0 mgas=0.000 elapsed=7.791ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:43.611] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:49:44.018] Imported new chain segment number=6098 hash=720c12..684a5f blocks=1 txs=0 mgas=0.000 elapsed=6.062ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:49.021] Imported new chain segment number=6099 hash=42d762..d31cc9 blocks=1 txs=0 mgas=0.000 elapsed=8.473ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:53.631] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:49:54.013] Imported new chain segment number=6100 hash=736097..37d592 blocks=1 txs=0 mgas=0.000 elapsed=6.358ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:49:59.012] Imported new chain segment number=6101 hash=c13a95..762b72 blocks=1 txs=0 mgas=0.000 elapsed=5.448ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:03.649] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:50:04.016] Imported new chain segment number=6102 hash=10a429..44a101 blocks=1 txs=0 mgas=0.000 elapsed=5.101ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:09.020] Imported new chain segment number=6103 hash=78acab..bae170 blocks=1 txs=0 mgas=0.000 elapsed=8.588ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:13.670] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:50:14.012] Imported new chain segment number=6104 hash=814edf..fb415e blocks=1 txs=0 mgas=0.000 elapsed=5.831ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:19.020] Imported new chain segment number=6105 hash=6ada5b..bea314 blocks=1 txs=0 mgas=0.000 elapsed=8.973ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:23.692] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:50:24.012] Imported new chain segment number=6106 hash=598463..1517c3 blocks=1 txs=0 mgas=0.000 elapsed=5.749ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:29.013] Imported new chain segment number=6107 hash=69cf7f..b6dc7a blocks=1 txs=0 mgas=0.000 elapsed=6.374ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:33.713] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:50:34.020] Imported new chain segment number=6108 hash=378496..dff7a7 blocks=1 txs=0 mgas=0.000 elapsed=8.269ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:39.012] Imported new chain segment number=6109 hash=9b0af5..607685 blocks=1 txs=0 mgas=0.000 elapsed=5.623ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:43.731] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:50:44.018] Imported new chain segment number=6110 hash=0a4052..82f0ee blocks=1 txs=0 mgas=0.000 elapsed=5.957ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:49.017] Imported new chain segment number=6111 hash=36b7ef..65e9fd blocks=1 txs=0 mgas=0.000 elapsed=7.103ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:53.750] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:50:54.011] Imported new chain segment number=6112 hash=e15d93..37be6d blocks=1 txs=0 mgas=0.000 elapsed=5.157ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:50:59.022] Imported new chain segment number=6113 hash=edc1e4..86bce0 blocks=1 txs=0 mgas=0.000 elapsed=8.317ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:03.771] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:51:04.019] Imported new chain segment number=6114 hash=77c325..e7a92a blocks=1 txs=0 mgas=0.000 elapsed=7.258ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:09.016] Imported new chain segment number=6115 hash=839767..41e1b4 blocks=1 txs=0 mgas=0.000 elapsed=6.680ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:13.791] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:51:14.017] Imported new chain segment number=6116 hash=0823bc..b1f72a blocks=1 txs=0 mgas=0.000 elapsed=6.738ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:19.014] Imported new chain segment number=6117 hash=7e46ef..f2949c blocks=1 txs=0 mgas=0.000 elapsed=5.321ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:23.813] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:51:24.018] Imported new chain segment number=6118 hash=64f063..b5968d blocks=1 txs=0 mgas=0.000 elapsed=6.095ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:29.017] Imported new chain segment number=6119 hash=a3af67..000f22 blocks=1 txs=0 mgas=0.000 elapsed=6.684ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:33.835] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:51:34.014] Imported new chain segment number=6120 hash=609da9..3e57a8 blocks=1 txs=0 mgas=0.000 elapsed=5.215ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:39.017] Imported new chain segment number=6121 hash=1c0131..762c0c blocks=1 txs=0 mgas=0.000 elapsed=6.044ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:43.856] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:51:44.011] Imported new chain segment number=6122 hash=6cdb5f..ac93ae blocks=1 txs=0 mgas=0.000 elapsed=4.529ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:49.011] Imported new chain segment number=6123 hash=80dc41..14d36e blocks=1 txs=0 mgas=0.000 elapsed=5.584ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:53.871] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:51:54.017] Imported new chain segment number=6124 hash=bdd228..78a729 blocks=1 txs=0 mgas=0.000 elapsed=6.543ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:51:59.013] Imported new chain segment number=6125 hash=b79b47..7edd8c blocks=1 txs=0 mgas=0.000 elapsed=5.646ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:03.890] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:52:04.012] Imported new chain segment number=6126 hash=ed0890..24aef3 blocks=1 txs=0 mgas=0.000 elapsed=5.609ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:09.020] Imported new chain segment number=6127 hash=af0372..d2ef42 blocks=1 txs=0 mgas=0.000 elapsed=7.429ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:13.907] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:52:14.012] Imported new chain segment number=6128 hash=dd6156..05b5ff blocks=1 txs=0 mgas=0.000 elapsed=5.486ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:19.016] Imported new chain segment number=6129 hash=5cdd3c..9e4095 blocks=1 txs=0 mgas=0.000 elapsed=6.422ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:23.928] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:52:24.020] Imported new chain segment number=6130 hash=d7a4ed..d0d17b blocks=1 txs=0 mgas=0.000 elapsed=7.728ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:29.018] Imported new chain segment number=6131 hash=0da7cd..2bfdb4 blocks=1 txs=0 mgas=0.000 elapsed=5.966ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:33.947] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:52:34.023] Imported new chain segment number=6132 hash=88d668..aa11c8 blocks=1 txs=0 mgas=0.000 elapsed=8.742ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:39.022] Imported new chain segment number=6133 hash=56a3aa..7ca650 blocks=1 txs=0 mgas=0.000 elapsed=9.264ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:43.967] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:52:44.019] Imported new chain segment number=6134 hash=04adbb..d1a392 blocks=1 txs=0 mgas=0.000 elapsed=6.890ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:49.018] Imported new chain segment number=6135 hash=0ab4fa..691ad4 blocks=1 txs=0 mgas=0.000 elapsed=6.774ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:53.986] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:52:54.017] Imported new chain segment number=6136 hash=77e7ef..b78f15 blocks=1 txs=0 mgas=0.000 elapsed=7.544ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:52:59.016] Imported new chain segment number=6137 hash=c6ec8d..b90b06 blocks=1 txs=0 mgas=0.000 elapsed=6.032ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:04.005] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:53:04.014] Imported new chain segment number=6138 hash=9bd32a..2be337 blocks=1 txs=0 mgas=0.000 elapsed=7.342ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:09.016] Imported new chain segment number=6139 hash=3e6d07..790f85 blocks=1 txs=0 mgas=0.000 elapsed=7.012ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:14.017] Imported new chain segment number=6140 hash=4765c9..7ebfb6 blocks=1 txs=0 mgas=0.000 elapsed=6.095ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:14.025] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:53:19.011] Imported new chain segment number=6141 hash=caa481..9a106a blocks=1 txs=0 mgas=0.000 elapsed=6.231ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:24.021] Imported new chain segment number=6142 hash=bce993..91c52e blocks=1 txs=0 mgas=0.000 elapsed=8.855ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:24.046] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:53:29.018] Imported new chain segment number=6143 hash=591be1..a9b032 blocks=1 txs=0 mgas=0.000 elapsed=5.905ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:34.019] Imported new chain segment number=6144 hash=313948..780cee blocks=1 txs=0 mgas=0.000 elapsed=7.167ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:34.062] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:53:39.022] Imported new chain segment number=6145 hash=8eed03..d8f586 blocks=1 txs=0 mgas=0.000 elapsed=8.238ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:44.022] Imported new chain segment number=6146 hash=ed93b9..fac478 blocks=1 txs=0 mgas=0.000 elapsed=7.970ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:44.081] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:53:49.012] Imported new chain segment number=6147 hash=d3da58..ff46c9 blocks=1 txs=0 mgas=0.000 elapsed=5.878ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:54.021] Imported new chain segment number=6148 hash=260d08..b6f7cd blocks=1 txs=0 mgas=0.000 elapsed=13.719ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:53:54.098] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:53:59.015] Imported new chain segment number=6149 hash=57d953..b59f76 blocks=1 txs=0 mgas=0.000 elapsed=7.638ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:04.010] Imported new chain segment number=6150 hash=3b717e..76d833 blocks=1 txs=0 mgas=0.000 elapsed=4.307ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:04.116] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:54:09.013] Imported new chain segment number=6151 hash=2be0c3..77087e blocks=1 txs=0 mgas=0.000 elapsed=7.470ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:14.016] Imported new chain segment number=6152 hash=90481b..ff6874 blocks=1 txs=0 mgas=0.000 elapsed=6.669ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:14.134] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:54:19.018] Imported new chain segment number=6153 hash=14e944..7d0502 blocks=1 txs=0 mgas=0.000 elapsed=6.823ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:24.020] Imported new chain segment number=6154 hash=046c7b..faf886 blocks=1 txs=0 mgas=0.000 elapsed=6.569ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:24.154] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:54:29.018] Imported new chain segment number=6155 hash=e3be6d..bd1361 blocks=1 txs=0 mgas=0.000 elapsed=6.699ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:34.022] Imported new chain segment number=6156 hash=259958..225991 blocks=1 txs=0 mgas=0.000 elapsed=8.766ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:34.173] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:54:39.012] Imported new chain segment number=6157 hash=f88b7a..5d6fbf blocks=1 txs=0 mgas=0.000 elapsed=4.830ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:44.018] Imported new chain segment number=6158 hash=e2da71..a0731c blocks=1 txs=0 mgas=0.000 elapsed=7.413ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:44.193] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:54:49.011] Imported new chain segment number=6159 hash=15ed8b..2f97d0 blocks=1 txs=0 mgas=0.000 elapsed=4.821ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:54.021] Imported new chain segment number=6160 hash=35bbce..ae1ba5 blocks=1 txs=0 mgas=0.000 elapsed=7.197ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:54:54.215] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:54:59.018] Imported new chain segment number=6161 hash=43abce..67be34 blocks=1 txs=0 mgas=0.000 elapsed=5.069ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:04.017] Imported new chain segment number=6162 hash=460cdc..f5cd1d blocks=1 txs=0 mgas=0.000 elapsed=6.089ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:04.233] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:55:09.012] Imported new chain segment number=6163 hash=5c5d80..f6107f blocks=1 txs=0 mgas=0.000 elapsed=5.609ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:14.017] Imported new chain segment number=6164 hash=dfc61b..fde578 blocks=1 txs=0 mgas=0.000 elapsed=5.236ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:14.253] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:55:19.019] Imported new chain segment number=6165 hash=bfc69f..b406a1 blocks=1 txs=0 mgas=0.000 elapsed=5.540ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:24.017] Imported new chain segment number=6166 hash=f1f813..db9290 blocks=1 txs=0 mgas=0.000 elapsed=6.604ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:24.276] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:55:29.020] Imported new chain segment number=6167 hash=cb6ffa..639bdf blocks=1 txs=0 mgas=0.000 elapsed=7.165ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:34.012] Imported new chain segment number=6168 hash=5617ed..f3e8e3 blocks=1 txs=0 mgas=0.000 elapsed=4.430ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:34.297] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:55:39.027] Imported new chain segment number=6169 hash=46ef33..3939cb blocks=1 txs=0 mgas=0.000 elapsed=12.144ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:44.015] Imported new chain segment number=6170 hash=f08198..ce9a05 blocks=1 txs=0 mgas=0.000 elapsed=5.627ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:44.314] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:55:49.012] Imported new chain segment number=6171 hash=af1cd1..a13922 blocks=1 txs=0 mgas=0.000 elapsed=4.940ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:54.013] Imported new chain segment number=6172 hash=a3f72d..5c9ddd blocks=1 txs=0 mgas=0.000 elapsed=5.457ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:55:54.335] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:55:59.020] Imported new chain segment number=6173 hash=1e76c7..41898d blocks=1 txs=0 mgas=0.000 elapsed=7.031ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:04.014] Imported new chain segment number=6174 hash=09c113..ba4685 blocks=1 txs=0 mgas=0.000 elapsed=3.906ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:04.355] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:56:09.016] Imported new chain segment number=6175 hash=26400d..867f08 blocks=1 txs=0 mgas=0.000 elapsed=7.931ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:14.015] Imported new chain segment number=6176 hash=c50caf..4f49c8 blocks=1 txs=0 mgas=0.000 elapsed=5.534ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:14.371] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:56:19.018] Imported new chain segment number=6177 hash=cc1323..7dddf5 blocks=1 txs=0 mgas=0.000 elapsed=6.530ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:24.013] Imported new chain segment number=6178 hash=8a5938..e62782 blocks=1 txs=0 mgas=0.000 elapsed=6.027ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:24.391] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:56:29.025] Imported new chain segment number=6179 hash=87bc42..6e88cb blocks=1 txs=0 mgas=0.000 elapsed=11.176ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:34.029] Imported new chain segment number=6180 hash=b88c07..f103f2 blocks=1 txs=0 mgas=0.000 elapsed=11.152ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:34.411] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:56:39.014] Imported new chain segment number=6181 hash=ae73b0..8f740b blocks=1 txs=0 mgas=0.000 elapsed=5.415ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:44.017] Imported new chain segment number=6182 hash=866b1d..13efb3 blocks=1 txs=0 mgas=0.000 elapsed=6.016ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:44.428] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:56:49.017] Imported new chain segment number=6183 hash=50b1aa..5e27c4 blocks=1 txs=0 mgas=0.000 elapsed=7.214ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:54.026] Imported new chain segment number=6184 hash=5dabf8..9d6164 blocks=1 txs=0 mgas=0.000 elapsed=9.086ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:56:54.446] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:56:59.011] Imported new chain segment number=6185 hash=7ed96e..c7aa6f blocks=1 txs=0 mgas=0.000 elapsed=5.429ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:04.021] Imported new chain segment number=6186 hash=e2b56b..29e67b blocks=1 txs=0 mgas=0.000 elapsed=9.997ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:04.467] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:57:09.012] Imported new chain segment number=6187 hash=3ae616..535b58 blocks=1 txs=0 mgas=0.000 elapsed=4.733ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:14.012] Imported new chain segment number=6188 hash=386a56..50307b blocks=1 txs=0 mgas=0.000 elapsed=3.033ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:14.484] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:57:19.012] Imported new chain segment number=6189 hash=ada9ad..ff80fe blocks=1 txs=0 mgas=0.000 elapsed=5.188ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:24.015] Imported new chain segment number=6190 hash=59d6a4..1ae251 blocks=1 txs=0 mgas=0.000 elapsed=5.377ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:24.504] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:57:29.014] Imported new chain segment number=6191 hash=78a5d0..3beca6 blocks=1 txs=0 mgas=0.000 elapsed=6.276ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:34.011] Imported new chain segment number=6192 hash=67b6a4..88de82 blocks=1 txs=0 mgas=0.000 elapsed=3.545ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:34.522] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:57:39.016] Imported new chain segment number=6193 hash=f7b597..27fcd4 blocks=1 txs=0 mgas=0.000 elapsed=6.792ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:44.015] Imported new chain segment number=6194 hash=1aa296..f6700e blocks=1 txs=0 mgas=0.000 elapsed=5.940ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:44.536] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:57:49.017] Imported new chain segment number=6195 hash=6e8699..40d107 blocks=1 txs=0 mgas=0.000 elapsed=7.709ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:54.015] Imported new chain segment number=6196 hash=fc3cef..8abc7e blocks=1 txs=0 mgas=0.000 elapsed=7.226ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:57:54.557] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:57:59.013] Imported new chain segment number=6197 hash=596f66..2f4052 blocks=1 txs=0 mgas=0.000 elapsed=5.944ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:04.016] Imported new chain segment number=6198 hash=b8ebd5..963b76 blocks=1 txs=0 mgas=0.000 elapsed=7.573ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:04.578] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:58:09.017] Imported new chain segment number=6199 hash=8a3b8f..d34524 blocks=1 txs=0 mgas=0.000 elapsed=6.897ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:14.015] Imported new chain segment number=6200 hash=67ab7f..60863b blocks=1 txs=0 mgas=0.000 elapsed=7.130ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:14.599] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:58:19.014] Imported new chain segment number=6201 hash=222f67..d0ea6c blocks=1 txs=0 mgas=0.000 elapsed=6.358ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:24.015] Imported new chain segment number=6202 hash=ef6fc0..0457d0 blocks=1 txs=0 mgas=0.000 elapsed=6.158ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:24.612] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:58:29.012] Imported new chain segment number=6203 hash=a358f5..b7ba98 blocks=1 txs=0 mgas=0.000 elapsed=4.682ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:34.013] Imported new chain segment number=6204 hash=01ca27..32169a blocks=1 txs=0 mgas=0.000 elapsed=4.508ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:34.632] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:58:39.015] Imported new chain segment number=6205 hash=c8b005..92e702 blocks=1 txs=0 mgas=0.000 elapsed=6.135ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:44.011] Imported new chain segment number=6206 hash=7309f9..9900ec blocks=1 txs=0 mgas=0.000 elapsed=3.933ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:44.653] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:58:49.016] Imported new chain segment number=6207 hash=3244f5..ef29f7 blocks=1 txs=0 mgas=0.000 elapsed=7.086ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:54.013] Imported new chain segment number=6208 hash=97a8a9..b3d97c blocks=1 txs=0 mgas=0.000 elapsed=5.973ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:58:54.671] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:58:59.015] Imported new chain segment number=6209 hash=2551a8..fb9d90 blocks=1 txs=0 mgas=0.000 elapsed=6.181ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:04.015] Imported new chain segment number=6210 hash=ed8e8b..ddce71 blocks=1 txs=0 mgas=0.000 elapsed=6.179ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:04.692] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:59:09.012] Imported new chain segment number=6211 hash=913bab..3be52d blocks=1 txs=0 mgas=0.000 elapsed=5.048ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:14.016] Imported new chain segment number=6212 hash=0bbec0..598a26 blocks=1 txs=0 mgas=0.000 elapsed=7.279ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:14.712] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:59:19.017] Imported new chain segment number=6213 hash=f87f8c..8daee1 blocks=1 txs=0 mgas=0.000 elapsed=7.070ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:24.014] Imported new chain segment number=6214 hash=9accaf..a2464a blocks=1 txs=0 mgas=0.000 elapsed=6.402ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:24.733] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:59:29.014] Imported new chain segment number=6215 hash=8cc95d..6f863a blocks=1 txs=0 mgas=0.000 elapsed=5.204ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:34.017] Imported new chain segment number=6216 hash=a0e3cf..1990ab blocks=1 txs=0 mgas=0.000 elapsed=7.129ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:34.751] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:59:39.018] Imported new chain segment number=6217 hash=27d9d0..fec68d blocks=1 txs=0 mgas=0.000 elapsed=6.943ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:44.014] Imported new chain segment number=6218 hash=c04e52..544f11 blocks=1 txs=0 mgas=0.000 elapsed=4.391ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:44.770] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:59:49.010] Imported new chain segment number=6219 hash=f84b3e..f6be37 blocks=1 txs=0 mgas=0.000 elapsed=5.319ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:54.019] Imported new chain segment number=6220 hash=c977b9..a42205 blocks=1 txs=0 mgas=0.000 elapsed=7.655ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|11:59:54.788] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|11:59:59.014] Imported new chain segment number=6221 hash=b9b2ed..1a6a27 blocks=1 txs=0 mgas=0.000 elapsed=5.924ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:04.013] Imported new chain segment number=6222 hash=89cf04..cd1f8a blocks=1 txs=0 mgas=0.000 elapsed=6.014ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:04.810] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:00:09.021] Imported new chain segment number=6223 hash=15bbb3..c9fc1e blocks=1 txs=0 mgas=0.000 elapsed=8.025ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:14.014] Imported new chain segment number=6224 hash=e5c437..07d25d blocks=1 txs=0 mgas=0.000 elapsed=6.420ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:14.828] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:00:19.021] Imported new chain segment number=6225 hash=d0888d..8c355c blocks=1 txs=0 mgas=0.000 elapsed=7.239ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:24.013] Imported new chain segment number=6226 hash=4b850a..2f4c0e blocks=1 txs=0 mgas=0.000 elapsed=5.762ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:24.849] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:00:29.012] Imported new chain segment number=6227 hash=e99886..2596b8 blocks=1 txs=0 mgas=0.000 elapsed=5.382ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:34.015] Imported new chain segment number=6228 hash=41cc07..b3fa76 blocks=1 txs=0 mgas=0.000 elapsed=5.003ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:34.867] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:00:39.019] Imported new chain segment number=6229 hash=3d9877..752cd3 blocks=1 txs=0 mgas=0.000 elapsed=7.531ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:44.013] Imported new chain segment number=6230 hash=3e6331..b3f568 blocks=1 txs=0 mgas=0.000 elapsed=5.454ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:44.885] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:00:49.017] Imported new chain segment number=6231 hash=d09eb5..133b0d blocks=1 txs=0 mgas=0.000 elapsed=7.151ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:54.012] Imported new chain segment number=6232 hash=8caad0..25e678 blocks=1 txs=0 mgas=0.000 elapsed=5.331ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:00:54.906] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:00:59.019] Imported new chain segment number=6233 hash=18f4cf..eaca0d blocks=1 txs=0 mgas=0.000 elapsed=6.697ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:04.013] Imported new chain segment number=6234 hash=04114e..c822eb blocks=1 txs=0 mgas=0.000 elapsed=4.901ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:04.926] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:01:09.012] Imported new chain segment number=6235 hash=ddb79f..9322c0 blocks=1 txs=0 mgas=0.000 elapsed=4.986ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:14.015] Imported new chain segment number=6236 hash=7558cf..dcac5c blocks=1 txs=0 mgas=0.000 elapsed=6.102ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:14.949] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:01:19.012] Imported new chain segment number=6237 hash=e367d7..99aad1 blocks=1 txs=0 mgas=0.000 elapsed=5.703ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:24.016] Imported new chain segment number=6238 hash=6debdf..ed6655 blocks=1 txs=0 mgas=0.000 elapsed=5.661ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:24.968] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:01:29.018] Imported new chain segment number=6239 hash=f87bf4..103b8f blocks=1 txs=0 mgas=0.000 elapsed=8.356ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:34.015] Imported new chain segment number=6240 hash=5f5e8d..728ddf blocks=1 txs=0 mgas=0.000 elapsed=5.908ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:34.986] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:01:39.015] Imported new chain segment number=6241 hash=87e093..622f46 blocks=1 txs=0 mgas=0.000 elapsed=5.973ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:44.017] Imported new chain segment number=6242 hash=1b4f70..19b7b3 blocks=1 txs=0 mgas=0.000 elapsed=5.361ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:45.004] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:01:49.016] Imported new chain segment number=6243 hash=4f395c..beaed8 blocks=1 txs=0 mgas=0.000 elapsed=7.974ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:54.018] Imported new chain segment number=6244 hash=4a044c..cf94b2 blocks=1 txs=0 mgas=0.000 elapsed=8.146ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:01:55.023] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:01:59.021] Imported new chain segment number=6245 hash=2b8a2d..18c381 blocks=1 txs=0 mgas=0.000 elapsed=7.676ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:04.017] Imported new chain segment number=6246 hash=286124..508ab2 blocks=1 txs=0 mgas=0.000 elapsed=4.810ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:05.047] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:02:09.019] Imported new chain segment number=6247 hash=4894b5..1013b0 blocks=1 txs=0 mgas=0.000 elapsed=7.868ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:14.020] Imported new chain segment number=6248 hash=9ff8a6..39e632 blocks=1 txs=0 mgas=0.000 elapsed=7.050ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:15.065] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:02:19.013] Imported new chain segment number=6249 hash=62bc9f..a88590 blocks=1 txs=0 mgas=0.000 elapsed=5.553ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:24.020] Imported new chain segment number=6250 hash=4e33c0..088fb9 blocks=1 txs=0 mgas=0.000 elapsed=11.010ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:25.079] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:02:29.016] Imported new chain segment number=6251 hash=459d12..4a8156 blocks=1 txs=0 mgas=0.000 elapsed=7.318ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:34.019] Imported new chain segment number=6252 hash=21bbbe..cbf577 blocks=1 txs=0 mgas=0.000 elapsed=6.403ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:35.099] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:02:39.019] Imported new chain segment number=6253 hash=d2bd61..99de54 blocks=1 txs=0 mgas=0.000 elapsed=6.775ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:44.016] Imported new chain segment number=6254 hash=9c6f91..a90e8e blocks=1 txs=0 mgas=0.000 elapsed=6.767ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:45.116] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:02:49.020] Imported new chain segment number=6255 hash=83919e..0d7d4b blocks=1 txs=0 mgas=0.000 elapsed=7.578ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:54.011] Imported new chain segment number=6256 hash=623dca..9bbb49 blocks=1 txs=0 mgas=0.000 elapsed=5.284ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:02:55.134] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:02:59.013] Imported new chain segment number=6257 hash=60b650..f4bf2b blocks=1 txs=0 mgas=0.000 elapsed=4.976ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:04.012] Imported new chain segment number=6258 hash=d67bb1..32f58b blocks=1 txs=0 mgas=0.000 elapsed=5.960ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:05.154] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:03:09.011] Imported new chain segment number=6259 hash=249e77..5f0055 blocks=1 txs=0 mgas=0.000 elapsed=4.515ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:14.020] Imported new chain segment number=6260 hash=704314..c55355 blocks=1 txs=0 mgas=0.000 elapsed=7.091ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:15.173] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:03:19.018] Imported new chain segment number=6261 hash=db5e65..15e422 blocks=1 txs=0 mgas=0.000 elapsed=7.284ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:24.017] Imported new chain segment number=6262 hash=cb3348..df4c5c blocks=1 txs=0 mgas=0.000 elapsed=6.836ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:25.190] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:03:29.016] Imported new chain segment number=6263 hash=84f41e..c44d70 blocks=1 txs=0 mgas=0.000 elapsed=4.290ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:34.013] Imported new chain segment number=6264 hash=c5c755..c93177 blocks=1 txs=0 mgas=0.000 elapsed=5.387ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:35.209] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:03:39.012] Imported new chain segment number=6265 hash=377d00..79b14b blocks=1 txs=0 mgas=0.000 elapsed=5.163ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:44.021] Imported new chain segment number=6266 hash=233fe3..ead916 blocks=1 txs=0 mgas=0.000 elapsed=7.170ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:45.226] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:03:49.013] Imported new chain segment number=6267 hash=79662c..71303f blocks=1 txs=0 mgas=0.000 elapsed=5.147ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:54.012] Imported new chain segment number=6268 hash=19ecb4..d1ce28 blocks=1 txs=0 mgas=0.000 elapsed=5.750ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:03:55.247] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:03:59.016] Imported new chain segment number=6269 hash=4f1e52..b2819a blocks=1 txs=0 mgas=0.000 elapsed=6.203ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:04.018] Imported new chain segment number=6270 hash=b08814..9103b0 blocks=1 txs=0 mgas=0.000 elapsed=6.538ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:05.267] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:04:09.013] Imported new chain segment number=6271 hash=bcf611..0f119e blocks=1 txs=0 mgas=0.000 elapsed=5.494ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:14.017] Imported new chain segment number=6272 hash=9340f2..a0ff14 blocks=1 txs=0 mgas=0.000 elapsed=6.833ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:15.286] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:04:19.018] Imported new chain segment number=6273 hash=52162a..b7f3d8 blocks=1 txs=0 mgas=0.000 elapsed=6.202ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:24.011] Imported new chain segment number=6274 hash=990f2d..6ff1fc blocks=1 txs=0 mgas=0.000 elapsed=4.770ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:25.305] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:04:29.019] Imported new chain segment number=6275 hash=8059a1..b311d2 blocks=1 txs=0 mgas=0.000 elapsed=7.752ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:34.018] Imported new chain segment number=6276 hash=742a7e..3f1be8 blocks=1 txs=0 mgas=0.000 elapsed=6.966ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:35.329] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:04:39.016] Imported new chain segment number=6277 hash=61c253..e857e6 blocks=1 txs=0 mgas=0.000 elapsed=5.556ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:44.019] Imported new chain segment number=6278 hash=7700e3..c979cb blocks=1 txs=0 mgas=0.000 elapsed=7.677ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:45.350] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:04:49.015] Imported new chain segment number=6279 hash=4c78bd..55352e blocks=1 txs=0 mgas=0.000 elapsed=6.766ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:54.019] Imported new chain segment number=6280 hash=791c64..7eb7d6 blocks=1 txs=0 mgas=0.000 elapsed=7.132ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:04:55.372] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:04:59.021] Imported new chain segment number=6281 hash=cb922e..efef4c blocks=1 txs=0 mgas=0.000 elapsed=8.679ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:04.013] Imported new chain segment number=6282 hash=f692cb..a37fd7 blocks=1 txs=0 mgas=0.000 elapsed=5.996ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:05.390] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:05:09.021] Imported new chain segment number=6283 hash=243b34..ac6295 blocks=1 txs=0 mgas=0.000 elapsed=7.888ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:14.019] Imported new chain segment number=6284 hash=a4a464..c9b6cd blocks=1 txs=0 mgas=0.000 elapsed=7.160ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:15.409] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:05:19.020] Imported new chain segment number=6285 hash=1613c9..a485dc blocks=1 txs=0 mgas=0.000 elapsed=7.890ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:24.021] Imported new chain segment number=6286 hash=8d6d30..7f97c0 blocks=1 txs=0 mgas=0.000 elapsed=7.161ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:25.430] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:05:29.019] Imported new chain segment number=6287 hash=92c522..a7decf blocks=1 txs=0 mgas=0.000 elapsed=6.888ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:34.012] Imported new chain segment number=6288 hash=6eb540..deedd9 blocks=1 txs=0 mgas=0.000 elapsed=5.713ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:35.451] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:05:39.014] Imported new chain segment number=6289 hash=b97c31..1493f2 blocks=1 txs=0 mgas=0.000 elapsed=6.784ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:44.015] Imported new chain segment number=6290 hash=e1424f..6a06b7 blocks=1 txs=0 mgas=0.000 elapsed=5.939ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:45.471] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:05:49.014] Imported new chain segment number=6291 hash=0e04b3..d052ff blocks=1 txs=0 mgas=0.000 elapsed=6.709ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:54.013] Imported new chain segment number=6292 hash=8f4deb..ff1cde blocks=1 txs=0 mgas=0.000 elapsed=5.780ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:05:55.492] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:05:59.013] Imported new chain segment number=6293 hash=adce99..f9f366 blocks=1 txs=0 mgas=0.000 elapsed=5.160ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:04.012] Imported new chain segment number=6294 hash=a2bdfc..8f4d62 blocks=1 txs=0 mgas=0.000 elapsed=5.930ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:05.510] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:06:09.019] Imported new chain segment number=6295 hash=865751..0cd54e blocks=1 txs=0 mgas=0.000 elapsed=8.410ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:14.018] Imported new chain segment number=6296 hash=f7c06e..78c4e7 blocks=1 txs=0 mgas=0.000 elapsed=6.472ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:15.530] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:06:19.019] Imported new chain segment number=6297 hash=4505ee..29e2bf blocks=1 txs=0 mgas=0.000 elapsed=6.508ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:24.016] Imported new chain segment number=6298 hash=b036c6..978548 blocks=1 txs=0 mgas=0.000 elapsed=6.574ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:25.550] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:06:29.016] Imported new chain segment number=6299 hash=9fa773..483b71 blocks=1 txs=0 mgas=0.000 elapsed=5.649ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:34.013] Imported new chain segment number=6300 hash=a9f572..517433 blocks=1 txs=0 mgas=0.000 elapsed=6.045ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:35.566] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:06:39.015] Imported new chain segment number=6301 hash=7b781e..896e02 blocks=1 txs=0 mgas=0.000 elapsed=5.941ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:44.015] Imported new chain segment number=6302 hash=112f1e..bb2877 blocks=1 txs=0 mgas=0.000 elapsed=6.750ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:45.587] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:06:49.014] Imported new chain segment number=6303 hash=b4fb9d..22afad blocks=1 txs=0 mgas=0.000 elapsed=6.606ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:54.013] Imported new chain segment number=6304 hash=ba9e8c..0717f2 blocks=1 txs=0 mgas=0.000 elapsed=5.470ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:06:55.606] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:06:59.019] Imported new chain segment number=6305 hash=9e2c2e..bad527 blocks=1 txs=0 mgas=0.000 elapsed=7.112ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:04.013] Imported new chain segment number=6306 hash=399355..a63d0a blocks=1 txs=0 mgas=0.000 elapsed=5.041ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:05.627] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:07:09.020] Imported new chain segment number=6307 hash=ca8218..063c50 blocks=1 txs=0 mgas=0.000 elapsed=7.046ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:14.012] Imported new chain segment number=6308 hash=79c47a..2c8523 blocks=1 txs=0 mgas=0.000 elapsed=5.987ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:15.648] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:07:19.017] Imported new chain segment number=6309 hash=750b23..8387e3 blocks=1 txs=0 mgas=0.000 elapsed=5.958ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:24.012] Imported new chain segment number=6310 hash=86097f..fabca7 blocks=1 txs=0 mgas=0.000 elapsed=6.205ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:25.667] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:07:29.012] Imported new chain segment number=6311 hash=73a94f..684363 blocks=1 txs=0 mgas=0.000 elapsed=5.275ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:34.020] Imported new chain segment number=6312 hash=896bac..294f4b blocks=1 txs=0 mgas=0.000 elapsed=6.362ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:35.687] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:07:39.016] Imported new chain segment number=6313 hash=762688..dde6db blocks=1 txs=0 mgas=0.000 elapsed=6.151ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:44.019] Imported new chain segment number=6314 hash=c2298c..7774e7 blocks=1 txs=0 mgas=0.000 elapsed=6.482ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:45.707] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:07:49.021] Imported new chain segment number=6315 hash=0cf7b0..f73e04 blocks=1 txs=0 mgas=0.000 elapsed=7.289ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:54.018] Imported new chain segment number=6316 hash=c3b8c1..449210 blocks=1 txs=0 mgas=0.000 elapsed=7.210ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:07:55.726] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:07:59.017] Imported new chain segment number=6317 hash=841cda..2b40a9 blocks=1 txs=0 mgas=0.000 elapsed=6.934ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:04.022] Imported new chain segment number=6318 hash=12fe10..b1f822 blocks=1 txs=0 mgas=0.000 elapsed=9.309ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:05.745] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:08:09.014] Imported new chain segment number=6319 hash=386708..282cd1 blocks=1 txs=0 mgas=0.000 elapsed=6.471ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:14.022] Imported new chain segment number=6320 hash=dd4427..4fa666 blocks=1 txs=0 mgas=0.000 elapsed=8.538ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:15.763] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:08:19.012] Imported new chain segment number=6321 hash=c93648..554dbc blocks=1 txs=0 mgas=0.000 elapsed=5.360ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:24.031] Imported new chain segment number=6322 hash=d4a567..33b0ad blocks=1 txs=0 mgas=0.000 elapsed=13.223ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:25.784] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:08:29.039] Imported new chain segment number=6323 hash=7a58f4..c0b2fb blocks=1 txs=0 mgas=0.000 elapsed=22.472ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:34.022] Imported new chain segment number=6324 hash=fcc897..c2ba30 blocks=1 txs=0 mgas=0.000 elapsed=9.509ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:35.801] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:08:39.037] Imported new chain segment number=6325 hash=951c17..29c91e blocks=1 txs=0 mgas=0.000 elapsed=19.031ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:44.039] Imported new chain segment number=6326 hash=82142d..59250a blocks=1 txs=0 mgas=0.000 elapsed=21.279ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:45.820] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:08:49.040] Imported new chain segment number=6327 hash=12b68a..3f1e42 blocks=1 txs=0 mgas=0.000 elapsed=24.284ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:54.039] Imported new chain segment number=6328 hash=f48f89..d4f1fc blocks=1 txs=0 mgas=0.000 elapsed=22.773ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:08:55.840] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:08:59.045] Imported new chain segment number=6329 hash=b4ccee..92188c blocks=1 txs=0 mgas=0.000 elapsed=23.612ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:04.058] Imported new chain segment number=6330 hash=a5b330..1c2dab blocks=1 txs=0 mgas=0.000 elapsed=30.684ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:05.861] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:09:09.030] Imported new chain segment number=6331 hash=af6859..ce5398 blocks=1 txs=0 mgas=0.000 elapsed=14.026ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:14.046] Imported new chain segment number=6332 hash=fa3c8b..4e832e blocks=1 txs=0 mgas=0.000 elapsed=26.741ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:15.883] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:09:19.046] Imported new chain segment number=6333 hash=4f1ea4..b50b60 blocks=1 txs=0 mgas=0.000 elapsed=28.768ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:24.034] Imported new chain segment number=6334 hash=16a44f..c5ddab blocks=1 txs=0 mgas=0.000 elapsed=19.484ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:25.907] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:09:29.070] Imported new chain segment number=6335 hash=3739be..9a1294 blocks=1 txs=0 mgas=0.000 elapsed=35.055ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:34.020] Imported new chain segment number=6336 hash=93055b..fc01bb blocks=1 txs=0 mgas=0.000 elapsed=7.047ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:35.927] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:09:39.012] Imported new chain segment number=6337 hash=de03f0..77f10e blocks=1 txs=0 mgas=0.000 elapsed=4.624ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:44.022] Imported new chain segment number=6338 hash=1ca266..80546c blocks=1 txs=0 mgas=0.000 elapsed=7.846ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:45.944] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:09:49.020] Imported new chain segment number=6339 hash=7fb5dc..6d1664 blocks=1 txs=0 mgas=0.000 elapsed=6.743ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:54.019] Imported new chain segment number=6340 hash=1ec9bb..c9293f blocks=1 txs=0 mgas=0.000 elapsed=6.933ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:09:55.964] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:09:59.016] Imported new chain segment number=6341 hash=adea84..16fe23 blocks=1 txs=0 mgas=0.000 elapsed=6.280ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:04.019] Imported new chain segment number=6342 hash=b23e2a..3af442 blocks=1 txs=0 mgas=0.000 elapsed=6.387ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:05.985] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:10:09.014] Imported new chain segment number=6343 hash=bdbc00..3f9826 blocks=1 txs=0 mgas=0.000 elapsed=4.760ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:14.018] Imported new chain segment number=6344 hash=291ada..3c2ec3 blocks=1 txs=0 mgas=0.000 elapsed=8.383ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:16.006] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:10:19.019] Imported new chain segment number=6345 hash=507de2..332ee5 blocks=1 txs=0 mgas=0.000 elapsed=7.211ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:24.019] Imported new chain segment number=6346 hash=01f482..c7e970 blocks=1 txs=0 mgas=0.000 elapsed=7.293ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:26.026] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:10:29.017] Imported new chain segment number=6347 hash=d54bbe..2dc7ed blocks=1 txs=0 mgas=0.000 elapsed=6.713ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:34.011] Imported new chain segment number=6348 hash=050f8d..02f6a3 blocks=1 txs=0 mgas=0.000 elapsed=5.300ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:36.046] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:10:39.019] Imported new chain segment number=6349 hash=9b5d5a..5f095e blocks=1 txs=0 mgas=0.000 elapsed=6.897ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:44.015] Imported new chain segment number=6350 hash=fb0d1e..be6058 blocks=1 txs=0 mgas=0.000 elapsed=6.061ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:46.066] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:10:49.025] Imported new chain segment number=6351 hash=b24112..ebd727 blocks=1 txs=0 mgas=0.000 elapsed=11.252ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:54.014] Imported new chain segment number=6352 hash=45b56b..94ec8a blocks=1 txs=0 mgas=0.000 elapsed=5.725ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:10:56.085] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:10:59.016] Imported new chain segment number=6353 hash=c08a13..ccef6d blocks=1 txs=0 mgas=0.000 elapsed=6.582ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:04.017] Imported new chain segment number=6354 hash=8e9510..79d2ed blocks=1 txs=0 mgas=0.000 elapsed=5.435ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:06.104] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:11:09.020] Imported new chain segment number=6355 hash=47534b..349a95 blocks=1 txs=0 mgas=0.000 elapsed=7.206ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:14.020] Imported new chain segment number=6356 hash=8f84ed..721078 blocks=1 txs=0 mgas=0.000 elapsed=7.219ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:16.125] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:11:19.019] Imported new chain segment number=6357 hash=82c221..7df72c blocks=1 txs=0 mgas=0.000 elapsed=7.941ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:24.021] Imported new chain segment number=6358 hash=54cf82..621199 blocks=1 txs=0 mgas=0.000 elapsed=7.565ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:26.144] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:11:29.017] Imported new chain segment number=6359 hash=287b1f..1223c4 blocks=1 txs=0 mgas=0.000 elapsed=5.647ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:34.020] Imported new chain segment number=6360 hash=44ee1d..9d7743 blocks=1 txs=0 mgas=0.000 elapsed=7.244ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:36.165] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:11:39.022] Imported new chain segment number=6361 hash=0428c3..621af1 blocks=1 txs=0 mgas=0.000 elapsed=8.578ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:44.019] Imported new chain segment number=6362 hash=45539f..0e7777 blocks=1 txs=0 mgas=0.000 elapsed=7.529ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:46.187] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:11:49.019] Imported new chain segment number=6363 hash=a5d57c..21659a blocks=1 txs=0 mgas=0.000 elapsed=6.953ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:54.018] Imported new chain segment number=6364 hash=87e28e..852c93 blocks=1 txs=0 mgas=0.000 elapsed=7.159ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:11:56.205] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:11:59.012] Imported new chain segment number=6365 hash=8eb898..786970 blocks=1 txs=0 mgas=0.000 elapsed=5.776ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:04.022] Imported new chain segment number=6366 hash=a462f0..e25f76 blocks=1 txs=0 mgas=0.000 elapsed=7.992ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:06.223] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:12:09.017] Imported new chain segment number=6367 hash=daec93..75f0b8 blocks=1 txs=0 mgas=0.000 elapsed=6.198ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:14.018] Imported new chain segment number=6368 hash=6237ff..5cd7ae blocks=1 txs=0 mgas=0.000 elapsed=6.323ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:16.241] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:12:19.019] Imported new chain segment number=6369 hash=5150a5..a3c1b0 blocks=1 txs=0 mgas=0.000 elapsed=6.984ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:24.020] Imported new chain segment number=6370 hash=319e62..1fe3a4 blocks=1 txs=0 mgas=0.000 elapsed=7.727ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:26.262] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:12:29.021] Imported new chain segment number=6371 hash=c079ad..1e2ab4 blocks=1 txs=0 mgas=0.000 elapsed=7.284ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:34.021] Imported new chain segment number=6372 hash=142325..05b776 blocks=1 txs=0 mgas=0.000 elapsed=7.008ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:36.281] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:12:39.018] Imported new chain segment number=6373 hash=6de4a2..443686 blocks=1 txs=0 mgas=0.000 elapsed=6.392ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:44.017] Imported new chain segment number=6374 hash=ccaada..b6e633 blocks=1 txs=0 mgas=0.000 elapsed=5.719ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:46.304] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:12:49.025] Imported new chain segment number=6375 hash=f427df..a6d338 blocks=1 txs=0 mgas=0.000 elapsed=9.842ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:54.014] Imported new chain segment number=6376 hash=2806d7..de086b blocks=1 txs=0 mgas=0.000 elapsed=5.602ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:12:56.323] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:12:59.020] Imported new chain segment number=6377 hash=0d5690..b9b546 blocks=1 txs=0 mgas=0.000 elapsed=7.690ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:04.018] Imported new chain segment number=6378 hash=7f3970..62220a blocks=1 txs=0 mgas=0.000 elapsed=6.966ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:06.344] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:13:09.015] Imported new chain segment number=6379 hash=c9a977..035d4b blocks=1 txs=0 mgas=0.000 elapsed=5.343ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:14.020] Imported new chain segment number=6380 hash=7538d8..b9e0b0 blocks=1 txs=0 mgas=0.000 elapsed=7.022ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:16.364] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:13:19.020] Imported new chain segment number=6381 hash=b9e074..3e5d8e blocks=1 txs=0 mgas=0.000 elapsed=6.257ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:24.043] Imported new chain segment number=6382 hash=9aaa10..2b5c18 blocks=1 txs=0 mgas=0.000 elapsed=6.068ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:26.383] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:13:29.020] Imported new chain segment number=6383 hash=316c04..98c123 blocks=1 txs=0 mgas=0.000 elapsed=6.720ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:34.017] Imported new chain segment number=6384 hash=f43b88..b2e72a blocks=1 txs=0 mgas=0.000 elapsed=6.930ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:36.401] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:13:39.017] Imported new chain segment number=6385 hash=a7e9dd..557c67 blocks=1 txs=0 mgas=0.000 elapsed=6.277ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:44.018] Imported new chain segment number=6386 hash=bdc114..119e3d blocks=1 txs=0 mgas=0.000 elapsed=7.532ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:46.419] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:13:49.011] Imported new chain segment number=6387 hash=7078cc..01eb48 blocks=1 txs=0 mgas=0.000 elapsed=5.004ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:54.020] Imported new chain segment number=6388 hash=ce848c..3e7be7 blocks=1 txs=0 mgas=0.000 elapsed=7.497ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:13:56.441] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:13:59.017] Imported new chain segment number=6389 hash=66f792..3b255e blocks=1 txs=0 mgas=0.000 elapsed=5.717ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:04.019] Imported new chain segment number=6390 hash=dc006a..17c55f blocks=1 txs=0 mgas=0.000 elapsed=6.709ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:06.459] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:14:09.017] Imported new chain segment number=6391 hash=6fb250..e5ed59 blocks=1 txs=0 mgas=0.000 elapsed=7.128ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:14.015] Imported new chain segment number=6392 hash=02a210..324b89 blocks=1 txs=0 mgas=0.000 elapsed=5.829ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:16.478] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:14:19.016] Imported new chain segment number=6393 hash=8e7771..be3863 blocks=1 txs=0 mgas=0.000 elapsed=5.279ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:24.017] Imported new chain segment number=6394 hash=b806c5..671de4 blocks=1 txs=0 mgas=0.000 elapsed=6.105ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:26.496] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:14:29.018] Imported new chain segment number=6395 hash=fefe60..1bbb21 blocks=1 txs=0 mgas=0.000 elapsed=7.314ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:34.021] Imported new chain segment number=6396 hash=c9d596..62e010 blocks=1 txs=0 mgas=0.000 elapsed=8.642ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:36.517] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:14:39.017] Imported new chain segment number=6397 hash=425fd9..f351d1 blocks=1 txs=0 mgas=0.000 elapsed=5.618ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:44.011] Imported new chain segment number=6398 hash=e7def1..2d04d1 blocks=1 txs=0 mgas=0.000 elapsed=5.414ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:46.535] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:14:49.022] Imported new chain segment number=6399 hash=ad674c..5cfb04 blocks=1 txs=0 mgas=0.000 elapsed=8.989ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:54.011] Imported new chain segment number=6400 hash=2171f9..4b057d blocks=1 txs=0 mgas=0.000 elapsed=5.231ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:14:56.554] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:14:59.021] Imported new chain segment number=6401 hash=ee5500..aa07ac blocks=1 txs=0 mgas=0.000 elapsed=8.067ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:04.013] Imported new chain segment number=6402 hash=522cb0..ba4f2e blocks=1 txs=0 mgas=0.000 elapsed=6.490ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:06.576] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:15:09.011] Imported new chain segment number=6403 hash=a1b1d2..244da3 blocks=1 txs=0 mgas=0.000 elapsed=5.891ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:14.016] Imported new chain segment number=6404 hash=45d779..43fbf7 blocks=1 txs=0 mgas=0.000 elapsed=6.062ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:16.598] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:15:19.012] Imported new chain segment number=6405 hash=f8a53e..897fc8 blocks=1 txs=0 mgas=0.000 elapsed=5.436ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:24.019] Imported new chain segment number=6406 hash=d4f92c..fda890 blocks=1 txs=0 mgas=0.000 elapsed=7.391ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:26.618] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:15:29.018] Imported new chain segment number=6407 hash=13681d..4b72fe blocks=1 txs=0 mgas=0.000 elapsed=6.842ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:34.013] Imported new chain segment number=6408 hash=77a8e6..e45a25 blocks=1 txs=0 mgas=0.000 elapsed=5.268ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:36.638] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:15:39.014] Imported new chain segment number=6409 hash=e73d7f..52f26b blocks=1 txs=0 mgas=0.000 elapsed=5.253ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:44.009] Imported new chain segment number=6410 hash=cec649..b34663 blocks=1 txs=0 mgas=0.000 elapsed=4.354ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:46.660] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:15:49.020] Imported new chain segment number=6411 hash=d98120..7b1a32 blocks=1 txs=0 mgas=0.000 elapsed=6.845ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:54.021] Imported new chain segment number=6412 hash=f3978f..94f15b blocks=1 txs=0 mgas=0.000 elapsed=7.344ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:15:56.682] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:15:59.012] Imported new chain segment number=6413 hash=b3b9f4..02c714 blocks=1 txs=0 mgas=0.000 elapsed=5.047ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:04.024] Imported new chain segment number=6414 hash=d1e239..218282 blocks=1 txs=0 mgas=0.000 elapsed=9.426ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:06.703] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:16:09.017] Imported new chain segment number=6415 hash=a738d8..39d833 blocks=1 txs=0 mgas=0.000 elapsed=7.270ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:14.017] Imported new chain segment number=6416 hash=3a57b6..94d4f0 blocks=1 txs=0 mgas=0.000 elapsed=5.508ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:16.726] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:16:19.014] Imported new chain segment number=6417 hash=470732..a8e6ed blocks=1 txs=0 mgas=0.000 elapsed=6.964ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:24.018] Imported new chain segment number=6418 hash=097633..ec5f96 blocks=1 txs=0 mgas=0.000 elapsed=5.736ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:26.746] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:16:29.016] Imported new chain segment number=6419 hash=105756..34131f blocks=1 txs=0 mgas=0.000 elapsed=5.756ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:34.017] Imported new chain segment number=6420 hash=e8e168..8bbbe1 blocks=1 txs=0 mgas=0.000 elapsed=5.717ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:36.765] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:16:39.019] Imported new chain segment number=6421 hash=6f221a..b315cf blocks=1 txs=0 mgas=0.000 elapsed=6.558ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:44.019] Imported new chain segment number=6422 hash=5ed405..0ebbf9 blocks=1 txs=0 mgas=0.000 elapsed=7.117ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:46.784] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:16:49.016] Imported new chain segment number=6423 hash=e65dc8..761ae9 blocks=1 txs=0 mgas=0.000 elapsed=7.817ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:54.020] Imported new chain segment number=6424 hash=96edb6..c233e0 blocks=1 txs=0 mgas=0.000 elapsed=7.181ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:16:56.805] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:16:59.020] Imported new chain segment number=6425 hash=7a0f10..ad5ba2 blocks=1 txs=0 mgas=0.000 elapsed=7.796ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:04.016] Imported new chain segment number=6426 hash=d99511..8fdc0d blocks=1 txs=0 mgas=0.000 elapsed=6.497ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:06.827] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:17:09.018] Imported new chain segment number=6427 hash=fd63ad..412458 blocks=1 txs=0 mgas=0.000 elapsed=5.562ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:14.022] Imported new chain segment number=6428 hash=a362fd..4f102a blocks=1 txs=0 mgas=0.000 elapsed=9.251ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:16.847] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:17:19.017] Imported new chain segment number=6429 hash=5b6ef0..e86be4 blocks=1 txs=0 mgas=0.000 elapsed=6.024ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:24.017] Imported new chain segment number=6430 hash=e85762..94fd7d blocks=1 txs=0 mgas=0.000 elapsed=6.176ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:26.868] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:17:29.015] Imported new chain segment number=6431 hash=be6a1a..457ab8 blocks=1 txs=0 mgas=0.000 elapsed=6.520ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:34.019] Imported new chain segment number=6432 hash=4caf63..e11bb9 blocks=1 txs=0 mgas=0.000 elapsed=8.219ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:36.888] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:17:39.018] Imported new chain segment number=6433 hash=a86773..f8f2b2 blocks=1 txs=0 mgas=0.000 elapsed=6.516ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:44.018] Imported new chain segment number=6434 hash=01a6e6..fa9c0e blocks=1 txs=0 mgas=0.000 elapsed=7.497ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:46.911] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:17:49.015] Imported new chain segment number=6435 hash=8ed5c0..d11ea6 blocks=1 txs=0 mgas=0.000 elapsed=4.927ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:54.015] Imported new chain segment number=6436 hash=d2a0ae..079e8e blocks=1 txs=0 mgas=0.000 elapsed=6.005ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:17:56.933] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:17:59.018] Imported new chain segment number=6437 hash=302f15..8a9ba7 blocks=1 txs=0 mgas=0.000 elapsed=5.567ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:04.012] Imported new chain segment number=6438 hash=c9004a..054b21 blocks=1 txs=0 mgas=0.000 elapsed=4.503ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:06.952] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:18:09.018] Imported new chain segment number=6439 hash=d49511..0db594 blocks=1 txs=0 mgas=0.000 elapsed=5.105ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:14.016] Imported new chain segment number=6440 hash=a41511..bb0022 blocks=1 txs=0 mgas=0.000 elapsed=6.364ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:16.971] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:18:19.012] Imported new chain segment number=6441 hash=efbb85..e5f377 blocks=1 txs=0 mgas=0.000 elapsed=5.013ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:24.012] Imported new chain segment number=6442 hash=5b61fc..f96ad6 blocks=1 txs=0 mgas=0.000 elapsed=5.314ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:26.991] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:18:29.031] Imported new chain segment number=6443 hash=ce6f53..7998b5 blocks=1 txs=0 mgas=0.000 elapsed=17.210ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:34.122] Imported new chain segment number=6444 hash=fd49c7..669472 blocks=1 txs=0 mgas=0.000 elapsed=24.016ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:37.014] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:18:39.023] Imported new chain segment number=6445 hash=71aee5..c600ae blocks=1 txs=0 mgas=0.000 elapsed=8.159ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:44.033] Imported new chain segment number=6446 hash=b3c928..7071eb blocks=1 txs=0 mgas=0.000 elapsed=13.144ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:47.042] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:18:49.020] Imported new chain segment number=6447 hash=65a12d..a88dba blocks=1 txs=0 mgas=0.000 elapsed=7.901ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:54.020] Imported new chain segment number=6448 hash=deec1b..1a504b blocks=1 txs=0 mgas=0.000 elapsed=6.369ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:18:57.070] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:18:59.035] Imported new chain segment number=6449 hash=4a184d..3d0802 blocks=1 txs=0 mgas=0.000 elapsed=12.643ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:04.029] Imported new chain segment number=6450 hash=f0b37d..6fd5b3 blocks=1 txs=0 mgas=0.000 elapsed=10.789ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:07.104] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:19:09.026] Imported new chain segment number=6451 hash=c2523c..4d1830 blocks=1 txs=0 mgas=0.000 elapsed=9.033ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:14.031] Imported new chain segment number=6452 hash=abf9f0..7bfb5d blocks=1 txs=0 mgas=0.000 elapsed=12.483ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:17.148] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:19:19.034] Imported new chain segment number=6453 hash=810adc..0e907b blocks=1 txs=0 mgas=0.000 elapsed=10.912ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:24.036] Imported new chain segment number=6454 hash=35f263..0f6f4d blocks=1 txs=0 mgas=0.000 elapsed=11.956ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:27.173] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:19:29.025] Imported new chain segment number=6455 hash=77db4a..6c9aba blocks=1 txs=0 mgas=0.000 elapsed=10.152ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:34.035] Imported new chain segment number=6456 hash=a6f433..d38400 blocks=1 txs=0 mgas=0.000 elapsed=12.138ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:37.198] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:19:39.033] Imported new chain segment number=6457 hash=b0db7f..079afa blocks=1 txs=0 mgas=0.000 elapsed=13.551ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:44.030] Imported new chain segment number=6458 hash=3b4bed..f92698 blocks=1 txs=0 mgas=0.000 elapsed=7.587ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:47.380] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:19:49.036] Imported new chain segment number=6459 hash=80b321..dbb594 blocks=1 txs=0 mgas=0.000 elapsed=10.717ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:54.033] Imported new chain segment number=6460 hash=880e13..be3549 blocks=1 txs=0 mgas=0.000 elapsed=7.655ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:19:57.525] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:19:59.054] Imported new chain segment number=6461 hash=a41e57..1bc4d4 blocks=1 txs=0 mgas=0.000 elapsed=22.803ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:04.057] Imported new chain segment number=6462 hash=cacdb2..250640 blocks=1 txs=0 mgas=0.000 elapsed=23.279ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:07.559] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:20:09.046] Imported new chain segment number=6463 hash=8c68a9..915495 blocks=1 txs=0 mgas=0.000 elapsed=15.427ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:14.042] Imported new chain segment number=6464 hash=427d05..865ba2 blocks=1 txs=0 mgas=0.000 elapsed=22.203ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:17.592] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:20:19.525] Imported new chain segment number=6465 hash=b22240..debba7 blocks=1 txs=0 mgas=0.000 elapsed=25.453ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:24.047] Imported new chain segment number=6466 hash=d931f8..f80a90 blocks=1 txs=0 mgas=0.000 elapsed=14.380ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:27.628] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:20:29.059] Imported new chain segment number=6467 hash=1a821f..ff371c blocks=1 txs=0 mgas=0.000 elapsed=15.258ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:34.047] Imported new chain segment number=6468 hash=ec29f9..3f968f blocks=1 txs=0 mgas=0.000 elapsed=15.005ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:37.955] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:20:39.067] Imported new chain segment number=6469 hash=99584e..519880 blocks=1 txs=0 mgas=0.000 elapsed=38.878ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:44.045] Imported new chain segment number=6470 hash=785597..d9d401 blocks=1 txs=0 mgas=0.000 elapsed=13.464ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:47.996] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:20:49.044] Imported new chain segment number=6471 hash=1262c7..8bfb10 blocks=1 txs=0 mgas=0.000 elapsed=11.457ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:54.063] Imported new chain segment number=6472 hash=7bafce..bdb616 blocks=1 txs=0 mgas=0.000 elapsed=29.850ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:20:58.030] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:20:59.049] Imported new chain segment number=6473 hash=5789c4..3a2463 blocks=1 txs=0 mgas=0.000 elapsed=16.480ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:04.048] Imported new chain segment number=6474 hash=65bf49..78e518 blocks=1 txs=0 mgas=0.000 elapsed=16.888ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:08.052] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:21:09.043] Imported new chain segment number=6475 hash=81632b..6f573c blocks=1 txs=0 mgas=0.000 elapsed=26.491ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:14.042] Imported new chain segment number=6476 hash=c65dc5..f3de00 blocks=1 txs=0 mgas=0.000 elapsed=19.239ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:18.080] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:21:19.027] Imported new chain segment number=6477 hash=bb9e7a..a6d776 blocks=1 txs=0 mgas=0.000 elapsed=18.534ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:24.056] Imported new chain segment number=6478 hash=f71a17..2b2bf2 blocks=1 txs=0 mgas=0.000 elapsed=9.853ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:28.106] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:21:29.059] Imported new chain segment number=6479 hash=e437c7..afda33 blocks=1 txs=0 mgas=0.000 elapsed=26.204ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:34.069] Imported new chain segment number=6480 hash=71701d..79c535 blocks=1 txs=0 mgas=0.000 elapsed=34.477ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:38.130] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:21:39.071] Imported new chain segment number=6481 hash=38b9ad..a8b6f0 blocks=1 txs=0 mgas=0.000 elapsed=34.571ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:44.061] Imported new chain segment number=6482 hash=7af0fb..03ae79 blocks=1 txs=0 mgas=0.000 elapsed=35.438ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:48.156] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:21:49.064] Imported new chain segment number=6483 hash=a6c18e..f1295e blocks=1 txs=0 mgas=0.000 elapsed=35.925ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:54.065] Imported new chain segment number=6484 hash=854081..76d414 blocks=1 txs=0 mgas=0.000 elapsed=34.785ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:21:58.182] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:21:59.033] Imported new chain segment number=6485 hash=256195..3be171 blocks=1 txs=0 mgas=0.000 elapsed=15.440ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:22:04.037] Imported new chain segment number=6486 hash=878d39..118760 blocks=1 txs=0 mgas=0.000 elapsed=18.574ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:22:08.211] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:22:09.028] Imported new chain segment number=6487 hash=8df702..a68f7e blocks=1 txs=0 mgas=0.000 elapsed=10.599ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:22:14.030] Imported new chain segment number=6488 hash=11b84e..1ece43 blocks=1 txs=0 mgas=0.000 elapsed=14.482ms mgasps=0.000 triedirty=39.90KiB +INFO [08-24|12:22:18.233] Looking for peers peercount=2 tried=0 static=0 +INFO [08-24|12:22:19.033] Imported new chain segment number=6489 hash=7e88b8..69384f blocks=1 txs=0 mgas=0.000 elapsed=15.756ms mgasps=0.000 triedirty=39.90KiB diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/LOCK b/vote-block-skripsi/geth-vote/node3/data/geth/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00004096.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00004096.bag new file mode 100644 index 0000000..6df4fb8 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00004096.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00135168.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00135168.bag new file mode 100644 index 0000000..9323365 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00135168.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00266240.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00266240.bag new file mode 100644 index 0000000..7ad82b4 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00266240.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00397312.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00397312.bag new file mode 100644 index 0000000..41a34f0 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00397312.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00528384.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00528384.bag new file mode 100644 index 0000000..f3939c3 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00528384.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00659456.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00659456.bag new file mode 100644 index 0000000..c470b7f Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00659456.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00790528.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00790528.bag new file mode 100644 index 0000000..9f574f8 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00790528.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00921600.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00921600.bag new file mode 100644 index 0000000..90eb3ab Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_00921600.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_01052672.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_01052672.bag new file mode 100644 index 0000000..3bc4fcb Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_01052672.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_01183744.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_01183744.bag new file mode 100644 index 0000000..bfcd716 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_01183744.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_01314816.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_01314816.bag new file mode 100644 index 0000000..907e524 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_01314816.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_01445888.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_01445888.bag new file mode 100644 index 0000000..69c3176 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_01445888.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_01576960.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_01576960.bag new file mode 100644 index 0000000..841fded Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_01576960.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_01708032.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_01708032.bag new file mode 100644 index 0000000..0263c59 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_01708032.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_01839104.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_01839104.bag new file mode 100644 index 0000000..c7f8fa4 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/limbo/bkt_01839104.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00004096.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00004096.bag new file mode 100644 index 0000000..6df4fb8 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00004096.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00135168.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00135168.bag new file mode 100644 index 0000000..9323365 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00135168.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00266240.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00266240.bag new file mode 100644 index 0000000..7ad82b4 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00266240.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00397312.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00397312.bag new file mode 100644 index 0000000..41a34f0 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00397312.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00528384.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00528384.bag new file mode 100644 index 0000000..f3939c3 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00528384.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00659456.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00659456.bag new file mode 100644 index 0000000..c470b7f Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00659456.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00790528.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00790528.bag new file mode 100644 index 0000000..9f574f8 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00790528.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00921600.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00921600.bag new file mode 100644 index 0000000..90eb3ab Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_00921600.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_01052672.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_01052672.bag new file mode 100644 index 0000000..3bc4fcb Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_01052672.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_01183744.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_01183744.bag new file mode 100644 index 0000000..bfcd716 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_01183744.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_01314816.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_01314816.bag new file mode 100644 index 0000000..907e524 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_01314816.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_01445888.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_01445888.bag new file mode 100644 index 0000000..69c3176 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_01445888.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_01576960.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_01576960.bag new file mode 100644 index 0000000..841fded Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_01576960.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_01708032.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_01708032.bag new file mode 100644 index 0000000..0263c59 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_01708032.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_01839104.bag b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_01839104.bag new file mode 100644 index 0000000..c7f8fa4 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/blobpool/queue/bkt_01839104.bag differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/000050.log b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/000050.log new file mode 100644 index 0000000..496a9c0 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/000050.log differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/000053.sst b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/000053.sst new file mode 100644 index 0000000..b02c0d1 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/000053.sst differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/000054.log b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/000054.log new file mode 100644 index 0000000..ae6737c Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/000054.log differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/000055.log b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/000055.log new file mode 100644 index 0000000..f96e5a9 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/000055.log differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/CURRENT b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/CURRENT new file mode 100644 index 0000000..29ffc22 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/CURRENT @@ -0,0 +1 @@ +MANIFEST-000051 diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/LOCK b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/MANIFEST-000044 b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/MANIFEST-000044 new file mode 100644 index 0000000..810cff9 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/MANIFEST-000044 differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/MANIFEST-000051 b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/MANIFEST-000051 new file mode 100644 index 0000000..1314823 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/MANIFEST-000051 differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/OPTIONS-000052 b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/OPTIONS-000052 new file mode 100644 index 0000000..64a984b --- /dev/null +++ b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/OPTIONS-000052 @@ -0,0 +1,107 @@ +[Version] + pebble_version=0.1 + +[Options] + bytes_per_sync=524288 + cache_size=536870912 + cleaner=delete + compaction_debt_concurrency=1073741824 + comparer=leveldb.BytewiseComparator + disable_wal=false + flush_delay_delete_range=0s + flush_delay_range_key=0s + flush_split_bytes=4194304 + format_major_version=1 + l0_compaction_concurrency=10 + l0_compaction_file_threshold=500 + l0_compaction_threshold=4 + l0_stop_writes_threshold=12 + lbase_max_bytes=67108864 + max_concurrent_compactions=8 + max_manifest_file_size=134217728 + max_open_files=524288 + mem_table_size=134217728 + mem_table_stop_writes_threshold=2 + min_deletion_rate=0 + merger=pebble.concatenate + read_compaction_rate=16000 + read_sampling_multiplier=-1 + strict_wal_tail=true + table_cache_shards=8 + table_property_collectors=[] + validate_on_ingest=false + wal_dir= + wal_bytes_per_sync=0 + max_writer_concurrency=0 + force_writer_parallelism=false + secondary_cache_size_bytes=0 + +[Level "0"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "1"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "2"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "3"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "4"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "5"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "6"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/FLOCK b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/FLOCK new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/bodies.0000.cdat b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/bodies.0000.cdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/bodies.cidx b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/bodies.cidx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/bodies.cidx differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/bodies.meta b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/bodies.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/bodies.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/diffs.0000.rdat b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/diffs.0000.rdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/diffs.meta b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/diffs.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/diffs.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/diffs.ridx b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/diffs.ridx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/diffs.ridx differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/hashes.0000.rdat b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/hashes.0000.rdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/hashes.meta b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/hashes.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/hashes.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/hashes.ridx b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/hashes.ridx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/hashes.ridx differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/headers.0000.cdat b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/headers.0000.cdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/headers.cidx b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/headers.cidx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/headers.cidx differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/headers.meta b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/headers.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/headers.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/receipts.0000.cdat b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/receipts.0000.cdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/receipts.cidx b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/receipts.cidx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/receipts.cidx differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/receipts.meta b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/receipts.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node3/data/geth/chaindata/ancient/chain/receipts.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/jwtsecret b/vote-block-skripsi/geth-vote/node3/data/geth/jwtsecret new file mode 100644 index 0000000..193a64d --- /dev/null +++ b/vote-block-skripsi/geth-vote/node3/data/geth/jwtsecret @@ -0,0 +1 @@ +0xa17aadff6caaa1ffb0a0b67c1289c1d3efe30558288315f0694f13ba94c3ebc6 \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/000002.log b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/000002.log new file mode 100644 index 0000000..8abd502 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/000002.log differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/CURRENT b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/CURRENT new file mode 100644 index 0000000..7ed683d --- /dev/null +++ b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/LOCK b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/MANIFEST-000001 b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/MANIFEST-000001 new file mode 100644 index 0000000..7c30d31 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/MANIFEST-000001 differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/OPTIONS-000003 b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/OPTIONS-000003 new file mode 100644 index 0000000..12e1cf3 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/OPTIONS-000003 @@ -0,0 +1,107 @@ +[Version] + pebble_version=0.1 + +[Options] + bytes_per_sync=524288 + cache_size=16777216 + cleaner=delete + compaction_debt_concurrency=1073741824 + comparer=leveldb.BytewiseComparator + disable_wal=false + flush_delay_delete_range=0s + flush_delay_range_key=0s + flush_split_bytes=4194304 + format_major_version=1 + l0_compaction_concurrency=10 + l0_compaction_file_threshold=500 + l0_compaction_threshold=4 + l0_stop_writes_threshold=12 + lbase_max_bytes=67108864 + max_concurrent_compactions=8 + max_manifest_file_size=134217728 + max_open_files=16 + mem_table_size=4194304 + mem_table_stop_writes_threshold=2 + min_deletion_rate=0 + merger=pebble.concatenate + read_compaction_rate=16000 + read_sampling_multiplier=-1 + strict_wal_tail=true + table_cache_shards=8 + table_property_collectors=[] + validate_on_ingest=false + wal_dir= + wal_bytes_per_sync=0 + max_writer_concurrency=0 + force_writer_parallelism=false + secondary_cache_size_bytes=0 + +[Level "0"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "1"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "2"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "3"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "4"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "5"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 + +[Level "6"] + block_restart_interval=16 + block_size=4096 + block_size_threshold=90 + compression=Snappy + filter_policy=rocksdb.BuiltinBloomFilter + filter_type=table + index_block_size=4096 + target_file_size=2097152 diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/FLOCK b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/FLOCK new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/bodies.0000.cdat b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/bodies.0000.cdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/bodies.cidx b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/bodies.cidx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/bodies.cidx differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/bodies.meta b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/bodies.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/bodies.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/diffs.0000.rdat b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/diffs.0000.rdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/diffs.meta b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/diffs.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/diffs.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/diffs.ridx b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/diffs.ridx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/diffs.ridx differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/hashes.0000.rdat b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/hashes.0000.rdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/hashes.meta b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/hashes.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/hashes.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/hashes.ridx b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/hashes.ridx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/hashes.ridx differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/headers.0000.cdat b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/headers.0000.cdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/headers.cidx b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/headers.cidx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/headers.cidx differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/headers.meta b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/headers.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/headers.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/receipts.0000.cdat b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/receipts.0000.cdat new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/receipts.cidx b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/receipts.cidx new file mode 100644 index 0000000..ab2c684 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/receipts.cidx differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/receipts.meta b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/receipts.meta new file mode 100644 index 0000000..59ee616 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node3/data/geth/lightchaindata/ancient/chain/receipts.meta @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/nodekey b/vote-block-skripsi/geth-vote/node3/data/geth/nodekey new file mode 100644 index 0000000..2426f19 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node3/data/geth/nodekey @@ -0,0 +1 @@ +f29031c36b946c2cd8a12157c5501a88f714d589f416bddc954992bbf982048b \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/nodes/000026.ldb b/vote-block-skripsi/geth-vote/node3/data/geth/nodes/000026.ldb new file mode 100644 index 0000000..dd87a50 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/nodes/000026.ldb differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/nodes/000027.ldb b/vote-block-skripsi/geth-vote/node3/data/geth/nodes/000027.ldb new file mode 100644 index 0000000..af1cce4 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/nodes/000027.ldb differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/nodes/000028.log b/vote-block-skripsi/geth-vote/node3/data/geth/nodes/000028.log new file mode 100644 index 0000000..124f081 Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/nodes/000028.log differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/nodes/CURRENT b/vote-block-skripsi/geth-vote/node3/data/geth/nodes/CURRENT new file mode 100644 index 0000000..52f34be --- /dev/null +++ b/vote-block-skripsi/geth-vote/node3/data/geth/nodes/CURRENT @@ -0,0 +1 @@ +MANIFEST-000029 diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/nodes/CURRENT.bak b/vote-block-skripsi/geth-vote/node3/data/geth/nodes/CURRENT.bak new file mode 100644 index 0000000..f622090 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node3/data/geth/nodes/CURRENT.bak @@ -0,0 +1 @@ +MANIFEST-000025 diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/nodes/LOCK b/vote-block-skripsi/geth-vote/node3/data/geth/nodes/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/nodes/LOG b/vote-block-skripsi/geth-vote/node3/data/geth/nodes/LOG new file mode 100644 index 0000000..83dfc22 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node3/data/geth/nodes/LOG @@ -0,0 +1,112 @@ +=============== Jul 24, 2024 (+07) =============== +14:40:26.219883 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +14:40:26.237350 db@open opening +14:40:26.239043 version@stat F·[] S·0B[] Sc·[] +14:40:26.243559 db@janitor F·2 G·0 +14:40:26.243629 db@open done T·6.206784ms +=============== Jul 24, 2024 (+07) =============== +14:46:21.704529 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +14:46:21.706316 version@stat F·[] S·0B[] Sc·[] +14:46:21.706402 db@open opening +14:46:21.706580 journal@recovery F·1 +14:46:21.708475 journal@recovery recovering @1 +14:46:21.715542 memdb@flush created L0@2 N·105 S·1KiB "loc..seq,v2":"version,v1" +14:46:21.715821 version@stat F·[1] S·1KiB[1KiB] Sc·[0.25] +14:46:21.731835 db@janitor F·3 G·0 +14:46:21.731905 db@open done T·25.491792ms +=============== Jul 24, 2024 (+07) =============== +14:50:00.778922 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +14:50:00.779269 version@stat F·[1] S·1KiB[1KiB] Sc·[0.25] +14:50:00.779347 db@open opening +14:50:00.779438 journal@recovery F·1 +14:50:00.787518 journal@recovery recovering @3 +14:50:00.796221 memdb@flush created L0@5 N·162 S·1KiB "loc..seq,v107":"n:\xf3..ong,v138" +14:50:00.800758 version@stat F·[2] S·3KiB[3KiB] Sc·[0.50] +14:50:00.815893 db@janitor F·4 G·0 +14:50:00.815992 db@open done T·36.630315ms +14:50:00.821976 table@compaction L0·2 -> L1·0 S·3KiB Q·269 +14:50:00.829142 table@build created L1@8 N·17 S·839B "loc..seq,v107":"version,v1" +14:50:00.829285 version@stat F·[0 1] S·839B[0B 839B] Sc·[0.00 0.00] +14:50:00.839112 table@compaction committed F-1 S-2KiB Ke·0 D·250 T·16.40168ms +14:50:00.840496 table@remove removed @2 +=============== Jul 24, 2024 (+07) =============== +14:51:02.416218 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +14:51:02.416390 version@stat F·[0 1] S·839B[0B 839B] Sc·[0.00 0.00] +14:51:02.416437 db@open opening +14:51:02.416483 journal@recovery F·1 +14:51:02.417902 journal@recovery recovering @6 +14:51:02.420899 memdb@flush created L0@9 N·61 S·994B "loc..seq,v270":"n:\xf3..ong,v294" +14:51:02.421940 version@stat F·[1 1] S·1KiB[994B 839B] Sc·[0.25 0.00] +14:51:02.438376 db@janitor F·5 G·1 +14:51:02.438437 db@janitor removing table-5 +14:51:02.438542 db@open done T·22.095901ms +=============== Jul 24, 2024 (+07) =============== +14:52:42.259585 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +14:52:42.259765 version@stat F·[1 1] S·1KiB[994B 839B] Sc·[0.25 0.00] +14:52:42.259806 db@open opening +14:52:42.259851 journal@recovery F·1 +14:52:42.260464 journal@recovery recovering @10 +14:52:42.263310 memdb@flush created L0@12 N·44 S·881B "loc..seq,v332":"n:\xf3..ong,v352" +14:52:42.264271 version@stat F·[2 1] S·2KiB[1KiB 839B] Sc·[0.50 0.00] +14:52:42.274411 db@janitor F·5 G·0 +14:52:42.274447 db@open done T·14.633139ms +14:52:42.277420 table@compaction L0·2 -> L1·1 S·2KiB Q·376 +14:52:42.281651 table@build created L1@15 N·17 S·832B "loc..seq,v332":"version,v1" +14:52:42.281731 version@stat F·[0 1] S·832B[0B 832B] Sc·[0.00 0.00] +14:52:42.290661 table@compaction committed F-2 S-1KiB Ke·0 D·105 T·13.167959ms +14:52:42.294187 table@remove removed @9 +14:52:42.294356 table@remove removed @8 +=============== Jul 26, 2024 (+07) =============== +11:28:45.474070 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +11:28:45.475308 version@stat F·[0 1] S·832B[0B 832B] Sc·[0.00 0.00] +11:28:45.475447 db@open opening +11:28:45.475573 journal@recovery F·1 +11:28:45.478070 journal@recovery recovering @13 +11:28:45.486106 memdb@flush created L0@16 N·610 S·6KiB "loc..seq,v377":"n:\xf3..ong,v405" +11:28:45.489297 version@stat F·[1 1] S·7KiB[6KiB 832B] Sc·[0.25 0.00] +11:28:45.498740 db@janitor F·5 G·1 +11:28:45.498779 db@janitor removing table-12 +11:28:45.498835 db@open done T·23.376586ms +11:29:03.618582 table@compaction L0·1 -> L1·1 S·7KiB Q·1014 +11:29:03.635791 table@build created L1@19 N·17 S·843B "loc..seq,v377":"version,v1" +11:29:03.636416 version@stat F·[0 1] S·843B[0B 843B] Sc·[0.00 0.00] +11:29:03.639698 table@compaction committed F-1 S-6KiB Ke·0 D·610 T·20.616069ms +11:29:03.640666 table@remove removed @15 +=============== Aug 14, 2024 (+07) =============== +21:20:56.937909 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +21:20:56.941126 version@stat F·[0 1] S·843B[0B 843B] Sc·[0.00 0.00] +21:20:56.941865 db@open opening +21:20:56.941974 journal@recovery F·1 +21:20:56.943912 journal@recovery recovering @17 +21:20:56.968560 memdb@flush created L0@20 N·5678 S·55KiB "loc..seq,v988":"n:\xf3..ong,v996" +21:20:56.969992 version@stat F·[1 1] S·56KiB[55KiB 843B] Sc·[0.25 0.00] +21:20:57.053914 db@janitor F·5 G·1 +21:20:57.054167 db@janitor removing table-16 +21:20:57.054857 db@open done T·112.969856ms +=============== Aug 21, 2024 (+07) =============== +09:12:20.368535 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +09:12:20.378466 version@stat F·[1 1] S·56KiB[55KiB 843B] Sc·[0.25 0.00] +09:12:20.378564 db@open opening +09:12:20.379200 journal@recovery F·1 +09:12:20.382119 journal@recovery recovering @21 +09:12:20.434594 memdb@flush created L0@23 N·2468 S·24KiB "loc..seq,v6667":"n:\xf3..ong,v6673" +09:12:20.441100 version@stat F·[2 1] S·81KiB[80KiB 843B] Sc·[0.50 0.00] +09:12:20.536144 db@janitor F·5 G·0 +09:12:20.536224 db@open done T·157.644894ms +09:12:20.566921 table@compaction L0·2 -> L1·1 S·81KiB Q·9135 +09:12:20.713319 table@build created L1@26 N·17 S·836B "loc..seq,v6667":"version,v1" +09:12:20.713450 version@stat F·[0 1] S·836B[0B 836B] Sc·[0.00 0.00] +09:12:20.761245 table@compaction committed F-2 S-80KiB Ke·0 D·8146 T·193.323754ms +09:12:20.761680 table@remove removed @20 +09:12:20.761815 table@remove removed @19 +=============== Aug 24, 2024 (+07) =============== +09:19:11.243218 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +09:19:11.246970 version@stat F·[0 1] S·836B[0B 836B] Sc·[0.00 0.00] +09:19:11.247098 db@open opening +09:19:11.247188 journal@recovery F·1 +09:19:11.248205 journal@recovery recovering @24 +09:19:11.268310 memdb@flush created L0@27 N·2754 S·27KiB "loc..seq,v9136":"n:\xf3..ong,v9142" +09:19:11.272361 version@stat F·[1 1] S·28KiB[27KiB 836B] Sc·[0.25 0.00] +09:19:11.325384 db@janitor F·5 G·1 +09:19:11.325437 db@janitor removing table-23 +09:19:11.325543 db@open done T·78.433507ms diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/nodes/MANIFEST-000029 b/vote-block-skripsi/geth-vote/node3/data/geth/nodes/MANIFEST-000029 new file mode 100644 index 0000000..653e57d Binary files /dev/null and b/vote-block-skripsi/geth-vote/node3/data/geth/nodes/MANIFEST-000029 differ diff --git a/vote-block-skripsi/geth-vote/node3/data/geth/transactions.rlp b/vote-block-skripsi/geth-vote/node3/data/geth/transactions.rlp new file mode 100644 index 0000000..e69de29 diff --git a/vote-block-skripsi/geth-vote/node3/data/keystore/UTC--2024-07-24T07-40-16.876585798Z--bf3fe388cd2b24248fba34b13f549078ece6a727 b/vote-block-skripsi/geth-vote/node3/data/keystore/UTC--2024-07-24T07-40-16.876585798Z--bf3fe388cd2b24248fba34b13f549078ece6a727 new file mode 100644 index 0000000..1a056a2 --- /dev/null +++ b/vote-block-skripsi/geth-vote/node3/data/keystore/UTC--2024-07-24T07-40-16.876585798Z--bf3fe388cd2b24248fba34b13f549078ece6a727 @@ -0,0 +1 @@ +{"address":"bf3fe388cd2b24248fba34b13f549078ece6a727","crypto":{"cipher":"aes-128-ctr","ciphertext":"ab1053cfcefa31a2db609e38abc4d367d3cd5ce1721f3518424c36f1685b0684","cipherparams":{"iv":"9dae6cad51a42c5e3ff34bc984ec30f0"},"kdf":"scrypt","kdfparams":{"dklen":32,"n":262144,"p":1,"r":8,"salt":"56afb6aa99a748c0675c47dfba4f45dbb3da85674fd13bc48e3d7ebbe079405c"},"mac":"ae3c4453092d15b8d91cf62f594020ef60f42d279f4b223ca20ffdc24772398e"},"id":"556a6d7e-6a9e-4e9f-8e1e-161bacc097ec","version":3} \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/password.txt b/vote-block-skripsi/geth-vote/password.txt new file mode 100644 index 0000000..e56e15b --- /dev/null +++ b/vote-block-skripsi/geth-vote/password.txt @@ -0,0 +1 @@ +12345 diff --git a/vote-block-skripsi/geth-vote/setup.sh b/vote-block-skripsi/geth-vote/setup.sh new file mode 100644 index 0000000..6cc4570 --- /dev/null +++ b/vote-block-skripsi/geth-vote/setup.sh @@ -0,0 +1,134 @@ +#!/bin/bash + +# Variables (Set these according to your configuration) +CHAIN_ID=120202 +ETHER_AMOUNT="1000000000000000000000000000000" # 1 million Ether in Wei +NETWORK_ID=120202 +PASSWORD=12345 + +# Function to kill any running bootnode process +kill_bootnode() { + local pid + pid=$(pgrep bootnode) + if [[ -n $pid ]]; then + echo "Stopping existing bootnode process (PID: $pid)..." + kill -9 $pid + fi +} + +# Function to kill any running geth process +kill_geth() { + local pid + pid=$(pgrep geth) + if [[ -n $pid ]]; then + echo "Stopping existing geth process (PID: $pid)..." + kill -9 $pid + fi +} + +# Kill any existing bootnode and geth processes +kill_bootnode +kill_geth + +# Remove existing data directories to clear previous state +rm -rf ./node1/data +rm -rf ./node2/data +rm -rf ./node3/data + +# Create directories for Node 1 and Node 2 +mkdir -p ./node1/data +mkdir -p ./node2/data +mkdir -p ./node3/data + +# Create a password file +echo $PASSWORD > password.txt + +# Create accounts for both nodes and capture addresses +echo "Creating account for Node 1." +FIRST_NODE_OUTPUT=$(geth --datadir "./node1/data" account new --password password.txt) +echo "$FIRST_NODE_OUTPUT" +FIRST_NODE_ADDRESS=$(echo "$FIRST_NODE_OUTPUT" | grep -oP '(?<=Public address of the key: 0x).*') + +echo "Creating account for Node 2." +SECOND_NODE_OUTPUT=$(geth --datadir "./node2/data" account new --password password.txt) +echo "$SECOND_NODE_OUTPUT" +SECOND_NODE_ADDRESS=$(echo "$SECOND_NODE_OUTPUT" | grep -oP '(?<=Public address of the key: 0x).*') + +echo "Creating account for Node 3." +THIRD_NODE_OUTPUT=$(geth --datadir "./node3/data" account new --password password.txt) +echo "$THIRD_NODE_OUTPUT" +THIRD_NODE_ADDRESS=$(echo "$THIRD_NODE_OUTPUT" | grep -oP '(?<=Public address of the key: 0x).*') + +# Initial signer address is the same as the first node address +INITIAL_SIGNER_ADDRESS=$FIRST_NODE_ADDRESS + + +# Create the Genesis file +cat < genesis.json +{ + "config": { + "chainId": $CHAIN_ID, + "homesteadBlock": 0, + "eip150Block": 0, + "eip155Block": 0, + "eip158Block": 0, + "byzantiumBlock": 0, + "constantinopleBlock": 0, + "petersburgBlock": 0, + "istanbulBlock": 0, + "berlinBlock": 0, + "clique": { + "period": 5, + "epoch": 30000 + } + }, + "difficulty": "1", + "gasLimit": "8000000", + "extradata": "0x0000000000000000000000000000000000000000000000000000000000000000${INITIAL_SIGNER_ADDRESS}0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "alloc": { + "${FIRST_NODE_ADDRESS}": { "balance": "${ETHER_AMOUNT}" }, + "${SECOND_NODE_ADDRESS}": { "balance": "${ETHER_AMOUNT}" }, + "${THIRD_NODE_ADDRESS}": { "balance": "${ETHER_AMOUNT}" } + } +} +EOF + +# Initialize both nodes with the Genesis file +geth --datadir "./node1/data" init genesis.json +geth --datadir "./node2/data" init genesis.json +geth --datadir "./node3/data" init genesis.json + +# Create bootnode key +bootnode -genkey boot.key + +# Start bootnode and capture enode URL, logging output to bootnode.log +bootnode -nodekey boot.key -verbosity 7 -addr "127.0.0.1:30301" > bootnode.log 2>&1 & + +# Wait for bootnode to start and log the enode URL +sleep 5 + +# Extract enode URL from the bootnode log +BOOTNODE_URL=$(grep -oP 'enode:\/\/[a-zA-Z0-9@:.]+' bootnode.log) + +# Append discport if missing +if [[ $BOOTNODE_URL != *"discport"* ]]; then + BOOTNODE_URL="${BOOTNODE_URL}?discport=30301" +fi + +# Check if the enode URL is valid +if [[ -z "$BOOTNODE_URL" ]]; then + echo "Error: Failed to retrieve bootnode enode URL." + exit 1 +fi + +# Save enode URL to file +echo $BOOTNODE_URL > enodeurl + +# Start Node 1 and redirect log to node1.log +geth --datadir "./node1/data" --port 30304 --bootnodes "$BOOTNODE_URL" --authrpc.port 8547 --ipcdisable --allow-insecure-unlock --http --http.corsdomain="https://remix.ethereum.org" --http.api web3,eth,debug,personal,net --networkid $NETWORK_ID --unlock 0x$FIRST_NODE_ADDRESS --password password.txt --mine --miner.etherbase=0x$INITIAL_SIGNER_ADDRESS > node1.log 2>&1 & + +# Start Node 2 and redirect log to node2.log +geth --datadir "./node2/data" --port 30306 --bootnodes "$BOOTNODE_URL" --authrpc.port 8546 --networkid $NETWORK_ID --unlock 0x$SECOND_NODE_ADDRESS --password password.txt > node2.log 2>&1 & + +# Start Node 2 and redirect log to node2.log +geth --datadir "./node3/data" --port 30308 --bootnodes "$BOOTNODE_URL" --authrpc.port 8548 --networkid $NETWORK_ID --unlock 0x$THIRD_NODE_ADDRESS --password password.txt > node3.log 2>&1 & \ No newline at end of file diff --git a/vote-block-skripsi/geth-vote/start.sh b/vote-block-skripsi/geth-vote/start.sh new file mode 100644 index 0000000..095a6e8 --- /dev/null +++ b/vote-block-skripsi/geth-vote/start.sh @@ -0,0 +1,65 @@ +#!/bin/bash + +# Variables (Set these according to your configuration) +CHAIN_ID=120202 +NETWORK_ID=120202 +PASSWORD=12345 + +# Read the bootnode URL from the file +BOOTNODE_URL=$(cat enodeurl) + +# Start bootnode and capture enode URL, logging output to bootnode.log +bootnode -nodekey boot.key -verbosity 7 -addr "127.0.0.1:30301" > bootnode.log 2>&1 & + +# Wait for bootnode to start and log the enode URL +sleep 5 + +# Append discport if missing +if [[ $BOOTNODE_URL != *"discport"* ]]; then + BOOTNODE_URL="${BOOTNODE_URL}?discport=30301" +fi + +# Start Node 1 and redirect log to node1.log +geth --datadir "./node1/data" --port 30304 --bootnodes "$BOOTNODE_URL" --authrpc.port 8547 --ipcdisable --allow-insecure-unlock --http --http.corsdomain="https://remix.ethereum.org" --http.api web3,eth,debug,personal,net --networkid $NETWORK_ID --unlock 0x$(cat node1/data/keystore/* | grep -oP '(?<=address":").+?(?=")') --password password.txt --mine --miner.etherbase=0x$(cat node1/data/keystore/* | grep -oP '(?<=address":").+?(?=")') > node1.log 2>&1 & + +# Start Node 2 and redirect log to node2.log +geth --datadir "./node2/data" --port 30306 --bootnodes "$BOOTNODE_URL" --authrpc.port 8546 --networkid $NETWORK_ID --unlock 0x$(cat node2/data/keystore/* | grep -oP '(?<=address":").+?(?=")') --password password.txt > node2.log 2>&1 & + +# Start Node 3 and redirect log to node3.log +geth --datadir "./node3/data" --port 30308 --bootnodes "$BOOTNODE_URL" --authrpc.port 8548 --networkid $NETWORK_ID --unlock 0x$(cat node3/data/keystore/* | grep -oP '(?<=address":").+?(?=")') --password password.txt > node3.log 2>&1 & + +echo "All nodes and bootnode have been started." + +# #!/bin/bash + +# # Variables (Set these according to your configuration) +# CHAIN_ID=120202 +# NETWORK_ID=120202 +# PASSWORD=12345 + +# # Read the bootnode URL from the file +# BOOTNODE_URL=$(cat enodeurl) + +# # Start bootnode and capture enode URL, logging output to bootnode.log +# bootnode -nodekey boot.key -verbosity 7 -addr "127.0.0.1:30301" > bootnode.log 2>&1 & + +# # Wait for bootnode to start and log the enode URL +# sleep 5 + +# # Append discport if missing +# if [[ $BOOTNODE_URL != *"discport"* ]]; then +# BOOTNODE_URL="${BOOTNODE_URL}?discport=30301" +# fi + +# # Start Node 1 and redirect log to node1.log +# # geth --datadir "./node1/data" --port 30304 --bootnodes "$BOOTNODE_URL" --authrpc.port 8547 --ipcdisable --allow-insecure-unlock --http --http.corsdomain="https://remix.ethereum.org" --http.api web3,eth,debug,personal,net --networkid $NETWORK_ID --unlock 0x$(cat node1/data/keystore/* | grep -oP '(?<=address":").+?(?=")') --password password.txt --mine --miner.etherbase=0x$(cat node1/data/keystore/* | grep -oP '(?<=address":").+?(?=")') > node1.log 2>&1 & + +# # Start Node 2 and redirect log to node2.log +# geth --datadir "./node2/data" --port 30306 --bootnodes "$BOOTNODE_URL" --authrpc.port 8546 --http --http.addr "127.0.0.1" --http.port 8545 --http.api "eth,net,web3,personal" --networkid $NETWORK_ID --unlock 0x$(cat node2/data/keystore/* | grep -oP '(?<=address":").+?(?=")') --password password.txt --allow-insecure-unlock > node2.log 2>&1 & + +# # Start Node 3 and redirect log to node3.log +# geth --datadir "./node3/data" --port 30308 --bootnodes "$BOOTNODE_URL" --authrpc.port 8548 --networkid $NETWORK_ID --unlock 0x$(cat node3/data/keystore/* | grep -oP '(?<=address":").+?(?=")') --password password.txt > node3.log 2>&1 & + +# echo "All nodes and bootnode have been started." + + diff --git a/vote-block-skripsi/geth-vote/stop.sh b/vote-block-skripsi/geth-vote/stop.sh new file mode 100644 index 0000000..1f8180c --- /dev/null +++ b/vote-block-skripsi/geth-vote/stop.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +# Function to kill any running bootnode process +kill_bootnode() { + local pid + pid=$(pgrep bootnode) + if [[ -n $pid ]]; then + echo "Stopping existing bootnode process (PID: $pid)..." + kill -9 $pid + fi +} + +# Function to kill any running geth process +kill_geth() { + local pid + pid=$(pgrep geth) + if [[ -n $pid ]]; then + echo "Stopping existing geth process (PID: $pid)..." + kill -9 $pid + fi +} + +# Kill any existing bootnode and geth processes +kill_bootnode +kill_geth + +echo "All nodes and bootnode have been stopped." diff --git a/vote-block-skripsi/my-app/.env b/vote-block-skripsi/my-app/.env new file mode 100644 index 0000000..5e1f5d8 --- /dev/null +++ b/vote-block-skripsi/my-app/.env @@ -0,0 +1 @@ +API_URL=http://192.168.29.212:3000 diff --git a/vote-block-skripsi/my-app/.gitignore b/vote-block-skripsi/my-app/.gitignore new file mode 100644 index 0000000..05647d5 --- /dev/null +++ b/vote-block-skripsi/my-app/.gitignore @@ -0,0 +1,35 @@ +# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files + +# dependencies +node_modules/ + +# Expo +.expo/ +dist/ +web-build/ + +# Native +*.orig.* +*.jks +*.p8 +*.p12 +*.key +*.mobileprovision + +# Metro +.metro-health-check* + +# debug +npm-debug.* +yarn-debug.* +yarn-error.* + +# macOS +.DS_Store +*.pem + +# local env files +.env*.local + +# typescript +*.tsbuildinfo diff --git a/vote-block-skripsi/my-app/App.tsx b/vote-block-skripsi/my-app/App.tsx new file mode 100644 index 0000000..6a523ae --- /dev/null +++ b/vote-block-skripsi/my-app/App.tsx @@ -0,0 +1,63 @@ +import React, { useEffect, useState } from 'react'; +import { ActivityIndicator, View } from 'react-native'; +import AsyncStorage from '@react-native-async-storage/async-storage'; +import { NavigationContainer } from '@react-navigation/native'; +import { createStackNavigator } from '@react-navigation/stack'; +import LoginScreen from './src/screens/user/LoginScreen'; +import HomeScreen from './src/screens/user/HomeScreen'; +import { RootStackParamList } from './src/navigations/user/StackNavigator'; +import ProfileScreen from './src/screens/user/ProfileScreen'; +import { ElectionProvider } from './src/helper/ElectionContext'; +import AdminTabNavigator from './src/navigations/admin/AdminTabNavigator'; +import VoterStackNavigation from './src/navigations/admin/VoterStackNavigation'; +import AdminScreen from './src/screens/admin/AdminScreen'; + +const Stack = createStackNavigator(); + +const App = () => { + const [loading, setLoading] = useState(true); + const [isLoggedIn, setIsLoggedIn] = useState(false); + const [isAdmin, setIsAdmin] = useState(false); + + useEffect(() => { + const checkLoginStatus = async () => { + const token = await AsyncStorage.getItem('token'); + const userId = await AsyncStorage.getItem('userId'); + + if (token && userId) { + setIsLoggedIn(true); + if (userId === '12020') { + setIsAdmin(true); + } + } + + setLoading(false); + }; + + checkLoginStatus(); + }, []); + + if (loading) { + return ( + + + + ); + } + + return ( + + + + + + + + + + + ); +}; + +export default App; + diff --git a/vote-block-skripsi/my-app/app.json b/vote-block-skripsi/my-app/app.json new file mode 100644 index 0000000..22d367a --- /dev/null +++ b/vote-block-skripsi/my-app/app.json @@ -0,0 +1,33 @@ +{ + "expo": { + "name": "my-app", + "slug": "my-app", + "version": "1.0.0", + "orientation": "portrait", + "icon": "./assets/icon.png", + "userInterfaceStyle": "light", + "splash": { + "image": "./assets/splash.png", + "resizeMode": "contain", + "backgroundColor": "#ffffff" + }, + "ios": { + "supportsTablet": true + }, + "android": { + "adaptiveIcon": { + "foregroundImage": "./assets/adaptive-icon.png", + "backgroundColor": "#ffffff" + }, + "package": "com.silviaprada94.myapp" + }, + "web": { + "favicon": "./assets/favicon.png" + }, + "extra": { + "eas": { + "projectId": "07cc420d-5ca5-4657-8a34-a3dec760833a" + } + } + } +} diff --git a/vote-block-skripsi/my-app/assets/adaptive-icon.png b/vote-block-skripsi/my-app/assets/adaptive-icon.png new file mode 100644 index 0000000..03d6f6b Binary files /dev/null and b/vote-block-skripsi/my-app/assets/adaptive-icon.png differ diff --git a/vote-block-skripsi/my-app/assets/favicon.png b/vote-block-skripsi/my-app/assets/favicon.png new file mode 100644 index 0000000..e75f697 Binary files /dev/null and b/vote-block-skripsi/my-app/assets/favicon.png differ diff --git a/vote-block-skripsi/my-app/assets/icon.png b/vote-block-skripsi/my-app/assets/icon.png new file mode 100644 index 0000000..a0b1526 Binary files /dev/null and b/vote-block-skripsi/my-app/assets/icon.png differ diff --git a/vote-block-skripsi/my-app/assets/logo-text-line-white.png b/vote-block-skripsi/my-app/assets/logo-text-line-white.png new file mode 100644 index 0000000..e5cc454 Binary files /dev/null and b/vote-block-skripsi/my-app/assets/logo-text-line-white.png differ diff --git a/vote-block-skripsi/my-app/assets/logo.png b/vote-block-skripsi/my-app/assets/logo.png new file mode 100644 index 0000000..0386e1b Binary files /dev/null and b/vote-block-skripsi/my-app/assets/logo.png differ diff --git a/vote-block-skripsi/my-app/assets/splash.png b/vote-block-skripsi/my-app/assets/splash.png new file mode 100644 index 0000000..cf1f430 Binary files /dev/null and b/vote-block-skripsi/my-app/assets/splash.png differ diff --git a/vote-block-skripsi/my-app/babel.config.js b/vote-block-skripsi/my-app/babel.config.js new file mode 100644 index 0000000..a26874f --- /dev/null +++ b/vote-block-skripsi/my-app/babel.config.js @@ -0,0 +1,16 @@ +module.exports = function(api) { + api.cache(true); + return { + presets: ['babel-preset-expo'], + plugins: [ + [ + 'module:react-native-dotenv', + { + envName: 'APP_ENV', + moduleName: '@env', + path: '.env', + }, + ], + ], + }; +}; diff --git a/vote-block-skripsi/my-app/eas.json b/vote-block-skripsi/my-app/eas.json new file mode 100644 index 0000000..65d3095 --- /dev/null +++ b/vote-block-skripsi/my-app/eas.json @@ -0,0 +1,18 @@ +{ + "build": { + "preview": { + "android": { + "buildType": "apk" + } + }, + "preview2": { + "android": { + "gradleCommand": ":app:assembleRelease" + } + }, + "preview3": { + "developmentClient": true + }, + "production": {} + } +} \ No newline at end of file diff --git a/vote-block-skripsi/my-app/package-lock.json b/vote-block-skripsi/my-app/package-lock.json new file mode 100644 index 0000000..9e86b31 --- /dev/null +++ b/vote-block-skripsi/my-app/package-lock.json @@ -0,0 +1,15941 @@ +{ + "name": "my-app", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "my-app", + "version": "1.0.0", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/shims": "^5.7.0", + "@react-native-async-storage/async-storage": "^1.23.1", + "@react-navigation/bottom-tabs": "^6.5.20", + "@react-navigation/native": "^6.1.17", + "@react-navigation/stack": "^6.3.29", + "axios": "^1.7.2", + "ethers": "^6.13.1", + "expo": "~51.0.20", + "expo-file-system": "~17.0.1", + "expo-image-picker": "^15.0.7", + "expo-status-bar": "~1.12.1", + "react": "^18.2.0", + "react-native": "^0.74.3", + "react-native-chart-kit": "^6.12.0", + "react-native-dotenv": "^3.4.11", + "react-native-paper": "^5.12.3", + "react-native-svg": "^15.2.0", + "react-native-vector-icons": "^10.1.0", + "react-navigation": "^5.0.0" + }, + "devDependencies": { + "@babel/core": "^7.20.0", + "@types/react": "~18.2.45", + "@types/react-native-vector-icons": "^6.4.18", + "typescript": "~5.3.3" + } + }, + "node_modules/@adraffy/ens-normalize": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.10.1.tgz", + "integrity": "sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==", + "license": "MIT" + }, + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "license": "Apache-2.0", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", + "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.24.7", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.7.tgz", + "integrity": "sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.7.tgz", + "integrity": "sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==", + "license": "MIT", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.24.7", + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helpers": "^7.24.7", + "@babel/parser": "^7.24.7", + "@babel/template": "^7.24.7", + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.7.tgz", + "integrity": "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.24.7", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz", + "integrity": "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.7.tgz", + "integrity": "sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "browserslist": "^4.22.2", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.7.tgz", + "integrity": "sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-member-expression-to-functions": "^7.24.7", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.24.7.tgz", + "integrity": "sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "regexpu-core": "^5.3.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", + "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", + "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.24.7.tgz", + "integrity": "sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz", + "integrity": "sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.7.tgz", + "integrity": "sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", + "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.7.tgz", + "integrity": "sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz", + "integrity": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.7.tgz", + "integrity": "sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.24.7.tgz", + "integrity": "sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-wrap-function": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.7.tgz", + "integrity": "sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==", + "license": "MIT", + "dependencies": { + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-member-expression-to-functions": "^7.24.7", + "@babel/helper-optimise-call-expression": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", + "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz", + "integrity": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", + "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.7.tgz", + "integrity": "sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", + "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.7.tgz", + "integrity": "sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.24.7.tgz", + "integrity": "sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==", + "license": "MIT", + "dependencies": { + "@babel/helper-function-name": "^7.24.7", + "@babel/template": "^7.24.7", + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.7.tgz", + "integrity": "sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", + "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.24.7", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.7.tgz", + "integrity": "sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==", + "license": "MIT", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.7.tgz", + "integrity": "sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.7.tgz", + "integrity": "sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz", + "integrity": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.7.tgz", + "integrity": "sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", + "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.", + "license": "MIT", + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-remap-async-to-generator": "^7.18.9", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.24.7.tgz", + "integrity": "sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-decorators": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-export-default-from": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.24.7.tgz", + "integrity": "sha512-CcmFwUJ3tKhLjPdt4NP+SHMshebytF8ZTYOv5ZDpkzq2sin80Wb5vJrGt8fhPrORQCfoSa0LAxC/DW+GAC5+Hw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-export-default-from": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", + "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead.", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", + "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-catch-binding": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", + "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead.", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.24.7.tgz", + "integrity": "sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-default-from": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.24.7.tgz", + "integrity": "sha512-bTPz4/635WQ9WhwsyPdxUJDVpsi/X9BMmy/8Rf/UAlOO4jSql4CxUCjWI5PiM+jG+c4LVPTScoTw80geFj9+Bw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-flow": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.24.7.tgz", + "integrity": "sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.7.tgz", + "integrity": "sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz", + "integrity": "sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz", + "integrity": "sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.7.tgz", + "integrity": "sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz", + "integrity": "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.7.tgz", + "integrity": "sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-remap-async-to-generator": "^7.24.7", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz", + "integrity": "sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-remap-async-to-generator": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz", + "integrity": "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.7.tgz", + "integrity": "sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.7.tgz", + "integrity": "sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz", + "integrity": "sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.7.tgz", + "integrity": "sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz", + "integrity": "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/template": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.7.tgz", + "integrity": "sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz", + "integrity": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz", + "integrity": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz", + "integrity": "sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz", + "integrity": "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz", + "integrity": "sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.24.7.tgz", + "integrity": "sha512-cjRKJ7FobOH2eakx7Ja+KpJRj8+y+/SiB3ooYm/n2UJfxu0oEaOoxOinitkJcPqv9KxS0kxTGPUaR7L2XcXDXA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-flow": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz", + "integrity": "sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.7.tgz", + "integrity": "sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz", + "integrity": "sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.7.tgz", + "integrity": "sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz", + "integrity": "sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz", + "integrity": "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz", + "integrity": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.7.tgz", + "integrity": "sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.7.tgz", + "integrity": "sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-hoist-variables": "^7.24.7", + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz", + "integrity": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz", + "integrity": "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz", + "integrity": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz", + "integrity": "sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz", + "integrity": "sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz", + "integrity": "sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz", + "integrity": "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz", + "integrity": "sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.7.tgz", + "integrity": "sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz", + "integrity": "sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.7.tgz", + "integrity": "sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz", + "integrity": "sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz", + "integrity": "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.24.7.tgz", + "integrity": "sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.24.7.tgz", + "integrity": "sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-jsx": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.24.7.tgz", + "integrity": "sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==", + "license": "MIT", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.24.7.tgz", + "integrity": "sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.24.7.tgz", + "integrity": "sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.24.7.tgz", + "integrity": "sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz", + "integrity": "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "regenerator-transform": "^0.15.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz", + "integrity": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.7.tgz", + "integrity": "sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.1", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz", + "integrity": "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz", + "integrity": "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz", + "integrity": "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz", + "integrity": "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.7.tgz", + "integrity": "sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.7.tgz", + "integrity": "sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-typescript": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz", + "integrity": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz", + "integrity": "sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz", + "integrity": "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.7.tgz", + "integrity": "sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.7.tgz", + "integrity": "sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/compat-data": "^7.24.7", + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.7", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.7", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.7", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.7", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.24.7", + "@babel/plugin-syntax-import-attributes": "^7.24.7", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.24.7", + "@babel/plugin-transform-async-generator-functions": "^7.24.7", + "@babel/plugin-transform-async-to-generator": "^7.24.7", + "@babel/plugin-transform-block-scoped-functions": "^7.24.7", + "@babel/plugin-transform-block-scoping": "^7.24.7", + "@babel/plugin-transform-class-properties": "^7.24.7", + "@babel/plugin-transform-class-static-block": "^7.24.7", + "@babel/plugin-transform-classes": "^7.24.7", + "@babel/plugin-transform-computed-properties": "^7.24.7", + "@babel/plugin-transform-destructuring": "^7.24.7", + "@babel/plugin-transform-dotall-regex": "^7.24.7", + "@babel/plugin-transform-duplicate-keys": "^7.24.7", + "@babel/plugin-transform-dynamic-import": "^7.24.7", + "@babel/plugin-transform-exponentiation-operator": "^7.24.7", + "@babel/plugin-transform-export-namespace-from": "^7.24.7", + "@babel/plugin-transform-for-of": "^7.24.7", + "@babel/plugin-transform-function-name": "^7.24.7", + "@babel/plugin-transform-json-strings": "^7.24.7", + "@babel/plugin-transform-literals": "^7.24.7", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.7", + "@babel/plugin-transform-member-expression-literals": "^7.24.7", + "@babel/plugin-transform-modules-amd": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.7", + "@babel/plugin-transform-modules-systemjs": "^7.24.7", + "@babel/plugin-transform-modules-umd": "^7.24.7", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7", + "@babel/plugin-transform-new-target": "^7.24.7", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7", + "@babel/plugin-transform-numeric-separator": "^7.24.7", + "@babel/plugin-transform-object-rest-spread": "^7.24.7", + "@babel/plugin-transform-object-super": "^7.24.7", + "@babel/plugin-transform-optional-catch-binding": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.7", + "@babel/plugin-transform-parameters": "^7.24.7", + "@babel/plugin-transform-private-methods": "^7.24.7", + "@babel/plugin-transform-private-property-in-object": "^7.24.7", + "@babel/plugin-transform-property-literals": "^7.24.7", + "@babel/plugin-transform-regenerator": "^7.24.7", + "@babel/plugin-transform-reserved-words": "^7.24.7", + "@babel/plugin-transform-shorthand-properties": "^7.24.7", + "@babel/plugin-transform-spread": "^7.24.7", + "@babel/plugin-transform-sticky-regex": "^7.24.7", + "@babel/plugin-transform-template-literals": "^7.24.7", + "@babel/plugin-transform-typeof-symbol": "^7.24.7", + "@babel/plugin-transform-unicode-escapes": "^7.24.7", + "@babel/plugin-transform-unicode-property-regex": "^7.24.7", + "@babel/plugin-transform-unicode-regex": "^7.24.7", + "@babel/plugin-transform-unicode-sets-regex": "^7.24.7", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.4", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "core-js-compat": "^3.31.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-flow": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.24.7.tgz", + "integrity": "sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "@babel/plugin-transform-flow-strip-types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.24.7.tgz", + "integrity": "sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "@babel/plugin-transform-react-display-name": "^7.24.7", + "@babel/plugin-transform-react-jsx": "^7.24.7", + "@babel/plugin-transform-react-jsx-development": "^7.24.7", + "@babel/plugin-transform-react-pure-annotations": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.24.7.tgz", + "integrity": "sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "@babel/plugin-syntax-jsx": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.7", + "@babel/plugin-transform-typescript": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/register": { + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.24.6.tgz", + "integrity": "sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==", + "license": "MIT", + "dependencies": { + "clone-deep": "^4.0.1", + "find-cache-dir": "^2.0.0", + "make-dir": "^2.1.0", + "pirates": "^4.0.6", + "source-map-support": "^0.5.16" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", + "license": "MIT" + }, + "node_modules/@babel/runtime": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.7.tgz", + "integrity": "sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.7.tgz", + "integrity": "sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/parser": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.7.tgz", + "integrity": "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.24.7", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-hoist-variables": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", + "@babel/parser": "^7.24.7", + "@babel/types": "^7.24.7", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.7.tgz", + "integrity": "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@callstack/react-theme-provider": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@callstack/react-theme-provider/-/react-theme-provider-3.0.9.tgz", + "integrity": "sha512-tTQ0uDSCL0ypeMa8T/E9wAZRGKWj8kXP7+6RYgPTfOPs9N07C9xM8P02GJ3feETap4Ux5S69D9nteq9mEj86NA==", + "license": "MIT", + "dependencies": { + "deepmerge": "^3.2.0", + "hoist-non-react-statics": "^3.3.0" + }, + "peerDependencies": { + "react": ">=16.3.0" + } + }, + "node_modules/@callstack/react-theme-provider/node_modules/deepmerge": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-3.3.0.tgz", + "integrity": "sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@egjs/hammerjs": { + "version": "2.0.17", + "resolved": "https://registry.npmjs.org/@egjs/hammerjs/-/hammerjs-2.0.17.tgz", + "integrity": "sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/hammerjs": "^2.0.36" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@ethersproject/bignumber": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.7.0.tgz", + "integrity": "sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "bn.js": "^5.2.1" + } + }, + "node_modules/@ethersproject/bytes": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.7.0.tgz", + "integrity": "sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/logger": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.7.0.tgz", + "integrity": "sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT" + }, + "node_modules/@ethersproject/shims": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/shims/-/shims-5.7.0.tgz", + "integrity": "sha512-WeDptc6oAprov5CCN2LJ/6/+dC9gTonnkdAtLepm/7P5Z+3PRxS5NpfVWmOMs1yE4Vitl2cU8bOPWC0GvGSbVg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT" + }, + "node_modules/@expo/bunyan": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@expo/bunyan/-/bunyan-4.0.0.tgz", + "integrity": "sha512-Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA==", + "engines": [ + "node >=0.10.0" + ], + "license": "MIT", + "dependencies": { + "uuid": "^8.0.0" + }, + "optionalDependencies": { + "mv": "~2", + "safe-json-stringify": "~1" + } + }, + "node_modules/@expo/cli": { + "version": "0.18.25", + "resolved": "https://registry.npmjs.org/@expo/cli/-/cli-0.18.25.tgz", + "integrity": "sha512-Kh0uZGCxwu58Pu7Jto9T/ABlBR7nkx8QC0Wv8pI3YtISyQZIKtbtNNeTPWYbVK1ddswKwtBUj+MNhKoDL49TLg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.20.0", + "@expo/code-signing-certificates": "0.0.5", + "@expo/config": "~9.0.0-beta.0", + "@expo/config-plugins": "~8.0.8", + "@expo/devcert": "^1.0.0", + "@expo/env": "~0.3.0", + "@expo/image-utils": "^0.5.0", + "@expo/json-file": "^8.3.0", + "@expo/metro-config": "~0.18.6", + "@expo/osascript": "^2.0.31", + "@expo/package-manager": "^1.5.0", + "@expo/plist": "^0.1.0", + "@expo/prebuild-config": "7.0.8", + "@expo/rudder-sdk-node": "1.1.1", + "@expo/spawn-async": "^1.7.2", + "@expo/xcpretty": "^4.3.0", + "@react-native/dev-middleware": "0.74.85", + "@urql/core": "2.3.6", + "@urql/exchange-retry": "0.3.0", + "accepts": "^1.3.8", + "arg": "5.0.2", + "better-opn": "~3.0.2", + "bplist-creator": "0.0.7", + "bplist-parser": "^0.3.1", + "cacache": "^18.0.2", + "chalk": "^4.0.0", + "ci-info": "^3.3.0", + "connect": "^3.7.0", + "debug": "^4.3.4", + "env-editor": "^0.4.1", + "fast-glob": "^3.3.2", + "find-yarn-workspace-root": "~2.0.0", + "form-data": "^3.0.1", + "freeport-async": "2.0.0", + "fs-extra": "~8.1.0", + "getenv": "^1.0.0", + "glob": "^7.1.7", + "graphql": "15.8.0", + "graphql-tag": "^2.10.1", + "https-proxy-agent": "^5.0.1", + "internal-ip": "4.3.0", + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1", + "js-yaml": "^3.13.1", + "json-schema-deref-sync": "^0.13.0", + "lodash.debounce": "^4.0.8", + "md5hex": "^1.0.0", + "minimatch": "^3.0.4", + "node-fetch": "^2.6.7", + "node-forge": "^1.3.1", + "npm-package-arg": "^7.0.0", + "open": "^8.3.0", + "ora": "3.4.0", + "picomatch": "^3.0.1", + "pretty-bytes": "5.6.0", + "progress": "2.0.3", + "prompts": "^2.3.2", + "qrcode-terminal": "0.11.0", + "require-from-string": "^2.0.2", + "requireg": "^0.2.2", + "resolve": "^1.22.2", + "resolve-from": "^5.0.0", + "resolve.exports": "^2.0.2", + "semver": "^7.6.0", + "send": "^0.18.0", + "slugify": "^1.3.4", + "source-map-support": "~0.5.21", + "stacktrace-parser": "^0.1.10", + "structured-headers": "^0.4.1", + "tar": "^6.0.5", + "temp-dir": "^2.0.0", + "tempy": "^0.7.1", + "terminal-link": "^2.1.1", + "text-table": "^0.2.0", + "url-join": "4.0.0", + "wrap-ansi": "^7.0.0", + "ws": "^8.12.1" + }, + "bin": { + "expo-internal": "build/bin/cli" + } + }, + "node_modules/@expo/cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@expo/cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@expo/cli/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@expo/cli/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/@expo/cli/node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@expo/cli/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@expo/cli/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@expo/cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@expo/code-signing-certificates": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/@expo/code-signing-certificates/-/code-signing-certificates-0.0.5.tgz", + "integrity": "sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==", + "license": "MIT", + "dependencies": { + "node-forge": "^1.2.1", + "nullthrows": "^1.1.1" + } + }, + "node_modules/@expo/config": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/@expo/config/-/config-9.0.3.tgz", + "integrity": "sha512-eOTNM8eOC8gZNHgenySRlc/lwmYY1NOgvjwA8LHuvPT7/eUwD93zrxu3lPD1Cc/P6C/2BcVdfH4hf0tLmDxnsg==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "~7.10.4", + "@expo/config-plugins": "~8.0.8", + "@expo/config-types": "^51.0.0-unreleased", + "@expo/json-file": "^8.3.0", + "getenv": "^1.0.0", + "glob": "7.1.6", + "require-from-string": "^2.0.2", + "resolve-from": "^5.0.0", + "semver": "^7.6.0", + "slugify": "^1.3.4", + "sucrase": "3.34.0" + } + }, + "node_modules/@expo/config-plugins": { + "version": "8.0.8", + "resolved": "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-8.0.8.tgz", + "integrity": "sha512-Fvu6IO13EUw0R9WeqxUO37FkM62YJBNcZb9DyJAOgMz7Ez/vaKQGEjKt9cwT+Q6uirtCATMgaq6VWAW7YW8xXw==", + "license": "MIT", + "dependencies": { + "@expo/config-types": "^51.0.0-unreleased", + "@expo/json-file": "~8.3.0", + "@expo/plist": "^0.1.0", + "@expo/sdk-runtime-versions": "^1.0.0", + "chalk": "^4.1.2", + "debug": "^4.3.1", + "find-up": "~5.0.0", + "getenv": "^1.0.0", + "glob": "7.1.6", + "resolve-from": "^5.0.0", + "semver": "^7.5.4", + "slash": "^3.0.0", + "slugify": "^1.6.6", + "xcode": "^3.0.1", + "xml2js": "0.6.0" + } + }, + "node_modules/@expo/config-plugins/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@expo/config-plugins/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@expo/config-plugins/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@expo/config-plugins/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/@expo/config-plugins/node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@expo/config-plugins/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@expo/config-plugins/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@expo/config-plugins/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@expo/config-types": { + "version": "51.0.2", + "resolved": "https://registry.npmjs.org/@expo/config-types/-/config-types-51.0.2.tgz", + "integrity": "sha512-IglkIoiDwJMY01lYkF/ZSBoe/5cR+O3+Gx6fpLFjLfgZGBTdyPkKa1g8NWoWQCk+D3cKL2MDbszT2DyRRB0YqQ==", + "license": "MIT" + }, + "node_modules/@expo/config/node_modules/@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/@expo/config/node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@expo/config/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@expo/devcert": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@expo/devcert/-/devcert-1.1.2.tgz", + "integrity": "sha512-FyWghLu7rUaZEZSTLt/XNRukm0c9GFfwP0iFaswoDWpV6alvVg+zRAfCLdIVQEz1SVcQ3zo1hMZFDrnKGvkCuQ==", + "license": "MIT", + "dependencies": { + "application-config-path": "^0.1.0", + "command-exists": "^1.2.4", + "debug": "^3.1.0", + "eol": "^0.9.1", + "get-port": "^3.2.0", + "glob": "^7.1.2", + "lodash": "^4.17.21", + "mkdirp": "^0.5.1", + "password-prompt": "^1.0.4", + "rimraf": "^2.6.2", + "sudo-prompt": "^8.2.0", + "tmp": "^0.0.33", + "tslib": "^2.4.0" + } + }, + "node_modules/@expo/devcert/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/@expo/env": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@expo/env/-/env-0.3.0.tgz", + "integrity": "sha512-OtB9XVHWaXidLbHvrVDeeXa09yvTl3+IQN884sO6PhIi2/StXfgSH/9zC7IvzrDB8kW3EBJ1PPLuCUJ2hxAT7Q==", + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "debug": "^4.3.4", + "dotenv": "~16.4.5", + "dotenv-expand": "~11.0.6", + "getenv": "^1.0.0" + } + }, + "node_modules/@expo/env/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@expo/env/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@expo/env/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@expo/env/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/@expo/env/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@expo/env/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@expo/image-utils": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@expo/image-utils/-/image-utils-0.5.1.tgz", + "integrity": "sha512-U/GsFfFox88lXULmFJ9Shfl2aQGcwoKPF7fawSCLixIKtMCpsI+1r0h+5i0nQnmt9tHuzXZDL8+Dg1z6OhkI9A==", + "license": "MIT", + "dependencies": { + "@expo/spawn-async": "^1.7.2", + "chalk": "^4.0.0", + "fs-extra": "9.0.0", + "getenv": "^1.0.0", + "jimp-compact": "0.16.1", + "node-fetch": "^2.6.0", + "parse-png": "^2.1.0", + "resolve-from": "^5.0.0", + "semver": "^7.6.0", + "tempy": "0.3.0" + } + }, + "node_modules/@expo/image-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@expo/image-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@expo/image-utils/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@expo/image-utils/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/@expo/image-utils/node_modules/crypto-random-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", + "integrity": "sha512-GsVpkFPlycH7/fRR7Dhcmnoii54gV1nz7y4CWyeFS14N+JVBBhY+r8amRHE4BwSYal7BPTDp8isvAlCxyFt3Hg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/image-utils/node_modules/fs-extra": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.0.0.tgz", + "integrity": "sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g==", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^1.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@expo/image-utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@expo/image-utils/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@expo/image-utils/node_modules/jsonfile/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@expo/image-utils/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@expo/image-utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@expo/image-utils/node_modules/temp-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", + "integrity": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/image-utils/node_modules/tempy": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.3.0.tgz", + "integrity": "sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==", + "license": "MIT", + "dependencies": { + "temp-dir": "^1.0.0", + "type-fest": "^0.3.1", + "unique-string": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@expo/image-utils/node_modules/type-fest": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", + "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=6" + } + }, + "node_modules/@expo/image-utils/node_modules/unique-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", + "integrity": "sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg==", + "license": "MIT", + "dependencies": { + "crypto-random-string": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/image-utils/node_modules/universalify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-1.0.0.tgz", + "integrity": "sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@expo/json-file": { + "version": "8.3.3", + "resolved": "https://registry.npmjs.org/@expo/json-file/-/json-file-8.3.3.tgz", + "integrity": "sha512-eZ5dld9AD0PrVRiIWpRkm5aIoWBw3kAyd8VkuWEy92sEthBKDDDHAnK2a0dw0Eil6j7rK7lS/Qaq/Zzngv2h5A==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "~7.10.4", + "json5": "^2.2.2", + "write-file-atomic": "^2.3.0" + } + }, + "node_modules/@expo/json-file/node_modules/@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/@expo/metro-config": { + "version": "0.18.8", + "resolved": "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.18.8.tgz", + "integrity": "sha512-YGpTlVc1/6EPzPbt0LZt92Bwrpjngulup6uHSTRbwn/heMPfFaVv1Y4VE3GAUkx7/Qwu+dTVIV0Kys4pLOAIiw==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.20.0", + "@babel/generator": "^7.20.5", + "@babel/parser": "^7.20.0", + "@babel/types": "^7.20.0", + "@expo/config": "~9.0.0-beta.0", + "@expo/env": "~0.3.0", + "@expo/json-file": "~8.3.0", + "@expo/spawn-async": "^1.7.2", + "chalk": "^4.1.0", + "debug": "^4.3.2", + "find-yarn-workspace-root": "~2.0.0", + "fs-extra": "^9.1.0", + "getenv": "^1.0.0", + "glob": "^7.2.3", + "jsc-safe-url": "^0.2.4", + "lightningcss": "~1.19.0", + "postcss": "~8.4.32", + "resolve-from": "^5.0.0" + } + }, + "node_modules/@expo/metro-config/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@expo/metro-config/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@expo/metro-config/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@expo/metro-config/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/@expo/metro-config/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@expo/metro-config/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@expo/metro-config/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@expo/metro-config/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@expo/metro-config/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@expo/osascript": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@expo/osascript/-/osascript-2.1.3.tgz", + "integrity": "sha512-aOEkhPzDsaAfolSswObGiYW0Pf0ROfR9J2NBRLQACdQ6uJlyAMiPF45DVEVknAU9juKh0y8ZyvC9LXqLEJYohA==", + "license": "MIT", + "dependencies": { + "@expo/spawn-async": "^1.7.2", + "exec-async": "^2.2.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@expo/package-manager": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/@expo/package-manager/-/package-manager-1.5.2.tgz", + "integrity": "sha512-IuA9XtGBilce0q8cyxtWINqbzMB1Fia0Yrug/O53HNuRSwQguV/iqjV68bsa4z8mYerePhcFgtvISWLAlNEbUA==", + "license": "MIT", + "dependencies": { + "@expo/json-file": "^8.3.0", + "@expo/spawn-async": "^1.7.2", + "ansi-regex": "^5.0.0", + "chalk": "^4.0.0", + "find-up": "^5.0.0", + "find-yarn-workspace-root": "~2.0.0", + "js-yaml": "^3.13.1", + "micromatch": "^4.0.2", + "npm-package-arg": "^7.0.0", + "ora": "^3.4.0", + "split": "^1.0.1", + "sudo-prompt": "9.1.1" + } + }, + "node_modules/@expo/package-manager/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@expo/package-manager/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@expo/package-manager/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@expo/package-manager/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/@expo/package-manager/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@expo/package-manager/node_modules/sudo-prompt": { + "version": "9.1.1", + "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.1.1.tgz", + "integrity": "sha512-es33J1g2HjMpyAhz8lOR+ICmXXAqTuKbuXuUWLhOLew20oN9oUCgCJx615U/v7aioZg7IX5lIh9x34vwneu4pA==", + "license": "MIT" + }, + "node_modules/@expo/package-manager/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@expo/plist": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@expo/plist/-/plist-0.1.3.tgz", + "integrity": "sha512-GW/7hVlAylYg1tUrEASclw1MMk9FP4ZwyFAY/SUTJIhPDQHtfOlXREyWV3hhrHdX/K+pS73GNgdfT6E/e+kBbg==", + "license": "MIT", + "dependencies": { + "@xmldom/xmldom": "~0.7.7", + "base64-js": "^1.2.3", + "xmlbuilder": "^14.0.0" + } + }, + "node_modules/@expo/prebuild-config": { + "version": "7.0.8", + "resolved": "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-7.0.8.tgz", + "integrity": "sha512-wH9NVg6HiwF5y9x0TxiMEeBF+ITPGDXy5/i6OUheSrKpPgb0lF1Mwzl/f2fLPXBEpl+ZXOQ8LlLW32b7K9lrNg==", + "license": "MIT", + "dependencies": { + "@expo/config": "~9.0.0-beta.0", + "@expo/config-plugins": "~8.0.8", + "@expo/config-types": "^51.0.0-unreleased", + "@expo/image-utils": "^0.5.0", + "@expo/json-file": "^8.3.0", + "@react-native/normalize-colors": "0.74.85", + "debug": "^4.3.1", + "fs-extra": "^9.0.0", + "resolve-from": "^5.0.0", + "semver": "^7.6.0", + "xml2js": "0.6.0" + }, + "peerDependencies": { + "expo-modules-autolinking": ">=0.8.1" + } + }, + "node_modules/@expo/prebuild-config/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@expo/prebuild-config/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@expo/prebuild-config/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@expo/prebuild-config/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@expo/rudder-sdk-node": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@expo/rudder-sdk-node/-/rudder-sdk-node-1.1.1.tgz", + "integrity": "sha512-uy/hS/awclDJ1S88w9UGpc6Nm9XnNUjzOAAib1A3PVAnGQIwebg8DpFqOthFBTlZxeuV/BKbZ5jmTbtNZkp1WQ==", + "license": "MIT", + "dependencies": { + "@expo/bunyan": "^4.0.0", + "@segment/loosely-validate-event": "^2.0.0", + "fetch-retry": "^4.1.1", + "md5": "^2.2.1", + "node-fetch": "^2.6.1", + "remove-trailing-slash": "^0.1.0", + "uuid": "^8.3.2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@expo/sdk-runtime-versions": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@expo/sdk-runtime-versions/-/sdk-runtime-versions-1.0.0.tgz", + "integrity": "sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==", + "license": "MIT" + }, + "node_modules/@expo/spawn-async": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/@expo/spawn-async/-/spawn-async-1.7.2.tgz", + "integrity": "sha512-QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@expo/vector-icons": { + "version": "14.0.2", + "resolved": "https://registry.npmjs.org/@expo/vector-icons/-/vector-icons-14.0.2.tgz", + "integrity": "sha512-70LpmXQu4xa8cMxjp1fydgRPsalefnHaXLzIwaHMEzcZhnyjw2acZz8azRrZOslPVAWlxItOa2Dd7WtD/kI+CA==", + "license": "MIT", + "dependencies": { + "prop-types": "^15.8.1" + } + }, + "node_modules/@expo/xcpretty": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@expo/xcpretty/-/xcpretty-4.3.1.tgz", + "integrity": "sha512-sqXgo1SCv+j4VtYEwl/bukuOIBrVgx6euIoCat3Iyx5oeoXwEA2USCoeL0IPubflMxncA2INkqJ/Wr3NGrSgzw==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/code-frame": "7.10.4", + "chalk": "^4.1.0", + "find-up": "^5.0.0", + "js-yaml": "^4.1.0" + }, + "bin": { + "excpretty": "build/cli.js" + } + }, + "node_modules/@expo/xcpretty/node_modules/@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/@expo/xcpretty/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@expo/xcpretty/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" + }, + "node_modules/@expo/xcpretty/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@expo/xcpretty/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@expo/xcpretty/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/@expo/xcpretty/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@expo/xcpretty/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@expo/xcpretty/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@graphql-typed-document-node/core": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.2.0.tgz", + "integrity": "sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==", + "license": "MIT", + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@hapi/hoek": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", + "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==", + "license": "BSD-3-Clause" + }, + "node_modules/@hapi/topo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", + "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "license": "MIT" + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/ttlcache": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@isaacs/ttlcache/-/ttlcache-1.4.1.tgz", + "integrity": "sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/@jest/create-cache-key-function": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/create-cache-key-function/-/create-cache-key-function-29.7.0.tgz", + "integrity": "sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==", + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/environment": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "license": "MIT", + "dependencies": { + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "license": "MIT", + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/types/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/types/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/@jest/types/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", + "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@noble/curves": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz", + "integrity": "sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==", + "license": "MIT", + "dependencies": { + "@noble/hashes": "1.3.2" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@noble/hashes": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz", + "integrity": "sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==", + "license": "MIT", + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@npmcli/fs": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.1.tgz", + "integrity": "sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==", + "license": "ISC", + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/fs/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@react-native-async-storage/async-storage": { + "version": "1.23.1", + "resolved": "https://registry.npmjs.org/@react-native-async-storage/async-storage/-/async-storage-1.23.1.tgz", + "integrity": "sha512-Qd2kQ3yi6Y3+AcUlrHxSLlnBvpdCEMVGFlVBneVOjaFaPU61g1huc38g339ysXspwY1QZA2aNhrk/KlHGO+ewA==", + "license": "MIT", + "dependencies": { + "merge-options": "^3.0.4" + }, + "peerDependencies": { + "react-native": "^0.0.0-0 || >=0.60 <1.0" + } + }, + "node_modules/@react-native-community/cli": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli/-/cli-13.6.9.tgz", + "integrity": "sha512-hFJL4cgLPxncJJd/epQ4dHnMg5Jy/7Q56jFvA3MHViuKpzzfTCJCB+pGY54maZbtym53UJON9WTGpM3S81UfjQ==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-clean": "13.6.9", + "@react-native-community/cli-config": "13.6.9", + "@react-native-community/cli-debugger-ui": "13.6.9", + "@react-native-community/cli-doctor": "13.6.9", + "@react-native-community/cli-hermes": "13.6.9", + "@react-native-community/cli-server-api": "13.6.9", + "@react-native-community/cli-tools": "13.6.9", + "@react-native-community/cli-types": "13.6.9", + "chalk": "^4.1.2", + "commander": "^9.4.1", + "deepmerge": "^4.3.0", + "execa": "^5.0.0", + "find-up": "^4.1.0", + "fs-extra": "^8.1.0", + "graceful-fs": "^4.1.3", + "prompts": "^2.4.2", + "semver": "^7.5.2" + }, + "bin": { + "rnc-cli": "build/bin.js" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native-community/cli-clean": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-clean/-/cli-clean-13.6.9.tgz", + "integrity": "sha512-7Dj5+4p9JggxuVNOjPbduZBAP1SUgNhLKVw5noBUzT/3ZpUZkDM+RCSwyoyg8xKWoE4OrdUAXwAFlMcFDPKykA==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-tools": "13.6.9", + "chalk": "^4.1.2", + "execa": "^5.0.0", + "fast-glob": "^3.3.2" + } + }, + "node_modules/@react-native-community/cli-clean/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@react-native-community/cli-clean/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@react-native-community/cli-clean/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@react-native-community/cli-clean/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/@react-native-community/cli-clean/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/@react-native-community/cli-clean/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-clean/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-clean/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-clean/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@react-native-community/cli-clean/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-clean/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-clean/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-config": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-config/-/cli-config-13.6.9.tgz", + "integrity": "sha512-rFfVBcNojcMm+KKHE/xqpqXg8HoKl4EC7bFHUrahMJ+y/tZll55+oX/PGG37rzB8QzP2UbMQ19DYQKC1G7kXeg==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-tools": "13.6.9", + "chalk": "^4.1.2", + "cosmiconfig": "^5.1.0", + "deepmerge": "^4.3.0", + "fast-glob": "^3.3.2", + "joi": "^17.2.1" + } + }, + "node_modules/@react-native-community/cli-config/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@react-native-community/cli-config/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@react-native-community/cli-config/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@react-native-community/cli-config/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/@react-native-community/cli-config/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-config/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-debugger-ui": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-13.6.9.tgz", + "integrity": "sha512-TkN7IdFmGPPvTpAo3nCAH9uwGCPxWBEAwpqEZDrq0NWllI7Tdie8vDpGdrcuCcKalmhq6OYnkXzeBah7O1Ztpw==", + "license": "MIT", + "dependencies": { + "serve-static": "^1.13.1" + } + }, + "node_modules/@react-native-community/cli-doctor": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-doctor/-/cli-doctor-13.6.9.tgz", + "integrity": "sha512-5quFaLdWFQB+677GXh5dGU9I5eg2z6Vg4jOX9vKnc9IffwyIFAyJfCZHrxLSRPDGNXD7biDQUdoezXYGwb6P/A==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-config": "13.6.9", + "@react-native-community/cli-platform-android": "13.6.9", + "@react-native-community/cli-platform-apple": "13.6.9", + "@react-native-community/cli-platform-ios": "13.6.9", + "@react-native-community/cli-tools": "13.6.9", + "chalk": "^4.1.2", + "command-exists": "^1.2.8", + "deepmerge": "^4.3.0", + "envinfo": "^7.10.0", + "execa": "^5.0.0", + "hermes-profile-transformer": "^0.0.6", + "node-stream-zip": "^1.9.1", + "ora": "^5.4.1", + "semver": "^7.5.2", + "strip-ansi": "^5.2.0", + "wcwidth": "^1.0.1", + "yaml": "^2.2.1" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "license": "MIT", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/@react-native-community/cli-doctor/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "license": "MIT", + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/ora/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "license": "MIT", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-hermes": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-hermes/-/cli-hermes-13.6.9.tgz", + "integrity": "sha512-GvwiwgvFw4Ws+krg2+gYj8sR3g05evmNjAHkKIKMkDTJjZ8EdyxbkifRUs1ZCq3TMZy2oeblZBXCJVOH4W7ZbA==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-platform-android": "13.6.9", + "@react-native-community/cli-tools": "13.6.9", + "chalk": "^4.1.2", + "hermes-profile-transformer": "^0.0.6" + } + }, + "node_modules/@react-native-community/cli-hermes/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@react-native-community/cli-hermes/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@react-native-community/cli-hermes/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@react-native-community/cli-hermes/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/@react-native-community/cli-hermes/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-hermes/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-platform-android": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-android/-/cli-platform-android-13.6.9.tgz", + "integrity": "sha512-9KsYGdr08QhdvT3Ht7e8phQB3gDX9Fs427NJe0xnoBh+PDPTI2BD5ks5ttsH8CzEw8/P6H8tJCHq6hf2nxd9cw==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-tools": "13.6.9", + "chalk": "^4.1.2", + "execa": "^5.0.0", + "fast-glob": "^3.3.2", + "fast-xml-parser": "^4.2.4", + "logkitty": "^0.7.1" + } + }, + "node_modules/@react-native-community/cli-platform-android/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@react-native-community/cli-platform-android/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@react-native-community/cli-platform-android/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@react-native-community/cli-platform-android/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/@react-native-community/cli-platform-android/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/@react-native-community/cli-platform-android/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-platform-android/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-platform-android/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-platform-android/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@react-native-community/cli-platform-android/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-platform-android/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-platform-android/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-platform-apple": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-apple/-/cli-platform-apple-13.6.9.tgz", + "integrity": "sha512-KoeIHfhxMhKXZPXmhQdl6EE+jGKWwoO9jUVWgBvibpVmsNjo7woaG/tfJMEWfWF3najX1EkQAoJWpCDBMYWtlA==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-tools": "13.6.9", + "chalk": "^4.1.2", + "execa": "^5.0.0", + "fast-glob": "^3.3.2", + "fast-xml-parser": "^4.0.12", + "ora": "^5.4.1" + } + }, + "node_modules/@react-native-community/cli-platform-apple/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@react-native-community/cli-platform-apple/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@react-native-community/cli-platform-apple/node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "license": "MIT", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-platform-apple/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@react-native-community/cli-platform-apple/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/@react-native-community/cli-platform-apple/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/@react-native-community/cli-platform-apple/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-platform-apple/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-platform-apple/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-platform-apple/node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-platform-apple/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@react-native-community/cli-platform-apple/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-platform-apple/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-platform-apple/node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "license": "MIT", + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-platform-apple/node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "license": "MIT", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-platform-apple/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-platform-apple/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-platform-ios": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-ios/-/cli-platform-ios-13.6.9.tgz", + "integrity": "sha512-CiUcHlGs8vE0CAB4oi1f+dzniqfGuhWPNrDvae2nm8dewlahTBwIcK5CawyGezjcJoeQhjBflh9vloska+nlnw==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-platform-apple": "13.6.9" + } + }, + "node_modules/@react-native-community/cli-server-api": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-server-api/-/cli-server-api-13.6.9.tgz", + "integrity": "sha512-W8FSlCPWymO+tlQfM3E0JmM8Oei5HZsIk5S0COOl0MRi8h0NmHI4WSTF2GCfbFZkcr2VI/fRsocoN8Au4EZAug==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-debugger-ui": "13.6.9", + "@react-native-community/cli-tools": "13.6.9", + "compression": "^1.7.1", + "connect": "^3.6.5", + "errorhandler": "^1.5.1", + "nocache": "^3.0.1", + "pretty-format": "^26.6.2", + "serve-static": "^1.13.1", + "ws": "^6.2.2" + } + }, + "node_modules/@react-native-community/cli-server-api/node_modules/ws": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz", + "integrity": "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==", + "license": "MIT", + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/@react-native-community/cli-tools": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-tools/-/cli-tools-13.6.9.tgz", + "integrity": "sha512-OXaSjoN0mZVw3nrAwcY1PC0uMfyTd9fz7Cy06dh+EJc+h0wikABsVRzV8cIOPrVV+PPEEXE0DBrH20T2puZzgQ==", + "license": "MIT", + "dependencies": { + "appdirsjs": "^1.2.4", + "chalk": "^4.1.2", + "execa": "^5.0.0", + "find-up": "^5.0.0", + "mime": "^2.4.1", + "node-fetch": "^2.6.0", + "open": "^6.2.0", + "ora": "^5.4.1", + "semver": "^7.5.2", + "shell-quote": "^1.7.3", + "sudo-prompt": "^9.0.0" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "license": "MIT", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/@react-native-community/cli-tools/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/open": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/open/-/open-6.4.0.tgz", + "integrity": "sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==", + "license": "MIT", + "dependencies": { + "is-wsl": "^1.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "license": "MIT", + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "license": "MIT", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/sudo-prompt": { + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.2.1.tgz", + "integrity": "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==", + "license": "MIT" + }, + "node_modules/@react-native-community/cli-tools/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-types": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-types/-/cli-types-13.6.9.tgz", + "integrity": "sha512-RLxDppvRxXfs3hxceW/mShi+6o5yS+kFPnPqZTaMKKR5aSg7LwDpLQW4K2D22irEG8e6RKDkZUeH9aL3vO2O0w==", + "license": "MIT", + "dependencies": { + "joi": "^17.2.1" + } + }, + "node_modules/@react-native-community/cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@react-native-community/cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@react-native-community/cli/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@react-native-community/cli/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/@react-native-community/cli/node_modules/commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "license": "MIT", + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "node_modules/@react-native-community/cli/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/@react-native-community/cli/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@react-native-community/cli/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@react-native-community/cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native/assets-registry": { + "version": "0.74.85", + "resolved": "https://registry.npmjs.org/@react-native/assets-registry/-/assets-registry-0.74.85.tgz", + "integrity": "sha512-59YmIQxfGDw4aP9S/nAM+sjSFdW8fUP6fsqczCcXgL2YVEjyER9XCaUT0J1K+PdHep8pi05KUgIKUds8P3jbmA==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/babel-plugin-codegen": { + "version": "0.74.85", + "resolved": "https://registry.npmjs.org/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.74.85.tgz", + "integrity": "sha512-48TSDclRB5OMXiImiJkLxyCfRyLsqkCgI8buugCZzvXcYslfV7gCvcyFyQldtcOmerV+CK4RAj7QS4hmB5Mr8Q==", + "license": "MIT", + "dependencies": { + "@react-native/codegen": "0.74.85" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/babel-preset": { + "version": "0.74.85", + "resolved": "https://registry.npmjs.org/@react-native/babel-preset/-/babel-preset-0.74.85.tgz", + "integrity": "sha512-yMHUlN8INbK5BBwiBuQMftdWkpm1IgCsoJTKcGD2OpSgZhwwm8RUSvGhdRMzB2w7bsqqBmaEMleGtW6aCR7B9w==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.20.0", + "@babel/plugin-proposal-async-generator-functions": "^7.0.0", + "@babel/plugin-proposal-class-properties": "^7.18.0", + "@babel/plugin-proposal-export-default-from": "^7.0.0", + "@babel/plugin-proposal-logical-assignment-operators": "^7.18.0", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.0", + "@babel/plugin-proposal-numeric-separator": "^7.0.0", + "@babel/plugin-proposal-object-rest-spread": "^7.20.0", + "@babel/plugin-proposal-optional-catch-binding": "^7.0.0", + "@babel/plugin-proposal-optional-chaining": "^7.20.0", + "@babel/plugin-syntax-dynamic-import": "^7.8.0", + "@babel/plugin-syntax-export-default-from": "^7.0.0", + "@babel/plugin-syntax-flow": "^7.18.0", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.0.0", + "@babel/plugin-syntax-optional-chaining": "^7.0.0", + "@babel/plugin-transform-arrow-functions": "^7.0.0", + "@babel/plugin-transform-async-to-generator": "^7.20.0", + "@babel/plugin-transform-block-scoping": "^7.0.0", + "@babel/plugin-transform-classes": "^7.0.0", + "@babel/plugin-transform-computed-properties": "^7.0.0", + "@babel/plugin-transform-destructuring": "^7.20.0", + "@babel/plugin-transform-flow-strip-types": "^7.20.0", + "@babel/plugin-transform-function-name": "^7.0.0", + "@babel/plugin-transform-literals": "^7.0.0", + "@babel/plugin-transform-modules-commonjs": "^7.0.0", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.0.0", + "@babel/plugin-transform-parameters": "^7.0.0", + "@babel/plugin-transform-private-methods": "^7.22.5", + "@babel/plugin-transform-private-property-in-object": "^7.22.11", + "@babel/plugin-transform-react-display-name": "^7.0.0", + "@babel/plugin-transform-react-jsx": "^7.0.0", + "@babel/plugin-transform-react-jsx-self": "^7.0.0", + "@babel/plugin-transform-react-jsx-source": "^7.0.0", + "@babel/plugin-transform-runtime": "^7.0.0", + "@babel/plugin-transform-shorthand-properties": "^7.0.0", + "@babel/plugin-transform-spread": "^7.0.0", + "@babel/plugin-transform-sticky-regex": "^7.0.0", + "@babel/plugin-transform-typescript": "^7.5.0", + "@babel/plugin-transform-unicode-regex": "^7.0.0", + "@babel/template": "^7.0.0", + "@react-native/babel-plugin-codegen": "0.74.85", + "babel-plugin-transform-flow-enums": "^0.0.2", + "react-refresh": "^0.14.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@babel/core": "*" + } + }, + "node_modules/@react-native/codegen": { + "version": "0.74.85", + "resolved": "https://registry.npmjs.org/@react-native/codegen/-/codegen-0.74.85.tgz", + "integrity": "sha512-N7QwoS4Hq/uQmoH83Ewedy6D0M7xbQsOU3OMcQf0eY3ltQ7S2hd9/R4UTalQWRn1OUJfXR6OG12QJ4FStKgV6Q==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.0", + "glob": "^7.1.1", + "hermes-parser": "0.19.1", + "invariant": "^2.2.4", + "jscodeshift": "^0.14.0", + "mkdirp": "^0.5.1", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@babel/preset-env": "^7.1.6" + } + }, + "node_modules/@react-native/community-cli-plugin": { + "version": "0.74.85", + "resolved": "https://registry.npmjs.org/@react-native/community-cli-plugin/-/community-cli-plugin-0.74.85.tgz", + "integrity": "sha512-ODzND33eA2owAY3g9jgCdqB+BjAh8qJ7dvmSotXgrgDYr3MJMpd8gvHTIPe2fg4Kab+wk8uipRhrE0i0RYMwtQ==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-server-api": "13.6.9", + "@react-native-community/cli-tools": "13.6.9", + "@react-native/dev-middleware": "0.74.85", + "@react-native/metro-babel-transformer": "0.74.85", + "chalk": "^4.0.0", + "execa": "^5.1.1", + "metro": "^0.80.3", + "metro-config": "^0.80.3", + "metro-core": "^0.80.3", + "node-fetch": "^2.2.0", + "querystring": "^0.2.1", + "readline": "^1.3.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/@react-native/community-cli-plugin/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native/debugger-frontend": { + "version": "0.74.85", + "resolved": "https://registry.npmjs.org/@react-native/debugger-frontend/-/debugger-frontend-0.74.85.tgz", + "integrity": "sha512-gUIhhpsYLUTYWlWw4vGztyHaX/kNlgVspSvKe2XaPA7o3jYKUoNLc3Ov7u70u/MBWfKdcEffWq44eSe3j3s5JQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/dev-middleware": { + "version": "0.74.85", + "resolved": "https://registry.npmjs.org/@react-native/dev-middleware/-/dev-middleware-0.74.85.tgz", + "integrity": "sha512-BRmgCK5vnMmHaKRO+h8PKJmHHH3E6JFuerrcfE3wG2eZ1bcSr+QTu8DAlpxsDWvJvHpCi8tRJGauxd+Ssj/c7w==", + "license": "MIT", + "dependencies": { + "@isaacs/ttlcache": "^1.4.1", + "@react-native/debugger-frontend": "0.74.85", + "@rnx-kit/chromium-edge-launcher": "^1.0.0", + "chrome-launcher": "^0.15.2", + "connect": "^3.6.5", + "debug": "^2.2.0", + "node-fetch": "^2.2.0", + "nullthrows": "^1.1.1", + "open": "^7.0.3", + "selfsigned": "^2.4.1", + "serve-static": "^1.13.1", + "temp-dir": "^2.0.0", + "ws": "^6.2.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/dev-middleware/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/@react-native/dev-middleware/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/@react-native/dev-middleware/node_modules/open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "license": "MIT", + "dependencies": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native/dev-middleware/node_modules/ws": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz", + "integrity": "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==", + "license": "MIT", + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/@react-native/gradle-plugin": { + "version": "0.74.85", + "resolved": "https://registry.npmjs.org/@react-native/gradle-plugin/-/gradle-plugin-0.74.85.tgz", + "integrity": "sha512-1VQSLukJzaVMn1MYcs8Weo1nUW8xCas2XU1KuoV7OJPk6xPnEBFJmapmEGP5mWeEy7kcTXJmddEgy1wwW0tcig==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/js-polyfills": { + "version": "0.74.85", + "resolved": "https://registry.npmjs.org/@react-native/js-polyfills/-/js-polyfills-0.74.85.tgz", + "integrity": "sha512-gp4Rg9le3lVZeW7Cie6qLfekvRKZuhJ3LKgi1SFB4N154z1wIclypAJXVXgWBsy8JKJfTwRI+sffC4qZDlvzrg==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/metro-babel-transformer": { + "version": "0.74.85", + "resolved": "https://registry.npmjs.org/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.74.85.tgz", + "integrity": "sha512-JIrXqEwhTvWPtGArgMptIPGstMdXQIkwSjKVYt+7VC4a9Pw1GurIWanIJheEW6ZuCVvTc0VZkwglFz9JVjzDjA==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.20.0", + "@react-native/babel-preset": "0.74.85", + "hermes-parser": "0.19.1", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@babel/core": "*" + } + }, + "node_modules/@react-native/normalize-colors": { + "version": "0.74.85", + "resolved": "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.74.85.tgz", + "integrity": "sha512-pcE4i0X7y3hsAE0SpIl7t6dUc0B0NZLd1yv7ssm4FrLhWG+CGyIq4eFDXpmPU1XHmL5PPySxTAjEMiwv6tAmOw==", + "license": "MIT" + }, + "node_modules/@react-native/virtualized-lists": { + "version": "0.74.85", + "resolved": "https://registry.npmjs.org/@react-native/virtualized-lists/-/virtualized-lists-0.74.85.tgz", + "integrity": "sha512-jx2Zw0qlZteoQ+0KxRc7s4drsljLBEP534FaNZ950e9+CN9nVkLsV6rigcTjDR8wjKMSBWhKf0C0C3egYz7Ehg==", + "license": "MIT", + "dependencies": { + "invariant": "^2.2.4", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/react": "^18.2.6", + "react": "*", + "react-native": "*" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@react-navigation/bottom-tabs": { + "version": "6.5.20", + "resolved": "https://registry.npmjs.org/@react-navigation/bottom-tabs/-/bottom-tabs-6.5.20.tgz", + "integrity": "sha512-ow6Z06iS4VqBO8d7FP+HsGjJLWt2xTWIvuWjpoCvsM/uQXzCRDIjBv9HaKcXbF0yTW7IMir0oDAbU5PFzEDdgA==", + "license": "MIT", + "dependencies": { + "@react-navigation/elements": "^1.3.30", + "color": "^4.2.3", + "warn-once": "^0.1.0" + }, + "peerDependencies": { + "@react-navigation/native": "^6.0.0", + "react": "*", + "react-native": "*", + "react-native-safe-area-context": ">= 3.0.0", + "react-native-screens": ">= 3.0.0" + } + }, + "node_modules/@react-navigation/core": { + "version": "6.4.16", + "resolved": "https://registry.npmjs.org/@react-navigation/core/-/core-6.4.16.tgz", + "integrity": "sha512-UDTJBsHxnzgFETR3ZxhctP+RWr4SkyeZpbhpkQoIGOuwSCkt1SE0qjU48/u6r6w6XlX8OqVudn1Ab0QFXTHxuQ==", + "license": "MIT", + "dependencies": { + "@react-navigation/routers": "^6.1.9", + "escape-string-regexp": "^4.0.0", + "nanoid": "^3.1.23", + "query-string": "^7.1.3", + "react-is": "^16.13.0", + "use-latest-callback": "^0.1.9" + }, + "peerDependencies": { + "react": "*" + } + }, + "node_modules/@react-navigation/elements": { + "version": "1.3.30", + "resolved": "https://registry.npmjs.org/@react-navigation/elements/-/elements-1.3.30.tgz", + "integrity": "sha512-plhc8UvCZs0UkV+sI+3bisIyn78wz9O/BiWZXpounu72k/R/Sj5PuZYFJ1fi6psvriUveMCGh4LeZckAZu2qiQ==", + "license": "MIT", + "peerDependencies": { + "@react-navigation/native": "^6.0.0", + "react": "*", + "react-native": "*", + "react-native-safe-area-context": ">= 3.0.0" + } + }, + "node_modules/@react-navigation/native": { + "version": "6.1.17", + "resolved": "https://registry.npmjs.org/@react-navigation/native/-/native-6.1.17.tgz", + "integrity": "sha512-mer3OvfwWOHoUSMJyLa4vnBH3zpFmCwuzrBPlw7feXklurr/ZDiLjLxUScOot6jLRMz/67GyilEYMmP99LL0RQ==", + "license": "MIT", + "dependencies": { + "@react-navigation/core": "^6.4.16", + "escape-string-regexp": "^4.0.0", + "fast-deep-equal": "^3.1.3", + "nanoid": "^3.1.23" + }, + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/@react-navigation/routers": { + "version": "6.1.9", + "resolved": "https://registry.npmjs.org/@react-navigation/routers/-/routers-6.1.9.tgz", + "integrity": "sha512-lTM8gSFHSfkJvQkxacGM6VJtBt61ip2XO54aNfswD+KMw6eeZ4oehl7m0me3CR9hnDE4+60iAZR8sAhvCiI3NA==", + "license": "MIT", + "dependencies": { + "nanoid": "^3.1.23" + } + }, + "node_modules/@react-navigation/stack": { + "version": "6.3.29", + "resolved": "https://registry.npmjs.org/@react-navigation/stack/-/stack-6.3.29.tgz", + "integrity": "sha512-tzlGkoRgB6P7vgw7rHuWo3TL7Gzu6xh5LMf+zSdCuEiKp/qASzxYfnTEr9tOLbVs/gf+qeukEDheCSAJKVpBXw==", + "license": "MIT", + "dependencies": { + "@react-navigation/elements": "^1.3.30", + "color": "^4.2.3", + "warn-once": "^0.1.0" + }, + "peerDependencies": { + "@react-navigation/native": "^6.0.0", + "react": "*", + "react-native": "*", + "react-native-gesture-handler": ">= 1.0.0", + "react-native-safe-area-context": ">= 3.0.0", + "react-native-screens": ">= 3.0.0" + } + }, + "node_modules/@rnx-kit/chromium-edge-launcher": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@rnx-kit/chromium-edge-launcher/-/chromium-edge-launcher-1.0.0.tgz", + "integrity": "sha512-lzD84av1ZQhYUS+jsGqJiCMaJO2dn9u+RTT9n9q6D3SaKVwWqv+7AoRKqBu19bkwyE+iFRl1ymr40QS90jVFYg==", + "license": "Apache-2.0", + "dependencies": { + "@types/node": "^18.0.0", + "escape-string-regexp": "^4.0.0", + "is-wsl": "^2.2.0", + "lighthouse-logger": "^1.0.0", + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=14.15" + } + }, + "node_modules/@rnx-kit/chromium-edge-launcher/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rnx-kit/chromium-edge-launcher/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@segment/loosely-validate-event": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@segment/loosely-validate-event/-/loosely-validate-event-2.0.0.tgz", + "integrity": "sha512-ZMCSfztDBqwotkl848ODgVcAmN4OItEWDCkshcKz0/W6gGSQayuuCtWV/MlodFivAZD793d6UgANd6wCXUfrIw==", + "dependencies": { + "component-type": "^1.2.1", + "join-component": "^1.1.0" + } + }, + "node_modules/@sideway/address": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz", + "integrity": "sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@sideway/formula": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", + "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==", + "license": "BSD-3-Clause" + }, + "node_modules/@sideway/pinpoint": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", + "license": "BSD-3-Clause" + }, + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "license": "MIT" + }, + "node_modules/@sinonjs/commons": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", + "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", + "license": "BSD-3-Clause", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/@types/hammerjs": { + "version": "2.0.45", + "resolved": "https://registry.npmjs.org/@types/hammerjs/-/hammerjs-2.0.45.tgz", + "integrity": "sha512-qkcUlZmX6c4J8q45taBKTL3p+LbITgyx7qhlPYOdOHZB7B31K0mXbP5YA7i7SgDeEGuI9MnumiKPEMrxg8j3KQ==", + "license": "MIT", + "peer": true + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", + "license": "MIT" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/node": { + "version": "18.15.13", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.13.tgz", + "integrity": "sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==", + "license": "MIT" + }, + "node_modules/@types/node-forge": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz", + "integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/prop-types": { + "version": "15.7.12", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.12.tgz", + "integrity": "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==", + "devOptional": true, + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "18.2.79", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.79.tgz", + "integrity": "sha512-RwGAGXPl9kSXwdNTafkOEuFrTBD5SA2B3iEB96xi8+xu5ddUa/cpvyVCSNn+asgLCTHkb5ZxN8gbuibYJi4s1w==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-native": { + "version": "0.70.19", + "resolved": "https://registry.npmjs.org/@types/react-native/-/react-native-0.70.19.tgz", + "integrity": "sha512-c6WbyCgWTBgKKMESj/8b4w+zWcZSsCforson7UdXtXMecG3MxCinYi6ihhrHVPyUrVzORsvEzK8zg32z4pK6Sg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react-native-vector-icons": { + "version": "6.4.18", + "resolved": "https://registry.npmjs.org/@types/react-native-vector-icons/-/react-native-vector-icons-6.4.18.tgz", + "integrity": "sha512-YGlNWb+k5laTBHd7+uZowB9DpIK3SXUneZqAiKQaj1jnJCZM0x71GDim5JCTMi4IFkhc9m8H/Gm28T5BjyivUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/react": "*", + "@types/react-native": "^0.70" + } + }, + "node_modules/@types/stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", + "license": "MIT" + }, + "node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", + "license": "MIT" + }, + "node_modules/@urql/core": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/@urql/core/-/core-2.3.6.tgz", + "integrity": "sha512-PUxhtBh7/8167HJK6WqBv6Z0piuiaZHQGYbhwpNL9aIQmLROPEdaUYkY4wh45wPQXcTpnd11l0q3Pw+TI11pdw==", + "license": "MIT", + "dependencies": { + "@graphql-typed-document-node/core": "^3.1.0", + "wonka": "^4.0.14" + }, + "peerDependencies": { + "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@urql/exchange-retry": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@urql/exchange-retry/-/exchange-retry-0.3.0.tgz", + "integrity": "sha512-hHqer2mcdVC0eYnVNbWyi28AlGOPb2vjH3lP3/Bc8Lc8BjhMsDwFMm7WhoP5C1+cfbr/QJ6Er3H/L08wznXxfg==", + "license": "MIT", + "dependencies": { + "@urql/core": ">=2.3.1", + "wonka": "^4.0.14" + }, + "peerDependencies": { + "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" + } + }, + "node_modules/@xmldom/xmldom": { + "version": "0.7.13", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.13.tgz", + "integrity": "sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "license": "MIT", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/aes-js": { + "version": "4.0.0-beta.5", + "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-4.0.0-beta.5.tgz", + "integrity": "sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==", + "license": "MIT" + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "license": "MIT", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "license": "MIT", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/anser": { + "version": "1.4.10", + "resolved": "https://registry.npmjs.org/anser/-/anser-1.4.10.tgz", + "integrity": "sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==", + "license": "MIT" + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "license": "MIT", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-fragments": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/ansi-fragments/-/ansi-fragments-0.2.1.tgz", + "integrity": "sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==", + "license": "MIT", + "dependencies": { + "colorette": "^1.0.7", + "slice-ansi": "^2.0.0", + "strip-ansi": "^5.0.0" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "license": "MIT" + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/anymatch/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/appdirsjs": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/appdirsjs/-/appdirsjs-1.2.7.tgz", + "integrity": "sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==", + "license": "MIT" + }, + "node_modules/application-config-path": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.1.tgz", + "integrity": "sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw==", + "license": "MIT" + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "license": "MIT" + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", + "license": "MIT" + }, + "node_modules/ast-types": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.15.2.tgz", + "integrity": "sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "license": "MIT" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "license": "ISC", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axios": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.2.tgz", + "integrity": "sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/babel-core": { + "version": "7.0.0-bridge.0", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz", + "integrity": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==", + "license": "MIT", + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", + "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.6.2", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz", + "integrity": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==", + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.1", + "core-js-compat": "^3.36.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", + "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-react-compiler": { + "version": "0.0.0-experimental-696af53-20240625", + "resolved": "https://registry.npmjs.org/babel-plugin-react-compiler/-/babel-plugin-react-compiler-0.0.0-experimental-696af53-20240625.tgz", + "integrity": "sha512-OUDKms8qmcm5bX0D+sJWC1YcKcd7AZ2aJ7eY6gkR+Xr7PDfkXLbqAld4Qs9B0ntjVbUMEtW/PjlQrxDtY4raHg==", + "license": "MIT", + "dependencies": { + "@babel/generator": "7.2.0", + "@babel/types": "^7.19.0", + "chalk": "4", + "invariant": "^2.2.4", + "pretty-format": "^24", + "zod": "^3.22.4", + "zod-validation-error": "^2.1.0" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/@babel/generator": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.2.0.tgz", + "integrity": "sha512-BA75MVfRlFQG2EZgFYIwyT1r6xSkwfP2bdkY/kLZusEYWiJs4xCowab/alaEaT0wSvmVuXGqiefeBlP+7V1yKg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.2.0", + "jsesc": "^2.5.1", + "lodash": "^4.17.10", + "source-map": "^0.5.0", + "trim-right": "^1.0.1" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/@types/yargs": { + "version": "13.0.12", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.12.tgz", + "integrity": "sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/chalk/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/babel-plugin-react-compiler/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz", + "integrity": "sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-react-native-web": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.19.12.tgz", + "integrity": "sha512-eYZ4+P6jNcB37lObWIg0pUbi7+3PKoU1Oie2j0C8UF3cXyXoR74tO2NBjI/FORb2LJyItJZEAmjU5pSaJYEL1w==", + "license": "MIT" + }, + "node_modules/babel-plugin-transform-flow-enums": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-flow-enums/-/babel-plugin-transform-flow-enums-0.0.2.tgz", + "integrity": "sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==", + "license": "MIT", + "dependencies": { + "@babel/plugin-syntax-flow": "^7.12.1" + } + }, + "node_modules/babel-preset-expo": { + "version": "11.0.12", + "resolved": "https://registry.npmjs.org/babel-preset-expo/-/babel-preset-expo-11.0.12.tgz", + "integrity": "sha512-hUuKdzSo8+H1oXQvKvlHRMHTxl+nN6YhFGlKiIxPa0E+gYfMEp8FnnStc/2Hwmip5rgJzQs6KF63KKRUc75xAg==", + "license": "MIT", + "dependencies": { + "@babel/plugin-proposal-decorators": "^7.12.9", + "@babel/plugin-transform-export-namespace-from": "^7.22.11", + "@babel/plugin-transform-object-rest-spread": "^7.12.13", + "@babel/plugin-transform-parameters": "^7.22.15", + "@babel/preset-react": "^7.22.15", + "@babel/preset-typescript": "^7.23.0", + "@react-native/babel-preset": "0.74.85", + "babel-plugin-react-compiler": "^0.0.0-experimental-592953e-20240517", + "babel-plugin-react-native-web": "~0.19.10", + "react-refresh": "^0.14.2" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/better-opn": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-3.0.2.tgz", + "integrity": "sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==", + "license": "MIT", + "dependencies": { + "open": "^8.0.4" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/big-integer": { + "version": "1.6.52", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", + "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", + "license": "Unlicense", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/bl/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bn.js": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", + "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==", + "license": "MIT" + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "license": "ISC" + }, + "node_modules/bplist-creator": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.0.7.tgz", + "integrity": "sha512-xp/tcaV3T5PCiaY04mXga7o/TE+t95gqeLmADeBI1CvZtdWTbgBt3uLpvh4UWtenKeBhCV6oVxGk38yZr2uYEA==", + "license": "MIT", + "dependencies": { + "stream-buffers": "~2.2.0" + } + }, + "node_modules/bplist-parser": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.2.tgz", + "integrity": "sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==", + "license": "MIT", + "dependencies": { + "big-integer": "1.6.x" + }, + "engines": { + "node": ">= 5.10.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.23.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.1.tgz", + "integrity": "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001629", + "electron-to-chromium": "^1.4.796", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.16" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "license": "Apache-2.0", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "license": "MIT", + "dependencies": { + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" + } + }, + "node_modules/buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", + "license": "MIT" + }, + "node_modules/buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==", + "license": "MIT" + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "license": "MIT" + }, + "node_modules/builtins": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz", + "integrity": "sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==", + "license": "MIT" + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cacache": { + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.4.tgz", + "integrity": "sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==", + "license": "ISC", + "dependencies": { + "@npmcli/fs": "^3.1.0", + "fs-minipass": "^3.0.0", + "glob": "^10.2.2", + "lru-cache": "^10.0.1", + "minipass": "^7.0.3", + "minipass-collect": "^2.0.1", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "p-map": "^4.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11", + "unique-filename": "^3.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/cacache/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/cacache/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/cacache/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" + }, + "node_modules/cacache/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==", + "license": "MIT", + "dependencies": { + "callsites": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==", + "license": "MIT", + "dependencies": { + "caller-callsite": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001636", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001636.tgz", + "integrity": "sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/charenc": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", + "integrity": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==", + "license": "BSD-3-Clause", + "engines": { + "node": "*" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/chrome-launcher": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.2.tgz", + "integrity": "sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==", + "license": "Apache-2.0", + "dependencies": { + "@types/node": "*", + "escape-string-regexp": "^4.0.0", + "is-wsl": "^2.2.0", + "lighthouse-logger": "^1.0.0" + }, + "bin": { + "print-chrome-path": "bin/print-chrome-path.js" + }, + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==", + "license": "MIT", + "dependencies": { + "restore-cursor": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cli-spinners": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + }, + "engines": { + "node": ">=12.5.0" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "license": "MIT", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/color/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/colorette": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", + "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==", + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/command-exists": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", + "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==", + "license": "MIT" + }, + "node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "license": "MIT" + }, + "node_modules/component-type": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/component-type/-/component-type-1.2.2.tgz", + "integrity": "sha512-99VUHREHiN5cLeHm3YLq312p6v+HUEcwtLCAtelvUDI6+SH5g5Cr85oNR2S1o6ywzL0ykMbuwLzM2ANocjEOIA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "license": "MIT", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "license": "MIT" + }, + "node_modules/connect": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", + "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "finalhandler": "1.1.2", + "parseurl": "~1.3.3", + "utils-merge": "1.0.1" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/connect/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/connect/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "license": "MIT" + }, + "node_modules/core-js-compat": { + "version": "3.37.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.37.1.tgz", + "integrity": "sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.23.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "license": "MIT" + }, + "node_modules/cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "license": "MIT", + "dependencies": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cross-fetch": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz", + "integrity": "sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==", + "license": "MIT", + "dependencies": { + "node-fetch": "^2.6.12" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypt": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", + "integrity": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==", + "license": "BSD-3-Clause", + "engines": { + "node": "*" + } + }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/css-select": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-tree/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "devOptional": true, + "license": "MIT" + }, + "node_modules/dag-map": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/dag-map/-/dag-map-1.0.2.tgz", + "integrity": "sha512-+LSAiGFwQ9dRnRdOeaj7g47ZFJcOUPukAP8J3A3fuZ1g9Y44BG+P1sgApjLXTQPOzC4+7S9Wr8kXsfpINM4jpw==", + "license": "MIT" + }, + "node_modules/data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/dayjs": { + "version": "1.11.11", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.11.tgz", + "integrity": "sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==", + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", + "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "license": "MIT", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "license": "BSD-2-Clause", + "dependencies": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "license": "MIT", + "dependencies": { + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/defaults/node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/del": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", + "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==", + "license": "MIT", + "dependencies": { + "globby": "^11.0.1", + "graceful-fs": "^4.2.4", + "is-glob": "^4.0.1", + "is-path-cwd": "^2.2.0", + "is-path-inside": "^3.0.2", + "p-map": "^4.0.0", + "rimraf": "^3.0.2", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/del/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/denodeify": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/denodeify/-/denodeify-1.2.1.tgz", + "integrity": "sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==", + "license": "MIT" + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "license": "MIT", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "license": "Apache-2.0", + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "license": "MIT", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dotenv": { + "version": "16.4.5", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", + "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/dotenv-expand": { + "version": "11.0.6", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-11.0.6.tgz", + "integrity": "sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==", + "license": "BSD-2-Clause", + "dependencies": { + "dotenv": "^16.4.4" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "license": "MIT" + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.4.808", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.808.tgz", + "integrity": "sha512-0ItWyhPYnww2VOuCGF4s1LTfbrdAV2ajy/TN+ZTuhR23AHI6rWHCrBXJ/uxoXOvRRqw8qjYVrG81HFI7x/2wdQ==", + "license": "ISC" + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "license": "MIT", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/env-editor": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/env-editor/-/env-editor-0.4.2.tgz", + "integrity": "sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/envinfo": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.13.0.tgz", + "integrity": "sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==", + "license": "MIT", + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eol": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz", + "integrity": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==", + "license": "MIT" + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "license": "MIT", + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/errorhandler": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.1.tgz", + "integrity": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.7", + "escape-html": "~1.0.3" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/es-abstract": { + "version": "1.23.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", + "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "license": "BSD-2-Clause", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/ethers": { + "version": "6.13.1", + "resolved": "https://registry.npmjs.org/ethers/-/ethers-6.13.1.tgz", + "integrity": "sha512-hdJ2HOxg/xx97Lm9HdCWk949BfYqYWpyw4//78SiwOLgASyfrNszfMUNB2joKjvGUdwhHfaiMMFFwacVVoLR9A==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/ethers-io/" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@adraffy/ens-normalize": "1.10.1", + "@noble/curves": "1.2.0", + "@noble/hashes": "1.3.2", + "@types/node": "18.15.13", + "aes-js": "4.0.0-beta.5", + "tslib": "2.4.0", + "ws": "8.17.1" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/exec-async": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/exec-async/-/exec-async-2.2.0.tgz", + "integrity": "sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==", + "license": "MIT" + }, + "node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/execa/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "license": "MIT", + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/execa/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/execa/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/execa/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/expo": { + "version": "51.0.20", + "resolved": "https://registry.npmjs.org/expo/-/expo-51.0.20.tgz", + "integrity": "sha512-EmNZel6j7pU4YF1QcIcgpVdYsA1lASQcEw9PPSevjreNT6nlge2CNHB6mAphAKGz5PdgcWYBn/v4qQj1/FJuZQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.20.0", + "@expo/cli": "0.18.25", + "@expo/config": "9.0.3", + "@expo/config-plugins": "8.0.8", + "@expo/metro-config": "0.18.8", + "@expo/vector-icons": "^14.0.0", + "babel-preset-expo": "~11.0.12", + "expo-asset": "~10.0.10", + "expo-file-system": "~17.0.1", + "expo-font": "~12.0.8", + "expo-keep-awake": "~13.0.2", + "expo-modules-autolinking": "1.11.1", + "expo-modules-core": "1.12.19", + "fbemitter": "^3.0.0", + "whatwg-url-without-unicode": "8.0.0-3" + }, + "bin": { + "expo": "bin/cli" + } + }, + "node_modules/expo-asset": { + "version": "10.0.10", + "resolved": "https://registry.npmjs.org/expo-asset/-/expo-asset-10.0.10.tgz", + "integrity": "sha512-0qoTIihB79k+wGus9wy0JMKq7DdenziVx3iUkGvMAy2azscSgWH6bd2gJ9CGnhC6JRd3qTMFBL0ou/fx7WZl7A==", + "license": "MIT", + "dependencies": { + "expo-constants": "~16.0.0", + "invariant": "^2.2.4", + "md5-file": "^3.2.3" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-constants": { + "version": "16.0.2", + "resolved": "https://registry.npmjs.org/expo-constants/-/expo-constants-16.0.2.tgz", + "integrity": "sha512-9tNY3OVO0jfiMzl7ngb6IOyR5VFzNoN5OOazUWoeGfmMqVB5kltTemRvKraK9JRbBKIw+SOYLEmF0sEqgFZ6OQ==", + "license": "MIT", + "dependencies": { + "@expo/config": "~9.0.0", + "@expo/env": "~0.3.0" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-file-system": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/expo-file-system/-/expo-file-system-17.0.1.tgz", + "integrity": "sha512-dYpnZJqTGj6HCYJyXAgpFkQWsiCH3HY1ek2cFZVHFoEc5tLz9gmdEgTF6nFHurvmvfmXqxi7a5CXyVm0aFYJBw==", + "license": "MIT", + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-font": { + "version": "12.0.8", + "resolved": "https://registry.npmjs.org/expo-font/-/expo-font-12.0.8.tgz", + "integrity": "sha512-xK9kOEyD/vnREicM5yS2uVwzB83weu+UE6QwJRH2dhoQcdJiWGGKOj+blJ8GrtU+BqtyNijyWcwfBbYOJnf8eQ==", + "license": "MIT", + "dependencies": { + "fontfaceobserver": "^2.1.0" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-image-loader": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/expo-image-loader/-/expo-image-loader-4.7.0.tgz", + "integrity": "sha512-cx+MxxsAMGl9AiWnQUzrkJMJH4eNOGlu7XkLGnAXSJrRoIiciGaKqzeaD326IyCTV+Z1fXvIliSgNW+DscvD8g==", + "license": "MIT", + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-image-picker": { + "version": "15.0.7", + "resolved": "https://registry.npmjs.org/expo-image-picker/-/expo-image-picker-15.0.7.tgz", + "integrity": "sha512-u8qiPZNfDb+ap6PJ8pq2iTO7JKX+ikAUQ0K0c7gXGliKLxoXgDdDmXxz9/6QdICTshJBJlBvI0MwY5NWu7A/uw==", + "license": "MIT", + "dependencies": { + "expo-image-loader": "~4.7.0" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-keep-awake": { + "version": "13.0.2", + "resolved": "https://registry.npmjs.org/expo-keep-awake/-/expo-keep-awake-13.0.2.tgz", + "integrity": "sha512-kKiwkVg/bY0AJ5q1Pxnm/GvpeB6hbNJhcFsoOWDh2NlpibhCLaHL826KHUM+WsnJRbVRxJ+K9vbPRHEMvFpVyw==", + "license": "MIT", + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-modules-autolinking": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-1.11.1.tgz", + "integrity": "sha512-2dy3lTz76adOl7QUvbreMCrXyzUiF8lygI7iFJLjgIQIVH+43KnFWE5zBumpPbkiaq0f0uaFpN9U0RGQbnKiMw==", + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "commander": "^7.2.0", + "fast-glob": "^3.2.5", + "find-up": "^5.0.0", + "fs-extra": "^9.1.0" + }, + "bin": { + "expo-modules-autolinking": "bin/expo-modules-autolinking.js" + } + }, + "node_modules/expo-modules-autolinking/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/expo-modules-autolinking/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/expo-modules-autolinking/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/expo-modules-autolinking/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/expo-modules-autolinking/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/expo-modules-autolinking/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/expo-modules-autolinking/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/expo-modules-autolinking/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/expo-modules-autolinking/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/expo-modules-core": { + "version": "1.12.19", + "resolved": "https://registry.npmjs.org/expo-modules-core/-/expo-modules-core-1.12.19.tgz", + "integrity": "sha512-fFsErN4oMsOdStUVYvyLpl6MX/wbD9yJSqy/Lu7ZRLIPzeKDfGS2jNl8RzryPznRpWmy49X8l40R4osRJLizhg==", + "license": "MIT", + "dependencies": { + "invariant": "^2.2.4" + } + }, + "node_modules/expo-status-bar": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/expo-status-bar/-/expo-status-bar-1.12.1.tgz", + "integrity": "sha512-/t3xdbS8KB0prj5KG5w7z+wZPFlPtkgs95BsmrP/E7Q0xHXTcDcQ6Cu2FkFuRM+PKTb17cJDnLkawyS5vDLxMA==", + "license": "MIT" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-xml-parser": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.4.0.tgz", + "integrity": "sha512-kLY3jFlwIYwBNDojclKsNAC12sfD6NwW74QB2CoNGPvtVxjliYehVunB3HYyNi+n4Tt1dAcgwYvmKF/Z18flqg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + }, + { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + } + ], + "license": "MIT", + "dependencies": { + "strnum": "^1.0.5" + }, + "bin": { + "fxparser": "src/cli/cli.js" + } + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "license": "Apache-2.0", + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fbemitter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz", + "integrity": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==", + "license": "BSD-3-Clause", + "dependencies": { + "fbjs": "^3.0.0" + } + }, + "node_modules/fbjs": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.5.tgz", + "integrity": "sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==", + "license": "MIT", + "dependencies": { + "cross-fetch": "^3.1.5", + "fbjs-css-vars": "^1.0.0", + "loose-envify": "^1.0.0", + "object-assign": "^4.1.0", + "promise": "^7.1.1", + "setimmediate": "^1.0.5", + "ua-parser-js": "^1.0.35" + } + }, + "node_modules/fbjs-css-vars": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", + "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==", + "license": "MIT" + }, + "node_modules/fetch-retry": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-4.1.1.tgz", + "integrity": "sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA==", + "license": "MIT" + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/filter-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz", + "integrity": "sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "license": "MIT", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-yarn-workspace-root": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz", + "integrity": "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==", + "license": "Apache-2.0", + "dependencies": { + "micromatch": "^4.0.2" + } + }, + "node_modules/flow-enums-runtime": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/flow-enums-runtime/-/flow-enums-runtime-0.0.6.tgz", + "integrity": "sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==", + "license": "MIT" + }, + "node_modules/flow-parser": { + "version": "0.238.0", + "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.238.0.tgz", + "integrity": "sha512-VE7XSv1epljsIN2YeBnxCmGJihpNIAnLLu/pPOdA+Gkso7qDltJwUi6vfHjgxdBbjSdAuPGnhuOHJUQG+yYwIg==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.6", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", + "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/fontfaceobserver": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/fontfaceobserver/-/fontfaceobserver-2.3.0.tgz", + "integrity": "sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==", + "license": "BSD-2-Clause" + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/foreground-child": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz", + "integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==", + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/freeport-async": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/freeport-async/-/freeport-async-2.0.0.tgz", + "integrity": "sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/fs-minipass": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz", + "integrity": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==", + "license": "ISC", + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "license": "ISC" + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-port": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", + "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "license": "MIT", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/getenv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/getenv/-/getenv-1.0.0.tgz", + "integrity": "sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" + }, + "node_modules/graphql": { + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-15.8.0.tgz", + "integrity": "sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==", + "license": "MIT", + "engines": { + "node": ">= 10.x" + } + }, + "node_modules/graphql-tag": { + "version": "2.12.6", + "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz", + "integrity": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==", + "license": "MIT", + "dependencies": { + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hermes-estree": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.19.1.tgz", + "integrity": "sha512-daLGV3Q2MKk8w4evNMKwS8zBE/rcpA800nu1Q5kM08IKijoSnPe9Uo1iIxzPKRkn95IxxsgBMPeYHt3VG4ej2g==", + "license": "MIT" + }, + "node_modules/hermes-parser": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.19.1.tgz", + "integrity": "sha512-Vp+bXzxYJWrpEuJ/vXxUsLnt0+y4q9zyi4zUlkLqD8FKv4LjIfOvP69R/9Lty3dCyKh0E2BU7Eypqr63/rKT/A==", + "license": "MIT", + "dependencies": { + "hermes-estree": "0.19.1" + } + }, + "node_modules/hermes-profile-transformer": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/hermes-profile-transformer/-/hermes-profile-transformer-0.0.6.tgz", + "integrity": "sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==", + "license": "MIT", + "dependencies": { + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "license": "BSD-3-Clause", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/hosted-git-info": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.8.tgz", + "integrity": "sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/hosted-git-info/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "license": "ISC" + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-errors/node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "license": "MIT", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "license": "Apache-2.0", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/image-size": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-1.1.1.tgz", + "integrity": "sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==", + "license": "MIT", + "dependencies": { + "queue": "6.0.2" + }, + "bin": { + "image-size": "bin/image-size.js" + }, + "engines": { + "node": ">=16.x" + } + }, + "node_modules/import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==", + "license": "MIT", + "dependencies": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "license": "ISC" + }, + "node_modules/internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "license": "MIT", + "dependencies": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "license": "MIT" + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "license": "MIT" + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.14.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.14.0.tgz", + "integrity": "sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-view": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "license": "MIT", + "dependencies": { + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "license": "MIT", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-invalid-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-invalid-path/-/is-invalid-path-0.1.0.tgz", + "integrity": "sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ==", + "license": "MIT", + "dependencies": { + "is-glob": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-invalid-path/node_modules/is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-invalid-path/node_modules/is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==", + "license": "MIT", + "dependencies": { + "is-extglob": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "license": "MIT", + "dependencies": { + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-valid-path": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz", + "integrity": "sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A==", + "license": "MIT", + "dependencies": { + "is-invalid-path": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "license": "MIT", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jest-environment-node": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.6.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-message-util/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/jest-message-util/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "license": "MIT" + }, + "node_modules/jest-message-util/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-util/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-util/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-util/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/jest-util/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/jest-util/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-validate/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/jest-validate/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "license": "MIT" + }, + "node_modules/jest-validate/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jimp-compact": { + "version": "0.16.1", + "resolved": "https://registry.npmjs.org/jimp-compact/-/jimp-compact-0.16.1.tgz", + "integrity": "sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==", + "license": "MIT" + }, + "node_modules/joi": { + "version": "17.13.3", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.13.3.tgz", + "integrity": "sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^9.3.0", + "@hapi/topo": "^5.1.0", + "@sideway/address": "^4.1.5", + "@sideway/formula": "^3.0.1", + "@sideway/pinpoint": "^2.0.0" + } + }, + "node_modules/join-component": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/join-component/-/join-component-1.1.0.tgz", + "integrity": "sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ==", + "license": "MIT" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsc-android": { + "version": "250231.0.0", + "resolved": "https://registry.npmjs.org/jsc-android/-/jsc-android-250231.0.0.tgz", + "integrity": "sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==", + "license": "BSD-2-Clause" + }, + "node_modules/jsc-safe-url": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/jsc-safe-url/-/jsc-safe-url-0.2.4.tgz", + "integrity": "sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==", + "license": "0BSD" + }, + "node_modules/jscodeshift": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.14.0.tgz", + "integrity": "sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.13.16", + "@babel/parser": "^7.13.16", + "@babel/plugin-proposal-class-properties": "^7.13.0", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8", + "@babel/plugin-proposal-optional-chaining": "^7.13.12", + "@babel/plugin-transform-modules-commonjs": "^7.13.8", + "@babel/preset-flow": "^7.13.13", + "@babel/preset-typescript": "^7.13.0", + "@babel/register": "^7.13.16", + "babel-core": "^7.0.0-bridge.0", + "chalk": "^4.1.2", + "flow-parser": "0.*", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.4", + "neo-async": "^2.5.0", + "node-dir": "^0.1.17", + "recast": "^0.21.0", + "temp": "^0.8.4", + "write-file-atomic": "^2.3.0" + }, + "bin": { + "jscodeshift": "bin/jscodeshift.js" + }, + "peerDependencies": { + "@babel/preset-env": "^7.1.6" + } + }, + "node_modules/jscodeshift/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jscodeshift/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jscodeshift/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jscodeshift/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/jscodeshift/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jscodeshift/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "license": "MIT" + }, + "node_modules/json-schema-deref-sync": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/json-schema-deref-sync/-/json-schema-deref-sync-0.13.0.tgz", + "integrity": "sha512-YBOEogm5w9Op337yb6pAT6ZXDqlxAsQCanM3grid8lMWNxRJO/zWEJi3ZzqDL8boWfwhTFym5EFrNgWwpqcBRg==", + "license": "MIT", + "dependencies": { + "clone": "^2.1.2", + "dag-map": "~1.0.0", + "is-valid-path": "^0.1.1", + "lodash": "^4.17.13", + "md5": "~2.2.0", + "memory-cache": "~0.2.0", + "traverse": "~0.6.6", + "valid-url": "~1.0.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/json-schema-deref-sync/node_modules/md5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/md5/-/md5-2.2.1.tgz", + "integrity": "sha512-PlGG4z5mBANDGCKsYQe0CaUYHdZYZt8ZPZLmEt+Urf0W4GlpTX4HescwHU+dc9+Z/G/vZKYZYFrwgm9VxK6QOQ==", + "license": "BSD-3-Clause", + "dependencies": { + "charenc": "~0.0.1", + "crypt": "~0.0.1", + "is-buffer": "~1.1.1" + } + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "license": "MIT", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/lighthouse-logger": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.4.2.tgz", + "integrity": "sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==", + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.9", + "marky": "^1.2.2" + } + }, + "node_modules/lighthouse-logger/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/lighthouse-logger/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/lightningcss": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.19.0.tgz", + "integrity": "sha512-yV5UR7og+Og7lQC+70DA7a8ta1uiOPnWPJfxa0wnxylev5qfo4P+4iMpzWAdYWOca4jdNQZii+bDL/l+4hUXIA==", + "license": "MPL-2.0", + "dependencies": { + "detect-libc": "^1.0.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "lightningcss-darwin-arm64": "1.19.0", + "lightningcss-darwin-x64": "1.19.0", + "lightningcss-linux-arm-gnueabihf": "1.19.0", + "lightningcss-linux-arm64-gnu": "1.19.0", + "lightningcss-linux-arm64-musl": "1.19.0", + "lightningcss-linux-x64-gnu": "1.19.0", + "lightningcss-linux-x64-musl": "1.19.0", + "lightningcss-win32-x64-msvc": "1.19.0" + } + }, + "node_modules/lightningcss-darwin-arm64": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.19.0.tgz", + "integrity": "sha512-wIJmFtYX0rXHsXHSr4+sC5clwblEMji7HHQ4Ub1/CznVRxtCFha6JIt5JZaNf8vQrfdZnBxLLC6R8pC818jXqg==", + "cpu": [ + "arm64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-x64": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.19.0.tgz", + "integrity": "sha512-Lif1wD6P4poaw9c/4Uh2z+gmrWhw/HtXFoeZ3bEsv6Ia4tt8rOJBdkfVaUJ6VXmpKHALve+iTyP2+50xY1wKPw==", + "cpu": [ + "x64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm-gnueabihf": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.19.0.tgz", + "integrity": "sha512-P15VXY5682mTXaiDtbnLYQflc8BYb774j2R84FgDLJTN6Qp0ZjWEFyN1SPqyfTj2B2TFjRHRUvQSSZ7qN4Weig==", + "cpu": [ + "arm" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-gnu": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.19.0.tgz", + "integrity": "sha512-zwXRjWqpev8wqO0sv0M1aM1PpjHz6RVIsBcxKszIG83Befuh4yNysjgHVplF9RTU7eozGe3Ts7r6we1+Qkqsww==", + "cpu": [ + "arm64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-musl": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.19.0.tgz", + "integrity": "sha512-vSCKO7SDnZaFN9zEloKSZM5/kC5gbzUjoJQ43BvUpyTFUX7ACs/mDfl2Eq6fdz2+uWhUh7vf92c4EaaP4udEtA==", + "cpu": [ + "arm64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-gnu": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.19.0.tgz", + "integrity": "sha512-0AFQKvVzXf9byrXUq9z0anMGLdZJS+XSDqidyijI5njIwj6MdbvX2UZK/c4FfNmeRa2N/8ngTffoIuOUit5eIQ==", + "cpu": [ + "x64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-musl": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.19.0.tgz", + "integrity": "sha512-SJoM8CLPt6ECCgSuWe+g0qo8dqQYVcPiW2s19dxkmSI5+Uu1GIRzyKA0b7QqmEXolA+oSJhQqCmJpzjY4CuZAg==", + "cpu": [ + "x64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-x64-msvc": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.19.0.tgz", + "integrity": "sha512-C+VuUTeSUOAaBZZOPT7Etn/agx/MatzJzGRkeV+zEABmPuntv1zihncsi+AyGmjkkzq3wVedEy7h0/4S84mUtg==", + "cpu": [ + "x64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "license": "MIT" + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "license": "MIT" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "license": "MIT" + }, + "node_modules/lodash.throttle": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", + "integrity": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==", + "license": "MIT" + }, + "node_modules/log-symbols": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", + "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", + "license": "MIT", + "dependencies": { + "chalk": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/logkitty": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/logkitty/-/logkitty-0.7.1.tgz", + "integrity": "sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==", + "license": "MIT", + "dependencies": { + "ansi-fragments": "^0.2.1", + "dayjs": "^1.8.15", + "yargs": "^15.1.0" + }, + "bin": { + "logkitty": "bin/logkitty.js" + } + }, + "node_modules/logkitty/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/logkitty/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/logkitty/node_modules/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/logkitty/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/logkitty/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/logkitty/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/logkitty/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/logkitty/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/logkitty/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/logkitty/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/logkitty/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/logkitty/node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "license": "ISC" + }, + "node_modules/logkitty/node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "license": "MIT", + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/logkitty/node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "license": "ISC", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "license": "MIT", + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "license": "BSD-3-Clause", + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/marky": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/marky/-/marky-1.2.5.tgz", + "integrity": "sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==", + "license": "Apache-2.0" + }, + "node_modules/md5": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", + "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", + "license": "BSD-3-Clause", + "dependencies": { + "charenc": "0.0.2", + "crypt": "0.0.2", + "is-buffer": "~1.1.6" + } + }, + "node_modules/md5-file": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/md5-file/-/md5-file-3.2.3.tgz", + "integrity": "sha512-3Tkp1piAHaworfcCgH0jKbTvj1jWWFgbvh2cXaNCgHwyTCBxxvD1Y04rmfpvdPm1P4oXMOpm6+2H7sr7v9v8Fw==", + "license": "MIT", + "dependencies": { + "buffer-alloc": "^1.1.0" + }, + "bin": { + "md5-file": "cli.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/md5hex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/md5hex/-/md5hex-1.0.0.tgz", + "integrity": "sha512-c2YOUbp33+6thdCUi34xIyOU/a7bvGKj/3DB1iaPMTuPHf/Q2d5s4sn1FaCOO43XkXggnb08y5W2PU8UNYNLKQ==", + "license": "MIT" + }, + "node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "license": "CC0-1.0" + }, + "node_modules/memoize-one": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz", + "integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==", + "license": "MIT" + }, + "node_modules/memory-cache": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/memory-cache/-/memory-cache-0.2.0.tgz", + "integrity": "sha512-OcjA+jzjOYzKmKS6IQVALHLVz+rNTMPoJvCztFaZxwG14wtAW7VRZjwTQu06vKCYOxh4jVnik7ya0SXTB0W+xA==", + "license": "BSD-2-Clause" + }, + "node_modules/merge-options": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/merge-options/-/merge-options-3.0.4.tgz", + "integrity": "sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ==", + "license": "MIT", + "dependencies": { + "is-plain-obj": "^2.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "license": "MIT" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/metro": { + "version": "0.80.9", + "resolved": "https://registry.npmjs.org/metro/-/metro-0.80.9.tgz", + "integrity": "sha512-Bc57Xf3GO2Xe4UWQsBj/oW6YfLPABEu8jfDVDiNmJvoQW4CO34oDPuYKe4KlXzXhcuNsqOtSxpbjCRRVjhhREg==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@babel/core": "^7.20.0", + "@babel/generator": "^7.20.0", + "@babel/parser": "^7.20.0", + "@babel/template": "^7.0.0", + "@babel/traverse": "^7.20.0", + "@babel/types": "^7.20.0", + "accepts": "^1.3.7", + "chalk": "^4.0.0", + "ci-info": "^2.0.0", + "connect": "^3.6.5", + "debug": "^2.2.0", + "denodeify": "^1.2.1", + "error-stack-parser": "^2.0.6", + "graceful-fs": "^4.2.4", + "hermes-parser": "0.20.1", + "image-size": "^1.0.2", + "invariant": "^2.2.4", + "jest-worker": "^29.6.3", + "jsc-safe-url": "^0.2.2", + "lodash.throttle": "^4.1.1", + "metro-babel-transformer": "0.80.9", + "metro-cache": "0.80.9", + "metro-cache-key": "0.80.9", + "metro-config": "0.80.9", + "metro-core": "0.80.9", + "metro-file-map": "0.80.9", + "metro-resolver": "0.80.9", + "metro-runtime": "0.80.9", + "metro-source-map": "0.80.9", + "metro-symbolicate": "0.80.9", + "metro-transform-plugins": "0.80.9", + "metro-transform-worker": "0.80.9", + "mime-types": "^2.1.27", + "node-fetch": "^2.2.0", + "nullthrows": "^1.1.1", + "rimraf": "^3.0.2", + "serialize-error": "^2.1.0", + "source-map": "^0.5.6", + "strip-ansi": "^6.0.0", + "throat": "^5.0.0", + "ws": "^7.5.1", + "yargs": "^17.6.2" + }, + "bin": { + "metro": "src/cli.js" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-babel-transformer": { + "version": "0.80.9", + "resolved": "https://registry.npmjs.org/metro-babel-transformer/-/metro-babel-transformer-0.80.9.tgz", + "integrity": "sha512-d76BSm64KZam1nifRZlNJmtwIgAeZhZG3fi3K+EmPOlrR8rDtBxQHDSN3fSGeNB9CirdTyabTMQCkCup6BXFSQ==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.20.0", + "hermes-parser": "0.20.1", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-babel-transformer/node_modules/hermes-estree": { + "version": "0.20.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.20.1.tgz", + "integrity": "sha512-SQpZK4BzR48kuOg0v4pb3EAGNclzIlqMj3Opu/mu7bbAoFw6oig6cEt/RAi0zTFW/iW6Iz9X9ggGuZTAZ/yZHg==", + "license": "MIT" + }, + "node_modules/metro-babel-transformer/node_modules/hermes-parser": { + "version": "0.20.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.20.1.tgz", + "integrity": "sha512-BL5P83cwCogI8D7rrDCgsFY0tdYUtmFP9XaXtl2IQjC+2Xo+4okjfXintlTxcIwl4qeGddEl28Z11kbVIw0aNA==", + "license": "MIT", + "dependencies": { + "hermes-estree": "0.20.1" + } + }, + "node_modules/metro-cache": { + "version": "0.80.9", + "resolved": "https://registry.npmjs.org/metro-cache/-/metro-cache-0.80.9.tgz", + "integrity": "sha512-ujEdSI43QwI+Dj2xuNax8LMo8UgKuXJEdxJkzGPU6iIx42nYa1byQ+aADv/iPh5sh5a//h5FopraW5voXSgm2w==", + "license": "MIT", + "dependencies": { + "metro-core": "0.80.9", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-cache-key": { + "version": "0.80.9", + "resolved": "https://registry.npmjs.org/metro-cache-key/-/metro-cache-key-0.80.9.tgz", + "integrity": "sha512-hRcYGhEiWIdM87hU0fBlcGr+tHDEAT+7LYNCW89p5JhErFt/QaAkVx4fb5bW3YtXGv5BTV7AspWPERoIb99CXg==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-cache/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/metro-config": { + "version": "0.80.9", + "resolved": "https://registry.npmjs.org/metro-config/-/metro-config-0.80.9.tgz", + "integrity": "sha512-28wW7CqS3eJrunRGnsibWldqgwRP9ywBEf7kg+uzUHkSFJNKPM1K3UNSngHmH0EZjomizqQA2Zi6/y6VdZMolg==", + "license": "MIT", + "dependencies": { + "connect": "^3.6.5", + "cosmiconfig": "^5.0.5", + "jest-validate": "^29.6.3", + "metro": "0.80.9", + "metro-cache": "0.80.9", + "metro-core": "0.80.9", + "metro-runtime": "0.80.9" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-core": { + "version": "0.80.9", + "resolved": "https://registry.npmjs.org/metro-core/-/metro-core-0.80.9.tgz", + "integrity": "sha512-tbltWQn+XTdULkGdzHIxlxk4SdnKxttvQQV3wpqqFbHDteR4gwCyTR2RyYJvxgU7HELfHtrVbqgqAdlPByUSbg==", + "license": "MIT", + "dependencies": { + "lodash.throttle": "^4.1.1", + "metro-resolver": "0.80.9" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-file-map": { + "version": "0.80.9", + "resolved": "https://registry.npmjs.org/metro-file-map/-/metro-file-map-0.80.9.tgz", + "integrity": "sha512-sBUjVtQMHagItJH/wGU9sn3k2u0nrCl0CdR4SFMO1tksXLKbkigyQx4cbpcyPVOAmGTVuy3jyvBlELaGCAhplQ==", + "license": "MIT", + "dependencies": { + "anymatch": "^3.0.3", + "debug": "^2.2.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.4", + "invariant": "^2.2.4", + "jest-worker": "^29.6.3", + "micromatch": "^4.0.4", + "node-abort-controller": "^3.1.1", + "nullthrows": "^1.1.1", + "walker": "^1.0.7" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/metro-file-map/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/metro-file-map/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/metro-minify-terser": { + "version": "0.80.9", + "resolved": "https://registry.npmjs.org/metro-minify-terser/-/metro-minify-terser-0.80.9.tgz", + "integrity": "sha512-FEeCeFbkvvPuhjixZ1FYrXtO0araTpV6UbcnGgDUpH7s7eR5FG/PiJz3TsuuPP/HwCK19cZtQydcA2QrCw446A==", + "license": "MIT", + "dependencies": { + "terser": "^5.15.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-resolver": { + "version": "0.80.9", + "resolved": "https://registry.npmjs.org/metro-resolver/-/metro-resolver-0.80.9.tgz", + "integrity": "sha512-wAPIjkN59BQN6gocVsAvvpZ1+LQkkqUaswlT++cJafE/e54GoVkMNCmrR4BsgQHr9DknZ5Um/nKueeN7kaEz9w==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-runtime": { + "version": "0.80.9", + "resolved": "https://registry.npmjs.org/metro-runtime/-/metro-runtime-0.80.9.tgz", + "integrity": "sha512-8PTVIgrVcyU+X/rVCy/9yxNlvXsBCk5JwwkbAm/Dm+Abo6NBGtNjWF0M1Xo/NWCb4phamNWcD7cHdR91HhbJvg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-source-map": { + "version": "0.80.9", + "resolved": "https://registry.npmjs.org/metro-source-map/-/metro-source-map-0.80.9.tgz", + "integrity": "sha512-RMn+XS4VTJIwMPOUSj61xlxgBvPeY4G6s5uIn6kt6HB6A/k9ekhr65UkkDD7WzHYs3a9o869qU8tvOZvqeQzgw==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.20.0", + "@babel/types": "^7.20.0", + "invariant": "^2.2.4", + "metro-symbolicate": "0.80.9", + "nullthrows": "^1.1.1", + "ob1": "0.80.9", + "source-map": "^0.5.6", + "vlq": "^1.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-source-map/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/metro-symbolicate": { + "version": "0.80.9", + "resolved": "https://registry.npmjs.org/metro-symbolicate/-/metro-symbolicate-0.80.9.tgz", + "integrity": "sha512-Ykae12rdqSs98hg41RKEToojuIW85wNdmSe/eHUgMkzbvCFNVgcC0w3dKZEhSsqQOXapXRlLtHkaHLil0UD/EA==", + "license": "MIT", + "dependencies": { + "invariant": "^2.2.4", + "metro-source-map": "0.80.9", + "nullthrows": "^1.1.1", + "source-map": "^0.5.6", + "through2": "^2.0.1", + "vlq": "^1.0.0" + }, + "bin": { + "metro-symbolicate": "src/index.js" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-symbolicate/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/metro-transform-plugins": { + "version": "0.80.9", + "resolved": "https://registry.npmjs.org/metro-transform-plugins/-/metro-transform-plugins-0.80.9.tgz", + "integrity": "sha512-UlDk/uc8UdfLNJhPbF3tvwajyuuygBcyp+yBuS/q0z3QSuN/EbLllY3rK8OTD9n4h00qZ/qgxGv/lMFJkwP4vg==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.20.0", + "@babel/generator": "^7.20.0", + "@babel/template": "^7.0.0", + "@babel/traverse": "^7.20.0", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-transform-worker": { + "version": "0.80.9", + "resolved": "https://registry.npmjs.org/metro-transform-worker/-/metro-transform-worker-0.80.9.tgz", + "integrity": "sha512-c/IrzMUVnI0hSVVit4TXzt3A1GiUltGVlzCmLJWxNrBGHGrJhvgePj38+GXl1Xf4Fd4vx6qLUkKMQ3ux73bFLQ==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.20.0", + "@babel/generator": "^7.20.0", + "@babel/parser": "^7.20.0", + "@babel/types": "^7.20.0", + "metro": "0.80.9", + "metro-babel-transformer": "0.80.9", + "metro-cache": "0.80.9", + "metro-cache-key": "0.80.9", + "metro-minify-terser": "0.80.9", + "metro-source-map": "0.80.9", + "metro-transform-plugins": "0.80.9", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/metro/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/metro/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "license": "MIT" + }, + "node_modules/metro/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/metro/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/metro/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/metro/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/metro/node_modules/hermes-estree": { + "version": "0.20.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.20.1.tgz", + "integrity": "sha512-SQpZK4BzR48kuOg0v4pb3EAGNclzIlqMj3Opu/mu7bbAoFw6oig6cEt/RAi0zTFW/iW6Iz9X9ggGuZTAZ/yZHg==", + "license": "MIT" + }, + "node_modules/metro/node_modules/hermes-parser": { + "version": "0.20.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.20.1.tgz", + "integrity": "sha512-BL5P83cwCogI8D7rrDCgsFY0tdYUtmFP9XaXtl2IQjC+2Xo+4okjfXintlTxcIwl4qeGddEl28Z11kbVIw0aNA==", + "license": "MIT", + "dependencies": { + "hermes-estree": "0.20.1" + } + }, + "node_modules/metro/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/metro/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/metro/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/metro/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/metro/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/metro/node_modules/ws": { + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", + "license": "MIT", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/micromatch": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", + "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/micromatch/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/minipass-collect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-2.0.1.tgz", + "integrity": "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==", + "license": "ISC", + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-flush/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-flush/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "license": "ISC" + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-pipeline/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-pipeline/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "license": "ISC" + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "license": "MIT", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "license": "ISC" + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "license": "MIT" + }, + "node_modules/mv": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz", + "integrity": "sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==", + "license": "MIT", + "optional": true, + "dependencies": { + "mkdirp": "~0.5.1", + "ncp": "~2.0.0", + "rimraf": "~2.4.0" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/mv/node_modules/glob": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", + "integrity": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", + "optional": true, + "dependencies": { + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "2 || 3", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/mv/node_modules/rimraf": { + "version": "2.4.5", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz", + "integrity": "sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "license": "ISC", + "optional": true, + "dependencies": { + "glob": "^6.0.1" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/ncp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz", + "integrity": "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==", + "license": "MIT", + "optional": true, + "bin": { + "ncp": "bin/ncp" + } + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "license": "MIT" + }, + "node_modules/nested-error-stacks": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.0.1.tgz", + "integrity": "sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==", + "license": "MIT" + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "license": "MIT" + }, + "node_modules/nocache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/nocache/-/nocache-3.0.4.tgz", + "integrity": "sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==", + "license": "MIT", + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/node-abort-controller": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", + "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", + "license": "MIT" + }, + "node_modules/node-dir": { + "version": "0.1.17", + "resolved": "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz", + "integrity": "sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==", + "license": "MIT", + "dependencies": { + "minimatch": "^3.0.2" + }, + "engines": { + "node": ">= 0.10.5" + } + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "license": "MIT" + }, + "node_modules/node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "license": "MIT" + }, + "node_modules/node-stream-zip": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/node-stream-zip/-/node-stream-zip-1.15.0.tgz", + "integrity": "sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/antelle" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-package-arg": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-7.0.0.tgz", + "integrity": "sha512-xXxr8y5U0kl8dVkz2oK7yZjPBvqM2fwaO5l3Yg13p03v8+E3qQcD0JNhHzjL1vyGgxcKkD0cco+NLR72iuPk3g==", + "license": "ISC", + "dependencies": { + "hosted-git-info": "^3.0.2", + "osenv": "^0.1.5", + "semver": "^5.6.0", + "validate-npm-package-name": "^3.0.0" + } + }, + "node_modules/npm-package-arg/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "license": "MIT", + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/nullthrows": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz", + "integrity": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==", + "license": "MIT" + }, + "node_modules/ob1": { + "version": "0.80.9", + "resolved": "https://registry.npmjs.org/ob1/-/ob1-0.80.9.tgz", + "integrity": "sha512-v9yOxowkZbxWhKOaaTyLjIm1aLy4ebMNcSn4NYJKOAI/Qv+SkfEfszpLr2GIxsccmb2Y2HA9qtsqiIJ80ucpVA==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", + "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==", + "license": "MIT", + "dependencies": { + "mimic-fn": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "license": "MIT", + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ora": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/ora/-/ora-3.4.0.tgz", + "integrity": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==", + "license": "MIT", + "dependencies": { + "chalk": "^2.4.2", + "cli-cursor": "^2.1.0", + "cli-spinners": "^2.0.0", + "log-symbols": "^2.2.0", + "strip-ansi": "^5.2.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/osenv": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", + "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", + "deprecated": "This package is no longer supported.", + "license": "ISC", + "dependencies": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "license": "MIT", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", + "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==", + "license": "BlueOak-1.0.0" + }, + "node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "license": "MIT", + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/parse-png": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/parse-png/-/parse-png-2.1.0.tgz", + "integrity": "sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ==", + "license": "MIT", + "dependencies": { + "pngjs": "^3.3.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/password-prompt": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.3.tgz", + "integrity": "sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==", + "license": "0BSD", + "dependencies": { + "ansi-escapes": "^4.3.2", + "cross-spawn": "^7.0.3" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "license": "MIT" + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/paths-js": { + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/paths-js/-/paths-js-0.4.11.tgz", + "integrity": "sha512-3mqcLomDBXOo7Fo+UlaenG6f71bk1ZezPQy2JCmYHy2W2k5VKpP+Jbin9H0bjXynelTbglCqdFhSEkeIkKTYUA==", + "license": "Apache-2.0", + "engines": { + "node": ">=0.11.0" + } + }, + "node_modules/picocolors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", + "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-3.0.1.tgz", + "integrity": "sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "license": "MIT", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "license": "MIT", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "license": "MIT", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-dir/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/plist": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/plist/-/plist-3.1.0.tgz", + "integrity": "sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==", + "license": "MIT", + "dependencies": { + "@xmldom/xmldom": "^0.8.8", + "base64-js": "^1.5.1", + "xmlbuilder": "^15.1.1" + }, + "engines": { + "node": ">=10.4.0" + } + }, + "node_modules/plist/node_modules/@xmldom/xmldom": { + "version": "0.8.10", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz", + "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/plist/node_modules/xmlbuilder": { + "version": "15.1.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz", + "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==", + "license": "MIT", + "engines": { + "node": ">=8.0" + } + }, + "node_modules/pngjs": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz", + "integrity": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==", + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/point-in-polygon": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/point-in-polygon/-/point-in-polygon-1.1.0.tgz", + "integrity": "sha512-3ojrFwjnnw8Q9242TzgXuTD+eKiutbzyslcq1ydfu82Db2y+Ogbmyrkpv0Hgj31qwT3lbS9+QAAO/pIQM35XRw==", + "license": "MIT" + }, + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/postcss": { + "version": "8.4.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.39.tgz", + "integrity": "sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.1", + "source-map-js": "^1.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "license": "MIT", + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/pretty-format/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/pretty-format/node_modules/@types/yargs": { + "version": "15.0.19", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.19.tgz", + "integrity": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/pretty-format/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/pretty-format/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/pretty-format/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/pretty-format/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/pretty-format/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "license": "MIT" + }, + "node_modules/pretty-format/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "license": "MIT" + }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "license": "MIT", + "dependencies": { + "asap": "~2.0.3" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "license": "MIT", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "license": "MIT" + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/qrcode-terminal": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/qrcode-terminal/-/qrcode-terminal-0.11.0.tgz", + "integrity": "sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ==", + "bin": { + "qrcode-terminal": "bin/qrcode-terminal.js" + } + }, + "node_modules/query-string": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-7.1.3.tgz", + "integrity": "sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==", + "license": "MIT", + "dependencies": { + "decode-uri-component": "^0.2.2", + "filter-obj": "^1.1.0", + "split-on-first": "^1.0.0", + "strict-uri-encode": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/querystring": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz", + "integrity": "sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==", + "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", + "license": "MIT", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/queue": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz", + "integrity": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==", + "license": "MIT", + "dependencies": { + "inherits": "~2.0.3" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-devtools-core": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-5.2.0.tgz", + "integrity": "sha512-vZK+/gvxxsieAoAyYaiRIVFxlajb7KXhgBDV7OsoMzaAE+IqGpoxusBjIgq5ibqA2IloKu0p9n7tE68z1xs18A==", + "license": "MIT", + "dependencies": { + "shell-quote": "^1.6.1", + "ws": "^7" + } + }, + "node_modules/react-devtools-core/node_modules/ws": { + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", + "license": "MIT", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/react-freeze": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/react-freeze/-/react-freeze-1.0.4.tgz", + "integrity": "sha512-r4F0Sec0BLxWicc7HEyo2x3/2icUTrRmDjaaRyzzn+7aDyFZliszMDOgLVwSnQnYENOlL1o569Ze2HZefk8clA==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "react": ">=17.0.0" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, + "node_modules/react-native": { + "version": "0.74.3", + "resolved": "https://registry.npmjs.org/react-native/-/react-native-0.74.3.tgz", + "integrity": "sha512-UFutCC6WEw6HkxlcpQ2BemKqi0JkwrgDchYB5Svi8Sp4Xwt4HA6LGEjNQgZ+3KM44bjyFRpofQym0uh0jACGng==", + "license": "MIT", + "dependencies": { + "@jest/create-cache-key-function": "^29.6.3", + "@react-native-community/cli": "13.6.9", + "@react-native-community/cli-platform-android": "13.6.9", + "@react-native-community/cli-platform-ios": "13.6.9", + "@react-native/assets-registry": "0.74.85", + "@react-native/codegen": "0.74.85", + "@react-native/community-cli-plugin": "0.74.85", + "@react-native/gradle-plugin": "0.74.85", + "@react-native/js-polyfills": "0.74.85", + "@react-native/normalize-colors": "0.74.85", + "@react-native/virtualized-lists": "0.74.85", + "abort-controller": "^3.0.0", + "anser": "^1.4.9", + "ansi-regex": "^5.0.0", + "base64-js": "^1.5.1", + "chalk": "^4.0.0", + "event-target-shim": "^5.0.1", + "flow-enums-runtime": "^0.0.6", + "invariant": "^2.2.4", + "jest-environment-node": "^29.6.3", + "jsc-android": "^250231.0.0", + "memoize-one": "^5.0.0", + "metro-runtime": "^0.80.3", + "metro-source-map": "^0.80.3", + "mkdirp": "^0.5.1", + "nullthrows": "^1.1.1", + "pretty-format": "^26.5.2", + "promise": "^8.3.0", + "react-devtools-core": "^5.0.0", + "react-refresh": "^0.14.0", + "react-shallow-renderer": "^16.15.0", + "regenerator-runtime": "^0.13.2", + "scheduler": "0.24.0-canary-efb381bbf-20230505", + "stacktrace-parser": "^0.1.10", + "whatwg-fetch": "^3.0.0", + "ws": "^6.2.2", + "yargs": "^17.6.2" + }, + "bin": { + "react-native": "cli.js" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/react": "^18.2.6", + "react": "18.2.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-native-chart-kit": { + "version": "6.12.0", + "resolved": "https://registry.npmjs.org/react-native-chart-kit/-/react-native-chart-kit-6.12.0.tgz", + "integrity": "sha512-nZLGyCFzZ7zmX0KjYeeSV1HKuPhl1wOMlTAqa0JhlyW62qV/1ZPXHgT8o9s8mkFaGxdqbspOeuaa6I9jUQDgnA==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.13", + "paths-js": "^0.4.10", + "point-in-polygon": "^1.0.1" + }, + "peerDependencies": { + "react": "> 16.7.0", + "react-native": ">= 0.50.0", + "react-native-svg": "> 6.4.1" + } + }, + "node_modules/react-native-dotenv": { + "version": "3.4.11", + "resolved": "https://registry.npmjs.org/react-native-dotenv/-/react-native-dotenv-3.4.11.tgz", + "integrity": "sha512-6vnIE+WHABSeHCaYP6l3O1BOEhWxKH6nHAdV7n/wKn/sciZ64zPPp2NUdEUf1m7g4uuzlLbjgr+6uDt89q2DOg==", + "license": "MIT", + "dependencies": { + "dotenv": "^16.4.5" + }, + "peerDependencies": { + "@babel/runtime": "^7.20.6" + } + }, + "node_modules/react-native-gesture-handler": { + "version": "2.17.0", + "resolved": "https://registry.npmjs.org/react-native-gesture-handler/-/react-native-gesture-handler-2.17.0.tgz", + "integrity": "sha512-FzEOlLTo83OEBnCKwgwQTnsnlVHMVHu6xRNrxHpPRllfSBlpfyHCn2ezzDA6/k7ec2ooltU+3IIQSRiamHwHNA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@egjs/hammerjs": "^2.0.17", + "hoist-non-react-statics": "^3.3.0", + "invariant": "^2.2.4", + "prop-types": "^15.7.2" + }, + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-paper": { + "version": "5.12.3", + "resolved": "https://registry.npmjs.org/react-native-paper/-/react-native-paper-5.12.3.tgz", + "integrity": "sha512-nH1e1pGPE/aOE5YR2GRX7CfMHFA9cAfrAfgCtwL4amJPDZCoVjc5yt2VDiUE1rT+JUfk0qdICMP3UggxvjMgug==", + "license": "MIT", + "dependencies": { + "@callstack/react-theme-provider": "^3.0.9", + "color": "^3.1.2", + "use-latest-callback": "^0.1.5" + }, + "peerDependencies": { + "react": "*", + "react-native": "*", + "react-native-safe-area-context": "*", + "react-native-vector-icons": "*" + } + }, + "node_modules/react-native-paper/node_modules/color": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", + "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.3", + "color-string": "^1.6.0" + } + }, + "node_modules/react-native-safe-area-context": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/react-native-safe-area-context/-/react-native-safe-area-context-4.10.5.tgz", + "integrity": "sha512-Wyb0Nqw2XJ6oZxW/cK8k5q7/UAhg/wbEG6UVf89rQqecDZTDA5ic//P9J6VvJRVZerzGmxWQpVuM7f+PRYUM4g==", + "license": "MIT", + "peer": true, + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-screens": { + "version": "3.32.0", + "resolved": "https://registry.npmjs.org/react-native-screens/-/react-native-screens-3.32.0.tgz", + "integrity": "sha512-wybqZAHX7v8ipOXhh90CqGLkBHw5JYqKNRBX7R/b0c2WQisTOgu0M0yGwBMM6LyXRBT+4k3NTGHdDbpJVpq0yQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "react-freeze": "^1.0.0", + "warn-once": "^0.1.0" + }, + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-svg": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/react-native-svg/-/react-native-svg-15.2.0.tgz", + "integrity": "sha512-R0E6IhcJfVLsL0lRmnUSm72QO+mTqcAOM5Jb8FVGxJqX3NfJMlMP0YyvcajZiaRR8CqQUpEoqrY25eyZb006kw==", + "license": "MIT", + "dependencies": { + "css-select": "^5.1.0", + "css-tree": "^1.1.3" + }, + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-vector-icons": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/react-native-vector-icons/-/react-native-vector-icons-10.1.0.tgz", + "integrity": "sha512-fdQjCHIdoXmRoTZ5gvN1FmT4sGLQ2wmQiNZHKJQUYnE2tkIwjGnxNch+6Nd4lHAACvMWO7LOzBNot2u/zlOmkw==", + "license": "MIT", + "dependencies": { + "prop-types": "^15.7.2", + "yargs": "^16.1.1" + }, + "bin": { + "fa-upgrade.sh": "bin/fa-upgrade.sh", + "fa5-upgrade": "bin/fa5-upgrade.sh", + "fa6-upgrade": "bin/fa6-upgrade.sh", + "generate-icon": "bin/generate-icon.js" + } + }, + "node_modules/react-native-vector-icons/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/react-native-vector-icons/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-native-vector-icons/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "license": "MIT", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-native-vector-icons/node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/react-native/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/react-native/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/react-native/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/react-native/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/react-native/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/react-native/node_modules/promise": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "license": "MIT", + "dependencies": { + "asap": "~2.0.6" + } + }, + "node_modules/react-native/node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "license": "MIT" + }, + "node_modules/react-native/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-native/node_modules/ws": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz", + "integrity": "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==", + "license": "MIT", + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/react-navigation": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/react-navigation/-/react-navigation-5.0.0.tgz", + "integrity": "sha512-ACTzjc4L1ik7rJ092ZhIELBJ/pnoLgRIqWHSKcYcaBASxyjJCgBEDIV5s585HBj55tw25YwNdlj3+d4B4MYWDg==", + "deprecated": "This package is no longer supported. Please use @react-navigation/native instead. See https://reactnavigation.org/docs/getting-started/ for usage guide", + "license": "MIT" + }, + "node_modules/react-refresh": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", + "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-shallow-renderer": { + "version": "16.15.0", + "resolved": "https://registry.npmjs.org/react-shallow-renderer/-/react-shallow-renderer-16.15.0.tgz", + "integrity": "sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==", + "license": "MIT", + "dependencies": { + "object-assign": "^4.1.1", + "react-is": "^16.12.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependencies": { + "react": "^16.0.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readline": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/readline/-/readline-1.3.0.tgz", + "integrity": "sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==", + "license": "BSD" + }, + "node_modules/recast": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.21.5.tgz", + "integrity": "sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==", + "license": "MIT", + "dependencies": { + "ast-types": "0.15.2", + "esprima": "~4.0.0", + "source-map": "~0.6.1", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/recast/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "license": "MIT" + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", + "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", + "license": "MIT", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", + "license": "MIT" + }, + "node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "license": "MIT", + "dependencies": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "license": "BSD-2-Clause", + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/remove-trailing-slash": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/remove-trailing-slash/-/remove-trailing-slash-0.1.1.tgz", + "integrity": "sha512-o4S4Qh6L2jpnCy83ysZDau+VORNvnFw07CKSAymkd6ICNVEPisMyzlc00KlvvicsxKck94SEwhDnMNdICzO+tA==", + "license": "MIT" + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "license": "ISC" + }, + "node_modules/requireg": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/requireg/-/requireg-0.2.2.tgz", + "integrity": "sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==", + "dependencies": { + "nested-error-stacks": "~2.0.1", + "rc": "~1.2.7", + "resolve": "~1.7.1" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/requireg/node_modules/resolve": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz", + "integrity": "sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==", + "license": "MIT", + "dependencies": { + "path-parse": "^1.0.5" + } + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==", + "license": "MIT", + "dependencies": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-array-concat/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "license": "MIT" + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" + }, + "node_modules/safe-json-stringify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz", + "integrity": "sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==", + "license": "MIT", + "optional": true + }, + "node_modules/safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/sax": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz", + "integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==", + "license": "ISC" + }, + "node_modules/scheduler": { + "version": "0.24.0-canary-efb381bbf-20230505", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.24.0-canary-efb381bbf-20230505.tgz", + "integrity": "sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/selfsigned": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", + "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", + "license": "MIT", + "dependencies": { + "@types/node-forge": "^1.3.0", + "node-forge": "^1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/send/node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/send/node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/send/node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/serialize-error": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-2.1.0.tgz", + "integrity": "sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "license": "MIT", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "license": "ISC" + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "license": "MIT" + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "license": "MIT", + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "license": "ISC" + }, + "node_modules/simple-plist": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/simple-plist/-/simple-plist-1.3.1.tgz", + "integrity": "sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==", + "license": "MIT", + "dependencies": { + "bplist-creator": "0.1.0", + "bplist-parser": "0.3.1", + "plist": "^3.0.5" + } + }, + "node_modules/simple-plist/node_modules/bplist-creator": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.1.0.tgz", + "integrity": "sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==", + "license": "MIT", + "dependencies": { + "stream-buffers": "2.2.x" + } + }, + "node_modules/simple-plist/node_modules/bplist-parser": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.1.tgz", + "integrity": "sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==", + "license": "MIT", + "dependencies": { + "big-integer": "1.6.x" + }, + "engines": { + "node": ">= 5.10.0" + } + }, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/simple-swizzle/node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "license": "MIT" + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "license": "MIT" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", + "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.0", + "astral-regex": "^1.0.0", + "is-fullwidth-code-point": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/slugify": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", + "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==", + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 8" + } + }, + "node_modules/source-map-js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", + "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", + "license": "MIT", + "dependencies": { + "through": "2" + }, + "engines": { + "node": "*" + } + }, + "node_modules/split-on-first": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz", + "integrity": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "license": "BSD-3-Clause" + }, + "node_modules/ssri": { + "version": "10.0.6", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.6.tgz", + "integrity": "sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==", + "license": "ISC", + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", + "license": "MIT" + }, + "node_modules/stacktrace-parser": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz", + "integrity": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==", + "license": "MIT", + "dependencies": { + "type-fest": "^0.7.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/stacktrace-parser/node_modules/type-fest": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz", + "integrity": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=8" + } + }, + "node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/stream-buffers": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/stream-buffers/-/stream-buffers-2.2.0.tgz", + "integrity": "sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==", + "license": "Unlicense", + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/strict-uri-encode": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz", + "integrity": "sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", + "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", + "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strnum": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", + "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==", + "license": "MIT" + }, + "node_modules/structured-headers": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/structured-headers/-/structured-headers-0.4.1.tgz", + "integrity": "sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==", + "license": "MIT" + }, + "node_modules/sucrase": { + "version": "3.34.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.34.0.tgz", + "integrity": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "7.1.6", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sucrase/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/sucrase/node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sudo-prompt": { + "version": "8.2.5", + "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz", + "integrity": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==", + "license": "MIT" + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-hyperlinks": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tar": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", + "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", + "license": "ISC", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar/node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/tar/node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tar/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "license": "ISC", + "engines": { + "node": ">=8" + } + }, + "node_modules/tar/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "license": "ISC" + }, + "node_modules/temp": { + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/temp/-/temp-0.8.4.tgz", + "integrity": "sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==", + "license": "MIT", + "dependencies": { + "rimraf": "~2.6.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/temp/node_modules/rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/tempy": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.7.1.tgz", + "integrity": "sha512-vXPxwOyaNVi9nyczO16mxmHGpl6ASC5/TVhRRHpqeYHvKQm58EaWNvZXxAhR0lYYnBOQFjXjhzeLsaXdjxLjRg==", + "license": "MIT", + "dependencies": { + "del": "^6.0.0", + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", + "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser": { + "version": "5.31.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.1.tgz", + "integrity": "sha512-37upzU1+viGvuFtBo9NPufCb9dwM0+l9hMxYyWfBA+fbwrPqNJAhbZ6W47bBFnZHKHTUBnMvi87434qq+qnxOg==", + "license": "BSD-2-Clause", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "license": "MIT" + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "license": "MIT" + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "license": "MIT", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/throat": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", + "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==", + "license": "MIT" + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "license": "MIT" + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "license": "MIT", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "license": "MIT", + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "license": "BSD-3-Clause" + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "license": "MIT" + }, + "node_modules/traverse": { + "version": "0.6.9", + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.9.tgz", + "integrity": "sha512-7bBrcF+/LQzSgFmT0X5YclVqQxtv7TDJ1f8Wj7ibBu/U6BMLeOpUxuZjV7rMc44UtKxlnMFigdhFAIszSX1DMg==", + "license": "MIT", + "dependencies": { + "gopd": "^1.0.1", + "typedarray.prototype.slice": "^1.0.3", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/trim-right": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", + "integrity": "sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "license": "Apache-2.0" + }, + "node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "license": "0BSD" + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", + "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", + "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typedarray.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typedarray.prototype.slice/-/typedarray.prototype.slice-1.0.3.tgz", + "integrity": "sha512-8WbVAQAUlENo1q3c3zZYuy5k9VzBQvp8AX9WOtbvyWlLM1v5JaSRmjubLjzHF4JFtptjH/5c/i95yaElvcjC0A==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-errors": "^1.3.0", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-offset": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", + "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/ua-parser-js": { + "version": "1.0.38", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.38.tgz", + "integrity": "sha512-Aq5ppTOfvrCMgAPneW1HfWj66Xi7XL+/mIy996R1/CLS/rcyJQm6QZdsKrUeivDFQ+Oc9Wyuwor8Ze8peEoUoQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/ua-parser-js" + }, + { + "type": "paypal", + "url": "https://paypal.me/faisalman" + }, + { + "type": "github", + "url": "https://github.com/sponsors/faisalman" + } + ], + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "license": "MIT", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unique-filename": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz", + "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==", + "license": "ISC", + "dependencies": { + "unique-slug": "^4.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/unique-slug": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz", + "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==", + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "license": "MIT", + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz", + "integrity": "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.1.2", + "picocolors": "^1.0.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/url-join": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.0.tgz", + "integrity": "sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA==", + "license": "MIT" + }, + "node_modules/use-latest-callback": { + "version": "0.1.9", + "resolved": "https://registry.npmjs.org/use-latest-callback/-/use-latest-callback-0.1.9.tgz", + "integrity": "sha512-CL/29uS74AwreI/f2oz2hLTW7ZqVeV5+gxFeGudzQrgkCytrHw33G4KbnQOrRlAEzzAFXi7dDLMC9zhWcVpzmw==", + "license": "MIT", + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "license": "MIT" + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/valid-url": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz", + "integrity": "sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==" + }, + "node_modules/validate-npm-package-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz", + "integrity": "sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==", + "license": "ISC", + "dependencies": { + "builtins": "^1.0.3" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vlq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/vlq/-/vlq-1.0.1.tgz", + "integrity": "sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==", + "license": "MIT" + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "license": "Apache-2.0", + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/warn-once": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/warn-once/-/warn-once-0.1.1.tgz", + "integrity": "sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==", + "license": "MIT" + }, + "node_modules/wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "license": "MIT", + "dependencies": { + "defaults": "^1.0.3" + } + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "license": "BSD-2-Clause" + }, + "node_modules/whatwg-fetch": { + "version": "3.6.20", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", + "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==", + "license": "MIT" + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/whatwg-url-without-unicode": { + "version": "8.0.0-3", + "resolved": "https://registry.npmjs.org/whatwg-url-without-unicode/-/whatwg-url-without-unicode-8.0.0-3.tgz", + "integrity": "sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig==", + "license": "MIT", + "dependencies": { + "buffer": "^5.4.3", + "punycode": "^2.1.1", + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/whatwg-url-without-unicode/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "license": "MIT", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-module": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", + "license": "ISC" + }, + "node_modules/which-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/wonka": { + "version": "4.0.15", + "resolved": "https://registry.npmjs.org/wonka/-/wonka-4.0.15.tgz", + "integrity": "sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg==", + "license": "MIT" + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "license": "ISC" + }, + "node_modules/write-file-atomic": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", + "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", + "license": "ISC", + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "node_modules/ws": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", + "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xcode": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/xcode/-/xcode-3.0.1.tgz", + "integrity": "sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==", + "license": "Apache-2.0", + "dependencies": { + "simple-plist": "^1.1.0", + "uuid": "^7.0.3" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/xcode/node_modules/uuid": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-7.0.3.tgz", + "integrity": "sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==", + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/xml2js": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.6.0.tgz", + "integrity": "sha512-eLTh0kA8uHceqesPqSE+VvO1CDDJWMwlQfB6LuN6T8w6MaDJ8Txm8P7s5cHD0miF0V+GGTZrDQfxPZQVsur33w==", + "license": "MIT", + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/xml2js/node_modules/xmlbuilder": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", + "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", + "license": "MIT", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/xmlbuilder": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-14.0.0.tgz", + "integrity": "sha512-ts+B2rSe4fIckR6iquDjsKbQFK2NlUk6iG5nf14mDEyldgoc2nEKZ3jZWMPTxGQwVgToSjt6VGIho1H8/fNFTg==", + "license": "MIT", + "engines": { + "node": ">=8.0" + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "license": "MIT", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "license": "ISC" + }, + "node_modules/yaml": { + "version": "2.4.5", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.5.tgz", + "integrity": "sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==", + "license": "ISC", + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "3.23.8", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz", + "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/zod-validation-error": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-2.1.0.tgz", + "integrity": "sha512-VJh93e2wb4c3tWtGgTa0OF/dTt/zoPCPzXq4V11ZjxmEAFaPi/Zss1xIZdEB5RD8GD00U0/iVXgqkF77RV7pdQ==", + "license": "MIT", + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "zod": "^3.18.0" + } + } + } +} diff --git a/vote-block-skripsi/my-app/package.json b/vote-block-skripsi/my-app/package.json new file mode 100644 index 0000000..fffde5a --- /dev/null +++ b/vote-block-skripsi/my-app/package.json @@ -0,0 +1,40 @@ +{ + "name": "my-app", + "version": "1.0.0", + "main": "expo/AppEntry.js", + "scripts": { + "start": "expo start", + "android": "expo start --android", + "ios": "expo start --ios", + "web": "expo start --web" + }, + "dependencies": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/shims": "^5.7.0", + "@react-native-async-storage/async-storage": "^1.23.1", + "@react-navigation/bottom-tabs": "^6.5.20", + "@react-navigation/native": "^6.1.17", + "@react-navigation/stack": "^6.3.29", + "axios": "^1.7.2", + "ethers": "^6.13.1", + "expo": "~51.0.20", + "expo-file-system": "~17.0.1", + "expo-image-picker": "^15.0.7", + "expo-status-bar": "~1.12.1", + "react": "^18.2.0", + "react-native": "^0.74.3", + "react-native-chart-kit": "^6.12.0", + "react-native-dotenv": "^3.4.11", + "react-native-paper": "^5.12.3", + "react-native-svg": "^15.2.0", + "react-native-vector-icons": "^10.1.0", + "react-navigation": "^5.0.0" + }, + "devDependencies": { + "@babel/core": "^7.20.0", + "@types/react": "~18.2.45", + "@types/react-native-vector-icons": "^6.4.18", + "typescript": "~5.3.3" + }, + "private": true +} diff --git a/vote-block-skripsi/my-app/src/component/PieChart.tsx b/vote-block-skripsi/my-app/src/component/PieChart.tsx new file mode 100644 index 0000000..6ae0ed0 --- /dev/null +++ b/vote-block-skripsi/my-app/src/component/PieChart.tsx @@ -0,0 +1,72 @@ +import React from 'react'; +import { View, Text, StyleSheet, Dimensions } from 'react-native'; +import { PieChart } from 'react-native-chart-kit'; +import { PieChartComponentProps } from '../types/app'; + +const screenWidth = Dimensions.get('window').width; + +const PieChartComponent: React.FC = ({ data }) => { + return ( + + `rgba(255, 255, 255, ${opacity})`, + style: { + borderRadius: 16, + } + }} + accessor="population" + backgroundColor="transparent" + paddingLeft="90" + hasLegend={false} + absolute + /> + + {data.map((item, index) => ( + + + + {item.population}{item.name} + + + ))} + + + ); +}; + +const styles = StyleSheet.create({ + container: { + alignItems: 'center', + marginVertical: 20, + }, + legendContainer: { + flexDirection: 'row', + flexWrap: 'wrap', + justifyContent: 'center', + marginTop: 10, + }, + legendItem: { + flexDirection: 'row', + alignItems: 'center', + margin: 5, + }, + legendColor: { + width: 16, + height: 16, + borderRadius: 8, + marginRight: 5, + }, + legendText: { + fontSize: 12, + }, +}); + +export default PieChartComponent; diff --git a/vote-block-skripsi/my-app/src/helper/ElectionContext.tsx b/vote-block-skripsi/my-app/src/helper/ElectionContext.tsx new file mode 100644 index 0000000..0ed31ff --- /dev/null +++ b/vote-block-skripsi/my-app/src/helper/ElectionContext.tsx @@ -0,0 +1,51 @@ +import React, { createContext, useState, useContext, useEffect, ReactNode } from 'react'; +import { API_URL } from '@env'; +import { Candidate, ElectionContextProps } from '../types/app'; + +const ElectionContext = createContext(undefined); + +export const useElection = (): ElectionContextProps => { + const context = useContext(ElectionContext); + if (!context) { + throw new Error('useElection must be used within an ElectionProvider'); + } + return context; +}; + +interface ElectionProviderProps { + children: ReactNode; +} + +export const ElectionProvider: React.FC = ({ children }) => { + const [candidates, setCandidates] = useState([]); + + useEffect(() => { + const fetchCandidates = async () => { + try { + const response = await fetch(`${API_URL}/candidates`); + const data = await response.json(); + setCandidates(data.candidates); + } catch (error) { + console.error('Error fetching candidates:', error); + } + }; + + fetchCandidates(); + }, [candidates]); + + const updateCandidates = async () => { + try { + const response = await fetch(`${API_URL}/candidates`); + const data = await response.json(); + setCandidates(data.candidates); + } catch (error) { + console.error('Error fetching candidates:', error); + } + }; + + return ( + + {children} + + ); +}; diff --git a/vote-block-skripsi/my-app/src/navigations/admin/AdminTabNavigator.tsx b/vote-block-skripsi/my-app/src/navigations/admin/AdminTabNavigator.tsx new file mode 100644 index 0000000..50639d7 --- /dev/null +++ b/vote-block-skripsi/my-app/src/navigations/admin/AdminTabNavigator.tsx @@ -0,0 +1,44 @@ +import React from 'react'; +import { createBottomTabNavigator } from '@react-navigation/bottom-tabs'; +import VoterScreen from '../../screens/admin/VoterScreen'; +import CandidateScreen from '../../screens/admin/CandidateScreen'; +import VoteCountScreen from '../../screens/admin/VoteCountScreen'; +import Icon from 'react-native-vector-icons/FontAwesome'; +import VoterStackNavigation from './VoterStackNavigation'; +import CandidateStackNavigation from './CandidateStackNavigation'; + +const Tab = createBottomTabNavigator(); + +const AdminTabNavigator = () => { + return ( + ({ + tabBarIcon: ({ color, size }) => { + let iconName: string; + + if (route.name === 'Voter') { + iconName = 'users'; + } else if (route.name === 'Candidate') { + iconName = 'user'; + } else if (route.name === 'Vote Count') { + iconName = 'bar-chart'; + } else { + // Default value to avoid undefined + iconName = 'circle'; + } + + return ; + }, + tabBarActiveTintColor: '#EC8638', + tabBarInactiveTintColor: 'gray', + headerShown: false, + })} + > + + + + + ); +}; + +export default AdminTabNavigator; diff --git a/vote-block-skripsi/my-app/src/navigations/admin/CandidateStackNavigation.tsx b/vote-block-skripsi/my-app/src/navigations/admin/CandidateStackNavigation.tsx new file mode 100644 index 0000000..cdda500 --- /dev/null +++ b/vote-block-skripsi/my-app/src/navigations/admin/CandidateStackNavigation.tsx @@ -0,0 +1,29 @@ +import React from 'react'; +import { createStackNavigator } from '@react-navigation/stack'; +import CandidateScreen from '../../screens/admin/CandidateScreen'; +import ValidCandidate from '../../screens/admin/ValidCandidate'; +import CandidateHistory from '../../screens/admin/CandidateHistory'; + +const Stack = createStackNavigator(); + +function CandidateStackNavigation(): JSX.Element { + return ( + + + + + + ); +} + +export default CandidateStackNavigation; diff --git a/vote-block-skripsi/my-app/src/navigations/admin/VoterStackNavigation.tsx b/vote-block-skripsi/my-app/src/navigations/admin/VoterStackNavigation.tsx new file mode 100644 index 0000000..f631250 --- /dev/null +++ b/vote-block-skripsi/my-app/src/navigations/admin/VoterStackNavigation.tsx @@ -0,0 +1,29 @@ +import React from 'react'; +import { createStackNavigator } from '@react-navigation/stack'; +import VoterScreen from '../../screens/admin/VoterScreen'; +import ValidVoter from '../../screens/admin/ValidVoter'; +import VoterHistory from '../../screens/admin/VoterHistory'; + +const Stack = createStackNavigator(); + +function VoterStackNavigation(): JSX.Element { + return ( + + + + + + ); +} + +export default VoterStackNavigation; diff --git a/vote-block-skripsi/my-app/src/navigations/user/BottomTabNavigator.tsx b/vote-block-skripsi/my-app/src/navigations/user/BottomTabNavigator.tsx new file mode 100644 index 0000000..547b1ee --- /dev/null +++ b/vote-block-skripsi/my-app/src/navigations/user/BottomTabNavigator.tsx @@ -0,0 +1,44 @@ +import React from 'react'; +import { createBottomTabNavigator } from '@react-navigation/bottom-tabs'; +import Icon from 'react-native-vector-icons/FontAwesome'; +import HomeTabScreen from '../../screens/user/HomeTabScreen'; +import VoteTabScreen from '../../screens/user/VoteTabScreen'; + +const Tab = createBottomTabNavigator(); + +const BottomTabNavigator = () => { + return ( + ({ + tabBarIcon: ({ color, size }) => { + let iconName: string; + + if (route.name === 'HomeTab') { + iconName = 'home'; + } else if (route.name === 'VoteTab') { + iconName = 'thumbs-up'; + } else { + iconName = 'question'; // Default icon if route name doesn't match + } + + return ; + }, + tabBarActiveTintColor: '#EC8638', + tabBarInactiveTintColor: 'gray', + })} + > + + + + ); +}; + +export default BottomTabNavigator; diff --git a/vote-block-skripsi/my-app/src/navigations/user/StackNavigator.tsx b/vote-block-skripsi/my-app/src/navigations/user/StackNavigator.tsx new file mode 100644 index 0000000..196b97b --- /dev/null +++ b/vote-block-skripsi/my-app/src/navigations/user/StackNavigator.tsx @@ -0,0 +1,34 @@ +import React from 'react'; +import { NavigationContainer } from '@react-navigation/native'; +import { createStackNavigator } from '@react-navigation/stack'; +import LoginScreen from '../../screens/user/LoginScreen'; +import HomeScreen from '../../screens/user/HomeScreen'; +import AdminScreen from '../../screens/admin/AdminScreen'; +import ProfileScreen from '../../screens/user/ProfileScreen'; +import AdminTabNavigator from '../admin/AdminTabNavigator'; +import VoterStackNavigation from '../admin/VoterStackNavigation'; + +export type RootStackParamList = { + Login: undefined; + Home: { user: { userId: string; name: string; token: string } }; + //Admin: undefined; + Profile: { userId: string }; + Admin: undefined; +}; + +const Stack = createStackNavigator(); + +const StackNavigator = () => { + return ( + + + + + + + + + ); +}; + +export default StackNavigator; diff --git a/vote-block-skripsi/my-app/src/screens/admin/AdminScreen.tsx b/vote-block-skripsi/my-app/src/screens/admin/AdminScreen.tsx new file mode 100644 index 0000000..79e72eb --- /dev/null +++ b/vote-block-skripsi/my-app/src/screens/admin/AdminScreen.tsx @@ -0,0 +1,115 @@ +import React, { useEffect, useLayoutEffect, useState } from 'react'; +import { View, Image, Text, StyleSheet, TouchableOpacity, BackHandler, Alert } from 'react-native'; +import AsyncStorage from '@react-native-async-storage/async-storage'; +import { StackNavigationProp } from '@react-navigation/stack'; +import { RootStackParamList } from '../../navigations/user/StackNavigator'; +import { useNavigation } from '@react-navigation/native'; +import Icon from 'react-native-vector-icons/FontAwesome'; +import AdminTabNavigator from '../../navigations/admin/AdminTabNavigator'; +import { Menu, Provider, Button } from 'react-native-paper'; + +type AdminScreenNavigationProp = StackNavigationProp; + +type Props = { + navigation: AdminScreenNavigationProp; +}; + +const AdminScreen: React.FC = ({ navigation }) => { + const [menuVisible, setMenuVisible] = useState(false); + + const openMenu = () => setMenuVisible(true); + const closeMenu = () => setMenuVisible(false); + + const handleLogout = async () => { + await AsyncStorage.removeItem('token'); + await AsyncStorage.removeItem('userId'); + navigation.navigate('Login'); + closeMenu(); + }; + + useEffect(() => { + const backAction = () => { + Alert.alert("Hold on!", "Are you sure you want to exit the app?", [ + { + text: "Cancel", + onPress: () => null, + style: "cancel" + }, + { text: "YES", onPress: () => BackHandler.exitApp() } + ]); + return true; + }; + + const backHandler = BackHandler.addEventListener( + "hardwareBackPress", + backAction + ); + + return () => backHandler.remove(); + }, []); + + useLayoutEffect(() => { + navigation.setOptions({ + headerRight: () => ( + + + + } + > + + + ), + headerLeft: () => null, // This removes the back button + }); + }, [navigation, menuVisible]); + + return ( + + + + + + + + } + > + + + + + + + ); +}; + +const styles = StyleSheet.create({ + header: { + flexDirection: 'row', + justifyContent: 'space-between', + alignItems: 'center', + padding: 16, + backgroundColor: '#EC8638', + }, + logo: { + width: 250, + height: 43, + resizeMode: 'contain' + }, + headerText: { + fontSize: 20, + fontWeight: 'bold', + }, + profileIcon: { + padding: 8, + }, +}); + +export default AdminScreen; diff --git a/vote-block-skripsi/my-app/src/screens/admin/CandidateHistory.tsx b/vote-block-skripsi/my-app/src/screens/admin/CandidateHistory.tsx new file mode 100644 index 0000000..c23c774 --- /dev/null +++ b/vote-block-skripsi/my-app/src/screens/admin/CandidateHistory.tsx @@ -0,0 +1,150 @@ +import React, { useEffect, useState } from 'react'; +import { View, Text, StyleSheet, FlatList, ActivityIndicator, TextInput } from 'react-native'; +import axios from 'axios'; +import { BigNumber } from '@ethersproject/bignumber'; +import { API_URL } from '@env'; +import { CandidateHistory, BigNumberType } from '../../types/app'; + +const CandidateHistoryScreen = () => { + const [candidateHistoryData, setCandidateHistoryData] = useState([]); + const [filteredData, setFilteredData] = useState([]); + const [loading, setLoading] = useState(false); + const [error, setError] = useState(null); + const [searchQuery, setSearchQuery] = useState(''); + + useEffect(() => { + fetchCandidateHistories(); + }, []); + + useEffect(() => { + handleSearch(searchQuery); + }, [candidateHistoryData, searchQuery]); + + const fetchCandidateHistories = async () => { + setLoading(true); + setError(null); + try { + const response = await axios.get(`${API_URL}/all-candidate-histories`); + const sortedData = response.data.sort((a, b) => { + const lastUpdatedA = BigNumber.from((a[4] as BigNumberType)?.hex || 0).toNumber(); + const lastUpdatedB = BigNumber.from((b[4] as BigNumberType)?.hex || 0).toNumber(); + return lastUpdatedB - lastUpdatedA; + }); + console.log('Candidate Histories:', sortedData); + setCandidateHistoryData(sortedData); + setFilteredData(sortedData); // Initialize filtered data + } catch (error) { + if (axios.isAxiosError(error)) { + setError(error.message); + } else { + setError(String(error)); + } + } finally { + setLoading(false); + } + }; + + const formatDateTime = (timestamp: string) => { + if (!timestamp) return 'Invalid date'; + try { + const unixTimestamp = BigNumber.from(timestamp).toNumber(); + const dateObj = new Date(unixTimestamp * 1000); + return dateObj.toLocaleString(); + } catch (error) { + return 'Invalid date'; + } + }; + + const renderItem = ({ item }: { item: CandidateHistory }) => { + const [id, name, visi, misi, voteCount, lastUpdated, transactionHash, blockNumber] = item; + + return ( + + ID: {BigNumber.from(id.hex).toString()} + Block Number: {BigNumber.from(blockNumber.hex).toString()} + Name: {name} + Visi: {visi} + Misi: {misi} + Last Updated: {lastUpdated ? formatDateTime(lastUpdated.hex) : 'Invalid date'} + Hash: {transactionHash.toString()} + + ); + }; + + const handleSearch = (text: string) => { + setSearchQuery(text); + if (text === '') { + setFilteredData(candidateHistoryData); + } else { + const filtered = candidateHistoryData.filter(item => { + const [id, name, visi, misi] = item; + return ( + name.toLowerCase().includes(text.toLowerCase()) || + BigNumber.from(id.hex).toString().includes(text) || + visi.toLowerCase().includes(text.toLowerCase()) || + misi.toLowerCase().includes(text.toLowerCase()) + ); + }); + setFilteredData(filtered); + } + }; + + const keyExtractor = (item: CandidateHistory) => { + const [id, name, visi, misi, lastUpdated] = item; + return `${BigNumber.from(id.hex).toString()}-${name}-${visi}-${misi}-${BigNumber.from(lastUpdated.hex).toString()}`; + }; + + return ( + + + {loading ? ( + + ) : error ? ( + Error: {error} + ) : ( + + )} + + ); +}; + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: '#fff', + }, + item: { + backgroundColor: '#f9f9f9', + padding: 16, + marginVertical: 8, + borderRadius: 8, + shadowColor: '#000', + shadowOffset: { width: 0, height: 1 }, + shadowOpacity: 0.1, + shadowRadius: 1, + }, + searchBar: { + height: 40, + borderColor: '#EC8638', + borderWidth: 1, + marginBottom: 16, + paddingHorizontal: 8, + borderRadius: 8, + }, + errorText: { + color: 'red', + textAlign: 'center', + marginVertical: 16, + }, +}); + +export default CandidateHistoryScreen; diff --git a/vote-block-skripsi/my-app/src/screens/admin/CandidateScreen.tsx b/vote-block-skripsi/my-app/src/screens/admin/CandidateScreen.tsx new file mode 100644 index 0000000..6d3c62b --- /dev/null +++ b/vote-block-skripsi/my-app/src/screens/admin/CandidateScreen.tsx @@ -0,0 +1,361 @@ +import React, { useEffect, useState } from 'react'; +import { View, Text, StyleSheet, Button, FlatList, ActivityIndicator, Alert, TextInput, TouchableOpacity } from 'react-native'; +import axios from 'axios'; +import { BigNumber } from '@ethersproject/bignumber'; +import ValidCandidateScreen from './ValidCandidate'; +import CandidateHistoryScreen from './CandidateHistory'; +import { API_URL } from '@env'; +import { Candidate, CandidateHistory } from '../../types/app'; + +const CandidateScreen = () => { + const [candidateData, setCandidateData] = useState([]); + const [candidateHistoryData, setCandidateHistoryData] = useState([]); + const [filteredData, setFilteredData] = useState>([]); + const [loading, setLoading] = useState(false); + const [error, setError] = useState(null); + const [showUpdateForm, setShowUpdateForm] = useState(false); + const [showAddForm, setShowAddForm] = useState(false); + const [selectedCandidate, setSelectedCandidate] = useState(null); + const [formData, setFormData] = useState({ id: '', name: '', visi: '', misi: '' }); + const [searchQuery, setSearchQuery] = useState(''); + const [currentView, setCurrentView] = useState<'validCandidate' | 'candidateHistory'>('validCandidate'); + + useEffect(() => { + fetchCandidates(); + fetchCandidateHistories(); + }, []); + + useEffect(() => { + handleSearch(searchQuery); + }, [candidateData, candidateHistoryData, currentView]); + + const fetchCandidateHistories = async () => { + setLoading(true); + setError(null); + try { + const response = await axios.get(`${API_URL}/all-candidate-histories`); + console.log('Candidate Histories:', response.data); + setCandidateHistoryData(response.data); + } catch (error) { + if (axios.isAxiosError(error)) { + setError(error.message); + } else { + setError(String(error)); + } + } finally { + setLoading(false); + } + }; + + const fetchCandidates = async () => { + setLoading(true); + setError(null); + try { + const response = await axios.get<{ error: boolean; message: string; candidates: Candidate[] }>(`${API_URL}/candidates`); + console.log('Candidates:', response.data); + setCandidateData(response.data.candidates); + } catch (error) { + if (axios.isAxiosError(error)) { + setError(error.message); + } else { + setError(String(error)); + } + } finally { + setLoading(false); + } + }; + + const formatDateTime = (timestamp: string) => { + if (!timestamp) return 'Invalid date'; + try { + const unixTimestamp = BigNumber.from(timestamp).toNumber(); + const dateObj = new Date(unixTimestamp * 1000); + return dateObj.toLocaleString(); // Adjust based on your localization preferences + } catch (error) { + return 'Invalid date'; + } + }; + + const updateCandidate = async () => { + if (!selectedCandidate) return; + try { + setLoading(true); + await axios.put(`${API_URL}/candidates/${selectedCandidate.id.hex}`, formData); + Alert.alert('Success', 'Candidate updated successfully'); + setShowUpdateForm(false); + fetchCandidates(); // Refresh the data + } catch (error) { + if (axios.isAxiosError(error)) { + setError(error.message); + } else { + setError(String(error)); + } + } finally { + setLoading(false); + } + }; + + const addCandidate = async () => { + try { + setLoading(true); + const existingCandidates = await axios.get<{ error: boolean; message: string; candidates: Candidate[] }>(`${API_URL}/candidates`); + const existingIds = existingCandidates.data.candidates.map(candidate => candidate.id.hex); + + if (existingIds.includes(formData.id)) { + Alert.alert('Error', 'Candidate ID already exists'); + setLoading(false); + return; + } + + await axios.post(`${API_URL}/candidates`, formData); + Alert.alert('Success', 'Candidate added successfully'); + setShowAddForm(false); + fetchCandidates(); // Refresh the data + fetchCandidateHistories(); // Refresh the voter history data + setFilteredData(currentView === 'validCandidate' ? candidateData : candidateHistoryData); + setFormData({ id: '', name: '', visi: '', misi: '' }); // Reset form data + } catch (error) { + if (axios.isAxiosError(error)) { + setError(error.message); + } else { + setError(String(error)); + } + } finally { + setLoading(false); + } + }; + + const deleteCandidate = async (id: string) => { + try { + setLoading(true); + await axios.delete(`${API_URL}/candidates/${id}`); + Alert.alert('Success', 'Candidate deleted successfully'); + fetchCandidates(); // Refresh the data + } catch (error) { + if (axios.isAxiosError(error)) { + setError(error.message); + } else { + setError(String(error)); + } + } finally { + setLoading(false); + } + }; + + const renderItem = ({ item }: { item: Candidate | CandidateHistory }) => { + if (Array.isArray(item)) { + // Handling CandidateHistory + const [id, name, visi, misi, lastUpdated] = item; + return ( + + ID: {id ? BigNumber.from(id.hex).toString() : 'N/A'} + Name: {name} + Visi: {visi} + Misi: {misi} + Last Updated: {lastUpdated ? formatDateTime(lastUpdated.hex) : 'Invalid date'} + + ); + } else { + // Handling Candidate + return ( + + ID: {item.id ? BigNumber.from(item.id.hex).toString() : 'N/A'} + Name: {item.name} + Visi: {item.visi} + Misi: {item.misi} + Last Updated: {item.lastUpdated ? formatDateTime(item.lastUpdated.hex) : 'Invalid date'} + + { + setSelectedCandidate(item); + setFormData({ id: item.id.hex, name: item.name, visi: item.visi, misi: item.misi }); + setShowUpdateForm(true); + }}> + Update + + deleteCandidate(item.id.hex)}> + Delete + + + + ); + } + }; + + const handleSearch = (text: string) => { + setSearchQuery(text); + let filteredData; + if (text === '') { + filteredData = currentView === 'validCandidate' ? candidateData : candidateHistoryData; + } else { + filteredData = (currentView === 'validCandidate' ? candidateData : candidateHistoryData).filter(item => { + if (Array.isArray(item)) { + const [id, name, visi, misi] = item; + return ( + name.toLowerCase().includes(text.toLowerCase()) || + BigNumber.from(id.hex).toString().includes(text) || + visi.toLowerCase().includes(text.toLowerCase()) || + misi.toLowerCase().includes(text.toLowerCase()) + ); + } else { + return ( + item.name.toLowerCase().includes(text.toLowerCase()) || + BigNumber.from(item.id.hex).toString().includes(text) || + item.visi.toLowerCase().includes(text.toLowerCase()) || + item.misi.toLowerCase().includes(text.toLowerCase()) + ); + } + }); + } + setFilteredData(filteredData); + }; + + const handleViewChange = (view: 'validCandidate' | 'candidateHistory') => { + setCurrentView(view); + setFilteredData(view === 'validCandidate' ? candidateData : candidateHistoryData); + setSearchQuery(''); // Reset search query when switching views + }; + + const renderHeader = () => ( + + handleViewChange('validCandidate')} style={currentView === 'validCandidate' ? styles.activeTab : styles.inactiveTab}> + Valid Candidates + + handleViewChange('candidateHistory')} style={currentView === 'candidateHistory' ? styles.activeTab : styles.inactiveTab}> + Candidate History + + + ); + + const keyExtractor = (item: Candidate | CandidateHistory) => { + if (Array.isArray(item)) { + // Use ID combined with another attribute for uniqueness + const [id, , name] = item; + return `${id.hex}-${name}`; + } else { + // Use ID combined with another attribute for uniqueness + return `${item.id.hex}-${item.name}`; + } + }; + + return ( + + {renderHeader()} + + {currentView === 'validCandidate' ? : } + + + ); +}; + +const styles = StyleSheet.create({ + container: { + flex: 1, + padding: 16, + backgroundColor: '#fff', + }, + list: { + flex: 1, + }, + item: { + backgroundColor: '#f9f9f9', + padding: 16, + marginVertical: 8, + borderRadius: 8, + shadowColor: '#000', + shadowOffset: { width: 0, height: 1 }, + shadowOpacity: 0.1, + shadowRadius: 1, + }, + buttonContainer: { + flexDirection: 'row', + justifyContent: 'space-between', + marginTop: 16, + }, + searchBar: { + height: 40, + borderColor: '#EC8638', + borderWidth: 1, + marginBottom: 16, + paddingHorizontal: 8, + borderRadius: 8, + }, + form: { + backgroundColor: '#fff', + padding: 16, + borderRadius: 8, + shadowColor: '#000', + shadowOffset: { width: 0, height: 1 }, + shadowOpacity: 0.1, + shadowRadius: 1, + marginBottom: 16, + }, + input: { + height: 40, + borderColor: 'gray', + borderWidth: 1, + marginBottom: 16, + paddingHorizontal: 8, + borderRadius: 8, + }, + textArea: { + height: 80, + textAlignVertical: 'top', // This is important to ensure the text starts at the top of the TextInput + }, + errorText: { + color: 'red', + textAlign: 'center', + marginVertical: 16, + }, + header: { + flexDirection: 'row', + justifyContent: 'space-around', + marginBottom: 16, + }, + activeTab: { + borderBottomWidth: 2, + borderBottomColor: '#EC8638', + }, + inactiveTab: { + borderBottomWidth: 1, + borderBottomColor: 'rgba(242, 203, 168, 0.7)', + }, + tabText: { + fontSize: 16, + fontWeight: 'bold', + color: '#EC8638', + }, + updateButton: { + backgroundColor: '#EC8638', + padding: 10, + borderRadius: 8, + alignItems: 'center', + marginBottom: 8, + }, + deleteButton: { + backgroundColor: 'gray', + padding: 10, + borderRadius: 8, + alignItems: 'center', + marginBottom: 8, + }, + cancelButton: { + backgroundColor: 'gray', + padding: 10, + borderRadius: 8, + alignItems: 'center', + marginBottom: 8, + }, + addButton: { + backgroundColor: '#EC8638', + padding: 10, + borderRadius: 8, + alignItems: 'center', + marginTop: 16, + }, + buttonText: { + color: 'white', + fontSize: 15, + }, +}); + +export default CandidateScreen; diff --git a/vote-block-skripsi/my-app/src/screens/admin/ValidCandidate.tsx b/vote-block-skripsi/my-app/src/screens/admin/ValidCandidate.tsx new file mode 100644 index 0000000..068564b --- /dev/null +++ b/vote-block-skripsi/my-app/src/screens/admin/ValidCandidate.tsx @@ -0,0 +1,385 @@ +import React, { useEffect, useState } from 'react'; +import { View, Text, StyleSheet, Button, FlatList, ActivityIndicator, Alert, TextInput, TouchableOpacity } from 'react-native'; +import axios from 'axios'; +import { BigNumber } from '@ethersproject/bignumber'; +import { API_URL } from '@env'; +import { Candidate } from '../../types/app'; + +const ValidCandidateScreen = () => { + const [candidateData, setCandidateData] = useState([]); + const [filteredData, setFilteredData] = useState([]); + const [loading, setLoading] = useState(false); + const [error, setError] = useState(null); + const [showUpdateForm, setShowUpdateForm] = useState(false); + const [showAddForm, setShowAddForm] = useState(false); + const [selectedCandidate, setSelectedCandidate] = useState(null); + const [formData, setFormData] = useState({ id: '', name: '', visi: '', misi: '' }); + const [searchQuery, setSearchQuery] = useState(''); + + useEffect(() => { + fetchCandidates(); + }, []); + + useEffect(() => { + handleSearch(searchQuery); + }, [candidateData, searchQuery]); + + const fetchCandidates = async () => { + setLoading(true); + setError(null); + try { + const response = await axios.get<{ error: boolean; message: string; candidates: Candidate[] }>(`${API_URL}/candidates`); + console.log('Candidates:', response.data); + setCandidateData(response.data.candidates); + setFilteredData(response.data.candidates); + } catch (error) { + if (axios.isAxiosError(error)) { + setError(error.message); + } else { + setError(String(error)); + } + } finally { + setLoading(false); + } + }; + + const formatDateTime = (timestamp: string) => { + if (!timestamp) return 'Invalid date'; + try { + const unixTimestamp = BigNumber.from(timestamp).toNumber(); + const dateObj = new Date(unixTimestamp * 1000); + return dateObj.toLocaleString(); // Adjust based on your localization preferences + } catch (error) { + return 'Invalid date'; + } + }; + + const updateCandidate = async () => { + if (!selectedCandidate) return; + try { + setLoading(true); + await axios.put(`${API_URL}/candidates/${selectedCandidate.id.hex}`, formData); + Alert.alert('Success', 'Candidate updated successfully'); + setShowUpdateForm(false); + fetchCandidates(); // Refresh the data + } catch (error) { + if (axios.isAxiosError(error)) { + setError(error.message); + } else { + setError(String(error)); + } + } finally { + setLoading(false); + } + }; + + const addCandidate = async () => { + try { + setLoading(true); + const existingCandidates = await axios.get<{ error: boolean; message: string; candidates: Candidate[] }>(`${API_URL}/candidates`); + const existingIds = existingCandidates.data.candidates.map(candidate => candidate.id.hex); + + if (existingIds.includes(formData.id)) { + Alert.alert('Error', 'Candidate ID already exists'); + setLoading(false); + return; + } + + await axios.post(`${API_URL}/candidates`, formData); + Alert.alert('Success', 'Candidate added successfully'); + setShowAddForm(false); + fetchCandidates(); // Refresh the data + setFormData({ id: '', name: '', visi: '', misi: '' }); // Reset form data + } catch (error) { + if (axios.isAxiosError(error)) { + setError(error.message); + } else { + setError(String(error)); + } + } finally { + setLoading(false); + } + }; + + const deleteCandidate = async (id: string) => { + try { + setLoading(true); + await axios.delete(`${API_URL}/candidates/${id}`); + Alert.alert('Success', 'Candidate deleted successfully'); + fetchCandidates(); // Refresh the data + } catch (error) { + if (axios.isAxiosError(error)) { + setError(error.message); + } else { + setError(String(error)); + } + } finally { + setLoading(false); + } + }; + + const renderItem = ({ item }: { item: Candidate }) => { + return ( + + ID: {item.id ? BigNumber.from(item.id.hex).toString() : 'N/A'} + Block Number: {BigNumber.from(item.blockNumber.hex).toString()} + Name: {item.name} + Visi: {item.visi} + Misi: {item.misi} + Last Updated: {item.lastUpdated ? formatDateTime(item.lastUpdated.hex) : 'Invalid date'} + Hash: {item.transactionHash.toString()} + + { + setSelectedCandidate(item); + setFormData({ id: item.id.hex, name: item.name, visi: item.visi, misi: item.misi }); + setShowUpdateForm(true); + }}> + Update + + deleteCandidate(item.id.hex)}> + Delete + + + + ); + }; + + const handleSearch = (text: string) => { + setSearchQuery(text); + if (text === '') { + setFilteredData(candidateData); + } else { + const filtered = candidateData.filter(item => { + return ( + item.name.toLowerCase().includes(text.toLowerCase()) || + BigNumber.from(item.id.hex).toString().includes(text) || + item.visi.toLowerCase().includes(text.toLowerCase()) || + item.misi.toLowerCase().includes(text.toLowerCase()) + ); + }); + setFilteredData(filtered); + } + }; + + const keyExtractor = (item: Candidate) => { + return `${item.id.hex}-${item.name}`; + }; + + return ( + + + {loading ? ( + + ) : error ? ( + Error: {error} + ) : ( + + )} + {showUpdateForm && ( + + Update Candidate + + setFormData({ ...formData, name: text })} + /> + setFormData({ ...formData, visi: text })} + multiline + numberOfLines={4} + /> + setFormData({ ...formData, misi: text })} + multiline + numberOfLines={4} + /> + + Submit + + setShowUpdateForm(false)}> + Cancel + + + )} + {showAddForm && ( + + Add Candidate + setFormData({ ...formData, id: text })} + /> + setFormData({ ...formData, name: text })} + /> + setFormData({ ...formData, visi: text })} + multiline + numberOfLines={4} + /> + setFormData({ ...formData, misi: text })} + multiline + numberOfLines={4} + /> + + Submit + + { + setShowAddForm(false); + setFormData({ id: '', name: '', visi: '', misi: '' }); // Reset form data on cancel + }}> + Cancel + + + )} + { + setShowAddForm(true); + setFormData({ id: '', name: '', visi: '', misi: '' }); // Reset form data before showing add form + }}> + Add New Candidate + + + ); +}; + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: '#fff', + }, + item: { + backgroundColor: '#f9f9f9', + padding: 16, + marginVertical: 8, + borderRadius: 8, + shadowColor: '#000', + shadowOffset: { width: 0, height: 1 }, + shadowOpacity: 0.1, + shadowRadius: 1, + }, + buttonContainer: { + flexDirection: 'row', + justifyContent: 'space-between', + marginTop: 16, + }, + searchBar: { + height: 40, + borderColor: '#EC8638', + borderWidth: 1, + marginBottom: 16, + paddingHorizontal: 8, + borderRadius: 8, + }, + form: { + backgroundColor: '#fff', + padding: 16, + borderRadius: 8, + shadowColor: '#000', + shadowOffset: { width: 0, height: 1 }, + shadowOpacity: 0.1, + shadowRadius: 1, + marginBottom: 16, + }, + input: { + height: 40, + borderColor: 'gray', + borderWidth: 1, + marginBottom: 16, + paddingHorizontal: 8, + borderRadius: 8, + }, + textArea: { + height: 80, + textAlignVertical: 'top', // This is important to ensure the text starts at the top of the TextInput + }, + errorText: { + color: 'red', + textAlign: 'center', + marginVertical: 16, + }, + header: { + flexDirection: 'row', + justifyContent: 'space-around', + marginBottom: 16, + }, + activeTab: { + borderBottomWidth: 2, + borderBottomColor: '#EC8638', + }, + inactiveTab: { + borderBottomWidth: 1, + borderBottomColor: 'rgba(242, 203, 168, 0.7)', + }, + tabText: { + fontSize: 16, + fontWeight: 'bold', + color: '#EC8638', + }, + updateButton: { + backgroundColor: '#EC8638', + padding: 10, + borderRadius: 8, + alignItems: 'center', + marginBottom: 8, + }, + deleteButton: { + backgroundColor: 'gray', + padding: 10, + borderRadius: 8, + alignItems: 'center', + marginBottom: 8, + }, + cancelButton: { + backgroundColor: 'gray', + padding: 10, + borderRadius: 8, + alignItems: 'center', + marginBottom: 8, + }, + addButton: { + backgroundColor: '#EC8638', + padding: 10, + borderRadius: 8, + alignItems: 'center', + marginTop: 16, + }, + buttonText: { + color: 'white', + fontSize: 15, + }, +}); + +export default ValidCandidateScreen; diff --git a/vote-block-skripsi/my-app/src/screens/admin/ValidVoter.tsx b/vote-block-skripsi/my-app/src/screens/admin/ValidVoter.tsx new file mode 100644 index 0000000..f9a110f --- /dev/null +++ b/vote-block-skripsi/my-app/src/screens/admin/ValidVoter.tsx @@ -0,0 +1,351 @@ +import React, { useState, useEffect } from 'react'; +import { View, Text, StyleSheet, FlatList, ActivityIndicator, Alert, TextInput, TouchableOpacity } from 'react-native'; +import axios from 'axios'; +import { BigNumber } from '@ethersproject/bignumber'; +import { API_URL } from '@env'; +import { Voter } from '../../types/app'; + +const ValidVoterScreen = () => { + const [voterData, setVoterData] = useState([]); + const [loading, setLoading] = useState(false); + const [error, setError] = useState(null); + const [showUpdateForm, setShowUpdateForm] = useState(false); + const [selectedVoter, setSelectedVoter] = useState(null); + const [formData, setFormData] = useState({ id: '', name: '', email: '', password: '' }); + const [searchQuery, setSearchQuery] = useState(''); + const [filteredData, setFilteredData] = useState>([]); + const [showAddForm, setShowAddForm] = useState(false); + + useEffect(() => { + fetchVoters(); + }, []); + + useEffect(() => { + handleSearch(searchQuery); + }, [voterData]); + + const fetchVoters = async () => { + setLoading(true); + setError(null); + try { + const response = await axios.get<{ error: boolean; message: string; voters: Voter[] }>(`${API_URL}/voters`); + console.log('Voters:', response.data); + setVoterData(response.data.voters); + setFilteredData(response.data.voters); // Initialize filteredData with all voters + } catch (error) { + if (axios.isAxiosError(error)) { + setError(error.message); + } else { + setError(String(error)); + } + } finally { + setLoading(false); + } + }; + + const formatDateTime = (timestamp: string) => { + if (!timestamp) return 'Invalid date'; + try { + const unixTimestamp = BigNumber.from(timestamp).toNumber(); + const dateObj = new Date(unixTimestamp * 1000); + return dateObj.toLocaleString(); // Adjust based on your localization preferences + } catch (error) { + return 'Invalid date'; + } + }; + + const updateVoter = async () => { + if (!selectedVoter) return; + try { + setLoading(true); + await axios.put(`${API_URL}/voters/${selectedVoter.id.hex}`, formData); + Alert.alert('Success', 'Voter updated successfully'); + setShowUpdateForm(false); + fetchVoters(); // Refresh the data + } catch (error) { + if (axios.isAxiosError(error)) { + setError(error.message); + } else { + setError(String(error)); + } + } finally { + setLoading(false); + } + }; + + const addVoter = async () => { + try { + setLoading(true); + const existingVoters = await axios.get<{ error: boolean; message: string; voters: Voter[] }>(`${API_URL}/voters`); + const existingIds = existingVoters.data.voters.map(voter => voter.id.hex); + + if (existingIds.includes(formData.id)) { + Alert.alert('Error', 'Voter ID already exists'); + setLoading(false); + return; + } + + await axios.post(`${API_URL}/voters`, formData); + Alert.alert('Success', 'Voter added successfully'); + setShowAddForm(false); + fetchVoters(); // Refresh the voter data + setFormData({ id: '', name: '', password: '', email: '' }); // Reset form data + } catch (error) { + if (axios.isAxiosError(error)) { + setError(error.message); + } else { + setError(String(error)); + } + } finally { + setLoading(false); + } + }; + + const handleSearch = (text: string) => { + setSearchQuery(text); + if (text === '') { + setFilteredData(voterData); + } else { + const filtered = voterData.filter(item => { + return ( + item.name.toLowerCase().includes(text.toLowerCase()) || + BigNumber.from(item.id.hex).toString().includes(text) || + item.email.toLowerCase().includes(text.toLowerCase()) || + item.hasVoted.toString().toLowerCase().includes(text.toLowerCase()) + ); + }); + setFilteredData(filtered); + } + }; + + const deleteVoter = async (id: string) => { + try { + setLoading(true); + await axios.delete(`${API_URL}/voters/${id}`); + Alert.alert('Success', 'Voter deleted successfully'); + fetchVoters(); // Refresh the data + } catch (error) { + if (axios.isAxiosError(error)) { + setError(error.message); + } else { + setError(String(error)); + } + } finally { + setLoading(false); + } + }; + + const renderItem = ({ item }: { item: Voter }) => { + return ( + + ID: {BigNumber.from(item.id.hex).toString()} + Block Number: {BigNumber.from(item.blockNumber.hex).toString()} + Name: {item.name} + Email: {item.email} + Has Voted: {item.hasVoted.toString()} + Last Updated: {item.lastUpdated ? formatDateTime(item.lastUpdated.hex) : 'Invalid date'} + Hash: {item.transactionHash.toString()} + + { + setSelectedVoter(item); + setFormData({ id: item.id.hex, name: item.name, email: item.email, password: '' }); + setShowUpdateForm(true); + }}> + Update + + deleteVoter(item.id.hex)}> + Delete + + + + ); + }; + + const keyExtractor = (item: Voter) => { + return `${item.id.hex}-${item.email}`; + }; + + return ( + + + {loading ? ( + + ) : error ? ( + Error: {error} + ) : ( + + )} + {showUpdateForm && ( + + Update Voter + setFormData({ ...formData, name: text })} + /> + setFormData({ ...formData, email: text })} + /> + setFormData({ ...formData, password: text })} + /> + + Submit + + setShowUpdateForm(false)}> + Cancel + + + )} + {showAddForm && ( + + Add Voter + setFormData({ ...formData, id: text })} + /> + setFormData({ ...formData, name: text })} + /> + setFormData({ ...formData, email: text })} + /> + setFormData({ ...formData, password: text })} + /> + + Submit + + { + setShowAddForm(false); + setFormData({ id: '', name: '', email: '', password: '' }); + }}> + Cancel + + + )} + { + setShowAddForm(true); + setFormData({ id: '', name: '', email: '', password: '' }); // Reset form data before showing add form + }}> + Add New Voter + + + ); +}; + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: '#fff', + }, + item: { + backgroundColor: '#f9f9f9', + padding: 16, + marginVertical: 8, + borderRadius: 8, + shadowColor: '#000', + shadowOffset: { width: 0, height: 1 }, + shadowOpacity: 0.1, + shadowRadius: 1, + }, + buttonContainer: { + flexDirection: 'row', + justifyContent: 'space-between', + marginTop: 16, + }, + searchBar: { + height: 40, + borderColor: '#EC8638', + borderWidth: 1, + marginBottom: 16, + paddingHorizontal: 8, + borderRadius: 8, + }, + form: { + backgroundColor: '#fff', + padding: 16, + borderRadius: 8, + shadowColor: '#000', + shadowOffset: { width: 0, height: 1 }, + shadowOpacity: 0.1, + shadowRadius: 1, + marginBottom: 16, + }, + input: { + height: 40, + borderColor: 'gray', + borderWidth: 1, + marginBottom: 16, + paddingHorizontal: 8, + borderRadius: 8, + }, + errorText: { + color: 'red', + textAlign: 'center', + marginVertical: 16, + }, + updateButton: { + backgroundColor: '#EC8638', + padding: 10, + borderRadius: 8, + alignItems: 'center', + marginBottom: 8, + }, + deleteButton: { + backgroundColor: 'gray', + padding: 10, + borderRadius: 8, + alignItems: 'center', + marginBottom: 8, + }, + cancelButton: { + backgroundColor: 'gray', + padding: 10, + borderRadius: 8, + alignItems: 'center', + marginBottom: 8, + }, + addButton: { + backgroundColor: '#EC8638', + padding: 10, + borderRadius: 8, + alignItems: 'center', + marginTop: 16, + }, + buttonText: { + color: 'white', + fontSize: 15, + }, +}); + +export default ValidVoterScreen; diff --git a/vote-block-skripsi/my-app/src/screens/admin/VoteCountScreen.tsx b/vote-block-skripsi/my-app/src/screens/admin/VoteCountScreen.tsx new file mode 100644 index 0000000..ca6521a --- /dev/null +++ b/vote-block-skripsi/my-app/src/screens/admin/VoteCountScreen.tsx @@ -0,0 +1,232 @@ +import React, { useEffect, useState } from 'react'; +import { View, Text, StyleSheet, FlatList, ActivityIndicator, TextInput, TouchableOpacity, Dimensions } from 'react-native'; +import axios from 'axios'; +import { BigNumber } from '@ethersproject/bignumber'; +import { API_URL } from '@env'; +import { VoteCount, VoteHistory, VoteHistoryItem } from '../../types/app'; + +const VoteCountScreen: React.FC = () => { + const [voteCounts, setVoteCounts] = useState([]); + const [voteHistories, setVoteHistories] = useState([]); + const [filteredHistories, setFilteredHistories] = useState([]); + const [loading, setLoading] = useState(false); + const [error, setError] = useState(null); + const [searchText, setSearchText] = useState(''); + + const fetchVoteCounts = async () => { + setLoading(true); + setError(null); + try { + setVoteCounts([]); + const response = await axios.get<{ voteCounts: VoteCount[] }>(`${API_URL}/vote-counts`); + console.log('Vote Counts:', response.data); + setVoteCounts(response.data.voteCounts); + } catch (error) { + if (axios.isAxiosError(error)) { + setError(error.message); + } else { + setError(String(error)); + } + } finally { + setLoading(false); + } + }; + + const fetchVoteHistories = async () => { + setLoading(true); + setError(null); + try { + setVoteHistories([]); + const response = await axios.get(`${API_URL}/all-vote-count-histories`); + console.log('Vote Histories:', response.data); + const formattedHistories = response.data.map(item => ({ + candidate: item[0], + count: item[1], + timestamp: item[2], + transactionHash: item[3], + blockNumber: item[4] + })); + setVoteHistories(formattedHistories); + setFilteredHistories(formattedHistories); + } catch (error) { + if (axios.isAxiosError(error)) { + setError(error.message); + } else { + setError(String(error)); + } + } finally { + setLoading(false); + } + }; + + useEffect(() => { + fetchVoteCounts(); + fetchVoteHistories(); + }, []); + + const formatDateTime = (timestamp: string) => { + if (!timestamp) return 'Invalid date'; + try { + const unixTimestamp = BigNumber.from(timestamp).toNumber(); + const dateObj = new Date(unixTimestamp * 1000); + return dateObj.toLocaleString(); // Adjust based on your localization preferences + } catch (error) { + return 'Invalid date'; + } + }; + + const renderVoteCountItem = ({ item }: { item: VoteCount }) => ( + + {item.id ? BigNumber.from(item.id.hex).toString() : 'N/A'} + {item.voteCount ? BigNumber.from(item.voteCount.hex).toString() : 'N/A'} votes + + ); + + const renderVoteHistoryItem = ({ item }: { item: VoteHistory }) => ( + + Candidate: {item.candidate ? BigNumber.from(item.candidate.hex).toString() : 'N/A'} + Votes: {item.count ? BigNumber.from(item.count.hex).toString() : 'N/A'} + Block Number: {item.blockNumber ? BigNumber.from(item.blockNumber.hex).toString() : 'N/A'} + Timestamp: {item.timestamp ? formatDateTime(item.timestamp.hex) : 'Invalid date'} + Hash: {item.transactionHash ? item.transactionHash.toString() : 'N/A'} + + ); + + const handleSearch = (text: string) => { + setSearchText(text); + if (text) { + const filtered = voteHistories.filter(history => + BigNumber.from(history.candidate.hex).toString().includes(text) + ); + setFilteredHistories(filtered); + } else { + setFilteredHistories(voteHistories); + } + }; + + return ( + + + Refresh Vote Counts + + {loading && } + {error && {error}} + + Current Vote Counts: + item.id.hex} + renderItem={renderVoteCountItem} + contentContainerStyle={styles.listContent} + /> + + + Refresh Vote Histories + + {loading && } + {error && {error}} + Vote Count History: + + item.candidate.hex} + renderItem={renderVoteHistoryItem} + contentContainerStyle={styles.listContent} + /> + + ); +}; + +const styles = StyleSheet.create({ + container: { + flex: 1, + justifyContent: 'center', + alignItems: 'center', + padding: 16, + backgroundColor: '#fff', + }, + title: { + fontSize: 24, + marginBottom: 16, + fontWeight: 'bold', + color: '#343a40', + }, + error: { + color: 'red', + marginVertical: 8, + }, + subtitle: { + fontSize: 20, + marginVertical: 8, + fontWeight: '600', + color: '#495057', + }, + voteCount: { + flexDirection: 'row', + justifyContent: 'space-between', + width: '100%', + paddingVertical: 8, + paddingHorizontal: 16, + borderBottomWidth: 1, + borderBottomColor: '#ced4da', + backgroundColor: '#f8f9fa', + borderRadius: 8, + marginVertical: 4, + }, + candidate: { + fontSize: 18, + color: '#212529', + }, + count: { + fontSize: 18, + color: '#212529', + }, + historyItem: { + flexDirection: 'column', + justifyContent: 'center', + width: Dimensions.get('window').width - 32, + paddingVertical: 8, + paddingHorizontal: 16, + borderBottomWidth: 1, + borderBottomColor: '#dee2e6', + backgroundColor: '#f8f9fa', + borderRadius: 8, + marginVertical: 4, + }, + historyText: { + fontSize: 16, + color: '#495057', + }, + searchBar: { + height: 40, + width: '100%', + borderColor: '#EC8638', + borderWidth: 1, + borderRadius: 8, + marginBottom: 12, + paddingHorizontal: 8, + backgroundColor: '#fff', + }, + refreshButton: { + backgroundColor: '#EC8638', + padding: 10, + borderRadius: 8, + alignItems: 'center', + marginBottom: 8, + }, + buttonText: { + color: 'white', + fontSize: 15, + }, + listContent: { + width: '100%', + paddingBottom: 16, + }, +}); + +export default VoteCountScreen; diff --git a/vote-block-skripsi/my-app/src/screens/admin/VoterHistory.tsx b/vote-block-skripsi/my-app/src/screens/admin/VoterHistory.tsx new file mode 100644 index 0000000..069b5ee --- /dev/null +++ b/vote-block-skripsi/my-app/src/screens/admin/VoterHistory.tsx @@ -0,0 +1,145 @@ +import React, { useState, useEffect } from 'react'; +import { View, Text, StyleSheet, FlatList, ActivityIndicator, TextInput } from 'react-native'; +import axios from 'axios'; +import { BigNumber } from '@ethersproject/bignumber'; +import { API_URL } from '@env'; +import { VoterHistory } from '../../types/app'; + +const VoterHistoryScreen = () => { + const [voterHistoryData, setVoterHistoryData] = useState([]); + const [loading, setLoading] = useState(false); + const [error, setError] = useState(null); + const [filteredData, setFilteredData] = useState([]); + const [searchQuery, setSearchQuery] = useState(''); + + useEffect(() => { + fetchVoterHistories(); + }, []); + + const fetchVoterHistories = async () => { + setLoading(true); + setError(null); + try { + const response = await axios.get(`${API_URL}/all-voter-histories`); + const sortedData = response.data.sort((a, b) => { + const lastUpdatedA = BigNumber.from(a[5]?.hex || 0).toNumber(); + const lastUpdatedB = BigNumber.from(b[5]?.hex || 0).toNumber(); + return lastUpdatedB - lastUpdatedA; + }); + console.log('Voter Histories:', sortedData); + setVoterHistoryData(sortedData); + setFilteredData(sortedData); + } catch (error) { + if (axios.isAxiosError(error)) { + setError(error.message); + } else { + setError(String(error)); + } + } finally { + setLoading(false); + } + }; + + const formatDateTime = (timestamp: string) => { + if (!timestamp) return 'Invalid date'; + try { + const unixTimestamp = BigNumber.from(timestamp).toNumber(); + const dateObj = new Date(unixTimestamp * 1000); + return dateObj.toLocaleString(); + } catch (error) { + return 'Invalid date'; + } + }; + + const renderItem = ({ item }: { item: VoterHistory }) => { + const [id, name, email, hasVoted, pass, lastUpdated, transactionHash, blockNumber] = item; + return ( + + ID: {BigNumber.from(id.hex).toString()} + Block Number: {BigNumber.from(blockNumber.hex).toString()} + Name: {name} + Has Voted: {hasVoted.toString()} + Email: {email} + Last Updated: {lastUpdated ? formatDateTime(lastUpdated.hex) : 'Invalid date'} + Hash: {transactionHash.toString()} + + ); + }; + + const handleSearch = (text: string) => { + setSearchQuery(text); + if (text === '') { + setFilteredData(voterHistoryData); + } else { + const filteredData = voterHistoryData.filter(item => { + const [id, name, email, hasVoted] = item; + return ( + name.toLowerCase().includes(text.toLowerCase()) || + BigNumber.from(id.hex).toString().includes(text) || + email.toLowerCase().includes(text.toLowerCase()) || + hasVoted.toString().toLowerCase().includes(text.toLowerCase()) + ); + }); + setFilteredData(filteredData); + } + }; + + const keyExtractor = (item: VoterHistory, index: number) => { + const [id, name, email, hasVoted, txHash, lastUpdated] = item; + return `${BigNumber.from(id.hex).toString()}-${name}-${email}-${hasVoted}-${txHash}-${BigNumber.from(lastUpdated.hex).toString()}`; + }; + + return ( + + + {loading ? ( + + ) : error ? ( + Error: {error} + ) : ( + + )} + + ); +}; + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: '#fff', + }, + item: { + backgroundColor: '#f9f9f9', + padding: 16, + marginVertical: 8, + borderRadius: 8, + shadowColor: '#000', + shadowOffset: { width: 0, height: 1 }, + shadowOpacity: 0.1, + shadowRadius: 1, + }, + searchBar: { + height: 40, + borderColor: '#EC8638', + borderWidth: 1, + marginBottom: 16, + paddingHorizontal: 8, + borderRadius: 8, + }, + errorText: { + color: 'red', + textAlign: 'center', + marginVertical: 16, + }, +}); + +export default VoterHistoryScreen; diff --git a/vote-block-skripsi/my-app/src/screens/admin/VoterScreen.tsx b/vote-block-skripsi/my-app/src/screens/admin/VoterScreen.tsx new file mode 100644 index 0000000..49634ce --- /dev/null +++ b/vote-block-skripsi/my-app/src/screens/admin/VoterScreen.tsx @@ -0,0 +1,70 @@ +import React, { useState, useEffect } from 'react'; +import { View, Text, StyleSheet, Button, FlatList, ActivityIndicator, Alert, TextInput, TouchableOpacity } from 'react-native'; +import ValidVoterScreen from './ValidVoter'; +import VoterHistoryScreen from './VoterHistory'; + +const VoterScreen = () => { + const [loading, setLoading] = useState(false); + const [error, setError] = useState(null); + const [currentView, setCurrentView] = useState<'validVoter' | 'voterHistory'>('validVoter'); + + const handleViewChange = (view: 'validVoter' | 'voterHistory') => { + setCurrentView(view); + }; + + const renderHeader = () => ( + + handleViewChange('validVoter')} style={currentView === 'validVoter' ? styles.activeTab : styles.inactiveTab}> + Valid Voters + + handleViewChange('voterHistory')} style={currentView === 'voterHistory' ? styles.activeTab : styles.inactiveTab}> + Voter History + + + ); + + return ( + + {renderHeader()} + + {currentView === 'validVoter' ? : } + + + ); +}; + +const styles = StyleSheet.create({ + container: { + flex: 1, + padding: 16, + backgroundColor: '#fff', + }, + list: { + flex: 1, + }, + errorText: { + color: 'red', + textAlign: 'center', + marginVertical: 16, + }, + header: { + flexDirection: 'row', + justifyContent: 'space-around', + marginBottom: 16, + }, + activeTab: { + borderBottomWidth: 2, + borderBottomColor: '#EC8638', + }, + inactiveTab: { + borderBottomWidth: 1, + borderBottomColor: 'rgba(242, 203, 168, 0.7)', + }, + tabText: { + fontSize: 16, + fontWeight: 'bold', + color: '#EC8638', + }, +}); + +export default VoterScreen; diff --git a/vote-block-skripsi/my-app/src/screens/user/HomeScreen.tsx b/vote-block-skripsi/my-app/src/screens/user/HomeScreen.tsx new file mode 100644 index 0000000..48b1724 --- /dev/null +++ b/vote-block-skripsi/my-app/src/screens/user/HomeScreen.tsx @@ -0,0 +1,98 @@ +import React, { useEffect } from 'react'; +import { Image, View, Text, StyleSheet, Button, TouchableOpacity, BackHandler, Alert } from 'react-native'; +import { RouteProp } from '@react-navigation/native'; +import { StackNavigationProp } from '@react-navigation/stack'; +import { RootStackParamList } from '../../navigations/user/StackNavigator'; +import AsyncStorage from '@react-native-async-storage/async-storage'; +import Icon from 'react-native-vector-icons/FontAwesome'; // Import Icon from react-native-vector-icons +import BottomTabNavigator from '../../navigations/user/BottomTabNavigator'; + +type HomeScreenRouteProp = RouteProp; +type HomeScreenNavigationProp = StackNavigationProp; + +type Props = { + route: HomeScreenRouteProp; + navigation: HomeScreenNavigationProp; +}; + +const HomeScreen: React.FC = ({ route, navigation }) => { + const user = route.params?.user; + + useEffect(() => { + const checkToken = async () => { + const token = await AsyncStorage.getItem('token'); + if (!token || !user) { + navigation.navigate('Login'); + } + }; + + checkToken(); + }, [user]); + + useEffect(() => { + const backAction = () => { + BackHandler.exitApp(); // Langsung keluar dari aplikasi tanpa alert + return true; + }; + + const backHandler = BackHandler.addEventListener( + "hardwareBackPress", + backAction + ); + + return () => backHandler.remove(); + }, []); + + const handleProfile = () => { + navigation.navigate('Profile', { userId: user.userId }); // Pass userId to ProfileScreen + }; + + return ( + + + + + + + + + + ); +}; + +const styles = StyleSheet.create({ + container: { + flex: 1, + justifyContent: 'center', + alignItems: 'center', + padding: 16, + backgroundColor: '#fff', + }, + logo: { + width: 250, + height: 43, + resizeMode: 'contain' + }, + title: { + fontSize: 24, + marginBottom: 16, + }, + header: { + flexDirection: 'row', + justifyContent: 'space-between', + alignItems: 'center', + paddingTop: 28, + paddingBottom: 10, + padding: 16, + backgroundColor: '#EC8638', + }, + headerText: { + fontSize: 20, + fontWeight: 'bold', + }, + profileIcon: { + padding: 8, + }, +}); + +export default HomeScreen; diff --git a/vote-block-skripsi/my-app/src/screens/user/HomeTabScreen.tsx b/vote-block-skripsi/my-app/src/screens/user/HomeTabScreen.tsx new file mode 100644 index 0000000..e7bd1de --- /dev/null +++ b/vote-block-skripsi/my-app/src/screens/user/HomeTabScreen.tsx @@ -0,0 +1,289 @@ +import React, { useEffect, useState } from 'react'; +import { View, Text, StyleSheet, FlatList, Dimensions, SafeAreaView, TextInput } from 'react-native'; +import { useElection } from '../../helper/ElectionContext'; +import PieChartComponent from '../../component/PieChart'; +import { BigNumber } from '@ethersproject/bignumber'; +import axios from 'axios'; +import { API_URL } from '@env'; +import { VoteHistoryItem } from '../../types/app'; +import { useFocusEffect } from '@react-navigation/native'; + +const HomeTabScreen = () => { + const { candidates } = useElection(); + const { width, height } = Dimensions.get('window'); + const [searchText, setSearchText] = useState(''); + const [voteHistories, setVoteHistories] = useState([]); + const [filteredHistories, setFilteredHistories] = useState([]); + const [loading, setLoading] = useState(false); + const [error, setError] = useState(null); + + interface VoteHistory { + key: string; + candidate: VoteHistoryItem; + count: VoteHistoryItem; + timestamp: VoteHistoryItem; + transactionHash: VoteHistoryItem; + blockNumber: VoteHistoryItem; + } + + const renderCandidateItem = ({ item }: { item: any }) => { + const id = parseInt(item.id.hex, 16); + const name = item.name; + const visi = item.visi; + const misi = item.misi; + const voteCount = parseInt(item.voteCount.hex, 16); + + return ( + + + {id} + + {name} + + Vision + {visi} + Mission + {misi} + + Votes: {voteCount} + + ); + }; + + const totalVotes = candidates.reduce((sum, candidate) => sum + parseInt(candidate.voteCount.hex, 16), 0); + const chartData = candidates.map((candidate, index) => ({ + name: '% ' + candidate.name, + population: totalVotes ? (parseInt(candidate.voteCount.hex, 16) / totalVotes) * 100 : 0, + color: ["#96c31f", "#f5a623", "#f05656", "#50e3c2", "#4a90e2"][index % 5], + legendFontColor: "#7F7F7F", + legendFontSize: 15, + key: `chart-${candidate.name}-${index}` + })); + + const fetchVoteHistories = async () => { + setLoading(true); + setError(null); + try { + setVoteHistories([]); + const response = await axios.get(`${API_URL}/all-vote-count-histories`); + console.log('Vote Histories:', response.data); + const formattedHistories = response.data.map((item, index) => ({ + candidate: item[0], + count: item[1], + timestamp: item[2], + transactionHash: item[3], + blockNumber: item[4], + key: `history-${index}` + })); + setVoteHistories(formattedHistories); + setFilteredHistories(formattedHistories); + } catch (error) { + if (axios.isAxiosError(error)) { + setError(error.message); + } else { + setError(String(error)); + } + } finally { + setLoading(false); + } + }; + + useFocusEffect( + React.useCallback(() => { + fetchVoteHistories(); + }, []) + ); + + const handleSearch = (text: string) => { + setSearchText(text); + if (text) { + const filtered = voteHistories.filter(history => + BigNumber.from(history.candidate.hex).toString().includes(text) + ); + setFilteredHistories(filtered); + } else { + setFilteredHistories(voteHistories); + } + }; + + const formatDateTime = (timestamp: string) => { + if (!timestamp) return 'Invalid date'; + try { + const unixTimestamp = BigNumber.from(timestamp).toNumber(); + const dateObj = new Date(unixTimestamp * 1000); + return dateObj.toLocaleString(); // Adjust based on your localization preferences + } catch (error) { + return 'Invalid date'; + } + }; + + const renderVoteHistoryItem = ({ item }: { item: VoteHistory }) => ( + + Candidate: {item.candidate ? BigNumber.from(item.candidate.hex).toString() : 'N/A'} + Votes: {item.count ? BigNumber.from(item.count.hex).toString() : 'N/A'} + Block Number: {item.blockNumber ? BigNumber.from(item.blockNumber.hex).toString() : 'N/A'} + Timestamp: {item.timestamp ? formatDateTime(item.timestamp.hex) : 'Invalid date'} + Hash: {item.transactionHash ? item.transactionHash.toString() : 'N/A'} + + ); + + return ( + + + Candidate List + `${item.id.hex}-${index}`} + contentContainerStyle={styles.listContainer} + /> + Vote Counting Results + + + + + + } + ListFooterComponent={ + item.key} + renderItem={renderVoteHistoryItem} + contentContainerStyle={styles.listContent} + /> + } + /> + + ); +}; + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: '#fff', + paddingTop: 10, + padding: 16, + }, + title: { + fontSize: 24, + marginBottom: 6, + marginTop: 20, + color: '#EC8638', + fontWeight: 'bold', + textAlign: 'center', + }, + listContainer: { + flexGrow: 1, + width: '100%', + paddingHorizontal: 16, + }, + candidateItem: { + backgroundColor: '#FAECE0', // Slightly transparent background + padding: 16, + marginVertical: 8, + borderRadius: 8, + marginTop: 13, + marginLeft: 10, + position: 'relative', // Ensure the absolute positioning of the circle works within this container + }, + candidateIdCircle: { + position: 'absolute', + top: -10, + left: -10, + width: 40, + height: 40, + borderRadius: 20, + backgroundColor: '#EC8638', + justifyContent: 'center', + alignItems: 'center', + shadowColor: '#000', + shadowOffset: { width: 0, height: 2 }, + shadowOpacity: 0.1, + shadowRadius: 5, + elevation: 3, + }, + candidateId: { + fontSize: 18, + fontWeight: 'bold', + color: '#fff', + }, + candidateName: { + fontSize: 18, + fontWeight: '600', + marginBottom: 8, + color: '#000', + textAlign: 'center', + }, + candidateDetails: { + marginBottom: 8, + }, + candidateDetailTitle: { + fontSize: 14, + fontWeight: '600', + color: '#EC8638', + marginBottom: 3, + }, + candidateVisi: { + fontSize: 14, + fontStyle: 'italic', + color: '#000', + textAlign: 'center', + }, + candidateMisi: { + fontSize: 14, + fontStyle: 'italic', + color: '#000', + }, + voteCount: { + fontSize: 14, + color: '#777', + marginTop: 4, + }, + historyItem: { + flexDirection: 'column', + justifyContent: 'center', + width: Dimensions.get('window').width - 32, + paddingVertical: 8, + paddingHorizontal: 16, + borderBottomWidth: 1, + borderBottomColor: '#EC8638', + backgroundColor: '#f8f9fa', + borderRadius: 8, + marginVertical: 4, + }, + historyText: { + fontSize: 13, + color: '#495057', + }, + searchBar: { + height: 40, + width: Dimensions.get('window').width - 32, + borderColor: '#EC8638', + borderWidth: 1, + borderRadius: 8, + marginBottom: 12, + paddingHorizontal: 8, + backgroundColor: '#fff', + }, + listContent: { + width: '100%', + paddingBottom: 16, + }, + voteHistoryContainer: { + justifyContent: 'center', + alignItems: 'center', + padding: 16, + height: 40, + }, +}); + +export default HomeTabScreen; diff --git a/vote-block-skripsi/my-app/src/screens/user/LoginScreen.tsx b/vote-block-skripsi/my-app/src/screens/user/LoginScreen.tsx new file mode 100644 index 0000000..f48cb2e --- /dev/null +++ b/vote-block-skripsi/my-app/src/screens/user/LoginScreen.tsx @@ -0,0 +1,126 @@ +import React, { useEffect, useState } from 'react'; +import { View, Text, TextInput, Button, StyleSheet, Alert, Image, TouchableOpacity } from 'react-native'; +import AsyncStorage from '@react-native-async-storage/async-storage'; +import { StackNavigationProp } from '@react-navigation/stack'; +import { RootStackParamList } from '../../navigations/user/StackNavigator'; +import { API_URL } from '@env'; + +type LoginScreenNavigationProp = StackNavigationProp; + +type Props = { + navigation: LoginScreenNavigationProp; +}; + +const LoginScreen: React.FC = ({ navigation }) => { + const [id, setId] = useState(''); + const [password, setPassword] = useState(''); + + useEffect(() => { + const unsubscribe = navigation.addListener('focus', () => { + setId(''); + setPassword(''); + }); + + return unsubscribe; + }, [navigation]); + + const handleLogin = async () => { + if (id === '12020' && password === 'admin120') { + await AsyncStorage.setItem('userId', id); + navigation.navigate('Admin'); + return; + } + + try { + const response = await fetch(`${API_URL}/login`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify({ voterId: id, password }), + }); + + const data = await response.json(); + + if (!response.ok) { + throw new Error(data.message || 'Login failed'); + } + + if (!data.error) { + await AsyncStorage.setItem('token', data.loginResult.token); + await AsyncStorage.setItem('userId', String(data.loginResult.userId)); + navigation.navigate('Home', { user: data.loginResult }); + } else { + Alert.alert('Error', data.message); + } + } catch (error: any) { + console.error('Login Error:', error); + Alert.alert('Error', error.message || 'Something went wrong'); + } + }; + + return ( + + + Login untuk mengakses + + + {/*