date
stringlengths
12
12
text
stringlengths
98
60.4k
topic
stringlengths
15
36k
url
stringlengths
37
226
root_topic
stringclasses
63 values
heading
stringlengths
1
148
related_topics
stringlengths
7
36.6k
author
stringclasses
1 value
vector
stringlengths
44.7k
45.8k
23 Jul, 2018
multiset max_size() in C++ STL with Examples 23 Jul, 2018 The multiset::max_size() is a built-in function in C++ STL which returns the maximum number of elements a multiset container can hold. Syntax: multiset_name.max_size() Parameters: The function does not accept any parameters. Return Value: The function returns the maximum number of elements a multiset container can hold. Below programs illustrate the above function: Program 1: // CPP program to demonstrate the // multiset::max_size() function // when multiset is non-empty #include <bits/stdc++.h> using namespace std; int main() { multiset<int> s; // Function to insert elements // in the multiset container s.insert(10); s.insert(13); s.insert(13); s.insert(25); s.insert(24); cout << "The multiset elements are: "; for (auto it = s.begin(); it != s.end(); it++) cout << *it << " "; cout << "\nThe max size of multiset: " << s.max_size(); return 0; } Output: The multiset elements are: 10 13 13 24 25 The max size of multiset: 461168601842738790 Program 2: // CPP program to demonstrate the // multiset::max_size() function // when multiset is empty #include <bits/stdc++.h> using namespace std; int main() { multiset<int> s; cout << "\nThe max size of multiset: " << s.max_size(); return 0; } Output: The max size of multiset: 461168601842738790 All functions of multiset Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples
https://www.geeksforgeeks.org/multiset-max_size-in-cpp-stl-with-examples?ref=asr10
PHP
multiset max_size() in C++ STL with Examples
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.00762680173, 0.0439096466, -0.00601628795, 0.0503270216, 0.0780451372, -0.0344316773, -0.0418610238, 0.0157472473, 0.00797235314, 0.00982968882, -0.0336665288, 0.0255460851, -0.00668270746, -0.0216092728, 0.0385042429, -0.0366777591, -0.0292730983, 0.00180951424, 0.00340614445, -0.00852153171, -0.00364988134, -0.00256077899, -0.0151672158, 0.027125746, -0.0208441243, 0.0160557758, -0.0264346432, -0.00390287396, -0.0195976719, -0.0159076825, 0.0107182488, 0.0113229621, -0.0241515394, 0.0135011673, -0.020671349, 0.0162655748, 0.0396889895, 0.0562260672, -0.0363075249, 0.010452915, 0.0256694946, 0.0186103843, 0.0133037092, -0.0197334252, 0.00855238456, 0.0267555118, -0.0161421634, -0.0424533971, -0.050944075, -0.0120325759, 0.0102924807, 0.00588979153, 0.0239787642, -0.00136600586, -0.00518326368, -0.0141305635, 0.0106627131, 0.0279649403, -0.0105393026, -0.036924582, -0.00584968319, -0.0323583744, -0.00103125349, -0.000174607325, 0.00471430132, -0.0374429077, -0.0346291363, 0.0231395699, 0.0539553054, -0.000702285906, 0.00309761707, 0.0484264903, -0.0191410519, -0.000782503106, 0.00416203728, -0.0141922692, -0.0407750048, -0.0284585841, -0.0433913209, 0.0300629288, -0.0225101728, 0.0160804577, 0.00492718536, 0.00828705076, 0.0149944406, -0.000746251084, -0.00981734786, -0.0196346957, 0.0162655748, 0.00912624598, -0.0321115516, 0.0210662633, 0.00236177864, 0.00353572611, 0.00338454754, 0.0228680652, 0.0267555118, 0.0297173765, -0.0192274395, 0.0208071, 0.00321485754, -0.0250401, 0.0427989475, -0.0245094318, 0.0123966383, 0.016463032, 0.0159200244, -0.0255954489, 0.0153893558, -0.0214118138, 0.0404788181, 0.032234963, -0.0237566233, 0.08006908, -0.0332963, -0.0147476187, -0.0113291331, 0.00236486387, 0.0142663158, 0.00500740251, 0.0103233326, 0.0298407879, 0.00317783421, -0.0203751624, -0.051882, -0.000264948059, 0.0103109917, 0.017561391, 0.0274712965, -0.0153029682, -0.0104220621, 0.0125817554, 0.00836109743, -0.0771072134, -0.0260644108, 0.0125385607, 0.0139824701, 0.0177588481, 0.00769467792, -0.0090460293, -0.0419597514, 0.00787979458, 0.00865728408, 0.0239294, -0.0229914766, -0.0274712965, -0.00965074264, 0.0267555118, -0.00624459842, 0.0287794527, -0.00551030273, -0.00728125125, 0.00983586, 0.000720026263, 0.0013852889, -0.00834875647, -0.00481920084, -0.0118598007, 0.00994075928, -0.0194002148, 0.0382080562, -0.00270732958, 0.0199062, -0.0121868392, -0.0156485196, 0.0315191783, 0.0128470883, 0.00675058365, -0.0416142, 0.0191657338, 0.0152165806, 0.0159200244, -0.0176601186, -0.00971861929, 0.0243860204, -0.0138590597, 0.0393928029, 0.0425521247, 0.0272491556, 0.0525731, 0.0222880337, 0.00982968882, -0.00323953968, 0.00836726837, -0.0128470883, -0.00968776643, 0.0418857038, -0.0225965604, 0.0388744771, -0.00194218114, 0.00132589729, 0.0319881402, 0.0089904936, -0.013562873, 0.0325805135, 0.0220412109, -0.0289028641, 0.0295446012, 0.011125505, 0.0230531804, -0.0278415289, -0.0155127672, -0.0138096949, 0.0290756393, 0.00649142032, 0.00694187079, -0.0152289215, 0.0204492081, 0.028680725, -0.00473589823, 0.00657163747, 0.00814512838, -0.0165987834, -0.0169813577, -0.00391521491, 0.00896581169, -0.0609156862, 0.0303344317, 0.0180550348, -0.0352215096, 0.0415648371, -0.0170924291, 0.030482525, -0.0416142, -0.0602245852, -0.0162408929, 0.00891027693, 0.00671356032, 0.0133160511, 0.00082531129, 0.0246945489, 0.00403862633, -0.0252745803, 0.0315191783, 0.0680241659, -0.022226328, -0.0368011706, -0.000391058711, 0.0125447316, 0.00268573267, -0.00619523413, 0.0513883531, -0.0119400173, 0.00494878227, 0.0207207128, 0.0244847499, -0.00718252221, -0.0406022295, 0.000210762912, -0.0363815725, -0.0364309363, 0.00980500691, 0.0357398354, -0.00858940836, -0.0202887747, 0.00463408418, -0.00549179083, -0.0224484671, -0.0382080562, -0.0220658928, -0.0115512731, 0.0382080562, 0.00803405792, 0.0215969309, -0.00821917504, 0.0423299856, 0.054942593, 8.52307494e-05, -0.0132543454, -0.0233740509, -0.0121127935, -0.015117852, -0.00456620846, -0.0188695472, 0.00657163747, 0.0164383501, -0.0302110221, -0.00608107867, -0.00841663219, -0.0357151553, 0.0213254262, -0.0336418487, -0.00468653394, -0.00344008254, 0.0364803, -0.00555966701, -0.0101320455, -0.0107552717, -0.0120202349, -0.013353074, -0.0053622094, -0.00262094196, 0.0201530214, -0.000900129206, 0.00721954554, -0.00363754015, -0.0258669537, 0.00041149868, -0.0147229368, 0.0144884558, -0.0167592186, -0.0185980424, 0.000675289775, -0.0499814674, -0.0113291331, -0.00170307222, 0.00762063125, -0.00389361824, 0.00379180396, -0.0372207686, 0.00406022323, -0.0267555118, -0.0219795052, 0.0265827365, -0.0316179059, -0.0253239442, 0.0344810449, 0.0123411035, -0.0498580597, -0.0126187783, 0.00388744753, -0.016919652, -0.00913241692, 0.054054033, 0.0131926397, -0.0146365492, -0.040725641, 0.02090583, -0.0120819407, -0.0498827398, -0.00881154742, 0.0227446537, -0.0192521214, -0.0175860729, 0.0244847499, -0.0358879305, 0.00616438128, -0.00428544823, -0.0193878729, 0.0619029738, -0.0126496311, 0.0151918987, -0.0348019116, 0.022460809, 0.00266105053, 0.00578489248, -0.00146859128, -0.0175120253, -0.00181105698, 0.0149697587, 0.000662177335, -0.00320868683, 0.0118042659, 0.0259163175, 0.0135011673, -0.0167098548, -0.0088424, -0.0120942816, 0.0229667928, -0.0459335856, -0.00276594982, 0.0286066774, 0.0144020673, -0.00412501395, 0.0165494196, -0.0219301414, -0.0163025968, -0.0234974604, -0.00725656888, 0.00371158682, 0.038948521, -0.0116129788, 0.0310255345, 0.034727864, 0.00287393457, -0.0250030756, 0.050055515, 0.0274959784, -0.0109280469, 0.00747253792, 0.0111563578, 0.0529186502, 0.0178699177, 0.0314451307, 0.00757743744, -0.0103726974, -0.0227446537, -0.016253233, -0.00736146839, 0.0312970392, -0.0234851204, 0.00782426, -0.0100641698, -0.0162038691, -0.00626928033, 0.0336912125, -0.0516845398, -0.039837081, -0.0484511741, -0.061359968, -0.0114772264, -0.000861563312, -0.00221985602, -0.0148463473, 0.00873750169, -0.0177588481, 0.0216339547, -0.0145254787, -0.0117549011, 0.00801554695, 0.00849067885, -0.017363932, -0.00908305217, -0.0054023182, 0.0166358072, -0.0037023311, -0.0231148861, 0.00368690467, 0.0209428519, 0.010020976, -0.025817588, -0.0259903632, -0.0138714006, -0.00454152608, -0.00315932254, 0.0264840089, -0.0166851711, 0.0346785, -0.0114278616, -0.0179563053, -0.0161051396, 0.0394421667, -0.0174503196, 0.0185363367, 0.0103480155, -0.0307540298, 0.0215352252, 0.00959520787, -0.0157349072, -0.0471676961, 0.0123102507, 0.0240528099, 0.0368999, -0.003059051, 0.00758360792, 0.0314944945, -0.0263112318, -0.0197704472, 0.0260890927, 0.0227940176, -0.0436381437, -0.00140457181, 0.0169443358, 0.00685548317, 0.0628409, -0.0268542413, 0.0648154765, -0.0030945316, 0.0550906844, -0.00994075928, -0.0147846416, 0.014451432, -0.00617363723, -0.0153646739, 0.0178575777, 0.0134764854, -0.00439343276, 0.0263359156, -0.00670739, 0.0187831596, -0.00969393644, -0.00285388017, -0.00244508102, -0.0362581611, 0.0121313045, -0.00901517645, -0.0215105433, -0.0134888263, -0.00882388931, -0.0258916356, 0.0304084793, 0.0198938586, -0.0636307299, 0.00952116121, -0.0120387468, 0.00764531363, 0.00112304045, 0.00497346465, -0.00398926158, -0.0254720375, -0.00930519216, 0.00581574487, 0.00112149783, -0.0375169553, 0.0144020673, 0.03914598, -0.0173886139, 0.00545476796, -0.0248796642, -0.00566148106, 0.0238800347, -0.0240034461, -0.017808212, 0.0488460883, 0.0445020199, -0.0389732048, 0.0198815186, 0.0219671633, -0.0359619744, -0.00991607644, -0.000240844354, 0.0415401533, -0.0137233073, -0.0190423224, -0.0339133516, 0.00942243263, 0.0582993738, -0.00186042138, -0.0188078415, 0.00352955563, 0.00115389319, 0.0233000033, 0.00745402649, 0.0233370271, -0.0197827891, 0.00466802251, 0.000827625277, -0.00223528245, -0.0110267764, -0.0129581587, -0.0419103876, 0.017363932, -0.0271997917, 0.00403245538, -0.0134147797, -0.00265487982, -0.0148216654, -0.0162655748, -0.00987288263, 0.0207947586, -0.00185579341, -0.00850919075, 0.0221646223, -0.00407564919, 0.00556583749, -0.0129951816, 0.0248673242, 0.00729976268, -0.0132666864, 0.00212575519, 0.0150561463, -0.0156608596, -0.00723805698, -0.0205479376, -0.000297536288, 0.00407256419, 0.00431321561, -0.0493644141, 0.00941009168, -0.0114772264, -0.0256941766, 0.0367518067, 0.00263945339, 0.0504010655, -0.0155868139, 0.00971244834, -0.0181414224, 0.00271812803, -0.0202764329, 0.00916944, 0.00480377441, 0.0133900968, 0.0306306183, 0.00260551553, 0.00145470758, 0.0438602827, 0.00941626169, 0.0105824964, -0.0241762213, -0.0236455537, 0.0151548749, -0.0254473556, 0.0256941766, -0.018709112, -0.00295260898, -0.00674441317, -0.0310748983, -0.0169566758, -0.0357645191, 0.000945637061, 0.012908794, 0.0217450242, -0.00356657896, -0.010675054, -0.00335678016, 0.01732691, -0.00364062563, -0.0209675357, 0.00238954625, -0.00126573443, 0.0383561514, -0.0140318349, -0.0250030756, 0.00960137881, -0.017351592, -0.000249907345, 0.00309761707, 0.0404047742, 0.0125755845, -0.0132049806, -0.0484264903, -0.014451432, 0.0325558297, 0.0138590597, 0.0145131378, 0.0312476736, 0.00270578684, 0.000259548833, -0.0186474081, -0.00148170372, -0.0159200244, -0.0136369197, -0.00994692929, 0.0108293183, 0.0054023182, 0.0232382976, -0.0220782347, -0.010668884, -0.000875447, -0.01957299, -0.0145625025, -0.020683689, 0.029371826, -0.0239294, 0.00383808324, 0.00443662656, -0.0155868139, 0.00725656888, -0.0355423763, 0.0593360253, -0.0195606481, -0.00707762269, 0.00912007503, 0.0260890927, -0.00784277171, -0.00390904443, -0.0285079498, 0.0319634564, 0.0245464556, 0.00491484441, -0.0195606481, 0.0414414257, 0.00272275601, 0.00271041482, 0.0133900968, -0.00431938609, -0.0128470883, 0.02090583, 0.0161421634, 0.0155004263, -0.0151795577, -0.0315685421, -0.00717018126, -0.0121004516, 0.0178452358, -0.00338454754, -0.0293471441, -0.014673572, 0.0208071, 0.00697889412, -0.0119523583, 0.0134147797, 0.00591447391, 0.0116438307, -0.00093406724, -0.0182771739, -0.00653461413, 0.022917429, -0.0137603302, -0.0105701555, 0.0281377155, -0.0292730983, -0.00937306788, -0.00216586376, -0.00431321561, -0.00339380349, 0.0116993664, 0.0390225686, 0.00440577371, -0.0168209244, 0.0241885632, -0.0123040797, -0.0104405731, 0.0154634025, -0.00139454473, -0.0250277575, 0.0272491556, 0.0111810397, -0.00479451893, -0.0266321022, -0.0153153092, 0.010668884, -0.0316179059, -0.01912871, -0.0121744983, 0.0611131452, -0.00847216789, 0.00747870887, 0.014451432, 0.0208934881, 0.00980500691, -0.0250154175, 0.00228156149, -0.00410650205, 0.0287547708, -0.0213994738, -0.00842280313, -0.0134394616, 0.0190670043, -0.0197581071, 0.0185116548, -0.00469887536, 0.000763605756, 0.0289028641, 0.0345304087, -0.0126002664, 0.00531901559, -0.018906571, -0.000900129206, -0.00692953, -0.0155374492, 0.0238800347, 0.0178452358, 0.0027366397, -0.00467727799, 0.0154016968, 0.0274712965, -0.00548870582, -0.0215599071, -0.00908305217, -0.00117626146, -0.00968159549, 0.00364988134, 0.0281130336, -0.0154016968, -0.0348019116, 0.027372567, -0.00912624598, -0.00996544119, 0.0381833725, 0.00928668, 0.0455139913, 0.0297173765, 0.000802171708, -0.0192891452, -0.0283351727, 0.0280143041, -0.0134394616, 0.0278415289, -0.00752807315, 0.0139084235, 0.000870047777, -0.0152165806, 0.0390719324, -0.0218684357, -0.00733061554, -0.0374182239, 0.0124274911, 0.0124151502, -0.0107922954, -0.00879303645, -0.0172281805, 0.0142539749, -0.0133037092, 0.00461557275, -0.0343823135, -0.0140318349, 0.022226328, 0.0197210833, 0.008459826, -0.0215845909, 0.0310255345, 0.00926816836, 0.0209922176, -0.00436258, 0.00472664274, -0.0132790273, 0.0134888263, 0.0278908946, -0.00667653698, 0.000265526556, -0.0245587956, -0.006343327, 0.0204492081, -0.00905219931, -0.0353449211, -0.00152335491, -0.0132420044, -0.0308280773, -0.0216709785, 0.02180673, 0.0180426929, -0.00323645445, 0.00776872458, 0.00291712838, -0.0380846448, 0.00351104396, 0.0259656813, -0.00799086411, 0.0190546643, -0.00481920084, 0.00662100222, -0.022682948, 0.024015788, 0.00412809895, 0.00316549302, 0.00882388931, 0.00567382248, 0.0225225147, 0.0116808545, 0.0358632468, -0.0151672158, 0.0164383501, 0.0176477786, -0.0274466146, 0.00158583175, 0.0387757458, 0.00986671261, 0.0269776527, -0.0145378197, 0.000524496892, -0.000743165845, -0.0363815725, 0.0225348547, 0.00791064743, 0.00965074264, 0.0368011706, 0.00366839301, -0.0215228852, 0.0368999, 0.00714549888, 0.0190299824, -0.030038245, 0.00123411033, -0.0163272806, -0.00789830647, -0.0121868392, 0.028680725, -0.0042083161, -0.0189559348, -0.00377329229, 0.0218560938, 0.0252252147, -0.0034369973, -0.00033128151, 0.00992841739, -0.0402813628, -0.0230902042, 0.00432247156, 0.0258422699, 0.00283691124, 0.00192675483, 0.01868443, 0.0218931176, 0.00997778215, 0.0278908946, -0.00747253792, -0.0385289267, 0.0144144092, -0.032037504, -0.000854621409, -0.0165494196, -0.00598235, -0.035838563, 0.0036251992, 0.00347710587, -0.0230902042, -0.00644822652, 0.00452609966, 0.014476114, 0.0167715605, -0.0174873434, -0.00244199578, -0.0466246903, -0.0384301953, -0.0110637993, -0.00763914315, -0.0398124, 0.00245279423, -0.0283104908, 0.0298901517, -0.0114710554, 0.0118042659, -0.0185610205, -0.000527196506, -0.00150869985, 0.0116191488, -0.00950882, 0.00893495884, -0.0226212423, 0.0101443874, -0.0422312543, -0.00857706647, 0.00125262199, 0.0209922176, 0.00707762269, 0.0342835858, 0.0443786085, 0.00131509884, -0.00325496611, 0.0230902042, 0.036233481, -0.0140688578, -0.0454893075, -0.00752190268, 0.00709613459, -0.0154757435, -0.0140935406, 0.0066271727, 0.0458595417, 0.00806491077, 0.0115944669, 0.0239417404, 0.0167715605, -0.0231025461, -0.00622608652, -0.00737380935, -0.00308990385, -0.00319017516, -0.0114587145, -0.0423793495, 0.0126619721, 0.0147352777, -5.27389348e-05, 0.0028353685, -0.00555966701, -0.00528507773, -0.0155127672, -0.0900900587, 0.0119215064, 0.00750339078, -0.0163519625, 0.0380599648, 0.0267061479, -0.0506972522, 0.00822534505, -0.0514870845, -0.00839812122, -0.00836726837, -0.024028128, -0.0295446012, 0.0300135631, 0.00974947214, -0.0160928, -0.0242872909, -0.0239047166, 0.00876835361, 0.00652227318, -0.00269036065, -0.00681228889, 0.0157349072, 0.00801554695, 0.0255214013, -0.00831790362, 0.0163149387, 0.0257435422, 0.000635952514, -0.0128717711, -0.00731210364, 0.00306367897, 0.0136862835, -0.00909539312, 0.0261384565, 0.0230655223, -0.0181043986, 0.0289028641, -0.0274466146, -0.0174132977, 0.0397630371, -0.00588670652, 0.0349006392, 0.0195853319, 0.0142909978, -0.00826236885, 0.00990373548, 0.0125385607, 0.0109774116, -0.0201283395, -0.0155497901, 0.0168949701, 0.00353264087, -0.0236825775, 0.0333456621, -0.0349746868, 0.02136245, 0.0420091152, 0.0124953669, -0.02226335, 0.00505368179, -0.0337158963, -0.00556892296, 0.00432247156, -0.020227069, 1.0726154e-05, 0.0318647288, -0.0294211898, 0.000999629381, 0.0454399437, -0.0384548791, -0.0106010083, 0.0239294, -0.0551894158, -0.0025484378, 0.0137479892, 0.00986671261, 0.0304084793, -0.00973096, -0.000968005275, 0.033839304, 0.0193138272, -0.00825002789, -0.0308774412, -0.0342095383, 0.00655312603, 0.00653461413, -0.00478834799, 0.0205726195, 0.0130939111, 0.0186350662, 0.011773413, 0.015883, -0.023781307, -0.00894113, 0.0574601777, -0.0114278616, -0.0284092203, 0.000456620823, -0.0211526509, 0.00688016508, 0.00050637091, 0.0046279137, 0.00837960932, -0.0343576334, 0.00065523549, 0.00694804126, -0.00952733215, 0.00699123507, -0.0304084793, 0.00808959361, 0.0172281805, -0.0188201834, 0.0141182225, 0.0036467961, 0.00348944706, 0.00770084839, -0.00361902849, 0.0067814365, 0.00425768085, 0.011563614, -0.00736763887, -0.02046155, -0.0270023346, 0.00156500621, 0.00489941798, 0.00663334318, 0.00901517645, 0.0363322087, 0.0212020166, 0.013130934, -0.00417746371, -0.00723805698, -0.0311736278, 0.000746636768, -0.0118042659, 0.00447056489, 0.00223836768, 0.00661483128, -0.013130934, 0.00342774158, -0.0211773328, 0.00758360792, -0.0183882434, 0.0177094843, 0.0328767, 0.0119091645, -0.00290787243, -0.0084783379, -0.00248981756, -0.0143650444, -0.0196470376, -0.0179069415, 0.00275206612, 0.0345797725, 0.0182648338, 0.0471676961, -0.000807570934, 0.0345797725, 0.0228433833, -0.0082130041, 0.0181414224, -0.0216462947, 0.0194989443, -0.0175490491, -0.0101011936, 0.0024157709, 0.0195359662, 0.0195359662, -0.00848450884, 0.0204862319, 0.00394298276, 0.0121066226, -0.00376712182, 0.0002878948, 0.0301369745, -0.0245834775, -0.00837960932, -0.0328520164, -0.0304578431, -0.00111069926, -0.011575955, -0.00475132465, 0.0254720375, -0.0103295036, 0.01732691, 0.00125493598, -0.0473898388, 0.0101567283, -0.0107491007, -0.0150931692, 0.0215228852, -0.0223003738, -0.0117117073, -0.00456620846, 0.0244353842, 0.0240034461, -0.00686165364, 0.0318647288, -0.0122547159, -0.00704059936, 0.0205726195, 0.00523571298, -0.015883, 0.000360977283, 0.00170615758, -0.025817588, 0.0187584776, -0.0277181193, -0.00534986844, -0.026015047, 0.0174379796, -0.00316857826, 0.013353074, -0.0107799536, -0.0276687536, -0.0395162143, -0.0130198644, -0.0313217193, 0.00161359925, 0.00645439699, 0.000807570934, 0.00550104678, 0.0119708702, 0.0165617615, -0.00493644131, -0.0205973014, 0.0121744983, -0.00922497455, 0.00414352538, 0.00304208207, 0.039343439, -0.0156732015, -0.0144144092, 0.00610576104, -0.0212266985, -0.0114648854, -0.0218437538, -0.00905219931, -0.00183111127, 0.0141182225, -0.0414661095, 0.0333209783, -0.0156485196, -0.0171788167, 0.00722571602, -0.0110514583, -0.0235221423, 0.0196964014, -0.0214488376, -0.00984820072, -0.00762063125, 0.0252622385, -0.00172312662, 0.00470813084, -0.00244508102, -0.0029263841, -0.018462291, 0.00933604501, -0.0416388847, -0.00824385695, 0.0184252672, -0.00133823836, -0.00227847626, -0.0279649403, -0.016006412, -0.0196717195, 0.0140441759, -0.0028693066, -0.0210415814, 0.0159940701, 0.00125879259, 0.000548407785, 0.000424225436, -0.00940392073, -0.0427989475, 0.015771931, -0.00407256419, -0.0101628983, -0.000897815276, -0.00725656888, 0.01911637, 0.00902134646, -0.00605639676, 0.00857089646, 0.00485313917, 0.0117302192, 0.00563988416, -0.011353815, -0.0257188603, -0.00918795168, -0.00253455411, -0.00485005369, 0.00628470676, -0.0225965604, -0.00339071825, 0.0160310939, 0.0112674274, 0.00212729769, 0.0327532887, 0.0284092203, -0.014463773, -0.00823768694, 0.00412192848, -0.0223620795, 0.0392200276, -0.00242811209, 0.017561391, 0.0123287626, -0.014451432, -0.0185116548, -0.0091941217, -0.0115204202, -0.00305442302, -0.0376403667, 0.0261631384, -0.00869430695, -0.00290633, -0.0101011936, -0.0140071521, -0.00640503271, 0.0122917388, -9.39080855e-05, 0.000307177776, -0.0238923766, -0.0136369197, -0.0330741554, -0.0346044526, 0.00788596552, 0.0256694946, 0.0146365492, -0.00882388931, -0.00240960042, -0.00504751131, 0.0211156271, 0.017129451, 0.0226706062, 0.00611193152, 0.0368011706, -0.0291003212, -0.00169690175, 0.0107922954, -0.02046155, -0.0361841172, 0.00316857826, -0.0157842711, 0.00699123507, -0.0158706587, 0.000294258178, -0.0236702356, 0.00819449313, 0.00659014937, -0.0203011148, 0.00124182354, 0.0405281819, 0.0236455537, -0.00478526298, -0.0227569956, 0.000898586586, -0.0254720375, 0.0102060921, -0.0199308824, 0.0180426929, 0.026237186, -0.0109342178, -0.0249537118, 0.00215969305, -0.0203628205, -0.0134271206, 0.0310748983, -0.00565531058, -0.0050968756, 0.00033128151, -0.00717018126, 0.0166234672, 0.00189898734, 0.0168209244, 0.0168456063, 0.00692953, 0.0191040281, 0.024015788, -0.00917561073, -0.0165370777, -0.0196840595, 0.0152906273, 0.0114648854, 0.0212760624, -0.00264253886, -0.00821917504, -0.0392447077, 0.00963223167, -0.00933604501, 0.0163643025, 0.00571393082, 0.00734295649, 0.02090583, -0.0175490491, 0.00335369492, -0.0307540298, -0.0110761402, -0.00438726228, -0.00380106, 0.00587128, 0.0118474597, -0.000196011431, 3.50227019e-05, 0.00395532371, -0.0100703407, -0.00312384171, 0.00614895485, -0.0190423224, -0.0214735195, -0.00179563055, 0.0018480802, 0.00665802555, 0.014908053, 0.00267493422, 0.00103511009, -0.0148710301, 0.0185363367, 0.0203998443, 0.00996544119, 0.0134641435, 0.0060255439, -0.0011338389, -0.0097433012, -0.00881771836, -0.0143280216, -0.00438726228, -0.00567382248, -0.00761446077, 0.00293101207, 0.0188695472, 0.00201931316, -0.0170060415, -0.00855238456, 0.00808959361, 0.0159076825, -0.0141305635, -0.00215043733, 0.00390287396, -0.00198691757, -0.00376712182, 0.00506910821, -0.00797235314, 0.0334937535, 0.0090275174, 0.0185116548, 0.0149203939, 0.00562137272, 0.0233123451, -0.0136122368, 0.0156732015, 0.0251141451, 0.0270763803, -0.0194372386, -0.0252375565, 0.0121004516, -0.00771936029, -0.000516398053, -0.0193014853, 0.0180303529, 0.0133900968, -0.00940392073, 0.00024412245, 0.00716401078, 0.0292730983, 0.00387819181, -0.024225587, -0.0130692283, -0.0436134599, -0.0336912125, 0.0302603859, 0.020671349, -0.0132173216, -0.00787362363, -0.0232136156, 0.000669504865, 0.00377020705, 0.0135998959, -0.0246328432, -0.00543625606, 0.00798469409, -0.00796618219, -0.0139577882, -0.00258391863, 0.000823768671, -0.0211773328, 0.0155251082, -0.0112674274, 0.00228310423, 0.00510613155, 0.0106195193, -0.00032067587, 0.0109650707, -0.00407564919, -0.00344316778, 0.00388744753, 0.00553807, 0.0112180626, -0.0225471966, -0.00179563055, 0.00448907632, 0.0160557758, 0.0201777034, -0.00179563055, 0.0211773328, -0.00468344893, 0.0128841121, -0.0170183815, -0.0151918987, -0.00511230202, -0.0303591155, 0.00431321561, 0.00724422792, 0.00211187126, 0.0152536035, 0.0023802903, 0.0177958719, -0.0174503196, -0.0380599648, 0.00322411326, 0.0030791054, -0.00408490514, -0.0253979918, 0.0124891968, -0.0184993148, 0.00271504279, 0.0322596431, 0.00908305217, -0.00248673232, 0.00973713, -0.0151795577, 0.0122176921, 0.0162408929, -0.00186813448, -0.0301122926, 0.00611193152, -0.00994692929, -0.00180025841, -0.00817598123, -0.0146242073, 0.0366777591, 0.0101875812, 0.0441564694, 0.00330741564, 0.0250524394, -0.0211032871, -0.00865111314, 0.00800320599, 0.00675058365, 0.0383314677, 0.00317783421, 0.0163519625, 0.00537455035, 0.0174503196, -0.011347645, -0.00360977277, -0.00285233743, 0.0166481491, 0.00563371368, 0.00713315792, -0.00263019768, -0.017808212, -0.00949030835, 0.0178452358, -0.00909539312, 0.0130198644, -0.0381340086, 0.00414044037, 0.0288535, -0.0194495786, 0.013797354, 0.0412439667, 0.0106133493, -0.0205602776, -0.0097433012, -0.00612118747, -0.0151918987, -0.0270516984, -0.035122782, -0.0110514583, -0.0206343252, 0.0330494754, -0.0306553, 0.00202394091, -0.00683697127, 0.00916944, -0.00582500082, -0.00125879259, -0.0046063168, -0.0195483081, 0.00692335889, 0.0428236276, 0.0179069415, -0.0143897263, 0.00342465611, -0.000262248446, 0.0145378197, -0.0167345367, -0.00609650509, 0.00721954554, 0.00586202415, 0.00279526, 0.00581266, 0.015574473, -0.00534061249, 0.0102863098, -0.00590213295, -0.00612427248, -0.00530358916, -0.00471121632, -0.0140811987, -0.0168579482, 0.00896581169, -0.0033814623, 0.0298654698, 0.0407503247, 0.00148478895, 0.0184869729, -0.0215352252, -0.00493952679, -0.000455078203, 0.0166234672, -0.00562445773, 0.0094964793, -0.0116808545, -0.00606565224, 0.0126126073, -0.013562873, 0.0208441243, -0.00470504584, -0.00463408418, 0.0136986244, 0.0208441243, -0.00542082964, -0.00552881416, -0.0193138272, -0.0206343252, 0.0103726974, 0.00705294078, 0.0167468768, 0.0399111286, -0.0118906535, 0.0135505321, -0.0165000558, 0.0231765918, -0.00707145222, -0.00691101793, -0.00464334, 0.00220134435, -0.00422374252, 0.0202764329, 0.0213377681, 0.0131926397, 0.010452915, 0.00442428561, 0.0142909978, -0.0101875812, -0.00734295649, 0.00107136206, -0.0289522279, -0.00315160933, 0.0119091645, -0.00242502685, -0.00280914363, -0.00185887876, 0.00461865775, 0.00130738562, -0.00165833579, -0.0271504279, 0.0150808282, 0.0158212949, 0.0294952374, -0.0138960825, -0.0323090106, -0.000657935103, -0.0197087415, 0.0217573661, 0.0142786568, 0.000430395972, -0.00952116121, 0.0352215096, -0.00447056489, 0.0302850679, 0.00941009168, -0.0089904936, -0.0153153092, -0.0132666864, 0.000961834739, 0.0197827891, -0.00465259608, -0.00284153898, 0.0194742605, 0.0159200244, 0.0132296626, -0.0115142493, 0.0129581587, -0.0151918987, 0.00440577371, 0.000787131, -0.00096106343, 0.0332716145, 0.00713315792, 0.007669996, 0.0106997369, 0.00206867745, -0.00599160558, -0.0114340326, -1.27026597e-05, -0.0026795622, -0.00870047789, -0.00803405792, -0.00419289, 0.0225348547, 0.0202517509, 0.0266321022, -0.0120325759, 0.0191904157, -0.0149944406, 0.0114155207, 0.00435332442, -0.00505985226, -0.00573244272, 0.00248981756, 0.0148586882, 0.00356349372, -0.00254381, 0.0102801388, 0.00670121936, -0.0265086908, -0.0114340326, 0.0112612573, 0.0173762739, -0.000492487161, 0.00902134646, -0.00158274651, -0.0173762739, -0.00364062563, 0.00183265388, 0.00791064743, -0.00400777347, -0.00309607433, -0.0200913157, -0.0159940701, 0.0303344317, -0.0102492869, 0.00451067323, 0.00133129652, 0.0141182225, -0.00990990642, -0.00257620541, -0.00447056489, -0.0108169774, -0.0180920586, -0.0227816775, -0.00609033462, -0.0143156797, 0.00265025208, -0.0141552454, -0.00950264931, 0.00474515418, -0.0120202349, 0.0115451021, -0.0069850646, -0.0023232128, -0.00446130894, -0.00189127412, -0.00879303645, -0.0233370271, 0.00742317364, 0.00283228327, -0.00064212305, -0.00310070231, 0.00621066, 0.0183635615, -0.0125015378, -0.0146118663, -0.0128594302, 0.00334443897, 0.0150067816, -0.00142231223, 0.00579723343, 0.00550413225, 0.00931753311, 0.00438726228, 0.00934221502, -0.0115574431, -0.001501758, -0.00786128268, 0.0238676947, -0.0323090106, -0.00254535256, -0.0249043461, 0.0215969309, 0.0087621836, -0.011347645, -0.00684931222, -0.000887016824, 0.0115080792, -0.011569785, -0.00071578403, -0.0104344031, -0.0109527297, -0.00374243967, 0.0156114958, -0.0105269616, -0.0274959784, 0.012236204, 0.0152165806, 0.0271010641, -0.0112550864, -0.00862026121, 0.0270516984, -0.0337899402, 0.0306553, -0.0150684873, -0.0123596154, 0.0248796642, 0.0107799536, 0.00815746933, -0.000222525516, -0.0097433012, -0.0142169511, -0.00890410598, 0.0142909978, 0.0348265953, -0.0154016968, -0.00341848563, 0.00377637777, 0.0028909035, -0.00514315488, 0.0196717195, 0.0205602776, 0.0102431159, 0.0241391975, 0.0139701292, 0.013130934, 0.00109141634, -0.00394298276, 0.00912624598, 0.0150684873, 0.012674313, 0.0120757697, -0.00485313917, -0.0102492869, -0.0148586882, 0.00441811513, -0.0234851204, -0.0146612311, 0.0147846416, 0.00481920084, -0.00376095134, 0.00916944, -0.00773787173, 0.0148833711, 0.000429624663, 0.00932370406, 0.00412192848, 0.0395655781, -0.0172528625, 0.0186474081, -0.0156485196, -0.022226328, -0.00890410598, 0.02136245, -0.0123040797, -0.00273818243, -0.00488707703, 0.00341848563, 0.00807108171, -0.00789830647, -0.0290015936, -0.00339071825, -0.0205973014, 0.003059051, 0.0157595892, 0.0150561463, -0.0112550864, -0.00274126767, 0.00845365599, -0.00456003752, -0.0106627131, 0.0256694946, -0.00219517387, -0.0223744214, -0.0355176963, -0.0050259144, -0.0184869729, 0.0157595892, 0.00230778637, 0.00574786915, -0.0138960825, -1.47996825e-05, 0.0153276501, -0.00697272364, 0.00403245538, -0.00581883034, 0.00935455598, 0.00413118443, -0.00318709, -0.00461865775, -0.000514084066, -0.00735529745, -0.0194248967, 0.0236332137, -0.00169073115, 0.00417437823, 0.0224361252, -0.00114772259, -0.0229914766, -0.00102199765, -0.0053838063, -0.000345358072, 0.00122948247, -0.0215105433, 0.006229172, 0.0352708735, 0.0027566941, -0.0108293183, -0.0232753213, -0.00112766831, -0.00822534505, 0.00633715652, 0.0150561463, 0.000404556806, -0.00858940836, -0.0172775444, 0.00089241605, 0.0131802987, -0.0176848, 0.00484388322, 0.0245834775, -0.0123781264, 0.0163643025, -0.0115944669, -0.0131679578, -0.0134271206, 0.00947179645, 0.00559052, 0.0232012738, -0.0240404699, 0.024028128, -0.000193601067, -0.0039830911, -0.000765148434, -0.0240034461, 0.0183635615, 0.00404171133, -0.00212729769, 0.0223744214, 0.00744168554, 0.00870047789, 0.0225471966, -4.60381e-05, -0.000828396587, 0.0366530791, -0.00958903786, 0.00323953968, 0.0321115516, -0.0198938586, 0.00297574862, -0.0266074184, 0.015574473, 0.035147462, -0.00389670348, -0.00685548317, -0.0137603302, 0.00853387266, 0.00266259303, -0.0237072594, 0.00234480971, 0.0141429044, -0.00436566537, -0.0196593776, 0.00591755891, -0.00541774463, 0.02136245, 0.00932370406, -0.00276440708, 0.0254720375, 0.0139454473, -0.0128717711, -0.000199771617, 0.0101567283, 0.010675054, -0.0226952899, -0.0195483081, -0.022028869, -0.00616746629, -0.0198815186, -0.00493027084, -0.0286313593, -0.00299888826, 0.0312229916, -0.0175367072, 0.000656392425, -0.0157842711, -0.0201283395, 0.00351721444, -0.0105516436, 0.0194619205, -0.00952116121, 0.0210169, 0.027125746, -0.0246451832, 0.0119029945, -0.0161174815, -0.0189559348, 0.00816364, 0.0145748435, -0.0235098023, 0.0135381902, 0.0308033936, 0.0145501606, -0.023805989, 0.0148216654, -0.0222880337, 0.00223836768, -0.017351592, -0.0106442021, -0.0104344031, -0.00842280313, -0.00812044647, -0.00485930964, -0.00882388931, -0.00562137272, -0.00396766467, 0.00566148106, 0.0043810918, 0.0033043304, 0.000448521983, 0.0179316234, 0.0215969309, 0.032012824, -0.0215845909, -0.0191657338, 0.00964457262, -0.00280760112, 0.0182401501, 0.00504442584, -0.0138467178, -0.00797852315, -0.011798095, -0.0116253197, 0.002113414, 0.0228187, -0.000792144565, 0.00559360534, -0.00869430695, 0.0234357547, 0.0455633551, 0.00668270746, 0.0149327349, 0.0181537624, 0.00679377746, 0.00294489576, -0.00903368741, 0.00222139852, -0.0155004263, 0.00275206612, -0.0159200244, 0.00857706647, -0.0160681158, 0.0141552454, 0.0101011936, -0.0105393026, 0.0119461883, 0.0207700767, 0.00838578, 0.00494261179, -0.000587745046, 0.0150191225, -0.0027165853, -0.0135505321, 0.00523571298, -0.0188695472, 9.487223e-05, 0.000687630847, -0.00812044647, 0.0295446012, 0.00299117505, -0.00688633556, 0.0446501113, -0.00482537132, -0.0174256377, 0.00974947214, -0.00423299847, 0.00334752421, 0.000917869562, -0.00278291875, -0.00924348645, -0.00564296963, 0.0268048774, -0.0154510615, 0.00342465611, -0.0116376607, 0.0115080792, 0.00852770265, -0.0285573136, -0.00578180701, 0.00143079669, 0.00842897408, 0.00410958752, -0.0254967194, -0.0052480544, -0.0110514583, 6.43087187e-05, 0.00100657123, 0.00300043076, 0.00205325102, 0.0278415289, 0.000390094559, 0.005427, -0.0275947079, 0.0242749508, 0.0244353842, 0.00161359925, 0.00166296365, -0.00837960932, 0.00984820072, -0.00803405792, 0.00970010739, 0.00593298534, 0.00519560464, 0.0120819407, -0.000300621556, 0.00564605463, -0.00404171133, -0.0224484671, 0.0131432749, -0.0150684873, 0.00786745362, 0.0075157322, -0.00920029264, 0.0209428519, 0.0194742605, 0.00492101489, -0.0195483081, 0.00979883596, 0.00764531363, -0.000571933, -0.0140565168, -0.013575214, -0.0023586934, -0.00648525, 0.00108524575, -0.00359126111, -0.0154634025, -0.0252252147, 0.0171417929, 0.0107429307, -0.00233401125, -0.00256694946, -0.00858323742, 0.0368505344, -0.0142292921, 0.0161421634, 0.00489016203, 0.0129334768, 0.0328273363, 0.0112242335, -0.00619214866, 0.0149203939, 0.0104097212, 0.00180025841, -0.019350851, -6.12234435e-05, -0.0194989443, 0.00639886223, -0.0104097212, -0.0150684873, 0.00657780794, 0.0036467961, -0.00830556266, -0.0181167405, -0.00970627833, 0.0124768559, 0.0103295036, 0.00430704514, -0.0150561463, 0.00362828444, 0.0100333169, -0.0100456579, 0.0131432749, 0.00433481252, -0.0324077383, 0.00407564919, 0.00281222886, 0.0288781822, 0.0264593251, -0.00489633298, -0.00293872529, 0.0165987834, -0.00888559408, 0.00895964075, -0.0230902042, -0.00681228889, 0.00708379317, 0.0109959235, -0.0100518288, -0.00633715652, 0.0117549011, 0.00528816273, 0.0142539749, 0.00993458834, -0.0116253197, 0.0289028641, -0.00345550897, 0.00048091737, -0.0232012738, 0.0058743651, 0.00164753734, 0.00361594325, 0.0328520164, 0.00172312662, 0.0168826301, -0.00481920084, 0.0024157709, -0.0201036576, -0.00297266338, -0.000714241352, 0.0233370271, -0.014463773, -0.0118289478, -0.00499197654, -0.00412501395, -0.0129458178, 0.012230034, -0.0101382164, 0.0137233073, -0.000261862791, -0.0048315418, 0.00576946605, 0.0134394616, -0.00834258553, -0.0152042396, -0.0157472473, -0.00150021538, 0.00410650205, -9.08228103e-05, 0.0121621573, 0.00148247508, -0.00466185203, -0.0140071521, 0.0179192815, 0.012686654, 0.0156608596, -0.0210045576, -0.013562873, -0.0192397796, 0.00649142032, -0.021127969, 0.0167345367, 0.00597309414, -0.00529741868, 0.0248426404, 0.0341354907, -0.00770084839, 0.00728742173, 0.00315160933, -0.00716401078, 0.00702208793, 0.0129211349, 0.0075157322, 0.00467727799, 0.0391953439, -0.0179192815, 0.00299117505, -0.00664568413, 0.0225101728, 0.00623225747, -0.0159570463, 0.00449833227, 0.0160310939, 0.0224237852, -0.0249907337, -0.0228187, -0.0122423749, 0.00857089646, -0.0229914766, 0.0290509574, -0.00339071825, 0.0099531, -0.0133654149, -0.00837343838, -0.00390595919, 0.0396149419, 0.000322025677, 0.0234110728, -0.00260705804, 0.0417376123, 0.00970010739, 0.00352647039, -0.0350981, 0.0136739425, -0.00480377441, -0.00986054167, -0.010224604, 0.0183141977, -0.00527890678, 0.0159940701, 0.00924348645, -0.00891644694, 0.016919652, 0.0106010083, -0.00401702896, 0.00318400469, 0.00535295345, -0.0145254787, 0.021782048, -0.0132790273, -0.0134641435, -0.0128347473, 0.000698043674, 0.000557277934, -0.0150561463, 0.018906571, 0.0125262197, 0.00368690467, 0.036233481, 0.0102924807, 0.011569785, 0.00763914315, 0.021782048, 0.0184252672, 0.00926816836, -0.0414661095, -1.41488827e-05, -4.33866917e-05, 0.0186597481, -0.0073861503, -0.0137603302, 0.0089904936, 0.0079415, -0.00123642432, -0.00410033157, -0.0055349851, -0.00860791933, 0.00380414515, 0.00704059936, -0.0112304045, -0.0128841121, 0.00649142032, 0.00668270746, -0.00212421245, -0.00596383819, -0.00568307796, 0.0340861268, -0.00373935443, -0.0200542938, 0.0276440717, 0.0324324183, 0.00313464017, -0.00252067042, 0.0246698651, 0.00685548317, 0.00961989, -0.0336418487, -0.0112118926, 0.00343391206, -0.0095396731, 0.0177835301, -0.028680725, -0.0035141292, 0.00822534505, -0.00182494067, 0.0201036576, 0.0147599597, -0.0272738393, 0.0159323644, -0.00491793, 0.0267801937, -0.00396149419, 0.000258391839, 0.00879920647, 0.0162038691, 0.00966925453, 0.0363322087, -0.0112057216, -0.0162162092, 0.0246328432, 0.00160742877, -0.023361709, -0.0124028092, -0.00863877218, 0.00503208488, 0.00188201829, 0.00404788181, -0.00828088075, 0.00310070231, 0.0163149387, 0.00379797467, -0.0132420044, 0.00543317059, 0.00456003752, 0.0106380312, 0.00847216789, 0.00297266338, 0.0218684357, -0.00488399155, -0.00965691358, 0.00102816813, -0.000911699, -0.00634949794, 0.0249537118, 0.0237689652, 0.0281377155, -0.00907071121, 3.04429959e-05, 0.00912007503, 0.00997778215, -0.00787979458, 0.0270023346, 0.00206250697, -0.000903214503, 0.0172405224, -0.0208811462, -0.0134888263, -0.00704059936, 0.00259780232, 0.00693570031, 0.00668887794, -0.00196223543, -0.0132049806, -0.0169319939, -0.0120449169, 0.0203875024, -0.0222510099, -0.0170307234, 0.0114278616, 0.0308774412, 0.0171788167, -0.00503825536, 0.0101443874, 0.0112674274, -0.00788596552, -0.00956435502, 0.0143527035, -0.013785013, 0.0167468768, 0.0235344842, 0.0125200497, -0.00530975964, -0.016919652, -0.0212020166, -0.00691718841, 0.0109959235, -0.0392940752, -0.0314944945, -0.00639886223, -0.000669504865, -0.00480686, 0.00458780536, -0.0198444948, 0.0214858614, -0.0218437538, -0.0349993706, 0.0062908777, -0.00684314175, -0.00701591745, 0.0106195193, -0.0185363367, -0.0033598654, 0.0230284985, -0.0142292921, 0.0387510657, 0.00303436886, -0.00527890678, 0.0178328939, -0.00572935725, -0.00127190503, 0.000349986, -0.0151548749, -0.00770084839, -0.0002878948, 0.00652844366, 0.0134024387, -0.0131556159, -0.0121436454, 0.00747870887, 0.00156886282, 0.0102122631, -0.0189559348, -0.0183759034, -0.00294952374, 0.0171911567, -0.00805257, -0.0148586882, -0.00734295649, -0.0193261672, -0.00382265681, -0.0272244737, 0.0264840089, -0.00155652163, -0.00513081392, -0.00503825536, -0.015352333, -0.000786745339, -0.0190670043, 0.00149250217, 0.0163396206, -0.0208688062, -0.00850302074, -0.000688402157, 0.0134024387, 0.00825002789, -0.0108663412, -0.00748487934, 0.0168949701, 0.00375478063, 0.0219548233, 0.00729976268, -0.0188448653, -0.0121066226, 0.0316672698, -0.0230778642, -0.0114895673, -0.0217326824, 0.0219671633, 0.0151548749, -0.00274898089, 0.00855855551, -0.0146488901, -0.0152412625, -0.0204245262, -0.0142169511, 0.0251881927, -0.00344625325, 0.000578103587, 0.00314081088, -0.00365296658, 0.00151641306, -0.0325064659, 0.0122793978, 0.0194989443, -0.00215197983, 0.0145871844, 0.0147105949, 0.0146612311, -0.00264870934, 0.00266876351, 0.000128810265, 0.0106318602, -0.0191657338, 0.0094779674, 0.00810193457, -0.00916327, -0.0140935406, 0.0181043986, -0.0505985245, 0.0105146198, 0.0178575777, 0.0339133516, 0.00372392801, 0.00351104396, 0.00656546699, -0.00667653698, -1.40404154e-05, -0.00641737366, -0.00724422792, -0.00729359221, 0.02002961, 0.0128347473, -0.0033043304, -0.0315932259, 0.00844131503, -0.0100641698, 0.014908053, 0.013575214, -0.0027937172, 0.00591447391, 0.00105593563, -0.0107120778, 0.0137726711, -0.0033043304, 0.0119893821, 0.0109712407, -0.00510304607, -0.000428853353, -0.00184962293, 0.0307540298, -0.00468036346, 0.0117117073, -0.0119338473, -0.0099901231, 0.00268419, -0.0101443874, 0.0030806479, -0.00869430695, -0.00059468695, -0.0141429044, -0.00398617657, -0.0063618389, 0.00591755891, 0.0130445464, -0.00361902849, -0.0050968756, -0.00860791933, 0.0139084235, 0.00731827458, 0.0139207644, -0.00718869269, 0.00305442302, -0.0168209244, 0.0150067816, -0.000133438181, -0.0140441759, -0.00266567827, 0.00990990642, 0.00388744753, -0.0479081646, 0.00228310423, 0.00868813694, -0.00435023895, 0.00157349068, -0.0101382164, 0.016253233, 0.00792298838, -0.00384425372, 0.00389053277, -0.0103726974, -0.0116253197, -0.00715166936, -0.00266722101, 0.00728742173, -0.0119153354, 0.000682617305, -0.00810193457, -0.00828088075, -0.00509379059, -0.000301971362, -0.00119862973, -0.00509996107, 0.00255923625, 0.0219548233, 0.00360051682, 0.00147861848, 0.00675675413, -0.0291990507, 0.0159693882, 0.037122041, -0.0163025968, 0.0160681158, -0.00936689787, 0.024460068, -0.000794458552, -0.0104097212, 0.0128594302, 0.0095396731, 0.00418363418, 0.000648293586, 0.0475132465, 0.000340344501, 0.0100641698, -0.0122608859, -0.027372567, -0.0121313045, 0.0151918987, 0.00240497245, 0.0193014853, 0.00504442584, 0.0116993664, -0.00656546699, 0.0138837416, 0.0429717228, 0.00293255481, -0.00485313917, -0.0031716635, 0.0169937, -0.00304516731, 0.00252992613, -0.0114031797, -0.0153893558, 0.00275977934, -0.00268573267, 0.00298500434, -0.0254473556, 0.00330124516, -0.0112242335, 0.0213377681, 0.0148586882, -0.0199432224, 0.0134147797, 0.00723805698, -0.0197827891, -0.00597617915, -0.0188448653, -0.00716401078, 0.00609341962, -0.0161298215, 8.06510361e-05, 0.0141922692, -0.00984820072, -0.00357892, -0.0146982539, -0.00563371368, 0.00692335889, 0.00347710587, 0.00534061249, -0.0444279723, 0.00598235, -0.00514932536, 0.00116237765, 0.0145378197, -0.0264346432, -0.00443971204, 0.0165370777, -0.00159508758, -0.00999629404, -0.0237689652, 0.00732444506, -0.00842280313, -0.00240651518, -0.0152289215, 0.0174503196, -0.00786128268, -0.0166975129, -0.00702208793, -0.0034154004, 0.00587745057, 0.00544242654, 0.0270516984, -0.00855238456, -0.0144884558, -0.0214118138, 0.00721337507, 0.00233709649, -0.0152412625, 0.0105516436, 0.0164013263, -0.00967542548, -0.0090090055, 0.0087621836, 0.0136616016, -0.00862643123, 0.0137479892, 0.00393989729, 0.00174318091, -0.00110375741, 0.0219178, 0.019350851, 0.0101382164, 0.0185239967, -0.027125746, -0.0130198644, -0.00344316778, 0.0162655748, -0.00506910821, -0.00344008254, -0.0120017231, -0.0157595892, 0.00453535561, -0.0191780757, 0.00183573912, 0.00201314245, 0.0123411035, 0.0157225654, 0.00605331128, -0.00277674827, -0.0123719564, -0.00530975964, 0.000217511944, 0.0177341662, 0.00194989436, 0.00171695603, -0.0112427454, 0.00474823965, -0.00565222558, 0.000704985519, 0.0174503196, 0.026237186, -0.00438726228, -0.00897815265, 0.0095396731, 0.0294952374, -0.00610267557, 0.00115003658, -0.0375416353, 0.00258083316, -0.00112921093, -0.018252492, 0.0204985738, -0.0154016968, 0.0164013263, -0.000927125395, 0.000172968284, 0.00418363418, -0.00557817891, 0.013118593, 0.0177218243, 0.0224237852, -0.0155621311, 0.00197766186, -0.00786745362, -0.00584042724, 0.0220905747, -0.00529433321, 0.00154032395, 0.0165864434, -0.0138590597, 0.0122917388, -0.00482537132, 0.0197457653, 0.0125509026, 0.0100024641, -0.00982351881, -0.00260860077, -0.00064790796, 0.00512772845, 0.0168702882, -0.00319326064, -0.0137479892, -0.0080464, -0.00172004127, -0.0179069415, 0.0141305635, -0.0180303529, -0.00246976339, 0.0049117594, 0.00199617352, 0.00290478719, 0.00672590127, -0.00996544119, 0.00316857826, -0.0206960309, 0.00797235314, 0.0103480155, 3.50709088e-05, -0.0309761688, -0.00734295649, -0.00545168249, -0.00963223167, 0.0239170585, 0.00021384818, 0.00661483128, 0.0208564643, -0.0154510615, 0.0166111253, 0.00933604501, 0.00945328549, -0.0137356482, -0.00910773408, 0.00418363418, -0.00562445773, -0.020683689, -0.00962606072, 0.020264091, 0.00715166936, -0.030926805, 0.00605022581, 0.0260644108, 0.0139577882, 0.0113044512, -0.00749105, 0.00963223167, -0.0149697587, -0.0130322054, 0.00058234582, -0.0049117594, -0.0497346483, 0.00951499119, -0.0159447063, -0.0123102507, -0.00172775448, -0.000323761138, 0.0101567283, -0.00659632, -0.0230531804, -0.00299580279, -0.00263328291, -0.00174318091, 0.0138467178, 0.012686654, 0.00699740555, -0.0248673242, -0.0218931176, 0.0211032871, -0.010675054, 0.0191533919, -0.00321794278, -0.00460014632, -0.0150438054, 0.0136739425, -0.017351592, -0.0184499491, -0.000286545, -0.0256201308, -0.000652921502, 0.0110082645, 0.0114710554, 0.009558185, -0.0375169553, -0.00259317434, 0.00138374628, -0.00443971204, 0.00401394395, 0.0113291331, 0.0163396206, 0.0016028008, -0.00597926462, -0.00237566233, -0.00117240485, 0.0136122368, 0.00663334318, -0.00249753078, -0.0119338473, 0.00106364884, 0.0112180626, 0.0038504242, 0.0155251082, -0.0132666864, -0.00484388322, -0.00780574791, -0.00153492473, -0.0171417929, 0.0207453948, 0.0159323644, -0.0183018558, 0.00528507773, 0.0111625278, -0.0107244188, -0.0103850383, 0.00650376175, 0.0182154682, 0.00133206788, -0.00208564638, 0.0211403109, -0.00398617657, 0.0037578661, 0.0219424814, -0.01957299, -0.0138220359, -0.0143403625, 0.00916327, 0.0257929061, -0.00501357345, 0.00159354496, -0.00410033157, -0.0116314897, -0.0182401501, 0.00200542924, 0.00438417681, 0.00571701629, 0.0160681158, -0.0103973793, -0.0100518288, 0.0199432224, -0.0114093497, -0.00300814398, -0.0110391174, -0.0204985738, 0.0311489459, 0.00372392801, 0.0240898337, -0.0116253197, -0.011341474, -0.0250277575, -0.0204368681, -0.0306306183, 0.0134024387, -0.00668270746, 0.00710847555, 0.0156855434, 0.0163149387, 0.012007894, 0.000979575096, 0.0147352777, -0.0164877139, -0.0129705, 0.00635566842, 0.00372392801, -0.0087806955, 0.014908053, -0.0223744214, -0.00652227318, -0.0175984129, 0.00129273057, 0.0312229916, 0.0108663412, 0.00159971556, -0.0127977245, 0.0216339547, -0.0175860729, 0.0157225654, -0.00958286691, -0.0194248967, -0.00957669597, 0.0141429044, 0.00405713776, 0.0149574177, -0.0272985213, -0.00532827154, -0.00804022886, -0.014463773, -0.00603788486, -0.0261137746, -0.000504442607, 0.0125940964, 0.0032271985, 0.00125879259, -0.0189929586, 0.00648525, 0.00305442302, -0.0114155207, -0.00433481252, -0.0104837678, 0.0197087415, 0.00639269175, -0.00921263359, 0.00663334318, -0.0141799282, 0.00216740626, 0.0126126073, -0.0107305897, 0.0189312529, 0.0405035019, -0.00718252221, 0.00448599132, -0.0311489459, 0.00213963888, 0.017573731, 0.0107676126, 0.019807471, -0.0163519625, 0.00440577371, -0.00335678016, -0.0199185405, 0.00827471, 0.00758360792, -0.000666033942, -0.0156608596, 0.00617363723, 0.000718097959, 0.00796001218, 0.0238430128, 0.00791064743, 0.00789830647, 0.00978032406, -0.0120757697, 0.00529433321, -0.00650376175, 0.00301739969, 0.0148710301, 0.0176230948, -0.0290509574, 0.0280883517, -0.00105824962, -0.00373626896, 0.00579723343, -0.0069850646, 0.00761446077, 0.00626311, 0.0101999221, 0.01911637, 0.0168949701, -0.0379118696, 0.00841663219, 0.0215228852, -0.0295446012, 0.0115451021, -0.00282611279, 0.0406762771, 0.00364371086, 0.0159323644, -0.0160681158, 0.0087436717, -0.0138220359, -0.0011616064, -0.00659632, -0.0139577882, -0.0180673748, -0.0036251992, 0.00467727799, -0.0142046101, 0.00083919504, 0.00264716661, 0.0261631384, 0.00119554438, 0.00987288263, 0.0167715605, 0.0120387468, -0.00954584312, 0.0126126073, -0.00916327, 0.00510304607, -0.00721337507, 0.00070267159, -0.00966925453, -0.00492410036, 0.00114463735, 0.0079415, 0.0304578431, -0.0121806692, 0.0272491556, -0.00568307796, 0.0105824964, 0.00230624364, 0.00808342267, -0.017561391, 0.00174626615, -0.0115882959, -0.0278908946, 0.00341231516, 0.0117302192, -0.0170924291, 0.00961989, 0.0042484249, -0.0104035502, -0.0103356745, 0.00404171133, 0.00750339078, 0.00900283456, 0.00964457262, 0.00363136968, 0.00387510657, -0.00844748504, -0.0249783937, -0.00479451893, 0.0155621311, -0.00596383819, 0.00171541341, -0.00708379317, 0.00786745362, -0.00786745362, 0.0138714006, 0.0120634288, -0.0207207128, -0.00600086153, 0.0111933807, -0.0176477786, 0.00795384124, -0.00368999, -0.00778106553]
20 Aug, 2018
unordered_multimap max_size() function in C++ STL 20 Aug, 2018 The unordered_multimap::max_size() is a built-in function in C++ STL which returns the maximum number of elements that the unordered_multimap container can hold. Syntax: unordered_multimap_name.max_size() Parameters: The function does not accepts any parameters. Return Value: It returns an integral values which denotes the maximum size of elements that the container can hold. Below programs illustrates the above function: Program 1: // C++ program to illustrate the // unordered_multimap::max_size() #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multimap<int, int> sample1; // inserts key and element // in sample1 sample1.insert({ 10, 100 }); sample1.insert({ 50, 500 }); cout << "The max number of elements that sample1 can hold: " << sample1.size(); cout << "\nKey and Elements of Sample1 are:"; for (auto it = sample1.begin(); it != sample1.end(); it++) { cout << "{" << it->first << ", " << it->second << "} "; } return 0; } Output: The max number of elements that sample1 can hold: 2 Key and Elements of Sample1 are:{50, 500} {10, 100} Program 2: // C++ program to illustrate the // unordered_multimap::max_size() #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multimap<char, char> sample1, sample2; // inserts key and element // in sample1 sample1.insert({ 'a', 'A' }); sample1.insert({ 'g', 'G' }); cout << "The max number of elements that sample1 can hold: " << sample1.size(); cout << "\nKey and Elements of Sample1 are:"; for (auto it = sample1.begin(); it != sample1.end(); it++) { cout << "{" << it->first << ", " << it->second << "} "; } return 0; } Output: The max number of elements that sample1 can hold: 2 Key and Elements of Sample1 are:{g, G} {a, A} Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL
https://www.geeksforgeeks.org/unordered_multimap-max_size-function-in-c-stl?ref=asr9
PHP
unordered_multimap max_size() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0278677978, 0.0221763179, -0.00918097142, 0.029383922, 0.0672388822, -0.0278677978, -0.0375421122, 0.0181092564, -0.0228501502, 0.00580278318, -0.0152093684, 0.0284213033, -0.00554407947, 0.00407307874, 0.0197336748, -0.0357372, -0.0332103297, 0.00747232419, -0.0229464136, -0.0145235034, 0.00361282658, -0.000949833484, -0.0250040088, 0.0280362573, -0.0188432522, 0.00366697391, -0.0167736225, -0.0159072671, 0.00591408601, -0.00602839701, 0.00623896951, 0.0111122243, -0.0157388095, -0.0125742014, 0.00696694944, 0.0254371874, 0.0367479511, 0.046518527, -0.0170142781, 0.00501764752, 0.0201066881, 0.026712656, 0.0182656813, -0.00881999, 0.00166202057, 0.0264960676, -0.0249799434, -0.0356409401, -0.044111982, 0.00262012659, 0.0207083263, -0.0190478098, 0.0132600665, -0.00366095756, -0.0127667245, -0.0135608846, 0.0156545788, 0.0216709431, 0.00620287145, -0.0253168605, -0.0111122243, -0.0438231975, 0.00764679862, 0.0012250822, -0.0117078442, -0.0294561181, -0.0259425621, 0.0210332088, 0.0550136343, -0.00875982642, -0.00578172598, 0.0627145767, -0.0156184817, -0.015149205, -0.0157508422, -0.00254793023, -0.0431012325, -0.0255093835, -0.0025825242, 0.027891865, -0.0287822857, 0.010685063, -0.00380535028, -0.00899446476, 0.0223327428, 0.0140060959, -0.012477939, -0.0215265509, 0.02179127, 0.00536058052, -0.0336675718, 0.0139940633, 0.00349249947, 0.00251935259, -0.00750842225, 0.0291192029, 0.0123576121, 0.0332343951, -0.0144152083, 0.0197457075, -0.00283069932, -0.0314294845, 0.0203954745, 0.00454235496, 0.0129712811, 0.00632921513, 0.0336194411, -0.00973447692, 0.00431072479, -0.0185905658, 0.052462697, 0.00933138095, -0.0226335619, 0.0433178209, -0.0292876605, 0.00987285376, -0.0326568261, 0.016220117, -0.0151853031, -0.00980667397, -0.00792355184, 0.0451227315, -0.0131277069, -0.0152214011, -0.048732549, 0.00231630029, 0.00340827019, 0.0280603226, 0.0341970138, -0.0382400118, -0.0143911429, 0.0188552849, -0.0043919459, -0.0712337494, -0.0276030786, 0.017399326, 0.0232833289, 0.0227659214, 0.00862746593, -0.00740012806, -0.0339563601, 0.0208527185, -0.0100894431, 0.0299133621, -0.0158110056, -0.0246670935, -0.013091608, 0.0350393057, 0.00862145, 0.0155342519, -0.0184221063, -0.0275308825, 0.0335953757, 0.00892828405, 0.0115093049, -0.00679849135, 0.0104444083, -0.0192162674, 0.0119244335, -0.0221402198, 0.0536178388, 0.00087086868, 0.0271699, 0.00849510636, -0.0186386965, 0.0186266638, 0.0190237425, 0.00758061884, -0.0174955875, 0.0244866014, 0.0243542418, 0.0357853323, 0.00188011373, -0.0223327428, 0.0290470067, -0.02407749, 0.0384325348, 0.0378068313, 0.0146317976, 0.055639334, 0.0161719862, -0.000222417468, 0.0234758537, 0.0449783392, -0.0105166044, -0.0117018279, 0.028998876, 0.00138677191, 0.0421386138, -0.00146423257, 0.00363087584, 0.0516926, 0.00626303488, 0.017363226, 0.0399967879, 0.0202751476, -0.0119184172, 0.0298171, 0.00149130623, 0.0303224754, -0.0112746665, -0.00226666522, -0.0320070572, 0.0195892807, 0.0101556228, 0.023463821, -0.0191320386, 0.0126824956, 0.0440397859, 0.012935183, -0.0262554139, 0.000263403956, -0.0192042347, 0.000309090712, -0.0164126419, 0.0262313485, -0.0643029, 0.029383922, 0.0058719716, -0.0424995944, 0.0341970138, -0.0111362897, 0.0257500391, -0.0421626791, -0.0281806495, -0.0459890887, 0.00197787979, 0.00800778065, 0.00697898259, 0.00909072626, 0.025677843, 0.0029901329, -0.0261591505, 0.00921105314, 0.0621370077, -0.0177001432, -0.0456762351, -0.00890421867, 0.00158230378, 0.0180009622, -0.00263366336, 0.06059682, -0.015606449, 0.00498455763, 0.0214663874, 0.0225252677, -0.00252386485, -0.028084388, 0.0134405578, -0.0180009622, 0.000987435807, -0.00131006329, 0.0354965478, -0.00326989382, -0.0373255238, 0.0278677978, -0.0186747946, -0.0364351, -0.0319107957, -0.0392026305, -0.0080017643, 0.0300096236, -0.00977057498, 0.0308278501, 9.03394684e-05, 0.0226696599, 0.0558799915, -0.00214182562, -0.00688272063, -0.0373736545, 0.00604644604, 0.0149446484, -0.00314956671, 0.00212528068, 0.00976455864, 0.016220117, -0.0275308825, 0.00311046024, 0.000109328619, -0.0412241258, 0.0331140682, -0.0200104266, -0.0103300968, -0.0115754846, 0.015606449, 0.00718955509, -0.0159674305, -0.0231148712, -0.0184943043, -0.037277393, -0.0277956016, 0.00361583475, -0.0122252516, -0.00794160087, 0.00212528068, -0.000587723567, -0.0262072813, -0.00622092048, -0.0250762049, 0.0187469907, -0.00909674261, -0.0139459325, -0.0220680237, -0.0708005726, 0.00830859877, -0.0181694198, -0.0143069141, -0.0155101866, 0.00389860407, -0.0338841639, 0.0124298083, -0.0267607868, -0.0211294703, 0.0172549319, -0.0359537937, -0.0187710561, 0.0442323089, 0.0150168445, -0.0444248319, -0.0172188338, -0.0114371078, -0.013163805, -0.0166412629, 0.055976253, 0.0215867143, -0.0238849651, -0.0265923291, 0.0291432682, -0.0108234389, -0.0614631772, -0.0103842448, 0.0187229253, -0.0321273841, -0.0382159464, 0.0289026126, -0.0212016664, -0.00726175169, 0.00913284067, -0.0266163945, 0.0334750488, 0.00450024055, -0.00453032227, -0.0275068171, 0.0209249146, 0.0167495571, 0.0158591364, -0.0138737354, -0.032055188, 0.00360380206, 0.0391304307, 0.000605020614, -0.00365494122, 0.0238969978, 0.0369404741, 0.00112731627, -0.00768891349, -0.0154981539, -0.0171105396, 0.0126584303, -0.00736402953, -0.0138015393, 0.0301299524, -0.022898281, -0.0109738484, -0.0052913921, -0.0239812266, -0.0262794793, -0.015835071, 0.00909674261, -0.013091608, 0.0438953936, -0.0052161878, 0.023463821, 0.0306112599, -0.0232833289, 0.000928024179, 0.0453393199, 0.0257259738, -0.0324883647, 0.0061366912, -0.00416633207, 0.0480346531, -3.4429584e-05, 0.0274827518, 0.00871169567, -0.00329395942, -0.0251484029, -0.00924715213, -0.0012912621, 0.0328974798, -0.0176640451, -0.0194448885, -0.00838681124, -0.0045483713, -0.00788143743, -0.000782127318, -0.0344376676, -0.0232953615, -0.0649286, -0.0502005406, -0.0176640451, -0.00391063653, -0.00208918238, -0.00607652776, 0.00761070056, -0.0125381025, 0.0266645253, 0.00207714969, -0.0148363542, 0.0144753717, 0.0150649762, -0.00499659032, -0.0330659375, -0.00371510489, -0.00115514186, -0.0108234389, -0.0273624249, 0.00737606222, 0.0162682477, -0.00235390244, -0.0288304165, -0.0243542418, -0.0127787571, -0.0266645253, -0.0153056299, 0.0233073942, -0.0133683607, 0.0254612528, -0.018927481, -0.0237887036, -0.000900950516, 0.0259666275, -0.0151371723, 0.0158471037, -0.00596522493, -0.0408631451, 0.00427161856, 0.0255334489, -0.0267367214, -0.0292635951, 0.0231269039, 0.0376143083, 0.0326568261, 0.00332704931, -0.00614571618, 0.0126343649, -0.000444458914, -0.0233073942, 0.0255815797, 0.0281084534, -0.0352558941, 0.0101375738, -0.00344737666, -0.0141143901, 0.0649286, -0.0394673496, 0.054869242, 0.00325485296, 0.064880468, 0.00799574796, -0.0169541147, 0.0225733984, -0.00425356952, -0.00839884393, 0.00316761574, 0.0262554139, 0.00435584784, 0.021598747, -0.00987285376, 0.00424454501, -0.00183649512, -0.00163945928, 0.00502667204, -0.0177482739, 0.0183860082, 0.00235691061, -0.0187951215, -0.00590506149, -0.00253439345, -0.0181814525, 0.0270977039, 0.0124057429, -0.0542916693, 0.00502065569, -0.00434381468, -0.0178686, 0.0138496701, 0.0192884635, 0.000475292763, -0.00749037322, -0.0128509542, -0.0132841319, 0.0156545788, -0.0290951375, 0.0132600665, 0.0247874204, -0.0131999031, 0.0141865863, -0.0112084867, -0.00851917174, 0.0225854311, -0.000859588035, -0.0203954745, 0.0378549621, 0.0300096236, -0.0354484171, 0.0321033187, 0.0553986803, -0.0467591807, -0.0198901, -0.00647962419, 0.0523664318, 0.00650970591, -0.0184221063, -0.00509586046, -0.00860941689, 0.0640622452, -0.00717150606, -0.0049123615, 0.00503569655, -0.00898844842, 0.0262313485, 0.0163043477, 0.0303224754, -0.0127907898, 0.0012912621, -0.00750842225, -0.0169059839, 0.0146799283, -0.0281565841, -0.0431252979, 0.0107632754, -0.0328012183, -0.0120688267, -0.0195652153, 0.00522521231, -0.00983073935, -0.0112806829, -0.00687068794, 0.0329937413, -0.00808599312, -0.0261591505, 0.0127907898, 0.0140662594, -0.011370928, -0.00998114794, 0.0115694683, -0.00585993845, -0.0273383595, -0.0084590083, 0.0251484029, -0.0343414061, -0.00128449372, -0.017363226, -0.00447316654, 0.00582384039, -0.00495447591, -0.0463982, -0.000618181424, -0.0182656813, -0.00786338747, 0.0321273841, 0.00400389032, 0.054676719, -0.00299915741, 0.00835672952, -0.000587723567, -0.0050477297, -0.0221883506, -0.000693009933, -0.012670463, 0.0142467506, 0.0327530876, -0.0130555099, -0.00245467667, 0.0316942073, 0.0180731583, 0.0240173265, -0.0137774739, -0.0130314445, -0.0018395033, -0.00722565316, 0.0214302894, -0.0112927156, -0.0109197013, -0.0118161393, -0.0242098495, -0.0202390496, -0.0411038, 0.00693085138, 0.0053726132, 0.0122613497, -0.0176640451, -0.00801981334, 0.00817022286, 0.00954797, -0.00338119664, -0.0281325188, 0.00779119134, 0.00296606752, 0.0222003832, -0.00659393519, -0.0245227, 0.0178806335, -0.006792475, 0.0143430121, 0.00936146267, 0.0321995802, 0.0194689538, -0.00961415, -0.0562650375, -0.00856730249, 0.042283006, 0.00188462611, -0.0118341884, 0.0361463167, -0.00499358214, 0.00897039939, -0.0253409259, -0.0082845334, -0.028084388, -0.0342451446, -0.0167856552, 0.0107091283, 0.00268029026, 0.00774907693, -0.0377346352, -0.0028006176, 0.00339322933, -0.0191801693, -0.00826648436, -0.0261591505, 0.018891383, -0.0550136343, 0.0300818197, 0.00353762205, -0.0242098495, -0.0181453545, -0.0361944474, 0.0507781133, -0.0240654573, -0.00972244423, 0.00540871127, 0.0228742156, -0.000957354, -0.0156786442, -0.0200946555, 0.00175226608, 0.00962016638, 0.00110325078, -0.039298892, 0.017134605, -0.00264419196, -7.64266224e-05, 0.000282769121, -0.00421446329, -0.00595620042, 0.00404299656, 0.0114070261, 0.0263998061, -0.0324643, -0.020034492, -0.00940357707, -0.0192884635, 0.0195050519, -0.010703112, -0.0156906769, -0.0267367214, 0.00417535659, 0.0134044597, 0.00618482241, 0.00178234791, 0.00339022116, -0.00830859877, 0.00434682332, -0.0147882234, 0.000662176055, 0.0303224754, 0.00258402829, -0.0201668534, 0.00895234942, -0.0203834418, 0.0210813396, 0.0042986921, 0.0097043952, -0.00279460126, 0.018049093, 0.0254612528, 0.0168458205, -0.0213580932, 0.00749638956, -0.021863468, -0.000352145318, 0.0377827659, 0.00516504841, -0.0284694359, 0.013163805, 0.0112626338, 0.00572156208, -0.00866958, 0.0123696448, -0.00235691061, -0.00560725154, -0.0330418721, 0.00561928423, 0.0411519296, -0.0114310915, 0.00493642688, -0.0132961646, 0.00931333192, 0.0186507292, -0.0220439583, -0.0114310915, -0.00527033489, 0.00809200946, -0.0186507292, -0.00539968675, -0.00623295316, 0.00964423176, -0.0346061252, 0.0221883506, -0.00109046604, 0.00377526856, 0.0223086774, 0.0268811155, -0.0266885906, -0.0082845334, -0.0292876605, 0.00413023401, -0.00762874959, -0.0141264228, 0.0164607726, 0.0084590083, -9.58858e-05, -0.0195291173, 0.0296727084, 0.0251965337, -0.00971642788, -0.021863468, -0.0125621688, -0.00361884292, 0.0172308665, 0.01358495, 0.0294801835, -0.0103361132, -0.0296727084, 0.0164006092, 0.00341127836, -0.00765883178, 0.020299213, 0.00975854229, 0.0344136022, 0.00202300237, -0.00209971098, 0.00215686648, -0.0306593925, 0.0428605787, -0.024498634, -0.00137022696, -0.00524927769, -0.00139128417, -0.0101014758, -0.0030006615, 0.0198901, -0.0370608047, -0.0162321497, -0.00762273325, 0.00466569047, 0.0188552849, -0.0192162674, -0.0384566, -0.0126463976, 0.00581782404, 0.000724219834, 0.0136691798, -0.0336916409, -0.0153537616, 0.0161479209, 0.00853120442, -0.0058118077, -0.00751443859, 0.0385287963, 0.0101014758, 0.029191399, -0.00762273325, 0.00881999, -0.00964423176, 0.0239210632, 0.0275549479, -0.00181242975, 0.00538464589, -0.0209730454, 0.0104203429, 0.00750842225, 0.00117845531, -0.026784854, -0.00348648313, -0.0239330959, -0.0112927156, -0.0357372, 0.0110400282, 0.0227418561, 0.0019974329, 0.0152935972, -0.0172549319, -0.0451708622, 0.0349671096, 0.0429809056, -0.00474390294, 0.044833947, -0.0125982668, 0.00794160087, -0.0144874044, 0.0260147583, 0.00392868556, -0.0168458205, -0.00276752748, 0.00721362047, 0.0245106667, 0.00632319879, 0.030948177, 0.00276903156, 0.0187951215, 0.0050808196, -0.0170985069, 0.00803184602, 0.0265682638, 0.022248514, 0.0226937253, -0.0345579945, 0.0093795117, 0.00488528749, -0.0199141651, 0.0180250276, 0.0105105881, -0.000451979344, 0.0395395458, -0.00827250071, -0.0226335619, 0.0417295024, 0.00370608037, 0.010703112, -0.0180731583, 0.00295403483, -0.00474691112, -0.00870567933, 0.00174624973, 0.0270255078, -0.0083807949, -0.000794912106, 0.00581782404, 0.025220599, 0.00949983858, 0.00155071786, 0.00718955509, 0.0101435902, -0.0487806797, -0.0272420961, 0.0186146311, 0.0308278501, 0.00179588469, 0.00109573035, 0.0204195399, 0.0131999031, 0.0192884635, 0.0229343809, -0.0137895066, -0.0553505495, 0.0161118228, 0.00522220414, -0.00412421767, 0.0111543387, 0.00349550764, -0.018506337, -0.0117018279, 0.00136120233, -0.0120989084, 0.00579375867, -0.0114732068, 0.00768891349, 0.0145836668, -0.00659393519, -0.0148965176, -0.058382798, -0.0223808754, -0.0112866992, -0.00611864217, -0.0226335619, -0.0132720992, -0.00857331883, 0.0281325188, -0.0185665, -0.00390161225, -0.00966829713, -0.0181092564, 0.0093795117, 0.0168097205, -0.00434080651, 0.0190117098, -0.0285656974, 0.00967431348, -0.0311166346, -0.00208918238, -0.00661198422, 0.0185905658, 0.00595920859, 0.0423311368, 0.0309722424, -0.0132119358, -0.00388055481, 0.0197818056, 0.0168337859, -0.0106970957, -0.05265522, -0.0108595369, 0.000288409443, -0.0273383595, -0.00217190734, 0.00557716936, 0.0317423381, 0.0102218026, 0.0115935337, 0.028998876, 0.0072316695, -0.0290470067, -0.0209128819, -0.0139940633, 0.000746029138, -0.0213701259, -0.0046626823, -0.0328252837, 0.0161479209, 0.0107091283, -0.00825445168, -0.0168097205, -0.00943967514, -0.0138737354, -0.0208767839, -0.061174389, 0.0224891696, 0.0043919459, -0.0135247866, 0.0436306745, 0.0119003681, -0.0542916693, 0.0109678321, -0.0547248498, -0.0130314445, -0.0125260698, -0.0294079874, -0.016328413, 0.0355206132, 0.00494845957, -0.0142226852, -0.0284213033, -0.0273383595, 0.000594868, 0.00289687933, -0.024306111, -0.00601335615, 0.0046025184, 0.0137052778, 0.0392266959, -0.00949983858, 0.0190357752, 0.0127426591, -0.0129592484, -0.00172519241, -0.00135518599, 0.0118522374, 0.00849510636, -0.000329019909, 0.0254371874, 0.0239691939, -0.00679849135, 0.0331862643, -0.0330178067, -0.0327290222, 0.0222244486, -0.00836876221, 0.0375661775, 0.005351556, 0.0171586704, -0.0154500231, 0.000502366398, 0.0258463, 0.0185665, -0.0120688267, -0.018542435, 0.0145716341, -0.0082845334, -0.0118462211, 0.0217190739, -0.0152214011, 0.0351596326, 0.0588641055, 0.0188552849, -0.0379271582, 0.0190839078, -0.0363629051, 0.0024832543, 0.00926520117, -0.0190478098, 0.00715947337, 0.0206361283, -0.0296005122, 0.00370006403, 0.0706561804, -0.0335953757, 0.00348046655, 0.0240895227, -0.0670944899, 0.00983073935, 0.00248175021, 0.00142587826, 0.0171827357, -0.00560424337, -0.0211174376, 0.0405021645, 0.00848307367, -0.0131397396, -0.0136451134, -0.0495748408, 0.0174594894, 0.00704516238, -0.00780924084, 0.0165690668, -0.000931032351, 0.0168217532, 0.0119725643, 0.0107813245, -0.0394673496, -0.00813412387, 0.0405262299, 0.00918698777, -0.0233434923, -0.0116296317, -0.0202751476, 0.0121109411, -0.00165149197, -0.00526431855, 0.010877586, -0.0225974638, 0.0151612377, 0.00431674113, -0.0131517723, 0.0213219952, -0.0173511934, -0.000734748493, 0.0225613657, -0.00921706948, 0.00614872435, 0.00359778572, 0.0166653283, 0.0231509693, -0.0104083102, 0.00345038483, 0.0111904377, 0.0264479369, 0.00304879248, -0.0209610127, -0.0149326157, 0.00277956016, 0.00549594872, -0.0102398517, 0.0107692918, 0.0258944314, 0.0230306424, 0.0200826228, -0.00336013944, -0.0185183696, -0.0255334489, 0.00108444958, -0.0124057429, 0.0102097699, -0.0161479209, 0.0211294703, -0.0106609976, -0.00742419343, -0.0153056299, -0.00804989506, -0.0141384555, 0.0143791102, 0.0303946715, 0.0020982069, -0.0189635791, 0.00419039745, 0.0143791102, -0.0262313485, -0.012074843, -0.0125982668, 0.000750165374, 0.0428846441, 0.015871169, 0.0450746, 0.00582083222, 0.0388657115, 0.0284935012, -0.00372713758, 0.0145475687, -0.0109257177, 0.0174233913, -0.0108836023, -0.0140060959, 0.0125381025, 0.0279159304, 0.022513235, -0.0142948814, 0.0246430282, 0.00295102666, 0.00247874204, -0.000139786454, 0.00718955509, 0.0296727084, -0.0269292463, -0.00286078104, -0.0139820306, -0.0307797194, 0.01697818, -0.0103661958, -0.000148058956, 0.0105286371, -0.0112205194, 0.0193967577, -0.00119800854, -0.0373255238, 0.00726175169, -0.01782047, -0.00972244423, 0.0183258448, -0.0221763179, 0.00382039114, 0.0235721152, 0.0160035286, 0.0223207101, -0.0194328558, 0.03426921, -0.0115032885, 0.00535757234, 0.0149927791, 0.00904861186, 0.00461755926, -0.0200705901, -0.00352859753, -0.0195291173, 0.0269533116, -0.0280603226, -0.00515000755, -0.0188673176, 0.0219958276, -0.00126193243, 0.00987285376, -0.00795965, -0.000938552781, -0.0287582204, -0.0148483869, -0.0258463, 0.0158591364, -0.000566290284, 0.00933138095, -0.00789347, 0.0118341884, 0.014920583, -0.00503870519, -0.0290951375, 0.0251243375, 0.00984277204, 0.00625701854, -0.0018725933, 0.0390823, -0.010456441, -0.0128750196, 0.00227719382, -0.0203593764, -0.0239932593, -0.0198299363, -0.00636531319, 0.00411218498, 0.014920583, -0.0359778591, 0.0389379077, -0.0183860082, -0.0121350065, 0.0150770089, -0.0170383435, -0.0157027096, 0.0160155613, -0.032777153, -0.0149566811, -0.00281565846, 0.0371089354, -0.00664808229, 0.00112129992, -0.00667214766, -0.00989090279, -0.0216829758, 0.00918698777, -0.034654256, 0.0111362897, 0.0220319256, 0.00819428824, 0.0196735114, -0.0451949276, -0.021406224, -0.0179528315, -0.0130675426, 0.00106865668, -0.0111122243, 0.00964423176, 0.000497478119, -0.012706561, 0.000926520093, -0.0167615898, -0.0217190739, 0.0129231503, -0.00990895182, -0.0140181286, 0.00285175652, -0.00415730756, 0.0234878864, 0.00527033489, -0.00193877332, -0.00425958587, 0.00127622124, 0.0133322626, -0.00474691112, -0.00248626247, -0.0108414879, -0.0234758537, -0.00573058706, -0.0175316855, 0.0119424826, -0.0104805063, -0.00894031674, 0.0166051649, 0.0114310915, 0.0223207101, 0.0127306264, 0.024955878, -0.0185304023, -0.0251002703, -0.000236706328, -0.00405202108, 0.0334269181, 0.0125381025, 0.0238969978, 0.0134886885, -0.0158832017, -0.00677442597, -0.0157508422, -0.0297930352, -0.00484918943, -0.0227779541, 0.0238007363, -0.00880795717, -0.00535757234, -0.0444248319, -0.0123576121, -0.00251183193, 0.00155071786, 0.0191440713, 0.00285626878, -0.0278677978, -0.0030683456, -0.0594416782, -0.0329937413, 0.0012250822, 0.0189034157, -0.00468073133, -0.0252927952, 0.00305330474, -0.00323078758, 0.00360079389, 0.007021097, 0.0290710721, 0.00729784975, 0.0428605787, -0.0375902429, 0.00326688564, 0.00524326134, -0.0043708887, -0.0182295833, -3.24319626e-05, -0.00864551496, 0.00679849135, -0.0253409259, 0.0115153212, -0.0144753717, 0.00374217844, 0.0146197649, -0.00831461512, 0.0105166044, 0.0389138423, 0.0176640451, -0.0126945283, -0.0191320386, 0.0248596165, -0.01782047, 0.00908471, -0.0156305134, -0.00341127836, 0.0197938383, -0.00631718244, 7.27134e-05, -0.00262764702, 0.00942162611, -0.00549294055, 0.0181333218, 0.00354363839, -0.0119725643, -9.9082e-05, 0.00216739508, 0.029383922, -0.00368201477, 0.0167976879, 0.0210572742, 0.0198780671, 0.0121410228, 0.0287822857, -0.0114611741, -0.0193967577, -0.0177362412, 0.0059682331, 0.00966228079, 0.010895635, -0.0104865227, -0.0105827842, -0.0275068171, 0.00703312969, -0.0055831857, 0.0154620558, 0.00541171944, 0.0231991, 0.0213340279, -0.0240413919, 0.00189064245, -0.0257259738, 0.000947577355, -0.00140782923, -0.0050808196, 0.00957805198, 0.00957203563, -0.000198352, -0.00465365779, -0.00103406259, 0.000371886505, -0.0206962917, -0.00897039939, -0.00469276402, -0.0240534246, 0.00167254917, 0.00951187126, 0.0126824956, 0.0105286371, -0.0090546282, -0.00616677338, -0.017784372, 0.00302773528, 0.0101796882, 0.000692633912, 0.0220078602, -0.0108595369, -0.0168458205, -0.0174233913, -0.00421747146, -0.0279881265, -0.0103300968, -0.00517708156, 0.000486949459, 0.00709930947, 0.0242098495, -0.00844697561, -0.0134886885, -0.0206000302, 0.00973447692, 0.017627947, -0.0112385685, -0.0156184817, 0.00823640265, -0.00904259551, 0.00129351823, -0.00951187126, -0.0143791102, 0.0316220112, 0.00854925346, 0.0186747946, 0.00821835361, -0.00232833298, 0.00372713758, -0.0210452415, 0.00888617, 0.00568847219, 0.0149566811, -0.00465064961, -0.017134605, 0.00591709418, -0.0205879975, -0.00422348781, -0.0243301764, 0.0131156743, 0.0136571461, -0.0086515313, -0.00813412387, 0.010685063, 0.0189996772, 0.0181814525, -0.00959610101, -0.0227899868, -0.0379030928, -0.0205278341, 0.0355446786, 0.0119545152, -0.0130795753, -0.00768891349, -0.0317182727, -0.00702711334, 0.0141023574, 0.0107512427, -0.0247874204, 0.00347745838, 0.0141384555, -0.00578172598, -0.00428966759, -0.0130194118, 0.00968033, -0.0191320386, 0.0247874204, -0.00382640748, 0.00168307789, 0.0177001432, 0.00194328558, -0.00238699256, 0.0180370603, -0.0108354716, -0.000602388463, 0.00462357607, 0.00129727856, 0.0207444243, -0.00730988244, -0.00877787545, 0.00876584277, 0.0108414879, 0.0196133479, 0.00814615749, 0.0170503762, -0.0080017643, -0.0022230465, -0.0104985554, -0.013813572, -0.000356657576, -0.0349189788, -0.011142306, -0.0222364813, 0.00717150606, 0.00299915741, 0.016942082, 0.0156666115, -0.0262072813, -0.0360741206, 0.0215265509, -0.00491536967, -0.00854323711, -0.0181333218, 0.0123937102, -0.0129712811, 0.00545082614, 0.0220920891, 0.0129592484, 0.00429267576, 9.56037838e-05, 0.000234074163, 0.0144392736, 0.00032657577, -0.0125260698, -0.0295042489, 0.00478300964, -0.00974049326, -0.0123937102, -0.0035105485, -0.00926520117, 0.0351355672, 0.0221522525, 0.0351115, -0.0035887612, 0.0155462846, -0.0212979298, 0.00925316848, 0.0227659214, 0.011792074, 0.0289026126, 0.00886210427, 0.0266163945, -0.00880795717, 0.016027594, 0.00431373296, -0.00992700085, -0.0181934852, 0.0130314445, 0.00111152325, 0.00827250071, 0.00118597574, -0.0121650882, -0.00606449507, 0.0303946715, -0.00765281497, 0.0198901, -0.0391785614, 0.0144874044, 0.0444488972, -0.00988488644, -0.00593815139, 0.0156906769, -0.000472284592, -0.00338420481, -0.0124659063, -0.00962618273, -0.0216107797, -0.0109197013, -0.0282528456, -0.0186025985, -0.00157327927, 0.0288785473, -0.0346301906, 0.00452430593, -0.00242910697, 0.0174113587, -0.0135127539, 0.000103970291, -0.00856730249, 0.000815969368, 0.00580879953, 0.0339563601, 0.0135608846, -0.00284122792, -0.00494845957, -0.00981269, 0.0122553334, -0.0235360172, -0.0141504882, 0.0134405578, -0.000186413279, 0.000232758088, 0.00112506014, 0.0138376374, -0.00341428653, 0.00093328848, 0.00205609249, 0.00833266415, -0.00329395942, -0.00415730756, -0.00345640117, -0.0161719862, 0.0121169575, -0.00159433647, 0.0177001432, 0.0259666275, 0.0103180641, 0.0328252837, -0.0082845334, 0.00712939166, -0.00446414202, 0.00836274587, -0.0029224488, 0.00106564851, -0.00518008973, -0.0178084373, 0.00720760413, -0.0158591364, 0.0201066881, -0.00952992123, -0.0139098335, 0.0156906769, 0.0234758537, 0.00731589878, -0.000270360353, -0.00499358214, -0.00694890041, 0.0142467506, 0.0156184817, 0.0103300968, 0.0381678157, -0.00755053712, -0.00423251232, -0.0383362733, 0.0199021325, -0.00638937857, -0.0206240956, -0.0105226208, -0.00146874494, 0.0063111661, 0.0224530715, 0.0110039301, 0.0177362412, -0.00283821975, 0.00992098451, 0.0107331937, -0.00233434932, 0.00644352613, 0.00139730063, -0.0152695319, 0.0151131069, 0.012231268, -0.00339322933, 0.0143189467, -0.00542074395, -0.0036248595, 0.0023012592, 0.000249115081, -0.0216348451, 0.00884405524, 0.00423251232, 0.0240173265, -0.0157749075, -0.0157027096, 0.000723467791, -0.0176520124, 0.0145475687, 0.0130795753, -0.00154470152, -0.0027073638, 0.0282047149, 0.00011346487, 0.0298171, 0.000381287071, -0.000402720383, -0.000891173957, -0.0175798163, -0.0132961646, 0.0172789972, -0.00667214766, -0.00315558305, -0.00328493491, 0.00548090786, -0.0102879824, 0.000979915261, 0.012477939, -0.0142587833, -0.00690076966, -0.00855527, 0.00497854128, 0.0273383595, -0.00180791738, 0.00369103928, 0.0103601795, 0.00138376374, -0.00537562137, -0.0105166044, 0.000844547118, -0.0117800413, -0.00953593757, -0.000700530421, 0.00180190103, 0.00694288407, 0.0196975768, 0.0242098495, -0.00646157516, 0.0105105881, -0.00336314761, 0.00921105314, 0.000946073269, -0.00822437, 0.00187108922, 0.0032608693, 0.00928926654, 0.00515602389, 0.000165920035, 0.00911479164, 0.0139098335, -0.0238007363, 0.00430771662, 0.00860340055, 0.0146077322, 0.00254191388, 0.0183017794, -0.0228020195, -0.00863348227, -0.00407307874, -0.00157929561, 0.00292696105, 0.00699101528, 0.00351656484, -0.0204676706, -0.0146678956, 0.0320070572, -0.00998716429, -0.0129712811, 0.00767086446, 0.00613067485, -0.00291492837, 0.00647962419, 0.000918999605, -0.0108114062, -0.0147280591, -0.0223086774, -0.0125381025, -0.0270736385, 0.0136691798, -0.00959610101, -0.00256597926, 0.00984878838, -0.0143309794, 0.0144513063, 0.00199592882, 0.00602238066, 0.00943967514, -0.00227869791, -0.0120447613, -0.0291673336, -0.00179889286, 0.0131036406, -0.00608856045, -0.00165450014, -0.00230276329, 0.00670824619, -0.0090546282, -0.014920583, -0.0260869544, 0.00488829566, 0.0136090154, 0.0074061444, -0.00446414202, 0.00141835783, 0.00016582603, -0.00292846514, 0.00247122161, -0.00848307367, -0.00397080043, -0.00993301719, 0.0265441984, -0.0311407, -0.00115965423, -0.027819667, 0.0194448885, 0.0148002561, -0.0131999031, -0.00792355184, 0.0185183696, 0.00218243618, 0.00489431201, 0.00490032881, -0.00573359523, -0.0142828487, -0.011106208, 0.00290740794, -0.0259666275, -0.0207805224, 0.0236683767, 0.0111182407, 0.0235119518, -0.0117860576, -0.00889820233, 0.0150770089, -0.0269292463, 0.0258463, -0.0138256047, -0.0134886885, 0.0298892967, 0.0105827842, -0.0118883355, -0.00256898743, -0.00329997577, 0.00296456343, -0.0080559114, 0.0168819185, 0.0270255078, -0.0145956995, 0.0116597135, -0.00617880607, 0.0121289901, -0.0129833138, 0.0183378775, 0.0265923291, -0.00275850296, 0.0154500231, 0.0117198769, 0.0199382305, -0.00215837057, -0.015149205, 0.00250581559, 0.0110099465, 0.0178084373, 0.00969837885, -0.0100713931, -0.0135608846, -0.0161479209, 0.000278820866, -0.0336916409, -0.00908471, 0.00632921513, 0.00349249947, -0.00431974931, 0.0086515313, -0.0148604196, 0.00976455864, 0.00266374531, 0.00572457025, 0.00765883178, 0.0313813537, -6.6086e-05, 0.0168698858, -0.0176038817, -0.0262313485, -0.00656987, 0.0194208231, 0.00748435687, 0.00319168111, -0.0139098335, 0.00823640265, 0.00984878838, 0.00423251232, -0.0236924421, -0.00308037852, -0.0274827518, -0.00283821975, 0.00738207856, 0.0146197649, 0.00469878037, -0.00383543223, -0.001140101, -0.00971041154, 0.000378090888, 0.0135969827, -0.00605547056, -0.0246670935, -0.0193245616, 0.000494469947, -0.00298110838, 0.0148604196, -0.00355867948, 0.00361884292, -0.00651572226, -1.30197877e-05, 0.00242158654, -0.00349550764, -0.00847104099, -0.00229674694, 0.00224861619, 0.00313151744, -0.00808599312, -0.0112806829, -0.0036459167, -0.0108655533, -0.0192884635, 0.0159914959, -0.00196885527, 0.0074602915, 0.0149807464, 0.00350152398, -0.0247152243, -0.00564034143, -0.023355525, 0.00609457679, 0.0112325521, -0.0176881105, 0.0200705901, 0.0294561181, 0.0166171975, -0.0129712811, -0.02179127, -0.00966829713, -0.0157388095, 0.0159313325, 0.0107091283, 0.000192523657, -0.0105466861, -0.0246670935, -0.00379933394, 0.0168217532, -0.0109979138, 0.0202390496, 0.0315738805, -0.0240895227, 0.014042194, -0.0112626338, -0.00151386764, -0.00326688564, 0.0193606596, -0.00758663518, 0.0241978168, -0.0218394026, 0.0302502792, -0.00115815015, -0.0112084867, -0.00637132954, -0.0110340118, 0.0145836668, -0.000263403956, -0.0036459167, 0.0174113587, 0.00699703163, 0.0110340118, 0.01358495, -0.00672629522, 0.00697296625, 0.0131517723, -0.00037075844, 0.0131878704, 0.0162802804, -0.0142948814, 0.00603441335, -0.0133202299, 0.0196374133, 0.0323199071, 0.00399787398, -0.0052583022, -0.0147761907, 0.00509886863, -0.00149281032, -0.020491736, -0.00556513667, 0.0143069141, -0.0075746025, -0.0229223482, 0.000276188715, -0.00174925791, 0.0153056299, -0.00492740236, -0.0142467506, 0.0274586864, 0.00595620042, -0.00307737035, 0.0285897627, -0.00297509204, 0.0163765438, -0.0139218662, -0.0205398668, -0.0161479209, 0.00379030942, -0.0136330808, 0.00186507287, -0.0240534246, 0.00213731336, 0.0241256207, 0.0068646716, 0.0035316057, -0.019649446, -0.0258222353, 0.0123215141, -0.013091608, 0.0132961646, -0.0192764308, 0.0207203589, 0.0284935012, -0.0109918974, 0.00126644468, -0.0189635791, -0.0258463, 0.00268781069, 0.00820632093, -0.0292154644, 0.00618482241, 0.0375421122, 0.0113408463, -0.0141023574, 0.0180972237, -0.0160155613, 0.00835071318, -0.0310444385, 0.00312249293, -0.0157147422, -0.00446715, -0.0193365943, -0.00681654038, -0.00706321141, 0.00641344395, -0.0113769444, 0.0139940633, -0.00942162611, -0.00540871127, -0.00576367695, 0.0210693069, 0.0180129949, 0.0223447755, -0.0240895227, -0.00933739729, 0.0064074276, -0.0122192353, 0.025677843, 0.0112566175, -0.0101195248, -0.0122553334, -0.00806192774, 0.00263516745, 0.0101375738, 0.0206481609, -0.000308902701, -0.000141854587, -0.000932536437, 0.0113227973, 0.0427643172, -0.00240654568, 0.0119605316, 0.00975252595, 0.0115454029, 0.0250280742, -0.00874177739, 0.00759265153, -0.0285897627, 0.00361583475, -0.00810404215, 0.0104263593, 0.0042776349, 0.01954115, 0.00891023502, -0.0134646231, 0.0117078442, 0.0186146311, 0.0202751476, 0.0204556379, -0.000616301317, 0.0109738484, -0.00676239328, -0.0138496701, 0.0122192353, -0.00804989506, 0.00287431804, -0.0013258562, -0.00866356399, 0.0198179036, 0.00854925346, -0.0102157863, 0.0407428183, -0.0212497972, -0.000991196, 0.0157749075, -0.00597725762, -0.00106865668, -0.0160516594, 0.00386852212, -0.0184461717, -0.000359665777, 0.0167856552, -0.0181212891, 0.00403698, 0.00208767829, 0.0210813396, -0.0136932451, -0.0233434923, 0.0132720992, 0.00558920251, 0.00502667204, 0.00917495508, -0.0200826228, -0.00173572102, -0.00935544632, -0.0092050368, 0.00650970591, 0.00148980215, 0.0038925875, 0.0246670935, -0.00230877963, -0.00266374531, -0.0275549479, 0.0356650054, 0.023656344, -0.00953593757, 0.00601937249, -0.00195832644, 0.00114386121, -0.0100413114, 0.00047190857, 0.00812810753, 0.0119184172, 0.0230547078, 0.0189515464, 0.00938552804, -0.0201788861, -0.0179407988, -0.00199893699, -0.025605645, 0.00436487235, 0.000292357698, -0.00227418565, 0.0197216421, -0.00216137874, -0.00232833298, -0.0198660344, 0.00408511143, -0.00913885701, 0.00768289715, -0.0147761907, -0.00248927064, -0.0126945283, -0.00990895182, -0.0129592484, -0.00292696105, -0.0136210481, -0.018506337, 0.00971041154, 0.00126418856, 0.00795363355, 0.00376925222, -0.00545082614, 0.0359297283, -0.0101917209, 0.0197938383, -0.00328192674, 0.0244866014, 0.0361222513, -0.00322477124, 0.00913284067, 0.00226967339, 0.0055410713, 0.0119244335, -0.0262313485, -0.00370908855, -0.018049093, 0.00358575303, 0.00510789314, -0.0150409099, 0.0076167169, -0.00086334825, 0.00348046655, -0.0137895066, -0.00553204678, 0.0234277211, 0.00357973669, -0.00150559517, -0.015835071, 0.00232081255, 0.0112385685, -0.0170142781, 0.00681052404, -0.00281415437, -0.0269051809, -0.00968634617, 0.00784533843, 0.0310444385, 0.032440234, -0.0101315575, -0.00788745377, 0.0247152243, -0.00803786237, 0.0129472157, -0.0293357912, 0.00276301522, 0.00487626297, 0.0112024704, -0.00564635778, -0.0216589104, 0.0109197013, 0.0063111661, 0.0209128819, 0.0114070261, -0.0107452264, 0.00878990814, -0.00541171944, -0.0145235034, -0.0186507292, -0.00628108438, -0.00112280401, -0.0030006615, 0.0237766709, 0.0099751316, 0.0194809865, 3.22439519e-05, -0.00511992583, -0.0126102995, -0.0164367072, -0.00155974238, 0.0222846121, 0.00296155526, -0.0128509542, 0.0155101866, 0.00536058052, -0.00691280235, 0.0213460606, -0.00812209118, 0.0125140371, 0.00252536894, 0.00898844842, 0.00346542569, 0.00209369464, -0.0128028225, -0.00777915865, -0.0158110056, 0.0119304499, -0.00429267576, 0.0122673661, 0.00300367, -0.00617278973, 0.00856128614, -0.0150288772, 0.00866958, 0.00649165688, 0.0108595369, -0.0173391607, -0.00987285376, -0.0201548208, -0.00309541938, -0.0268329848, 0.0196614787, 0.0216468778, 0.00758061884, 0.0279399958, 0.0334509835, -0.00616677338, -0.00452129776, 0.0047589438, 0.00594416773, 0.0217190739, 0.0258944314, 0.00168608606, -0.00605547056, 0.0309963077, -0.0234878864, 0.000840786903, -0.00969837885, 0.0188793503, 0.0168578532, -0.0166653283, 0.00285326061, 0.0217070412, 0.0158591364, -0.0174474567, -0.0201307535, -0.00291041611, 0.00593815139, -0.0115754846, 0.01358495, -0.0164367072, 0.0178926662, -0.0278677978, -0.00383242406, 0.000952089613, 0.0271458346, -0.0127546918, 0.00316460757, -0.00387453847, 0.0352077633, 0.0118402047, -0.00564334961, -0.0388897769, -0.00162742648, -0.0152334338, -0.00968634617, -0.0127185937, 0.017627947, -0.0221281871, 0.00983675569, 0.00963821542, -0.0208767839, 0.0200104266, 0.00895836577, -0.00176429877, 0.0105045717, 0.0191079732, -0.0292635951, 0.0150649762, -0.0218273699, -0.0150649762, -0.00614872435, 0.00709329313, 0.00377226039, -0.00907267723, 0.00534553966, 0.0198780671, -0.0192283, 0.0444248319, 0.00877185911, 0.00876584277, 0.0047769933, 0.0248836819, 0.000948329398, 0.00705719506, -0.042812448, -1.38188361e-05, 0.00957805198, 0.00279008877, -0.00511090131, -0.0145235034, 0.00330298394, -0.000598252227, -0.0135007212, 0.00317062391, -0.00769493, -0.00462959241, 0.00228922651, 0.00725573534, -0.00636531319, 0.00040948877, -0.000449347193, 0.00958406832, -0.012249317, -0.00317964843, 0.0119424826, 0.0126945283, 0.00450926507, -0.0121410228, 0.0127907898, 0.0239932593, 0.00681052404, -0.0104624573, 0.0134766558, 0.00694890041, 0.00599530665, -0.040068984, -0.0110520609, -0.00705719506, -0.0185785331, 0.00749638956, -0.0350633711, 0.00353461388, 0.0104444083, -0.00289236708, 0.0224169735, 0.0146678956, -0.0157749075, 0.0252446644, -0.00906666089, 0.0238007363, -0.0126223322, -0.00638937857, 0.0153537616, 0.00998114794, 0.0300818197, 0.0292395297, -0.0103060314, -0.00271789241, 0.0189395137, 0.00428665942, -0.0201909188, 0.00144768762, -0.00535757234, 0.00991496816, 0.0200104266, 0.0116055664, -0.0154620558, -0.00471382122, 0.024462536, 0.00336615578, -0.0144513063, -0.00103406259, -0.00222605467, 0.00486122211, 0.0264720023, 0.00310143572, 0.0130795753, -0.00663003325, -0.00801981334, 0.0109678321, 0.00700906431, -0.0174715221, 0.0128870523, 0.0179407988, 0.0181573872, -0.00680450769, -0.00858535152, 0.0127546918, 0.0166893937, 0.00105286378, 0.00523423683, -0.00837477855, -0.016677361, 0.00750842225, -0.016328413, -0.0196614787, -0.00496350043, -0.0137052778, 0.00756257, 0.00387453847, -0.0179167315, -0.0100774104, -0.0242218822, -0.00649165688, 0.0253168605, -0.0183017794, -0.000471156527, 0.000670448586, 0.0227659214, 0.0174233913, -0.00424454501, 0.0149326157, 0.00246370118, -0.003057817, -0.00098217139, 0.00998716429, -0.0072918334, 0.0136090154, 0.00826046802, -0.00459048571, 0.000450851279, -0.0105166044, -0.0228140522, 0.000827250071, -0.000780623232, -0.0345820598, -0.012441841, -0.0114190588, 0.00335713127, -0.0104143266, 0.00198088796, -0.0152574992, 0.0245828647, -0.015377827, -0.0394432843, -0.00125140371, 5.76724888e-05, 0.00152214011, 0.00789347, -0.0124298083, 0.00651572226, 0.0200705901, -0.00420543831, 0.0288304165, 0.00142362213, -0.00798371527, 0.0176399797, 0.00071820349, -0.00215837057, -0.00493642688, -0.0182536487, 0.000585467438, -0.000205684453, -0.00741216075, 0.00739411172, -0.00639539491, -0.00768289715, 0.0148122888, -0.00915690605, 0.0251724683, -0.0131999031, 0.000424153666, -0.0068646716, 0.0146799283, -0.0229223482, -0.0230908059, -0.00476496061, -0.0114190588, -0.00303224754, -0.0271939654, 0.022705758, 0.0117499596, -0.0127426591, -0.00269984338, -0.00779119134, 0.00503870519, -0.0257981699, 0.000241594622, 0.0102338353, -0.0205037687, -0.029383922, -0.00999318063, 0.00983073935, 0.0015702711, -0.0101074921, 0.00672027888, 0.00644954247, 0.00967431348, 0.0239691939, -0.00197787979, -0.016942082, -0.0152935972, 0.0235119518, -0.0248596165, -0.0186627619, -0.0151251396, 0.0219958276, 0.0140903248, 0.00206962926, 0.0151612377, -0.0265441984, -0.0248836819, -0.0229464136, -0.00923511852, 0.0240534246, 0.0051018768, 0.00479203416, -0.0029901329, -0.00220349338, 0.000986683764, -0.0217792373, 0.00540269492, -0.00704516238, -0.00444910116, 0.00819428824, 0.0219236314, 0.025220599, -0.000620437553, 0.00443105213, 0.00610961765, 0.00679849135, -0.012038745, 0.00464764144, 0.00235991878, 0.00518911425, -0.0147160264, 0.0206000302, -0.0695973039, -0.00799574796, 0.0231991, 0.030033689, -0.00745427515, 0.00788745377, 0.00951187126, -0.00305932108, 0.00542976847, -0.00458446937, -0.0198901, -0.00973447692, 0.0286378935, 0.00392266922, 0.00333005749, -0.014691961, 0.00381136662, -0.0134525904, 0.012303465, 0.0181694198, -0.00299314107, -7.25253922e-05, 0.00260658981, -0.000338984508, 0.00148980215, -0.00351355667, -0.00352558936, 0.00779720815, -0.0111001916, -0.000998716452, 0.00674434425, 0.0205278341, -0.00543879298, 0.0194689538, 0.00426861038, -0.0137654413, 0.00763476593, -0.00700906431, 0.00483715674, -0.00225613662, 0.00332103297, -0.0141264228, -0.0109798647, -0.0057366034, 0.00820632093, 0.0118041066, -0.00224560802, 0.0104203429, -0.00916292239, 0.0114070261, -0.00152966054, 0.0100473277, -0.0105226208, 0.0110881589, -0.0155823827, 0.0164968707, 0.0144272409, 0.00294801849, 0.00492138602, 0.0175437182, 0.00383543223, -0.0381678157, 0.00655783713, 0.0068646716, 0.00446715, 0.0134044597, 0.000952089613, 0.0199021325, 0.00446414202, -0.0102699334, -0.0108715696, -0.0187830888, -0.00191621203, -0.00941561, -0.00732191512, 0.0114671905, -0.0102218026, -0.00569448853, -0.00177933974, -0.00847104099, 0.00432576565, 0.00131006329, -0.00234337384, 0.00491837785, 7.2995419e-05, 0.0189756118, 0.0207805224, -0.000278068823, 0.0134285251, -0.0239451285, 0.0113227973, 0.0293117259, -0.0298892967, 0.00618482241, -0.00963219907, 0.0134525904, -0.00182295835, 0.00231930846, 0.019384725, 0.0018515361, 0.000196471898, -0.00160336099, 0.0172549319, -0.00374217844, 0.0132480338, -0.0175316855, -0.0223207101, -0.0121530555, 0.00943365879, 0.0122914324, 0.0275549479, 0.00684662256, 0.00824241899, -0.0102157863, 0.00223658327, 0.0345579945, 0.0011679267, -0.00537562137, 0.00169962284, 0.0206361283, 0.00643751, -0.00641344395, 0.00680450769, -0.00714744069, 0.0101556228, -0.0127185937, 0.00737606222, -0.0332825258, 0.00293147331, -0.00493041053, 0.014270816, 0.0159193, -0.0191200059, 0.0073459805, -0.0220078602, -0.041705437, -0.00934341364, -0.0173752587, -0.0208286531, 0.0154259577, -0.023355525, -0.0146799283, 0.0194328558, -0.00424454501, 0.0029465144, -0.00817623921, -0.00252687302, 0.0189756118, 0.0195531826, -0.00156575872, -0.0460853502, 0.0038384404, 0.00563733326, -0.000454987545, 0.0257259738, -0.0388897769, 0.00171315973, 0.011792074, -0.0130073791, -0.0173752587, -0.010895635, -0.00342631945, -0.00994505, -0.00407007, -0.00422649598, 0.0151371723, 0.00412722584, -0.0111302733, 0.00139128417, -0.00327290199, 0.0123576121, 0.00569148036, 0.0400930494, -0.015377827, -0.0110701099, -0.0167736225, 0.00308940304, 0.00107542507, -0.0133803934, 0.0248114858, 0.0108655533, -0.0123335468, -0.0126223322, 0.0133202299, 0.0354965478, -0.00539667858, 0.0142347179, -0.00223507918, 0.000228057805, 0.00118371961, 0.0121590719, 0.0189876445, 0.007785175, 0.0237285402, -0.0138617028, -0.00784533843, 0.00438292138, 0.0120989084, -0.000688497676, -0.0049875658, -0.00939756073, -0.0268089194, 0.00649165688, -0.00333005749, 0.0052913921, -0.00969236251, 0.0161719862, 0.0180129949, -0.0125501351, -0.00912080798, -0.00768289715, -0.000218281217, -0.00154921378, 0.0261832159, -0.0053304988, -0.0137413759, -0.00493041053, 0.00499057397, -0.00899446476, -0.00112506014, 0.0177603066, 0.0188552849, 0.00912682433, -0.0106369322, 0.011178405, 0.0393951535, 0.00770696253, 0.00320070563, -0.0407668836, -0.00321875489, -0.00584489759, -0.0199743286, 0.0217551719, -0.0143189467, 0.00858535152, -0.000824241899, 0.000550873345, 0.0100593604, -0.00812209118, 0.0130555099, 0.0146558629, 0.0332825258, -0.00317363208, -0.00214633788, -0.00697296625, -0.013091608, 0.0129833138, 0.00532147428, 0.00141384557, 0.0152214011, -0.0216468778, 0.0116657298, -0.0105045717, 0.010721161, 0.0111182407, 0.00119800854, -0.0151251396, 0.00372112123, 0.00458446937, 0.00570952939, 0.00705719506, 0.00125140371, -0.0184461717, -0.0033962375, 0.00468674768, -0.0215506162, 0.00629311707, -0.00379030942, -0.00902454648, 0.0118221557, -0.000964874402, 0.00906064454, -0.00391665287, -0.0134766558, -0.00427462673, -0.0331622, 0.0042986921, 0.00596522493, 0.00124237919, -0.0176640451, -0.0138015393, -0.0129953464, -0.0050477297, 0.0237165075, -0.00891023502, 0.010913685, 0.0305871945, -0.00480707502, 0.0148363542, 0.0148002561, 0.0136571461, -0.00664808229, 0.00211023982, 0.00797168259, -0.00292996923, -0.0198780671, -6.1855746e-05, 0.0123215141, 0.00779720815, -0.0355206132, 0.0200946555, 0.0120267123, 0.0185785331, 0.0045483713, -0.025413122, -0.0017161679, -0.0192764308, -0.0131156743, -0.00341127836, -0.00513797486, -0.0499598868, 0.0128268879, -0.0175316855, -0.00709930947, -0.00344737666, 0.00788745377, -0.00807997677, -0.0132360011, -0.00372713758, 0.0137774739, 0.00367299025, -0.00230426737, 0.0138496701, 0.00816420652, 0.0100713931, -0.0134285251, -0.0237285402, 0.00542375213, -0.00885608792, 0.0121470392, -0.00610360131, -0.00965626445, -0.0117198769, 0.0121350065, -0.00449723238, -0.00863949861, 0.000615549274, -0.0258222353, 0.00211625616, 0.00780322449, -0.00715345703, 0.0020440598, -0.0360981859, -0.0114972722, -0.0064254771, 0.000875381, 0.0093253646, 0.00622693682, 0.0241496861, -0.00910275895, -0.0119906133, 0.00392567739, 6.81541278e-05, 0.0106248986, 0.017784372, 0.00783330575, -0.0144031756, -0.00565538229, 0.0119184172, 0.0158230383, 0.0320311226, -0.0189996772, 0.0118161393, -0.019998394, 0.00480707502, -0.0119184172, 0.010913685, 0.0116476808, -0.00508683594, 0.0102759497, 0.00844095927, -0.00984878838, -0.00446113385, 0.00418738928, 0.00977659132, 0.012670463, -0.000653527561, 0.0147882234, 0.0083807949, -0.00477097696, 0.0222605467, -0.026520133, -0.0176640451, -0.0178926662, 0.0186025985, 0.0256537758, 0.000779871189, -0.0122011863, -0.00320672197, -0.0017718192, -0.0171586704, 0.00694288407, -0.00647962419, -0.00158380787, 0.019649446, -0.00962618273, -0.0152454665, 0.0205519, -0.0112866992, 0.0121109411, -0.00898844842, -0.020034492, 0.01557035, 0.00827250071, 0.0269292463, 0.000595620077, -0.0152815646, -0.00852518808, -0.00924113486, -0.0187469907, 0.0186868273, -0.00611563399, 0.0173752587, 0.0107873408, 0.0219597295, 0.014042194, 0.00342331128, 0.014463339, -0.0109798647, -0.0172669645, 0.00132961653, 0.0153176636, -0.0170383435, 0.0268329848, -0.0181333218, -0.000286341325, -0.0149326157, 0.0104504246, 0.0118522374, 0.00636531319, -0.00436487235, 0.00186056062, 0.00732191512, -0.027891865, 0.0208647512, 0.00445210934, -0.0221522525, -0.00117018283, 0.0191320386, -0.00312850927, 0.0187590234, -0.0209971108, 0.00188312202, -0.00952992123, -0.0104985554, -0.0190598425, -0.0195531826, -0.00168909424, 0.00155372603, 0.00563432509, -0.00522822049, -0.00874779373, 0.018277714, 0.00328192674, -0.0132119358, -0.00753850443, -0.0170022454, 0.0209008493, 0.00174324156, -0.00451227324, 0.0103000151, -0.0221642852, 0.0128990849, 0.0131758377, -0.0154620558, 0.021141503, 0.0312369633, -0.00670223, -0.0058118077, -0.0126824956, 0.00159283238, 0.0179889295, 0.00552903861, 0.0229945444, -0.0180611257, -0.0128268879, -0.0153056299, -0.0290229414, 0.000914487347, 0.0026652494, 0.00026453202, -0.0225613657, 0.0189876445, -0.0101796882, 0.0114190588, 0.024306111, -0.00603441335, 0.00897641573, -0.0037572193, -0.0100052133, -0.0139459325, -0.0135007212, 0.00185454427, -0.000661424, 0.00417836476, -0.0124659063, 0.0223447755, 0.00274797436, 0.00263366336, 0.0164968707, -0.0093795117, -0.000958858058, 0.0026863066, 0.0216228124, 0.0163404457, 0.0157989729, -0.0273624249, 0.00908471, 0.0257019084, -0.028084388, 0.0190117098, -0.0061968551, 0.0417535678, -0.00143490289, -0.000203240299, -0.0146678956, 0.0230547078, -0.0018515361, 0.00460853474, -0.0124538736, -0.0170142781, -0.0739772171, 0.000662928098, 0.0122433007, -0.0145475687, 0.0109076686, 0.00401893118, 0.0341007523, -0.00419039745, 0.00634124782, 0.00539066223, 0.0109858811, -0.0131156743, 0.0144513063, -0.00600734, 0.00512594217, 0.00231930846, 0.000142888646, -0.000172218424, -0.0126223322, 0.000254943443, 0.0113588953, 0.0125020044, -0.00948780589, 0.0279399958, -0.0128509542, -0.00454235496, 0.00721362047, 0.013356328, -0.00603441335, -0.0123816775, -0.00576668512, -0.03708487, 0.00487927115, 0.018927481, 0.00410015229, 0.00578473415, 0.0269292463, -0.00588099612, -0.0118161393, -0.0106429486, -0.000930280308, 0.0174955875, 0.0045062569, 0.00795965, 0.0154861212, -0.00450926507, -0.0307797194, -0.0135608846, 0.0153417289, 0.00247122161, 0.0087838918, -0.0138737354, 0.00948780589, -0.0140903248, 0.00783932209, -6.65090265e-05, -0.0360019244, 0.00543879298, -0.00999919698, -0.0128750196, 0.00194629375, -0.00850713905, -0.00245016441]
08 Aug, 2018
unordered_multimap bucket() function in C++ STL 08 Aug, 2018 The unordered_multimap::bucket() is a built-in function in C++ STL which returns the bucket number in which a given key is. Bucket size varies from 0 to bucket_count-1. Syntax: unordered_multimap_name.bucket(key) Parameters: The function accepts a single mandatory parameter key which specifies the key whose bucket number is to be returned. Return Value: It returns an unsigned integral type which signifies the bucket number in which the key is. Below programs illustrates the above function: Program 1: // C++ program to illustrate the // unordered_multimap::bucket() #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multimap<int, int> sample; // inserts key and element sample.insert({ 10, 100 }); sample.insert({ 10, 100 }); sample.insert({ 20, 200 }); sample.insert({ 30, 300 }); sample.insert({ 15, 150 }); // iterate for all elements and print its bucket number for (auto it = sample.begin(); it != sample.end(); it++) { cout << "The bucket number in which {" << it->first << ", " << it->second << "} is " << sample.bucket(it->first) << endl; } return 0; } Output: The bucket number in which {15, 150} is 1 The bucket number in which {30, 300} is 2 The bucket number in which {20, 200} is 6 The bucket number in which {10, 100} is 3 The bucket number in which {10, 100} is 3 Program 2: // C++ program to illustrate the // unordered_multimap::bucket() #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multimap<char, char> sample; // inserts key and element sample.insert({ 'a', 'b' }); sample.insert({ 'a', 'b' }); sample.insert({ 'b', 'c' }); sample.insert({ 'r', 'a' }); sample.insert({ 'c', 'b' }); // iterate for all elements and print its bucket number for (auto it = sample.begin(); it != sample.end(); it++) { cout << "The bucket number in which {" << it->first << ", " << it->second << "} is " << sample.bucket(it->first) << endl; } return 0; } Output: The bucket number in which {c, b} is 1 The bucket number in which {r, a} is 2 The bucket number in which {b, c} is 0 The bucket number in which {a, b} is 6 The bucket number in which {a, b} is 6 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL
https://www.geeksforgeeks.org/unordered_multimap-bucket-function-in-c-stl?ref=asr7
PHP
unordered_multimap bucket() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0264237933, -0.00306629622, -0.0111431554, -0.00388502702, 0.0228473246, -0.0213185605, -0.0124755651, 0.0330718197, -0.0306314044, 0.0148388399, -0.0214027129, 0.0103366962, 0.011108092, -0.0135905817, -0.0358488411, -0.0130926818, 0.00178385153, 0.00958633889, -0.0374477319, -0.0224546157, 0.0242638867, 0.0143760024, -0.0459471084, -0.00352562708, -0.0223424118, 0.00636401074, -0.0191446282, -0.00122371339, 0.00781213026, 0.0085695, -0.0211502556, 0.017349381, -0.0071038492, -0.0347548611, 0.000116805022, 0.0171530247, 0.00868871529, 0.0297337808, -0.0382331535, -0.00276650395, -0.0152034992, 0.0163816307, 0.0234363899, 0.0196635667, -0.0231278334, 0.0132399481, 0.0085695, -0.018667765, -0.0106031783, 0.0309119113, 0.0279806107, -0.0103226714, 0.0290886145, 0.0209539011, 0.0278543811, 0.00760876248, 0.00369217829, 0.0288361572, -0.00136484369, -0.0283873454, -0.0291166641, -0.0293130204, 0.0252316371, -0.0102805952, -0.00892013405, -0.0140744569, -0.0230717305, 0.0567185916, 0.026381718, -0.00819081534, -0.0244742669, 0.0396917909, 0.0272372663, 0.0138710896, -0.0372233279, 0.0171530247, 0.00499303127, -0.00702320319, -0.00628687115, 0.0364659578, -0.0376160368, 0.00868871529, -0.0177140404, -0.0399442501, 0.000379780686, 5.17185472e-05, -0.0126578948, -0.0250913836, 0.02244059, 0.0400564522, -0.0209819507, -0.0167603157, -0.00581702171, 0.00528405746, -0.0221180059, 0.0334925801, 0.0287239552, 0.0112343198, -0.0234504156, 0.0562417284, -0.0137168104, -0.0160730723, -0.00947413594, 0.0215850417, 0.0147827379, 0.0174335334, 0.0349792689, 0.0178262424, 0.00382191292, -0.01959344, 0.0547269881, 0.0191586539, -0.016858492, 0.0231699087, -0.0182470046, -0.00282085221, 0.00451266207, -0.00718800118, 0.0190885272, 0.00483173924, 0.00423916755, 0.0218936, 0.000635962817, -0.0153437527, -0.0636751726, -0.00350809516, 0.0151754487, 0.0169145949, 0.00322758779, -0.0337450355, 0.0158486664, -0.0506596304, -0.0126368571, -0.0541659743, -0.0348390155, 0.0240394808, 0.0300984401, 0.0123633621, -0.0237870254, -0.022608893, -0.0564100333, -0.0287099294, -0.0169005692, 0.000458892522, -0.0142287361, -0.0248389281, -0.00779810501, 0.0289483611, -0.00700216508, 0.0202806834, -0.00597130042, 0.0171810761, 0.0450214334, 0.0244742669, 0.0332962237, -0.0126017937, 0.00729319174, 0.0104979882, 0.0014901954, -0.0334364772, 0.0265780725, -0.0171109494, 0.0159748942, 0.00435838336, -0.00376230502, 0.0392149314, 0.0162413772, -0.0106662931, -0.0345304571, 0.0379245952, 0.0323705487, 0.0142287361, 0.0214588139, 0.0041655344, -0.0169566702, -0.00753162289, 0.0289483611, 0.0161712505, 0.000432375818, 0.0139832925, 0.00551547622, -0.00252456637, 0.0385978147, 0.00437942147, 0.0158767179, -0.00172161392, 0.0105891535, 0.00821185298, 0.05298784, 0.015652312, -0.000990541652, 0.0144741805, 0.0189763233, 0.0587382428, 0.0676022768, 0.0296215788, -0.0282330662, 0.0123353116, -0.0212624576, 0.0534366518, -0.00476511894, 0.00934089534, -0.0446287207, 0.0184994601, 0.0207996219, 0.0320900418, -0.0274756961, 0.00150422077, 0.0317253843, 0.00309084053, -0.0289203096, 0.0352317244, 0.00544885546, 0.00520691788, -0.0157785397, 0.0166481119, -0.0427773744, 0.0302386936, 0.00831704307, -0.0476301499, 0.00774901593, 0.0115148276, 0.0345024057, -0.0332120731, -0.0106873307, -0.0318936892, 0.0267183259, 0.0230156295, 0.00511925947, -0.0332681723, 0.0508840382, 0.0135134421, -0.0497620068, -0.0193129331, 0.0423846617, -0.022496691, -0.0599724762, -0.00546288118, -0.0169566702, 0.0266902763, 0.0028822131, 0.0735490322, -0.0288642086, 0.00119478605, 0.00398671115, 0.0143900281, -0.0190324243, -0.0385978147, -0.00268410495, 0.0119846771, 0.0435066931, 0.0166200623, 0.0204069111, -0.0236888472, 0.00992294773, 0.0298740342, -0.0362696, -0.0255261697, 0.022496691, -0.0304631, 0.00731422938, 0.062777549, -0.0274756961, -0.00690749381, 0.018667765, 0.00593273062, 0.0300984401, -0.0186537392, -0.0446567722, -0.0384295098, 0.0131768333, -0.0210240278, 0.00384295103, 0.0110379653, 0.0153157022, 0.00862560142, -0.0284574721, 0.0088990964, -0.0057574138, -0.00975464378, 0.0259469319, 0.00348179764, -0.00816977676, 0.0245584194, 0.015820615, 0.00271566189, -0.00661296118, -0.00925674289, -0.0172652286, -0.0404772125, -0.026325617, 0.0075596734, -0.0214307625, -0.0107364198, 0.00417605322, 0.0368867181, -0.00653582159, -0.041655343, -0.0314448774, -0.0254279934, -0.00741240708, -0.0322302952, -0.0243760906, -0.0366342627, 0.0186397154, -0.0173213296, -0.0083591193, -0.00941803493, 0.0109117366, -0.0190184, 0.0084222341, -0.038261205, -0.0537171625, -0.0112273078, -0.025399942, -0.0309960637, 0.0355683342, 0.0320058912, -0.039299082, -0.00699515268, -0.00642361864, 0.0109187495, -0.0184854362, 0.0278824326, 0.0340255424, -0.0284714978, 0.00356244366, 0.0603651851, -0.0047020046, -0.0531841964, -0.0102455318, 0.00509822136, -0.0477704033, -0.0148809161, -0.00651127705, -0.0530719943, -0.0180366244, 0.0398600958, -0.000235144063, 0.0433383882, 0.0175737869, 0.0103717595, -0.0150351953, 0.000849411357, 0.000255962979, 0.0013885115, -0.00605194643, -0.0283592958, 0.0125386789, 0.050631579, 0.00125088752, 0.000651741342, -0.00188641204, 0.00455824472, 0.0192708559, -0.0127280215, -0.0270268843, -0.038485609, -0.00769992732, 0.0353439301, -0.0400845036, 0.0257505756, -0.0109538129, 0.00943206064, -0.00862560142, -0.00441448484, -0.0150071438, -0.0396356918, 0.0291447155, -0.0155401081, 0.00275247847, -0.0100281388, 0.0286959037, 0.00800848566, -0.0355963856, -0.00079637795, 0.00151386322, -0.00101771578, -0.0154980319, -0.00736331847, 0.00285591558, 0.0264518447, 0.0104629248, -0.0181628522, 0.00310837221, 0.0115849543, -0.0175878126, 0.00527003221, -0.00455473829, 0.0037412669, -0.0233522393, -0.0173213296, 0.0224826653, -0.0209959764, -0.00314343558, 0.00285240938, -0.0189202223, -0.0320900418, -0.0432822853, -0.0518938638, 0.0250913836, 0.00270689605, -0.0102315061, -0.0166621376, -0.037055023, -0.00561014749, 0.0124124512, -0.0195092876, 0.000823113834, 0.034810964, 0.0252737142, -0.0379245952, 0.003229341, 0.0340535939, 0.000707404513, -0.00277526979, -0.0391588286, 0.0281769652, -0.00916557852, -0.0162413772, -0.0239974055, -0.0103577347, -0.0399442501, -0.00886403304, -0.013352151, 0.016802391, -0.00879390631, 0.0169005692, 0.0060799974, -0.0265219714, 0.0080014728, 0.0146284588, 0.00228087557, 0.0472935438, -0.00330472738, -0.0378965437, 0.00936894584, -0.0085835252, -0.0176579393, -0.0246285461, 0.0390466265, 0.0604773872, 0.0122160958, -0.0214868635, 0.00054479792, 0.0199019983, -0.0198599212, -0.025778627, 0.00195303257, 0.0172371771, -0.0382331535, 0.0143128885, -0.0179244205, 0.0175878126, 0.0126649076, -0.0170267969, 0.00265079457, -0.00174177543, 0.036129348, 0.012973466, -0.0335206315, 0.0132960491, -0.00863962714, 0.0156803615, -0.00379386218, 0.0367184132, 0.00696710171, 0.0336047821, -0.0164377317, -0.00861157663, -0.00378684956, -0.0470691361, 0.0200282261, 0.00823990349, 0.033380378, -0.0131277451, -0.0032486259, -0.00015745667, -0.0169145949, -0.0041655344, 0.0385136604, -0.0222722851, -0.0295935273, -0.011220295, -0.000200628507, -0.0281769652, 0.000186384, -0.00122897292, 0.00320655, -0.00651127705, -0.0166761633, -0.0139482291, -0.01729328, -0.00826795492, 0.0037167226, 0.0165639594, -0.0453580432, 0.00482122041, -0.00291377027, 0.012370375, 0.0389905237, -0.00646218844, -0.0350634195, 0.0245023184, 0.0108416099, -0.037055023, -0.000752110383, 0.0382331535, -0.0147687132, -0.0320058912, -0.00376230502, 0.0467886291, 0.00426371209, 0.00584507221, -0.000817854307, -0.0207014438, 0.0382892564, -0.00736331847, -0.02474075, -0.0065954295, 0.019705642, 0.0242919382, 0.0124615394, 0.0397198424, 0.0274756961, 0.0288361572, -0.0167322643, 0.010070214, 0.0249511302, -0.0384295098, 0.00567326136, 0.00135169493, -0.0216832198, -0.0267183259, 0.00133241, 0.00426020566, 0.0163255297, 0.0205611903, -0.0186958164, 0.00722306455, 0.000970380148, -0.0146284588, 0.0310521647, 0.0330157168, -0.0170127712, 0.0130506055, 0.0154419309, -0.0029803908, -0.0368867181, -0.00790329464, 0.010890699, -0.00718800118, -0.0105120139, -0.0104769506, -0.0115218405, 0.0293130204, -0.0200422518, -0.0231699087, 0.0315009765, -0.00934089534, -0.0123282988, 0.0381209515, 0.036017146, 0.0381209515, 0.00255437032, -0.0234644413, 0.011879487, 0.0275879, -0.0257926527, -0.00730020413, 0.00980373286, -0.0192007292, 0.0349512175, -0.0116691068, -0.0175737869, 0.0212624576, -0.00673217699, 0.012209083, -0.0200001746, 0.00298915664, 0.0146424845, -0.0134363025, 0.00233522383, -0.0146284588, -0.016087098, -0.0140814697, -0.0434786417, -0.00913752709, -0.0444323681, 0.00924973, -0.0299020857, 0.00466343481, -0.0223424118, -0.00262800348, 0.0268165041, -0.0229314771, 0.00124475139, -0.0102946199, -0.0181768779, -0.00377282407, 0.0246285461, -0.00102911144, -0.00759473676, -0.0173634067, 0.00319427764, 0.00749655953, 0.0265500229, 0.0148668904, 0.00517536094, -0.00203893799, -0.0446287207, 0.0122371335, 0.0518097095, 0.00220373599, 0.0104418872, 0.0260871854, -0.00584507221, 0.0408418737, -0.0108486228, -0.00983178336, -0.0194812361, -0.0286398027, -0.0192007292, 0.0175878126, 0.0267043021, -0.00397619186, -0.0337450355, -0.0208697487, 0.0128893135, -0.0126719205, -0.00500004366, -0.0301545411, 0.0020634823, -0.034923166, 0.030378947, 0.00714592542, -0.0456946492, 0.0146985864, -0.017952472, 0.00773499068, -0.00883598253, 0.0234924927, 0.00980373286, 0.0424968675, -0.012314273, 0.0052209436, 0.00400424283, 0.00504913274, 0.0049579679, 0.00100544363, -0.0383453555, 0.0141515965, 0.025834728, -0.00577494549, -0.0101193031, -0.0286678523, -0.0173353553, 0.00719501404, 0.00141743885, 0.0104208486, -0.0374196842, -0.0484716743, 0.0134433154, -0.0162273515, 0.015708413, -0.00306454301, -0.0244462173, -0.00908843894, 0.00414449628, 0.00379035575, -0.00198283652, -0.00618518749, 0.00934089534, -0.0216691941, -0.00105628558, -0.00931284484, -0.0148248142, 0.0211642813, 0.0206453428, -0.0321741961, -0.0284294225, -0.0167883653, 0.0123914126, -0.0312485211, -0.0049264105, -0.0136957718, 0.0134433154, 0.015217525, -0.00127017242, -0.0384575613, -0.015273626, -0.0311924201, 0.0206874181, 0.0341938473, -0.00829600543, 0.00454421947, 0.0202666577, 0.00536119705, -0.0243480392, -0.00805757381, 0.00130435929, -0.00918661617, -0.0147967637, -0.0336328335, 0.020631317, 0.0335206315, -0.00569429947, -0.00914454, -0.0114166494, -0.0256804489, 0.0076788892, 0.00724410266, -0.0238010511, -0.0126368571, -0.0208136458, 0.0036781528, -0.00969854183, -0.0185836125, -0.00307155563, -0.0530719943, -0.00442500366, -0.0026928708, 0.00319427764, -0.0150071438, 0.0256524, -0.0161712505, 0.00884299446, -0.0113254851, 0.00192673493, -0.000875708938, -0.013408252, -0.0298459847, 0.0162133258, 0.00265956041, -0.0297057293, 0.0369989201, 0.0105330516, -0.0265500229, -0.021290509, -0.00962140225, -0.00581702171, -0.00105979189, 0.0166481119, 0.0180506483, -0.00132189097, 0.0276580267, -0.0105470773, -0.0089271469, -0.0355683342, 0.032454703, 0.0109538129, 0.058289431, 0.00894117262, -0.0128262, -0.00236327457, -0.016423706, 0.0236888472, -0.0185415372, -0.0217673723, -0.00123072602, 0.0230857562, 0.00436539575, 0.0130085293, 0.033380378, -0.0200983528, -0.0285977256, -0.0133942273, 0.0230016038, 0.0277141277, -0.0102174813, -0.0386258662, -6.96337593e-05, 0.00178911106, 0.00482823327, 0.00257891463, -0.0364098549, -0.00988788437, 0.00896221, -0.00785420649, 0.0181348, -0.0128332125, 0.0300423391, 0.0104138358, 0.0172512028, -0.0200422518, -0.0162974782, 0.0315851308, 0.0281489138, 0.0444884673, 0.000818730856, -0.0233382136, 0.00537872873, 0.0116340434, 0.0308558103, 0.0189061966, -0.0241797343, 0.000688557921, -0.0466203243, -0.0100071, -0.0394673869, 0.0287520047, -0.0169286188, -0.00601688307, 0.00016994802, -0.00951621216, -0.0257365517, 0.0236888472, 0.0183592066, 0.0245724451, 0.0611506067, -0.0147126112, 0.0128191868, -0.00203367835, 0.0334925801, 0.0117322206, -0.0125456918, -0.0113815861, -0.00623778254, 0.0253298152, 0.00407086313, 0.0137518737, 0.00324161327, 0.0160309952, -0.0186958164, -0.0324827544, 0.0170267969, 0.0398320444, 0.0142287361, 0.00774901593, -0.030266745, 0.00849236082, 0.0131698214, -0.0020441974, 0.0111571802, -7.13321497e-05, 0.0177280661, 0.0286398027, -0.0391588286, 0.00399021711, 0.0591309518, 0.0121459691, -0.0216691941, -0.0100351507, -0.00114219089, 0.0101333288, -0.00562066631, -0.000877900398, 0.00449513039, -0.00634998549, 0.0202245805, 0.0105330516, 0.0178402681, -0.0191726778, 0.00124124507, 0.00908142608, 0.0169005692, -0.0365501083, -0.0235626195, 0.0186537392, 0.04838752, 0.0230857562, 0.00200913404, 0.00102472852, 0.0333242752, 0.0221039802, 0.0346426591, -0.0113465227, -0.0358768925, -0.0037412669, -0.00720202643, 0.00928479433, 0.00554352673, -0.000668396475, 0.00535067823, -0.0115358653, -0.0212764833, 0.000334636512, 0.0355683342, -0.00980373286, -0.0123212859, 0.019705642, -0.00848534796, -0.0384014584, -0.0599724762, 0.00693203835, 0.0106101912, 0.0163255297, -0.0111501683, -0.0301264916, -0.024852952, 0.00679529086, -0.00658140425, -0.0161431991, -0.00429877546, 0.00654634088, -0.00267884531, 0.00649023941, 0.0110940663, 0.0192848817, -0.0252456628, 0.00275773811, -0.00943206064, -0.0158907417, 0.00104927283, 0.0323986, 0.010126316, 0.0368025675, 0.0531841964, 0.0106452545, 0.012314273, 0.0131347571, -0.00667607551, -0.0329596139, -0.0447970256, -0.00888507068, 0.00351335481, -0.0199581, -0.00372724165, -0.00556807127, 0.0115779415, 0.0317253843, 0.0273915436, 0.0222021583, 0.0118163731, 0.000904636283, -0.0405333154, -0.0114657385, 0.00151824614, -0.019102551, 0.00150422077, -0.0211923309, -0.000317323953, 0.00773499068, 0.00381490029, -0.00865365192, -0.00381139386, -0.0271531139, -0.00528405746, -0.0386819653, 0.0104208486, 0.00448461156, 0.00642712507, 0.00692502549, -0.00128682749, -0.0519780144, 0.0055996282, -0.0359890945, -0.0101543665, -0.00861157663, -0.00295759947, -0.0362415537, -0.00908843894, 0.00654984685, -0.0147126112, -0.0436469465, -0.00389554608, -0.0194391608, 0.00355017139, -0.0113885989, 0.0141586093, 0.012040779, -0.0149089666, -0.0103156585, -0.00671113888, 0.00771395257, -0.0123914126, -0.0120898671, -0.0189202223, -0.0246425718, 0.0179244205, -0.00549093168, -0.0293971729, 0.032679107, 0.0498742089, -0.0127700977, 0.0342219, -0.028569676, -0.011276396, -0.0293691214, 0.00850638561, 0.0383173078, -0.0013481885, 0.00972659327, 0.0164377317, -0.000992294867, 0.033885289, 0.0136396708, -0.00146565097, -0.0254840944, 0.0367745161, 0.00189342478, 0.0032644046, 0.00752461, -0.0167883653, 0.0403089076, 0.0429176278, 0.0279525593, -0.0255822726, 0.00466694124, -0.0412626341, -0.0236888472, -0.000566712522, 0.000479054, 0.0114447009, 0.0312765725, -0.00716696307, -0.00254209805, 0.0329035148, -0.0164517574, 0.0163535792, 0.00894117262, -0.0309960637, -0.00250177504, 0.0309680142, 0.0123002483, 0.0056978059, -0.022552792, -0.0099580111, 0.0413748361, 0.0222582594, -0.0192989074, 0.0153437527, -0.0377001911, 0.0305472519, 0.00551197, 0.0154840071, 0.0184714105, -0.0284995493, 0.025834728, 0.00175317109, 0.0117392335, -0.0265920982, -0.000611856696, 0.0160309952, 0.00341342413, 0.0127911363, -0.0149370171, -0.0355683342, 0.00833106879, 0.0042917626, -0.0107083684, -0.00859755091, -0.0182049274, 0.00264378195, -0.0126368571, 0.00577143906, 0.0110169267, -0.0197477192, -0.0208276715, 0.0230436809, 0.00637453, 0.008702741, -0.0129243769, 0.034810964, 0.00997905, -0.0132679986, 0.00363257038, -0.00717397593, 0.0398039967, -0.00129734655, -0.00630089687, -0.0210941546, 0.00543483, -0.0130015165, 0.00106855773, 0.00374827976, 0.0134363025, 0.0279946346, 0.0217252951, 0.00992996059, -0.000698638672, -0.0161011238, -0.0177280661, 0.00602389593, -0.00400424283, -0.0348951183, 0.014614434, -0.00174615835, 0.0208697487, -0.0266622249, -0.0263676923, -0.0149089666, 0.00913051516, 0.0596358664, 0.00228613499, -0.00376230502, 0.0283592958, 0.00409190124, -0.0153157022, -0.0193690341, -0.00230892631, 0.0113745742, 0.0240955837, 0.0104348743, -0.00158136024, 0.00902532414, 0.0327071585, 0.0583455339, 0.000131597408, -0.00423916755, -0.00837314501, 0.0129384026, -0.0179664977, -0.000440703385, -0.00644115033, 0.0299862381, 0.0119496137, -0.00737033086, 0.0257365517, 0.00382191292, 0.023211984, 0.00805056188, 0.0115008019, 0.034698762, -0.00280156732, -0.0162554011, -0.0128752878, -0.0288642086, 0.00780511741, 0.0137168104, -0.0192848817, 0.00268585794, -0.0122020701, 0.013520455, -0.0249791816, 0.00748253381, 0.0131978719, -0.00263501611, -0.0103927981, 0.0118935127, -0.013078656, 0.00363257038, 0.0354280807, 0.0216130931, 0.0104068229, -0.0194111094, 0.0151754487, 0.000954601623, 0.0161011238, 0.00417605322, 0.00985282101, -0.0126508819, -0.0230997819, 0.0161572248, 0.00278754206, 0.00484225852, 0.000907266, -0.00298214401, -0.0218795743, 0.0357646905, -0.00350108254, 0.00267533911, -0.0179664977, 0.014614434, -0.0401967056, 0.00859755091, 0.00324687269, 0.00546288118, -0.0142778251, 0.0433664396, -0.00650426466, -0.000900253304, 0.0115849543, -0.0311363172, -0.0236888472, 0.00498952484, 0.0154699814, -0.0115078148, 0.00363958301, 0.0348390155, -0.00255261711, -0.0307436083, -0.025834728, -0.00618168106, -0.0280086603, -0.0177140404, -0.0142287361, 0.0141305588, 0.0192147549, -0.0179103948, 0.00852041133, -0.0189202223, 0.0184293333, 0.00851339847, -0.00669711363, -0.0152455755, 0.0204069111, -0.0177561156, 3.64330845e-05, -0.0218936, 0.0138781024, -0.0225107167, 0.0203367844, -0.00736331847, 0.00716696307, -0.00340641127, -0.00393060967, -0.00546288118, 0.002654301, 0.000456701062, 0.0132609857, 0.0264097694, -0.0441238098, -0.00926375575, -0.000737646711, -0.0183451828, 0.0199440736, 0.00969854183, -0.000190219056, -0.00269813021, -0.0199019983, 0.00590818655, 0.0129384026, -0.00835210644, -0.00561365392, -0.00360101322, -0.012917364, -8.25908e-06, 0.0221320316, 0.0177701414, 0.00402177451, 0.00791732, 0.00687243044, 0.0221180059, -0.00774901593, -0.0112693831, 0.0100211259, -0.0224826653, -0.00904636271, -0.014284838, -0.0226509701, -0.00586961675, 0.00329946796, 0.00340290507, 0.0278403554, -0.0161712505, 0.0188080184, 0.0121950582, 0.0331840217, -0.00705476, -0.0212624576, 0.0123493364, -0.00362906395, 0.0177140404, 0.0154419309, 0.0268305298, 0.00513328472, -0.0260731596, -0.0145162558, -0.02474075, -0.00685489876, 6.28402267e-05, -0.0215569921, 0.0121810324, 0.000711787434, -0.00361153227, -0.032454703, 0.0013289036, 0.0142076984, 0.0192708559, 0.0224125385, 0.00345024071, -0.006977621, 0.00483173924, -0.0160169713, -0.0623287372, -0.0045161685, 0.00840820838, -0.00969153, -0.00294357422, 0.0229875781, 0.0102735823, 0.00306629622, 0.0250913836, 0.00946712401, -0.00381490029, 0.0167883653, -0.029228868, -0.0121389562, 0.0013289036, 0.0108836861, -0.00265956041, 0.00370269734, -0.0043513705, 0.0116410553, -0.0162413772, 0.0215289406, 0.00814873911, 0.0212624576, -0.00720903929, -0.000503598363, -0.00243866094, 0.0209398754, 0.00800848566, -0.00152262906, -0.00853443705, 0.00445656059, 0.00303649227, 0.0121810324, 0.00436539575, -0.0222863108, 0.0224125385, 0.00283838389, 0.0212624576, -0.00913752709, 0.0124685522, 0.012587768, -0.00432682596, -0.00488082832, 0.00335907564, 0.00211607735, 0.0192147549, 0.00142708118, -0.0159889199, -0.000908142596, 0.010673305, 0.0212203823, 0.012370375, 0.0282470919, 0.0113254851, -0.00955127552, -0.0184012838, 0.0030399987, -0.000394901785, -0.00209854566, -0.00510172779, 0.0159047674, -0.00232645799, 0.00703021605, 0.0111852316, 0.0115919672, -0.0193129331, 0.00497549959, 0.0167042129, -0.0200843271, -0.0165218841, -0.0342219, -0.0027367, -0.0029803908, -0.0172231533, 0.00788927, 0.0139061529, -0.000162497046, -0.00577143906, 0.00351335481, 0.00112816552, 0.00605895929, -0.0166340861, 0.00891312119, 0.0148388399, -0.0158626921, -0.00594325, 0.00148668909, 0.0126368571, -0.0209819507, -0.00809965, -0.0437310971, 0.0202806834, 0.0366062112, -0.00648322655, 0.0382051021, -0.0318095349, -0.0177981928, -0.000462837168, 0.0206453428, -0.0191586539, -0.0136466837, 0.00836613216, 0.00861858856, 0.00995099917, 0.025834728, -0.02419376, -0.0155541338, -0.0157925654, 0.00627985876, 0.0371952765, -0.00891312119, -0.0201544538, 0.0440116078, -0.00246145204, 0.0160450209, -0.00711436803, -1.60524723e-05, 0.0160590466, 0.0183171313, 0.0194812361, -0.0172091275, -0.0111852316, 0.00824691635, -0.00616414938, -0.00362555776, 0.0276019257, 0.0245023184, 0.00664451811, -0.0119636394, 0.0124755651, 0.00525951292, -0.0163535792, -0.0190885272, 0.00119215634, 0.0247126985, -0.0160029456, -0.00178998767, 0.0117953345, 0.00728617888, 0.012258172, -0.00657088496, -0.0186397154, -0.0292569175, -0.0114867771, 0.0169005692, 0.00747552142, -0.00556807127, 0.00352562708, -0.020631317, 0.00235275552, 0.0102385189, 0.0154559556, -0.0260871854, -0.0119215632, -0.000568027433, 0.00395515375, -0.00894117262, -0.00874481723, 0.0148809161, -0.0221460573, 0.0136677213, 0.00172073743, -0.00460733334, 0.0184153095, 0.00928479433, -0.00196004519, 0.00217919168, -0.0153016765, 0.00398671115, 0.00978269428, -0.0083591193, 0.0196074657, 0.0231138077, -0.00484576495, -0.0153157022, 0.017461583, 0.0330998711, 0.0281348899, -0.00216341298, -0.00340115186, 0.00493693, -0.0327071585, 0.00996502396, -0.0157925654, -0.0146845607, -0.0151894735, -0.0329596139, -0.00419358537, 0.0355402827, 0.0110940663, -0.00235275552, -0.00637803646, -0.0209398754, 0.0238992274, -0.0139832925, -0.00605895929, -0.0111361425, 0.0149931191, -0.0120057156, 0.0327913128, 0.00648322655, -0.000568904, 0.00551197, -0.0222161841, 0.00915856566, 0.0293691214, -0.0183592066, -0.0127139967, -0.0354280807, 0.00649374537, -0.0260451082, -0.0198879726, -0.0146004083, -0.0204630122, 0.0113324979, 0.00228262879, 0.0209959764, -0.00632193498, 0.0325388536, -0.0118023474, 0.0185836125, 0.0318936892, 0.0299581867, 0.033885289, 0.0410943292, -0.00540327327, -0.00656387256, 0.0136326579, -0.00789628271, 0.00199160236, -0.00137974566, 0.0142988628, 0.0277141277, -0.0136677213, 0.0154699814, -0.00508419611, 0.0122651849, 0.040224757, -0.00774200354, 0.0132890362, -0.028569676, -0.00100632024, 0.0216551684, 0.0021265964, -0.0032644046, 0.0107504446, -0.00583455339, 0.00284189032, -0.00702320319, -0.0157224387, -0.00061448646, 4.35005568e-05, -0.0300423391, -0.028681878, -0.00063508621, -0.0132399481, -0.0364379063, -0.00174265204, 0.0199019983, -0.00364308944, -0.00441448484, 0.00917960331, -0.0220759306, 0.0394393355, 0.00229665404, 0.00762278773, 0.00317499274, -0.00965646654, -0.00967049133, 0.0287520047, 0.0208416972, -0.00182329793, -0.0110239396, -0.0127210096, -0.0161011238, -0.00293305516, 0.0022054892, 0.0162554011, -0.0115569038, 0.0119706523, 0.0204489864, 0.0176579393, -0.0185976382, 0.00201264047, 0.0203227587, -0.0197617449, -0.00723709026, -0.0134292906, -0.00330122118, -0.00435838336, 0.00723709026, 0.0213185605, -0.0245023184, 0.000430622633, 0.00844327174, 0.00383593817, 0.00833808165, 0.013352151, 0.00793134607, -0.0305753034, -0.00652179634, -0.00388152059, 0.00241937605, -0.00907441322, -0.0188921709, 0.0202666577, 0.0374196842, 0.00530158915, 0.00187238667, -0.00287695369, -0.0105681149, 0.00719501404, 0.033380378, 0.0103787724, 0.0289483611, -0.0247688014, -0.00332401227, -0.0390466265, 0.00617116224, 0.0031855118, -0.00674620224, -0.00940400921, 0.00557508413, 0.0110730287, 0.017896371, 0.00481070112, -0.000618869381, -0.00775602879, 0.0107434317, -0.0127350343, -0.00866767764, -0.0051508164, 0.00831704307, -0.00924973, 0.0216691941, 0.00478966348, -0.00170671206, 0.0145302815, -0.0101894299, 0.00366763375, -0.000358961785, -0.00437942147, -0.0141656222, 0.0134994173, -0.00728617888, 0.0267884545, -0.00400774879, 0.00376230502, -0.0159468446, 0.0046739541, 0.015820615, 0.0093479082, -0.00372022903, 0.0127771106, 0.0227771979, 0.00916557852, 0.0275738742, -0.00360101322, -0.00718800118, 0.00629739044, -0.00917960331, 0.00136133737, 0.00810666289, -0.00471603032, -0.000191424362, -0.016858492, -0.0103577347, -0.0141866598, 0.00290325121, 0.00726514077, -0.0124054383, 0.000443114, 0.000202272116, 0.00647972, 0.0285837017, -0.00794537086, -0.00863261428, -0.000979146, 0.0166761633, 0.0170828979, -0.0161291733, 0.00316272047, 0.00305577717, 7.77969617e-05, 0.00176894956, 0.0042251423, 0.013029567, 0.0151333725, 0.0202947073, -0.0115709286, 0.020308733, 0.0207575448, 0.00099580118, -0.0116410553, 0.0105540901, 0.0118935127, 0.0154980319, 0.010343709, 0.0148248142, -0.0115218405, -0.00190745015, 0.0110730287, -0.00836613216, 0.00961439, -0.00637803646, 0.0111992564, 0.02244059, 0.00285065616, -0.00297162496, -0.00392359681, -0.00573286926, 7.7139528e-05, 0.0131978719, 0.00457928283, 0.0118444236, -0.0102244932, -0.0271671377, 0.0100912526, -0.00163044909, -0.0230016038, -0.00102472852, -0.00831003115, 0.00556456484, 0.00649374537, 0.00093356357, -0.0239974055, -0.0146985864, -0.0097336052, 0.000347566151, -0.0208416972, -0.00260521215, -0.00744045805, 0.000467658363, 0.0065954295, -0.0107013565, -0.00216867262, -0.0251895618, 0.00656036614, 0.000401914469, -0.023773, 0.00863962714, -0.00693905121, -0.0040673567, -0.000862998422, -0.0106242169, 0.00606246525, -0.000390957139, -0.00865365192, -0.00887805782, -0.00744747045, -0.0170127712, 0.00622726372, 0.00795238372, -0.0126088066, -0.00388853345, -0.0108275842, -0.0128402244, 0.0208276715, -0.0104979882, -0.00851339847, -0.00146477437, -0.00658140425, 0.00313291675, -0.00760876248, 0.0102805952, -0.0102104684, 0.0164377317, 0.00652530277, -0.0130926818, -0.0027559849, 0.00809263717, 0.00977568142, -0.00418306608, -0.0204209369, 0.00177157938, -0.00872378, 0.000513240811, -0.00372022903, -0.00408138242, -0.0123002483, 0.0145302815, 0.0212764833, 0.00270514283, -0.0110309524, -0.0247126985, -0.00180576614, -0.0244462173, 0.0123984255, 0.0124966037, -0.00241937605, 0.0135905817, -0.000466781785, -0.0188781451, 0.0118654612, 0.00223003351, -0.000316885678, -0.0167883653, 0.0246285461, 0.0261713378, 0.000254648097, 0.0157925654, -0.000228350531, 0.00253859162, -0.0154699814, 0.00581351528, 0.0141095202, -0.00891312119, 0.00989489723, 0.00781914312, 0.00978269428, -0.0104839625, -0.00401826808, -0.0040603443, -0.00521743717, 0.00183557009, -0.00319427764, -0.0188360699, -0.0204209369, -0.00179086428, 0.00387450797, 0.00236327457, -0.00713540614, 0.0073282551, -0.00147266372, 0.0125667304, 0.00295584649, -0.00958633889, 0.00775602879, 0.00121056463, 0.0199160222, 0.0124124512, 0.0268726051, 0.0151333725, 0.00898324884, -0.00951621216, -0.0216691941, -0.0173634067, -0.00397969829, -0.00554352673, 0.0161572248, -0.0187939946, -0.00298214401, 0.0246565975, 0.00455473829, -0.0106943436, -0.0102174813, -0.0127630848, 0.0151473982, -0.0176439136, 0.0379526466, 0.0116831316, 0.00544885546, -0.0109958891, -0.00681632897, -0.00103524746, 0.00107995339, -0.0105120139, -0.00993697345, -0.0266341753, -0.00156032224, -0.00336959469, -0.0138851143, 0.0153437527, 0.00778407929, 0.000138829229, -5.72177487e-06, 0.00116936513, 0.0120337661, -0.00484927092, -0.00531912083, 0.0124755651, 0.00471953629, -0.0215990674, 0.00349932932, -0.00267007947, -0.00716345711, -0.0157364625, 0.000763506, -0.00397969829, 0.0121880453, 0.0338291898, 0.0201123785, -0.00981074478, -0.0214167368, -0.0186958164, -0.0051823738, 0.0128051611, -0.0204910636, 0.00948816165, 0.0148528647, 0.00176106032, 0.00636050478, -0.0177420918, -0.0101543665, -0.0137869371, 0.00320304348, 0.0128542501, -0.00897623599, 0.00966347847, -0.0237589739, -0.0182890799, 0.0208837744, 0.0175317097, 0.0176018365, 0.020196531, -0.0238010511, 0.0178262424, -0.00929180626, -0.0127210096, 0.00824691635, 0.0306314044, 0.00432332, 0.00744045805, -0.028569676, 0.0102104684, -0.0108556347, -0.0127841234, -0.0136396708, -0.000755616697, 0.0179805215, 0.0119916899, 0.00378684956, 0.0269006565, 0.00594675634, 0.011879487, 0.015217525, -0.0131487828, 0.00238255947, 0.0110449772, 0.00559261581, 0.0114657385, 0.00935492106, -0.024796851, 0.00434435764, -0.0137729114, 0.00680581, 0.0152876517, -0.0051893862, 0.00421812944, -0.00730020413, 0.0149931191, 0.00746850856, 0.00149194861, 0.00709683634, 0.00941803493, 0.0149790933, -0.00571533758, 0.001717231, 0.00358523475, 0.0093479082, -0.0104629248, -0.0109818634, 0.016690189, -0.00579247717, 0.00344498106, 0.000753425236, 0.00271390867, -0.0168164168, -0.00280332053, -0.0318656377, -0.0013902646, 0.000638154277, -0.0265079457, -0.00449513039, -0.00633245381, -0.00668308791, 0.0233522393, 0.0359329954, -0.00154366705, 0.00173914572, -0.00153840764, 0.0153858289, 0.0168444682, 0.0117462464, -0.0185976382, 0.0169005692, 0.037167225, 0.00173037988, 0.0214307625, -0.00647270773, -0.0246986728, -0.00598532613, 0.0144461291, -0.0157224387, -0.0027559849, 0.0268445555, 0.0275317989, -0.00352036743, -0.0219777524, -0.00707930466, -0.00374477333, -0.0288642086, 0.00089104916, -0.0245724451, 0.0129524274, -0.0200142, -0.0105961654, 0.0096003646, -0.00182680425, -0.00336082885, 0.00906038843, 0.00170758856, -0.0246425718, 0.0151193468, 0.0176158622, -0.00924973, 0.0227912236, -0.00789628271, 0.00019613601, -0.0135344807, -0.0141936727, 0.0212484337, 0.0212484337, -0.00554352673, -0.0051227659, 0.00160152174, 0.00785420649, 0.00316798012, 0.015764514, -0.00880091824, -0.00108170649, -0.00336433528, 0.0323144495, 0.0348670669, -0.000247854565, 0.00508419611, 0.00581702171, 0.00213711546, 0.00343270903, -0.0213606358, -0.00583806, -0.00327141723, -0.0127771106, -0.00803653616, 0.00407436956, 0.00353088649, 0.00318025239, 0.00994398631, -0.00540327327, 0.00363257038, 0.0144461291, 0.0250493083, 0.0142497746, -0.000888857699, 0.0242218114, 0.00511575304, -0.0169005692, 0.00866066478, 0.00694957, 0.00600285782, 0.000877900398, -0.00327667664, 0.00882195681, 0.0289764106, -0.0104769506, 0.0256103221, -0.0377562903, -0.0093479082, 0.0097336052, -0.00227912236, -0.0047546, -0.00978269428, 0.0199440736, -0.00826795492, -0.00278403563, 0.0143760024, -0.00417254725, 0.00762278773, 0.00616414938, 0.0201825052, -0.00905337557, -0.0313887745, 0.024137659, 0.00850638561, 0.00901129935, -0.000356770295, -0.0209258497, -0.00319427764, -0.00751058478, -0.0131137194, -0.00235976814, -6.00461099e-05, 0.00793134607, 0.022552792, 0.00420410419, -0.0183451828, -0.00948114879, 0.0150772706, 0.0184854362, -0.00631842855, 0.00556105841, 0.00894818548, -0.0158346407, 0.0131277451, 0.00321531575, 0.0332401246, 0.0149790933, 0.0179103948, -0.00344848749, 0.0140323807, -0.0267604031, -0.0181909036, -0.00543483, -0.0242218114, -0.00706878584, -0.00924271811, -0.00247021811, 0.0135765569, -0.0155260824, -0.0129103512, -0.0101122903, -0.0100632021, -0.0091515528, 0.0110099139, -0.011767284, 0.00598532613, -0.0128893135, 0.00722306455, -0.012531667, -0.0159608684, 0.0088079311, -0.00369217829, 0.00424968684, -0.0101122903, 0.00226685, 0.0142708123, -0.00671815127, 0.00985983387, -0.0115148276, 0.00653231516, 0.0192007292, 0.00758772437, 0.0288361572, -0.00418306608, -0.00330648059, -0.000701268436, 0.00389203965, 0.000752987, -0.00440396555, -0.00450564967, -0.00826795492, 0.00457928283, 0.0220759306, -0.0251895618, 0.0156803615, -0.0175878126, 0.00702670962, -0.0158767179, 0.00581000885, 0.00528405746, 0.00468447292, -0.00558209652, -0.000812156475, 0.00452668779, -0.0105751278, -0.0159608684, -0.000810403319, 0.00748253381, -0.0282751434, -0.00306103658, -0.00381840649, 0.0351756252, 0.0161011238, -0.00854144897, -0.00413397746, 0.0189202223, -0.00117813097, 0.0109468, -0.00490186643, 0.00121231773, 0.015820615, 0.0140534192, -0.00313642295, -0.0119636394, -0.00701268436, 0.0119846771, 0.0249230787, 0.00315044844, -0.0163115039, 0.0172371771, -0.0136396708, -0.00868170336, -0.0140183559, -0.00362906395, -0.00426020566, -0.00908142608, 0.0258207023, 0.0063990741, 0.0168865435, -0.014670535, -0.00421812944, 0.00345024071, -0.00288747274, -0.00105277926, 0.0131277451, 0.0148949409, -0.0172512028, 0.0162974782, 0.00130348268, -0.00739136897, 0.0211502556, 0.001956539, 0.0164657831, -0.0127139967, 0.00857651234, 0.00352913328, -0.00436189, 0.00210380531, -0.0081347134, -0.013520455, 0.0038780144, -0.00528055103, 0.00551197, -0.00690398738, -0.0175737869, 0.00779810501, -0.0119706523, 0.0120057156, -0.0196635667, 0.011108092, 0.00855547469, -0.0153577784, -0.00650777109, 0.000504036667, -0.0300423391, 0.00793835893, 0.00046853497, -0.00436539575, 0.0234504156, 0.0130926818, -0.00384996366, 0.00316973333, 0.00944608543, 0.00510523422, -0.00056758913, 0.00448110513, -0.0137097975, -0.0119215632, 0.0237168986, -0.0080014728, 0.00589766726, -0.0179805215, 0.00158837298, 0.00335732265, 0.00194777304, -0.0189482719, 0.0123353116, 0.0132539729, -0.0259329062, -0.0288081057, -0.00128682749, -0.0119916899, -0.00866066478, -0.010729407, -0.0220899545, 0.0125456918, -0.00888507068, -0.00417254725, -0.000745974306, 0.0408979729, 0.00288922596, 0.0101052783, 0.000524636416, 0.0332120731, 0.0173914563, -0.0045757764, -0.0348390155, 0.0088079311, -0.0256383736, -0.00264378195, -0.0189061966, 0.0153998546, 0.00183031056, -0.0051823738, -0.00614311127, -0.00411293935, 0.0110449772, 0.00964244083, -0.00077665475, 0.0156943873, -0.00615363056, -0.026928708, 0.018611664, -0.025666425, -0.000477300811, 0.0130155422, 0.0367464647, -0.0171810761, -0.0148949409, 0.0251474846, -0.00464940956, -0.0028348777, 0.0510242917, 0.00407787599, -0.00661646761, 0.00717748236, 0.0210100021, 0.00138149876, 0.0073282551, -0.0339694433, -2.24762e-05, 0.00255437032, 0.00793134607, 0.00746850856, -0.0217673723, -0.00503160106, -0.010673305, -0.00218971074, 0.0136957718, -0.0111431554, -0.00382892555, 7.06199207e-05, -0.00964244083, -0.0164938327, 0.00784018077, -0.00226509711, -0.00363607681, -0.00993697345, 0.000126557032, -0.00752461, 0.00671464531, -0.0308277588, -0.011220295, 0.00941803493, 0.00863962714, -0.0133100748, 0.0057644262, -0.00732124224, -0.0150632458, 0.0187659431, -0.0177561156, -0.0162554011, 0.00182505103, -0.00341167091, 0.00883598253, -0.00309084053, 0.00874481723, 0.00561365392, 0.0153858289, 0.0134222778, 0.00112553581, -0.0086746905, 0.0283452701, -0.00284890295, 0.0101754051, -0.00777005404, 0.00104488991, 0.000982652418, 0.00142269826, 0.0349512175, 0.0142357489, 0.00146652758, -0.00992996059, 0.00127981487, 0.0172792543, -0.0176719651, -0.00392009038, 0.00956530124, -0.00336959469, 0.022819275, 0.00622726372, -0.00633946666, 0.010617204, 0.0177701414, -0.00437942147, -0.02474075, 0.00788225699, 0.00770693971, 0.00849236082, 0.0283031929, -0.0100211259, 0.0152876517, 0.0127069838, -0.0144321043, 0.00731422938, -0.00437591504, -0.00990191, 0.0218936, 0.0225387663, 0.00788225699, -0.0220619049, -0.0146424845, 0.00444253534, 0.0134503283, -0.00784719363, 0.0223424118, -0.0147687132, -0.0120548038, 0.012587768, -0.0149931191, -0.0193690341, -0.0177701414, 0.00371321617, 0.00324336649, 0.0132890362, -0.000338142854, -0.0146284588, -0.0169426445, 0.0101473536, 0.00424968684, -0.0224546157, -0.00532262726, -0.0155681586, -0.000523321563, 0.0140323807, 0.0108065465, 0.0169145949, 0.00650777109, -0.00495095504, -0.0119636394, 0.014502231, 0.00863962714, -0.0137097975, -0.00874481723, 0.00046634351, 0.00735630561, -0.004733562, -0.0256524, -0.00678827846, 0.00109134894, -0.00432682596, -0.00952322502, 0.00333628454, 0.00302947965, -0.0281208642, 0.00481420755, -0.00601337664, 0.0266341753, -0.00928479433, -0.0284434464, 0.00125176413, -0.002654301, 0.0121109057, 0.00776304118, -0.0057959836, 0.0128051611, -0.0107083684, 0.0113605484, 0.034278, -0.00631141569, -0.0153858289, 0.0236467719, 0.01324696, -0.00688996213, -0.00901831221, -0.023211984, -0.0107644703, -0.0180506483, 0.00806458667, 0.00503510702, -0.0059222118, -0.00565222325, 0.015105322, -0.00748253381, 0.0269707832, -0.0114447009, 0.0188781451, -0.00516834809, 0.00560313463, -0.0175597612, -0.0196635667, -0.00263326289, 0.00293130195, 0.0188500956, -0.0321180932, 0.00678827846, 0.0292008165, -0.0121529819, -0.00311012543, 0.00923570525, 0.00366412755, -0.0169426445, -0.0114657385, 0.00863962714, -0.0104839625, -0.0281489138, -0.0169286188, -0.00863962714, 0.00639556814, 0.00759473676, 0.0136957718, -0.00282611162, 0.0129945036, 0.0020441974, 0.0347829126, -0.0105330516, -0.0132960491, 0.00863261428, -0.00227561593, -0.0118023474, -0.00916557852, 0.0169426445, 0.0199440736, -0.00388152059, 0.00703372248, -0.0227491483, -0.0162834525, -0.017952472, -0.0239132531, 0.03458656, -0.00458278926, 0.0170127712, -0.0153437527, -0.0144321043, -0.0201123785, -0.00849937368, -0.0141305588, -0.00673918938, 0.000621499144, 0.00381139386, 0.015161423, 0.0304911509, 0.00667958148, 0.000364440435, -0.00278228242, 0.0212764833, 0.0108766733, 0.0209539011, 0.00751058478, 0.0193690341, 0.00266131363, 0.0102385189, -0.0745588616, -0.00754564814, 0.0170408227, 0.00758772437, 0.000379342382, 0.0194531865, -3.12283591e-05, 0.0035361459, 0.00392710324, 0.00308032148, 0.00660594832, -0.00106505142, 0.0144882053, -0.00193374767, 0.00256488915, 0.016802391, 0.0308558103, -0.00187413988, -0.00418306608, 0.00555053959, -0.0114797642, 0.0109468, 0.00938998442, -0.00128069147, -0.00828899257, -0.00105803867, -0.011711183, -0.00408138242, -0.00888507068, -0.0136256451, 0.00478265062, 0.00877988059, 0.00434786407, 0.011437688, -0.0155260824, -0.0376160368, 0.00681632897, -0.0178122185, -0.00792433321, 0.00441799127, -0.0176579393, -0.0134152649, -0.0111782188, -0.00324161327, 0.00517886737, 0.0184293333, -0.00815575197, 0.0035326397, -0.0186397154, -0.00466343481, 0.00723709026, 0.0192007292, -0.0142357489, 0.0025946931, -0.0215569921, 0.0098247705, 0.00109310215, 0.00612557959, 0.00917960331, 0.0121249305, -0.00887104589, -0.050631579, -0.0123914126, 0.00859755091, 0.00885702, 0.0284574721, 0.00929180626, 0.00712488731, 0.0208276715, 0.0138991401, -0.0224546157, -0.0244181659, -0.0103016328, 0.000771833526, 0.0011439441, 0.0175457355, -0.0106873307, -0.00210731151, 0.00712488731, -0.0159187932, 0.0291447155, 0.00286818785, 0.00453720661, 0.000316885678, 0.0067216577, -0.00593273062, 0.0178542938, 0.00250352826, 0.0135555184, -0.00471953629, 0.0243620649, 0.00932687, -0.0184012838, 0.00230366667, 0.0149370171, 0.00928479433, -0.0276019257, -0.000686804764, 0.0215990674, 0.0136887599, 0.00888507068, -0.0048668026, -0.00625531422, -0.000722306489, 0.0187519174, -0.00489836, 0.00403930619, -0.00160590466, 0.0108135594, 0.008702741, 0.0275177732, -0.00337836053, -0.00568378065, -0.00862560142, 0.0126719205, 0.0187378917, 0.013408252, -0.0145723578, -0.00631141569, 0.0218515247, 0.000191095649, -0.0132750114, -0.000869134557, -0.00801549759, 0.00430929428, -0.0138570638, -0.00137185631, -0.00517536094, -0.0191867035, 0.00234398968, 0.00611856673, 0.0142497746, 0.00737734372, -0.0210240278, -0.013520455, -0.0396356918, -0.0130646303, -0.00103437097, -0.00357471569, 0.0200422518, -0.00664451811, -0.00462135905, 0.0194251351, -0.0354280807, 0.00980373286, 0.0093479082, -0.0139692668, 0.0212203823, 0.00957932696, -0.0022054892, -0.0174475592, -0.00748253381, 0.0127280215, 0.0111712059, 0.00258768047, -0.0357646905, 0.00852742419, 0.00464239717, 0.0108416099, -0.0264658704, 0.00251054089, 0.0112834089, -0.0056978059, -0.00386048271, -0.00205822289, 0.00889208354, 0.00204945705, -0.0126158185, 0.0135134421, -0.00632544095, 0.0368867181, 0.0225948691, 0.035624437, -0.016367605, -0.00402177451, -0.0213045347, 0.002366781, -0.0132750114, -0.00387100177, 0.0112693831, 0.00634297263, -0.0157925654, -0.0109327743, -0.00305227074, 0.0150351953, 0.00751058478, 0.0063044033, 0.00790329464, 0.00334855681, 0.00278929505, 0.00907441322, 0.0117322206, 9.47260196e-05, 0.0212624576, -0.0208977982, -0.0046143462, 0.000264071394, 0.00091515528, 0.000969503599, 0.00528055103, 0.00184082962, -0.0142147113, 0.0229875781, 0.017405482, 0.00520341145, -0.0184012838, -0.0025122941, 0.00875884295, -0.0162413772, -0.0212203823, -0.0147827379, -0.0165218841, -0.014614434, 0.0298459847, 0.000772271829, -0.00926375575, 0.00115884608, -0.0124615394, 0.00482823327, 0.00839418266, 0.0170688741, 0.00857651234, 0.025778627, -0.0163956564, 0.0229595285, 0.0187519174, -0.00106592802, 0.0143549647, -0.0214307625, 0.00207575457, 0.00124036847, -0.0133451382, 0.0294252224, -0.0175036602, -0.00854846183, -0.00236152136, -0.00206698873, -0.00234749611, -0.0145443073, 0.0277702287, -0.000112860384, 0.0251895618, 0.00307856826, -0.00803653616, -0.0114236623, -0.0149790933, 0.0280928127, 0.00161993, 0.0185134858, -0.0039025587, 0.00103612407, 0.00419358537, -0.00510874065, 0.00807861239, 0.0120548038, -0.00609402265, -0.028625777, 0.0189061966, -0.00775602879, 0.0271531139, -0.00768590206, -0.00639556814, -0.00428475, -0.00254209805, 0.00467746053, -0.0280507375, 0.00363607681, -0.0280367117, -0.00109485537, 0.0180225987, -0.00154366705, 0.00219847658, -0.00192147552, -0.0131277451, 0.00686191162, 0.00339238602, -0.0149510428, 0.0168444682, 0.00331875286, -0.00878689345, -0.0341096967, -0.00744747045, -0.0171810761, 0.0163255297, -0.00606947811, -0.00381840649, 0.0207294952, -0.00174352864, 0.00927076861, -0.0149370171, 0.013737848, -0.0161993, 0.0187659431, 0.010399811, -0.00494043622, -0.0128752878, 0.0203227587, 0.00703021605, -0.00257190201, -0.0378965437, 0.0107714832, 0.0104769506, -0.0180787, -0.0121038929, -0.0132820243, -0.007142419, -0.0163395535, -0.0230717305, -0.0139832925, 0.00834509451, -0.030266745, 0.0198458955, -0.00949517451, 0.002244059, -0.00746149616, -0.000656124263, -0.00938998442, -0.0182470046, 0.00467044767, 0.0175597612, -0.0036150387, 0.00263676932, 0.00896221, 0.00650777109, 0.0211502556, -0.0143900281, -0.025778627, -0.000610980089, -0.00478615705, -0.00115621625, -0.00315570785, 0.00699515268, -0.00905337557, 0.011767284, -0.00198634272, 0.00713891257, -0.00513328472, -0.0227631722, 0.0190745015, 0.0252737142, -0.00448110513, 0.00918661617, -0.0286538284, -0.0190324243, 0.000625005458, 0.00811367575, 0.0107925208, 0.000808211858, 0.0278824326, -0.00297513139, -0.00593623705, 0.00328894891, 0.0138009628, 0.0236888472, 0.0200983528, -0.00889208354, -0.019705642, -0.0309960637, -0.00161817693, 0.0179664977, 0.0237870254, -0.0103927981, 0.00557859, -0.0330998711, 0.0313887745, -0.00873780437, 0.0182470046, 0.00205471646, -0.0108345971, 0.000537785236, 0.0150492201, -0.0100000873, -0.0233802889, 0.0619921274, 0.0230577048, -0.000480368879, -0.014670535, 0.00781914312, -0.00240009115, -0.0118514365, 0.0338291898, -0.0295935273, -0.014670535, -0.0192287806, 0.0114236623, 0.0119426008, 0.00540327327, -9.82323618e-05, -0.00158136024, -0.0103647476, -0.0134924045, 0.0155821843, -0.0225668177, 0.00376581145, -0.00644115033, -0.00634998549, -0.0254279934, 0.00786121935, -0.00747552142, 0.0113885989, 0.00883598253, -0.0116901444, 0.0208276715, 0.0103857853, 0.0173073038, -0.0111852316, -0.0242919382, 0.00568378065, -0.00573637569, -0.0147827379, 0.00913752709, 0.00722306455, 0.0102315061, 0.0119145503, 0.0127280215, 0.0101052783, 0.00404982502, 0.00743344519, -0.0180225987, 0.00552950148, 0.000284671143, 0.0362135023, -0.0382051021, 0.0202947073, -0.0200983528, 0.00614311127, -0.00772797782, -0.00610103505, 0.00364308944, 0.0254981201, 0.00455473829, -0.00237379363, 0.0132539729, -0.0255121458, -0.00988087244, -0.00780511741, -0.00457227, 0.00212133699, 0.00526652578, -0.0159889199, 0.0115919672, -0.0198879726, -0.00143760024, 0.00845729746, -0.010617204, 0.00680931658, -0.0224265642, 0.0139762796, -0.00899727363, -0.00185485499, -0.00315746106, 0.0192147549, 0.00915856566, 0.0131557956, 0.0105190258, -0.0194391608, 0.0107364198, -0.00162518956, 0.00673918938, -0.0143760024, -0.0246285461, -0.0162413772, -0.00272442773, 0.00656387256, 0.00332050608, 0.00908843894, 0.0347548611, 0.00532964, -0.0222161841, 0.00130961882, -0.00143321732, -0.00219672336, -0.00320830313, 0.0399723, -0.00141393242, -0.00401826808, -0.0179244205, -0.0300984401, 0.0124545274, 0.0110870535, 0.00654634088, -0.0130506055, 5.10885e-05, -0.00320129027, 0.00375879882, 0.0175597612, 0.023773, 0.0192428045, -0.00697060814, -0.0223143604, -0.0206874181, -0.0281068385, 0.00565572968, -0.00519289263, 0.000604844, -0.0258768052, 0.0108696604, 0.0110099139, -0.00941803493, 0.0220759306, -0.00362205133, -0.00374477333, -0.00556807127, 0.0177561156, -0.00450214325, 0.00541028567, -0.0366062112, 0.00519990548, 0.0245023184, -0.0181067511, 0.0153858289, -0.000538223539, 0.0336047821, -0.00340115186, -0.0266201496, -0.0215289406, 0.020252632, -0.00810666289, 0.00779109215, 0.00243690773, -0.0275037475, 0.0085695, -0.00588013558, 0.00694957, -0.00117024162, 0.0166060366, -0.00190920325, 0.02704091, -0.0138921272, 0.00997905, 0.0165499356, 0.0223704632, 0.00119303295, 0.018723866, -0.00791732, 0.0244181659, 0.00634647906, 0.0137518737, -0.0121670067, 0.00896221, 0.00389905251, 0.0270549357, -0.0021458813, -0.000120859229, 0.0126649076, -0.0228332989, 0.0274476465, -0.0100491764, 0.0125106284, 0.012426476, -0.00443552295, -0.00967750419, -0.042749323, -6.36894174e-06, 0.0137658995, 0.00421462301, 0.0437591486, 0.0178262424, -0.00848534796, -0.02244059, -0.00621674443, 0.0144882053, 0.0159187932, -0.00138500507, -0.00947413594, 0.00742643233, -0.00680230372, -0.0233241878, -0.014502231, 0.0151333725, 0.002531579, 0.0116691068, 0.0063990741, 0.00556105841, 0.00146126805, 0.00114219089, 0.0169426445, -0.0209539011, -0.00571884401, -0.0225107167, 0.00657088496, -0.00231067953, -0.0151333725, -0.00202666572]
21 Aug, 2018
unordered_multimap rehash() function in C++ STL 21 Aug, 2018 The unordered_multimap::rehash(N) is a built-in function in C++ STL which sets the number of buckets in the container to N or more. If N is greater than the current number of buckets in the container (bucket_count), a rehash is forced. The new bucket count can either be equal or greater than N. If n is lower than the current number of buckets in the container (bucket_count), the function may have no effect on the bucket count and may not force a rehash. A rehash is the reconstruction of the hash table: All the elements in the container are rearranged according to their hash value into the new set of buckets. This may alter the order of iteration of elements within the container, although the relative order of the elements with equivalent keys is preserved. Rehashes are automatically performed by the container whenever its load factor is going to surpass its max_load_factor in an operation. By calling rehash to reserve a certain minimum amount of buckets in the hash table, we avoid the multiple rehashes that the expansion of the container may cause. Syntax: unordered_multimap_name.rehash(N) Parameters: The function accepts a single mandatory parameter N which specifies the minimum number of buckets for the container hash table. Return Value: The function does not return anything. Below programs illustrates the above function: Program 1: // C++ program to illustrate the // unordered_multimap::rehash() #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multimap<int, int> sample1, sample2; // the sample1 size is reserved for // the bucket to contain a minimum of // one elements sample1.rehash(1); // inserts key and element // in sample1 sample1.insert({ 10, 100 }); sample1.insert({ 50, 500 }); // inserts key and element // in sample1 // the sample1 size is reserved for // the bucket to contain a minimum of // three elements sample2.rehash(3); sample2.insert({ 20, 200 }); sample2.insert({ 30, 300 }); sample2.insert({ 30, 150 }); cout << "The size of Sample1 is: " << sample1.size(); cout << "\nKey and Elements of Sample1 are:"; for (auto it = sample1.begin(); it != sample1.end(); it++) { cout << "{" << it->first << ", " << it->second << "} "; } cout << "\n\nThe size of Sample2 is: " << sample2.size(); cout << "\nKey and Elements of Sample2 are:"; for (auto it = sample2.begin(); it != sample2.end(); it++) { cout << "{" << it->first << ", " << it->second << "} "; } return 0; } Output: The size of Sample1 is: 2 Key and Elements of Sample1 are:{50, 500} {10, 100} The size of Sample2 is: 3 Key and Elements of Sample2 are:{30, 150} {30, 300} {20, 200} Program 2: // C++ program to illustrate the // unordered_multimap::rehash() #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multimap<char, char> sample1, sample2; // the sample1 size is reserved for // the bucket to contain a minimum of // one elements sample1.rehash(1); // inserts key and element // in sample1 sample1.insert({ 'a', 'A' }); sample1.insert({ 'g', 'G' }); // inserts key and element // in sample1 // the sample1 size is reserved for // the bucket to contain a minimum of // three elements sample2.rehash(3); sample2.insert({ 'b', 'B' }); sample2.insert({ 'c', 'C' }); sample2.insert({ 'd', 'D' }); cout << "The size of Sample1 is: " << sample1.size(); cout << "\nKey and Elements of Sample1 are:"; for (auto it = sample1.begin(); it != sample1.end(); it++) { cout << "{" << it->first << ", " << it->second << "} "; } cout << "\n\nThe size of Sample2 is: " << sample2.size(); cout << "\nKey and Elements of Sample2 are:"; for (auto it = sample2.begin(); it != sample2.end(); it++) { cout << "{" << it->first << ", " << it->second << "} "; } return 0; } Output: The size of Sample1 is: 2 Key and Elements of Sample1 are:{g, G} {a, A} The size of Sample2 is: 3 Key and Elements of Sample2 are:{d, D} {c, C} {b, B} Reference: http://www.cplusplus.com/reference/unordered_map/unordered_multimap/rehash/ Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL
https://www.geeksforgeeks.org/unordered_multimap-rehash-function-in-c-stl/?ref=next_article
PHP
unordered_multimap rehash() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0463604331, 0.0120742526, -0.0125730671, 0.0300755985, 0.0566594936, 0.00681835832, -0.00809840485, 0.0243832413, -0.0275081694, 0.0172971375, 0.0021731453, 0.0376165025, 0.0172677953, -0.0285204705, 0.0175465439, -0.0338313803, -0.0225787051, 0.00601145206, -0.0306624398, -0.0416070223, 0.000477725203, 0.0172531232, -0.02623179, -0.00334682735, -0.0157566797, 0.0143702673, -0.01067317, -0.0137907621, 0.00930876471, 0.0222852845, -0.00793702342, 0.0209942348, -0.000317260885, -0.0362080857, 0.00688437792, 0.0149864508, 0.0487371385, 0.032129541, -0.0318948068, -0.0185441729, -0.0094408039, 0.0194684491, 0.00960218534, 0.00093161, -0.00676334184, 0.00416290294, 0.00170275569, -0.0362080857, -0.000741345168, 0.0311025698, 0.0223292969, -0.00469839526, 0.0222119298, -0.00520087779, 0.00634155, -0.020128645, -0.000179605428, 0.0174438469, -0.0147957271, -0.0103944205, -0.0200406183, -0.022784099, 0.0350637473, 0.00543561438, -0.0109225772, -0.0244712681, -0.0424286, 0.0392009765, 0.0453921482, -0.0235323217, -0.0457149111, 0.0287405346, -0.00445265556, -0.00216030818, -0.0306624398, 0.0114727402, -0.00276365411, -0.021008905, -0.00678901607, 0.0509964786, -0.0480035879, -0.000782607414, -0.00876593683, -0.0459496453, 0.0192923956, -0.00543194637, -0.00587207731, -0.024456596, 0.0352397971, 0.0282417201, -0.0506737158, -0.0122503042, 0.021683773, 0.0106511628, -0.0371470302, 0.0526689738, 0.0153165488, 0.0192483831, -0.0167249665, 0.0450107, -0.0200259462, -0.00866323896, 0.0173851624, 0.0142088858, 0.0119715547, 0.00901534408, 0.0224760082, -0.0105337948, -0.017238453, 0.0308384914, 0.038790185, 0.0100716576, -0.0230775196, 0.0157273374, -0.0324523039, -0.0157860219, -0.0129251713, -0.00103522406, -0.000413997943, 0.0409321561, 0.0220652185, 0.0270827096, 0.00433161948, 0.0114067206, -0.0533145, -0.00401986064, -0.0280950107, 0.0187642388, 0.0274348147, -0.0360320322, 0.00428760657, -0.020011276, -0.0126170805, -0.0772282705, -0.0343888775, 0.0354745351, 0.0196151584, 0.0277722478, -0.0134753352, -0.013900795, -0.0419591255, -0.0198498946, 0.00433161948, -0.0207154844, -0.013115895, 0.00923540909, -0.0240017939, 0.0416363664, -0.00433161948, 0.0285498109, -0.0202606842, 0.0194391068, 0.0379392654, 0.0147370435, -0.00553831132, -0.0104164267, 0.0144289518, -3.13191958e-05, 0.000678534852, -0.0346236154, 0.0320415162, -0.0148030631, 0.017898649, 0.00772429397, -0.0336553268, 0.021903839, 0.0197178554, 0.00482309889, -0.0326283574, 0.0407854468, 0.0254982393, 0.0224760082, 0.0286818501, 0.0186322, 0.0137760909, -0.0168863479, 0.0312199388, 0.00419224519, 0.0113700433, 0.0166076, -0.00338167092, -0.0378219, 0.0559552833, 0.0256156065, 0.0195271317, 0.00967554, 0.000147397936, 0.00112416723, 0.0165049, 0.0167102963, 0.022901468, 0.0404626839, 0.00103705795, 0.0668998659, 0.0463310927, 0.0126024093, -0.0294447448, 0.0188229233, 0.0243832413, 0.0308971759, -0.0326283574, -0.0134606641, -0.039289, 0.00773162954, 0.00471306639, 0.0181773975, -0.00676334184, -0.0200993028, 0.0561313368, 0.0122429691, -0.0264665261, 0.0042692679, 0.00324596395, -0.00112691801, -0.012558396, 0.041372288, -0.0367362425, 0.0026517876, 0.0135193486, -0.0192630533, 0.0167983212, -0.0388782136, 0.0243832413, -0.0266572498, -0.0167543087, -0.0208475236, 0.0165929273, 0.0116267866, -0.0125143826, 0.0113627072, 0.036912296, 0.0202753544, 0.00105814752, -0.00925008, 0.0325109884, -0.021126274, -0.0421645232, 0.00368242688, 0.000101379068, 0.0196151584, 0.00990294106, 0.0708317, -0.0218158122, -0.00632321136, 0.0193804223, 0.0171064138, -0.00539526902, -0.00386581477, 0.00430594524, 0.0102403741, -0.00911804102, 0.00282050436, 0.0116194505, -0.00602612272, -0.0197178554, 0.0470646434, -0.0303396769, -0.00673399959, -0.0177666098, -0.0457149111, 0.0341834836, 0.0252781734, -0.012558396, 0.0037466127, 0.0321882255, 0.0183827933, 0.0186908841, 0.00963886268, -0.0139814857, -0.0386728197, 0.0438957028, -0.0160207581, 0.00116726325, 0.0129618496, 0.00157255027, 0.0101670194, -0.00117276493, 0.00905935746, 0.0227254145, -0.0244712681, 0.024016466, 0.0254982393, 0.0062241815, -0.00694306195, 0.00840649661, -0.00842116773, -0.0436316244, -0.0316307284, -0.0505856909, -0.0335673019, -0.0280656684, -0.0163875334, 0.000533658487, -0.0160941128, 0.0241044909, 0.0186468717, -0.00404920243, -0.0375578217, -0.0450107, -0.0183827933, -0.0299582295, -0.0223292969, -0.0103724133, -0.0346823, -0.035445191, -0.00863389764, 0.00979290809, 0.0147663848, -0.0172824655, -0.0150671415, 0.00312126032, -0.0391716324, -0.0319828317, 0.0144803, -0.0358853228, -0.00963886268, 0.0208915379, -0.00927208643, -0.0291513242, -0.0209208801, -0.00232168939, 0.0107391896, -0.0246326476, 0.0427513607, 0.0148470756, -0.0338900648, -0.0185148325, 0.0550456792, 0.00969021115, -0.0632614568, -0.0261731055, -0.00845051, -0.0270240251, -0.0126610929, -0.0143189188, -0.0298408624, -0.00927208643, 0.00282783969, -0.017223781, 0.0289899427, -0.00565201184, -0.010790538, -0.0161821395, -0.00693939393, 0.0229308102, 0.00809840485, -0.00839182548, 0.00838449, 0.0318067782, 0.0520234481, 0.0013570697, -0.0209502224, 0.0062498562, 0.0328337513, 0.00728783105, -0.024573965, -0.0146343457, 0.00413356069, 0.00200259476, -4.32680572e-05, -0.00463604322, 0.00416290294, -0.0297234934, -0.0199085791, 0.014781056, -0.0349170342, -0.0268333014, -0.0148324044, 0.0235763341, -0.014560991, 0.0173558202, -0.00803972129, 0.0331565142, 0.0223292969, -0.02667192, -0.0180747, 0.00604446186, -0.0103577422, -0.0157860219, 0.00287368684, 0.0160647705, 0.0445118845, 0.00828912854, -0.00999096688, 0.0196004882, -0.0180306882, -0.0145023065, -0.0253955424, -0.0121916207, -0.0139228012, -0.0322175659, -0.0325990133, -0.0132039208, 0.00389515678, -0.0260997508, 0.0179720037, -0.0419297852, -0.021683773, -0.0403746553, -0.0468592495, 0.0149864508, -0.0121842846, 0.00288285618, -0.00347886654, -0.0174145047, -0.0069137197, -0.0192923956, -0.0316600688, -0.0151551673, 0.0280363262, 0.00661663152, 0.020686144, -0.0307211224, 0.0323349349, -0.00471306639, -0.00896399561, -0.0404920243, 0.025014095, -0.0219771937, -0.0333325639, -0.0212436412, -0.010555801, -0.0248380434, -0.0013570697, -0.0115094176, -0.000806447817, -0.00512752263, 0.0210675895, 0.0163288489, -0.0235910062, 0.0283737592, 0.0138127683, -0.0100423153, 0.0266132373, -0.018353451, -0.0575690977, 0.0185441729, 0.013563361, -0.00386581477, -0.00914004724, 0.0261437632, 0.0265985653, -0.00205944502, -0.0398758426, 0.00245923037, 0.0313079655, -0.0181040429, -0.0148910889, -0.00905202143, 0.0258356724, -0.0335673019, 0.0148764178, -0.031131912, -0.00795169454, 0.0233709402, -0.0209795628, -0.0164315458, -0.00230335072, 0.0483850352, 0.0334499329, -0.0111939907, 0.0111499783, -0.01690102, -0.0178399645, -0.0187642388, 0.0187202264, 0.00528890407, 0.0236643609, -0.0162701644, -0.0106951762, -0.0291953366, -0.0343301967, 0.0382326879, -0.0142602352, 0.0115901083, 0.000697332085, -0.0103577422, -0.0379979499, -0.020128645, -0.0262611322, 0.0207741689, 0.0045150076, -0.0140988538, -0.00439397153, -0.0302809924, -0.0331858546, 0.00303323404, 0.00407120911, 0.0441891216, 0.00926475134, -0.0319241472, -0.0135927033, -0.0189696327, 0.00323679461, 0.0247793589, 0.0289606, -0.0499988496, 0.00424359366, 0.00912537705, -0.00999096688, 0.0365015082, -0.000192557185, -0.0432795212, 0.0308678336, 0.00251608063, -0.0309265181, 0.00416657049, 0.0330684856, -0.018338779, -0.0339487493, 0.0157126654, 0.042369917, 0.0100129731, 0.00585373817, 0.0148470756, -0.0264078416, 0.0117368186, 0.00153862359, -0.017898649, 0.00525956182, 0.0352104567, 0.0173704922, 0.0180453584, 0.0135560259, 0.0125143826, 0.0120522454, 0.0059380969, 0.00459569832, 0.0374991372, -0.0445705689, 0.00510918396, 0.0133579671, -0.0224906784, 0.00340917916, 0.003141433, -0.00235103141, 0.0332445391, 0.00312859565, -0.0183241088, -0.00146618544, 0.0032349606, -0.00926475134, -0.00798837189, 0.0188816078, -0.0311612543, 0.00638923096, 0.0132039208, 0.00558966, 0.00134423247, 0.00734284706, 0.00816442445, -0.0115681021, 0.017898649, 0.0109299123, -0.0174291767, 0.0433088616, 0.00241154945, -0.022784099, 0.00494046696, -0.0244859383, -0.000675325573, 0.014340925, 0.0308384914, 0.0165049, 0.0095068235, -0.0267159343, 0.0124777053, 0.00480842777, -0.00117643271, 0.00220982288, -0.00759225478, -0.0149204312, 0.0295914542, 0.00630854024, -0.0307798069, 0.0154779302, -0.00520821335, 0.0297675058, -0.0112453392, 0.00936744828, 0.00320378481, -0.0159767438, 0.00311209075, 0.00481943134, -0.0150524704, 0.00956550706, -0.0350930877, -0.0191163439, -0.0254688971, -0.00623151707, -0.00707143312, -0.00646258565, -0.0219478514, -0.00510918396, 0.030574413, -0.00645158254, -0.00370076578, -0.00856054202, 0.00996896066, 0.00154595915, -0.00438296841, 0.0149937859, 0.0181773975, -0.0085312, 0.000398639211, 0.0218304824, 0.0221532453, 0.00831113476, 0.0149571085, -0.0177079253, -0.0286525097, 0.00550530152, 0.0538426563, 0.0135486899, -0.00533658499, 0.0437489934, 0.00289936108, 0.0268773157, -0.0375284776, -0.0405213684, 0.00321112038, -0.00828912854, -0.0271707363, 0.0213023257, 0.00874393, 0.0160794426, -0.0453921482, 0.010790538, 0.00337250158, 0.00894932449, -0.0158740468, -0.0291219819, 0.00646992121, -0.0374111086, 0.0489425361, 0.00864856876, -0.0170037169, 0.02178647, -0.0221532453, 0.0232095588, -0.0156393107, 0.0110179391, 0.00861922652, 0.0585373826, -0.021008905, -0.0152872065, 0.0128151393, -0.00941879675, 0.00278932834, -0.0286231674, -0.0523168705, 0.0135927033, 0.025571594, 0.0148764178, 0.001112247, -0.0359733514, -0.0315720439, -0.0023070185, -0.0156099694, 0.00763626769, -0.0425753109, -0.0337726958, 0.012235634, 0.00598577736, 0.0381153189, -0.0289459284, -0.0239431094, 0.00156338094, 0.0179720037, 0.00990294106, -0.0197031852, -0.00890531112, 0.00476808241, -0.00297638378, -0.0201139729, -0.0198205523, -0.0264518559, 0.0312492792, -0.00845051, -0.0315427, -0.00682202587, -0.001112247, 0.0304863863, -0.0288725737, -0.0183241088, 0.00193290738, 0.0212143, 0.0122943176, 0.0122209629, -0.0320708565, -0.00890531112, -0.0358266383, -0.00999096688, 0.037675187, 0.0174731892, 0.00209062081, 0.0340954587, -0.00387681788, -0.00260777446, -0.00689538103, 0.0163288489, -0.0270827096, -0.0183094367, -0.0184708182, 0.0135046775, 0.0520821325, -0.015565956, -0.0128444815, -0.0258503426, 0.00790034607, 0.0172971375, 0.011010603, -0.00589408353, 0.0248673856, -0.00420691585, 0.00227951026, -0.0436903089, -0.0175905563, -0.0103724133, -0.0483556949, -0.0170183871, -0.00146251766, 0.00966820493, -0.0220212061, 0.0253075156, -0.0283884313, 0.035679929, -0.0117881671, -0.020671472, 0.000454572495, -0.0129178362, 0.0165782571, 0.00630120467, 0.00334499334, -0.0434555709, 0.0416657068, 0.00565201184, -0.012338331, -0.0359733514, -0.0124043506, -0.00886129774, -0.00381813385, 0.0137247425, 0.0284764562, 0.00456268853, -0.00185129978, -0.00677434495, -0.0034018436, -0.0161674675, 0.042252548, 0.0157566797, 0.0480035879, 0.0241191629, -0.0246033072, 0.00494780252, 0.00211629504, 0.0309558604, -0.00618750416, 0.0240751505, -0.00587574486, 0.0181187149, 0.0183681212, 0.00267929561, 0.0167396385, -0.0175318737, -0.0145096425, 0.00131580746, 0.0279629715, 0.0249700826, -0.0187202264, -0.0116928061, -0.0148910889, 0.0268773157, 0.0170477293, 0.0121035948, -0.0299288873, -0.0277575757, 0.00595276756, 6.3784566e-05, 0.0226373896, -0.0139448075, 0.0142015507, 0.0274201427, 0.0358853228, -0.00260777446, 0.00688071, 0.0131599084, 0.0358266383, 0.0283737592, 0.0062902011, -0.0107758669, -0.0198205523, 0.00769495172, 0.00491112517, 0.00711177848, -0.0160354283, 0.0198058821, -0.0474754311, 0.00147902255, -0.0442184657, 0.013013198, -0.00534025254, -0.0132185919, 0.0112673463, -0.0368536115, -0.0386434756, 0.014450958, 0.0164902303, 0.0159474034, 0.0382326879, -0.0301929656, 0.0091620544, -0.00294337398, 0.0174585171, 0.00262794713, -0.0287845489, 0.00559699535, 0.00265545514, 0.0214637071, 0.00229234737, 0.018896278, 0.0114067206, 0.0193657503, -0.0164168756, -0.0289752707, -0.00385114364, 0.017238453, 0.0113113588, 0.0134386579, -0.021111602, 0.0116928061, 0.00242805434, -0.0053145783, 0.0180893727, 0.0101376772, 0.0112966876, 0.0368829519, -0.0126537578, -0.0305450708, 0.0143629322, 0.0133653022, -0.00919139665, -0.00521921646, -0.00208878703, 8.53899401e-05, -0.0361200608, -0.0314840153, 0.00843583886, 0.0093161, 0.0171944387, 0.0311905965, 0.017795952, 0.000881636806, 0.00616916548, 0.00382546941, 0.0053805979, -0.0423992574, -0.00508717727, 0.0365308486, 0.0241338331, 0.0361200608, 0.0212583132, 0.0136147095, 0.0011782666, 0.0278456025, 0.00889797602, -0.0105851432, -0.0585667267, 0.0236790311, -0.0106951762, 0.0275375117, -0.0048927865, -0.0167396385, -0.0169743747, -0.0163875334, -0.00946281, 0.00703842333, 0.0127271125, 0.00308274874, -0.00719613722, 0.017898649, -0.0101450123, -0.0497347713, -0.0493239798, -0.00707510114, -0.00502115767, 0.0312786214, -0.0421645232, -0.00934544206, -0.0145976683, 0.00238587521, -0.010665834, -0.0187495686, -0.0131672435, -0.009448139, 0.00125528942, -0.00220065354, 0.0430154391, 0.0369416364, -0.0206568018, 0.00941879675, -0.0391716324, -0.017238453, 0.0382326879, 0.0464191176, -0.0116194505, 0.0303396769, 0.0215810761, 0.0254982393, 0.00411522202, -0.00593076134, 0.00480476, -0.0384967662, -0.0648459271, -0.0170330591, 0.0226520598, -0.0295327697, 0.00790034607, -0.0122649753, 0.0158153642, 0.000628103211, 0.0511138476, 0.0121769495, 0.0174291767, 0.00519721024, -0.02335627, -0.0397584736, 0.0118761938, -0.0126244156, -0.00771695841, -0.0255129095, -0.00608480722, 0.0226520598, -0.0101083349, -0.0321002, -0.0178106222, -0.0155806271, -0.00987359881, -0.060151197, 0.00651026657, 0.0284471139, 0.0106511628, 0.00866323896, -0.0281096809, -0.0585667267, 0.00328630931, -0.0332152, 0.0113700433, -0.00619850727, 0.000720255543, -0.0389662385, 0.0084138317, 0.000240008769, -0.0200846307, -0.0245006084, -0.0322175659, -0.0235763341, -0.0180600304, -0.00908136368, 0.0209795628, 0.0141135249, -0.00271780719, 0.00527056539, -0.0130792176, -0.0154192457, 0.00597477425, -0.0111133, -0.00946281, -0.0415776819, 0.0183241088, 0.00779764913, -0.0113627072, 0.0331858546, 0.0252781734, -0.0170624, 0.049910821, -0.0303983614, -0.0359733514, -0.000713837, 0.0231362041, 0.0229894947, 0.0161527973, 0.0118101742, -0.00855320692, 0.0106878402, 0.0242512021, 0.00765827438, -0.0249554105, -0.0128151393, 0.018338779, -0.0154926, -0.00261511, 0.0276988931, -0.0199379213, 0.0356505886, 0.0480916165, 0.0383793972, -0.0442478061, 0.00985892769, -0.0211556163, -0.00575837679, -0.0138054332, -0.00378879183, 0.00400518952, 0.0275961943, -0.0270680375, 0.0109152412, 0.0350930877, -0.000794986088, 0.000473140506, 0.0070494269, -0.0240458082, 0.0151698384, 0.0154632591, 0.00605913252, 0.0112820175, -0.00477908598, -0.00443064887, 0.037909925, 0.00810574088, -0.042135179, 0.00943346787, -0.0301636234, 0.0141281961, 0.0166076, 0.0195564739, -0.0030570745, -0.0214490369, 0.00735018263, 0.0181333851, -0.000740886666, -0.0244712681, -0.0102110328, 0.00397951528, -0.0243979115, -0.00406387355, -0.0147370435, -0.037675187, -0.0111793196, 0.0101596834, -0.00633054646, 0.00716312742, -0.0192777254, 0.0130645465, 0.0123530021, -0.00977090187, 0.0214783791, -0.0138274394, -0.00242988835, -0.00324413017, 0.0071924692, -0.00368242688, -0.00142033841, 0.0208035111, 0.0149130952, -0.0140108271, -0.00259126956, -0.00979290809, 0.0428393893, 0.0111353071, -0.00822310895, -0.0208181832, 0.0161968097, -0.0174438469, -0.00505783549, 0.0185881872, 0.0141135249, 0.00761426101, 0.046917934, 0.00402719574, 0.00792968832, -0.0200846307, -0.00436096173, -0.0175025314, -0.00083028822, -0.0131305661, 0.0221532453, -0.00894932449, 0.00966086891, -0.0242805444, -0.0122429691, -0.00821577292, 0.0215077195, 0.042135179, 0.0129031651, -0.0062498562, 0.0274934974, -0.00732817641, -0.0218744967, -0.0113920495, 0.00693572639, 0.00407487666, 0.0100716576, 0.000357835437, 0.016666282, -0.00550896954, 0.026686592, 0.0650806576, 0.0113553721, 0.00346236164, -0.00343852118, 0.0305157285, -0.0333032236, 0.00925008, 0.00259126956, 0.0175025314, 0.0247353464, 0.0157126654, 0.00992494728, 0.0185001604, 0.0352104567, -0.0109005701, -0.00119293761, 0.0208328534, -0.0216250885, -0.010453104, -0.00687704235, -0.0258210022, 0.0186468717, 0.0118028382, -0.0133212898, 0.00309375208, -0.00486711226, 0.0152431931, -0.0225346927, -0.0139814857, -0.00231802161, -0.00133781391, -0.00434262305, 0.0191896986, -0.014230893, 0.00369343022, 0.0381153189, 0.0244419258, 0.0255569238, -0.0353278257, 0.0195858162, -0.00379612739, 0.0238697547, 0.000425459672, 0.0135486899, -0.00873659458, -0.0147957271, 0.00833314098, -0.0129031651, 0.0109005701, 0.00980024412, -0.00328814308, -0.0166369416, 0.0165342428, -0.0223292969, 0.016680954, -0.0110472804, 0.00828912854, -0.0306330975, 0.0164168756, -0.00974889472, 0.0128371455, -0.0040675411, 0.0271854065, 0.0129031651, 0.0165929273, 0.00887596887, -0.0155366138, -0.0267599467, 0.0019127347, 0.0137320776, -0.0191750284, -0.0186468717, 0.0179866757, -0.00710444292, -0.00595643558, -0.0246326476, -0.00466538547, -0.031131912, -0.00678901607, 0.00803238526, -0.00743454136, 0.0318948068, -0.0265838951, 0.011443398, -0.0244125836, 0.0128444815, 0.0094408039, -0.0214490369, -0.0164022036, 0.0135780321, -0.0209648926, -0.0212729834, -0.0124336928, 0.0365895331, -0.0154926, -0.00781965535, 0.00273431209, -0.0171944387, -0.00115534314, 0.00472773751, -0.00809107, -0.0160354283, 0.00124887086, 0.0210675895, 0.00222266, -0.0292980336, 0.00229968294, -0.00210345793, 0.0127051063, 0.015565956, 0.00063635566, 0.0306624398, -0.00560799893, -0.00790034607, 0.00606646808, 0.00225933758, -0.0247646868, -0.00600044848, -0.00195491384, 0.00313042966, -0.0126170805, 0.0237523876, 0.0178839769, -0.00906669255, 0.00193840894, -0.00736485375, 0.0075702481, -0.00158997218, -0.025571594, -0.00084037456, -0.0111279711, -0.0149717797, -0.0128591517, -0.0196445, 0.000937111618, 0.0110399453, 0.00529257162, 0.0309265181, 0.00251608063, 0.0287258644, 0.00410788646, -0.00213830173, 0.00755557697, -0.0263051447, 0.00579138659, -0.0238697547, 0.00264628581, 0.0109959319, 0.0292686913, 0.0189843047, -0.00542094326, -0.00759225478, 0.00401619263, -0.0315427, 0.00070650148, -0.00806172751, 0.013115895, -0.00754824141, 0.00246473192, -0.0364721641, 0.00147627178, 0.0199819338, 0.00927208643, 0.0168423355, 0.0122869825, -0.0217424575, 0.0136880651, -0.0247353464, -0.0281243529, -0.00824511517, 0.00621317839, -0.00935277715, -0.00205577724, 0.00768761616, 0.0182947665, 1.8782921e-05, 0.0174291767, 0.031014543, 0.00580972526, 0.021669101, -0.0230775196, -0.00185771834, 0.00937478431, 0.0193070676, -0.0163288489, 0.0166369416, -0.0164608881, -0.0252488311, -0.0118761938, 0.0194831192, 0.0142602352, 0.0109079061, 0.016783651, 0.00379612739, 0.00616916548, 0.0221532453, 0.0154485879, -0.00591609, 0.000219606882, 0.00874393, -0.0163141787, 0.0204220656, -0.0014230893, -0.0160794426, 0.0119495485, -0.00251424662, 0.00539893657, -0.00386214699, 0.00922807399, -0.00581706082, 0.028901916, -0.00633421447, -0.0277575757, 0.0118761938, 0.0334499329, 0.00597477425, 0.013445993, 0.000565751339, -0.0101670194, 0.015228522, 0.0301929656, 0.0270827096, 0.00135340192, -0.000915563549, -0.0197178554, 0.0077463, 0.0167102963, 0.000535950821, -0.00146710232, 0.00893465336, -0.0134973414, 0.0192337111, 4.08037849e-05, 0.00715212384, -0.000201153482, -0.00439030398, 0.0193364099, -0.0212436412, -0.0105778081, -0.0091620544, -0.0169156902, -0.0115094176, -0.0308384914, 0.0241778474, 0.0251901466, -0.00010086329, -0.012008233, -0.017795952, -0.00596377114, 0.00247756904, -0.00977090187, 0.000715670874, 0.00262427935, -0.0164462179, 0.0175465439, -0.0110179391, 0.0185588449, 0.00299655646, -0.0250727795, -0.023458967, -0.00342201628, 0.0137540847, -0.0149351023, 0.0289459284, -0.0434555709, -0.00436829729, -0.0183241088, -0.00874393, -0.0107025113, 0.00155604538, 0.0243538991, 0.0165049, -0.00602612272, 0.0081937667, -0.0070824367, -0.0183241088, -0.018236082, 0.0196885131, 0.0243685693, -0.00718146609, -0.00571436388, 0.0487371385, -0.00312309409, 0.000873384357, -0.0181040429, -0.0223146267, 0.0104751112, 0.0109225772, 0.0155806271, 0.00507617416, -0.00576938, 0.00891264714, -0.00417023851, 0.000734009664, 0.0363254547, 0.0088172853, 0.00386948255, -0.0146856941, 0.0181773975, 0.00274714921, 0.00540260458, -0.013343296, 0.00127087743, 0.0328630917, -0.00264445203, -0.00935277715, 0.0315427, 0.00716679497, -0.00883929152, -0.00495880609, -0.0190723296, -0.0232535731, -0.00644057943, 0.0291219819, 0.00685136812, -0.0164755601, 0.0024518948, -0.0207301565, -0.00652493769, 0.026129093, 0.0112893526, -0.0438957028, -0.0248673856, -0.00381079828, 0.0182654243, 0.000811032543, -0.0363841392, 0.00515319686, -0.00860455539, 0.0263931714, 0.0143776033, -0.00316527323, 0.0107025113, 0.0107978731, 0.00407120911, 0.0140768467, -0.0199966058, -0.00412255758, 0.0180747, 0.000452280132, 0.00904468633, -0.00839182548, -0.0132039208, -0.0143849384, 0.0207448266, -0.0170917418, -0.00326063507, 0.0175465439, -0.00727316, -0.00285351416, -0.0317480937, -0.0059380969, -0.0106364917, -0.0155219426, -0.0116047794, -0.0146416817, 0.0159033891, 0.0208035111, 0.00586107373, 0.0117955031, -0.0102623813, -0.0171797685, 0.0041519, -0.0204660781, -0.00118376815, -0.01067317, 0.00194024283, -0.0182654243, 0.0204807483, 0.00309375208, 0.0250581075, 0.0108345505, -0.0142162219, -0.0135413548, 0.0291366521, -0.0206421297, -0.00919139665, -0.0141868796, -0.021566404, -0.027229419, -0.0252781734, 0.00255825976, -0.0109812608, 0.01333596, 0.00814975332, -0.00449300092, -0.00928675756, 0.0463897772, -0.00693205884, -0.00198975764, 0.0355919041, 0.023458967, 0.0253662, 0.0289752707, 0.0306037553, -0.0172531232, -0.00103339017, 0.00687704235, 0.00119110371, -5.69505073e-06, 0.0143115837, 0.0123236598, -0.012448363, 0.0110326093, 0.0132992826, 0.00930876471, 0.0351517722, -0.00384380808, 0.0376458466, -0.0407854468, 0.00459203031, 0.030691782, -0.00893465336, -0.022901468, 0.0100349803, 0.0123309949, -0.00734651508, 0.0123456661, -0.0115681021, -0.0118541867, 0.00676334184, -0.0505563468, -0.0355038755, -0.0120742526, 0.0085385358, -0.0240311362, 0.00333399, 0.0103063937, 0.0041519, -0.0118615227, -0.0123603372, 0.0134093156, 0.0122869825, -0.000902726431, 0.0219331793, 0.00608847477, 0.0105998144, -0.00459569832, 0.0357679538, 0.0134753352, 0.00527790049, -0.00860455539, -0.00595643558, -0.0045480174, -0.016123455, -0.00681469031, 0.0153018776, -0.00344218896, 0.0256449487, -0.000829371274, 0.0217571277, -0.00910337, -0.00470573083, 0.00436829729, -0.0201139729, 0.01891095, -0.0272734333, 0.00856054202, 0.00209428859, 0.0117588257, 0.0234883092, -0.0269359984, 0.0159474034, 0.00327163818, 0.0028791884, -0.00345502608, -0.00271597318, 0.00714112073, -0.0115460958, -0.0113700433, -0.00224466668, 0.000621226151, -0.00904468633, -0.0236203484, 0.00663130265, 0.00427660346, 0.0180747, 0.00775363576, 0.0156099694, -0.0153752323, 0.00584640307, 0.0316894092, 0.00361457351, 0.0350637473, -0.0124410279, -0.00247206748, -0.0250581075, 0.000781690469, 0.00793702342, 0.0141502023, 0.00432428438, -0.00468739215, 0.0186615419, 0.0221532453, -0.00563734071, 0.00779031357, 0.0213023257, 0.0211849585, -0.00828912854, 2.01296757e-06, 0.0113773784, 0.00421791943, 0.00436096173, 0.00850919355, 0.00411155447, 0.0232829135, 0.00726582436, -0.00533658499, 0.000512110419, -0.00618750416, 0.00339634204, -0.0293273758, 0.0100276442, -0.00412989315, 0.0266279075, 0.00606280053, -0.00609214231, -0.00955083594, -0.00526323, -0.011010603, 0.0105704721, -0.00325513328, 0.00113425346, 0.0207888409, 0.00834047701, 0.0363254547, 0.00506517105, 0.00979290809, 0.0153752323, -0.0168129932, 0.000203675067, 0.0136147095, -0.00126262498, 0.000717046263, -0.0164608881, 0.00025949374, 0.00638556294, 0.0109812608, 0.0036292444, -0.0139374724, -0.00495880609, 0.00527056539, 0.00208878703, 0.0255129095, -0.0150524704, -0.00306074228, 0.00373194157, 0.00856054202, -0.00186322, -0.00681469031, 0.00622051395, -0.00448199781, 0.00368976244, -0.000756933121, 0.00104072574, 8.81407614e-05, 0.0053805979, 0.020011276, -0.0101743545, -0.00128371455, 0.0218011402, 0.0061801686, 0.00636722427, -0.00044700774, 0.00247756904, -0.00089401548, 0.000867882743, 0.00246106414, 0.000884846086, 0.0112600103, -0.00168900157, 0.003891489, 0.00579872215, 0.00703108823, 0.00721080787, 0.0240017939, -0.00419224519, -0.00637822738, -0.0022061551, -0.0124630341, 0.00991761219, -0.00280033168, 0.000580880849, -1.32024888e-05, -0.013445993, -0.0268039592, 0.0128078032, 0.0108565576, -0.00669732224, 0.0186028574, -0.0103650782, 0.00215480663, -0.00280216546, -0.00796636567, -0.0242658723, -0.00518987468, -0.00914738327, -0.00937478431, -0.00900067296, 0.0190576594, -0.0185881872, 0.00578038348, 0.0294300728, 0.00444532, -0.00108473876, -0.00747855427, -0.000742720556, -8.06333192e-05, -0.013233263, -0.00826712139, -0.00817176048, -0.0103504071, 0.00559332781, 0.000243218063, 0.0205834452, 0.00164407154, -0.00649559544, -0.0171064138, -0.00370443333, -0.00930876471, 0.00235836697, -0.00238037365, -0.00730983727, 0.000864673464, -0.0140254982, -0.00893465336, 0.015228522, -0.00724381767, -0.0153312199, -0.0102917226, -0.00851653, 0.000972872251, -0.0134313218, 0.00103339017, -0.0145683261, 0.000453426328, 0.0102110328, -0.0180747, -0.000628103211, 0.0199525915, 0.0155806271, -0.0061471588, -0.00829646364, 0.0112746814, -0.0262758024, -0.010665834, -0.00547229173, -0.00512752263, -0.0123823434, 0.0194244348, 0.0181040429, 0.0106218206, -0.0150671415, -0.016123455, -0.00333399, -0.0165049, 0.0180747, -0.00105998141, -0.0156099694, 0.0278309323, 0.00257293065, -0.0102110328, 0.0195858162, -0.0010664, 0.00896399561, -0.0200259462, 0.00898600183, 0.0210529193, 0.0109885968, 0.0131672435, 0.0133799734, 0.00403819932, -0.0270240251, 0.00763626769, 0.00613615569, 0.000474057451, 0.0157566797, 0.0191016719, 0.00401986064, -0.00451867515, -0.0221532453, -0.0108712288, -0.00218048086, -0.00874393, -0.0052815685, -0.0160941128, -0.00190173148, 0.00444532, -0.0169743747, -0.00917672552, -0.0336553268, 0.0169450324, -0.000354167685, 0.00504683191, 0.0018650539, -0.0201139729, -0.00551263709, 0.0144142807, 0.0134386579, -0.0126610929, 0.0337140113, 0.0216250885, 0.00409321534, -0.00627553044, -0.0172677953, -0.00332848844, 0.00168074912, 0.0124630341, -0.00754824141, -0.00883195642, -8.58484127e-05, 0.0176198985, -0.000875218248, -0.00732450839, -0.0078489976, -0.00770228729, 0.0118028382, 0.0018320441, 0.0260410663, 0.0269359984, 0.0034183485, 0.00062443543, -0.00138182705, 0.00663863821, 0.00169083546, -0.0162554942, -0.0170037169, -0.042252548, 0.00332298689, -0.00615449436, 0.00277649122, 0.0201139729, 0.00549429841, -0.00864123274, -1.14330824e-05, -0.00896399561, 0.0202606842, 0.0106511628, -0.0060041165, -0.00305340672, 0.0284911282, -0.0212876555, 0.00843583886, -0.00227034092, -0.00303506805, -0.0117441546, 0.0143189188, 0.0127124423, -1.88259037e-05, 0.0353278257, 0.0102843875, -0.00882462, -0.0102110328, -0.0283737592, 0.000594176468, 0.0126244156, -0.00333399, 0.0230628494, 0.00904468633, 0.0116561279, -0.00930142868, -0.02335627, -0.0130352043, -0.0289899427, -0.0021126275, 0.00732817641, -0.0143629322, -0.0100276442, -0.0231508743, -0.012558396, 0.010115671, 0.00124336919, 0.0292686913, 0.00898600183, -0.0199819338, 0.015683325, -0.000232787876, -0.00408588024, -0.00131213968, 0.015668653, 0.0221532453, 0.0126904352, -0.0151551673, 0.0151845096, 0.0197031852, -0.00859721936, 0.00304790516, 0.0201726574, 0.00648092479, 0.023341598, -0.00417390605, 0.0224906784, 0.0193364099, 0.0157860219, 0.0270093549, -0.0111939907, -0.0218744967, 0.0181627274, 0.00216764375, 0.00732450839, 0.0144216157, -0.0115387598, 0.01067317, -0.00974156, 0.0114287278, 0.0232242309, -0.00473140506, 0.00309925363, -0.0129251713, 0.000203560456, 0.00932343584, 0.00638923096, 0.00408954779, 0.0149571085, 0.0134019796, 0.00222632778, 0.00930142868, -0.0103577422, 0.00920606684, -0.00886129774, -0.0103577422, -0.00172017748, -0.00258026621, 0.00346052763, 0.00753357075, -0.0119275423, -0.0144803, 0.00636355625, -0.0235323217, 0.0125950733, 0.0148764178, -0.00390249235, -0.0154045746, -0.0136440517, 0.00373377558, 0.0105044525, 0.0247940291, -0.00372644, -0.00392083125, -0.00735018263, 0.00450400403, 0.00243722368, -0.00247023348, -0.0155952983, 0.00524489069, 0.0207594987, -0.00831113476, 0.00974156, -0.00880994927, -0.0367362425, -0.0102990586, 0.0116634639, -0.00494046696, -0.00745288, 0.0311905965, 0.0295914542, -0.0106071504, -0.00629753666, -0.0143189188, -0.0121916207, -0.00835514814, 0.00268112961, -0.0264225136, 0.00313959899, -0.0102183679, 0.00641857274, -0.00403086375, 0.00657628616, -0.00998363178, -0.00142859097, 0.000261786074, -0.0174585171, 0.00412622513, 0.0173264779, 0.0212143, 0.0177225955, -0.00550896954, 0.0159620736, 0.00300022424, 0.000108141488, 0.0264958683, 0.00960218534, -0.00293420465, -0.00770228729, 0.00314876833, 0.00877327193, 0.0303103346, 0.0189549625, 0.00746755116, -0.0118321804, 0.0049257963, 0.0203046966, 0.0338020399, -0.00488911849, 0.00860455539, -0.00371543667, 0.0116194505, 0.0156099694, -0.0107171824, 0.00987359881, -0.00192373793, -0.00660562841, -0.0139668146, -0.00124336919, 0.00530357519, 0.0133286249, -0.000348666043, -0.00444165245, 0.0100863287, 0.0142382281, 0.0103284009, 0.042369917, -0.0125070475, 0.0154779302, -0.013445993, -0.00623885263, 0.0174145047, 0.00287185283, -0.00487444736, 0.00092931767, -0.0106584989, 0.00762159657, 0.00779764913, -0.0178693067, 0.0403159708, -0.0272587612, -0.00888330489, 0.0277722478, -0.00835514814, -0.00803972129, -0.0147297075, 0.011348037, -0.00499548344, -0.00222632778, 0.000121150559, -0.0164022036, 0.0122723114, 0.0149864508, 0.0303103346, -0.00778297801, -0.0224613361, 0.0249847528, 0.00686237123, 0.00850185845, 0.0128518166, -0.0171944387, -0.0117001412, -0.0217131153, -0.0134679992, 0.00922807399, 0.00454434939, -0.00504316436, 0.0159474034, 3.72219911e-05, -0.0105264597, -0.0200993028, 0.0224613361, 0.000612515258, 0.0093161, 0.0135853682, 0.00179353263, 0.0034018436, 0.00312309409, 0.00865590386, 0.0117148124, 0.00348436809, 0.0285351407, 0.0132479342, 0.0181773975, -0.012558396, -0.0411668904, -0.0215517338, -0.0116854701, -0.0130278692, 0.0004454031, -0.00417390605, 0.0186468717, -0.00941879675, 0.0124043506, -0.0222266, -0.000734926609, -0.00816442445, 0.00737218931, 0.000479559094, -0.00325513328, -0.011443398, -0.00570336031, -0.0031084232, 0.00185496756, 0.00455535296, -0.00901534408, -0.00658728974, 0.00100221427, 0.00353755057, 0.0105264597, 0.0215810761, 0.0161821395, -0.0201579854, 0.00679635163, -0.00109115732, 0.0152725354, 0.0191016719, -0.010453104, 0.00429860968, 0.0054246108, 0.00135065115, -0.0052375556, 0.00270497, -0.000216053741, -0.0187495686, 0.00630487222, 0.00905202143, -0.021008905, 0.0152138518, -0.00506517105, -0.00330831576, -0.0074272058, 0.00726215681, 0.0222852845, -0.0152872065, 0.00719980476, -0.00605913252, 0.0142675703, 0.00925741624, -0.0256156065, 0.0151991807, -0.00573637, -0.00990294106, -0.00103247329, -0.000155191927, 0.0219625216, 0.00637089182, -0.0116047794, -0.00457369164, 0.0190576594, 0.00783432648, 0.0168276634, -0.0084138317, 0.00544295, 0.0117441546, 0.000240467241, -0.00148819189, -0.0132112568, 0.0013589036, -0.000885304587, 0.020568775, 0.00373560935, -0.0118101742, 0.00166607811, -0.0127931321, -0.0155072715, -0.0183241088, 0.00069824903, 0.00493679941, -0.00209795637, 0.0187789109, -0.000444256933, 0.0144216157, -0.00765093882, 0.000397951517, 0.0156393107, -0.00992494728, -0.017795952, 0.0164902303, 0.014230893, -0.016123455, 0.0280216541, -0.0107685309, -0.01289583, 0.013570697, -0.00599678094, 0.0261731055, -0.0146050043, -0.000313593133, -0.0026022729, -0.0116047794, 0.00483777, -0.0141281961, 0.0141575374, 0.00892731734, -0.000712003093, 0.00114892458, -0.0168423355, -0.0108272154, 0.00119018683, -0.0132259279, 0.0102623813, -0.0102550453, 0.0178839769, -0.00124612008, -0.00438296841, 0.0235029794, -0.00282233814, -0.0273761302, 0.00246656593, -0.00265912293, -0.00648459233, 0.0368536115, 0.0258210022, 0.0107318535, -0.0115387598, 0.00146068376, 0.0132772764, 0.0379686095, -0.000536867767, -0.0121696144, -0.0196738429, 0.0130205331, -0.0148324044, 0.0254688971, -0.020011276, 0.0124630341, 0.0102110328, -0.00151203235, -0.00856054202, 0.0195858162, 0.0172531232, -0.0101890257, -0.0248673856, 0.00507984171, 0.000101436373, -0.00865590386, 0.000144990976, -0.00987359881, 0.0114874113, -0.00955083594, -0.0289459284, -0.00130480411, 0.0462430678, 0.00672666449, 0.0049257963, -0.000113815047, 0.0225053504, 0.0256596208, -0.0128078032, -0.030574413, 0.0058023897, -0.0302809924, -0.00945547502, -0.00520087779, 0.00781965535, -0.00410788646, -0.0088172853, 0.0116634639, -0.005171536, 0.00630120467, -0.0050505, 0.00382180163, 0.0173851624, -0.00326246885, -0.0147150364, 0.0215810761, -0.0214050226, -0.0123163238, 0.00220982288, 0.0232975855, -0.0192043707, -0.019453777, -0.00463971123, -0.022241272, -0.0208768658, 0.0372057147, 0.00142400619, 0.00372644, 0.00668265112, 0.0267452765, -0.00537326233, -0.00182745932, -0.0143115837, -2.08030524e-05, 0.00591609, 0.0103577422, 0.00483043445, -0.0132185919, -0.010335736, -0.0108492216, -0.00290853041, 0.00636722427, 0.010005638, 0.00334866112, -0.00564467628, 0.00411522202, -0.015565956, 0.00501015456, 0.00942613278, -0.00616183, -0.00891264714, -0.0113113588, -0.0075042285, 0.00513119064, -0.0205834452, -0.0135486899, 0.00118743593, 0.00269029895, -0.00577304792, -0.00438663596, -0.0121769495, -0.00461036898, 0.0227254145, -0.0270533673, -0.0205541048, -0.00034820757, 0.0110252742, 0.00645158254, -0.0192923956, 0.0164902303, -0.00388782122, -0.00156429783, 0.0250434373, 0.00135156803, -0.00839182548, 0.0227694288, -0.0166369416, 0.0332445391, -0.0068036872, -0.0154192457, 0.0164315458, -0.00473507261, 0.0121916207, 0.00236386876, -0.0157860219, 0.000154848065, 0.00495147053, 0.00442331377, -0.0129031651, -0.00355955702, 0.0106364917, -0.0151404962, 0.0199672636, 0.0228867959, 0.00509451283, 0.00869991723, 0.017223781, 0.00465805, -0.00795169454, -0.0153018776, -0.00273247808, 0.0051788711, 0.0257183034, -0.000794986088, 0.00344769051, 0.00352104567, -0.00809107, 0.0025674291, -0.00908136368, -0.0190283172, 0.0230628494, 0.00866323896, 0.00720714033, 0.00429494213, -0.0014560991, 0.0177519377, 0.0106364917, 0.0100203091, 0.0227694288, -0.00223733112, -0.00816442445, 0.00488178292, -0.0150377993, -0.00854587089, -0.0222266, -0.00736852176, 0.0031579379, 0.00418490963, 0.00991761219, -0.00762159657, -0.0234736372, 0.00646992121, 0.00384380808, -0.0185881872, -0.00432795193, -0.012000897, -0.00355038769, -0.00463237567, 0.0263198167, -0.00383280497, -0.00118376815, 0.0147150364, -0.000408725551, 0.0263344869, -0.000586840964, -0.00741987024, 0.00533291698, 0.00822310895, 0.019571146, -0.00958751421, -0.0230775196, -0.0078416625, 0.00465805, -0.0203193668, -0.00404920243, 0.0112013267, 0.0063488856, -0.0243392289, 0.0200846307, -0.00681102276, 0.0206421297, -0.0190429892, -0.0161968097, -0.000658820674, -0.00536959479, 0.000938487, 0.0137980971, -0.00807639863, 0.00034820757, 0.00348986965, 0.0231215339, 0.0205834452, -0.017898649, -0.00801771414, 0.0217131153, 0.00886863377, -0.00055749889, -0.0100789927, -0.0164755601, -0.0155219426, -0.00632321136, 0.0026022729, 2.60467968e-05, -0.00905935746, -0.00262427935, 0.0161527973, -0.00218414865, 0.031131912, -0.000310613075, 0.0132919475, -0.0025527582, -0.00106089842, -0.0279336292, -0.0133579671, -0.0120375752, 0.00652860524, 0.00555665, -0.0361787453, 0.00952883, 0.014788392, -0.0034018436, -0.00712644961, 0.00969021115, 0.0138201043, -0.00588674797, 0.0142895766, -0.000122525977, -0.0076729455, -0.0430741236, -0.00203927234, -0.0175025314, -0.00689904857, 0.0213610101, 0.0232242309, -0.015683325, -0.00412989315, 0.024456596, 0.0113333659, 0.0131599084, -0.00732817641, 0.0120375752, -0.00412622513, -0.00959484931, -0.0196298286, 0.00585373817, 0.0148103982, -0.00688437792, -0.0107758669, -0.0194391068, -0.023238901, -0.0122723114, -0.027229419, 0.0342128277, 0.0222999565, 0.0225053504, -0.0282710623, 0.00137449149, -0.0207301565, -0.00465805, 0.00432061637, -0.0185295027, -0.000448841631, -0.00150561379, 0.000898600207, 0.0246619899, 0.00546862418, -0.0124190217, 0.0129398424, 0.0220652185, -0.00156796561, -0.0127271125, -0.000912812771, 0.00187972491, -0.00222266, 0.0196151584, -0.0776390582, -0.0312786214, 0.0225787051, 0.0193804223, -0.00258943555, 0.00674133515, 0.00214196951, -0.00537326233, 0.00479008909, 0.00314876833, -0.00671566091, 0.00188706035, 0.0138054332, 0.00204110611, 0.000551538775, -0.000863756519, 0.0263051447, 0.0036640882, -0.000369755639, 0.00796636567, -0.010790538, -0.00434995862, 0.0203193668, -0.0131525723, 0.0203193668, -0.00891264714, 0.00359073305, 0.00220432132, -0.0238404125, -0.0176639128, 0.00365125109, 4.289555e-05, -0.0010453104, 0.0010141345, -0.0164462179, -0.0297821779, 0.00288469, -0.018456148, 0.00148452423, -0.0156099694, -0.00765827438, -0.0111793196, -0.00736485375, -0.00216030818, 0.0078563327, 0.0146270106, 0.017121084, 0.0170624, -0.0186322, 0.0184414759, 0.00249040616, 0.0132626053, -0.0112013267, -0.00918406062, 0.000107167245, -0.00148910889, -0.000560249726, -0.0144216157, 0.00936744828, 0.0265252106, -0.0118028382, -0.0268186312, 0.00271413941, 0.0114947474, 0.010005638, 0.0280363262, 0.00348620187, 0.0141428662, 0.0158887189, 0.00254542264, -0.00242438656, -0.00750789605, -0.0146930302, -0.00406387355, -0.00963152666, 0.0236790311, -0.00113333657, -0.00696140062, 0.0189402904, 0.00735385064, 0.0275228396, 0.00346786319, -0.00346236164, 0.0135780321, 0.0164608881, -0.00579505414, 0.0215077195, -0.0120449103, 0.00288285618, -0.00491479272, 0.00284434459, 0.01734115, -0.0173704922, 0.00695773307, 0.0118395155, 0.00203193678, -0.0214050226, -0.0259530414, 0.00652493769, 0.00620584283, 0.00404186687, -0.0101450123, -0.0187202264, 0.0109812608, 0.0286378376, -0.00974156, 0.00458836276, -0.00515319686, 0.017223781, 0.0173851624, 0.0154632591, -0.00229418138, -0.00711911405, -0.00582439639, 0.0159033891, 0.0258063301, -0.00294704176, -0.0120595815, 0.00185863534, 0.0110766226, 0.00195308, 0.00466538547, -0.0162408222, 0.00345685985, 0.0122796465, -0.0125217186, 0.00554197934, -0.0114947474, -0.00740519911, 0.00400885707, 0.0217571277, 0.0171504263, -0.00424359366, -0.0161527973, -0.0208621956, -0.0314546749, 0.00748955738, -0.0100789927, -0.00140108273, 0.00974889472, -0.0169890448, -0.00708610425, 0.012000897, -0.0318361223, 0.00539893657, -0.0108492216, -0.0136073744, 0.0115020825, 0.0127344485, -0.00691005215, -0.01412086, 0.00290669664, 0.0114287278, -0.00506517105, -0.00257293065, -0.0302223079, 0.0141942156, -0.00139283028, 0.00304240361, -0.0299729016, -0.0028626835, 0.0162848365, -0.0212583132, -0.0140475053, -0.00947748125, 0.0244859383, 0.00512752263, -0.0113993855, -0.00777564244, -0.0164608881, 0.0197912101, 0.0100863287, 0.0181627274, 0.00274164742, 0.00146251766, -0.0306624398, 0.0109079061, -0.00964619778, -0.0172824655, 0.00782699138, 0.00835514814, -0.0163581911, -0.0260850806, -0.000310154603, 0.0167249665, 0.000863298, 0.0146196745, -0.0040345313, -0.00702375267, -0.000207342819, 0.019893907, 0.0232975855, 0.0119202062, 0.0021328, -0.0167543087, -0.00332848844, 0.0104971174, 0.0148324044, -0.0141575374, 0.00663863821, -0.0157420076, -0.0105924793, 0.0162554942, 0.0112673463, -0.0103577422, -0.0138787879, 0.00577671546, 0.000935736229, -0.0212876555, -0.0251608044, -0.002780159, -0.000629937043, -0.0230921917, 0.0227547567, -0.00560433092, -0.0100423153, -0.00526323, 0.0106511628, -0.00227217469, 0.0145829972, 0.0236790311, 0.0197912101, 0.0120302392, 0.00166424422, 0.00988827, 0.0247206744, 0.001112247, 0.0134826703, -0.0119862258, 0.00184304733, -0.00993228331, -0.0019952592, 0.00644791499, -0.00543928193, -0.0227400865, -0.000887138478, -0.000783982803, 0.00828912854, -0.00432428438, 0.0226667318, 0.0113700433, 0.047680825, -0.0114140566, -0.0085385358, -0.0120595815, -0.00748222182, 0.0149717797, 0.00225566979, 0.000305569905, 0.00439763907, -0.00799570791, -0.00467638858, -0.0177666098, 0.0127197774, -0.000950865739, 0.00153220503, -0.0270093549, 0.0153605612, -0.00428760657, 0.0231508743, 0.00716312742, 0.00233269273, -0.00233819429, -0.00804705638, 0.0151111539, -0.00139833195, 0.00128096377, -0.00311942631, 0.00213096617, 0.0152725354, -0.000169404477, -0.00335599668, -0.0175172016, 0.000200121925, 0.00300572603, 0.00502482569, -0.0176932551, 0.00144692964, 0.00183754566, -0.0115681021, -0.0157713499, -0.0298555326, -0.00671199337, 0.0127491197, 0.00627186242, -9.90007538e-06, 0.00974889472, -0.0144069446, -0.0118982, -0.00623885263, 0.00177244307, -0.0045810272, 0.012455699, 0.0191896986, -0.0124190217, -0.0285644829, 0.0215810761, 0.0025692631, 0.0142455641, -0.0235029794, 0.012008233, 0.00280033168, -0.00977823697, 0.0052118809, -0.0276988931, -0.00487811537, -0.0122943176, -0.0174731892, -0.0191016719, 0.0108052092, -0.0300462563, 0.0154339168, -0.0115901083, -0.00487811537, -0.00445999112, 0.00737585686, -0.0072584888, -0.00255642575, 0.00675967429, 0.00503216125, -0.00908136368, 0.0079076821, 0.000360127771, 0.0100423153, 0.0196445, -0.0111866556, -0.00371910445, 0.0022391649, -0.00457735918, -0.00246656593, -0.00512385508, -0.0112380041, -0.0281536933, 0.0019952592, -0.00935277715, 0.00404920243, 0.00802505, -0.0236643609, 0.00258026621, 0.0186762121, -0.0143922744, -0.0102403741, -0.0243538991, -0.00942613278, 0.0224026535, 0.000984792481, 0.0179133192, 0.00807639863, 0.0230775196, -0.00458836276, -0.00586107373, -0.00498448033, 0.0122429691, 0.00897133071, 0.022241272, 0.00356505881, -0.00866323896, -0.00706409803, -0.00270863762, 0.0125363898, 0.0271120518, -0.0268333014, -0.00445265556, -0.0164022036, 0.00675233873, -0.0125217186, 0.00863389764, -0.00351921166, -0.00206861435, -0.016226152, 0.0132405991, -0.0152578643, -0.0141355311, 0.0720053837, -0.00151753402, 0.0185295027, -0.00765827438, 0.00777564244, -0.0210969318, -0.00540994, 0.0387315, -0.0302223079, -0.00393550191, -0.0216984432, 0.01067317, 0.0159914158, 0.00242071878, 0.00301489537, -0.00457735918, -0.0220065359, -0.00670832535, 0.0146710239, -0.0208475236, 0.00200809631, -0.0145683261, -0.00458836276, -0.0176198985, 0.000690913526, -0.0350344032, 0.0167102963, 0.00563734071, -0.0193950925, 0.0253368579, 0.0171797685, 0.00279299612, -0.0103210649, -0.00111408089, -0.0246913321, 0.00565567939, -0.000380758895, 0.0111646485, 0.0127564548, -0.00696873618, 0.00943346787, 0.00989560504, -0.00807639863, 0.0008504609, 0.0126977712, -0.021228971, -0.00996162463, 0.00174310093, 0.00619850727, -0.0287552066, 0.00358889904, -0.0136220455, 0.00379245961, -0.0270827096, 0.0113847144, 0.00275081699, 0.0171650983, 0.000893098535, 0.00296171289, 0.000618933816, -0.0183681212, 0.0110839587, 0.000343622873, -0.0237817299, -0.0030570745, -0.0151404962, -0.0123530021, 0.0206421297, -0.00563367316, -0.010555801, -0.0185735151, -0.00850185845, 0.00295070955, -0.0275228396, 0.00289752707, -0.0102917226, -0.000640023383, -0.00804705638, 0.00146710232, 0.0174585171, -0.00240788166, 0.00377778849, -0.020128645, 0.00688071, 0.00182195776, -0.00141483685, -0.0301049408, -0.0179279912, -0.0138787879, 0.00396484416, 0.0121696144, -0.00326613663, 0.00552730821, 0.00613982324, 0.000680827186, -0.00486711226, -0.0186615419, 0.00594543247, 0.0101743545, 0.00204844167, 0.0335379615, -0.00689171348, -0.00670099, -0.00962419156, -0.0189549625, 0.0230628494, -0.00204477389, 0.0124850413, -0.0171797685, -0.0124336928, 0.00754090585, 0.00519721024, 0.0342715122, 0.0110546164, 0.00196041563, 0.000415373361, 0.0119715547, 0.000471765088, -0.000181439304, 0.0106218206, -0.00247206748, 0.0101890257, -0.0147077013, 0.0182654243, 0.00183571177, 0.0142749054, 0.0419004448, -0.0200406183, 0.00312309409, 0.00252341595, 0.0250581075, -0.00253258552, -0.00467638858, -0.0200993028, -0.00118560204, 0.0188375935, -0.0119715547, 0.00175593817, -0.00941879675, 0.0273321159, 0.00735751819, 0.00176694139, -0.0103577422, 0.00980757922, -0.00202643522, -0.00316527323, 0.0213903524, -0.00461036898, 0.0106805051, -0.0016349022, -0.00922073796, 0.0235763341, 0.0137394136, 0.00491112517, 0.0267599467, -0.0188669357, 0.0306624398, -0.00103980885, 0.0122943176, 0.00208695303, 0.00349353743, -9.0146561e-05, 0.00935277715, -0.00375394803, 0.0147370435, 0.0060041165, -0.00740519911, 0.00173484848, 0.0293127056, 0.0109372484, 0.0154632591, 0.0165195726, -0.0208768658, 0.011223333, -0.0121329362, 0.0180160161, -0.00266645849, -0.00385481142, 0.000573086843, -0.0388195291, 0.00246106414, 0.0336553268, 0.00645158254, 0.0409321561, 0.0218744967, 0.00583906751, -0.0158300344, 0.00171467592, 0.020011276, 0.00540994, -0.00820110179, 0.0171504263, 0.0192923956, -0.00308091496, -0.0340367742, -0.0113920495, 0.0134239867, -4.98012487e-05, 0.011443398, -0.0168570057, 0.0150964828, -0.0150964828, -0.00626452686, 0.00524489069, 0.0030570745, 0.0146343457, -0.0116928061, -0.000218346089, -0.00464337878, 0.0112086618, -0.0183974635]
23 Jun, 2021
unordered_multiset rehash() function in C++ STL 23 Jun, 2021 The unordered_multiset::rehash() is a built-in function in C++ STL which sets the number of buckets in the container to N or more. If N is greater than the current number of buckets in the container (bucket_count), a rehash is forced.The new bucket count can either be equal or greater than N. If n is lower than the current number of buckets in the container (bucket_count), the function may have no effect on the bucket count and may not force a rehash. A rehash is the reconstruction of the hash table: All the elements in the container are rearranged according to their hash value into the new set of buckets. This may alter the order of iteration of elements within the container, although the relative order of the elements with equivalent keys is preserved. Rehashes are automatically performed by the container whenever its load factor is going to surpass its max_load_factor in an operation. By calling rehash to reserve a certain minimum amount of buckets in the hash table, we avoid the multiple rehashes that the expansion of the container may cause. Syntax: unordered_multset_name.rehash(N); Parameters: The function accepts only one parameter as listed below: count: It is the new number of buckets. Return Value: none(void type function) Below programs illustrate the above method: Program 1: C++ // C++ program to illustrate // unordered_multiset::rehash() #include <iostream> #include <unordered_set> using namespace std; // function to display values in multiset void display(unordered_multiset<int> s) { for (auto it = s.begin(); it != s.end(); it++) cout << *it << endl; } int main() { // declaration unordered_multiset<int> s1; // inserting initial values s1.insert(1); s1.insert(2); s1.insert(3); // displaying Initial values cout << "Initial values are:\n"; display(s1); cout << endl; // displaying initial parameters cout << "initial parameters are: \n"; cout << "bucketcount() = " << s1.bucket_count() << endl; cout << "load factor = " << s1.load_factor() << endl; cout << "Max_load_factor = " << s1.max_load_factor() << endl; cout << endl; // performing rehash s1.rehash(200); // displaying final parameters cout << "final parameters are: \n"; cout << "bucketcount() = " << s1.bucket_count() << endl; cout << "load factor = " << s1.load_factor() << endl; cout << "Max_load_factor = " << s1.max_load_factor() << endl; cout << endl; return 0; } Output: Initial values are: 3 1 2 initial parameters are: bucketcount() = 7 load factor = 0.428571 Max_load_factor = 1 final parameters are: bucketcount() = 211 load factor = 0.014218 Max_load_factor = 1 Program 2: C++ // C++ program to illustrate // unordered_multiset::rehash() #include <iostream> #include <unordered_set> using namespace std; // function to display values in multiset void display(unordered_multiset<char> s) { for (auto it = s.begin(); it != s.end(); it++) cout << *it << endl; } int main() { // declaration unordered_multiset<char> s1; // inserting initial values s1.insert('a'); s1.insert('b'); s1.insert('c'); // displaying Initial values cout << "Initial values are:\n"; display(s1); cout << endl; // displaying initial parameters cout << "initial parameters are: \n"; cout << "bucketcount() = " << s1.bucket_count() << endl; cout << "load factor = " << s1.load_factor() << endl; cout << "Max_load_factor = " << s1.max_load_factor() << endl; cout << endl; // performing rehash s1.rehash(200); // displaying final parameters cout << "final parameters are: \n"; cout << "bucketcount() = " << s1.bucket_count() << endl; cout << "load factor = " << s1.load_factor() << endl; cout << "Max_load_factor = " << s1.max_load_factor() << endl; cout << endl; return 0; } Output: Initial values are: c a b initial parameters are: bucketcount() = 7 load factor = 0.428571 Max_load_factor = 1 final parameters are: bucketcount() = 211 load factor = 0.014218 Max_load_factor = 1 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL
https://www.geeksforgeeks.org/unordered_multiset-rehash-function-in-c-stl?ref=asr3
PHP
unordered_multiset rehash() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0331303701, 0.0121183535, -0.0123613095, 0.0396680981, 0.0611954778, -0.00401981827, -0.00655613234, 0.0239274912, -0.00406031124, 0.0126116285, -0.00190315582, 0.0260772835, 0.0226611737, -0.035663005, 0.025709169, -0.0288455095, -0.0206439029, -0.00583830755, -0.013296322, -0.0513005406, 0.00791447796, 0.0191125423, -0.0303621441, -0.0120668178, -0.01827324, 0.0175664593, -0.0240894612, -0.00711198663, 0.00783349201, 0.016241245, -0.00311425491, 0.0203935839, -0.0058014961, -0.0256502703, 0.00172369962, 0.0243250541, 0.0473248959, 0.0374299586, -0.0407577194, -0.0237213466, -0.0105869947, 0.0104250237, 0.0114925578, -0.00249398081, -0.00824578106, 0.00452413643, 0.0127515122, -0.0381661877, -0.0064309733, 0.022602275, 0.00176327198, 0.00911453366, 0.0236624479, -0.00110710657, 0.014363857, -0.0212034378, -0.00158013462, 0.019834049, -0.0301854499, -0.00626532128, -0.0218218714, -0.0241336357, 0.0383428819, 0.00294492184, -0.00718192849, -0.0246784464, -0.0379894935, 0.0470304042, 0.0583683513, -0.0237360708, -0.0464708693, 0.0286835395, 0.00576836569, -0.000438977411, -0.033689905, 0.00107949798, -0.000333374366, -0.026121458, -0.0303621441, 0.0498280786, -0.0418473408, 0.0149160298, -0.00855499785, -0.0477960818, 0.0147614209, -0.0116029922, -0.00440633949, -0.0239127651, 0.0241925344, 0.0295081176, -0.0558357202, -0.0153872166, 0.0316284597, 0.00680276938, -0.037459407, 0.0512121916, 0.0170069244, 0.0155344633, -0.0203641355, 0.0427308157, -0.0236182734, -0.00774514442, 0.0290074814, 0.000874273712, 0.00865807, 0.0156080863, 0.0231912602, -0.0154755646, -0.0107857762, 0.0368409716, 0.0357219, 0.0146583486, -0.0180229228, 0.0182437915, -0.028153453, -0.031422317, -0.00616961159, -0.0109771965, 0.0150043769, 0.0604297966, 0.0252821539, 0.0236329976, 0.0152841443, 0.0136349881, -0.0505348593, 0.00424436852, -0.0261656307, 0.0205555558, 0.0278736856, -0.0160498247, -0.0109771965, -0.0177431554, -0.0158436801, -0.0796306878, -0.0326591842, 0.0397269949, 0.0175811835, 0.0290958285, -0.0109256599, -0.0205997285, -0.0463825203, -0.0186119061, 0.0208647717, -0.0240452867, -0.0128840329, 0.00396092, -0.0239274912, 0.032718081, 0.00164271425, 0.0240600128, 0.00177431549, 0.0280356575, 0.0263717752, 0.0152988695, -0.0118459482, -0.0167713296, 0.0106238062, 0.00176143146, 0.010528096, -0.0256944429, 0.0176989809, -0.0124128461, 0.00352102215, -0.00511680171, -0.0298320595, 0.0341610946, 0.0152252465, 0.00318787806, -0.0424068756, 0.0393147059, 0.0147098852, 0.00826050621, 0.0253557768, 0.0146436244, 0.0144522041, -0.00834885333, 0.0329831243, 0.0178609509, 0.0189652964, 0.0175370108, -0.0122655993, -0.0227642469, 0.0542454608, 0.0119784698, 0.0184057616, 0.0226758979, 0.00841511413, -0.00151111302, 0.00965198129, 0.0209236704, 0.0224844795, 0.0239274912, 0.00369403651, 0.0717382953, 0.0349267721, 0.0135392789, -0.0475899391, 0.00985076372, 0.0219691172, 0.0356924534, -0.0358102508, -0.0213801339, -0.0256649945, 0.00626900233, 0.0089525627, 0.00519410614, 0.008047, -0.0235740989, 0.04520455, 0.00947528612, -0.0122803245, 0.00165927946, 0.00783349201, 0.00288050179, -0.0198634975, 0.0402570814, -0.0417884402, 0.00893783756, 0.00956363417, -0.0118680354, 0.0300087538, -0.053038042, 0.0223077834, -0.0264159497, -0.0275350194, -0.0162854176, 0.0343966894, 0.00948264822, -0.00727763819, 0.00484439638, 0.0258564148, 0.0322468951, 0.0126852514, 0.0030921679, 0.0436437428, -0.0331009217, -0.037371058, -0.000182217045, 0.00462720869, 0.00694265356, 0.00250318367, 0.067497611, -0.0258858632, -0.0115367314, 0.0138411326, 0.029125277, 0.00738071045, -0.0106974291, -0.00485544, -0.00564320665, -0.031010028, 0.0161823463, 0.00519042509, -0.00730708754, -0.00584935118, 0.0348973237, -0.0286688153, 0.000338205864, -0.014776146, -0.0433198027, 0.0395797491, 0.0266957171, -0.00758317392, 2.61131754e-05, 0.0214243066, 0.0171836186, 0.0120520927, 0.00251606759, -0.0168155041, -0.0417295434, 0.0281240046, -0.0217335243, 0.0021902856, -0.00454990426, -0.0126631642, 0.0157700572, 0.00200806861, 0.0020964162, 0.0058346265, -0.0365464799, 0.00459039724, 0.0118974848, 0.0248256922, -0.00615856797, 0.0232796073, -0.021792423, -0.0409049653, -0.0240452867, -0.0417000949, -0.0235152021, -0.017551735, -0.0225433763, 0.0204230342, -0.0108814863, 0.0233826805, 0.0184499361, -0.00633894419, -0.0318051577, -0.0391085632, -0.0225433763, -0.0304799415, -0.0278736856, -0.00167676492, -0.024074737, -0.0441149287, -0.00343083404, 0.0344850346, 0.0138926692, -0.0228378698, -0.0385784768, 0.00494010653, -0.0405221246, -0.0307744332, 0.0146141751, -0.0304799415, -0.0167566054, 0.0132153369, -0.0149160298, -0.03280643, -0.0179934725, -0.0142092481, 0.00957835838, -0.0303032473, 0.0536564775, 0.0141282631, -0.0164326634, -0.0166977067, 0.064376, 0.0121036293, -0.0615488663, -0.0191419926, -0.00151939562, -0.0226611737, -0.00601500319, -0.012155165, -0.0404043272, -0.00339770364, 0.00369771756, -0.0113011375, 0.0364286825, -0.0130460039, 0.00625795918, -0.0272405278, -0.0107342405, 0.023338506, 0.0180965457, 0.00169609091, 0.00544810575, 0.0271669049, 0.0379894935, 0.001316012, -0.0274908468, 0.0121183535, 0.0247373432, 0.0261361822, -0.0241778083, -0.00233016955, -0.000462444761, -0.00252895174, -0.0228820425, 0.00713775447, -0.000230532169, -0.0121919764, -0.0149528412, 0.0208647717, -0.038931869, -0.0119342962, -0.0198193248, 0.0255177487, -0.00949737336, 0.00260257465, 0.00202463381, 0.0394325033, 0.0122729624, -0.022852594, -0.0192892384, -0.00750586949, 4.66471029e-05, -0.00958572049, 0.00664816098, 0.018199617, 0.0427308157, 0.00943847466, 0.00289890752, 0.0185824577, -0.0234710276, -0.00872433092, -0.0206586272, -0.0163001437, -0.0121404408, -0.0370176695, -0.0300823767, -0.0282712504, -0.0035007759, -0.0262098052, 0.0265926439, -0.035663005, -0.0273288749, -0.0415822975, -0.0478549823, 0.015343043, -0.0168155041, -0.00175038795, -0.00786294136, -0.0109403851, -0.0139147565, -0.0231176373, -0.0356041044, -0.0260331091, 0.0138632199, 0.0129502937, 0.00837830268, -0.0245164745, 0.0423185267, 0.00316395052, 0.00727395713, -0.0229114927, 0.0238538682, -0.00956363417, -0.0429958589, -0.0143196825, -0.00186634425, -0.0160351, 0.0192008913, -0.0122508751, -0.0111612538, 0.002571285, 0.0184499361, 0.0190389194, -0.0233237818, 0.0216157269, 0.0139442049, -0.0120373685, 0.0334837623, -0.00816479605, -0.0680865943, 0.0280651059, 0.00317867519, -0.00839302782, -0.0228967685, 0.0255766474, 0.0232648831, -0.00341242831, -0.0616077669, 0.00261361827, 0.027829513, -0.0163001437, -0.00345476158, -0.0188033264, 0.0322468951, -0.032188, 0.00882004108, -0.0201432668, 0.00834885333, 0.0200107452, -0.0215862785, -0.018523559, -0.00663343677, 0.0331892706, 0.0308333319, -0.0115146451, 0.00923969224, -0.00414129626, -0.0174044892, -0.00163351139, 0.0224108566, 0.00363145676, 0.0162706934, -0.0162559692, -0.00588984368, -0.0382545367, -0.0356924534, 0.028477395, -0.0192008913, 0.0123171359, -0.00897465, -0.00516097574, -0.0291841757, -0.0305682886, -0.0270638317, 0.0159467515, 0.0124570196, -0.00993911177, 0.00575732253, -0.0293314215, -0.022602275, 0.00193812675, -0.000607850263, 0.030273797, -0.00823105685, -0.0371354669, -0.00877586752, -0.0297142621, -0.00136110606, 0.0229114927, 0.0239863899, -0.0469126068, -0.00394619536, 0.0119342962, -0.0113968477, 0.0334248655, -0.0163590405, -0.0459113307, 0.0250612851, -0.00518306252, -0.0375772044, -0.00759053603, 0.0305682886, -0.0242661573, -0.0371060148, 0.0281829033, 0.0353096128, -0.00945319887, 0.00653404556, -0.00576836569, -0.0081353467, 0.00539656961, 0.00608494505, -0.0285215694, 0.00331487763, 0.037960045, 0.0126116285, 0.00820897, 0.00955627114, 0.0121993395, 0.00422964431, 0.00742856553, 0.00946056191, 0.00940166321, -0.0445861183, -0.00171633728, 0.0121846143, -0.0269018617, 0.0204672068, -0.00173474301, -0.00660766847, 0.0298173334, -0.000958019926, -0.0239569396, -0.00946792401, 0.0157111585, -0.00904091, -0.0133404965, 0.00618801732, -0.0332187191, 0.0128987581, 0.0211739894, 0.0151810721, 0.0121919764, 0.00277927, 0.00122398313, 0.00424436852, 0.00642361073, 0.0104765594, -0.0124938311, 0.0460585803, 0.00611439394, -0.0137675097, 0.0193628613, -0.0226611737, 0.000160130134, 0.00572051061, 0.0424363241, 0.00788502861, 0.00624691555, -0.0263276026, 0.0117281517, 0.00624691555, -0.00777459377, 0.00854027364, -0.00168872869, -0.0131343519, 0.0332776159, 0.00961517, -0.0226170011, 0.0213654079, 0.00113839633, 0.014606813, -0.00937221386, 0.00672546541, 0.00815007184, -0.0176400822, -0.00559903262, 0.0048628021, -0.021056192, 0.0124570196, -0.0414939485, -0.00899673626, -0.0126042655, -0.00944583677, -0.0120079191, -0.00656349491, -0.00714143552, -0.00715984125, 0.0213359594, -0.00916606933, -0.0151368985, 0.00519778719, 0.00956363417, 0.00274429913, -0.00250134314, 0.0100495461, 0.0207028016, -0.0210414678, -0.00174854742, 0.0169480257, 0.0196426287, 0.00159669982, 0.00689479848, -0.0164179392, -0.0308627822, -0.00253999513, 0.046677012, 0.0164473895, -0.00787030347, 0.0348678753, 0.0117723253, 0.0411405601, -0.0305388402, -0.0319524035, 0.0124349324, -0.000775342749, -0.0211887136, 0.0203935839, 0.009386939, 0.0246342719, -0.0399331413, 0.0145626385, 0.0039425143, 0.0125453677, -0.0172572415, -0.0348384269, 0.0181407183, -0.026106732, 0.028403772, 0.00728131924, -0.00806172378, 0.026121458, -0.0100937197, 0.022602275, -0.0222783349, 0.0225139279, 0.00647146581, 0.0587511919, -0.0176842567, -0.0112201525, 0.011014008, 0.0109256599, 0.00305351592, -0.0175664593, -0.0498280786, 0.0332481675, 0.0251054596, 0.0180818196, 0.00269828481, -0.0444977693, -0.0357219, 0.0211445391, -0.00547755463, -0.00114391814, -0.040639922, -0.0347206295, 0.01958373, 0.0135613652, 0.0278589614, -0.0373121612, -0.0258122403, 0.00346028316, 0.0231176373, 0.00559167052, -0.0331009217, -0.00707149366, 0.00591561198, 0.00626532128, -0.0273288749, -0.0230292901, -0.0253557768, 0.0243250541, -0.00568369916, -0.023338506, -0.000976425654, -0.00915134512, 0.0186708048, -0.0198046, -0.0207469743, 0.00336825452, -0.000549872115, 0.0241041854, 0.00305167539, -0.0247962419, -0.0151516236, -0.0213065092, -0.000832400576, 0.0224844795, 0.0165357366, 0.00366458716, 0.040639922, -0.000585303234, -0.000933172123, -0.0144816535, 0.00904827286, -0.0233679544, -0.0253116041, -0.0212328862, 0.00473396201, 0.0479138792, -0.0163295921, -0.0102704149, -0.0147466967, 0.00642361073, 0.0151368985, 0.0220721904, -0.00609598821, 0.0342494436, 0.00381367397, 0.00394619536, -0.0352212675, -0.0167124327, -0.00364618143, -0.0363403372, -0.0184057616, -0.0122214258, -0.00603709, -0.023824418, 0.032188, -0.026106732, 0.0382545367, -0.00569842383, -0.0161676221, -0.000971824222, -0.0129355695, 0.0222488847, 0.00294676237, 0.000588984403, -0.037695, 0.0399036929, -0.00154976512, -0.0151663478, -0.0440265834, -0.0121109914, -0.0121330786, -0.00221421313, 0.0152841443, 0.0213359594, -0.00823841896, -0.00549227931, 0.00227127108, -0.00224918406, -0.0112054283, 0.0509765968, 0.0186560806, 0.0587806404, 0.0485912114, -0.014606813, 0.000169333012, -0.00421860069, 0.0317462571, 0.00584935118, 0.0227789711, 0.00212218426, 0.0314517654, 0.0226464495, 0.00843720138, 0.0176548064, -0.0129208453, 0.00277190772, -0.0142092481, 0.0321290977, 0.0281681772, -0.00898201205, 0.00234305346, -0.0193481371, 0.0291694514, 0.0101010818, 0.0178167783, -0.0249140393, -0.0245311987, 0.00561007624, 0.00554013439, 0.0364581347, -0.0141724367, 0.00815007184, 0.0222783349, 0.0432020053, -0.00203751796, 0.0189211238, 0.0211445391, 0.0213212352, 0.022204712, -3.76742937e-05, -0.00440265844, -0.00627268385, 0.00646778475, 0.0145773636, -0.000456462905, -0.027093282, 0.016403215, -0.0354863107, -0.0191272683, -0.0337782539, 0.0109403851, 0.00360016711, -0.0298173334, 0.00868751947, -0.0269018617, -0.0305093918, -0.0062174662, 0.00649355259, 0.0182290673, 0.0321290977, -0.0265631955, 0.00574627891, -0.0108005013, 0.0258858632, 0.000825498428, -0.0262834281, 0.0199665707, -0.00215347414, 0.0127147008, -0.00347316731, 0.021468481, -0.00122122234, 0.0134730181, -0.0195984561, -0.0370765664, -0.00774514442, 0.0250465609, 0.00724082673, 0.0116103543, -0.0157258827, 0.00598555384, -0.00266699493, -0.01028514, 0.0189505722, 0.0138337705, 0.0175959077, 0.0223666821, -0.0141577125, -0.0263717752, 0.0147172473, 0.00572787318, 0.00622482877, -0.00371428276, -0.00574259786, -0.00795128942, -0.0394619517, -0.0435553938, 0.00466402, 0.00551068503, 0.00383576076, 0.0247078948, 0.0135834524, 0.010852037, -0.00395355746, 0.00266147312, 0.0156964343, -0.0338371545, -0.00525300438, 0.0220427401, 0.0212476123, 0.0397858955, 0.0143123204, 0.0109845586, 0.00486648362, 0.0246784464, 0.0269902088, 0.000727487728, -0.0435259454, 0.012972381, -0.0256060958, 0.0313634165, -0.0156817082, -0.0218660459, -0.0320996493, 0.00648987154, 5.31466358e-05, 0.00714511657, 0.00526036695, 0.00352838449, -0.0069684214, 0.0113011375, -0.0198782235, -0.0546872, -0.0431136563, -0.00576836569, -0.00195285131, 0.0283595975, -0.0434375964, -0.00425173109, -0.028403772, 0.00316211, -0.00432167295, -0.00812798459, -0.0169627499, -0.0174044892, -0.00986548793, 0.000310367148, 0.0449100584, 0.0265484713, -0.0292872488, 0.0111318044, -0.0462941714, -0.0324235894, 0.0276528168, 0.0528907962, -0.00438057119, 0.0147835081, 0.0188475, 0.0338666029, 0.00617329264, -0.00292467559, 0.000489133119, -0.0446155667, -0.0626679361, -0.01827324, 0.0267840642, -0.0316284597, 0.000464745477, -0.0119342962, 0.0191419926, 0.00393883325, 0.0393147059, 0.00379526801, 0.0147614209, 0.00644937903, -0.0158731285, -0.0296995379, 0.0255913716, -0.00714879809, -0.0227495208, -0.0186708048, -0.0132006127, 0.0178020522, -0.00675491476, -0.0371649154, -0.0123318601, -0.00920288078, -0.0126189906, -0.0627857372, 0.0011365558, 0.0189800225, 0.00796601363, -0.00107765733, -0.0299793053, -0.0472659953, 0.00134178007, -0.0238980409, 0.0146583486, -0.00351918163, 0.0135760903, -0.0418767892, 0.00503949774, -0.0120520927, -0.0328653269, -0.0213948581, -0.026195081, -0.0215126537, -0.0188033264, -0.00657453807, 0.0197015274, 0.00519042509, 0.00066950958, -0.00649355259, -0.00712671084, -0.0166240837, 0.00681749405, -0.00746537698, -0.0127662364, -0.0434375964, 0.014363857, 0.00277374825, -0.0133552207, 0.0338077024, 0.0188769493, -0.0217482485, 0.0459702313, -0.0247962419, -0.0280945543, 0.00953418482, 0.0277706143, 0.022204712, 0.0251201838, 0.0127735985, -0.00350997876, 0.00979186501, 0.0126926135, 0.00971088, -0.0312456209, -0.0200254694, 0.0139147565, -0.00349893537, -0.00591929303, 0.0415822975, -0.0240452867, 0.0299645811, 0.0513888858, 0.037547756, -0.0367820747, 0.00510207703, -0.0251496322, -0.00447628135, -0.0128840329, -0.00177431549, -0.00146325806, 0.0357808024, -0.0302148983, 0.0108225876, 0.0281681772, -0.000201543095, -0.0036719495, 0.00393147068, -0.0224844795, 0.00593769876, 0.0265337471, 0.00868751947, 0.024810968, -0.000922588806, 0.00196021353, 0.0312161725, 0.00460880296, -0.0434375964, 0.00491801975, -0.0165062882, 0.0137454234, 0.0145479143, 0.0249287635, 0.00125803379, -0.0221458133, 0.00735494262, 0.0175811835, -0.00513152638, -0.0194659345, -0.0173161402, 0.00864334591, -0.0279767588, -0.0127956858, -0.0107416026, -0.0296700876, -0.00183689501, 0.00862862077, 0.00161142449, 0.0036443409, -0.0333659649, 0.00562112, 0.0117355138, -0.000962621358, 0.0168007798, -0.0225875508, -0.00180744578, -0.00358176138, 0.00335352984, 0.00915134512, -0.0014098814, 0.0195690058, 0.0123171359, -0.0154313911, -0.00658190064, -0.00884949, 0.0318640545, 0.00591193093, 0.0013104903, -0.0216010027, 0.0149086667, -0.0266662687, -8.31710349e-05, 0.0170069244, 0.0109771965, -0.000447720173, 0.0450867526, 0.00679908833, 0.0144742914, -0.0194953829, -0.00106109213, -0.00970351789, -0.00711566769, -0.0141577125, 0.00321548665, -0.00994647387, 0.015505014, -0.033307068, 0.00185898191, -0.0117355138, 0.0185971819, 0.0528907962, 0.0123465853, 0.0035007759, 0.0195101071, -0.0139957415, -0.0131196268, -0.0187444277, 0.0051094396, -0.000542969967, 0.0163737666, 0.000142759687, 0.0252674296, -0.0116324415, 0.0202463381, 0.0589573383, 0.00847401284, 0.00397564471, -0.00947528612, 0.0355157591, -0.0318051577, 0.01044711, -0.00333328359, 0.00902618561, 0.0189947467, 0.0157258827, 0.0115956301, 0.0166240837, 0.0394619517, -0.00962253194, -0.00293387845, 0.0197309759, -0.0211003646, -0.0051094396, -0.011831224, -0.0234121289, 0.0112275146, 0.00590456836, -0.00491433823, 0.00619537942, -0.00612911861, 0.0214390308, -0.0211003646, -0.0176842567, 0.00100035314, 0.00169148948, -0.00361305103, 0.00893047545, -0.00869488157, -0.00897465, 0.0253410526, 0.0332776159, 0.0281387288, -0.0305093918, 0.0206733514, -0.00281792204, 0.0210267417, 0.00482230959, 0.011337949, -0.0200107452, 0.00231176359, 0.0108225876, -0.0138926692, 0.00658190064, 0.0190094709, -0.000255840103, -0.0131785255, 0.0225728266, -0.027093282, 0.0158436801, -0.01925979, -0.000796049193, -0.0305093918, 0.0154902888, -0.00886421464, 0.0161087234, -0.010042184, 0.018685529, 0.0225875508, 0.0153135937, 0.0097697787, -0.0111170802, -0.0184793845, -0.0089599248, 0.00519778719, -0.0188769493, -0.0225433763, 0.0184352119, -0.00752795674, 0.00463825185, -0.0224697534, -0.00481494749, -0.0203494113, -0.0115440935, 0.0231176373, -0.0143785812, 0.0240158383, -0.0305682886, 0.0143933054, -0.0220721904, 0.0226611737, 0.00575732253, -0.0152399708, -0.0155344633, 0.0185088348, -0.0272110775, -0.0165799111, -0.0061843358, 0.0269313101, -0.0145552764, 0.00353758736, 0.00801018719, -0.00392410858, -0.00302774785, 0.00334064569, -0.00420755707, -0.0257680658, -0.000894980156, 0.0135319158, -0.00664816098, -0.018523559, -0.00456462894, -0.00578309037, 0.0143785812, 0.0170952715, -0.00128012069, 0.0319524035, -0.00834149122, -0.00709358044, -0.00206512655, 0.0123539474, -0.0303621441, -0.00848137494, -0.000519042485, 0.00453517959, -0.00603709, 0.0226170011, 0.017139446, -0.00302774785, -0.0121846143, -0.00795865152, 0.00923969224, 0.00188843114, -0.0111391675, 0.00258600945, -0.00710094301, -0.0123907588, -0.013708611, -0.0198046, 0.00669233501, 0.00522723654, 0.00826786831, 0.0386079252, -0.00103808497, 0.0150559135, 0.018773878, 0.000162085737, 0.00969615579, -0.0287424382, 0.00711566769, -0.034691181, 0.0111097181, 0.00883476529, 0.0299645811, 0.0142313354, 0.00379158696, -0.00800282508, 0.00580517715, -0.0275497437, 0.00458671572, -0.014606813, 0.0159467515, -0.0111170802, 0.00932804, -0.0267546158, -0.00411552843, 0.0131196268, 0.0198634975, 0.0100053726, 0.00972560421, -0.0140251908, 0.0146362623, -0.0299645811, -0.0231323615, -0.00713775447, 0.0178315025, 0.00325413863, -0.00228967681, 0.00210745982, 0.013053366, 0.0092765037, 0.0221016388, 0.0318346061, 0.0063720746, 0.0229409412, -0.00774514442, 0.00420387601, 0.00677332049, 0.0222636089, -0.0298909582, 0.0235299263, -0.015343043, -0.0294786692, -0.000169102932, 0.0198487733, 0.00916606933, 0.00868015736, 0.00947528612, 0.000870592543, 0.00829731766, 0.0172277931, 0.018199617, -0.00349525409, -0.00234857528, 0.00432903506, -0.0180965457, 0.0244281273, -0.00574996, -0.00968143065, 0.0187886022, -0.00688743591, 0.000409068045, 0.00197677873, -0.00665920461, -0.000791447761, 0.0268282387, -0.0046677012, -0.028639365, 0.00853291154, 0.0213359594, -0.00666288566, 0.0084961, 0.00426645577, -0.00835621636, 0.00724450778, 0.0342199914, 0.0253999513, 0.00172461988, 0.00249029952, -0.0144890156, 0.016241245, 0.0201432668, 0.00894520059, -0.00594506133, 0.00491433823, -0.015505014, 0.0284332205, 0.00348973251, 0.000568738033, -0.00659662485, -0.00767152151, 0.030156, -0.0122361509, -0.0163737666, -0.0108373128, -0.0182585157, -0.019186167, -0.0286688153, 0.0220280159, 0.0335132107, -0.000105833133, -0.00434744079, -0.020157991, -0.00638679927, 0.00663343677, 0.0053928881, -0.00794392731, 0.00167768518, -0.017625358, 0.0203052368, -0.00324493577, 0.0272405278, 0.0111907031, -0.0221752618, -0.018523559, -0.00223261886, 0.0207764246, -0.0137822349, 0.0306566376, -0.0383134335, -0.000358682271, -0.0132374242, -0.00707885623, -0.00876850542, 0.00476709241, 0.0378422476, 0.00964461919, -0.013465655, 0.000368345296, 0.00160590268, -0.0157700572, -0.00984340161, 0.0139073934, 0.0121478029, -0.00747273955, -0.00719297165, 0.0493568927, 0.00323205185, 0.000804791925, -0.00834885333, -0.0203935839, 0.00909244642, 0.0141429873, 0.0115146451, 0.00749114528, -0.00599659747, 0.0104102986, -0.01338467, 0.00600764062, 0.0395797491, 0.00759053603, 0.00432903506, -0.0104618352, 0.0273288749, 0.00886421464, 0.00738071045, -0.00361857284, -0.00108317914, 0.0393147059, 0.00183505449, -0.00721137738, 0.0250171125, 0.0117944125, -0.0161676221, -0.00411552843, -0.0154313911, -0.0246931706, -0.0198634975, 0.0350445695, 0.0141650746, -0.0189800225, 0.00369403651, -0.0169038512, -0.00812798459, 0.0244281273, 0.0140620023, -0.0450278558, -0.0186119061, -0.00598923489, 0.029375596, -0.00575364102, -0.0305388402, 0.00373636978, -0.00167032285, 0.0200990923, 0.00210745982, -0.00546283, 0.0153872166, 0.0102115171, 0.00493642548, 0.00679540727, -0.0140251908, -0.0112716882, 0.0122876866, -0.000478549802, -0.00264306739, -0.00621378515, -0.0137969591, -0.017551735, 0.0207322501, -0.016094, -0.00442106416, 0.0224255808, -0.00469715055, -0.00189395295, -0.0300971027, -0.00686166808, -0.00845192559, -0.0230734628, 0.0011669253, -0.0014650987, 0.0146362623, 0.0255766474, 0.00169517065, 0.0162559692, -0.0063720746, -0.0120668178, 0.0028528932, -0.00921760593, -0.00590088731, -0.0145552764, 0.00533767091, -0.0214832053, 0.0235152021, 0.0154019417, 0.0226170011, 0.013870582, -0.0102925021, -0.0206291787, 0.0255471971, -0.00682853768, 0.00465297652, -0.0183026902, -0.029051654, -0.0326591842, -0.0269754846, 0.00389834028, -0.0139442049, 0.00942375, -0.000658466131, 0.00054435042, -0.00166112, 0.0441738293, -0.0145111028, -0.0135540031, 0.0272994265, 0.0182879642, 0.033307068, 0.0215715524, 0.0267398916, -0.0126263527, -0.00468242588, 0.00114575867, 0.00242956053, 0.00987285096, 0.0217482485, 0.0201285407, -0.0128913959, 0.0103440378, 0.0058603948, 0.0134288436, 0.0388729684, -0.0197309759, 0.0239127651, -0.0340727456, 0.000247557502, 0.0253705028, -0.0128030479, -0.0180229228, 0.00815743394, 0.025223257, -0.0106311683, 0.0232207086, -0.00354494969, -0.020319961, 0.00406031124, -0.0524490587, -0.0268871374, -0.0245459247, 0.00826050621, -0.0238980409, 0.00480758492, 0.0107636899, -0.00396460108, -0.0166829824, -0.00600395957, -0.00291915378, 0.00380631164, 0.00164639542, 0.0287718866, 0.015019102, 0.00213874946, -0.00465665758, 0.046588663, 0.0123024117, 0.00152951886, -0.00358912349, -0.00327622565, -0.00400509359, -0.00742856553, -0.00239827088, 0.0161381718, -0.0014098814, 0.0351329185, -0.0100642703, 0.0134214815, -0.0109035736, -0.000512600469, -0.00350445719, -0.0190389194, 0.0247373432, -0.0296553634, 0.0155933611, 0.0137527855, 0.00663711783, 0.0207911488, -0.0300676525, 0.00562112, 0.0025547198, 0.0062174662, -0.00754636247, -0.00151847536, 0.00824578106, -0.0118901227, -0.00242219819, -0.00798073877, -0.00282896566, -0.0027093282, -0.0208353233, 0.00724450778, 0.0036885147, 0.0229851156, 0.0101010818, 0.00887157768, -0.0260036606, 0.00183321384, 0.030023478, 0.00289154518, 0.0429075137, -0.0136938868, 0.00379158696, -0.0161234476, -0.00181020668, 0.00915870722, 0.0175664593, 0.0151663478, -0.00159209839, 0.0216599014, 0.0178167783, -0.000950657588, 0.000644661835, 0.025871139, 0.0192008913, -0.00947528612, -0.00682853768, 0.00213506841, 0.00467874482, -0.00464929547, 0.00161878671, 0.00844456349, 0.0232648831, 0.00316395052, -0.0011337949, 0.00196389481, -0.00401613722, 0.00645306, -0.0317168087, 0.0101894299, 0.00242403895, 0.0283448733, 0.0101747056, -0.0163148679, -0.00974769145, -0.00801018719, -0.0024608504, 0.0117355138, -0.00921760593, -0.00483335322, 0.0211445391, 0.00189947465, 0.0318051577, 0.00355783384, 0.00246453146, 0.00788502861, -0.0218513198, 0.012567454, 0.012972381, -0.00251606759, 0.00727027608, -0.00771569554, 0.00713775447, 0.0107784141, 0.0103808502, 0.00388729689, -0.0197604261, -0.000666748732, 0.0102925021, 0.000636839366, 0.0274761207, -0.0107195154, -0.00421860069, 0.0048296717, 0.0128766708, -0.00219396688, -0.00879059173, 0.00639048032, -0.000956179341, 0.00445787562, 0.00805436168, -0.00514257, 0.0128987581, -0.00509471493, 0.0163884908, -0.0126337148, 0.000715524, 0.00514257, 0.0118017746, 0.00841511413, 0.00274982094, 0.012405484, -0.00572051061, 0.00168596779, 0.00527141, 0.00182217045, 0.0150264641, -0.000373406889, 0.00221053208, -0.00225838693, 0.000761078263, 0.0115367314, 0.01281041, 0.00502477307, -0.00535975769, -0.00815743394, -0.0104912845, 0.00465665758, 0.0011255123, -0.00315658818, -0.00404926762, -0.00448732497, -0.0326297358, 0.015505014, 0.0123981209, 0.000831020123, 0.0152841443, -0.00436952803, -0.00364250038, -0.00431062933, -0.0119858319, -0.0232059844, -0.0106164431, -0.013789597, -0.00310505205, 6.20619321e-05, 0.017139446, -0.0205113813, -0.00757581182, 0.0336015597, 0.0131343519, 0.000636379234, -0.0164768379, -0.00534871453, -0.00433639763, -0.00891575124, -0.00724450778, -0.00785557926, -0.00354494969, 0.000971824222, 0.00369219575, 0.0190683696, 0.0106164431, -0.00736966729, -0.0125969034, -1.75142322e-05, -0.00357992062, -0.00119085284, -0.00238538673, -0.00968879275, -0.00307928398, -0.0128913959, -0.00247373432, 0.0183321387, -0.0174339376, -0.0196573529, -0.00808381103, -0.0134362066, 0.00377318123, -0.0146436244, 0.00631685741, -0.0175075606, -0.00298909564, 0.00950473547, -0.011094993, 0.00282712514, 0.0124643818, 0.0191567168, -0.0186413564, -0.0109771965, 0.00282712514, -0.0220427401, -0.00319708092, -0.00868751947, 0.000993911177, -0.00910717063, 0.0211003646, 0.0182437915, 0.0065598134, -0.0186119061, -0.0082016075, -0.000479930255, -0.0145111028, 0.0179493, -0.00406031124, -0.0139294807, 0.0240158383, 0.00710830512, 0.00353758736, 0.0218365956, -0.00357808, -0.00906299707, -0.0210709162, 0.00501372945, 0.0242219828, 0.00693897204, -0.000794208609, 0.0163737666, -0.00127551926, -0.0311572738, 0.00966670644, 0.00612543756, 0.00355231203, 0.021218162, 0.0209825691, 0.00797337573, -0.0117576011, -0.0236918963, -0.00589352474, -0.002897067, -0.00945319887, -0.00513888896, -0.0129871052, 0.00104912848, -0.00295044365, -0.0147835081, -0.00411184737, -0.0339255, 0.0212917849, 0.0033903413, -0.00345660211, 0.0034234717, -0.0129208453, 0.000176235175, 0.0121478029, 0.0114042098, -0.0113747604, 0.0416706465, 0.0195542816, 0.00475236773, -0.00940902531, -0.0226611737, -0.000840683177, 0.0039425143, 0.00949737336, -0.00460144039, 0.000418961165, 0.000936853292, 0.0166977067, -0.00490697613, -0.00929122884, -0.0108962115, -0.0105428202, 0.0126852514, 0.0120226434, 0.0198046, 0.0223372318, 0.00022339994, 0.0038320797, 0.00604077103, -0.00344923977, 0.00237802439, -0.0262687039, -0.0129650189, -0.0515066832, 0.0105207339, -0.00782613, -0.00246821274, 0.0219985675, 0.00676963944, -0.00946056191, -1.30853459e-05, -0.00221421313, 0.0144374799, 0.00784821715, -0.00398668787, -0.000164041354, 0.0290958285, -0.0131490761, 0.0127662364, -0.0034842107, -0.00614752434, -0.0113673983, 0.0146951601, 0.0117796874, 0.000766139827, 0.0300676525, 0.00674387114, -0.00821633171, -0.00224182173, -0.0234415792, -0.00131969317, 0.00937221386, -0.00477445452, 0.0180818196, 0.0140840886, -0.0058346265, -0.00850346219, -0.0243397802, -0.0122361509, -0.0175075606, -0.00305167539, 0.00706781261, -0.0121625271, -0.0112127904, -0.0120741799, -0.0133699458, 0.00581990182, -0.00250686472, 0.0220869146, 0.00494746864, -0.0141356252, 0.0236329976, -0.00086967228, -0.00862125866, -0.00206512655, 0.00492538186, 0.0298026092, 0.00801755, -0.0063720746, 0.00865070801, 0.0220869146, -0.0123907588, 0.0012055774, 0.0162117947, 0.00729604391, 0.0136129018, -0.00697210245, 0.0222930592, 0.019834049, 0.016653534, 0.0238833167, -0.0126042655, -0.0302443486, 0.0315990113, 0.000285059243, 0.00971088, 0.0116839772, -0.010528096, 0.0132521484, -0.0134214815, 0.011337949, 0.0211592633, -0.00985076372, 0.00585303223, -0.0107784141, 0.00354494969, 0.00616224902, 0.00328542851, 0.0085255485, 0.0206586272, 0.0125380047, 0.00714879809, 0.0102115171, -0.015019102, 0.0123539474, 0.000427243736, -0.00668865396, -0.00130588876, 0.00352286291, 0.00441370159, 0.00557326479, -0.0102409655, -0.0215273798, 0.00502845412, -0.0234268531, 0.00648987154, 0.0129061202, -0.00295412471, -0.0182437915, -0.0184352119, -0.00336457323, 0.0143491318, 0.0244723018, -0.0105354581, 0.00041873107, -0.00116968621, 0.00998328533, 0.000591285119, 0.00491801975, -0.00741016, 0.00256760372, 0.0222783349, -0.0162706934, 0.0158878546, -0.00514625106, -0.028889684, -0.00685430551, 0.0178462267, -0.00228415499, -0.000676411728, 0.0313634165, 0.0320702, -0.0196279045, -0.00477077346, -0.0142460596, -0.0134214815, -0.00754636247, 0.00397564471, -0.0213506836, -0.00113287463, -0.00322468951, 0.00717088487, -0.00727027608, 0.00946792401, -0.00604445208, -0.00654140767, 0.00820897, -0.0229409412, 0.00467138225, 0.0220721904, 0.0207911488, 0.021468481, -0.00281240046, 0.0150338262, 0.00836357847, 0.00515729468, 0.0245606489, 0.0070015518, -0.00350261643, -0.0138043212, 0.00169885182, 0.0012911642, 0.0209972933, 0.015019102, 0.01395893, -0.0123833967, -0.00171909819, 0.0180081967, 0.0393147059, -0.00212218426, 0.0155786369, -0.00122950494, 0.00992438663, 0.0162265189, -0.00479654176, 0.000879335275, -0.00196389481, -0.00361673231, -0.0167124327, -0.00282712514, -0.00605917675, 0.0196279045, 0.00523459865, 0.000208330224, 0.01044711, 0.00815007184, 0.00473764306, 0.0368704237, -0.00648987154, 0.0105796317, -0.0100495461, -0.00360384816, 0.0222341605, 0.00180468499, -0.00466402, 0.00122306286, -0.00767152151, 0.0128766708, 0.000802951341, -0.0217187982, 0.0305093918, -0.0263423268, -0.0171541702, 0.0223372318, -0.00756844925, -0.0104397479, -0.0104765594, 0.0111686159, -0.00183965592, 0.0021792422, 0.00182677188, -0.0133184092, 0.0103808502, 0.0136938868, 0.0250171125, -0.00870960671, -0.0266662687, 0.0164179392, 0.00712671084, 0.0060554957, 0.0109330229, -0.0155197382, -0.0065598134, -0.0160056502, -0.0164179392, 0.00682485662, 0.0109845586, -0.00726291351, 0.0180523712, 0.00437689, -0.00215163361, -0.01827324, 0.0195690058, 0.00334800803, 0.021056192, 0.013060729, 0.00502845412, 0.00466402, 0.00538920704, 0.00900409836, 0.0122361509, -0.00105465017, 0.0225286521, 0.0130312797, 0.0167713296, -0.00386152882, -0.0406988226, -0.0194512084, 0.00294308132, -0.0133404965, 0.00409344165, -0.00264122686, 0.0229409412, 0.00579045247, 0.0116398036, -0.0252674296, 0.000277006708, -0.00377686229, 0.0093427645, -0.0040713544, -0.0122140637, -0.00122582377, -0.000544810551, -0.00069711823, 0.00173198222, 0.00511312066, -0.00720769633, -0.00745801488, 0.0183174144, -0.00294676237, 0.00249582133, 0.021792423, 0.0156080863, -0.0165946353, -0.00260073412, -0.00201543095, 0.0037695, 0.0209089462, -0.00656349491, 0.0010951428, 0.0120226434, 0.0031418635, -0.00775250699, 0.00124146859, 0.00662975525, -0.0199665707, 0.00940902531, 0.00392410858, -0.0248404164, 0.0179198496, -0.00601132168, -0.0177431554, -0.0090114614, 0.00319524016, 0.0198782235, -0.0139221186, 0.00834885333, -0.00397564471, 0.00776723167, 0.00571682956, -0.0187444277, 0.0213359594, -0.00530822156, -0.0123539474, 0.00187830802, -0.00225286535, 0.0207617, 0.00168688805, -0.0197604261, -0.00230256072, 0.018685529, 0.0143270455, 0.0210709162, -0.00579413399, -0.00628372701, 0.0126410769, 0.00491801975, -0.00761262327, -0.00783349201, -5.57349485e-05, -0.00265411078, 0.0234710276, 0.00629477063, -0.0105796317, 0.00213138713, -0.012000557, -0.00951209757, -0.0188475, 0.00296148704, 0.0161970705, 1.06264515e-05, 0.0249434877, 0.000747273909, 0.01264844, -0.00914398208, 0.00447628135, 0.0128840329, -0.00604077103, -0.0224992037, 0.0189063977, 0.0048296717, -0.0198193248, 0.016403215, -0.0139294807, -0.0144963777, 0.0140840886, -0.0100569082, 0.0329536758, -0.0133110471, -0.00457567256, -0.00865807, -0.00892311335, -0.00211114087, -0.0164179392, 0.0101084448, 0.00247925613, 0.0027258934, -0.00897465, -0.0119490204, -0.00762734795, -0.00520883081, -0.0133184092, 0.0192008913, -0.00818688329, 0.0213359594, 0.00101415743, -0.00651195878, 0.0219838414, 0.00675123325, -0.0295522921, 0.00132061343, -0.0168007798, -0.0106532546, 0.0317462571, 0.0228231456, 0.00925441738, -0.00585671328, 0.00854027364, 0.013296322, 0.0344555862, -0.0082016075, -0.00913662, -0.0154313911, 0.0220574643, -0.00510575855, 0.0265779197, -0.0169627499, 0.0118533103, 0.00861389656, 0.00167032285, -0.00615120586, 0.00884212833, 0.0159320273, -0.0120152812, -0.0245753732, 0.0024608504, -0.00640888652, -0.0139883794, 0.00896728691, -0.00945319887, 0.000610151, -0.00940902531, -0.0243250541, -0.00183137332, 0.0476782843, 0.014363857, 0.0161970705, 0.00536343921, 0.0233090576, 0.0259300377, -0.00793656427, -0.0318935029, 0.0154608404, -0.0273877736, -0.0147025222, -0.00115956296, 0.000828259275, 0.0109551093, -0.00309953024, 0.0112054283, -0.000702179794, 0.00186450372, -0.00594506133, -0.00261913985, 0.0118901227, -0.00734389899, -0.0127220629, 0.0151221743, -0.0106458925, -0.0205997285, 0.0125895413, 0.0228967685, -0.0209236704, -0.0150706377, -0.00577572826, -0.0280651059, -0.0156817082, 0.0386373736, 0.0137012489, 0.0032799067, 0.00756844925, 0.026195081, 0.00960780773, -0.00262650219, -0.0100716334, -1.9052839e-05, 0.00935012661, 0.0179051254, -0.000456923037, -0.00768624619, -0.000102554608, -0.00627268385, 0.0028197628, 0.00278479187, 0.0201138165, 0.00828259252, -3.42519743e-05, -0.00394619536, -0.0218513198, 0.000156218899, 0.012729425, -0.0076052607, -0.000213391802, -0.00909980852, -0.0121625271, 0.0197309759, -0.0268282387, -0.00945319887, 0.00277374825, -0.000499716436, -0.0115440935, -0.0054849172, -0.00755372457, -0.00950473547, 0.0284332205, -0.0242219828, -0.0176548064, 0.00298541458, 0.0175811835, 0.00891575124, -0.0101526184, 0.0169185773, 0.000879335275, -0.00404558657, 0.0289044082, -0.00367010897, -0.00648987154, 0.0200107452, -0.0150485514, 0.0329831243, 0.000868291827, -0.0185530074, 0.0165504608, -0.0056395256, 0.00778931845, 0.0104912845, -0.0181554444, -0.00608862611, 0.010852037, -0.00147706235, -0.0121772522, -0.00960044563, 0.00827523, -0.0117796874, 0.0135908145, 0.0169185773, 0.00395723898, 0.015019102, 0.0122876866, 0.00367563055, -0.0115367314, -0.00710462406, -0.00111907034, 0.00436216546, 0.0157847814, -0.00196573534, 0.0122729624, 0.0111759789, -0.00374005083, -8.47240226e-05, -0.0127662364, -0.00801018719, 0.0331009217, 0.00664448, 0.015078, 0.00362041336, 0.00214979309, 0.0265337471, 0.00359832635, 0.00431431038, 0.0336310081, -0.00228231447, -0.00149362755, 0.0069684214, -0.0100127347, -0.0090114614, -0.0211592633, -0.00109238201, 0.00116232387, 0.00293203793, 0.0151368985, -0.00699787075, -0.018935848, 0.0077598691, -0.00243692286, -0.0202463381, -0.00399405044, -0.00755372457, 0.0041044848, 0.000939614139, 0.0221310873, -0.00669233501, 0.0107489647, 0.0167566054, 0.00225838693, 0.0250318367, -0.0058014961, -0.00364802196, -0.00160314189, 0.0109403851, 0.0153283188, -0.0117944125, -0.0195395574, -0.014768783, 0.0161823463, -0.014768783, -0.00726291351, 0.00884949, 0.00736598577, -0.0252968799, 0.0190830939, -0.00918815657, 0.0101673426, -0.0177431554, -0.0160351, 0.00789975282, -0.00519410614, 0.00411184737, 0.00985812582, -0.0176842567, -0.00182677188, 0.00367010897, 0.0103808502, 0.0155786369, -0.0165357366, -0.0129282074, 0.0159320273, 0.0089525627, 0.00603340892, -0.0106164431, -0.0181701686, -0.0218071472, -0.00089682074, 0.0109992838, -0.00675491476, -0.00993911177, -0.00213322788, 0.0169480257, 0.00636103144, 0.0299498551, -0.00752059417, 0.0089525627, 0.00366826844, -0.00398300681, -0.0198487733, -0.0109109357, -0.0174192134, 0.00492170081, 0.00302590732, -0.0317757092, 0.0129134823, 0.0146583486, -0.00242403895, -0.00672546541, 0.00468610693, 0.0157111585, -0.00583094545, 0.0163443163, -0.00195285131, -0.0146951601, -0.0310394764, -0.00010727108, -0.00893783756, -0.00281056, 0.015505014, 0.0159614775, -0.00962253194, -0.016152896, 0.0216010027, 0.0203052368, 0.00969615579, -0.00539656961, 0.0145626385, -0.00549596036, -0.00681749405, -0.0158289559, 0.000265273033, 0.0122803245, -0.0152105214, -0.00520883081, -0.0136055388, -0.0229262169, -0.0144227548, -0.0297731608, 0.0289338585, 0.0152399708, 0.0184646603, -0.0284921192, -0.000693897251, -0.0263717752, -0.0125306426, 0.00639416184, 0.00359832635, -0.00509471493, -0.00262098061, -0.00213506841, 0.0260183848, 0.00531558413, -0.0127662364, 0.00878323, 0.0238833167, -0.00128656277, -0.0138632199, 0.00304247253, -0.00260809646, 0.000135627459, 0.00980659, -0.0793361962, -0.0164326634, 0.00873905607, 0.0201727152, 0.00047394837, 0.00842983928, 0.0042922236, -0.00816479605, 0.00921760593, -0.00214795233, -0.002836328, 0.00882740319, 0.0169774741, 0.00193444558, 0.00221237261, -0.0120300064, 0.0295522921, 0.00235225633, 0.00213690894, 0.0121036293, -0.00862862077, -0.00891575124, 0.0253999513, -0.013870582, 0.0207469743, -0.00925441738, 0.00943847466, 0.00601868425, -0.0227936953, -0.0150338262, 0.00644201646, 0.00454254216, 0.00707149366, 0.00463825185, -0.0271521807, -0.020157991, -0.00159025786, -0.0223519579, 0.00595610449, -0.020805873, -0.00944583677, -0.0107268784, -0.000605089415, -0.00143472909, 0.00943111256, 0.0178756751, 0.0208647717, 0.0118974848, -0.0142902331, 0.0215568282, 0.00187278632, 0.0110655436, -0.0118091367, -0.0133257713, -0.00710462406, -0.00354679022, -0.0093354024, -0.02545885, 0.00146417832, 0.0301854499, -0.0114336591, -0.0288455095, 0.0101305312, 0.0105133709, 0.00841511413, 0.0228231456, -0.00690584164, 0.0131122647, 0.0106385304, 0.00905563496, 0.00236514048, 0.00388361583, -0.014363857, -0.00471555628, -0.00551436609, 0.0209383946, 0.00238906778, -0.00334800803, 0.0225286521, 0.00554381544, 0.0218218714, 0.00287682051, -0.000885777292, 0.0197015274, 0.0150411883, -0.00311241439, 0.0131269898, -0.0107047912, -0.000397104304, -0.0118017746, 0.00573155424, 0.0190241951, -0.00993174873, 0.0116618909, 0.0123539474, 0.00708253728, -0.0221016388, -0.0376655497, 0.00363697857, 0.0121109914, 0.00534135196, -0.007222421, -0.00490697613, 0.0119711077, 0.0229851156, -0.0132226991, 0.000789607177, -0.010528096, 0.0231618099, 0.0117355138, 0.0154608404, 0.00163167075, -0.00629477063, -0.000297253049, 0.0230145641, 0.0226464495, 0.00260257465, -0.00671810331, -0.00380631164, 0.00472659944, 0.00615120586, 0.0125085562, -0.0279767588, 0.00363329751, 0.0125748161, -0.0132815978, 0.00478917919, -0.00727027608, -0.00401245616, 0.00196941663, 0.0240011141, 0.00477445452, -0.00323205185, -0.0155491875, -0.00751691312, -0.0273877736, 0.0123539474, -0.00278295111, 0.00489593251, 0.00912189577, -0.0158436801, -0.00401245616, 0.0064641037, -0.0348089784, -0.000152077613, -0.0158584043, -0.0169922, 0.0103734871, 0.00312161725, -0.00513152638, -0.0181259941, 0.00375293475, 0.00902618561, -0.00929859094, -0.00384312309, -0.0272405278, 0.0112790512, -5.5217286e-05, 0.0078776665, -0.0275939181, -0.00583094545, 0.0251790825, -0.0159614775, -0.0132742357, -0.0128251351, 0.0249876622, -0.00357623957, -0.0146804359, -0.00452413643, -0.0174928363, 0.019907672, 0.00965198129, 0.0114557464, 0.0141061759, -0.00170805468, -0.0253999513, 0.00667761033, -0.00859180931, -0.0130018303, 0.000976425654, 0.012000557, -0.0178020522, -0.0185530074, -0.00795865152, 0.0103882123, -0.000418040872, 0.0222930592, -0.00558798946, -0.00317683443, -0.0117134266, 0.0254735742, 0.0231618099, 0.00513152638, 0.00359648583, -0.0141797988, -0.00615856797, 0.00663711783, 0.0161087234, -0.0137527855, 0.000941454724, -0.00955627114, -0.0126778884, 0.0104029365, 0.0126263527, -0.00723346462, -0.0105133709, 0.013053366, -0.00523459865, -0.00756108714, -0.0152399708, 0.00408239802, -0.00492906291, -0.0227347966, 0.0256502703, -0.00577572826, 0.00675859582, -0.0101747056, 0.0218218714, -0.00203383667, 0.0145626385, 0.0356924534, 0.0137601476, 0.000824118, 0.00012032767, 0.00574627891, 0.0144816535, 0.00134454085, 0.00739175407, -0.0109256599, 0.000683313934, -0.0100569082, 0.00110066461, 0.00922496803, -0.011669253, -0.0245311987, -0.00107949798, -0.00327254436, 0.000144025093, -0.00587511901, 0.0199960191, 0.0142092481, 0.0459702313, -0.0203052368, -0.012972381, -0.0061843358, -0.00558062689, 0.0107342405, 0.00810589734, 0.0106532546, 0.00583830755, -0.00165467802, -0.0040713544, -0.0183174144, 0.0245017502, 0.00370508, 0.008047, -0.0255471971, 0.0138926692, -0.0124128461, 0.0190241951, 0.0147025222, -0.000588524214, -0.00845928863, -0.0115661807, 0.014776146, 0.000722426164, 0.00253079226, -0.00873905607, 0.000806172378, 0.00570946746, 0.00118257024, -0.000237434331, -0.0264306739, 0.00355415256, 0.00657821912, 0.00483335322, -0.0141650746, 0.00286209607, -0.000226851014, -0.018773878, -0.0113747604, -0.0258122403, -0.016152896, 0.0129061202, 0.00595610449, 0.00471187523, 0.00580885867, -0.0222341605, -0.00614384329, -0.0102336034, 0.00145773636, -0.0101084448, 0.0105354581, 0.0221605375, -0.0090188235, -0.0316579118, 0.0097697787, 0.00102336041, 0.00909244642, -0.0309805777, 0.00596346706, 0.00300934212, -0.0116471658, 0.00735862367, -0.0158436801, -0.0100495461, -0.00673282752, -0.0158878546, -0.0140031036, 0.00466033909, -0.027505571, 0.0139073934, -0.0123097738, -0.0070346822, -0.00238722726, 0.00287866127, -0.00472291838, 0.00264674868, 0.00686903, -0.00827523, -0.014282871, 0.00809117313, 0.000851726625, 0.00808381103, 0.0258416906, -0.0212623365, -0.0145479143, 0.0138411326, -0.000671350164, 0.00282344385, 0.00312345778, -0.0129650189, -0.0342494436, 0.00310689257, -0.0109182978, 0.00224366249, 0.0112569639, -0.021218162, 0.000958940189, 0.0247520693, -0.00658558169, -0.0020688076, -0.0235446505, -0.0131564382, 0.0236624479, -0.00288050179, 0.0133993942, 0.0156080863, 0.0164621137, 0.000115438641, 0.00256760372, -0.00815007184, 0.010042184, 0.00965198129, 0.0141871609, 0.00176051108, -0.00534503348, -0.00301670446, -0.00984340161, -6.948175e-05, 0.0180229228, -0.0272258036, -0.0123907588, -0.0133920321, 0.00535975769, -0.0131049026, 0.00884949, -0.00198598183, -0.0117428759, -0.0248845909, 0.0199665707, -0.0136202639, -0.0162265189, 0.0696768537, -0.00695369672, 0.010852037, -0.00574259786, 0.0161087234, -0.03280643, 0.00477445452, 0.0381367393, -0.0233090576, 0.0023504158, -0.0184646603, 0.00766415941, 0.0133331344, 0.00191235868, 0.0100863576, -0.00720033422, -0.0141356252, -0.00747273955, 0.014113538, -0.0161676221, 0.00295964652, -0.0188769493, -0.0102188792, -0.0164473895, -0.0027093282, -0.0369293205, 0.00546651147, 0.00248109666, -0.020157991, 0.0306566376, 0.0123613095, 0.0113968477, -0.0154166659, 0.00186634425, -0.0322763436, -0.00310505205, 0.0111980652, 0.0142902331, 0.0143196825, -0.00862125866, 0.0111391675, 0.00651932089, -0.00307376217, -0.00709358044, 0.0141282631, -0.023500476, -0.0109551093, 0.00794392731, 0.00091614679, -0.0168449525, -0.00211666268, -0.0099023, -0.00397196366, -0.0269018617, 0.00698314607, 0.0132374242, 0.0218660459, 0.0112348767, -0.00721137738, 0.000118717166, -0.0192892384, 0.00873169303, -0.0137822349, -0.027255252, -0.00276638591, -0.0155639127, -0.00682117557, 0.0223372318, -0.00628740806, -0.0167566054, -0.0160792731, -0.00839302782, 0.00167768518, -0.0289485827, 0.00645306, -0.014282871, -0.00472659944, -0.00929122884, -0.00359096425, 0.00887894, -0.00201543095, 0.000329693197, -0.0221016388, 0.00610335078, -7.46583682e-05, -0.000147706232, -0.0315401144, -0.018199617, -0.0107931392, -0.00291179144, 0.0142534217, 0.00622114772, 0.00582726439, 0.0117870495, 0.0037989493, 0.00162338815, -0.0237213466, 0.00387257221, 0.00746169593, 0.0037216451, 0.035663005, -0.00880531687, 0.00170989532, 0.00107949798, -0.0184793845, 0.0221752618, 0.00122950494, 0.00515361317, -0.0144080305, -0.0181259941, 0.00950473547, 0.00740647875, 0.0353096128, 0.0156522598, 0.0012469904, 0.00424805, 0.0120594548, 0.00878323, -0.00295964652, 0.0135981767, 0.0066260742, 0.0136644375, -0.0224992037, 0.0213359594, 0.00389097817, 0.0108152255, 0.040139284, -0.0156522598, 0.00959308352, -0.000740371761, 0.0182143413, -0.00420019496, -0.00780404313, -0.0214537568, 0.00293571898, 0.0246195477, -0.0132079748, 0.00425173109, -0.00446523773, 0.0225728266, 0.0156817082, 0.00623955345, -0.01395893, -0.00920288078, -0.00244060392, -0.00344923977, 0.023176536, -0.00173290248, 0.00890838914, -0.00729604391, -0.0104839224, 0.0125527298, 0.0103734871, 0.0114336591, 0.0212623365, -0.015990926, 0.0378422476, 0.00329463137, 0.0160203744, 0.00503949774, 0.00900409836, 0.00324677629, 0.0111686159, -0.00369403651, 0.0130754532, -0.00354494969, -0.00482599065, 0.000153458037, 0.0319818519, 0.0133699458, 0.0224108566, 0.0157700572, -0.014849769, 0.0141503494, -0.0116471658, 0.0144006684, -0.0054591489, 0.00300566084, -1.7082848e-05, -0.0389024168, 0.00212218426, 0.0313045196, -0.00305351592, 0.0416706465, 0.0151221743, 0.0104765594, -0.0130239176, 0.00401245616, 0.0128913959, 0.00294124079, -0.00653772661, 0.00368115236, 0.012155165, -0.00266331364, -0.0334248655, -0.00427749893, 0.0112937754, 0.0070346822, 0.00630949531, -0.0224255808, 0.0119048469, -0.0182290673, -0.00158473605, 0.0125159184, 0.00865807, 0.0103955744, -0.00415970199, 0.00584567, -0.00383576076, 0.00973296724, -0.0162706934]
23 Jun, 2022
unordered_multiset key_eq() function in C++ STL 23 Jun, 2022 The unordered_multiset::key_eq() is a built-in function in C++ STL which returns a boolean value according to the comparison. It depends on the key equivalence comparison predicate used by the unordered_multiset container. The key equivalence comparison is a predicate which takes two arguments and returns a boolean value indicating whether they are to be considered equivalent. It returns true if they are equivalent else it returns false. It is adopted by the container on construction and is similar to the (==) operator used in the comparison. Syntax: unordered_multiset_name.key_eq()(args1, args2) Parameter: The function accepts two mandatory parameters args1 and args2, between whom the comparison is to be done. The data_type is same as that of the unordered_multiset. Return Value: The function returns a boolean value. Below programs illustrate the unordered_multiset::key_eq() function: Program 1: CPP // CPP program to illustrate the // unordered_multiset::key_eq() function #include <iostream> #include <string> #include <unordered_set> using namespace std; int main() { unordered_multiset<string> sampleSet; bool answer = sampleSet.key_eq()("GEEKS", "geeks"); // checks if both are same if (answer) cout << "GEEKS and geeks are treated similarly in the container\n"; else cout << "GEEKS and geeks are treated dissimilarly in the container\n"; return 0; } Output: GEEKS and geeks are treated dissimilarly in the container Time Complexity-O(1) Program 2: CPP // CPP program to illustrate the // unordered_multiset::key_eq() function #include <iostream> #include <string> #include <unordered_set> using namespace std; int main() { unordered_multiset<int> sampleSet; bool answer = sampleSet.key_eq()(100, 200); // check if (answer) cout << "100 and 200 are treated similarly in the container\n"; else cout << "100 and 200 are treated dissimilarly in the container\n"; answer = sampleSet.key_eq()(100, 100); if (answer) cout << "100 and 100 are treated similarly in the container\n"; else cout << "100 and 100 are treated dissimilarly in the container\n"; return 0; } Output: 100 and 200 are treated dissimilarly in the container 100 and 100 are treated similarly in the container Time Complexity: O(1) Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL
https://www.geeksforgeeks.org/unordered_multiset-key_eq-function-in-c-stl/?ref=next_article
PHP
unordered_multiset key_eq() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0391563959, -0.00793009717, -0.0121854208, 0.00844888855, 0.0187876597, -0.00227434444, -0.00923325121, 0.00795480143, 0.0124509931, -0.000656595337, -0.0279406216, 0.000923325133, 0.00256616459, -0.0161442943, -0.0263842475, -0.0154525712, -0.00937530119, 0.0219127592, -0.00978292339, -0.0138714928, -0.0269524474, -0.00293981773, -0.00209678174, -0.0267301071, 0.000415341899, 0.00705309212, -0.00122363737, 0.00136414333, -0.0054442212, 0.00540098874, 0.00407621777, 0.0176389068, 0.0468147472, 0.00376741355, -0.0392305106, -0.00965322554, 0.0330297165, 0.0360436477, -0.0214433763, -0.0198375937, -0.00200105249, 0.0238026418, 0.00628416939, 1.96742167e-05, -0.0163172241, 0.0404904298, 0.012154541, -0.0330297165, -0.00373962126, -0.0122101251, 0.0379458852, 0.00651577255, 0.01408148, 0.00645401189, 0.0283853, 0.0277923942, 0.0307075083, -0.00218633516, 0.000480190822, -0.0302381255, -0.0355495624, -0.00291511347, 0.0236914735, -0.0287311599, 0.0162801668, -0.0224192, -0.0306581, 0.0401445702, 0.0166383814, -0.00750394678, -0.0225427207, 0.0343143456, -0.00402680924, 0.00135796727, -0.0262113158, -0.0151684713, -0.0268289261, -0.017552441, -0.00576228974, 0.00936912559, -0.0230985675, 0.0225056633, -0.00744836172, -0.0114134103, 0.0436772928, -0.0202205107, 0.0304110572, -0.0310286656, 0.0168113112, 0.0589939915, -0.0462465435, -0.0608715229, -0.00205972535, -0.0135379843, 0.0204304978, 0.0253466647, 0.0441466756, 0.0180465281, -0.0324615166, 0.0777198896, -0.00618844, -0.0392058045, 0.00633666618, 0.0177500769, -0.0125127537, 0.021023402, 0.024790816, 0.0169965941, 0.00516012125, 0.00822037272, 0.00278078346, 0.0212580934, -0.0253219604, 0.044171378, -0.0197511297, -0.00501189521, -0.0484946407, -0.0193188023, 0.0431338, 0.0123892324, -0.0422444418, -0.0048235245, 0.0146867372, -0.0067998725, -0.0453077815, 0.041873876, -0.0115060518, 0.0416762419, -0.00706544425, -0.0050273356, -0.014180298, 0.000418429961, -0.0299169701, -0.049408704, 0.0153043456, 0.0128586143, -0.000329455681, 0.0485440493, 0.0135750407, -0.031646274, -0.0383905619, 0.0155637413, 0.0180835854, 0.00754717924, 0.0120804273, -0.026433656, 0.0218757037, 0.0279900301, 0.0151314149, -0.00442825491, -0.0217274763, -0.0163172241, 0.0286323428, -0.0142667629, 0.0104005318, -0.00708397292, -0.00353889819, -0.0205046106, 0.00347404927, -0.0249266904, 0.0263595432, -0.0319427252, 0.0297440384, 0.00707779638, -0.0338202566, 0.0690733641, 0.0079795057, -0.00235617743, -0.0477782153, 0.0340178907, 0.0232467949, 0.00133249094, 0.000722216268, -0.00833154283, -0.00570979295, -0.00625946512, 0.0527684949, 0.0106475754, -0.0167248454, 0.0196029022, 0.00762129249, 0.0132662365, 0.0243708417, 0.0217645336, 0.0439490415, -0.0259148646, 0.0265818816, -0.0108575625, 0.0454313, 0.0223574378, -0.00966557767, 0.0297687426, 0.0191211682, 0.0326344483, 0.023827346, 0.0218386464, -0.0283605959, -0.00927030761, 0.00975821912, 0.0440972671, 0.000315945479, -0.0176018495, -0.00217243889, 0.00206126925, 0.045258373, -0.0112219518, 0.0267548114, 0.0118889688, 0.0268783346, -0.0116666295, -0.0469135642, 0.00333508733, 0.0184788555, 0.00386005477, -0.00150156138, 0.000461276562, -0.0390081704, 0.0181947555, 0.0143285235, 6.23398882e-05, 0.00964087341, -0.0192570426, 0.00788686424, -0.0239508692, -0.0300651956, 2.25692584e-05, 0.0632925481, 0.0112960646, 0.00520644197, -0.0129944887, 0.0448631, 0.0097211618, -0.024309082, -0.00488837343, 0.0242226161, -0.025173733, -0.0215792507, -0.0486922748, -0.00889974274, 0.00158416654, -0.022085689, 0.00945559051, -0.0377976559, -0.00274681509, 0.0178983025, -0.00276997546, 0.00841800775, -0.0238520503, -0.00543495733, 0.00323627, -0.00281475205, 0.0144643979, -0.00200105249, -0.00506130373, 0.0297687426, 0.00586728333, -0.0252478477, -0.0303122383, -0.0274712387, -0.0500263125, -0.00211376604, 0.046024207, -0.0413303785, 0.0142050022, -0.0134391673, -0.00822037272, 0.0274465345, -0.0311768912, -0.0386870131, -0.00656518154, 0.00573758548, 0.00239169, 0.0134515194, -0.0153043456, 0.0428373441, 0.0124262888, -0.0515332781, -0.0214927848, -0.0194546767, -0.0396010764, 0.000935677323, -0.0254948903, -0.0106722796, -0.0300651956, 0.0641325, -0.0292746555, 0.0141308885, 0.000341035833, -0.0410092212, -0.0119692581, -0.0209122337, 0.00149692933, -0.00516629731, 0.0112096, 0.0114442911, 0.0467406325, 0.00515394518, -0.0205787253, -0.00149847334, 0.0122163016, -0.0192693938, -6.33049e-05, -0.00608653435, -0.0124077601, -0.0128709674, -0.0027035824, 0.0215669, 0.0161566455, -0.0159960669, -0.0341661163, 0.00344008091, -0.0116048688, -0.0166754369, 0.019195281, -0.00186826661, -0.0336473249, 0.0158848986, 0.00185591436, -0.00703456393, 0.0148967234, 0.00258778082, -0.00781892706, 0.00805361848, 0.021851, 0.0431585, -0.026532473, -0.00722602289, 0.0225674249, -0.0241732076, -0.0555353798, -0.00313127646, 0.00606183, -0.0306086913, 0.0157984328, 0.0326344483, -0.0494581126, -0.0258160476, -0.00701603573, 0.0290029086, 0.00726307929, 0.00902326405, 0.0104561169, -0.00167989591, 0.0409351103, 0.0205169637, -0.0111416625, 0.00545657333, -0.00849212054, 0.0127227409, 0.050841555, 0.000549285789, -0.00345243304, -0.000708320062, -0.0166013241, 0.00549980626, -0.0282370728, -0.0256678201, -0.0365871452, -0.0140691279, 0.0137850279, 0.0165395625, 0.0536084436, 0.0152055286, 0.00486675696, -0.00140274398, -0.0422444418, -0.0265571773, -0.0048729335, 0.0242967289, -0.0270265602, -0.00583331473, -0.025470186, 0.0176142026, 0.00702838786, -0.0453324839, 0.0443690158, -0.0145385107, 0.0321650654, -0.0236297119, 0.0137479715, -0.00951117557, 0.0338449627, -0.00915913843, 0.00822654925, 0.00906649698, -0.0312263, 0.0362165794, 0.0100731989, -0.0171077624, 0.0129697844, -0.0210357551, 0.012636276, -0.0300899, -0.0135626886, -0.00838712696, 0.0140691279, -0.0129203759, -0.0172559898, -0.0129450802, -0.0109193232, 0.0455795266, -0.0148843713, -0.0230738632, -0.0379705876, -0.0225303676, -0.0554859713, -0.0148349628, -0.0449619181, -0.00378285372, 0.0156007977, 0.0256184116, 0.0143779321, -0.0142297065, 0.0428867526, -0.00856623333, 0.0107587446, -0.0279653259, 0.069863908, 0.0341414139, -0.00100824633, -0.0589445829, -0.0197017193, -0.00268968614, -0.0192446895, -0.00691721821, 0.0340425968, 0.0146002714, 0.0265077688, 0.0140444236, -0.0255937073, -0.021702772, 0.0109193232, 0.00583022693, 0.0527684949, -0.0157366712, -0.0281382557, 0.00340920035, -0.0118827932, -0.0155513892, -0.0290770214, 0.0420715101, 0.0244449563, 0.00800421, -0.0594386682, 0.0142420586, 0.0252725519, -0.00724455109, 0.0128709674, 0.0153537542, 0.0239879247, -0.0208257679, 0.0453818925, -0.0344131626, 0.0140073672, 0.029324064, 0.0026943183, 0.0204428509, -0.0224809591, 0.0583516769, -0.00273446296, -0.0117778, 0.0355248563, 0.0109687317, 0.0107216882, 0.00171386439, 0.0495075211, 0.00450236816, 0.0301640127, 0.0245561246, -0.0213816166, -0.00537628448, -0.0265571773, -0.00924560335, -0.00691104215, 0.0135750407, -0.00901708845, -0.0046351538, -0.00275607919, -0.0408362933, 0.026137203, 0.0233085547, -0.00717043784, -0.0344872735, 0.0530649461, 0.00671958365, -0.0129080238, 0.0315721594, -0.0206281338, -0.015341402, -0.0190099981, -0.0132662365, 0.0147114415, -0.00264182151, -0.0622549653, 0.0103449468, 0.0329556055, -0.0271500815, -0.00433252566, 0.0143161714, 0.00546583766, 0.0371553451, -0.0178735983, -0.0347837247, 0.0108884424, 0.0142050022, -0.0511380062, 0.00472470699, 0.0211592764, -0.0192199852, -0.0238767546, -0.00241330639, 0.0135626886, -0.00781892706, 0.0159466583, -0.00343081681, -0.00274372706, 0.0291017257, -0.000428466097, -0.0186023768, 0.00919001829, -0.00672575971, 0.00893679913, 0.0139332544, 0.0269771516, 0.0129450802, 0.0340920053, 0.00527746696, 0.00490690162, -0.0221845079, -0.0213075038, -0.0484205298, -0.0136491545, -0.021999225, 0.015427867, -0.0115739889, -0.0170460027, -0.0156996157, 0.0328567885, -0.0313992314, 0.00413489062, -0.0127721494, -0.0203810893, 0.022085689, 0.000517633336, -0.029225247, 0.00717043784, 0.0268042218, -0.00786216, 0.0052558505, 0.00950499903, 0.0193805639, -0.00413489062, -0.0138591407, -0.0311274827, 0.0345860906, 0.0150449499, -0.0125683388, -0.0227897633, 0.0160207711, -0.0215916038, -0.0179106537, 0.00804126635, 0.0520767719, -0.00222802372, 0.0174412727, -0.00650959648, 0.00912825763, 0.00746689, -0.0042892932, -0.00646018796, -0.0133650536, -0.00267733401, 0.0310780741, -0.00705309212, -0.0318192057, 0.030386351, 0.0364883281, 0.0180094726, -0.0408115871, -0.00713955751, -0.000715268194, 0.00304172328, 0.00575920194, 0.016490154, 0.00119507301, -0.0348578393, -0.0442949, -0.0178241897, -0.0291758385, 0.0256184116, 0.0192076322, 0.0262607262, -0.0177253727, -0.0293981787, 0.0423185527, -0.000345281907, -0.0189235322, -0.0342155248, -0.0167124942, 0.0103572989, 0.0274465345, 0.00583022693, 0.0598339401, -0.013414463, -0.00236080959, 0.016885424, 0.0136738587, 0.0177006684, 0.00701603573, 0.00111246784, -0.0517309122, -0.00480499631, -0.0140938321, -0.0215298422, 0.0166877899, 0.0105919903, -0.00018750217, 0.0330544226, 0.0122842388, 0.00341537665, -0.00869593117, -0.0194423236, -0.00770775741, 0.0060278615, 0.0204922594, 0.0222586207, -0.0169101283, 0.0509897806, 0.00121282926, 0.00386005477, -0.000423834019, -0.0103634754, 0.0274218302, -0.017169524, 0.0270265602, 0.00546275, -0.00307260361, 0.00473088305, -0.00744836172, 0.0398975275, -0.0198375937, 0.0104314126, 0.0107710967, 0.0291511342, -0.0114010582, 0.00994350109, -0.0255442988, 0.0314239338, -0.00174011278, -0.019973468, -0.0294475872, 0.0312510058, 0.0256431159, 0.0085168248, -0.00705926819, -0.0458265729, -0.019195281, -0.00441281451, -0.00502115954, -0.0134762237, -0.0398975275, -0.00730013568, 0.00297533022, -0.0213939678, 0.00242257048, 0.00134484307, -0.0187876597, -0.0221598037, -0.0193435065, 0.0157490242, -0.00782510359, -0.00502115954, 0.00210604584, -0.0158725455, -0.0102152489, 0.00878239702, -0.0137850279, 0.00532378769, 0.01311801, -0.0112219518, -0.00725072715, -0.0377482474, 0.0209122337, -0.0246055331, -0.00201649265, -0.00194701168, 0.00596610084, 0.0205910765, 0.0118519124, -0.0399716385, -0.0202081595, -0.0521755889, 0.000493315, 0.0295958128, 0.00210141391, 0.022283325, 0.00369330053, 0.00379520585, -0.0337461419, 0.0027390949, 0.00156100618, 0.00221258355, -0.0142050022, -0.0125127537, -0.00418429961, 0.0370318219, -0.00245962688, 0.030287534, -0.0116357496, -0.0146002714, 0.011388706, -0.00973351393, -0.00872681197, 0.0057993466, 0.00948029477, -0.0077571664, 0.0050458638, -0.00512924092, -0.0107340403, -0.0193311553, 0.00381682231, 0.00481426064, -0.00257234066, 0.00220486335, 0.0436278842, -0.0357966051, -0.0125065781, 0.0052187941, -0.0153908106, 0.00577155408, -0.0150325978, -0.00102754659, 0.00010122994, 0.000562024, 0.00264027761, 0.0103449468, 0.0109378519, -0.0230368078, -0.0110366689, -0.00415341882, 0.0142173544, -0.0119507294, -0.00927648414, 0.0412068591, -0.0107834497, 0.0118519124, -0.00285335258, -0.0201340467, -0.0231973864, 0.0394034386, 0.00466294633, 0.0411574505, -0.0182935726, -0.0189729426, 0.0107402168, -0.0253960732, 0.032906197, -0.00763364462, -0.00637989864, -0.0081339078, 0.0244326033, -0.00233919336, 0.0202328637, 0.0331038311, -0.0300157871, 0.0134885758, -0.0412068591, 0.0321897678, 0.0123707037, 0.0418244675, -0.0030818677, -0.0118086794, 0.0410092212, -0.000569358119, -0.016502507, -0.000749622646, -0.0197634809, -0.0134638716, -0.0155884456, 0.0481734835, -0.00725072715, 0.0157366712, 0.0239138119, -0.00834389497, 0.00912208203, -0.0164530985, 0.0564741455, 0.0017509209, 0.0122780623, -0.020269921, -0.00659606187, -0.00520644197, 0.0584999025, 0.0304110572, 0.0134268152, -0.0217645336, -0.0280641429, -0.0103881797, -0.0455054156, -0.0168236624, 0.00382917444, 0.0070036836, 0.0318686143, -0.0223080292, -0.0168607198, -0.0213322081, -0.00803509, 0.0400951616, 0.0182194598, 0.0293734744, -0.0231850334, 0.0121051325, -0.0029089374, 0.0150696542, 0.021851, 0.0161566455, -0.0276688728, 0.0227033, 0.0137232672, 0.016885424, 0.0395516679, -0.0372541621, 0.000314401463, 0.0129203759, -0.0184788555, 0.00172930455, 0.0491863638, 0.0335485078, 0.0135132801, -0.0514344573, 0.0016428394, 0.00056241, 0.0101411361, 0.00481734844, -0.00902944058, -0.0170954112, 0.00501807127, -0.0219621677, -0.0192323383, 0.0236544162, 0.016873071, 0.00178952143, -0.0200846381, -0.0184047408, -0.0234197248, 0.0119569059, -0.0182688683, 0.0147732021, -0.0143408757, 0.0246055331, 0.0129821366, 0.0114134103, 0.0266806986, 0.0104869967, 0.0188864768, 0.0151808234, -0.0429114588, -0.0480005555, -0.00628725719, 0.020356385, 0.00102600257, -0.00139888388, 0.00609271042, 0.0499521978, 0.0161566455, 0.026137203, -0.00796097703, -0.0234073736, 0.0122780623, -0.00815861207, 0.00158725458, -0.0312263, 0.00496866275, -0.00259241275, 0.0111107817, 0.000877004466, -0.00187289866, -0.0377482474, -0.00588272372, -0.00421518, 0.0250008032, -0.0182441641, -0.0348331369, -0.029620517, 0.0108760903, 0.0127103887, -0.0138961971, -0.0521755889, -0.0127721494, -0.0260877945, -0.000666631502, -0.00419665175, -0.0174783282, 0.0104067083, -0.00852917694, -0.0156007977, -0.0157984328, -0.00126301, 0.0267054029, -0.0214927848, 0.012932728, -0.00555539085, -0.0095235277, -0.00451472029, 0.0171942282, 0.0215051379, 0.0113640018, -0.00162739912, -0.00360065908, 0.0263595432, 0.0142544108, -0.00287188077, -0.0290029086, -0.0336226225, -0.0126239238, 0.0182071067, -0.0119074974, -0.00663311826, 0.0138714928, 0.00294136186, 0.00921472255, 0.028854683, -0.00246734708, -0.00646018796, 0.00792392064, -0.0417256504, 0.00936294906, 0.00760276429, -0.0126177473, -0.0246178862, -0.0309545528, 0.00789304, 0.0275700558, 0.0155390371, -0.0243708417, -0.0261866115, 0.0270512644, -0.0297440384, -0.0680851936, -0.00770775741, -0.00244573085, 0.00515703345, 0.00609271042, -0.0101967212, -0.0405892506, 0.0038631428, -0.0422444418, -0.00497483881, -0.0198375937, 0.0105981668, -0.0142544108, 0.00344625697, 0.00480190804, -0.0365130305, -0.0104190605, -0.00490381382, -0.0122348303, -0.00831301417, -0.00412253849, -0.00651577255, 0.00208442961, -0.0190964639, 0.0115122274, 0.00805979501, 0.0331285335, -0.0390081704, 0.011049021, -0.0303616468, -0.00727543142, 0.00403916137, 0.0191088151, 0.00265880581, 0.0293734744, 0.030287534, -0.00764599675, 0.0221721549, -0.0537566692, -0.0155143328, -0.0199240595, 0.00902944058, -0.0120186666, 0.0260877945, -0.0034833136, 0.0113640018, 0.00079748733, 0.00860329065, -0.0282864813, -0.0358954221, -0.0233950205, 0.026433656, -0.0109378519, 0.0063860747, -0.0116851581, -0.0230121035, 0.0401939787, 0.0519779548, 0.0390328765, 0.00105688302, 0.0148720192, -0.0371800475, -0.0298181511, -0.0216780677, -0.0280888472, 0.0155637413, -0.000436186208, -0.0243831947, -0.0125189302, 0.015242585, -0.0371059366, 0.014563215, 0.0305345785, -0.0264830645, -0.000433098146, -0.013599745, -0.000593290431, 0.0261866115, -0.0152549371, 0.0167371985, 0.04592539, 0.0174042154, -0.0275206473, 0.0171942282, -0.0153290499, 0.00681222463, -0.0042738528, 0.0180712324, 0.0169101283, -0.0112219518, 0.00149770128, -0.0122718867, 0.0210975166, -0.000889356656, 0.00600006944, 0.0243214332, 0.00749159465, -0.0253466647, -0.00403298531, -0.0331532396, 0.0365377367, -0.00783127919, 0.0236544162, -0.00481117237, -0.0294475872, -0.00388167123, -0.00602168543, 0.00625328906, 0.00511380052, -0.0116295731, 0.0231479779, 0.00237624976, -0.0108452104, 0.00929501187, -0.0162678156, -0.000363231171, 0.0143532278, 0.000900936779, 0.0291511342, -0.021221038, -0.0117407432, 0.00232066493, 0.0129203759, -0.019961115, 0.00541951694, -0.0027113026, -0.00332891126, 0.00785598345, 0.0152919935, 0.0287311599, 0.0263842475, -0.000958837627, 0.0250008032, -0.0122657102, -0.00699750753, -0.0155266849, -0.0142420586, -0.0147114415, 0.0134021109, -0.00956058409, 0.0333014652, -0.0331038311, -0.0067813443, -0.0183429811, 0.00614211941, 0.013599745, 0.00860946625, -0.00161813502, -0.00339684822, 0.0110057881, -0.0226168334, -0.00533614, -0.00860946625, 0.0221598037, 0.0293981787, -0.0133403493, 0.0208751764, -0.00336905592, 0.0247537605, 0.0580058172, -0.048716981, -0.0028996733, -0.00900473632, 0.00167217571, 0.0215669, 0.00833154283, 0.00767070102, 0.023049159, -0.00411636243, -0.00140660396, 0.0100670233, -0.00957293622, 0.0248772819, 0.0270759687, 0.0260383859, 0.0300157871, -0.00694809854, -0.00722602289, -0.0297687426, -0.00440046238, 0.0255195946, -0.00964704901, -0.00476176385, -0.0209616423, -0.0164407454, -0.00515394518, -0.021221038, 0.0162184071, 0.0196893681, 0.0101781925, 0.00324553414, 0.00383843854, -0.0162431113, -0.0224439036, 0.0210975166, 0.031547457, 0.0475064665, 0.000817559601, 0.00051608932, -0.0301640127, 0.00260476512, 0.0180588812, 0.00890591834, -0.0134762237, 0.0104375882, -0.00762129249, 0.00565420836, -0.0202452149, 0.00846741628, -0.00567273656, -0.0180465281, 0.00860946625, -0.00584566686, -0.00910355337, -0.0249266904, 0.0042769406, -0.0256431159, 0.0153290499, -0.0104746446, -0.00185437035, -0.0138344364, 0.00553995091, -0.00552142225, 0.0125992186, 0.0276194643, -0.00778804673, 0.00365006784, 0.0185035598, -0.0152302328, -0.00462280167, 0.000948801462, 0.0444184244, 0.0103017148, -0.0140938321, 0.00462589, -0.0153290499, -0.0190841109, -0.0159713626, 0.00643548369, 0.00331655913, 0.0158354882, -0.00788686424, -0.00416268315, 0.0025491803, 0.0287311599, -0.00223574368, -0.00303400308, -0.00111478381, 0.0224192, -0.0234197248, -0.0126856845, -0.0152549371, -0.0207269508, -0.0115801645, 0.0223080292, -0.0172312856, 0.00980762765, -0.00668870285, 0.0192199852, -0.0118827932, 0.0139456065, 0.0313992314, 0.00328876683, -0.00816478767, -0.0304604657, -0.010227601, 0.00886886194, 0.0132538844, 0.0235803034, 0.0083191907, -0.00915913843, 0.0120248431, 0.00516629731, -0.00710867718, -0.00341537665, -0.00177099323, -0.0258901604, -0.00671958365, -0.0106352232, 0.0139579587, -0.0052157063, -0.000607572612, 0.00573758548, -0.0167124942, 0.00431090919, 0.0182441641, -0.00339067215, 0.0137603236, 0.00423988421, -0.0219251122, -0.0305098742, -0.00829448551, -0.0138344364, 0.00501189521, 0.00940000545, -0.021986872, 0.0214557294, -0.000974277849, -0.00407621777, 0.0133897588, 0.00213229423, -0.0108452104, -0.00295371399, -0.015823137, -0.0219127592, 0.0229256377, 0.00699133147, 0.0107710967, -0.00692957034, -0.0196893681, -0.0120371953, -0.01611959, -0.0266065858, 0.0079795057, -0.0102893626, 0.0157984328, 0.0044467831, 0.01311801, -0.0379705876, -0.0175894983, -0.0156996157, 0.0340673, 0.0211345721, -0.0209863465, -0.0113825295, -0.00728160748, -0.0269030388, -0.039848119, -0.00362227554, 0.0365130305, 0.00624402473, -0.00276688742, 0.0165519156, -0.00511688879, -0.00741130533, 0.0142667629, -0.00175864098, -0.012932728, 0.0380447023, -0.00646636402, 0.0129574323, -0.0162184071, 0.00847976841, -0.00793627277, 0.0196276065, -0.00866505131, 0.00546275, -0.00925795548, 0.0146373278, -0.0168483667, 0.0229997505, 0.0258654561, -0.00605874229, 0.000326560636, 0.043405544, 0.0187135469, -0.0164530985, -0.0171201155, 0.0168977771, -0.0042892932, 0.00714573357, -0.0156378541, -0.0029182015, 0.0142914671, 0.00612359121, 0.00720749423, -0.0123151187, 0.0312263, 0.0130438972, 0.0130315451, -0.0232962035, 0.00210295781, -0.000931817223, -0.00520026591, 0.000893216697, -0.0191088151, 0.0178735983, 0.0271253772, 0.0256678201, 0.0121113081, 0.0136120971, -0.00325171021, -0.00620079227, -0.0193435065, -0.00547510199, 0.00207825354, -0.00117886078, -0.00753482711, -0.0197017193, -0.0143285235, -0.00457030488, -0.00479573198, 0.00825742912, -0.0355495624, 0.022666242, 0.0167371985, -0.025074916, 0.000704846, 0.00226816814, 0.00843653549, -0.00776951853, -0.000590202399, 0.0141308885, 0.0315721594, -0.000280432985, -0.000965785701, -0.0077756946, -0.000127092309, -0.0206157807, -0.0147732021, -0.0172436368, -0.00893679913, -0.00886886194, -0.0021554546, 0.00356669072, 0.014563215, 0.0109131467, 0.016885424, -0.0346602052, 0.0115122274, 0.0167124942, -0.0136615066, 0.0313498229, -0.0149337798, -0.0410586335, -0.0236420631, -0.0139456065, -0.0245684776, -0.00816478767, 0.0130068408, 0.00358830695, 0.0146002714, 0.00991879683, 0.00431399746, -0.00331964716, 0.00816478767, 0.00171849644, 0.0165148582, -0.00416268315, 0.0142667629, 0.0325603336, 0.0033227352, -0.00887503847, -0.029225247, -0.0275700558, -0.00460736128, 0.014180298, 0.0106969839, -0.0122039495, -0.00996820536, 0.00925795548, -0.0196276065, 0.00731248781, 0.014859667, 0.0229009334, -0.015810784, -0.00597227691, 0.0327579714, -0.0124015845, -0.0184294451, 0.020838121, 0.00232992903, 0.0026943183, 0.00626564119, 0.0157490242, -0.0155266849, 0.0198005382, 0.00718279, -0.0261619072, -0.0241855606, -0.0284841172, -0.0129697844, 0.0423679613, 0.0242720246, 0.00943706185, 0.0116048688, -0.0291264299, 0.0153661063, 0.022678595, -0.0206775423, -0.0264089517, -0.000856160186, -0.00423062034, 0.0123583516, -0.00657753367, -0.00922707561, 0.0217274763, -0.0202205107, 0.0244696606, 0.0103881797, 0.0136368014, 0.0127968537, 0.0373035707, 0.0250502117, -0.031646274, 0.00394960819, 0.0131427152, 0.00721367076, -0.0073618968, -0.0071580857, 0.0162678156, -0.0136368014, -0.00261402922, 0.0277429856, 0.00597227691, 0.00206435728, 0.000510299229, 1.31724373e-05, -0.006608414, -0.00759658776, 0.00869593117, 0.00713338144, -0.0343884565, -0.00660223793, -0.0257913433, -0.00250903564, 0.0193435065, 0.0232715, 0.0132291801, -0.0180712324, -0.0242473204, 0.0174412727, 0.00764599675, 0.000183352604, -0.0198375937, 0.00552142225, -0.0110984296, -0.00428002886, 0.0309545528, 0.000944169413, 0.019677015, -0.0235679504, -0.00309576397, 0.023049159, 0.022085689, -0.0143038193, -0.0224686079, -0.0185653195, -0.0149214277, -0.000216935077, 0.00845506415, -0.0165272113, 0.0259642731, -0.0165642668, 0.0166877899, -0.0171571728, 0.0147855543, -0.00208751764, 0.00824507698, 0.0277676899, -0.00710250111, 0.0250378605, 0.0128586143, -0.0148349628, 0.00786833558, -0.0103325946, -0.0134638716, 0.00337214395, 0.00888739061, 0.0106352232, 0.0280394387, 0.0226538908, 0.00705309212, 0.0117901517, -0.000880864507, 0.0280394387, -0.0395763703, 0.0131550673, -0.000738042465, 0.00423370814, 0.0125436345, 0.00245808298, -0.00416577142, 0.0040669539, 0.0352531075, -0.00531452335, 0.0161566455, -0.00577155408, -5.10009741e-05, 0.0097211618, -0.0174783282, -0.0462712497, -0.0250131562, 0.0159960669, -0.0213816166, -0.0114134103, -0.0105487583, 0.01379738, -0.0112528317, 0.0240867417, -0.0211469252, 0.00681222463, -0.0173053984, 0.0467159264, 0.0271253772, 0.00758423563, -0.00789304, 0.0123830559, 0.0183923896, 0.00495631061, -0.0205046106, 0.0128339101, -0.00565112, 0.0116419252, -0.00839947909, 0.0252725519, -0.000397971657, 0.00444987137, -0.0052558505, 0.0048235245, -0.0124571687, -0.0189729426, 0.0077571664, -0.0228762291, -0.000152086155, 0.00377667765, 0.0139332544, 0.0210604593, 0.00754100317, 0.0340920053, -0.0164654497, -0.0200352296, 0.00388475927, 0.0292746555, -0.00756570743, 0.00181731384, 0.00506130373, -0.00667017465, 0.00464750594, -0.000690949848, -0.0149955414, -0.0174165685, -0.0123892324, 0.0031328206, 0.0215545464, 0.00870828424, 0.00704691606, -0.0144520458, -0.0116542773, 0.000324051594, 0.0141432406, 0.00137340755, 0.0560788773, -0.0155019807, 0.00790539198, -0.0418985784, 0.0157490242, -0.00345860911, -0.00959764048, -0.0107155126, -0.00595374871, 0.00131936674, -0.00013326839, -0.00239941012, -0.0203687381, -0.0004581885, 0.00724455109, 0.0317203887, -0.0204799064, -0.0159343071, 0.00629034545, -0.0221721549, 0.0093011884, 0.0246796459, -0.0124201123, 0.0259148646, -0.00206898944, -0.00051338732, -0.00999291, 0.0042738528, -0.00988791697, 0.00780657493, -0.00286570471, 0.0177253727, 0.000219058114, 0.0101967212, -0.0143408757, -0.0310533699, 0.0138714928, 0.0117407432, -0.0148226107, -0.0133527014, 0.018528264, -3.74425326e-05, 0.0176389068, -0.0114381146, -0.0142420586, 0.0161689986, 0.00327332644, 0.00348948967, 0.000284486043, -0.00641695503, 0.00257388456, -0.00234536943, 0.000216549073, -0.00943088625, 0.000687861757, 0.0125498101, -0.0163295753, 0.00546892593, 0.00618226407, 0.00459809741, 0.0188864768, -0.00969028194, -0.0161689986, 0.00286879274, 0.0114442911, -0.000978909899, 5.13869818e-05, -0.00093336124, 0.00710250111, -0.00213538227, 0.00234073726, -0.0111293104, 0.0275700558, -0.00621005613, 0.0221351, 0.00175555295, 0.00604021363, 0.004653682, -0.0109563796, -0.00508600846, 0.00649106828, 0.0148226107, 0.00126455398, 0.00434178952, 0.01408148, -0.0097149862, -0.00569126476, 0.00959146395, 0.00707779638, -0.00247815531, 0.00252756383, -0.00708397292, 0.00543186907, -0.0095235277, -0.00815861207, -0.00187289866, 0.0139209023, -0.000590588374, 0.00340920035, 0.00809685141, 0.000364968175, -0.00208906177, -0.0227403548, 0.00984468404, 0.00692339428, -0.00769540528, -0.0014012, -0.00369638857, -0.0143285235, 0.00153244182, -0.00468147453, -0.0162307583, -0.0368094817, 0.011475171, -0.0234320778, 0.00672575971, -0.000359178113, -0.0073989532, -0.0167371985, 0.00829448551, 0.0236420631, -0.000261325709, -0.0119445538, -0.00517247338, 0.00592286838, 0.000879320491, 0.0150696542, 0.0128339101, -0.0129697844, 0.0100237904, -0.00523114624, 0.014662032, 0.0100793755, 0.00453016, -0.00194392365, 0.00383535051, -0.014662032, -0.0116110453, -0.00277615152, -0.0167742539, 0.00192539534, -0.00121205719, 0.0111663667, 0.0246302374, -0.0113392975, -0.017564794, 0.0062162322, -0.0157737285, 0.00101673848, -0.0248155203, -0.000296066195, 0.00745453779, 0.00096192566, 0.0292499512, 0.0101349605, -0.00211222214, 0.0150820063, -0.0156131499, -0.0010908515, -0.0125189302, -0.0113578252, -0.002326841, -0.0126609802, 0.006197704, 0.0121236602, -0.00187135465, 0.00760894036, 0.0114134103, 0.0111787189, 8.36184408e-05, -0.00655900501, -0.00505512767, -0.0270512644, 0.0103511233, -0.0220239293, -0.026532473, 0.0118951453, -0.00841183122, 0.00767687708, 0.00955440756, -0.00434487779, 0.00646636402, -0.0052157063, 0.00603712583, 0.0273724217, -0.00151931762, 0.00868975557, 0.020936938, 0.0014675929, -0.0250502117, -0.00523114624, 0.00556774298, 0.00202884478, 0.0145261586, 0.00142204424, 0.0147732021, -0.00175709696, -0.00516012125, -0.00231140084, 0.000425378035, 0.00761511642, 0.00481426064, -0.00935059693, -0.0063860747, -0.00181885785, -0.0120186666, -0.000572832127, -0.00878239702, -0.00178334536, -0.00761511642, 0.0104808211, 0.0219745208, -0.0174536239, 0.00677516824, -0.00507674413, 0.00793627277, -0.0153166978, 0.00498101488, -0.00114643632, -0.000763518852, -0.0188000109, -0.0173301026, -0.00137958361, 0.00956058409, -0.0031158363, 0.00820802059, 0.00540098874, -0.0167371985, 0.00823272485, -0.019973468, 0.0116357496, -0.0209863465, -0.0337955542, -0.00354816252, -0.00259395689, 0.0125806909, -0.00618535187, 0.0156502072, -0.0268536303, 0.00433252566, -0.00281629595, -0.0284841172, 0.00353581016, 0.00123676157, -0.0235556, 0.00552759878, 0.00186363445, 0.00176636106, 0.0316215679, -0.0052342345, -0.00392799173, -1.35222544e-05, 0.0163172241, 0.0144026363, -0.00937530119, 0.00335361576, 0.0160084199, 0.00863417052, -0.00944941398, -0.0164160412, -0.001266098, -0.0102584818, -0.0129944887, 0.00247815531, -0.0120495474, 0.0105487583, 0.017552441, 0.0159960669, 0.0117407432, -0.0108452104, -0.00395887205, -0.0162554625, 0.00912825763, 1.66102982e-05, 0.0166383814, 0.0176883154, -0.012012491, -0.0267795175, -0.0274712387, -0.0279159173, -0.00552451052, 0.0133032929, 0.0116604539, -0.00194392365, 0.000955749594, -0.00706544425, -0.0199487638, 0.0233579632, 0.0163172241, 0.0282123685, -0.0102028968, -0.00828213338, 0.0129821366, 0.00262638135, -0.0449866243, -0.00345860911, 0.0187506024, 0.0147361457, 0.00747306645, -0.00917149056, -5.53917889e-05, -0.0167001411, -0.0130315451, 0.0133403493, -0.0115739889, 0.0266806986, 0.0113948816, 0.0061946162, 0.00583331473, 0.0138220843, 0.0285088215, 0.00526820309, -0.00167371985, -0.00799185783, 0.0394775532, -0.00870828424, 0.0021461905, 0.0189482365, -0.00915296189, 0.000502965122, 0.00460736128, 0.00540098874, 0.0220733378, -0.0255690031, 0.0199487638, 0.0144520458, 0.0147979064, -0.00652812468, -0.00528055523, -0.00141509611, 0.0054442212, 0.00432634959, -0.00626255292, -0.00141123601, -0.00881327689, 0.00822037272, -0.00617608801, -0.0160825327, 0.0137109151, 0.0100608468, 0.0287805684, 0.00793627277, 0.00962234475, -0.019677015, 0.00399592891, 0.00337523199, 0.000849212054, -0.00264645368, -0.0176018495, -0.0110181402, -0.0108390339, -0.0177994855, -0.018898828, 0.021319855, -0.00475249952, -0.0299169701, -0.00262174918, 0.0181453452, 0.00280548795, 0.00806597061, -0.01379738, 0.00756570743, 0.0166260283, -0.000840719964, 0.0132415323, 0.00378902978, 0.00646018796, 3.71530296e-05, 0.0199117064, -0.0182935726, 0.0229503419, 0.00357286679, 0.00789921638, -0.00237007369, 0.00162431109, -0.00120974123, 0.00481117237, -0.00533305202, -0.0196029022, -0.000545039773, 0.0138220843, 0.0101967212, -0.01476085, -0.00694809854, 0.0277923942, -0.0146126235, 0.0138591407, 0.00459192134, -0.0029012172, 0.0146373278, 0.0106846318, 0.0110737253, 0.00471853092, -0.00279622385, -0.0070036836, -0.0109625561, -0.00209678174, 0.0200352296, 0.0213816166, 0.0286817513, 0.000863880268, -0.0272488985, 0.0355001539, 0.00243029045, 0.00558318337, 0.00459500914, 0.00569126476, 0.00422444427, 0.0334002823, 0.0184912067, 0.000750780688, -0.00740512926, 0.0294722915, 0.0125436345, 0.00243337848, -0.0185776725, 0.0031173802, 0.00195009972, -0.00486366916, -0.00652812468, 0.0101534883, -0.0123336473, -0.00432017352, -0.00146064477, -0.00234073726, -0.0249637477, 0.00801038556, -0.00598154124, 0.00541025307, 0.00264490955, 0.0178612452, -0.00266807, -0.0400457531, 0.00204737321, 0.0110613732, 0.01476085, 0.012154541, -0.00515703345, 0.0269030388, 0.0259148646, -0.0197881851, 0.0139703108, -0.014958485, -0.0383658558, 0.0100423191, -0.0183306281, -0.00495631061, 0.000574762176, 0.00739277713, -0.0232591461, -0.00117036863, 0.0121236602, 0.00200722856, 0.00718279, -0.00919001829, 0.0123892324, -0.00109239551, -0.0337461419, -0.00562332803, 0.0109007945, 0.0110675497, -0.0023422814, 0.00220486335, 0.00285644061, 0.0127227409, -0.0140567757, 0.00498101488, -0.0156996157, 0.00481734844, 0.010950204, 0.00811537914, -0.00628108112, 0.00270049437, 0.0174906813, -0.00522188237, 0.000907112902, -0.0253219604, -0.00262792525, 0.0105240541, 0.00996203, 0.00533305202, 0.0238520503, -0.00178952143, 0.0150820063, 0.00438502245, -0.00551215839, -0.00870210771, -0.0112651838, 0.00627490506, -0.0130562494, -0.0152302328, 0.017552441, 0.00785598345, -0.00370565266, 0.0205663722, -0.0134885758, -0.00358213088, 0.0124201123, -0.00663311826, 0.00738660106, -0.00617299974, 0.00109625561, -0.0138591407, 0.0130686015, -0.00583022693, -0.013019193, 0.00242874655, -0.0075904117, 0.00147608493, -0.00644165976, 0.00450236816, 0.00337523199, -0.00910355337, 0.0187011939, -0.00224192, 0.00763982069, -0.00554612698, 0.0135256322, 0.0205046106, 0.00725690322, -0.00148766511, 0.00468765059, 0.00155483012, -0.0116913337, -0.0103943562, -0.011814856, -0.0194423236, -0.00722602289, -0.0100917276, -0.0187753066, 0.0141926501, -0.0141185364, 0.00955440756, -0.0127597973, 0.0128833195, 0.0231356248, 0.0156255029, -0.00812155567, 0.0186023768, 0.0113948816, 0.0075904117, -0.00415650709, 0.0069851554, 0.00201803679, -0.0259148646, 0.00413180282, -0.0100793755, 0.0287311599, 0.00633049, -0.00197943603, 0.00374888536, -0.00222339155, 0.00174320082, 0.00987556484, -0.0178241897, -0.00662694219, 0.0200105254, 0.00862799492, -0.000294522179, -0.0119630825, -0.0103202425, -2.04582902e-05, 0.0179230068, 0.00200722856, 0.0062162322, 0.00261866115, -0.00994350109, -0.010709336, -0.00885033421, -0.00581169873, 0.00920854695, -0.00627490506, 0.0449372157, 0.0083191907, 0.0306333955, -0.0014544687, 0.0101781925, 0.000395655632, 0.00500880741, -0.00788068771, 0.0176018495, 0.00859711412, -0.00701603573, 0.00568508869, -0.00830683764, -0.0285829343, -0.00502115954, -0.0128833195, 0.0192570426, 0.0130686015, 0.00710867718, 0.0087391641, -0.00409783423, -0.0119877867, -0.00661459, -0.0271747857, 0.00940000545, -0.00451472029, 0.0119630825, 0.00636754651, 0.000579780259, -0.00497792661, -0.0194793809, 0.00902326405, -0.0229997505, 0.0136491545, 0.0178118367, -0.0120001389, -0.0105487583, 0.00926413201, -0.0374517962, -0.00742365746, 0.00248433137, -0.0109749082, 0.00925178, 0.00731866388, -0.00680604856, 0.0098693883, 0.000349141948, -0.0128709674, 0.0198993552, -0.00713955751, 0.000430782122, -0.000749236671, 0.0173795111, -0.00159806269, 0.00388167123, -0.00633666618, 0.0223327335, 0.0154649243, 0.00274835899, -0.0161689986, 0.0266806986, 0.0172189325, -0.0231726822, -0.01572432, -0.00674428791, 0.00188679481, -0.0211839806, 0.0177130196, 0.00341846468, 0.0113084167, -0.0148473149, 0.000508369238, -0.00169224804, 0.0153043456, 0.0106969839, -0.0018234899, 0.00599389337, 0.0271500815, 0.0249513946, 0.00885651, -0.0329556055, 0.000743060547, -0.00191921927, -0.0186023768, 0.0048605809, -0.0166507326, 0.00241021835, 0.000811383536, 0.0194176193, -0.00752865104, 0.0116666295, 0.0308557339, 0.0237532333, 0.0314980485, 0.000447380356, -0.0108266817, 0.00626564119, -0.0251613818, -0.00171077636, 0.00642930716, 0.0271500815, -0.0360683538, -0.000442362274, 0.0108575625, -0.0163542796, -0.00783127919, 0.038983468, -0.00150464941, 0.00203347695, -0.0058209626, 0.021023402, 0.0242596734, 0.0166754369, -0.0272983089, -1.36187564e-05, -0.0151684713, 0.0158354882, 0.000190397201, -0.0299169701, 0.000516475353, 0.0201340467, 0.00102600257, -0.0149214277, 0.00273600686, -0.0075718835, -0.00160269474, -0.00233764923, -0.0148349628, -0.00323318201, 0.0141926501, -0.00895532686, -0.00583022693, -0.0104314126, -0.0165395625, 0.0249266904, 0.0104561169, -0.00583331473, 0.0227403548, 0.00902326405, -0.0242473204, -0.0111663667, 0.0213075038, -0.0170583539, 0.00741748139, -0.00962852128, -0.021319855, 0.0156255029, -0.0175771452, -0.00498719094, -0.00762129249, 0.0105919903, 0.00748541858, 0.0158601943, 0.0211963337, -0.00426458847, 0.00557083124, 0.0284347087, -0.00967175327, 0.0421209186, -0.006608414, -0.0171077624, 0.0041040103, 0.00634284224, 0.0258901604, 0.0161442943, -0.0210851636, 0.00778804673, -0.00629652152, -0.0118519124, -0.0162678156, -0.00209523784, -0.00775099033, 0.00896150339, -0.00533922808, 0.0095297033, -0.0102090733, 0.00126918603, 0.0310780741, -0.0102399532, -0.0192693938, -0.00731248781, 0.0116481017, 0.024704352, 0.00302937115, -0.0109193232, 0.0287311599, 0.00474632345, -0.000993578113, 0.0243337862, -0.00264027761, 0.00880092476, 0.00885651, 0.0172189325, 0.00780657493, -0.0202081595, -0.00440972671, 0.0270512644, 0.0116481017, -0.00352654606, 0.0301393084, -0.0169101283, 0.00957293622, 0.0157119669, -0.00497792661, -0.00983850751, -0.0125683388, 0.0107834497, 0.00382608641, -0.0129574323, 0.015341402, -0.0213075038, -0.000140699, -0.0207640063, 0.0163666327, -0.00861564279, 0.0031235565, -0.0127721494, -0.00611123908, 0.0213692635, 0.0161319412, -0.00336905592, -0.00172621652, -0.000299540261, -0.00973969, 0.0211963337, -0.000783977157, 0.00673811184, 0.000354739052, 0.00232992903, -0.00938765332, -0.0192817468, -0.0201834552, 0.00743600959, 0.0143902842, -0.000750780688, -0.0316215679, 0.000435028196, 0.00603403756, -0.000925641158, -0.00823272485, -0.0129697844, 0.00793627277, -0.0197758339, -0.0197511297, -0.01572432, -0.00398357678, 0.0201340467, 0.00132554281, -0.0258407518, -0.00925795548, -0.00123290147, 0.00442516711, 0.0227280036, 0.00518482551, 0.005836403, 0.00711485324, 0.00285335258, -0.00197326, -0.00326406234, -0.00120742514, 0.000924869149, -0.00991262123, 0.0133774057, 0.0142297065, -0.00741748139, 0.0125189302, 0.0115431082, -0.00210295781, 0.0260630902, -0.0118210316, 0.00356360269, -0.0112960646, 0.0220486335, -0.00320230145, -0.010270834, -0.037896473, -0.011049021, -0.00821419712, -0.00944323838, 0.0214063209, 0.0335979164, 0.00114875229, 0.00628416939, 0.0153290499, 0.0105672861, 0.0133774057, -0.00114334829, 0.00360374711, -0.00316833309, -0.00256925263, 0.00442825491, -0.00370256463, -0.0015308978, 0.00928883627, 0.0069851554, -0.0191335194, -0.00431090919, 0.0125992186, 0.00484822877, -7.28585364e-05, 0.0087391641, 0.0173301026, -0.000279853964, -0.0253219604, 0.0107463924, 0.0178365409, 0.00276225526, -0.0207640063, -0.0050304234, -0.0380447023, -0.00268196617, -0.00466603413, -0.0214927848, 0.0254207775, -0.0311768912, 0.0154402191, -0.00187135465, 0.00130392658, -0.00689251395, 0.00699133147, 0.00675046397, 0.0218015891, 0.0041040103, 0.00436340598, 0.0106166946, 0.0181576982, -0.00217089476, -0.00272365473, 0.00778187066, 0.00405460177, -0.00227125618, -0.00376741355, -0.00625946512, -0.00822037272, -0.0150573021, 0.0163295753, -0.0592904426, -0.0104190605, 0.00668870285, 0.00641077897, -0.0140197193, -0.00480190804, -0.00565420836, 0.0097211618, 0.00684928149, 0.00259395689, -0.0139826629, 0.010752569, 0.0138467886, 0.0132662365, -0.0159466583, -0.0050489516, 0.0219745208, -0.0188617725, -0.00644783583, 0.0179600641, -0.0156749114, -0.000780889124, 0.00518482551, -0.011431938, 0.00927648414, 0.00571596902, 0.00558627117, 0.00910973, -0.00923942775, -0.00708397292, -0.0204922594, 0.0250255074, 0.00153938984, 0.0271500815, 0.00327332644, -0.00767687708, -0.00660223793, -0.0257172287, 0.00767687708, -0.0116295731, 0.00730631175, -0.0156502072, -0.00235000136, 0.00825742912, 0.0110304924, -0.00843653549, 0.00267733401, -0.0237408821, 0.000668947527, -0.00788068771, -0.00232992903, 0.0170707069, -0.000161736301, -0.00803509, -0.0190099981, 0.00733719207, -0.00137340755, 0.0196399596, 0.000356283068, 0.00751012284, -0.00883798208, -0.0289535, 0.0105611105, 0.0229256377, 0.00847976841, 0.0103325946, -0.0133527014, 0.0143038193, 0.0120618995, 0.0392305106, -0.00104916294, -0.0054596616, -0.0260136817, -0.0138220843, 0.017465977, 0.0258901604, -0.0262113158, -0.00752247497, 0.00127459015, -0.000249166536, 0.00727543142, 0.00780657493, -0.00577464188, 0.0314980485, -0.00432943739, 0.0145508628, 0.0177500769, 0.00026904582, -0.00287496881, -0.021023402, -0.0106784562, 0.0268536303, 0.00132013881, -0.00250131567, 0.0115863411, 0.00894915126, -0.0140073672, -0.00328876683, 0.0197017193, 0.0173177496, -0.0166260283, 0.00983850751, 0.0243955459, 0.00122518139, 0.0111478381, -0.012735093, -0.00412871456, -0.00365624391, 0.022085689, -0.00436340598, 0.0142914671, 0.00665782252, 0.0156378541, 0.00066740351, -0.00992497336, 0.0178241897, -0.00475249952, 0.00224655191, -0.0127721494, 0.0338202566, 0.00151854556, -0.0188864768, -0.00762746856, -0.0105425818, -0.00199178839, -0.00300157862, 0.00220023119, -0.0132785887, -0.00107541133, 0.0116357496, 0.00551215839, 0.006608414, 0.00320538948, -0.00622858433, -0.0128339101, -0.0369330049, -0.0162431113, -0.014958485, -0.0173795111, -0.00494395848, -0.0206528381, -0.0142173544, 0.00302010681, 0.00285798451, -0.026532473, -0.00655282894, -0.0132662365, 0.00670723151, 0.0001549812, -0.00100515829, -0.0165519156, 0.0116233975, 0.00696045114, 0.00451472029, 0.013315645, -0.0270018559, -0.00114643632, -0.0077571664, -0.00983233191, -0.0242843777, -0.0136368014, 0.00360065908, 0.00665782252, -0.00838095136, -0.0149461329, 0.0106352232, 0.000295487203, -0.0298922658, 0.00716426177, -0.0286817513, 0.0164160412, 0.00132168282, 0.01379738, -0.0014675929, -0.00746689, -0.00544730946, 0.0105611105, -0.0131797716, 0.00946794264, 0.00627181726, 0.00774481427, -0.00460427348, -0.0010514789, -0.0232467949, 0.0226415377, -0.00146682083, -0.0070036836, -0.0058178748, -0.00745453779, -0.00888739061, 0.0131303631, 0.0175771452, -0.00901708845, 0.0122101251, -0.00415033102, -0.00994967762, -0.00949882343, -0.00696045114, -0.0129203759, 0.0133403493, -0.00276997546, -0.0277429856, 0.00733719207, 0.00742365746, -0.00188061874, -0.00358521892, -0.000604098605, 0.0328320824, 0.010752569, -0.0181576982, 0.0230985675, -0.0119569059, 0.00036072213, 0.0225674249, 0.00844271202, -0.00720749423, 0.00843653549, 0.0117160389, 0.0141308885, -0.00428311666, 0.0133650536, 0.00750394678, 0.00549363, 0.005836403, 0.00226044818, 0.0171201155, -0.00608344655, 0.00894915126, -0.0373776816, -0.00910973, -0.00919001829, -0.0377729535, 0.0023345612, -0.0166630857, -0.00141355209, -0.0241485033, -0.0225303676, 0.00515085738, -0.00627181726, 0.0256184116, -0.0110860774, 0.0107834497, -0.0162184071, -0.0222709719, 0.000261518726, -0.00893679913, 0.0158478413, 0.0323874056, 0.0174536239, 0.00721984683, 0.0106969839, 0.00991262123, -0.00305253128, 0.0170089453, -0.000704846, -0.0209122337, -0.0221598037, -0.00274835899, -0.00973969, 0.0081339078, 0.0113640018, 0.0054411334, -0.021702772, -0.0200105254, 0.00375197339, -0.0402927957, -0.000273291895, -0.0137603236, -0.00631813798, 0.0107896253, -0.00791156851, 0.00872063637, -0.0248155203, -0.00804126635, 0.010808154, -0.0294475872, -0.00634284224, -0.00391872786, -0.00810920354, 7.55123256e-05, -0.0338449627, 0.00297224219, -0.0178983025, 0.00452089636, -0.0256184116, 0.0242473204, 0.0119198496, -0.0154649243, 0.0156749114, -0.0139703108, 0.00583331473, -0.00765217282, 0.0172065813, 0.0106908083, -0.00557700731, -0.0143161714, -0.00255844439, 0.0143161714, -0.0162184071, -0.0110243168, 0.00671958365, -0.0146249756, 0.0137232672, -0.0177253727, -0.0151931755, 0.0166383814, 0.000126706305, -0.00923942775, -0.0118272081, 0.0046691224, -0.0311274827, 0.0245684776, -0.00272365473, 0.00498101488, 0.00889974274, -0.00258469279, -0.0130068408, -0.00643548369, 0.000692107831, 0.0186641365, 0.00867122691, -0.00357595482, -0.00230059261, -0.0106784562, 0.0199487638, -0.0118272081, -0.00610815082, 0.00388167123, 0.00922707561, -0.00131396262, -0.00572832162, 0.0159096029, 0.00496248668, 0.0105302297, -0.000568586111, 0.00581478653, 0.0108266817, -0.00840565562, 0.0122657102, 0.0145508628, 0.00906032, 0.0077756946, -0.0237408821, -0.0217768848, 0.00488837343, 0.000890128664, 0.00733101601, 0.0327826738, 0.0234073736, 0.0096841054, -0.0164778028, -0.0143161714, -0.00438811025, 0.0100361425, 0.0160331242, 0.000599080522, 0.000350106973, 0.00388475927, -0.0150573021, -0.0109131467, 0.0251366775, 0.00365006784, -0.0246055331, -0.0150696542, 0.0151684713, -0.0102831861, 0.0214557294, 0.0048574931, -0.0135256322, 0.00502115954, -0.00318994932, 0.0169842411, -0.00180650572, 0.00367786037, 0.0263348389, 0.00307569164, -0.0123212952, 0.0221845079, 0.00595066044, 0.0194793809, 0.025371369, -0.0342402309, 0.00935677346, -0.00128385425, -0.0180465281, 2.07719204e-05, -0.00751629891, 0.0165272113, -0.00301393075, 0.00169842411, -0.0341414139, 0.0134885758, -0.00746689, 0.00846741628, 0.00152472162, -0.0137603236, -0.00574376155, 0.00396196032, -0.0107340403, 0.0219374634, 0.00410709856, -0.0166013241, 0.0272983089, 0.00305870757, 0.0183059238, -0.000872372417, -0.0171942282, -0.0158972498, -0.000423448015, -0.021999225, 0.0205787253, -0.00440972671, 0.0126856845, -0.00885033421, 0.0130686015, -0.00419356348, 0.00951117557, 0.0136120971, -0.0218880549, 0.0175277367, -0.00650342042, 0.021900408, -0.00666399859, 0.0211963337, -0.0132662365, -0.00980145112, -0.00835007057, -0.00336287986, 0.0177624281, 0.0320909508, 0.00916531403, -0.016588971, 0.0150202457, 0.0028919531, 0.0044622235, -0.0105487583, -0.0097149862, -0.00516012125, -0.000547741773, 0.00675046397, 0.0117469188, -0.0261866115, -0.000378478377, 0.0167001411, -0.0162678156, -0.0246055331, -0.0189852938, 0.0150573021, -0.0110551976, -0.0138961971, 0.00603403756, 0.00243955478, -0.00281938398, 0.00426767673, -0.0012884863, -0.0119074974, 0.0136738587, -0.00464750594, 0.0211222209, -0.0125436345, -0.0114875231, 0.0070036836, -0.00289504114, 0.015810784, -0.00702221179, 0.0179600641, 0.0265571773, -0.00693574641, -0.00677516824, 0.0044436953, -0.0170830581, 0.0246425904, 0.0194052681, 0.0167001411, -0.0247290563, 0.0144273415, 0.0147114415, -0.0217151251, 0.00192539534, -0.00486675696, 0.00560788764, -0.00898003206, -0.0111601902, 0.00774481427, 0.00857858639, 0.014180298, -0.00503351167, 0.00434796559, -8.2026163e-05, -0.0156131499, -0.00118580891, -0.00550289406, 0.000231217287, -0.0106537519, -0.00146218878, -0.0188000109, 0.00913443416, -0.023827346, 0.00258160476, 0.0216410123, -0.0274712387, 0.00823272485, -0.00935677346, 0.0148102585, 0.00461044954, -0.00608962262, -0.00721367076, 0.00791774411, 0.0273230132, -0.0296452213, 0.0166383814, -0.00369330053, 0.0344131626, 0.00509218452, 0.000212689018, -0.000624556851, 0.00268042204, 0.0232838504, -0.00912825763, -0.013414463, -0.00320847752, 0.0101102553, -0.0260383859, 0.0106722796, -0.0176018495, 0.0260383859, -0.0176389068, 0.0317450911, -0.00609579869, 0.0183676854, 0.0116542773, 0.00941853411, -0.0048760213, 0.0422197357, 0.00376123749, 0.0138838449, 0.000776257, 0.00931971613, -0.000992806163, 0.0197881851, 0.000137610958, 0.0210851636, 0.00514468132, -0.00818331633, 0.0319674313, -0.0246302374, 0.017552441, 0.00449619209, 0.00379211782, -0.0128462622, -0.00463824207, -0.00973351393, -0.027495943, 0.000685931765, 0.00057900825, 0.0156625584, 0.0128339101, 0.0094926469, -0.0077386382, -0.0176018495, 0.00316215702, 0.0249637477, 0.0133774057, -1.48370855e-05, -0.015427867, -0.000412253867, -0.00109393953, -0.0124633452, -0.0234073736, 0.0144396937, 0.0073433686, -0.00713338144, -0.00437575812, -0.000731866399, -0.0319674313, 0.00992497336, 0.0105796382, -0.0163295753, 0.00498101488, -0.00090402487, -0.0106537519, 0.00465677027, 0.0115863411, -0.00268042204]
17 Dec, 2018
unordered_map key_eq() function in C++ STL 17 Dec, 2018 unordered_map::key_eq() is a built-in function in C++ STL which returns a boolean value according to the comparison. It depends on the key equivalence comparison predicate used by the unordered_map container. The key equivalence comparison is a predicate which takes two arguments and returns a boolean value indicating whether they are to be considered equivalent. It returns true if they are equivalent else it returns false. It is adopted by the container on construction and is similar to the (==) operator used in the comparison. Syntax unordered_map_name.key_eq()(args1, args2) Parameter: The function accepts two mandatory parameters args1 and args2, between whom the comparison is to be done. The data_type is same as that of the unordered_map. Return Value: The function returns a boolean value. Below programs illustrate the unordered_map::key_eq() function. Example 1: // CPP program to illustrate the // unordered_map::key_eq() function #include <bits/stdc++.h> using namespace std; int main() { // Declaring unordered_map unordered_map<string, string> sample; // check details bool answer = sample.key_eq()("GEEKS", "geeks"); // checks if both are same if (answer) cout << "GEEKS and geeks are treated" << " similarly in the container\n"; else cout << "GEEKS and geeks are treated" << " dissimilarly in the container\n"; return 0; } Output: GEEKS and geeks are treated dissimilarly in the container Example 2: // CPP program to illustrate the // unordered_map::key_eq() function #include <bits/stdc++.h> using namespace std; int main() { unordered_map<int, int> sample; bool answer = sample.key_eq()(100, 200); // check if (answer) cout << "100 and 200 are treated " << "similarly in the container\n"; else cout << "100 and 200 are treated" << " dissimilarly in the container\n"; answer = sample.key_eq()(100, 100); if (answer) cout << "100 and 100 are treated " << "similarly in the container\n"; else cout << "100 and 100 are treated " << "dissimilarly in the container\n"; return 0; } Output: 100 and 200 are treated dissimilarly in the container 100 and 100 are treated similarly in the container Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL
https://www.geeksforgeeks.org/unordered_map-key_eq-function-in-c-stl?ref=asr4
PHP
unordered_map key_eq() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0460119806, -0.0104496777, -0.00854856893, 0.000483707059, 0.0171613637, 0.00549459085, 0.00143145176, 0.00691078883, -0.00470781419, -0.00820816774, -0.0245988108, 0.00332694105, -0.00622356357, -0.0175981056, -0.0203983877, -0.0137958871, -0.0114066554, 0.0294671934, -0.0221325085, -0.0066859955, -0.0403857268, -0.00974318478, -0.00357421371, -0.0275660828, 0.00277298619, 0.00182243157, -0.000175920839, -0.0101542352, -0.00470781419, 0.0168016944, 0.00879263, 0.0217471477, 0.0340401307, 0.00365128578, -0.032087639, -0.0151446471, 0.0267696735, 0.0264356937, -0.010269843, -0.0254722945, 0.00536934892, 0.0328840502, 0.00471102586, 0.00673095416, -0.0184458978, 0.036711961, 0.0174439624, -0.0356843323, -0.0155556975, -0.012023231, 0.0456009321, -0.0190110914, 0.0182660632, 0.0122094881, 0.0413876623, 0.0214260146, 0.030032387, 0.00112316373, 0.0115029952, -0.0175338797, -0.0246373471, -0.0139500313, 0.0174439624, -0.0256264377, 0.00879263, -0.0250740889, -0.032832671, 0.0354531184, 0.0101799257, 0.00253053056, -0.0213489421, 0.0453954041, -0.00649973843, 0.00402058894, -0.0300580785, -0.011836974, -0.0211177263, 0.00275853509, 0.0142197832, 0.0196019765, -0.0218627565, 0.00567763718, -0.0173283536, -0.013371991, 0.0304434374, -0.0136288982, 0.0207837485, -0.0346053243, 0.0305205099, 0.0465514846, -0.0449586622, -0.0528200082, -0.0113038924, -0.011836974, 0.0317793526, 0.0306746531, 0.0185615048, 0.0137701966, -0.0303663667, 0.0721393898, 0.00332694105, -0.0281826593, -0.00768150901, 0.0341942757, 0.00395957381, 0.00804117788, 0.0409509204, 0.0201029461, -0.00882474333, 0.0066859955, 0.0105652856, 0.0144638447, -0.0308031067, 0.0219012927, -0.0226334762, -0.0019300112, -0.0344511829, -0.00488764886, 0.0370716304, 0.010757966, -0.0619658828, -0.00255782693, 0.0108799962, 0.00423896, -0.0358384773, 0.0366862677, -0.00731541682, 0.0314967558, -0.00721265422, -0.00752094202, -0.00793199241, -0.0119012007, -0.0150161935, -0.0348622315, 0.0158639848, 0.0291075241, -0.00336868851, 0.0432373881, 0.00742460229, -0.0297754798, -0.036506433, -0.00105090882, 0.011836974, 0.00223990483, 0.0185615048, -0.0362238362, 0.0195505954, 0.0228903834, 0.00148363586, -0.01585114, -0.0259218812, -0.0241620708, 0.0371487029, -0.0229931455, 0.0225692485, -0.011836974, -0.008330198, -0.0101478128, 0.00449586613, -0.01989742, 0.0160438195, -0.0516382381, 0.0363009088, 0.0215159319, -0.0459605977, 0.07450293, 0.0216572303, -0.00713558216, -0.0355301909, 0.0330895782, 0.0322160944, 0.021567313, 0.0254979841, -0.0218242202, -0.0163649544, -0.0210535, 0.0543100648, 0.00224472187, -0.0276688468, 0.0199102648, 0.00532760145, 0.0141298659, 0.0401288196, 0.0173026621, 0.0578553788, -0.028953379, 0.00833662, -0.00191074319, 0.0665388256, 0.00913303159, -0.00991017371, 0.0443420894, 0.0107130073, 0.0383818522, 0.0331409574, 0.0236996375, -0.0129609406, -0.0100065144, 0.0154272439, 0.0394608602, 0.0113616968, -0.0193836074, -0.0140271029, 0.00125803973, 0.0420042388, -0.00363201764, 0.0246245023, -0.00355815701, 0.0274119396, -0.00316476868, -0.0430832468, 0.0309829414, 0.000146918494, 0.00568084838, -0.00125643413, 0.00492618512, -0.0414133519, -0.00410408387, 0.0103854509, 0.00863848627, 0.0083880024, -0.00339437905, 0.0064451457, -0.0234427322, -0.0281569678, -3.13606761e-05, 0.0715228096, 0.0119461594, 0.00499362312, -0.0109891817, 0.0582664274, 0.00766224088, -0.00290946779, -0.00211145147, 0.00067558419, -0.0288249254, -0.0158768315, -0.048478283, -0.00234909, 0.00480094319, -0.0231986698, 0.0084008472, -0.0401802, -0.0101991938, 0.0167374685, -0.00986521505, -0.00660892343, -0.0170200653, -0.0109249549, 0.00547853438, 0.00794483814, 0.0114195, 0.00498720026, 0.00574828638, 0.0249970164, 0.0173411984, -0.0144124627, -0.0380221829, -0.00969180372, -0.0397177674, -0.0118241282, 0.0226848572, -0.0365321264, 0.0146693699, -0.0242134519, -0.0154914707, 0.0172898173, -0.0341942757, -0.0439824201, -0.00955692772, 0.0194735248, 0.0176494867, 0.0151446471, -0.0122223338, 0.0615034513, 0.00389855844, -0.0606813505, -0.00892750639, -0.0145409163, -0.0261274055, 0.0109699136, -0.0111176353, -0.0178293213, -0.0187927205, 0.0432630815, -0.0255493671, -0.00157997594, 0.00905595906, -0.049557291, -0.0128902914, -0.0276174657, 0.0062781563, -9.02685642e-05, 0.00950554572, 0.00161369494, 0.0475020409, 0.00331088435, -0.0452155694, -0.0102569982, 0.0310086329, -0.0162365, 0.00543999812, -0.0186514221, -0.0230959076, -0.00788703375, -0.00366734248, 0.0148492046, 0.00501931366, -0.0106616262, -0.0293130483, 0.00523447292, -0.00673095416, -0.000327957387, 0.0134233721, -0.00432566553, -0.0330381952, 0.0213617887, 0.0180990733, -0.00188184122, 0.0211177263, 0.000927272427, -0.0131664658, 0.00417473307, 0.0103404922, 0.0386387594, -0.0309572518, -0.00272321049, 0.0181633, -0.0230959076, -0.0540531576, -0.0120360767, -0.00045881921, -0.0312912315, 0.00292552449, 0.0128453327, -0.031111395, -0.0276945364, 0.0112460889, 0.0259989537, -0.00812467281, 0.0200258736, 0.000139592637, -0.000836552295, 0.0393067189, 0.0126526523, -0.0262558591, 0.00793199241, -0.0124728177, -0.00330125052, 0.046525795, 0.000627815607, -0.00897888746, 0.00620429544, -0.00898531, -0.0156456158, -0.0280798972, -0.0340144411, -0.0214773957, -0.0183302891, 0.0271550324, 0.00937067, 0.0602703, 0.0161080472, -0.00666030496, -0.0191909261, -0.0465001, -0.0290304516, 0.00363201764, 0.0239180084, -0.0344768725, -0.00144831126, -0.023995081, -0.00164259691, 0.0128067965, -0.044367779, 0.038330473, -0.0243675951, 0.0352989733, -0.044907283, 0.0200901, -0.00882474333, 0.0182532165, -0.0238666274, 0.00769435428, 0.00827239454, -0.0264356937, 0.0362495296, 0.0210021194, -0.00111031847, 0.0163264181, -0.0285166372, 0.00591848698, -0.0159795936, 4.43063618e-05, -0.0149134314, 0.00647083623, -0.0179577749, -0.00409445, -0.00928075239, -0.0151446471, 0.0512785688, -0.00672453176, -0.0299810059, -0.0331923403, -0.0275917742, -0.0516896173, -0.0139885675, -0.0383818522, -0.00180316356, 0.00906880479, 0.0319848768, 0.0197047405, -0.00906238239, 0.0331923403, 0.00502573652, -0.000367898348, -0.0426208116, 0.066487439, 0.0247786455, 0.00716127269, -0.0689023659, -0.0286964718, -0.00967253558, -0.0297240987, -0.00423896, 0.0250997804, 0.0173411984, 0.0132820737, 0.0176494867, -0.0247015748, -0.0258448087, 0.00999366865, 0.00391140394, 0.0512014963, -0.0183559805, -0.0299039334, -0.0134747541, -0.00158077874, -0.0182403717, -0.0295185745, 0.0345796347, 0.0287735444, 0.00362238381, -0.0511244237, 0.00632311497, 0.0341172032, -0.00798337441, 0.0232628975, 0.0208222847, 0.0241235346, -0.0167760048, 0.041361969, -0.0238923188, 0.00410408387, 0.0240849983, 0.00167149887, -0.00633274904, -0.0230316818, 0.0534365848, -0.00482984493, 0.00328198238, 0.0305205099, 0.0233142786, 0.0131086614, -0.00287735439, 0.0589343868, 0.0161337368, 0.00996155571, 0.0222738069, -0.0486324281, -0.00107419095, -0.0198331941, -0.0065446971, 9.93506183e-05, -0.00307164015, -0.00259636273, -0.00143546588, 0.00508675165, -0.0321647115, 0.0237510204, 0.0340144411, -0.00928717572, -0.0319334976, 0.0489407182, 0.0149134314, -0.0304434374, 0.0443420894, -0.00521520479, -0.008869702, -0.0118305515, -0.0148620494, 0.00294479239, 0.00351962098, -0.0624796972, 0.000713317364, 0.0147335967, -0.0198717285, -0.00178228982, 0.0111561716, 0.00660892343, 0.0357100256, -0.0169686843, -0.0187284946, 0.00632632617, 0.0157612227, -0.0383561626, 0.0123507874, 0.047399275, -0.00636486243, -0.0236611031, -0.000936906436, 0.00868344493, -0.00649010437, 0.0243675951, 0.0045344024, -0.00965326745, 0.0309315603, -0.00463395379, -0.0193193797, 0.00786776654, -0.0186899584, 0.0128389094, -0.000952963077, 0.0149391219, 0.0175210331, 0.0340915136, 0.00723834476, -0.00138007046, -0.0235711858, -0.00309411949, -0.0345796347, -0.00829808507, -0.00591206411, 0.00395636261, -0.00881189853, -0.0253309961, -0.0160052851, 0.0366348885, -0.0286450908, -0.00267664623, -0.0138344234, -0.0181633, 0.0229802988, -0.00570653891, -0.0264613852, -0.00554276118, 0.0208479743, -0.0199102648, 0.00199102657, 0.0170971379, 0.0243290588, -0.0191267, -0.00965326745, -0.0161722731, 0.0475791097, 0.0158126038, -0.0261916332, -0.0249327905, 0.0225692485, -0.0290818326, -0.0203084704, 0.0103597604, 0.0533338189, -0.00342328101, 0.0117470566, -0.010456101, 0.0251640063, 0.00273766159, 0.000737000955, -0.0109249549, -0.0151574919, -0.0146308336, 0.0270779617, -0.00261884206, -0.0267696735, 0.0121709527, 0.0296213366, 0.0269238167, -0.037045937, 0.00327555975, -0.0118562421, -0.00134394295, 0.00820816774, 0.0225435589, -0.00329482788, -0.0382020175, -0.0391525738, -0.0296470281, -0.0302892942, 0.0316509, 0.010860729, 0.0254851393, -0.0280028246, -0.0201800168, 0.0443420894, -0.00878620706, -0.0282083508, -0.0307774171, -0.0197946578, 0.00963399932, 0.00883758906, 0.00569369365, 0.0551321656, -0.0040655476, 0.00152859453, 0.0132050021, 0.0177137144, 0.000502573617, 0.0131664658, 0.00274087279, -0.0545155928, 0.00316958572, -0.00963399932, -0.0255879015, 0.0100707402, 0.0118305515, 0.00952481385, 0.0320362598, 0.0109570688, -0.000346021145, -9.10714e-05, -0.0225564037, -0.0119268913, 0.00582214678, 0.0242391415, 0.0153244818, -0.0378680415, 0.0296213366, 0.00363844051, -0.00140656391, -0.000735395297, -0.015041884, 0.00705851, -0.0194349885, 0.0435456783, 0.0110212956, -0.0228133108, 0.0107515436, -0.0130315898, 0.0204240791, -0.021297561, 0.0117599014, 0.00724476762, 0.0293901209, -0.00781638455, -0.00703281956, -0.0130765485, 0.0212076437, -0.00570011651, -0.0273605585, -0.0298782438, 0.0160566662, 0.0222994965, 0.00598271377, -0.0064515681, -0.0319334976, -0.014772132, -0.00398526434, -0.0140784839, -0.00778427161, -0.0430575535, 0.00193161692, 0.00355815701, -0.0155428527, 0.0103083793, 0.00676949043, -0.0105845537, -0.016069511, -0.0131407753, 0.00763012748, -0.010404719, -0.00349714188, -0.0119268913, -0.0246373471, -0.00379579584, -0.000392786169, -0.0120168086, 0.0108414609, 0.0277459174, -0.00988448318, -0.0107836565, -0.0190239381, 0.0328069776, -0.0317279696, 0.000742219388, -0.00385359977, 0.0168659221, 0.00697501563, 0.0083237756, -0.0271293428, -0.0233785044, -0.0659736246, -0.00538219418, 0.0403343439, 0.00803475548, 0.0217728391, -0.00756590068, -0.00554276118, -0.0280798972, -0.00359027041, 0.000124639861, -0.00499362312, -0.0133077642, -0.0111112129, 0.0042261146, 0.0333721749, 0.00185454485, 0.0208736658, -0.0276174657, -0.011027718, 0.0155685432, -0.00593454344, -0.0160952024, 0.0185101237, -0.00241010543, -0.00708420062, -0.00289983372, -0.0084586516, -0.0295699555, -0.0132178469, -0.0021981576, 0.0205396861, 0.0118562421, 0.00249841716, 0.0407197028, -0.0325500742, -0.0199744925, 0.0061400691, -0.0171099827, 0.00537577178, -0.0217471477, -0.00992301945, -0.0101799257, 0.0041297744, 0.00869629, 0.00980741158, 0.00715485029, -0.023506958, 0.00148845289, 0.0021162685, 0.0129737854, -0.00257227779, -0.0168402307, 0.0400003642, -0.00388250174, 0.0107001616, 0.00286129792, -0.0191909261, -0.0368147232, 0.0302122217, 0.00680160336, 0.033166647, -0.0182532165, -0.0233656596, 0.025664974, -0.011702098, 0.0336804613, -0.0101221222, -0.0154400896, -0.0109634912, 0.0194992144, -0.00673737703, 0.032832671, 0.0311884675, -0.0380478762, 0.000844580587, -0.0235711858, 0.0262687057, 0.0151318014, 0.0414647348, -0.0122416019, -0.00452797953, 0.0447274484, -0.00278101442, -0.0169815291, -0.0100771636, -0.0217471477, -0.0122608701, -0.00424859393, 0.035478808, -0.00194927922, 0.011702098, 0.0289790705, -0.0116121806, 0.0109570688, -0.0280028246, 0.0481186137, 0.0137830414, 0.0126654981, -0.0270522702, -0.00552670425, -0.00121629238, 0.0594995804, 0.0191523898, 0.0100900084, -0.0234941132, -0.0342199653, -0.0110662542, -0.0189468656, -0.0232885871, -0.000279385975, -0.000461227726, 0.0322674736, -0.0216700751, -0.0172898173, -0.0243290588, 0.0131536201, 0.0532310568, 0.0231216, 0.0457293838, -0.0286707822, 0.0219526738, -0.00142663473, 0.0115800668, 0.0183302891, 0.0114708822, -0.0309572518, 0.0039948984, 0.0229417644, 0.0233785044, 0.0256906655, -0.0296727177, -0.00278583146, 0.00393709447, -0.0272577964, 0.0164163355, 0.0383561626, 0.0340658203, 0.00910734106, -0.0604244433, 0.00329482788, 0.00380864111, 0.0129352501, 0.00531154498, -0.0147464415, -0.0109570688, 0.0217086114, -0.0165447891, -0.0112717794, 0.0128067965, 0.0171099827, 0.00761085935, -0.00636165077, -0.00614970271, -0.0296213366, 0.00591206411, -0.00580287911, 0.00339759048, -0.00555239478, 0.0219012927, 0.0141298659, 0.00999366865, 0.0197818112, 0.0161979645, 0.00907522719, 0.00694932509, -0.039948985, -0.0429547913, 0.00768793141, 0.0210920367, -0.00210824027, 0.0136288982, 0.00236514676, 0.0510473512, 0.0160309747, 0.0238923188, -0.014232628, -0.0169173032, 0.0208222847, 0.000230413149, -0.00368982181, -0.0248171818, 0.004030223, 0.00480415439, -0.0227619298, 0.00288056582, 0.0124728177, -0.0290818326, 0.010134967, -0.0088568572, 0.0383047797, -0.0268724356, -0.0255879015, -0.0262301695, 0.0189854018, 0.00682087149, -0.0102762664, -0.0437255129, -0.00610153284, -0.0176494867, 0.016120892, -0.00693647936, -0.0182660632, 0.0184202064, 0.00360953831, -0.013641743, -0.023455577, -0.00727688102, 0.0245731212, -0.0248171818, 0.0117085204, 0.00121308106, 0.0087219812, 6.04132038e-05, 0.0173283536, 0.0137573509, 0.00743744755, -0.00421969173, -0.00817605387, 0.0292102862, 0.00882474333, -0.0155428527, -0.0298525523, -0.0247015748, -0.00486195832, 0.028901998, -0.0156327691, -0.00147319911, 0.0183688253, 0.00514134439, -0.00205685897, 0.0326528363, -0.0146822147, -0.00922937132, 0.0067566447, -0.0416702591, 0.004165099, 0.0115864901, -0.0136674335, -0.0262558591, -0.0242519882, 0.00583178084, 0.0317793526, 0.00802833308, -0.0315224454, -0.0171099827, 0.0130251674, -0.0377395861, -0.0591912903, -0.00817605387, 0.00868344493, 0.000348630361, 0.00518309185, -0.00951839145, -0.0524346456, 0.0105203269, -0.0389984287, -0.000439551222, -0.0213232525, -0.00349071901, -0.00986521505, 0.00261081383, 0.00695574749, -0.0416188762, -0.0158768315, -0.00863206387, -0.0211947989, -0.0119975405, -0.00864490867, -0.00148122734, 0.0158382952, -0.0133077642, 0.00806044601, 0.0134362178, 0.0396150053, -0.0499169603, 0.00143948011, -0.0255108308, -0.00666030496, 0.00782280788, 0.0217856839, 0.00617218204, 0.0213232525, 0.0338346064, -0.00706493296, 0.0178293213, -0.0589343868, -0.0164677165, -0.0247914921, 0.00791272521, -0.00306361169, 0.0102056162, -0.00933855679, 0.0138344234, 0.00412014034, 0.0125884255, -0.0165319424, -0.0266926, -0.0214260146, 0.0306746531, -0.0157355331, 0.00544642098, -0.0225050226, -0.00970464852, 0.0375597514, 0.0537448712, 0.0312912315, -0.00973033905, 0.0206039138, -0.0358641669, -0.0226591658, -0.0232885871, -0.0197304301, 0.023995081, -0.00222545397, -0.0112782018, -0.0101413904, 0.00918441266, -0.0321390219, 0.0119333137, 0.0257163551, -0.0215544682, 0.00730257155, -0.00622035237, -0.00485232426, 0.0267953631, -0.0226720124, 0.0191267, 0.0375340618, 0.0127554154, -0.0295956451, 0.0149134314, -0.00965969, -0.000911215786, -0.0108414609, 0.0203598514, 0.0167374685, -0.0153373266, -0.00134073163, -0.00848434214, 0.00820174441, -0.00756590068, 0.00134153443, 0.0122351795, 0.00992301945, -0.00629742444, -0.00266861776, -0.0312912315, 0.0345796347, -0.00200226624, 0.0261402521, -0.00359348184, -0.0355815701, 0.00466606719, -0.00321615022, -0.00729614869, 0.0133206099, -0.0133591462, 0.00664103683, 0.00334299775, -0.00710346876, 0.00732183969, -0.0116442936, 0.0063520167, 0.011027718, 0.0133206099, 0.0242519882, -0.0127040334, -0.00373478048, 0.00696217036, 0.0126269618, -0.0291075241, 0.00295603205, -0.010757966, -0.00330767315, 0.0106680486, 0.0189083293, 0.0230059903, 0.0239437, -0.00310375355, 0.0204112325, -0.0102377301, -0.0109313782, -0.0312398486, -0.0235711858, -0.0188441034, 0.0179834645, -0.0083880024, 0.0322674736, -0.0349906869, -0.0218627565, -0.0204497688, -0.00411692914, 0.00377973914, -0.00606299704, -0.0085871052, 0.0067566447, 0.0127040334, -0.0310086329, -0.00585426, -0.00917156693, 0.0127554154, 0.0242262967, -0.0046050516, 0.000269149867, 0.00914587639, 0.0235968754, 0.0680802613, -0.0477846377, 0.00613685744, -7.80253613e-05, -0.00300580775, 0.0266155284, 0.00150290388, 0.0119012007, 0.0374826789, -0.00766224088, 0.00361274974, -0.000905595953, -0.00656717643, 0.0260117985, 0.0212718714, 0.0186899584, 0.0227490831, 0.00189950352, -0.00576755404, -0.0211819541, -0.00192519417, 0.0380735658, -0.00611116691, -0.00710989162, -0.0256392844, -0.0148492046, -0.00219655177, -0.0245474298, 0.0336033888, 0.0187413394, 0.0135518257, 0.0086641768, 0.00461468566, -0.0146179879, -0.0106102442, 0.0278486814, 0.0319078043, 0.0461147428, -0.00255301, -9.22756517e-05, -0.0296470281, -0.00108462782, 0.0162108094, 0.00962115359, -0.00620429544, 0.0088761244, -0.00940920599, 0.00298493402, -0.0196662042, 0.00455045886, -0.00632953737, -0.00523126172, 0.00996155571, -0.008734826, -0.0064451457, -0.0188569482, 0.0132563831, -0.0249713268, 0.0158382952, -0.00702639669, -0.00967253558, -0.0187284946, 0.00170040084, -0.0044733868, 0.00987163838, 0.00642908877, -0.00579003338, -0.00524089579, 0.0212847162, -0.00145714241, -0.0013856903, -0.00645477977, 0.0503793955, 0.0185615048, -0.0222481154, 0.0158126038, -0.0103083793, -0.0276431553, -0.0106937392, 0.00978814345, 0.00360953831, 0.0135004446, -0.00988448318, -0.00522162765, 0.00777784875, 0.0249199457, -0.00680160336, -0.00701997429, -0.0043288772, 0.0199231114, -0.021567313, -0.0113231605, -0.0088054752, -0.0123572098, -0.0133077642, 0.0151061108, -0.0251511615, 0.00176302192, -0.00483305613, 0.0180990733, -0.00944131892, 0.0143739274, 0.0379451104, 0.00718054082, -0.00813751854, -0.0265384577, -0.00371551234, -0.000973033952, 0.0161080472, 0.0190110914, 0.0081889, -0.0103790285, 0.00863206387, -0.00183206552, -0.00385038834, -0.00639697537, 0.0114259236, -0.031548135, -0.00903669093, -0.0149391219, 0.0111240577, 0.00190592615, -0.00107900798, 0.00431282027, -0.00837515667, -0.0020456193, 0.0133077642, -0.0121195707, 0.0156713054, -0.00449586613, -0.0282597318, -0.0252667684, -0.00715485029, -0.00745671568, -0.00254658726, 0.0145152258, -0.0215159319, 0.0255236756, 0.0109056877, 0.00678233569, -0.00162654021, 0.00163296284, -0.00727688102, 0.00841369294, -0.0211177263, -0.00982025638, 0.0215544682, 0.0165447891, 0.0135775162, 0.00261402526, -0.0147592872, -0.0136032067, -0.00910091773, -0.0233785044, 0.00649973843, 0.0101735033, 0.0126076937, -0.00461147446, 0.00489086052, -0.0457807668, -0.0170329101, -0.00160406088, 0.0243804418, 0.0279000625, -0.0208479743, -0.00970464852, 0.0042357482, -0.0410793722, -0.0414647348, -0.00965969, 0.0321647115, -0.0005676031, -0.0115222633, 0.0212204885, -0.0064772591, -0.0189982466, 0.00782923, -0.00041626906, -0.00901742373, 0.031111395, -0.000469657476, 0.00999366865, -0.0148748951, 0.012158107, -0.0019476735, 0.0128132189, -0.00382148637, 0.00905595906, -0.00854214653, 0.0131471977, -0.0237124842, 0.0323445462, 0.0290561412, 0.00171485194, 0.00731541682, 0.0436484404, 0.0205268413, -0.0204754602, -0.0219012927, 0.0160181299, -0.0010838249, 0.00512207625, -0.0188954845, -0.014450999, 0.00951196905, 0.00969822612, 0.0164291803, -0.0039948984, 0.0332951024, 0.0114195, 0.00777142635, -0.0184844341, 0.00499683432, -0.00138247886, 0.00670526363, -0.00329482788, -0.023506958, 0.0175467245, 0.0246245023, 0.0271550324, 0.0250098631, 0.00848434214, -0.0066153463, -0.0063520167, -0.0200515632, -0.0131150847, 0.00475277286, -0.00838157907, -0.0183559805, -0.0112460889, -0.0137059698, -0.0103276474, -0.0124407047, 0.00694932509, -0.0401031263, 0.0222609621, 0.0195249058, -0.0187284946, 0.000422691723, 0.00397241907, 0.00253695319, -0.0105074821, -0.00383754307, 0.016069511, 0.0193836074, -0.000330767303, -0.00566800311, 0.00361274974, 0.0149005856, -0.0147849778, -0.0173155088, -0.0064515681, -0.00465001026, -0.0146693699, 0.00382469781, 0.00050779205, 0.00384075451, 0.00276014092, 0.0128196422, -0.035478808, 0.00124920858, 0.0194992144, -0.0241492242, 0.0302636027, -0.0148877399, -0.0516382381, -0.0312655382, -0.0114259236, -0.0304434374, -0.0141298659, 0.00478488626, 0.00711631402, 0.0239051636, 0.00493903039, -0.00611437811, -0.00503858179, 0.0023201881, 0.0148877399, 0.0244960487, -0.00468854653, 0.0043609906, 0.0147592872, -0.00104288047, -0.00805402361, -0.036711961, -0.0370202474, -0.0066217687, 0.014772132, 0.0156070786, -0.0141041754, -0.00976245292, 0.00136481656, -0.00666030496, 0.00328358822, 0.00567763718, 0.0261402521, -0.0212461799, -0.0141170202, 0.0199873373, -0.0181761459, -0.0273862481, 0.0192679986, 0.00850361, 0.00310054212, 0.00670526363, 0.00730257155, -0.0151574919, 0.0272577964, 0.0150033487, -0.0242776778, -0.033860296, -0.0194478333, -0.00500967959, 0.0373799168, 0.0194992144, 0.0238024015, 0.00404306827, -0.0170329101, 0.00902384613, 0.027283486, -0.0166475512, -0.0172898173, 0.0084586516, -0.00278422586, 0.0181761459, -0.00660250103, 0.000602526357, 0.013911495, -0.0133848367, 0.0238923188, 0.0216058493, 0.0128003741, 0.0197689664, 0.0335006267, 0.0261274055, -0.0243547503, 0.00329803908, 0.0189597104, 0.0175852608, -0.00566158025, -0.00817605387, 0.0120296534, -0.0135389809, -0.00870913547, 0.0338859856, 0.00234909, 0.00454724766, -0.00164901954, 0.000706894731, -0.00549137965, -0.0131086614, 0.013911495, 0.00279386, -0.0293901209, -0.0148363588, -0.0384589247, -0.0113745416, 0.00582535844, 0.0204112325, 0.0172255915, -0.0196148232, -0.0199359562, 0.0200644098, 0.012832487, 0.00235711853, -0.0107900789, 0.00676949043, 0.00438989233, -0.0024213451, 0.0243675951, 0.00141780358, 0.0130123217, -0.0125241987, -0.00960830878, 0.0143097006, 0.0231472887, -0.0250740889, -0.0261659417, -0.0100129368, -0.00809898227, 0.00431282027, 0.0107643884, -0.00591206411, 0.0253181495, -0.0157740675, 0.0170329101, -0.0134619083, 0.00874767173, 0.00736037549, -0.000818488537, 0.0351705216, -0.00947343279, 0.0201157909, 0.028953379, -0.0134747541, 0.00519914832, -0.0134747541, -0.0143739274, 0.0127040334, 0.00778427161, 0.00814394094, 0.0190367829, 0.0183174442, 0.00975603, 0.0225050226, -0.00710346876, 0.0144381532, -0.0347851589, 0.0206809845, 0.00536613772, -0.00906238239, 0.0187798757, 0.00470460299, -0.0167503133, 0.0024550641, 0.0225178674, 0.00802833308, 0.00879263, -0.00721907662, -0.00244221883, 0.0222352706, -0.0151703376, -0.066641584, -0.0111754397, 0.00738606602, -0.0196405128, -0.0242262967, -0.0061432803, 0.00960830878, -0.0162621904, 0.0179963112, -0.00797052868, 0.0139371855, -0.0209635831, 0.0347594693, 0.0379451104, 0.0155171612, -0.00158318726, 0.0163135715, 0.0212461799, -0.000443966797, -0.0299553145, 0.00752094202, -0.0104111424, 0.00351640978, -0.0120874578, 0.0281569678, -0.00701997429, -0.00739248889, -0.00807971414, 0.0144124627, -0.0166218597, -0.0193193797, 0.0159410574, -0.0223894138, -0.00582535844, 0.00096661126, 0.00794483814, 0.00674379943, 0.0151960282, 0.0391782634, -0.0103404922, -0.017469652, -0.000621794374, 0.0236739479, -0.0129802087, -0.00585747138, -0.00334299775, -0.00691721169, -0.00555560645, 0.00644193403, -0.0173411984, -0.0121709527, -0.0217856839, 0.00407197047, 0.0160952024, 0.0110212956, 0.0113745416, -0.0118690869, 0.000183848824, -0.000753057597, 0.0247272644, 0.00640339823, 0.0460119806, -0.0143739274, 0.00596665684, -0.042595122, 0.0110341404, -0.00630705804, -0.0137573509, -0.0183559805, 0.00552670425, 0.00329482788, 0.0041297744, -0.00235711853, -0.0239437, 0.00334299775, 0.00793841574, 0.0284652561, -0.00551064778, -0.00521199359, 0.0128260646, -0.00985237, 0.0181889907, 0.0227105487, -0.0129352501, 0.0352732837, -0.00901742373, -0.00466927839, -0.00451513426, 0.00122753205, 0.000497355242, 0.0110726766, -0.0104175648, 0.0134105273, 0.00666672736, 0.0167374685, -0.0147079052, -0.0206938311, 0.00492618512, 0.0085293008, -0.00601161551, 0.00360632711, 0.0124085909, 0.00222545397, 0.0179963112, -0.00992301945, -0.00956977252, 0.0136802793, 0.00564552378, -0.00676306756, 0.00576113164, -0.00389213581, 0.00367697631, 0.0011512629, -0.00260760239, -0.0144381532, -0.0063520167, 0.00796410628, -0.0137059698, 0.00294960942, 0.00160245528, 0.00184009387, 0.0187156498, -0.000304875924, -0.032627143, -0.004299975, 0.0153758628, 0.00733468495, -0.00117133372, 0.00948627759, 0.0132050021, 0.0013535769, 0.00477204099, -0.00373156904, 0.0172127448, -0.00380221847, 0.0216957666, 0.000187762635, 0.00588958478, 0.00452155713, -0.00742460229, -0.0157869142, 0.00392424921, 0.0149391219, 0.00892108306, 0.00333015248, 0.0146179879, -0.00388250174, -0.00535008078, 0.00664103683, 0.00407197047, -0.00367697631, 0.00122753205, -0.00357100251, 0.0146436794, -0.000513010484, -0.0100900084, 0.000395194686, 0.0100065144, 0.000445572456, -5.82555913e-05, -0.000587674, -0.00472708233, -0.00944774225, -0.0168016944, 0.0149134314, 0.0106616262, -0.0133848367, -0.0087412484, -0.00816320907, -0.0100129368, 0.00104448607, -0.00492939632, -0.015311636, -0.0304177478, 0.0119911181, -0.0236482564, -0.00449265493, -0.00479773153, -0.00559093105, -0.0104689458, 0.0162878819, 0.0176366419, -0.00748240622, -0.0041297744, 0.00534044718, 0.0165576339, -0.0112203984, 0.0152859455, 0.0184587426, -0.0263843127, 0.0198717285, 0.000553955, 0.0136674335, 0.00993586425, -0.00207773247, -0.00739248889, 0.00771362195, -0.0121388389, -0.0141940927, -0.00757232355, -0.0137958871, -0.000648287882, -0.000549137942, 0.0147335967, 0.019409297, -0.0120296534, -0.0187413394, 0.00371230114, -0.0109699136, -0.00319848768, -0.0214260146, 0.00875409413, -0.000173010572, 0.00716127269, 0.033320792, 0.00858068187, 0.00669241836, 0.0186899584, -0.0225692485, 0.00268788589, -0.0121067259, -0.00749525148, -0.00295121502, -0.0132949194, 0.014450999, 0.00444448506, 0.00806686841, 0.023506958, 0.00702639669, 0.00876051653, 0.00515418965, -0.00181119191, -0.0109763369, -0.0266155284, 0.0167374685, -0.0114130778, -0.01989742, 0.00997440051, -0.00535008078, 0.00848434214, 0.0087219812, -1.93056312e-05, 0.00705208769, -0.00823385827, 0.00626209937, 0.032832671, 0.00703924196, 0.0129609406, 0.0205910672, -0.0020986062, -0.0146822147, -0.00596023444, 0.00296245469, -0.00483305613, 0.0140271029, -0.00259796856, 0.0211177263, 0.00493581919, 0.00164099119, 0.000971428293, -0.00342970388, 0.00650294963, 0.00995513238, -0.0123700555, -0.00274247839, 0.00834304374, -0.0129031362, 0.000335985736, -0.0066538821, 0.00321133318, -0.00856783707, 0.0118947774, 0.0170971379, -0.0178935472, 0.00389534701, 0.0044284286, 0.00481378846, -0.0227876194, -0.00355173438, 0.0109699136, -0.00747598335, -0.00398526434, -0.00975603, -0.00140656391, 0.010083586, -0.00574507471, -0.0020841551, 0.0109249549, -0.0186385773, -0.000217768524, -0.0164934061, 0.0155171612, -0.0312912315, -0.0337832235, -0.00777142635, -0.0105652856, 0.0192423072, -0.00771362195, 0.0203983877, -0.022916073, -0.00336547708, 0.00255461549, -0.036557816, 0.00449586613, -0.00435777893, -0.0109249549, 0.00102602097, 0.00608547637, 0.00167149887, 0.0311884675, -0.00164099119, 0.000253896025, -1.17163481e-05, 0.0156456158, 0.0102891112, -0.00465643313, 0.0063166921, 0.00723192235, 0.00425180513, -0.0190367829, -0.0149519667, -0.00187220715, -0.00493260752, -0.0224022605, -0.00127409643, -0.0113616968, 0.0130058993, 0.0188826378, 0.00856141374, 0.0105460184, -0.0122351795, -0.0133206099, -0.0106038218, 0.00523768412, -0.0041972124, 0.00992944185, 0.0182660632, -0.0066474597, -0.0219783634, -0.0295442641, -0.026898127, -0.0024390074, 0.0191909261, 0.0104946364, 0.00215962157, 0.00622035237, 0.00571938418, -0.0231729802, 0.0189211741, 0.0170714464, 0.0367376506, -0.00579645624, -0.0233399682, 0.0105331726, -0.000657119032, -0.0359155498, -0.00239565456, 0.016660396, 0.00272481609, 0.00469818, -0.0106423581, 0.010809347, -0.014232628, -0.0118241282, 0.00974960718, -0.0116571393, 0.0258319639, 0.0137316603, 0.0110726766, 0.0042293258, 0.0230188351, 0.0228518471, -0.00471423706, -0.00205204193, -0.00635843957, 0.0286194012, -0.00430639787, -0.00763012748, 0.0155685432, -0.0137445061, 0.00418436714, 0.00451834546, 0.0111433258, 0.0199102648, -0.00511244219, 0.0101285446, 0.0242134519, 0.015530007, -0.0127040334, -0.00189789792, -0.00363844051, -0.000871876953, 0.00997440051, -0.0091523, -0.00719980896, -0.00489407172, -0.00156231353, -0.0155171612, -0.0192294624, 0.00897888746, -0.00395315094, 0.0328583606, 0.00490691699, 0.004569727, -0.0168916117, 0.00111914962, -1.88665817e-05, 0.00156552484, 0.00373478048, -0.0155685432, 0.000669964356, -0.0131407753, -0.00960188638, -0.0138986502, 0.0231986698, 0.0042357482, -0.0209122021, 0.00165704789, 0.0178807024, 0.00711631402, -0.00178550126, -0.0207066759, 0.00395957381, 0.0116507169, 0.00041626906, 0.0065446971, -0.00781638455, 0.000948146102, 0.00538219418, 0.00974960718, -0.0207965933, 0.0119140455, 0.00920368079, -0.00174696522, -0.00567442551, -0.00807329174, 0.000136983435, 0.0067887581, -0.00944131892, -0.0156070786, -0.00882474333, 0.0160566662, 0.0135646714, -0.0161722731, 0.00304273819, 0.0278486814, -0.0122737149, 0.00557487411, -0.00711631402, 0.00352925505, 0.00770077668, 0.00606299704, 0.0129352501, -0.0083237756, -0.00437704707, -0.00788703375, -0.00965969, -0.0120553449, 0.0157869142, 0.0190496277, 0.0338346064, -0.00694932509, -0.0259475708, 0.035632953, 0.00417152187, 0.0127233015, 0.00218852353, 0.00890181586, -5.13311534e-05, 0.0255493671, 0.0155428527, -0.00470139179, -0.00566800311, 0.0206681397, 0.0215030871, 0.00783565268, -0.014553762, 0.00529548852, -0.00514134439, -0.00502573652, -0.00981383398, 0.0191267, -0.00469175773, -0.00375404838, -0.00586389424, -0.00396599621, -0.0206552949, 0.00368661038, -0.00816320907, 0.00826597121, 0.00355494581, 0.00741817942, 0.00470460299, -0.036172457, 0.00377010508, 0.0134362178, 0.0155685432, 0.00878620706, -0.000120123928, 0.027874371, 0.0301094595, -0.0170586016, 0.00513813319, -0.0189083293, -0.0346567072, 0.020218553, -0.0165190976, -0.00739891129, -0.00697501563, 0.00465322146, -0.018009156, 0.000313104974, 0.01129747, 0.00716127269, 0.0120168086, -0.00500004552, 0.022376569, -0.00502894772, -0.0312912315, -0.00310375355, 0.000505383534, 0.00906238239, -0.00241331686, 0.0040591252, 0.0040270118, 0.0164291803, -0.00666672736, 0.00173090852, -0.0198460389, 0.0103404922, 0.0088568572, 0.00965326745, -0.0183431339, -0.00271197082, 0.0186257325, -0.0128067965, -0.00244864146, -0.0220682807, -0.00149888976, 0.0126269618, 0.0145152258, 0.00400132127, 0.0260246433, 0.00652221777, 0.0168916117, 0.00812467281, -0.00215962157, -0.00482663373, -0.0063102697, 0.00513813319, -0.0221581981, -0.0280542057, 0.0113103157, 0.00900457799, -0.0132435374, 0.00575149758, -0.00611437811, -0.00103083788, 0.0110919448, -0.00710346876, 0.00181761454, -0.00761085935, 0.00431603193, -0.0200515632, 0.0101799257, -0.0108671514, -0.01854866, 0.00249841716, -0.00439310353, -0.00231537106, -0.0065446971, 0.00962757692, 0.00270554819, -0.00925506186, 0.00728330342, 0.00530191092, 0.00833662, -0.00785492081, 0.014720751, 0.0121259941, 0.0023041314, -0.00824670307, 0.000807650271, 0.00064186519, -0.00263811019, -0.00848434214, -0.00820174441, -0.0150033487, -0.00731541682, -0.00296727172, -0.0160952024, 0.0166860875, -0.0163649544, 0.00959546305, -0.0103982966, 0.0106937392, 0.0265127663, 0.00360632711, -0.0160181299, 0.0105460184, 0.0146308336, 0.00918441266, 0.00317600835, 0.00798979681, -0.00104448607, -0.0330895782, 0.00777784875, -0.00554918358, 0.0203084704, -0.00475598453, -0.00924863946, -0.00208897213, 0.00115367142, 0.00777142635, 0.0083880024, -0.0296984091, -0.00710989162, 0.0205268413, 0.00561662158, 0.000809657387, -0.0216572303, -0.0130893942, 0.000786375196, 0.00598592497, 0.00115286862, 0.00413619727, -0.00694932509, -0.0134105273, -0.0156584606, 0.000619787315, -0.0160052851, -0.00573544111, -0.00537898298, 0.0357614048, 0.0145152258, 0.0314710662, -0.00158158154, -0.00345860585, 0.00348429638, -0.0021676498, -0.00951839145, 0.0106423581, 0.0126847662, -0.00743102469, 0.00701355143, -0.00448302086, -0.0305462014, -0.00158479286, -0.00473671639, 0.0250612441, 0.00716769556, 0.00579645624, 0.00249199453, -0.0142454738, -0.016660396, -0.00117534795, -0.0195505954, 0.0153758628, -0.0115543762, 0.0160952024, 0.00591848698, 0.0138986502, 0.00582856964, -0.0189597104, 0.00612401217, -0.0233785044, 0.00695574749, 0.0135004446, -0.0107515436, -0.00508354045, 0.00134635146, -0.0405141786, -0.00669241836, 0.00664103683, -0.00186417892, 0.00850361, 0.00232500513, -0.00398526434, 0.0120874578, 0.00543999812, -0.00381185231, 0.0227233935, -0.0103790285, -0.000977048068, -0.00580287911, 0.0120746121, -0.0105781313, 0.00806686841, -0.0137188155, 0.0244318228, 0.016069511, 0.0045986292, -0.0187028032, 0.0303920563, 0.00984594692, -0.0192294624, -0.0165447891, -0.00927433, 0.00549137965, -0.0243419055, 0.0172512811, 0.000555159233, 0.0148363588, -0.0156969968, 0.00377331651, 0.00160486368, 0.0115158409, 0.00180798059, -0.00592169818, -0.00448302086, 0.0184715874, 0.0253181495, 0.00365449698, -0.030571891, -0.0126205394, -0.00729614869, -0.0101413904, -0.00462110853, -0.026743982, -0.00563588971, -0.00308287982, 0.0180862285, -0.0045344024, 0.0184844341, 0.0264870748, 0.0230059903, 0.0334749371, 0.0023025258, -0.00836231187, 0.0121131483, -0.0303663667, -0.008869702, 0.0022511445, 0.0251768511, -0.0319078043, 0.000303872395, 0.0142454738, -0.0201800168, -0.0206167586, 0.0354274288, 0.00283400156, -0.00146918488, -0.00346181705, 0.0202442445, 0.0158639848, 0.00994871, -0.0244575124, -1.65458914e-05, -0.0133206099, 0.00725761289, 0.00869629, -0.0313683, -0.00393709447, 0.0202313978, -0.00989732891, -0.00779069401, -0.00235872413, -0.00307806279, -0.00270073116, 0.00138890161, -0.0162621904, 0.00319045945, 0.0169686843, 0.00650616083, -0.0106359357, -0.0116635617, -0.0105139045, 0.0149134314, 0.0173925795, -0.0115351081, 0.019409297, 0.00042469881, -0.028953379, -0.0110084498, 0.0120617673, -0.00658965576, 0.0100386273, -0.0137188155, -0.0192294624, 0.0229546092, -0.0188569482, -0.00502252486, -0.00305558345, 0.00798979681, 0.00125563121, 0.0263586231, 0.0149648124, 0.000262125075, 0.0193450712, 0.0369945578, -0.00994228758, 0.0405655615, -0.0127939507, -0.0220297445, 0.004030223, 0.00489086052, 0.0303406753, 0.0114195, -0.0176366419, 0.00481378846, -0.0140399486, -0.0106873168, -0.00955050439, 0.00334620918, -0.0152987912, 0.00177747291, 0.00151494634, 0.0151318014, -0.0115800668, -0.00272160489, 0.0264613852, -0.00757874595, -0.0206809845, 0.00311338739, 0.00501931366, 0.0237381738, -0.00229610316, -0.00430639787, 0.0267182924, -0.00316798012, 0.0012861389, 0.0342456549, 0.00199423777, 0.00616254844, 0.00833662, 0.020488305, 0.00503537, -0.0211305711, -0.0132949194, 0.0184330512, 0.0121837975, -0.00085742597, 0.0237638652, -0.0217599925, 0.000201711868, 0.0144766895, -0.00189950352, -0.00294639822, -0.0175595693, 0.00813751854, 0.00981383398, -0.0211691074, 0.00369303301, -0.0183816701, -0.00730899395, -0.024046462, 0.0133976815, -0.000104769744, 0.00109506457, -0.00646441337, -0.00793199241, 0.0178935472, 0.0266412199, -0.00588958478, -0.00733468495, -0.0113103157, -0.00598913617, 0.0164420251, 0.00386002241, 0.00265898393, -0.00150932651, -0.00172930292, -0.0125563126, -0.00929359812, -0.0167374685, 0.00314068375, 0.0107001616, -0.0043320884, -0.0224151053, -0.0155171612, 0.00336226588, -0.00916514453, -0.00411692914, -0.00694290223, 0.0121324165, -0.0134490635, -0.0134875989, -0.0189340208, -0.00933213439, 0.0103726061, 0.00109024765, -0.0179963112, -0.0114901494, 0.00481378846, 0.00596665684, 0.014553762, 0.0108478833, 0.0101799257, 0.00382469781, 0.000661534606, -0.0100129368, 0.00063303404, -0.009011, 0.00224793307, -0.0215801578, 0.0150290392, 0.0103276474, -0.00314710638, 0.0119654275, 0.00970464852, -0.00270394259, 0.0245088935, -0.00127489923, 0.00510923099, -0.0107836565, 0.0164677165, -0.00809256, -0.0128389094, -0.032627143, 0.00287735439, -0.0130444355, -0.008330198, 0.0109763369, 0.026743982, -0.00466606719, -0.000480094313, 0.0174054261, 0.00773289, 0.00910091773, 0.00376689364, 0.000470058876, -0.00193643384, -0.00653506303, -0.00400132127, -0.000490129692, -0.00736037549, 0.0113552744, 0.0137958871, -0.0321647115, 0.00246630376, 0.0046050516, -0.00685298489, 0.00219012913, 0.0160309747, 0.00888254773, 0.00286772056, -0.030571891, 0.00742460229, 0.0253309961, -0.00272963312, -0.0168659221, -0.00300741335, -0.0340401307, -0.0152345644, 0.00378616177, -0.00935140159, 0.0240336172, -0.0192423072, 0.0212718714, -0.00523768412, 0.00534686958, -0.0138858045, 0.00491334, 0.0023506959, 0.0124342814, 0.00452476833, -0.00467891246, 0.0019958436, 0.00985237, -0.0063809189, 0.00260117976, 0.00856783707, 0.00705851, 0.00295442645, -0.00209539477, -0.00603088364, 0.00102923228, 0.00241171126, 0.0260888711, -0.0574443266, -0.0145409163, 0.00952481385, 6.97963187e-05, -0.0178807024, -0.00146356504, -0.0083944248, 0.00900457799, 0.0137059698, 0.00771362195, -0.00935782492, 0.00604694, 0.00686583, 0.00770719955, -0.0235583391, -0.00610474404, 0.0179449301, -0.0197689664, -0.0100257816, 0.0189211741, -0.0169815291, 0.00303470972, -0.00289180549, -0.00341364718, -0.00135759113, -0.00405591354, 0.00607584231, 0.0111690164, -0.00370587851, -0.0184844341, -0.0178678576, 0.0309572518, -0.00533723552, 0.0250997804, 0.0179320835, -0.0143225454, -0.00747598335, -0.0262943953, 0.00458899513, -0.0138986502, 0.00676949043, -0.0221581981, -0.00181119191, 0.00536934892, 0.00663461443, -0.008869702, 0.00315031782, -0.0217086114, 0.000713718764, -0.00840727054, -0.004434851, 0.0119012007, -0.00680802623, -0.00395957381, -0.0233528148, 0.0129095595, -0.00215641013, 0.0248942543, 0.00673095416, 0.00456330413, -0.0195505954, -0.0172255915, 0.0118498188, 0.0155685432, 0.011567222, 0.0179320835, -0.00471744826, 0.0142197832, 0.0149648124, 0.0317279696, -0.00807971414, -0.0138601139, -0.0253823772, -0.00963399932, 0.00963399932, 0.0277202278, -0.0255750567, -0.00379258441, -0.00118899613, 0.000493341067, 0.00596665684, 0.00350035308, -0.00816963147, 0.033166647, 0.000539102533, 0.00645799097, 0.0156327691, -0.00794483814, -0.00859995, -0.00981383398, -0.01062309, 0.026898127, -0.00680160336, -0.0020986062, 0.0215287767, -0.00521841645, -0.0119782723, 0.00248717749, 0.022106817, 0.0108735738, -0.0205268413, 0.00349393045, 0.0145794526, 0.00365770841, 0.0120874578, -0.00284684682, -0.00523447292, 0.000740613672, 0.0281826593, -0.00467248959, 0.014990503, 0.0132692289, 0.0130765485, -0.0041586766, -0.0222224258, 0.0266926, -0.0111882845, -0.00124680006, -0.0103854509, 0.0296213366, 0.0012516171, -0.0214773957, 0.00192519417, -0.00455045886, -0.00741817942, -0.00255943253, 0.00728972629, -0.0150675746, 0.00616575964, 0.0116635617, -0.00388571317, 0.0141555564, 0.0131664658, -0.00898531, -0.0224921778, -0.039409481, -0.0152474092, -0.0084008472, -0.0107900789, 0.00506427232, -0.0166090149, -0.0252282321, 0.00455367053, -0.000956174452, -0.0272064134, -0.00383754307, -0.0113681192, 0.00705208769, 0.0101156989, 0.00168755557, -0.0179063939, 0.0169173032, 0.00726403529, 0.00587352831, 0.0127554154, -0.0285166372, 0.00658965576, -0.0122672925, -0.0107065849, -0.0344768725, -0.00492297346, -0.00829166174, 0.00172288017, -0.0120489215, -0.0179834645, 0.0125177763, 0.00748882862, -0.0304948185, 0.00836873427, -0.0259604175, 0.0109570688, -0.000596103724, 0.00728972629, -0.00493581919, 0.00295121502, -0.00560056511, 0.00178228982, -0.00821459, 0.00289822812, 0.0181633, 0.00768793141, -0.00814394094, -0.00835588854, -0.0246501938, 0.0342713483, -2.16890421e-05, -0.0147079052, -0.000234025894, -0.00461468566, -0.0117984377, 0.00910734106, 0.0213489421, -0.0109249549, 0.00582535844, -0.0021307196, -0.00834304374, -0.00118177058, 0.000268347037, -0.0126141161, 0.0151574919, -0.0089403512, -0.0268210545, 0.00976245292, 0.00609511044, 0.00288217142, -0.00241010543, -0.0040623364, 0.0310600139, -0.00199423777, -0.023237206, 0.0286194012, -0.0104304096, 0.00526658632, 0.0145409163, -0.00167471019, -0.0122159114, 0.0109121101, 0.0109056877, 0.0104689458, 0.00134394295, 0.0085935276, 0.00954408199, 0.021837065, 0.00739248889, 0.00273445016, 0.0154272439, -0.00104769738, 0.0158768315, -0.0347080901, -0.00563267851, -0.013641743, -0.0407710858, 0.00298653985, -0.015041884, 0.00703924196, -0.0214003231, -0.0187413394, 0.00530512212, -0.00348108518, 0.0240593068, -0.0157098416, 0.0132563831, -0.00685298489, -0.0250997804, 0.00462431973, -0.0123379417, 0.00951196905, 0.0210663453, 0.0124407047, 0.00733468495, 0.00297690579, 0.00490691699, -0.018869793, 0.00908165, 0.00267664623, -0.0274890121, -0.0249199457, -0.00162172318, -0.00636486243, 0.0178678576, 0.0113616968, 0.00806686841, -0.0179320835, -0.0179577749, 0.0111947069, -0.0385103077, -0.00510602, -0.0114901494, -0.00870271306, 0.00962757692, -0.00929359812, 0.0115286857, -0.0244061314, -0.00748882862, 0.0115479538, -0.0248300284, -0.00996797811, -0.00524731819, -0.0022832579, 0.00539503945, -0.0260760244, -0.00782280788, -0.0125241987, 0.000544722367, -0.0255879015, 0.0184202064, 0.00795768388, -0.0164677165, 0.00908807293, -0.0119397361, 0.00773289, -0.0123250969, 0.0133206099, 0.00782280788, -0.00170842919, -0.0179320835, -0.00284684682, 0.0165447891, -0.01450238, -0.00308287982, 0.0129031362, -0.0241492242, 0.00775858061, -0.0151574919, -0.0217086114, 0.016069511, -0.00792557, -0.00535650365, -0.0125434669, 0.00109185325, -0.0299553145, 0.0239822362, 0.000111393114, 0.00288377702, 0.0132178469, -0.00590564171, -0.0157098416, -0.00600198144, 0.00181922026, 0.0183046, 0.00974318478, 0.00195570197, 0.00333978655, -0.00933855679, 0.00857425947, -0.00556845171, 0.00336226588, -0.00179995224, 0.00606941944, -0.00260920823, -0.0149262762, 0.0163649544, 0.0112268208, 0.00710989162, -0.00444127386, 0.00355815701, 0.0189597104, -0.0128581775, 0.00836231187, 0.011618603, 0.00188344682, -0.00328519382, -0.0181633, -0.0161722731, 0.00374762574, -0.000967414118, 0.0111369034, 0.0282597318, 0.0268724356, 0.0091523, -0.0249199457, -0.0203213152, -0.00590564171, 0.00340722455, 0.0155685432, 0.00181119191, 0.0023025258, 0.00481378846, -0.00170040084, -0.00733468495, 0.0265384577, -0.00475598453, -0.0239308551, -0.0117599014, 0.0254080668, 0.00305558345, 0.016069511, 0.00444127386, -0.00940278359, 0.0062845787, -0.01428401, 0.0226591658, -0.0065511195, 0.00473029353, 0.0345796347, 0.0138087329, -0.00878620706, 0.015799759, 0.00382790901, 0.0118755102, 0.0265641473, -0.0317279696, 0.0135518257, -0.0118177058, -0.013102239, -0.00817605387, -0.00942205172, 0.0182532165, 0.00179352949, 0.00129577296, -0.0343741104, 0.00302668149, -0.0046050516, 0.00232500513, 0.00653827423, -0.0130958166, 0.00261723646, 0.00245024706, -0.00219655177, 0.0146950604, 0.00579966744, -0.0162236542, 0.0303663667, 0.00750809675, 0.00611116691, 0.00337511115, -0.0122544467, -0.0108157704, 0.00788061135, -0.0252153873, 0.0185229685, -0.00573865231, 0.0203341618, -0.0087219812, 0.0231344439, -0.0106359357, 0.00940920599, 0.0133848367, -0.010539595, 0.0144638447, -0.0182146821, 0.0232115164, -0.0122801382, 0.0153244818, -0.0114580365, -0.0131215071, -0.00633917144, -0.00040824071, 0.000785572338, 0.0199231114, 0.00988448318, -0.00657681, 0.0119012007, 0.00782280788, 0.00933213439, -0.0063520167, -0.00800906494, -0.00327234855, 0.00774573535, -0.00318082538, 0.00885043386, -0.0237381738, 0.00390498107, 0.0114516141, -0.0185871962, -0.0322674736, -0.0203213152, 0.0187541861, -0.00329161645, -0.0173026621, 0.000748240622, 0.00285326946, -0.00154143991, 0.00532439025, -0.000579244224, -0.0123379417, 0.0187413394, -0.00249520573, 0.0189597104, -0.0169173032, -0.00976887532, 0.0109634912, 0.0021339308, 0.0159667488, -0.0117149428, 0.0262687057, 0.0156199243, -0.00729614869, -0.00109586748, 0.00944131892, -0.010809347, 0.0262815505, 0.0132050021, 0.0162365, -0.0100964317, 0.00503858179, 0.0122801382, -0.022646321, 0.00202474557, -0.00682087149, 0.00830450747, -0.000437945564, -0.000959385769, 0.00483947899, 0.0169558395, 0.0174439624, -0.0112782018, 0.00244543026, -0.0131150847, -0.0151446471, -0.0173797347, -0.00487480359, -0.00497435499, -0.0172384363, -0.00975603, -0.00682087149, -0.000574025791, -0.0225949399, 0.0140014123, 0.0148106683, -0.0323702395, 0.00322738988, -0.010186349, 0.0123636322, -0.000429917214, 0.000799220521, 0.00148524158, 0.00691078883, 0.0188954845, -0.0280542057, 0.015530007, -0.00636807363, 0.0390498117, 0.0100193592, -0.0158896763, 0.000264734263, 0.0088761244, 0.0304177478, -0.00814394094, -0.0150804203, -0.00269270292, 0.0129352501, -0.0202442445, 0.0127939507, -0.00843938347, 0.0338346064, -0.0240207724, 0.0242262967, -0.00534044718, 0.0186642688, -0.00236514676, 0.0143225454, -0.0084714964, 0.0396150053, 0.00428391853, 0.0100900084, 0.0128260646, 0.0165576339, 0.00772646768, 0.0225949399, 0.00217407243, 0.0215416234, 0.00235711853, -0.0123058287, 0.0220811274, -0.0177008677, 0.0137573509, 0.00343933771, 0.0020825495, -0.0114901494, -0.00383754307, -0.00405270234, -0.0258191191, 0.00285969209, -0.00320330472, 0.0204626154, 0.00745029282, 0.0148492046, -0.0142968548, -0.0186128858, 0.00742460229, 0.0230059903, 0.0132435374, 0.000338795653, -0.023995081, 0.00721265422, 0.00371872378, -0.0127554154, -0.0312141571, 0.0239308551, -0.00545605505, -0.00581893558, -0.01585114, -0.000519433117, -0.0288249254, 0.011348851, 0.00656396477, -0.0154657802, 0.00480415439, 0.000156853552, -0.000285206508, 0.00336547708, 0.0117791696, -0.00165704789]
14 Dec, 2018
unordered_map max_bucket_count in C++ STL 14 Dec, 2018 The unordered_map::max_bucket_count is a built in function in C++ STL. It returns the maximum number of buckets unordered_map container can have. Syntax unordered_map.max_bucket_count() Parameters : It does not accept any parameter. Return Type : Returns maximum number of buckets. Return type is an unsigned integer. Example-1: // C++ program to illustrate the // unordered_map::max_bucket_count function #include <bits/stdc++.h> using namespace std; int main() { // declaration of unordered_map unordered_map<int, int> sample; cout << "Size is : " << sample.size() << endl; cout << "Max bucket count is : " << sample.max_bucket_count() << endl; // insert elements sample.insert({ 5, 10 }); sample.insert({ 10, 10 }); sample.insert({ 15, 10 }); sample.insert({ 20, 10 }); sample.insert({ 21, 10 }); cout << "Size is : " << sample.size() << endl; cout << "Max bucket count is : " << sample.max_bucket_count() << endl; return 0; } Output: Size is : 0 Max bucket count is : 1152921504606846975 Size is : 5 Max bucket count is : 1152921504606846975 Example-2: // C++ program to illustrate the // unordered_map::max_bucket_count function #include <bits/stdc++.h> using namespace std; int main() { // declaration of unordered_map unordered_map<char, int> sample; cout << "Size is : " << sample.size() << endl; cout << "Max bucket count is : " << sample.max_bucket_count() << endl; // insert elements sample.insert({ 'a', 10 }); sample.insert({ 'b', 10 }); sample.insert({ 'c', 10 }); sample.insert({ 'd', 10 }); sample.insert({ 'e', 10 }); sample.insert({ 'f', 10 }); cout << "Size is : " << sample.size() << endl; cout << "Max bucket count is : " << sample.max_bucket_count() << endl; return 0; } Output: Size is : 0 Max bucket count is : 1152921504606846975 Size is : 6 Max bucket count is : 1152921504606846975 Complexity: Its Complexity is constant. Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL
https://www.geeksforgeeks.org/unordered_map-max_bucket_count-in-c-stl?ref=asr10
PHP
unordered_map max_bucket_count in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0126364743, 0.0174366552, -0.00858032238, 0.0176406633, 0.0661944896, -0.0200887546, -0.0445696749, 0.0254649557, -0.0270490162, -0.016668627, -0.0271690208, 0.00732627511, -0.0076202862, -0.00207007769, 0.0180246774, -0.0350173153, -0.0271450188, 0.00182706863, -0.0117964428, -0.011382428, 0.00690025929, 0.00774629088, -0.0233408771, 0.0104643935, -0.0228728596, 0.00802830141, -0.024984939, -0.0212287977, 0.0146045489, 0.0234368797, -0.00028838584, 0.0169566367, -0.0283450652, -0.0201127548, 0.00196357374, 0.0250089392, 0.0153965782, 0.00999037549, -0.0116464375, -0.0141725326, -0.00564921228, 0.0136805139, 0.0159966014, 0.0113944281, 0.016464619, -0.00146405504, 0.00970236398, -0.0375614092, -0.0330252387, 0.0217208154, 0.0171126425, -0.0450736918, 0.00683425693, 0.00739827799, -0.0117544411, -0.0276730396, 8.64876201e-05, 0.026641, 0.0231128689, 0.00804630201, 0.000330012408, -0.0355933383, 0.00576321641, -0.00258759712, -0.0168126319, -0.0203287639, -0.0118264444, 0.0395294838, 0.0361933596, -0.0104523925, -0.0280570537, 0.0740187839, 0.0255129579, 0.0152885746, -0.0113644265, -0.0119224479, -0.0128644835, -0.0264969952, -0.00174306543, 0.0587542057, -0.0089763375, 0.00308411592, 0.000917284458, -0.0253449529, -0.00562821142, -0.0143525396, -0.0254169554, -0.0219728258, 0.00345312967, 0.0128284823, -0.0183846913, 0.0116944397, -0.0251049437, -0.000284260692, -0.0237488914, 0.0383294411, -0.00195307331, 0.0141605316, -0.0133565022, 0.0326652266, -0.00363013637, -0.042937614, 0.00903033931, -0.000270010147, 0.0238688961, 0.00955235865, 0.0223928411, -0.0116884392, 0.0111724194, 0.00157805928, 0.0418815725, 0.0156125864, -0.0208567828, 0.027193021, -0.0174246542, 0.0074402797, -0.00781229325, 0.0268090069, -0.0038761457, 0.0053222, -0.0415935628, 0.0314651802, -0.00738627743, -0.0240969043, -0.032713227, -0.00770428916, 0.0223208386, 0.00839431491, 0.0255609602, -0.0403695181, 0.00563121168, -0.0158285946, -0.0026776006, -0.0526099764, -0.0212287977, 0.0228008572, 0.0126364743, 0.0222368352, -0.00715226866, -0.0255849604, -0.057554163, -0.00953435805, -0.018144682, 0.00624623476, -0.0300491285, -0.0216968153, -0.0239048973, 0.0242649112, -0.0043231626, 0.0255849604, 0.00399015, -0.00395714864, 0.0400575064, 0.0222968366, 0.0154445805, -0.0203887653, 0.000724527228, -0.0184686929, 0.014052528, -0.0318972, 0.027001014, -0.0148325572, 0.0367213786, -0.00528319832, -0.0153005747, 0.0344652943, 0.0101403808, 0.00081003044, -0.0156725887, 0.0262089837, 0.0323292129, 0.0387614556, 0.0219248235, -0.0222608354, 0.0197167415, -0.0170406401, 0.0467537567, 0.0408255346, 0.0172926504, 0.028297063, 0.0023400879, -0.0122284591, 0.0432016216, 0.010176382, 0.0173646528, -0.00573321525, 0.0113644265, 0.00162006088, 0.044977691, 0.0304331426, -0.00133205007, 0.0374654084, 0.000705776503, 0.0195967369, 0.0670585185, 0.00246459269, -0.0197887439, 0.0137405163, -0.0252969507, 0.0157325901, -0.0169206355, 0.00328812352, -0.0261849836, 0.0025185945, 0.0342492871, 0.0143045373, -0.000510769198, -0.019404728, 0.0437296443, 0.0262329858, -0.0189247113, 0.027745042, -0.00995437428, 0.000893283577, -0.0363613665, 0.035329327, -0.0643704161, 0.0325452238, 0.0105183953, -0.0432976261, 0.0564501211, -0.00708026579, 0.0226208493, -0.0261129811, -0.0330012403, -0.0318972, 0.0312011726, -0.00230108644, 0.0142925372, -0.022944862, 0.0475697853, 0.0158765968, -0.0228368584, 0.00954035856, 0.0456977151, -0.0242769122, -0.0562101118, 0.00170106394, 0.00685225753, 0.019440731, 0.0111484183, 0.0911074206, -0.0124324672, -0.0205207709, 0.012588473, 0.0173646528, -0.022212835, -0.0409695394, -0.00837031472, -0.00811230484, 0.0109384106, -0.00733827567, 0.0415935628, 0.00576621667, 0.00296561141, 0.0387374535, -0.0306491517, -0.0335772596, 0.0197047405, -0.0366253741, 0.00516319415, 0.0285130702, -0.0269530118, 0.0326172262, -0.0053642015, 0.0251289438, 0.031249173, -0.0169926379, -0.0349933133, -0.0375134088, 0.0137405163, -0.00240759039, 0.0105963983, 0.00584421959, 0.0198127441, -0.000512269267, -0.0213008, 0.0179046728, -0.000891783508, -0.0188047066, 0.0402015112, -0.00634823833, 0.00360013521, 0.00739227748, 0.022020828, -0.000101722573, -0.0420735814, -0.0154565806, -0.013872521, -0.0408255346, -0.0375854112, 0.00343812909, -0.00474917842, -0.019236723, -0.016104605, 0.00307511562, -0.0070682657, -0.0256809648, -0.0341772847, 0.0183606893, -0.0204967707, -0.0290650912, -0.0290890932, -0.0524179675, 0.00629423652, -0.0244569182, 3.58138459e-05, -0.00210007885, 0.0147605548, -0.0269530118, 0.0229928643, -0.0297131166, -0.00928834919, 0.0160686038, -0.0261849836, -0.0184686929, 0.0513139293, 0.0193807278, -0.0481698103, -0.0127924802, -0.0172806494, -0.000305823982, -0.0242649112, 0.0436336398, 0.0259449743, -0.0443296656, -0.00288910861, 0.0322092101, -0.00788429659, -0.0334092565, -0.00944435503, 0.0156245865, -0.0467297547, -0.0359533504, -0.00759628555, -0.023664888, -0.0211807955, 0.0210127886, -0.00704426458, 0.0339372754, 0.0270730164, 0.0104823941, -0.0458177216, 0.00168006308, 0.00599422539, 0.000184975695, 0.00224408437, -0.0376094133, -0.0121264551, 0.0508819111, 0.000607147813, -0.0110824164, 0.02553696, 0.0156725887, 0.00290260906, -0.00403815182, -0.0181806833, -0.0182646867, -0.00784229487, 0.00598822488, -0.026256986, 0.0341292806, 0.00681625586, 0.000289323361, 0.00446416764, -0.0252969507, -0.0168606341, -0.0302891377, 0.0201967582, -0.0401055068, 0.0305771492, -0.00929434877, 0.0328572355, 0.0159726, -0.0149765629, -0.0132124964, 0.00261459826, 0.0254889578, -0.0274330303, 0.00430816179, 0.00239559, 0.0517459437, 0.0129004847, 0.0141845327, 0.0189007092, 0.0105183953, -0.0242769122, -0.00584121933, 0.0064022406, 0.0180366784, -0.0240129028, -0.0293051, 0.0179046728, -0.0142205339, -0.0275770351, 0.00537020154, -0.0419535749, -0.0141365314, -0.0557300933, -0.0601942614, 0.00700826338, 0.0191407185, -0.0162366107, -0.0311291702, -0.00322212093, 0.00686425762, 0.00826831069, -0.00939635281, -0.0252489485, 0.00188557082, 0.0120364521, -0.035881348, -0.00178206689, 0.0174126532, 0.00127504789, -0.0247449297, -0.0344652943, -0.00648024352, 0.0167286284, -0.0240249019, -0.0376094133, -0.0137165152, -0.0328092314, -0.0263289884, -0.02553696, 0.0313211754, -0.0145685468, 0.00754228327, -0.0173526518, -0.0232448727, 0.0123604639, 0.024960937, -0.0183966905, 0.0456257127, -0.00146480498, -0.0454577059, 0.00722427154, 0.00434716325, -0.00956436, -0.0300971307, 0.0397454947, 0.0613943078, 0.0278170444, -0.0112624234, -0.0228008572, 0.0285370722, 0.00788429659, -0.00981036853, -0.00141755329, 0.0177246649, -0.0479778, -0.000684775703, -0.0083583137, -0.00587722054, 0.0306011494, -0.0300011262, -0.000634148833, 0.00772229, 0.037729416, 0.0176046621, -0.00296861143, 0.00995437428, 0.0150485653, 0.0178206693, -0.0040051504, 0.0400335044, 0.0104163913, 0.0187207032, -0.0133325011, -0.00244509196, -0.0168246329, 0.00614123046, -0.00126529753, 0.000894033583, 0.00358513463, -0.00718227, 0.00152855739, -0.0189607125, -0.0268330071, -0.0313211754, 0.0116404369, -0.00933635049, -0.0439216495, 0.0237248912, -0.00155255827, -0.0259209741, -0.0150245642, 0.0265209954, -0.00394214829, -0.00848431885, -0.02848907, -0.0180486776, 0.00973236561, -0.0154685806, 0.018504696, 0.0119884508, -0.0298811216, 0.00136955141, -0.0109564112, -0.00633623824, 0.0187087022, -0.0163446143, -0.0154085783, 0.0149165606, 0.0399134979, -0.0199927501, 0.0108724087, 0.0646104291, -0.018132681, -0.0356653407, -0.00031538686, 0.0366253741, 0.00366613781, -0.00290560909, -0.00928834919, 0.00668425113, 0.0546740554, -0.011574435, -0.0243009124, -0.00703826454, -0.000622898398, 0.0231128689, 0.0106744012, 0.0287290793, 0.016092604, 0.00204607681, -0.0210247897, -0.00285310717, -0.0106924018, -0.0261849836, 0.00971436501, 0.00598522462, -0.031081168, -0.0209527873, -0.00684625702, 0.0171726458, 0.00681025581, 0.0246009249, -0.00958236, 0.0243129134, 0.0132244965, -0.026617, 0.0112144211, 0.0104823941, -0.0291850958, 0.00410115393, 0.0234248806, -0.0167166274, -0.023496883, -0.00303011388, 0.0174966566, -0.0224528443, -0.0122284591, -0.0128644835, -0.00889233407, 0.0233648773, -0.0189727135, -0.0328332335, 0.0315371864, -0.0140165268, -0.0103323879, 0.0538100228, 0.0198727474, 0.0415215604, -0.0130924918, -0.00299111241, 0.00155705854, 0.004344163, -0.0242889132, -0.0133805024, 2.52900118e-05, 0.000937535195, 0.0360493548, 0.00688225869, 0.000899283797, 0.0148685584, -0.0013988025, 0.0233768784, -0.000287448289, 0.0168846343, 0.00360913551, -0.0129364859, 0.00789029617, -0.0285850745, -0.013140494, 0.00242859125, -0.0280330535, -0.0184566937, -0.0427456051, 0.0119164474, -0.0097623663, 0.0180966798, -0.0269530118, -0.00615623128, 0.00928234868, -0.0144725433, -0.00247509289, -0.0124804685, 0.00126154744, -0.00686425762, 0.00229208614, -0.00238208938, -0.0209647883, -0.00190657156, -0.00562521117, 0.0230408646, 0.0238448959, 0.0205087699, 0.0151325688, 0.0109444112, -0.0577461682, 0.00280810543, 0.0504498966, -0.00428416114, -6.25804751e-05, 0.0313451774, 0.0172446482, 0.0241209064, -0.00047064267, -0.000867032562, -0.014784555, -0.000759778544, -0.0331452452, 0.0162486099, 0.0219128225, 0.0101943826, -0.0460577309, -0.0344412923, 0.00915634353, -0.0250569414, -0.0031081168, -0.0155045828, -0.000719277, -0.0322092101, 0.0213968046, 0.0147485537, -0.0492978506, 0.00333612529, -0.0204607677, 0.0107704047, -0.0339612775, 0.0096963644, 0.00604222715, 0.0150365653, -0.00110554148, -0.00311411708, -0.0233168751, 0.00440116553, 0.0121624572, 0.00586822024, -0.0218048189, 0.00771628972, 0.0242529102, 0.00494718598, -0.00721827103, -0.0069722617, -0.0192127209, 0.0163686145, 0.00348313083, 0.0202087592, -0.0421215817, -0.0313211754, 5.25019714e-05, -0.0188287068, 0.0271210186, 0.00463217404, -0.0100443773, 0.0102843866, 0.00114904321, -0.0154805817, -0.0244809203, 0.00778229255, 0.00378614222, -0.0138845211, -0.0148685584, -0.0164286178, -0.0059072217, 0.0218768213, 0.0105903978, -0.012588473, -0.00408915337, 0.00221708324, 0.0169206355, -0.00577221671, 0.00925834756, -0.0023310876, 0.00874832831, 0.0437056422, 0.0152885746, -0.0132124964, 0.00430216175, -0.0284650698, 0.00572421495, 0.0367453806, -0.00838231482, -0.00601222599, 0.0307931565, 0.00801030081, -0.0136205116, -0.00462317374, 0.00626423536, -0.0069542611, -0.0143765397, -0.0241929088, 0.011844445, 0.0415695608, -0.00793229789, 0.00125404715, -0.0301691331, -0.0102063837, 0.00738027738, -0.0123124626, -0.0274570305, -0.00204607681, -0.0208327826, -0.0244329181, -0.00702626398, 0.0013313, 0.0104823941, -0.0464657471, 0.00954035856, 0.00429316144, 0.000993787311, 0.00415815599, 0.0312971771, -0.00923434645, 0.0110704154, -0.0180966798, 0.00569421379, -0.0101163797, -0.012396466, -0.0134165036, 0.00181506819, 0.00322512118, -0.0398654975, 0.059570238, 0.0151445689, -0.00670225173, -0.0293771029, 0.000308261573, -0.0140765291, 0.00296111125, 0.00793229789, 0.0228728596, -0.00782429427, -0.0093783522, 0.0316571891, 0.00262359856, -0.0278650466, 0.0198607463, 0.00856832229, 0.0803070143, 0.018672701, -0.0140885292, 0.0137885176, -0.0137765175, 0.0314891823, -0.0320172, -0.0299531259, 0.00851432, 0.00356713403, -0.00588322105, 0.0169206355, 0.0196927395, -0.0191767197, -0.0139445234, -0.0150485653, 0.0279130489, 0.0268090069, 0.0175566599, -0.0224768445, 0.0016470619, -0.0172566473, 0.00835231412, 0.0114064282, -0.0392654762, -0.00507919071, 0.0157805923, 0.00505219, 0.0120484522, -0.0270730164, 0.035689339, 0.0200407524, 0.0258009695, -0.0310331658, 0.016464619, 0.000461642339, 0.0268330071, 0.0210847929, -0.00011653563, -0.015360577, -0.0235328842, 0.0144845443, 0.00659424765, 0.0017235647, -0.026280988, -0.00804030243, -0.0190927163, -0.0153965782, -0.0425536, 0.00852032, 0.0204847697, -0.0260889791, -0.00509419153, -0.00436216407, -0.0421935841, 0.0382574387, 0.0404655188, 0.0200287532, 0.0509779155, -0.0228368584, -0.00257709669, -0.00423615891, 0.0137165152, 0.00981036853, -0.0172566473, 0.00108079065, -0.018684702, 0.0320172, 0.025896972, 0.0103983907, 0.00349813141, 0.0137765175, -0.00355513347, -0.0410415418, 0.0225968491, 0.031825196, 0.00698426226, 0.0107524041, -0.0205927733, 0.0031171171, -0.00107779051, -0.0238688961, 0.012384465, 0.0167886298, 0.0131044919, 0.0420495793, -0.0246249251, -0.00443416648, 0.0442096591, -0.000109691617, 0.0109384106, -0.00335112587, 0.00324612204, 0.0100923795, -0.00115504337, -0.00766828796, -0.00478517963, -0.018132681, -4.32672496e-05, -0.00389714632, 0.0415215604, 0.00655224593, -0.005916222, 0.0161646064, 0.00903634, -0.0351853222, -0.0134405047, 0.0382094346, 0.0383774415, 0.00487518311, -0.014784555, 0.00519319484, 0.02848907, 0.0198247451, 0.037729416, -0.0243249144, -0.0436336398, 0.0123724649, -0.0132124964, 0.00716426922, 0.022956863, -0.00567621319, -0.0147125525, -0.0219848249, -0.00150905666, -0.00670825178, 0.034201283, -0.00476717902, -0.0181086808, 0.020172758, -0.0282010585, -0.0133805024, -0.0421695858, -0.00900033768, -0.0180726796, -0.000898533734, -0.00257559679, -0.00813630596, -0.0246969275, 0.0261129811, -0.0223328397, 0.00218708208, -0.00652824529, -0.0115864351, 0.024216909, 0.0169926379, 0.00378014194, 0.0154205794, -0.0278170444, 0.0113884276, -0.0158405956, -0.00471317722, -0.0117784422, 0.0465857498, 0.0017235647, 0.024960937, 0.0345613, 0.00175506587, -0.0122524602, 0.0201247558, 0.00523519656, -0.0265449975, -0.0408015326, -0.0162606109, 0.0171246435, -0.0179166738, -0.007770292, -0.0169086345, 0.026448993, 0.0243609156, 0.0294011049, 0.00331212441, 0.0128764836, -0.00942635443, -0.00804030243, -0.0162006076, -0.00402915152, -0.00727827335, -0.00507019041, -0.0216728132, 0.0155645851, 0.0126964767, 0.00540620321, -0.00857432187, 0.0090243388, -0.0231848713, -0.0185166951, -0.042361591, 0.0215288084, 0.0163326133, -0.0246489253, 0.0207727794, -0.00499518774, -0.0529939905, 0.00272560236, -0.0368413851, -0.0264009908, -0.0243249144, -0.0209527873, -0.0287530795, 0.0252969507, 0.0129244858, -0.00543920416, -0.034777306, -0.0237368923, -0.00409815414, 0.00898833759, -0.0217688177, 0.00627623592, 0.0251049437, 0.00127204775, 0.0120904539, -0.00326412264, 0.0164766181, 2.08015626e-06, -0.0148445573, -0.0101043796, -0.0170286391, 0.020712778, 0.0127924802, -0.000618773222, 0.0287530795, 0.0527059808, -0.0256329626, 0.0295451097, -0.0331932455, -0.0206287745, 0.00651624473, -0.00492318487, 0.0361453593, -0.00594322337, 0.00461117318, 0.000208132813, 0.00675025349, 0.0363853686, 0.0180366784, -0.00118729461, -0.0273370277, 0.0353053249, 0.00694226054, 0.0115264328, 0.0289450865, -0.011844445, 0.0345372967, 0.0630743727, 0.0238208957, -0.0400815047, 0.0152525725, -0.0425055958, -0.00522619626, 0.0163926166, -0.00795029849, 0.00380714308, 0.0371773951, -0.0173526518, -0.00123154628, 0.0612983033, -0.0238688961, 0.00282460614, 0.00546020502, -0.0507379062, 0.0112984246, 0.0293051, 0.00448516849, 0.00660624821, -0.0187447034, -0.0117784422, 0.0393854789, 0.0148085561, -0.0121264551, -0.00509419153, -0.0349933133, 0.00606322754, 0.00234608818, 0.018132681, 0.0264729951, -0.0231128689, 0.0253449529, 0.00663624937, 0.00444616703, -0.0425536, -0.00982836913, 0.0360013507, 0.0027616038, -0.0104343919, -0.00637223944, -0.0086403247, 0.00569421379, -0.0145685468, -0.00308111566, -0.00240909052, -0.040897537, 0.00793229789, -0.00398414955, 0.00476417877, 0.0355453342, -0.027937049, -0.0213248, 0.0228608586, -0.00910234172, 0.016464619, -0.0163446143, 0.0206287745, 0.0201367568, -0.00248409342, -0.00711626746, 0.00304811448, 0.0304091424, 0.00475817872, -0.00651624473, -0.0277210418, -6.09866656e-05, -0.0228368584, -0.00903033931, 0.00707426574, 0.0339132734, 0.0037351402, 0.0130564906, -0.0011145419, -0.0114964321, -0.0302171353, -0.00959436, -0.0363853686, -0.00543920416, -0.018684702, 0.00828631129, -0.0141725326, 0.00385514484, -0.0339372754, -0.0209887885, -0.0175446589, 0.00731427455, 0.0493458547, 0.0103803901, -0.00309011596, 0.0161166061, 0.00568221323, -0.0186246987, -0.0265449975, -0.0129364859, -0.00815430656, 0.0323292129, 0.00962436106, 0.0351133198, -0.0184326917, 0.0364813693, 0.0408495329, 0.00138905214, 0.0188407078, -0.000277322921, 0.0213368014, -0.0267130043, -0.00401715096, -0.00522019621, 0.0334092565, 0.0250809416, -0.0239408985, 0.0200767536, 0.00424815947, 0.012216459, -0.00466817524, 0.0104403924, 0.0210967921, 0.00153755781, -0.0156605877, -0.0147485537, -0.0320892036, 0.0274090301, -0.0112984246, -0.0109924125, 0.00562821142, -0.00480018044, 0.0180486776, -0.0164166167, -0.00555320876, 0.00498918723, 0.000818280736, -0.00372914015, 0.00986437, -0.018696703, 0.00720027043, 0.0175326578, 0.0230888668, 0.0171006415, -0.0208807848, 0.0197767429, -0.0138005186, -0.000545645482, 0.00675025349, 0.0218408201, -0.00519919535, -0.0128644835, -0.00878432952, -0.0205087699, 0.0167166274, -0.00930034928, -0.00825031, 0.0039601489, 0.0315371864, 0.00246309256, 0.0123604639, -0.0140285268, 0.00996637437, -0.0372974, -0.010728403, -0.0046711755, 0.00501918839, -0.0131884953, 0.0199567489, -0.00793229789, 0.0112984246, 0.000173350258, -0.0233168751, -0.0259929765, 0.0250569414, 0.0118144434, 0.0169926379, 0.013512508, 0.0277210418, -0.00862232409, -0.0323052146, 0.00196507387, -0.00317711942, -0.0284650698, -0.0266890023, -0.00760828564, 0.00973236561, 0.0188287068, -0.0422415882, 0.0385694504, -0.0102063837, 0.00619823299, 0.0038191434, -0.0258489717, -0.0182886869, 0.0323292129, -0.0363613665, -0.00858632289, -0.00769228907, 0.0130084883, -0.0108064059, 0.0337692685, -0.0183126871, -0.00494418573, -0.0086763259, 0.00561321108, -0.0213368014, -0.00136805139, 0.0350653157, 0.00952235796, 0.014064528, -0.0367453806, -0.0171126425, -0.0108364066, -0.0208567828, -0.00102453853, -0.00608722866, 0.00431116205, -0.00734427571, -0.0288250819, -0.00439216476, -0.0132004954, -0.0260169767, -0.00379814277, -0.0077882926, -0.0293051, 0.00810030382, 0.00894033536, 0.00976836681, 0.00136955141, -0.00704426458, -0.00825631, -8.48469335e-06, 0.0198847465, -0.0114244288, -0.0123604639, -0.0241689086, -0.0162726119, 0.00786029547, -0.0235568844, 0.005409203, -0.0164166167, 0.0194527302, 0.0217808187, 0.00702026347, 0.0250569414, 0.0146405501, 0.0321132056, -0.00316511886, -0.0185646974, 0.00930635, 0.000876032922, 0.0245769229, 0.0192607231, 0.020892784, 0.0195967369, -0.0175326578, -0.00573021546, -0.018876709, -0.0158285946, -3.73373405e-05, -0.00255459594, 0.0213248, -0.0083583137, -0.00351313199, -0.03590535, -0.00134180044, 0.00507619046, 0.0122464597, 0.0110344142, 0.0128404824, -0.0258489717, 0.00446716789, -0.048481822, -0.0520819575, 0.0105183953, 0.0297371168, 0.00275560352, -0.031273175, 0.018132681, -0.00323112146, 0.00661224825, 0.015156569, 0.0101223802, 0.00890433416, 0.0328092314, -0.0192127209, -0.00692426, 0.00224408437, 0.00886233244, -0.0245529227, -0.0161766075, -0.0110764159, 0.00327012292, -0.0186607018, -0.000345950481, -0.0062702354, 0.019416729, 0.00218558218, 0.00518419454, 0.00318311946, 0.0238088947, 0.00514219329, -0.0144365421, -0.0161526073, 0.00448516849, -0.0138365198, 0.0239889, -0.00589222135, -0.00290710921, 0.0212167967, 0.00544520468, 0.0200647544, -0.00409515388, -0.0101283807, 0.0147605548, 0.00836431421, 0.0156725887, -0.00585021963, 0.00510019157, 0.015528583, 0.00841231644, -0.0170286391, 0.00639024, 0.0219848249, 0.00837031472, 0.0139805255, 0.0384254418, -0.00940835383, -0.0131764952, -0.0133205, 0.00633623824, 0.0241089053, 0.0149165606, -0.0174966566, -0.00205957727, -0.0122644603, -0.00078152935, -0.00874232873, 0.0147725549, -0.0190327149, 0.0147005524, 0.0285610724, -0.0143285384, -0.0024330914, -0.024984939, -0.000474767847, -0.00699026277, -0.00775829144, 0.000630023656, 0.0187087022, -0.000222758361, -0.0129004847, 0.0162366107, 0.0129364859, -0.00596422423, 0.00855032075, -0.00768628856, 0.00329712383, -0.00561921112, -0.000826531032, 0.0210367907, 0.020904785, -0.00722427154, -0.0138245197, -0.0212287977, 0.0291610956, 0.0210127886, -0.00339012733, 0.0384494439, -0.00600922573, -0.0161406063, 0.00356113375, 0.0069722617, -0.0276490394, -0.0273610279, -0.00779429264, 0.0164406169, 0.0148805594, 0.00976836681, -0.0168126319, -0.00289210863, -0.0248169322, 0.0360493548, 0.0334812589, -0.0111424187, -0.0291850958, 0.0292811, -0.0160566028, -0.00574521581, -0.0206887778, -0.0145685468, 0.0237968937, 0.0213128012, 0.00476117898, -0.00198007445, -0.0155045828, 0.00883233175, 0.00499818753, 0.000931535, 0.0163926166, 0.0184446927, -0.0126244742, -0.0243369136, -0.00161256059, 0.00140705286, -0.00784229487, -0.0165846236, 0.0131644942, 0.0139445234, -0.00334512559, -0.0129244858, -0.000397139927, 0.0243009124, 0.027001014, -0.00399915036, -0.0222968366, -0.00724227214, -0.00866432581, 0.0419055745, 0.00302861375, -0.0024330914, -0.0126724765, -0.013140494, -0.00411315449, 0.0160566028, 0.012948486, -0.0326892287, -0.00341112819, 0.00165006192, 0.00739227748, -0.00393314753, -0.00252309488, 0.013128493, -0.0184806939, 0.0276490394, -0.00858032238, -0.0111064175, 0.0231968705, 0.00393014774, 0.00667825108, 0.0153245758, -0.00603322685, 0.00140705286, 0.00811230484, 0.00721827103, 0.0262329858, -0.000873782847, -0.0055412082, -0.0102603855, 0.0124684684, 0.0162726119, 0.0187327042, 0.00847231783, -0.00384614454, 0.00326712267, -0.0193567276, -0.00250359415, -0.0263289884, -0.0205927733, -0.00346213, -0.0246969275, -0.00377414166, 0.016644625, 0.0261609834, -0.00808830373, -0.00951635744, -0.0215408094, 0.0376094133, -0.00649824413, -0.0138125187, -0.0140165268, 0.0178686716, -0.000858032203, 0.0405375212, 0.0337932706, 0.017568659, -0.00477317907, -0.0207607802, -0.0152165713, 0.0134405047, 0.00250359415, -0.0316091888, -0.0416175649, 0.0114064282, -0.0027706041, -0.0160206016, 0.00487518311, -0.0155765852, 0.0195007324, 0.0199207477, 0.0353053249, -0.007956299, 0.00700826338, -0.0143765397, -0.00390014658, 0.0288010817, 0.00961236097, 0.0355213359, 0.0269770138, 0.0190447159, -0.00852032, 0.0234368797, 0.000234383799, 0.0171606448, -0.0157685932, 0.0273610279, 0.0268090069, 0.0155525841, 0.00980436802, 0.00690625934, -0.00408915337, 0.0197527427, -0.0151325688, 0.000847531832, -0.0277210418, -0.00041851573, 0.0301211309, -0.00823830906, -0.00481818104, 0.0218888223, -0.0119704492, -0.00785429496, -0.00828631129, -0.0190087147, -0.0167286284, -0.000918784528, -0.0351613201, -0.0273850281, -0.00673825294, 0.0252969507, -0.0294491053, -0.0111124171, 0.015540584, 0.00401115045, -0.00853232, 0.00537920184, -0.0180486776, 0.0331212431, -0.0106384, 0.0181686822, 0.0148205571, -0.0135845104, -0.00749428151, 0.0161646064, 0.0217808187, -0.0105963983, -0.0156605877, -0.00692426, 0.000237383923, -0.00840031542, 0.000704651466, 0.0109444112, -0.0149285607, 0.00856232177, -0.00214958075, 0.0203647651, -0.00997237489, 0.00222458364, 0.00646224292, -0.0186607018, 0.00454817107, -0.0125404708, 0.0012877984, 0.0119164474, 0.0102783861, 0.0230288655, -0.0176646635, 0.0106203994, 0.00883833226, -0.00209407858, -0.0122104585, 0.00770428916, -0.0126124742, -0.0162126087, 0.0130204894, -0.0117364405, 0.00524119707, -0.00612023, -0.0172806494, 0.0093603516, 0.038281437, 0.0138605209, 0.00240759039, -0.00777629204, -0.0139325233, 0.0197527427, 0.0240249019, 0.0100923795, 0.0306491517, -0.015156569, 0.000374076539, -0.0421455838, -8.47063056e-05, -0.00300461287, -0.0133085, 0.000306949019, -0.000258947228, -0.00079052971, 0.0229208618, 0.0100023756, 0.00379814277, -0.00354013289, 0.00333912554, -0.00703226402, 0.0162966121, 0.0052141957, 0.0157565922, -0.018144682, 0.00665425, 0.0110824164, -0.0102963867, 0.00985237, -0.000376326643, -0.0137165152, 0.00621023308, 0.00587422075, -0.0107524041, 0.0128764836, -0.0105123948, 0.0220328271, -0.0104343919, -0.00966636278, 0.00403215131, -0.011382428, 0.0117784422, 0.0159846, 0.00339312735, 0.0165486224, 0.0234488808, 0.0147365537, 0.0183846913, -0.0101223802, -0.00218558218, -0.00343812909, -0.00488118315, -0.00830431189, 0.0268810093, -0.00376814161, -0.00218858221, -0.000489768398, -9.28628651e-05, -0.00928234868, -0.00866432581, -0.0050071883, -0.0253929533, -0.000903033942, -0.0117724426, 0.00864632521, 0.0303131379, 0.00666625053, -0.0070862663, 0.00116029358, -0.00372614, 0.00193807285, -0.0170886423, -0.00142430351, 0.00963036157, -0.0175446589, 0.00271060178, -0.00362713635, -0.00106879009, 0.0117724426, 0.0176406633, -0.00499818753, 0.0102243843, -0.00714626862, 0.00477317907, -0.000293636025, 0.0079923, 0.00211807946, 0.0260409787, 0.0117484415, 0.00870032702, -0.0108064059, 0.00293711037, 0.0103683891, -0.0305531472, -0.00208957843, -0.00138530205, 0.0153965782, 0.00734427571, 0.0179166738, -0.00687025813, -0.013872521, -0.0111604193, 0.00789629668, 0.00932435, -0.00105078949, 0.00784229487, -0.0134765059, -0.0193327256, 0.00976836681, -0.00106879009, -0.0224528443, -0.00912634283, -0.00439816527, -0.00253809523, 0.00913834292, -0.00761428615, -0.0278890468, -0.00616223132, -0.0262329858, 0.00146555505, -0.0308171567, 0.00669025118, -0.0235088822, 0.0105963983, 0.0287530795, -0.00419115741, 0.015912598, -0.0187687054, -0.00577521697, 0.00513319299, -0.0196447372, -0.00456917146, -0.0161286052, -0.00412515504, 0.00630623708, -0.00217808178, 0.00200857548, 0.0114484299, 0.0117844427, -0.0188047066, -0.00898233708, -0.0102423849, 0.00179106731, 0.00930034928, -0.00776429148, -0.0105723972, -0.00773429032, -0.0103383884, 0.00441316562, -0.00670825178, -0.00391214713, -0.0133205, -0.00868832599, 0.00519319484, -0.0141605316, 0.00465017464, -0.0330972448, -0.000573021534, 0.0175566599, -0.00842431653, -0.00356413377, 0.00750028156, 0.0030511145, 0.0072902739, -0.0175446589, -0.0129844882, -0.00394514808, -0.000809280376, -0.0100623779, -0.0106864013, -0.0239529, 0.0191647206, 0.0134765059, 0.0154805817, -0.0134765059, -0.00684625702, 0.00787229557, -0.021648813, 0.0272170231, 0.00940835383, -0.00149330613, 0.0246729273, 0.00825631, -0.0143525396, 0.00199657492, 0.00209257868, 0.00536720175, -0.0183966905, 0.0137765175, 0.0335052572, -0.00781829376, 0.00675025349, 0.0131524941, 0.00694226054, -0.0156845897, 0.0122644603, 0.0172566473, -0.0151325688, 0.0239889, 0.0127324779, 0.0181926843, -0.0108364066, -0.0105723972, 0.00845431723, -0.00425115973, 0.00369013869, 0.00331212441, -0.00786629505, -0.0125404708, 0.00410115393, -0.00879033, -0.0157205909, 0.00234608818, 0.0208807848, 0.00624623476, 0.00700226286, -0.00281110569, -0.0198487453, 0.0137645174, 0.0110824164, 0.00330012385, 0.000256697153, 0.0345132947, 0.0138605209, 0.00647424301, -0.00117154396, -0.0141485315, -0.0178566705, 0.00681625586, 0.007770292, 0.00171306438, -0.0143765397, 0.00681625586, 0.0136205116, -0.00349513139, -0.0187087022, -0.0185406972, -0.0267370045, 0.00584722, -0.00262509868, 0.0255609602, -0.0016650625, -0.00645024236, 0.00565521233, 0.00423315912, -0.00203257636, -0.00183906907, -0.0124084661, -0.0256809648, -0.00344112935, -0.0172566473, -0.000432016241, 0.00345913, 0.0102183837, -0.00102528848, -0.00423615891, -1.07230589e-05, 0.00776429148, -0.00270610163, 0.000981036806, -0.00716426922, -0.00149405608, 0.0126364743, -0.0196687393, -0.00509419153, -0.00181206805, -0.000128254818, -0.0224768445, 0.010830407, -0.0109864129, 0.00843031704, 0.02238084, -0.0039511486, -0.017388653, -0.0147485537, -0.022020828, 0.0186367, 0.00741027854, -0.0174126532, 0.00939635281, 0.0283690654, 0.00413115509, 0.00689425878, -0.0177726671, -0.0175446589, -0.0104643935, 0.00155705854, 0.0103623895, 0.00343812909, -0.0158765968, -0.0186127, -0.00759028504, 0.0101883831, 0.00477917958, 0.017388653, 0.0339372754, -0.0188407078, 0.00809430424, -0.000928534893, -0.00935435109, 0.00640824065, 0.00272710249, -0.000875282858, 0.012114455, -0.0231488701, 0.0365293734, 0.00799830072, -0.0179766752, -0.00728427339, -0.0219128225, 0.0175566599, 0.0294491053, -0.00167856307, 0.00614423072, 0.0169926379, 0.00982236862, 0.0154805817, -0.0133925034, 0.00417315681, 0.0150125641, 0.00432616239, 0.00483618164, 0.0132484976, -0.0119404485, 0.00879633054, -0.00589222135, 0.0204007663, 0.0218048189, 0.00807630364, -0.0045121694, -0.00308111566, 0.0104823941, -0.00754228327, -0.0153845781, -0.00941435341, 0.0079382984, 0.0187807046, -0.0191047173, -0.00148580584, -0.003378127, 0.00874832831, -0.00219758251, -0.0221288316, 0.017940674, -0.0125284707, -0.0030241136, 0.0104823941, -0.00192757242, 0.0174486563, -0.0121204555, -0.0285370722, -0.00397214899, 0.00566721288, -0.0087063266, 0.0018585698, -0.00646824297, 0.0117844427, 0.0320652053, 0.0112624234, 0.0048301816, 0.00119404483, -0.00809430424, 0.0115444334, 0.00525919767, 0.00940835383, -0.0121264551, 0.0218408201, 0.0229208618, -0.0155525841, 0.00113404263, -0.0123244626, -0.0238328949, -0.0032281212, 0.0187687054, -0.0275050327, 0.00210007885, 0.0341532826, 0.0103083868, -0.013512508, 0.00580521813, -0.00546920532, -0.00597922457, -0.0200407524, -0.00426016, -0.03328925, 0.0046981764, -0.0238928981, -0.0100683784, -0.00290260906, 0.0102903862, -0.00445816759, 0.0132965, -0.0113404263, -0.00456017116, 0.00150830671, 0.0294251051, 0.0164406169, 0.00880233105, -0.0107644042, -0.00384914456, 0.0111844204, -0.00735027622, 0.0184206925, 0.0123124626, -0.0053192, -0.00975036621, -0.00129829871, 0.000966786291, 0.017400654, 0.025728967, 0.00133055, 0.00405315217, -0.00620423304, 0.0207607802, 0.0383534394, -0.00554720825, 0.0191647206, -0.00651624473, 0.00805230252, 0.0258249696, -0.0239168983, -0.0103863897, -0.0175926611, 0.00573621551, -0.00877833, 0.00908434112, 0.00395714864, 0.0141005293, 0.00492918538, -0.0155765852, 0.00928834919, 0.0132364975, 0.0172566473, 0.0287530795, -0.00454217056, 0.00931835, 0.0100323772, -0.00706226518, 0.0187327042, 0.00224558427, 0.00264459942, 0.00690625934, -0.0122644603, 0.0122644603, 0.0076382868, -0.0144365421, 0.0164286178, -0.0333852544, -0.00324612204, 0.0218888223, -0.013500507, -0.00164106162, -0.0110884169, 0.00578721752, -0.0160206016, 0.00478818, 0.014244535, -0.00656424649, 0.00873032771, 0.010830407, 0.0138365198, -0.0149645619, -0.0232928749, 0.00753028272, 0.00527419802, 0.00395714864, 0.00108304073, -0.0207847804, -0.00350413169, -0.00969036389, -0.00395414839, 0.00163506146, 0.000942035404, 0.00852632057, 0.0193687268, -0.000699401251, -0.00274510309, -0.0259449743, 0.00606022775, 0.0241089053, -0.0161886085, 0.022020828, 0.0178686716, -0.0151445689, 0.00823230948, 7.04088961e-05, 0.0284410678, 0.00616223132, 0.0218528211, 0.0128524825, 0.00976836681, -0.015360577, -0.00631823717, -0.0105183953, -0.0321372077, -0.00467717554, -0.0157925934, -0.0115924357, 0.0270490162, -0.00469517615, -0.00154205796, -0.01996875, -0.00196807389, -0.00608722866, 0.0106744012, -0.0203407649, -0.00302561373, -0.0170406401, -0.00805230252, -0.0235208832, -0.00778229255, -0.00130429899, -0.0130564906, 0.0105063943, 0.00549920648, 0.00130879914, 0.00863432419, -0.0169806387, 0.0165246204, 0.00262659858, 0.00838831533, 0.00923434645, 0.00742827915, 0.0292811, -0.00630623708, 0.0030241136, -0.00593122281, 0.0157685932, 0.00528319832, -0.00352213229, 0.00891633518, -0.0174606554, 0.000666775042, 0.0252729487, -0.0172806494, 0.0115324333, -0.00375314103, -0.000639774, 0.000960036064, -0.00325212209, 0.0179166738, -0.01276848, -0.00401415071, -0.0333372541, 0.005691214, 0.0204007663, -0.011370427, -0.00236258865, 0.0123004625, -0.0306491517, -0.0115564344, 0.00612023, 0.0260889791, 0.0079923, -0.0181566812, -0.0139205232, 0.0093603516, 0.0118144434, 0.011574435, -0.0305531472, 0.000952535775, 0.00838231482, 0.0116824387, -0.0178926717, -0.0199087486, 0.00328812352, 0.0242769122, 0.0294011049, 0.0129964883, -0.0174846575, 0.0113944281, -0.00214508059, -0.00454517081, -0.0202447604, -0.0101403808, -0.0178566705, 0.00112879241, 0.0174966566, 0.0048211813, 0.00208207825, -0.00509419153, -0.022764856, -0.00541820331, -0.0157085899, -0.015528583, 0.0155525841, 0.00182856864, -0.00978636742, 0.00657624705, 0.00352213229, 9.66598818e-05, 0.0270730164, 0.00114154292, 0.0260409787, -0.00439816527, 0.00441016583, 0.00723627163, -0.0225368459, 0.0069542611, -0.00496518658, -0.00624023424, 0.00017550659, -0.0128764836, 0.00874232873, -0.0149525618, 0.00222758367, 0.00564021198, -0.0165366214, 0.00532820029, -0.0126364743, -0.000715901901, 0.000374451571, -0.0124444673, -0.00900633819, -0.000550895697, -0.0241089053, 0.0127804801, 0.0130684907, 0.00789629668, 0.0144845443, 0.0213368014, -0.00759028504, 0.0032281212, 0.0132004954, 0.0123124626, 0.0126004731, 0.0227888562, -0.00888033397, -0.0067682541, 0.0319692, -0.0204607677, 0.0102123832, -0.0102903862, 0.0104883937, 0.0127084777, -0.0182766858, 0.00603322685, 0.0244449191, 0.00411615474, -0.0237248912, -0.0168606341, -0.00308111566, -0.0014408041, -0.0156845897, -0.0032191209, -0.013140494, 0.0112744235, -0.0169326365, -0.000874532852, -0.000950285699, 0.0211327933, -0.00582321873, 0.00894033536, -0.00942635443, 0.0205087699, 0.0111604193, -0.00520819565, -0.0321612097, 0.00494118547, -0.00943235401, -0.00187207037, -0.021648813, 0.0067682541, -0.0109384106, 0.00219608238, 0.0118024433, -0.0100023756, 0.0168966353, 0.0053822021, -0.00461117318, 0.00497418689, -0.00151730701, -0.0280090515, 0.00803430192, -0.0222248342, -0.0300971307, 0.00573621551, 0.0232088715, -0.0110764159, 0.00669025118, 0.0129964883, 0.0013328, -0.0125284707, 0.0378254205, 0.0139805255, 0.000490893435, 0.00468617585, 0.0219248235, 0.00291610952, -0.00295361085, -0.0382574387, -1.45317963e-05, 0.005691214, 0.00863432419, -0.00606922805, -0.0218168199, 0.012384465, -0.00620423304, -0.00300311274, 0.00809430424, 0.00589522161, -0.000751153217, -0.00350413169, 0.00679825526, -0.0142925372, -0.00193057256, 0.00110779156, 0.0159606, -0.00819030777, -0.00779429264, 0.00636023888, 0.000235321335, -0.0172446482, -0.00938435271, 0.0145925479, 0.00922834687, -0.00354613317, -0.0124204662, 0.00983437, 0.00121879578, 0.0256329626, -0.029785119, -0.0136445127, -4.59157854e-05, -0.00374414073, 0.00895233639, -0.0128164813, 0.0096603632, 0.00651624473, 0.0161766075, 0.000563271169, 0.0171486437, -0.00724827219, 0.03590535, -0.00393614778, 0.0154325794, -0.0114484299, -0.00186907023, 0.00815430656, -0.00601522578, 0.0273130257, 0.031081168, -0.00330612413, -0.00123004615, 0.0122464597, 0.0048661828, -0.00831631199, 0.00420615822, 0.0127444789, -0.00102078833, 0.0253929533, 0.0108244065, -0.00408015307, -0.00116854394, 0.020148756, 0.0130804917, -0.0101463813, 0.00475817872, 0.00191257184, 0.00657624705, 0.0134165036, -0.00723027159, 0.0194647312, 0.00110104133, -0.0224648435, 0.00573921576, -0.00360913551, -0.0100623779, 0.0319212, 0.0294971075, 0.0133685023, -0.0114604309, -0.0173046496, 0.0137045151, 0.0103143873, -0.0145925479, 0.00622823415, -0.0101043796, -0.031249173, 0.00369913899, -0.00985837076, -0.0143285384, -0.00940235332, 0.00159155973, 0.0120724533, 0.00644424185, -0.0114064282, -0.0037171396, -0.0253689531, 0.0120004509, 0.0100143766, -0.0391694717, 0.000466892525, -0.0140045257, 0.024792932, 0.00176256616, 0.00526519772, 0.0133085, 0.00056627125, -0.0111424187, -0.00680425577, 0.00247809314, 0.0109564112, -0.00900633819, 0.00594022311, 0.0165126193, -0.0144005409, -0.0090243388, -0.0151445689, -0.0157205909, 0.00121054542, -0.0239889, -0.0043231626, -0.00951035693, -0.00187057024, -0.0285850745, 0.00135305081, -0.0129364859, 0.0315371864, -0.0131764952, -0.0253449529, 0.0121444566, -0.00843031704, 0.0141605316, 0.000507394085, -0.0141605316, 0.00966636278, 0.0122584607, -0.000901533873, 0.0224288423, 0.00707426574, 0.0113764275, 0.00996037386, 0.00125554716, -0.00571521465, 0.00443116622, -0.0179766752, 0.00291760964, -0.0210247897, 0.0102603855, 0.0100203762, 0.00960636, -0.00998437498, 0.0203767661, -0.00657624705, 0.0196927395, -0.0178686716, 0.018696703, 4.60095398e-05, 0.0020685778, -0.0211807955, -0.0222728364, -0.00824431, -7.78154208e-05, 0.00557720941, -0.0441136584, 0.0174966566, 0.0201127548, -0.0171006415, -0.00786029547, -0.0047071767, 0.0150245642, -0.01942873, -0.00253509521, 0.0131164929, -0.0195247326, -0.0330972448, -0.0202447604, 0.00955235865, 0.000508894096, -0.00215108087, 0.00864632521, 0.00225908495, 0.00985837076, 0.00630023656, 0.011280424, -0.0170766413, -0.0111724194, 0.0173046496, 0.000508519122, -0.00646824297, -0.0203287639, 0.0232928749, 0.00603622664, -0.00744627975, 0.0154805817, -0.00799830072, -0.0254409555, -0.0128884837, -0.0198847465, 0.0452897027, -0.00371113932, 0.00886833295, -0.0142685361, -0.0108244065, -0.0147725549, -0.0165966228, -0.0101463813, -0.00406215247, 0.0135485092, 0.00796829909, 0.0147485537, 0.0242889132, 0.000505143951, 0.0016560622, -0.00337512675, 0.0244809203, -0.0126244742, 0.0207607802, 0.0133445011, 0.0156605877, 0.013692514, 0.026448993, -0.0529939905, -0.00231758715, 0.0204487685, 0.0141965337, -0.00405915268, 0.0251049437, 0.0125644719, -0.00721827103, 0.00752428267, 0.000428641099, 0.00577521697, -0.0030151133, 0.0118564451, 0.00324612204, -0.0151205678, -0.00542720407, 0.0148085561, -0.00540620321, 0.00689425878, 0.0177606679, -0.0144965444, 0.0216728132, 0.00620423304, -0.0045121694, -0.00596422423, -0.00402015122, -0.0106384, -0.00664825, -0.0118924463, -0.00965436269, 0.0139805255, 0.0108364066, 0.00636623893, 0.016668627, 0.0050161886, -0.026448993, 0.0168126319, -0.01092041, 0.00581421843, -0.00255909609, 5.77521678e-05, -0.00843031704, -0.00414915569, 0.003885146, 0.014784555, 0.0183846913, -0.015360577, 0.0154565806, -0.0158765968, 0.0124444673, 0.012396466, 0.00930034928, -0.0150245642, -0.00252159475, -0.0167766307, 0.029233098, 0.00688825874, 0.00507319067, 0.00813630596, 0.00792029779, -0.00241209054, -0.0377534181, 0.0133085, -0.00368413841, 0.0154325794, 0.0251049437, 0.00884433184, 0.00253809523, 0.00852032, 0.0116764382, -0.00811830536, -0.0103623895, -0.016644625, 0.000331887481, -0.00727827335, 0.0100443773, -0.00960036088, -0.000453392044, -0.00253659533, -0.00913234334, 0.0070682657, -0.00763228675, 0.00221258309, 0.00770428916, 0.00894033536, -0.0047071767, 0.0160446018, 0.00221858337, 0.0145925479, -0.0177366659, 0.0193447266, 0.0204607677, -0.024792932, 0.00175956613, 0.00359713519, -0.00130879914, -0.0192247219, 0.0064202412, 0.011010414, -0.00407415302, -0.0106323995, -0.00487818336, -0.0003885146, 0.00868232641, 0.0180246774, -0.00162906118, -0.025152944, -0.0104223918, 0.0237128902, -0.0101043796, 0.0342972875, 0.0089763375, -0.00759628555, -0.00796829909, -0.00114604307, 0.029041091, 0.00835231412, 0.00138380192, 0.00327912322, 0.00372914015, -0.00477317907, -0.00213008, -0.000876782928, -0.00493218517, -0.00932435, -0.0116104363, 0.00575121585, -0.00675625401, -0.0132484976, -0.00182856864, -0.00394214829, 0.0157445911, -0.00357913435, -0.000858782267, -0.0164046157, -0.0376094133, -0.0102963867, -0.000940535334, 0.0058862213, 0.0277690422, -0.0126004731, -0.00686425762, 0.0165486224, -0.0254649557, 0.0135365082, 0.00238958979, -0.00930034928, 0.0150605654, 0.0262329858, -0.00128329825, -0.031801194, -0.00139655243, 0.0197767429, -0.00443116622, 0.0204727687, -0.0467777587, 0.00562821142, 0.0186127, -0.00363613665, -0.0288490839, 0.00211207941, 0.0078062932, -0.0219008233, -0.00628223596, -0.00422415882, 0.0168606341, -0.00929434877, -0.00794429798, 0.00836431421, 0.00447916845, 0.0178806707, 0.0103503885, 0.0393134765, -0.0124324672, -0.00246009231, -0.0315611847, 0.0131644942, -0.0137405163, -0.0164406169, 0.0283690654, 0.0167886298, -0.0119104479, -0.021444805, 0.00566121284, 0.0253209509, 0.00982836913, 0.00119329477, -0.000267010037, 0.00748228095, -0.010176382, 0.00963636208, 0.00383414398, -0.000659649784, 0.0270730164, -0.01090841, -0.00263559911, 0.00347413053, 0.0188527089, 0.00193057256, -0.0032851235, -0.017928673, -0.0127804801, 0.00715226866, 0.00766828796, 0.00376514136, -0.0172926504, 0.0111544188, 0.00457217172, -0.0117904432, -0.00527419802, -0.00388214574, -0.00823830906, 0.00702026347, 0.0248889346, -0.00836431421, -0.00961836148, 0.0032101206, 0.0102303838, 0.00154355797, 0.0100023756, 0.00954035856, 0.00792029779, 0.026256986, -0.00626423536, 0.000604147674, 0.031825196, 0.00526819797, 0.00649224408, -0.0284410678, -0.00598822488, 0.00156155869, -0.0133205, 0.0297611188, -0.00718827, 0.00376214134, 0.006570247, -0.00065439957, -0.00475517847, -0.0129964883, 0.012576472, 0.00460817292, 0.0442336611, 0.00195007329, 0.00196207361, 0.00322212093, -0.0201967582, 0.0111124171, 0.00163956161, 0.0154325794, 0.00362113607, 0.00235958863, 0.0101643819, -0.0254889578, 0.0170646403, 0.0149765629, 0.00159455987, -0.032713227, 0.00721227098, 0.00130204891, 0.00948635675, 0.000993787311, 0.00126379752, -0.0132484976, 0.00394214829, 0.00721227098, -0.0146765513, 0.00528919883, -0.0194527302, -0.000285573216, 0.018864708, -0.00180456776, 0.013692514, -0.00672625285, -0.0255129579, 0.0017070641, -0.00451817, 0.00812430494, 0.0111844204, 0.0115924357, -0.0199447498, -0.00391814718, -0.0211327933, -0.00176406628, 0.0136685139, -0.00858632289, 0.00459017232, 0.0110584153, 0.00565221254, 0.0176526625, 8.68157586e-05, 0.00542120356, 0.000776279136, -0.00394514808, 0.00330612413, -0.0153725771, -0.0183246881, 0.00346813025, 0.00167406292, 0.00275410339, -0.0455057099, 0.0171366446, 0.0132484976, 0.00401715096, 0.0145445466, -0.018132681, 0.00522019621, -0.0159486, -0.00277660438, -0.0146525502, -0.003885146, -0.0374174044, 0.0162126087, -0.0197167415, -0.0201127548, -0.0153725771, -0.00149705622, -0.00152255723, -0.0071222675, 0.000237571425, 0.00963636208, -0.00518719479, 0.00322512118, 0.00942635443, 0.0079803, 0.00242259097, -0.00429016119, -0.0276010372, 0.000646149274, -0.017928673, 0.0162366107, -0.0116884392, -0.00240609027, -0.000756403431, 0.0135365082, 0.00122404599, -0.0122284591, 0.0149045596, -0.0300971307, 0.00868232641, 0.0137045151, -0.0021795819, 0.00461717322, -0.0132004954, -0.00442516617, 0.00354313315, 0.00360913551, 0.0194647312, 0.00564621203, 0.0300011262, -0.00292060967, -0.00649824413, -0.0011835444, 0.0115684345, 0.0183126871, 0.0123124626, 0.00888033397, -0.0018165682, -0.00189007097, 0.0104763936, 0.0132124964, 0.0231128689, -0.0334572569, -0.000135005073, -0.0110464152, 0.0280810539, 0.00192307227, 0.00830431189, 0.00664825, -0.0086403247, 0.00237608934, 0.00305411476, -0.000829531171, -0.00459317258, 0.00877232943, 0.0233888794, 0.0117784422, 0.0032281212, 0.00997837447, -0.0113524264, 0.0105963983, 0.0229088608, -0.0204487685, -0.0111424187, -0.0144845443, 0.0119764498, 0.0174606554, -0.000751528249, 0.00430216175, 0.00689425878, -0.0105603971, -0.0202087592, 0.0219128225, -0.00160206016, 0.00128704833, 0.00503118895, -0.0101463813, -0.0223328397, 0.0157325901, -0.00477317907, 0.0159966014, 0.00892833527, -0.00616823183, 0.0238088947, 0.0136685139, 0.0191767197, -0.00627623592, -0.024048904, -0.0013898022, 0.000182913122, 0.00531319948, -0.000580146792, 0.00218558218, 0.0125644719, 0.00963036157, 0.0161646064, 0.00550820678, 0.00241059065, 0.0148565583, -0.00522019621, -0.00267010019, -0.0103623895, 0.0270730164, -0.018864708, 0.0203407649, -0.0114184292, -0.00816030614, -0.00806430262, 0.0207727794, 0.00646224292, 0.00282460614, 0.00952235796, -0.000712151756, 0.0110044135, -0.0228968598, 0.0201007556, -0.017208647, -0.0141845327, -0.0123364637, 0.023496883, -0.0141965337, 0.0130804917, -0.0212527979, -0.000581646862, -0.0145805478, -0.0134045035, -0.00392714748, -0.0258009695, -0.00331212441, -0.00885033235, -0.000493143511, -0.00480918074, 0.0160686038, 0.0107764052, 0.0090243388, 0.00135455083, -0.0164406169, -0.000325512228, 0.0287530795, 0.0100323772, -0.0140285268, 0.00651024468, -0.0222248342, 0.00828631129, 0.00853832066, -0.0120184515, 0.0304091424, 0.0299051236, -0.0138845211, 0.00337212672, -0.0115384338, 0.0020865784, 0.0157685932, -0.00344112935, 0.029977126, -0.00823230948, -0.00702026347, -0.0113524264, -0.0375854112, -0.00520219561, 0.0115564344, -0.000701651385, -0.0183606893, 0.0161406063, -0.0173406508, 0.0126124742, 0.0350173153, -0.0022560847, 0.0241689086, -0.00791429728, -0.0150725665, -0.0162726119, -0.0176286623, 0.005409203, 0.000937535195, 0.00670825178, -0.0284650698, 0.00850832, 0.010266386, 0.00492618512, 0.022764856, -0.00471017696, -0.00624023424, -0.0156005863, 0.0165126193, 0.0105843972, 0.0119764498, -0.029785119, 0.010626399, 0.0276730396, -0.0249129366, 0.0273850281, -0.00124279666, 0.0352093242, -0.000599647523, -0.0278650466, -0.0153245758, 0.00851432, 0.0037921425, 0.00215558102, -0.000161162301, -0.0032851235, -0.0322812125, 0.00100803783, 0.0208327826, -0.00375914131, 0.0155645851, 0.00614423072, 0.0282730628, -0.00438916497, 0.0131884953, 0.00823230948, 0.0119524486, -0.00073952775, 0.0216968153, -0.00678025465, 0.0106504, 0.00210757926, 0.0116884392, -0.00577521697, -8.41437868e-05, 0.00261459826, 0.024960937, 0.00080403022, -0.00166656263, 0.00700226286, 0.000952535775, 0.00889233407, -0.0102183837, 0.00816630665, 0.00107779051, -0.00461717322, -0.00291610952, -0.0334092565, -0.00453617051, 0.00796229951, 0.000538895256, -0.00351313199, 0.0172566473, 0.00533420034, -0.0175926611, -0.00402315101, -0.0147245526, 0.0156725887, 0.000805530231, -0.00720027043, 0.0124324672, -0.00414915569, -0.023484882, -0.00757228443, 0.0191527195, -0.011100417, 0.0150245642, -0.012948486, 0.000980286859, -0.0169446357, 0.0139685245, 0.00405615242, -0.0265689977, -0.0196927395, -0.0234248806, 0.0140885292, 0.00327912322, -0.00158555957, -0.000469517632]
19 Sep, 2018
unordered_map end( ) function in C++ STL 19 Sep, 2018 The unordered_map::end() is a built-in function in C++ STL which returns an iterator pointing to the position past the last element in the container in the unordered_map container. In an unordered_map object, there is no guarantee that which specific element is considered its first element. But all the elements in the container are covered since the range goes from its begin to its end until invalidated. Syntax: iterator unordered_map_name.end(n) Parameters : This function accepts one parameter n which is an optional parameter that specifies the bucket number. If it is set, the iterator retrieves points to the past-the-end element of a bucket, otherwise, it points to the past-the-end element of the container. Return value: The function returns an iterator to the element past the end of the container. Below programs illustrates the above-mentioned function: Program 1: // CPP program to demonstrate the // unordered_map::end() function // returning all the elements of the multimap #include <iostream> #include <string> #include <unordered_map> using namespace std; int main() { unordered_map<string, int> marks; // Declaring the elements of the multimap marks = { { "Rohit", 64 }, { "Aman", 37 }, { "Ayush", 96 } }; // Printing all the elements of the multimap cout << "marks bucket contains : " << endl; for (int i = 0; i < marks.bucket_count(); ++i) { cout << "bucket #" << i << " contains:"; for (auto iter = marks.begin(i); iter != marks.end(i); ++iter) { cout << "(" << iter->first << ", " << iter->second << "), "; } cout << endl; } return 0; } Output: marks bucket contains : bucket #0 contains: bucket #1 contains: bucket #2 contains: bucket #3 contains:(Aman, 37), (Rohit, 64), bucket #4 contains:(Ayush, 96), Program 2: // CPP program to demonstrate the // unordered_map::end() function // returning the elements along // with their bucket number #include <iostream> #include <string> #include <unordered_map> using namespace std; int main() { unordered_map<string, int> marks; // Declaring the elements of the multimap marks = { { "Rohit", 64 }, { "Aman", 37 }, { "Ayush", 96 } }; // Printing all the elements of the multimap for (auto iter = marks.begin(); iter != marks.end(); ++iter) { cout << "Marks of " << iter->first << " is " << iter->second << " and his bucket number is " << marks.bucket(iter->first) << endl; } return 0; } Output: Marks of Ayush is 96 and his bucket number is 4 Marks of Aman is 37 and his bucket number is 3 Marks of Rohit is 64 and his bucket number is 3 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL
https://www.geeksforgeeks.org/unordered_map-end-function-in-c-stl?ref=asr7
PHP
unordered_map end( ) function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.041343, -0.0172359142, -0.00678057084, 0.0166415721, 0.0110170683, -0.0485620797, -0.0325003527, 0.0268758498, -0.0287168585, -0.0198017322, -0.0193523504, 0.0171634331, -0.0193088632, -0.0222370829, 0.00291372463, -0.0283399597, 0.00436696317, 0.0245419703, -0.00879915897, -0.0325873308, -0.0128145907, 0.00659574522, -0.0313986465, -0.00486708, -0.00745101739, 0.0091253221, -0.0307898074, -0.00667547388, 0.0268613528, 0.00573322456, -0.00122583, 0.0173228905, 0.0181781631, -0.00310761062, 0.0146048637, 0.056476973, 0.0296591092, 0.00837877, 0.00512076262, -0.026397476, 0.0102270292, 0.0221211147, 0.0261510424, 0.0159457568, -0.048243165, 0.00613186834, 0.0167140532, -0.0474603735, -0.0196277779, 0.0232518129, 0.0256146844, -0.0292677134, 0.0180332027, 0.00564624788, 0.0334281065, 0.0034428339, 0.022802433, 0.0180766899, -0.0222515799, -6.12688527e-05, -0.00614998862, -0.0509684384, 0.0358634591, 0.00253863703, -0.0085962126, -0.000727525156, -0.0119520696, 0.0385597385, 0.018149171, -0.0219761524, 0.000247340446, 0.0483591333, 0.00182923209, 0.0134451725, -0.0481561869, -0.020700492, -0.00741840107, 0.0139162969, 0.00728431204, 0.0256436765, -0.0400963314, 0.0239911173, -0.0101907887, -0.0286443792, 0.0112055186, 0.00203127204, -0.0119883101, -0.037255086, 0.0528529361, 0.0247594118, -0.0257741418, -0.00185550633, -0.0172359142, -0.0112055186, -0.0208744463, 0.042444706, 0.0188159943, 0.0156123461, -0.0185840558, 0.0391105935, 0.0081468327, -0.00411690446, 0.00856722053, 0.0143656777, 0.0199032035, 0.0147063369, 0.0469095185, 0.0147425774, -0.00539618917, -0.0143076926, 0.0476343259, 0.00596878678, -0.0153804077, 0.0162646715, -0.017090952, -0.00343921, 0.00790764578, -0.00459165312, 0.0282964706, 9.54140633e-05, -0.0286588743, 0.0184245985, 0.0138365682, 0.011393968, -0.0484751, 0.00588905811, 0.00681318715, 0.0149165308, -0.00949497335, -0.0221646018, 0.00651239231, -0.0301519781, 0.00687842, -0.0277311206, -0.014749825, 0.0489679724, 0.0138583127, 0.0097486563, -0.0228169281, -0.0254842192, -0.0493448712, -0.0229328983, -0.0170329679, -0.025382746, -0.0518961921, -0.0183956046, 0.00634206273, 0.0324423686, -0.00271259085, -0.0201351419, -0.0230923556, 0.0188739784, 0.0266729034, 0.00229945057, 0.0216862299, -0.0556361973, 0.0349067114, 0.0188014973, -0.0136481188, -0.0428795926, 0.0219036713, -0.0271802675, 0.013198738, -0.00351893879, -0.0247594118, 0.037892919, 0.037776947, -0.0158152916, -0.0170039758, 0.0429375768, 0.0104662152, 0.0395454764, 0.0240056124, -0.0227734409, 0.00220522564, -0.029514147, 0.0150904851, 0.0355735347, -0.00138619367, 0.0222370829, 0.00142152805, -0.00323626399, 0.0464456417, -0.00829904154, 0.0280355401, -0.0163226575, 0.0252087917, 0.000786868739, 0.0558971278, -0.00384147791, -0.0160182379, -0.00180476985, 0.0348777212, 0.0374000482, 0.0688856691, 0.0185115747, -0.0254552271, 0.0182506442, -0.0218166951, 0.0281225182, 0.0066827219, 0.00314928708, 0.0139815295, 0.0152934305, 0.0332251601, 0.0135176536, -0.0114809452, -5.85508278e-05, 0.0210194066, 0.00166796241, -0.0409371071, 0.00324713602, 0.00640367111, 0.0313986465, -0.0110098207, 0.0295286439, -0.0677839667, 0.00268359855, -0.00528384419, -0.035776481, -0.00137894554, -0.0268323608, 0.0232663099, -0.0281805024, -0.0329932198, -0.033660043, 0.0265134461, 0.00769745186, 0.0200046767, -0.0152644385, 0.0242085587, 0.0367622189, -0.0260495692, -0.00751625, 0.0108938515, -0.0333701223, -0.0435464121, -0.0193813425, -0.000761500502, 0.0322394222, 0.0149165308, 0.0427636206, -0.0300939921, 0.00893687177, 0.00434884289, 0.0464746356, 0.00616448466, -0.029021278, -0.0174823478, -0.00145233236, 0.0370811336, -0.000709858, 0.0135828862, 0.00508814631, 0.00292459689, 0.0568538718, -0.0123289693, -0.0281370133, 0.00438870722, -0.0161342062, 0.0160182379, 0.0462137051, -0.0239766203, 0.0131769944, 0.000472030661, 0.0239621252, 0.0234402623, 0.00113522925, -0.0161197111, -0.0619275235, 0.0287023634, -0.00631307, 0.0132929627, -0.0155978501, 0.0317465514, -0.00535994908, -0.0273832139, 0.0366462506, 0.0108503634, -0.0104082311, -0.0022795184, -0.00646165572, -0.000438055315, 0.00698351674, 0.0225270055, 0.00300251367, -0.0241795667, -0.019642273, -0.0327612832, -0.0372260958, -0.0245854575, -0.00972691178, 0.0102850134, -0.0115171857, 0.0174533557, 0.0479532406, -0.0228749141, -0.0386757106, -0.0330801979, -0.0114664491, 0.00489607221, -0.0156558342, -0.0169314947, -0.0477502942, -0.0165400989, -0.0323843844, 0.0113069918, -0.00985012949, 0.0353705883, -0.0452279672, -0.00422200141, -0.0530268922, 0.00442494778, 0.000901025895, 0.000474748667, -0.0228894092, 0.0394295081, 0.0242085587, -0.0278760828, -0.0123072257, -0.0115969144, -0.026426468, 0.00181473594, 0.0193813425, 0.0317175612, -0.0517222397, 0.000989361783, 0.0334860906, -0.0239041392, -0.061115738, -0.0184390936, -0.00870493427, -0.0400673375, -0.0184680857, -0.0234112702, -0.0356605127, -0.020743981, -0.0135249011, 0.0237881709, 0.0305868611, 0.00204033218, -0.0110823009, -0.00361497561, -0.00174134912, 0.0302099623, -0.0205265377, -0.00252051675, -0.024368016, -0.0054614218, 0.044648122, 0.00123942026, -0.021744214, -0.00553752668, -0.00963268708, 0.0208164621, 0.0107416417, -0.0283254627, -0.0172359142, -0.0182361472, 0.0397774167, -0.0236287136, 0.0448220745, 0.00630944641, 0.0164386258, -0.015554361, -0.00755249057, -0.0246144515, -0.018627543, 0.0331961662, -0.0264844541, 0.0235852245, -0.0280065481, 0.0141772274, -0.0123579623, -0.0332251601, -0.0230923556, 0.010125556, 0.0317755453, 0.00634931074, -0.017105449, -0.00229039066, 0.0420967974, -0.00809609611, -0.00960369501, 0.0158152916, -0.0015057869, -0.00180023978, 0.0319494978, 0.00690741232, -0.0105169518, -0.0292822085, 0.00171688688, 0.00854547601, -0.00716109481, -0.00667909766, 0.00174678524, -0.0296591092, -0.0202946, -0.054360535, -0.0442132354, 0.0231648367, 0.0136916069, 0.00472936686, -0.015003508, -0.0244694892, -0.0162501764, -0.00160272978, -0.0214977805, 0.00025617404, 0.0290937591, 0.0208164621, 0.0155978501, 4.70558407e-05, 0.00104191026, 0.0185840558, 0.000407930522, -0.0347037651, 0.0142931966, -0.012705869, -0.0258031338, -0.0112779988, -0.0158587806, -0.00736404071, 0.014227964, 0.014496143, 0.0297750775, -0.0214542914, -0.0178882405, -0.0319494978, -0.00702700531, 0.00464601396, 0.000740209303, 0.0460977331, 0.0407051705, -0.0206715, -0.0863970146, -0.0019044308, 0.00134904729, -0.0252667777, -0.0250493344, 0.0389656313, 0.04453215, 0.0391685776, -0.0154963769, 0.00817582477, 0.0421837755, -0.0219761524, 0.0027597032, -0.0115896659, 0.0104372231, -0.0261365455, 0.00400455948, 0.0157138184, 0.00341927772, 0.0530558825, -0.0179607216, 0.0141989719, -0.00654500863, 0.0448510647, 0.036327336, 0.0114881936, 0.011944822, 0.00619347719, 0.0313696526, 0.0237156898, 0.0185405668, 0.0270063151, 0.0271947645, -0.0139307929, -0.0095312139, -0.00115787936, -0.0232083257, 0.0226574708, 0.0226429757, 0.0440392829, 0.0314566307, -0.0151919574, -0.000966711552, -0.0322974063, -0.0179752167, 0.0172794033, -0.0154963769, -0.0172214173, -0.00377986929, -0.0186130479, -0.0281805024, 0.0321814381, -0.0065486324, -0.0256436765, -0.0034174656, -0.0181926601, -0.0106039289, -0.0539256521, -0.0124159465, 0.0205990188, 0.00483446382, -0.0372260958, 0.021222353, 0.00229220255, -0.00951671787, 0.0396904387, -0.00215992541, -0.0369941555, 0.0282964706, 0.0273542218, -0.019642273, -0.0356605127, 0.0096254386, -0.0316015929, -0.0112200147, -0.0105097033, 0.0436913744, 0.0169749837, 0.00493593654, 0.00726619177, 0.0028738603, 0.0289487969, 0.038298808, -0.0262235217, -0.00250602071, 0.0314566307, -0.00775543647, -0.00267997454, 0.0556072034, -0.000471124658, 0.0362693481, -0.0158442836, -0.00214724126, -0.0103719905, -0.0344428346, 0.0266004223, 0.00690378807, -0.00991536211, 0.00186094234, -0.00377986929, -0.00097486563, -0.0169025026, 0.0331671759, -0.00427273801, 0.00275245518, -0.0164386258, -0.00787140522, -0.00356786326, 0.0179752167, -0.0427346304, 0.000532280246, 0.0166995563, -0.010872107, -0.0182796363, -0.00226139836, 0.0190479327, -0.00122220605, 0.000344736385, -0.00867594127, -0.0102342768, 0.0214108024, -0.0271367803, -0.0164531227, 0.023817163, -0.0178882405, 0.0167575404, 0.0237301867, 0.0437783524, -0.00310217449, 0.00227770652, -0.00454454077, 0.00847299583, 0.00215630117, -0.0206135157, 0.00760322716, 0.02022212, -0.026397476, 0.027934067, -0.000903743901, 0.0119230775, 0.0202656072, 0.0241940618, 0.0123362178, 0.00293184491, -0.0179607216, 0.00723719923, -0.00845125131, -0.0046097734, -0.0380958654, -0.0049214405, -0.00851648394, -0.0317755453, -0.0110460613, -0.0327612832, 0.0161052141, 0.0105386963, 6.98193107e-05, -0.000991173787, -0.00493231276, 0.0112852473, -0.0195408, -0.00949497335, -0.0268323608, -0.0214253, 0.00133183319, 0.00092548813, 0.00383060589, -0.00449018041, -0.0390526094, -0.00722995121, 0.000827639189, 0.0419228449, 0.000701703946, 0.0187290162, -0.0107778823, -0.0438943207, 0.0344138443, 0.0331671759, -0.000884717738, 0.0082845455, 0.00496492907, 0.0127855977, 0.0272237565, -0.0266149193, 0.0022450902, -0.0298330616, -0.0109808287, -0.0218456872, 0.0203235932, 0.00925578736, 0.026426468, -0.0314566307, -0.0115824183, -0.007389409, -0.027455695, -0.00750175398, -0.0241940618, -0.00732417637, -0.0225125104, 0.0344138443, 0.0208744463, -0.0225559976, 0.0208744463, -0.0242955349, 0.0139597859, -0.00758873066, 0.0263829809, 0.00469675055, 0.0428216048, -0.000665916596, -0.00575859286, 0.023817163, 0.0461557209, 0.00777718052, 0.0109663317, -0.0239911173, -0.00220341375, 0.0241070855, 0.00239548762, -0.0240780935, -0.0353705883, -0.00367658422, 0.024817396, -0.00496130483, 0.00515337894, -0.0150904851, -0.0303259306, -0.00680231489, 0.0159747489, 0.0205845237, -0.00820481684, -0.0385017544, 0.0127493581, 0.00040702452, 0.00311667076, -0.0376029946, -0.017090952, -0.00367296021, 0.010872107, -0.00582020124, -0.0163371526, -0.0172069222, 0.0400963314, -0.00517149922, -0.00424374593, 0.0108938515, -0.00678419508, 0.0093427645, -0.0242810398, -0.0209469274, -0.0026419221, 0.00856722053, -0.0026165538, 0.016569091, -0.0345298126, -0.0108141229, -0.0313116685, 0.0290792622, 0.0278180987, -0.00439233147, -0.00953846239, 0.0102415252, -0.00890788, 0.00721907942, 0.00113251118, 0.0350226797, -0.00388134224, -0.0277891066, -0.0102777658, 0.0206859969, 0.0249768551, 0.00303331786, -0.00171779294, 0.000904196932, 0.00315472321, 0.00350444252, -0.0141047472, -0.0409371071, 0.0215122756, -0.0157428104, -0.000303513, -0.00592892244, -0.0136626149, -0.0123289693, -0.0529689081, -0.0155108729, 0.00667184964, -0.00191167882, -0.00705237361, 0.0250203423, -0.0273687188, -0.0355155505, -0.01762731, -0.00555564696, -0.000622428139, -0.0141409878, -0.0156413391, 0.00141699798, 0.00874117389, -0.042531684, 0.025919104, 0.0244984813, -0.0460107587, -0.0210339036, 0.0213528182, 0.0039864392, 0.0139235454, -0.00163987617, -0.00542880548, 0.00744376937, -0.0136916069, -0.00794388633, 0.00850923546, -0.0476923101, 0.0174823478, 0.0110605573, 0.0422417596, 0.0195842888, -0.0174243636, 0.0273397248, -0.0171924252, 0.0376899727, -0.00605213968, -0.00206207624, -0.00549041433, 0.0107198982, 0.00181111181, 0.00112888718, 0.0136843594, -0.0313986465, -0.00136988552, 0.00330512063, 0.01706196, 0.0175403338, 0.0252812728, -0.00524760364, -0.0267308876, 0.0204685535, 0.0215412676, 0.0173373874, -0.0356605127, -0.012169512, 0.00789315, 0.0100095868, 0.00505553, -0.0340949297, 0.039922379, 0.0285574012, 0.00998059474, -0.00498304935, -0.000955839409, 0.00748725794, 0.0217297189, 0.0268323608, -0.0291082542, -0.0151049811, -0.00426186621, 0.039893385, 0.0219761524, -0.00713572651, -0.0320654698, -0.0172214173, -0.048852, -0.0221646018, -0.0270498022, 0.00717559084, -0.00415314501, -0.0208019651, 0.0102270292, -0.0118288528, -0.0359214433, 0.0218021981, 0.0276876334, 0.0199756846, 0.0387047, -0.0156558342, 0.00476198317, -0.00680956338, 0.0209469274, 0.0156848263, -0.0054360535, 0.0022795184, 0.000530015212, -0.0151629653, -0.000500569935, 0.0340369418, -0.0135538932, 0.0090310974, -0.023860652, -0.066798225, 0.0294851549, 0.0299490318, 0.0153949037, 0.0111692781, -0.0143511817, -0.0254987162, 0.00848024338, -0.0203090962, 0.0434304439, -0.0156848263, 0.0198307242, 0.0165980831, -0.0118433489, -0.0123797059, 0.0599560477, 0.000449153915, -0.00510626612, -0.0018328561, 0.00109174079, 0.0019316111, -0.00895136781, -0.0189899467, -0.000633753254, -0.0173083954, 0.00335585698, -0.00357148726, 0.0307898074, -0.00976315234, 0.0106909052, 0.00680593913, 0.0140902512, -0.0389366411, -0.0116983876, 0.0372840799, 0.0384437703, 0.00601952337, 0.0133292032, 0.00836427417, 0.019163901, 0.0169025026, 0.0387336947, -0.00729518384, -0.0367622189, -0.00432709884, -0.0213238262, 0.0114447046, 0.0179027356, -0.0134596685, 0.00329062436, -0.00714297453, 0.0063710548, -0.00474023866, 0.0230633635, 0.0204105694, -0.030036008, 0.024817396, -0.024817396, -0.0192943662, -0.0479822345, -0.0146193597, 0.00257668947, 0.00750175398, -0.00620797323, -0.0302969385, -0.0244984813, 0.0210773926, -0.0173663795, -0.0198887084, 0.00971241575, 0.00956745446, 0.0158007964, 0.017148938, -0.0132784666, 0.0115534263, -0.029543139, 0.0123289693, -0.00535632484, 0.0121767605, -0.00835702661, 0.0273687188, -0.0045010522, 0.0430825353, 0.0156993233, 0.0122999772, 0.0107054012, 0.0127638541, -0.0433724597, -0.0387626849, -0.0410530753, -0.00034700142, -0.0159747489, -0.0104154786, -0.00621884549, 0.0164821148, -0.0246869307, 0.0208309572, 0.0129305599, -0.01920739, -0.000981207704, 0.0129885441, -0.0161632, -0.00275426707, -0.00101291796, -0.0312246922, 0.00722995121, -0.0200046767, 0.0123942019, 0.00884264708, 0.0059506665, -0.00288654445, 0.00362403574, -0.0279485639, -0.0224255323, -0.0291082542, 0.0011651275, 0.0109663317, 0.012452187, -0.00145233236, 0.0242665429, -0.0346167907, -0.0078351656, -0.0382698178, 0.00887888763, -0.00525122788, -0.00310217449, -0.0063710548, 0.0102705173, -0.0102342768, -0.0118143568, -0.0227299519, -0.0359504335, -0.0212803371, -0.0148150586, -0.0270498022, 0.0149455238, 0.0240925904, -0.00192798697, 0.00354430685, -0.0137858316, 0.0443002135, -0.00351893879, -0.00505190575, -0.0213383231, -0.0410240851, 0.00365302805, 0.0179607216, 0.00069400284, 0.0335440747, 0.0353126042, 0.000556289509, 0.0296446122, -0.0367622189, -0.0180476978, -0.00861795712, -0.000846212322, 0.0406471863, 0.00479822326, 0.0175403338, 0.00145052036, 0.0144671509, 0.028455928, 0.0113287354, -0.012705869, -0.00248427643, 0.0265859254, -0.00964718312, -0.00236830744, 0.00158642163, -0.00750175398, 0.0247594118, 0.0542155728, 0.0340659358, -0.0382408239, 0.014271453, -0.0282529835, -0.00697264494, 0.0201061498, -0.0260785613, 0.0392265618, 0.0205120426, 0.00025821256, -0.0195552967, 0.0396034643, -0.0157863, 0.00690016383, 0.0121767605, -0.0434304439, 0.00502653746, 0.00128743867, 0.00643991167, -0.00884264708, -0.0213673152, -0.00435246713, 0.0197147541, 0.00462064566, -0.0214687884, -0.0128363343, -0.0318915136, 0.0100168344, 0.00646528, 0.0235707276, 0.0329932198, -0.013706103, -0.00894412, 0.00533820456, -0.006479776, -0.0299780238, -0.00603039563, 0.0323553905, -0.00246978039, -0.00243716408, -0.014256957, -0.0164531227, 0.0264554601, -0.0104879597, -0.00958919898, -0.0105241993, -0.0291517433, 0.00961094256, -0.0102705173, 0.000772372645, 0.017612813, -0.0227734409, -0.0120245507, 0.0129305599, 0.006479776, 0.00824830495, 0.00580932945, 0.0286153853, 0.00418213708, 0.00391395856, 0.013213234, -0.0369361714, 0.0184535906, 0.0049214405, -0.00553390244, -0.0146845924, 0.00681318715, -0.0162936654, -0.00377262128, 0.0356315188, 0.023324294, 0.00148947875, 0.0275571682, 0.00991536211, -5.33695893e-05, -0.0254407302, -0.0124811791, -0.0221501067, 0.00401905552, -0.00232119486, 0.0208599493, 0.0032417, 0.0261945296, -0.0344428346, -0.0151629653, -0.00142968213, 0.0208309572, 0.0361533798, 0.0123217218, -0.010125556, 0.00933551602, -0.00995885, -0.0223675482, -0.00463876594, -6.61386512e-05, 0.000593435834, 0.0235707276, 0.0148150586, -0.00937900413, -6.00230924e-05, 0.0264699571, 0.0579845719, -0.00781342108, 0.00803086348, -0.0120245507, 0.0349067114, 0.00403355155, -0.00209831679, 0.0173953716, 0.0221211147, -0.002330255, 0.0189754516, 0.0263249949, -0.00430173054, 0.033660043, -0.00619347719, 0.0104734637, 0.0183811095, -0.0186565351, -0.0161052141, -0.00978489686, -0.0277746096, -0.00568973599, 0.00721545517, -0.0164821148, 0.00829179399, 0.00183376204, 0.0264699571, -0.0343848504, 0.000387545326, 0.00150941091, 0.0100313313, 0.000408610038, 0.0190479327, -0.0148730427, 0.0172504093, 0.0350226797, 0.0320654698, 0.0235417355, -0.0129088154, 0.0305288769, 0.00196603942, -0.0022704585, 0.0099371057, 0.0036113516, -0.00225958624, -0.0312826782, -0.00927028339, -0.0287168585, 0.000838511274, 0.00191711495, -0.0139597859, -0.0199177, 0.0186130479, -0.0170474648, 0.00599415507, -0.00655225664, 0.0101038115, -0.0391395874, -0.00880640652, -0.00673708227, 0.00059207686, -0.00724807149, 0.0268178638, 0.00402630353, 0.0184390936, -0.00748001, -0.0150325, -0.0218166951, 0.021758711, 0.009081834, -0.00618622918, 0.0106836576, 0.028021045, 0.00882815104, -0.0351096578, 0.0130465282, 0.0153949037, -0.012959552, -0.0223965403, 0.0106691616, 0.0215267725, 0.0367912091, -0.0161197111, 0.0157863, 0.00684217969, 0.0152644385, -0.012945056, -0.00197147555, -0.00698714098, 0.0106836576, -0.0302389544, -0.0072806878, 0.00208200864, 0.0122419931, -0.0114809452, 0.00938625261, -0.000659121491, 0.0190479327, -0.0219181683, 0.00865419768, 0.00428723451, 0.00213818112, 0.0224110372, 0.00906733703, 0.0110170683, -0.0350516737, 0.000866144546, -0.00628045388, 0.00232300698, 0.0167285483, 0.0107633863, 0.00121858204, 0.00687117176, -0.0256146844, -0.00434159487, -0.000911445, 0.0107416417, -0.0293112, -0.0252667777, -0.0240780935, -0.0153079266, 0.00888613518, 0.00309130247, -0.00876291841, -0.0185115747, 0.0100530749, 0.014510639, 0.0116186589, -0.00225596223, 0.0185115747, -0.0194538236, -0.00557739101, -0.0117853638, -0.0255132113, 0.00441045128, 0.00288110832, -0.00799462292, 0.0389946252, -0.00337397726, 0.016090719, 0.0141119948, 0.0182071552, -0.00425824197, -0.0235272404, 0.00605213968, -0.0151774613, 0.0126986215, 0.0220631287, 0.0213963073, 0.00919055473, -0.0220196415, -0.0125174196, -0.0114374571, -0.0116983876, 0.00954571, -0.0113069918, 0.0188159943, 0.0157863, -0.00454454077, -0.0703352839, 2.69254524e-05, 0.00920505077, 0.0270498022, 0.00950946938, -0.0159747489, -0.0280500371, 0.0290792622, -0.029543139, -0.0260060802, -0.00148766662, -0.00237374334, -0.024426, 0.0071973349, 0.0157863, 0.0185405668, 0.0120680388, 0.00392120657, 0.0214253, 0.00608475599, 0.0242230557, -3.41169e-06, -0.000189922124, -0.0012638825, 0.0191349089, -0.00348451035, 0.0240635965, -0.00277057523, 0.0112562552, -0.00853822846, 0.0124666831, -0.0077047, 0.0107633863, 0.00158913969, 0.00192979898, 0.0226139836, 0.0183376204, 0.0309347697, -0.0229328983, -0.0211498719, 0.0199032035, -0.0142352125, 0.0265714303, -0.0187000241, -0.0319494978, 0.00746551342, -0.0222225878, 0.0190044437, -0.00696177268, 0.0133074597, 0.00788590219, -0.00561725534, 0.00762497121, 0.00395382289, -0.00884264708, -0.00597603479, 0.00603764364, -0.0137930801, 0.0168445185, 0.0166270752, 0.0179027356, 0.0211353768, 0.0187145211, 0.00191167882, -0.0176852942, -0.0178157594, 0.0219761524, 0.0231358446, -0.000867050549, -0.004787351, 0.00714297453, -0.0296011232, 0.0158587806, 0.00749450596, 0.0099660987, -0.00424736971, 0.000939531252, 0.027484687, -0.0221790988, -0.0114084641, -0.00833528209, -0.0099371057, -0.006994389, -0.00212006085, -0.0278036017, 0.0136916069, -0.00021030732, -0.00854547601, -0.00658487296, 0.0107561378, -0.0041205287, 0.000732055225, -0.0221066177, 0.010364742, -0.0253682509, 0.00464963773, 0.0096254386, 0.0136916069, -0.0120680388, -0.00285211601, -0.0180621948, 0.010082067, 0.0144599024, -0.00760322716, 0.0262670107, -0.00438508345, -0.0108503634, -0.0172504093, -0.0040951604, -0.0208019651, -0.0154818809, 0.0143294372, 0.0203380883, -0.00547591783, 0.0103212539, -0.0242230557, -0.0209179334, -0.0101980362, 0.0265279412, 0.0189754516, -0.0065884972, -0.0130102886, 0.0459817648, -0.0300070159, 0.00676969858, -0.00992261, -0.0136118783, 0.00945148524, 0.0141409878, 0.0266729034, -0.0178737435, 0.00539256539, -0.00164984225, -0.000453004468, 0.0045010522, 0.0149890119, 0.0257886387, -0.00267272629, -0.0389076471, 0.0301809702, 0.00108539872, -0.0105169518, 0.0262960028, 0.0238896441, -0.000318009144, 0.00481996732, -0.00472574262, 0.0147135854, 0.00298982952, -0.000237600849, -0.0170764569, -0.027992053, -0.0137423435, -0.0213238262, 0.0145541271, 0.0130755212, -0.0172504093, 0.00766121177, -0.00600140309, 0.00733504817, 0.023817163, 0.00680231489, -0.0257306546, -0.019178398, 0.015583354, -0.00235381117, -0.0280500371, -0.000347227935, 0.0264844541, -0.027499184, 0.0104589667, 0.0390526094, -0.0112417592, 0.000366933615, -0.00497217709, 0.00907458551, 0.0157718044, 0.00154927524, -0.000784603762, 0.0206280109, 0.00987187307, -0.0101038115, 0.0352836102, -0.0134524209, -0.00791489426, 0.0109373396, 0.00666097784, 0.00749450596, 0.0190769248, -0.0034718262, 0.00526209967, -0.037371058, 0.0159602538, 0.00517512299, -0.00719371112, -0.0313696526, -0.0356025286, 0.00998784229, 0.028977789, 0.0261365455, 0.0297460854, -0.0201786309, -0.0177722704, 0.0299490318, 0.00885714311, -0.00311848265, -0.00309130247, 0.0103937341, 0.00655588042, 0.0366462506, 0.0272817407, 0.0146845924, 0.00142515206, -0.0139525374, 0.00959644653, 0.0174968448, -0.0195987858, -0.019178398, -0.0171344411, -0.0121115278, 0.0070886137, -0.0110170683, -0.0156993233, -0.0196277779, 0.0061681089, -0.004540917, 0.0105749359, -0.00476198317, 0.0113359839, 4.28655476e-05, 0.00299345353, 0.0148150586, 0.0338919833, 0.0196277779, 0.0133581953, 0.0131045133, -0.00948047731, -0.00137441559, -0.00853098, 0.000381203252, 0.00652688835, 0.0109445881, 0.0153514156, 0.00966892764, 0.0180766899, 0.0145541271, 0.00875567, 0.0305868611, -0.00762497121, 0.0500116944, -0.0232953019, 0.0141917244, 0.0250928234, -0.0289198048, -0.0128870709, 0.0153804077, 0.0133509478, 0.00750175398, 0.0114736976, 0.00537806889, -0.0046097734, 0.0100603234, -0.0110750534, -0.0203090962, -0.0100603234, 0.0209034383, -0.0519251823, -0.00117599964, 0.0205265377, -0.00330512063, -0.010096564, -0.00642903941, -0.00593617046, -0.00336854113, -0.0119230775, 0.00988636911, 0.0405312143, 0.00296083721, -0.00815408, 0.00399731146, 0.0189174674, 0.00734954467, -0.0321524441, 0.00062786421, -0.0136626149, -0.0138075761, 0.00512076262, 0.0168880057, -0.00588181, 0.0117636202, -0.00444669183, -0.00303875399, -0.0188159943, -0.0120535428, -0.000783697702, -0.0131117608, -0.00816857629, -0.00427636225, 0.00511713838, 0.0288183317, -0.00072979019, 0.0120173022, -0.0236432087, 0.0151629653, 0.0275716633, 0.0261945296, 0.00387047022, 0.00874842238, 0.00121495803, -0.0060340194, -0.00159185776, -0.00958919898, 0.00141790393, -2.63025722e-05, -0.0120752873, 0.0142787006, 0.0287458505, 0.01424246, 0.00125029229, -0.000762406504, -0.00830629, 0.009842881, 0.0318915136, 0.00191349082, 0.0208309572, -0.00913981814, 0.00605213968, -0.0216862299, 0.006874796, -0.000507818, -0.0033830374, -0.0169894788, 0.0147135854, 0.00314022694, 0.0102777658, 0.00297533325, 0.00256762933, 0.00524035562, -0.00176218734, -0.00417488907, 0.00101382402, -0.0202366151, 0.00105550035, -0.00571148051, 0.00874117389, 0.0212513451, -0.00884989556, 0.0158587806, -0.00941524468, -0.00147407653, 0.00066727557, -0.0105386963, -0.00162628607, 0.0118288528, -0.000138732619, 0.0167140532, 0.00234656315, -0.00329062436, -0.0190624278, 0.00871943, -0.000594341836, 0.0116114104, -0.000789133774, 0.0195263047, 0.0223530531, -0.00244078808, 0.0251508076, 0.0081903208, 0.0013336452, -0.0145686241, -0.0128798233, -0.00493956078, 0.00974140782, -0.00479097525, 0.0066827219, -0.00150306884, -0.00313479081, -0.00592892244, 0.00614636438, 0.0050990181, 0.000814502, 0.00790039822, 0.0287748445, -0.00932826754, 0.0239041392, -0.00303694187, -0.0165256038, -0.0114519531, 0.00535994908, 0.000285619317, -0.020743981, 0.012452187, 0.00354249496, -0.00194791926, 0.0124014504, 0.00137713354, 0.00691828411, 0.00324351201, 0.0175258368, 0.000607479, 0.011647651, 0.00913981814, 0.0095312139, -0.0140322661, 0.0120173022, 0.0151194772, 0.0258901119, 0.00173500716, 0.0153369196, -0.000175086228, -0.00968342368, 0.0149165308, -0.0292532165, 0.0199466925, -0.00280137965, 0.0107706338, 0.00863970164, 0.0165400989, -0.0127203651, -0.0171924252, -0.0111692781, 0.0103574945, 0.00201133988, 0.00113069918, -0.00811059214, -0.0395744704, -0.0101835402, 0.0123217218, -0.00421837764, 0.00333048892, -0.00264917, -0.00933551602, 0.00872667786, -0.0115461778, -0.00930652395, -0.0315726, -0.0157428104, -0.0156703312, -0.00301882182, -0.0121332714, -0.00210375269, -0.00596153876, 0.0189464595, 0.0275426712, 0.00925578736, 0.00930652395, -0.0162791684, -0.0124304425, 0.00851648394, -0.023860652, -0.0145541271, -0.00466051, -0.00337578938, 0.00840776321, -0.0077119479, -0.00157917361, 0.00694365241, -0.00271802675, -0.0219906494, -0.0279485639, -0.0211063847, -0.00388134224, -0.00399006344, -0.00522948336, -0.0038378539, 0.00131190091, -0.00665373, 0.0171344411, -0.0104662152, -0.0164386258, -0.0187435132, -0.012437691, 0.00784241315, -0.0221501067, 0.00455903681, -0.00638917508, 0.0138148246, -0.00705237361, -0.00147498259, 0.00169333071, 0.000472030661, 0.00698714098, 0.00076965458, -0.0106111765, -0.00631669443, -0.0134451725, 0.0142134679, 0.00369651639, -0.00502653746, 0.00157373748, 0.0200916547, 0.00269447058, 0.023324294, -0.01191583, -0.0134089319, -0.0225270055, -0.0274122059, 0.0376899727, -0.000363762578, -0.0226139836, 0.0186565351, 0.00369651639, -0.000241451387, 0.00796563085, 0.0033884733, 0.00309130247, -0.0165111069, 0.0170474648, 0.0285718981, -0.00586731406, 0.0201206468, 0.0073278, -0.0042038816, -0.0117346281, 0.0195408, 0.00285211601, 0.0201206468, 0.0418938547, 0.00390308653, 0.0255711954, -0.000439414347, 0.00864694919, 0.00268722256, -0.0107054012, -0.000726166181, 0.0156558342, -0.0281805024, -0.0160182379, -0.00196785131, -0.0122057525, -0.0112055186, 0.00215992541, 0.00692915637, 0.00422200141, 0.0164096337, 0.0172504093, -0.00068947277, 0.00731330412, 0.00834253058, -0.00339572155, -0.0102125322, 0.0235417355, 0.00568611221, 0.0164966099, -0.00945148524, -0.0298330616, -0.0105314478, 0.0183811095, 0.0080816, -0.00487432815, -0.00717921462, -0.0208164621, 0.0155108729, -0.0102270292, -0.0119955586, -0.0220486335, -0.0179752167, 0.0219036713, -0.00500841718, 0.0290067829, 0.00966167916, 0.0076177232, -0.000121858204, 0.00165890239, 0.0150469961, -0.00629495, 0.000560819521, -0.000619257102, -0.0292532165, -0.003754501, -0.00710673397, -0.00566436769, 0.0163516495, 0.00272889901, -0.00201677578, -7.79309266e-06, 0.00978489686, -0.00308586634, -0.000966711552, -0.0143656777, -0.00376899727, 0.0194538236, -0.0240780935, -0.0163081605, 0.0082845455, -0.00706324587, -0.0219616573, 0.00726256752, -0.00469312631, 0.000843041285, 0.0230923556, 0.0122564891, 0.00107452658, -3.79957492e-05, -0.0223675482, 0.0140830027, 0.0109300921, -0.018149171, 0.0128073422, 0.0168445185, -0.0120825348, -0.00693278, -0.00977764837, -0.00518961903, -0.010589432, 0.0126478849, 0.0126986215, 0.00112707517, 0.0144816469, -0.00647252798, -0.0182071552, 0.0093137715, -0.000475201698, 0.0237591788, 0.0148078101, -0.0213673152, 0.0166850612, -0.0175403338, -0.00833528209, 0.00945148524, 0.00235381117, 0.000163987614, 0.00374362897, -0.0205555316, 0.0195263047, 0.0138728088, -0.0035261868, 0.00521498732, -0.00136716745, 0.0183666125, 0.00353343482, 0.00442494778, 0.018163668, 0.00917605869, 0.0119375736, 0.018149171, -0.00601227535, -0.00711398199, 0.0162936654, -0.00390308653, 0.00435971515, 0.0123072257, -0.0219906494, 0.0120390467, -0.0156558342, 0.0120607913, 0.0185550638, 0.00348632247, -0.00641091913, 0.00632031821, 0.00785690919, -0.00487070391, 0.000659574522, -0.000884717738, 0.00978489686, 0.0172649063, -0.0135104051, 0.00179933372, 0.00374725298, -0.0077264444, -0.000857990468, -0.0296446122, 0.012974048, -0.00629857415, 0.0121912565, 0.0153369196, -0.00285211601, -0.0145758716, 0.00937175658, -0.0149890119, 0.00789315, 0.0107706338, -0.0217732061, 0.00330330851, 0.0093427645, -0.00769745186, 0.000345189415, 0.0206280109, 0.00759597868, -0.0048852, 0.0047184946, 0.00433072262, 0.0197582431, 0.0045264205, -0.0250493344, 0.0097486563, 0.0290792622, -0.00675157877, 0.00219797762, -0.0278036017, -0.0224835183, 0.013466917, 0.0141192432, -0.0282094944, -0.00149310275, 0.025397243, 0.0214253, -0.00576221664, 0.000630582217, -0.00328700035, -0.00875567, -0.00758148264, 0.0113867205, -0.0302679464, 0.00129196874, -0.00850923546, -0.0185695589, 0.0135466456, 0.0135393972, -0.0135973822, 0.0117491242, -0.00819756929, -0.00524035562, 0.0120970309, 0.00250964472, 0.00140612584, 0.0170474648, -0.0220631287, -0.00233569113, 0.00686754752, -0.00684217969, 0.00251870486, 0.0174388606, 0.00831353758, -0.00100838789, -0.0177577753, 0.0073749125, -0.00194429513, 0.0122999772, 0.0145976162, -0.0110678049, -0.00291010062, 0.0281370133, 0.0332541503, -0.00893687177, 0.00181382988, 0.0018790625, 0.00162628607, 0.022758944, -0.0182941332, -0.0076177232, 0.0022450902, -0.0106401686, -0.00533458078, 0.0102922618, 0.00821931288, 0.0203670803, -0.016003741, 0.00265098223, 0.000662292528, 0.0115244333, -0.00325076, 0.0204830505, 0.0126623809, -0.00108630466, -0.00176490541, -0.00677332282, 0.00559551129, 0.00384510192, 0.0137858316, 0.00351893879, 0.00199684361, 0.0335730687, 0.00601589913, -0.012734862, 0.0205265377, -0.0263105, -0.0151484692, 0.0371101275, 0.00901660137, 0.00399368722, -0.00901660137, 0.00530921249, -0.00938625261, 0.0182941332, -0.00790039822, -0.00284668, 0.0176418051, 0.0199321974, 0.0268323608, -0.00855997205, -0.0334860906, 0.0151049811, 4.33468667e-05, 0.00213093311, 8.86756243e-05, -0.0115316818, 0.00146864052, -0.00687842, -0.0193233583, -0.00115153741, -0.0159457568, -0.00588905811, 0.0123072257, 0.018120179, -0.00750175398, -0.0159602538, 0.028992286, 0.0195987858, 0.00729880808, -0.015583354, -0.0106909052, -0.00861795712, 0.00692553213, 0.0213383231, 0.0145976162, 0.00279956753, 0.0248463899, 0.0151049811, 0.0199756846, -0.0231938288, -0.0203090962, 0.00526572391, -0.0323264, -0.0236287136, -0.0267163906, -0.0109880762, -5.45021e-07, 0.00406254409, 0.0125101712, -0.0159022696, 0.00436333893, 0.00264735799, -0.0111040454, -0.0222515799, -0.0112200147, -0.00824830495, 0.00557739101, -0.00418576133, 0.000684489729, -0.0139307929, -0.013184242, -0.00474023866, -0.0184390936, 0.026426468, -0.00630944641, -0.00377262128, 0.00794388633, -0.0160762221, -0.0106764091, 0.0249913502, 0.0145178875, 0.0209904145, 0.00891512819, -0.00106274849, 0.0156558342, 0.0232373178, -0.00711398199, -0.0113722244, 0.00612462033, -0.0146193597, 0.0110315643, 0.0158877727, -0.0108793555, 0.00654500863, -0.0109445881, -0.0131552499, -0.0011941198, -0.0124811791, 0.0261075534, 0.00661386503, 0.0124594346, -0.0159602538, -0.000343603897, 0.0103285015, -0.00929202791, 0.0186130479, -0.00559188705, -0.004540917, 0.0198742114, 0.00986462552, 0.022787936, 0.013198738, -0.0283399597, 0.0085962126, 0.0115026897, 0.00621884549, 0.0135466456, -0.0105024558, 0.016090719, 0.00154927524, -0.00530921249, -0.026919337, -0.010872107, -0.0107054012, -0.00385597395, 0.0282094944, 0.00327069219, -0.0264699571, 0.0114374571, 0.00970516726, -0.0265859254, -0.00182560796, 0.0140974987, -0.000582563749, 0.00714297453, 0.0431115292, 0.0206135157, 0.0210483987, 0.00537444511, 0.000620616134, -0.00197872357, -0.0159602538, -0.0169894788, 0.015583354, 0.0066573536, -0.0169314947, 0.0127493581, 0.0162791684, -0.024875382, 0.0289053097, -0.003754501, 0.0153949037, -0.00542155746, 0.0100168344, -0.0146048637, -0.0128073422, 0.00641091913, -0.0131624974, -0.00170148478, 0.0105966805, 0.00640367111, 0.0086904373, -0.00832803454, -0.0104517192, -0.00141337398, -0.0181781631, 0.00769020384, -0.0205555316, 0.0116331549, -0.000657309487, -0.00590355415, -0.0156848263, -1.9790632e-05, -0.00842225924, 0.00586006558, 0.00737128872, 0.00439595524, 0.0250638314, 0.014793314, -0.013184242, -0.00132277305, -0.00924853887, -0.00205664034, 0.028021045, 0.0175693259, -0.0146773448, -0.0211788639, 0.018627543, -0.00716471858, 0.0195263047, -0.0096544316, 0.0151049811, 0.00819756929, 0.00538531691, -0.00419663358, 0.00354430685, 0.00829904154, -0.013988778, -0.0125971483, -0.0103212539, -0.00314928708, -0.0184101015, 0.00634206273, -0.0128870709, 0.00617535692, -0.00257125334, -0.00353887095, 0.00517874723, 0.0334281065, -0.011676643, 0.000991173787, -0.00433072262, 0.0198597163, 0.0304129086, -0.00952396635, -0.022758944, -0.00314928708, -0.0211933609, -0.00966892764, -0.026440965, -0.0112924958, -0.0105604399, 0.00586731406, 0.00243172795, -0.00999509078, 0.0200916547, -0.00315834722, 0.0221790988, 0.0173228905, -0.000985737774, -0.0134161804, 0.0231648367, -0.0230778605, -0.00662473729, 0.0138873048, 0.0278760828, -0.0286588743, -0.0117563717, 0.0125319157, -0.0100748194, -0.0113722244, 0.0340079516, 0.0208019651, -0.00282131182, 0.0148875387, 0.0152354464, -0.000561272551, -0.00992261, -0.0380668715, -2.19990288e-05, -0.00790764578, 0.0151774613, 0.0196132809, -0.0172649063, 0.00544692576, -0.0193523504, -0.00858896505, -0.00824830495, 0.0104734637, 0.00336129311, 0.0117418757, 0.00913981814, -0.00672983425, 0.0101183075, 0.00315653509, 0.00348813436, -0.0152499424, 0.00608475599, 0.00274520717, 0.0278036017, -0.00325257215, -0.0251218155, 0.00539981341, 0.00431985082, -0.00575134484, 0.014256957, -0.00907458551, 0.0038378539, 0.00971966423, -0.0132639706, -0.0218456872, -0.00342652574, -0.0180766899, 0.0116838915, -0.00603764364, 0.0288038366, -0.00381248561, 0.00414227275, 0.0097486563, -0.00336129311, 0.0081903208, 0.0199032035, -0.000662292528, 0.0230923556, -0.0122927288, -0.0030170097, 0.0105749359, 0.00182742, 0.0316015929, 0.022266075, -0.00739303278, 0.00313660293, 0.00698351674, 0.013764088, -0.0141047472, -0.0247884039, -0.0120897833, -0.0068602995, 0.0184535906, 0.00138256967, -0.0198742114, -0.0157283153, 0.020743981, -0.0107996268, -0.0243535209, 0.00498667313, 0.0122564891, 0.00326525629, 0.00634931074, -0.0169604868, 0.0107923783, 0.0138873048, -0.0142134679, 0.0176563021, -0.000179276525, 0.000402267964, 0.00100295187, 0.0188739784, 0.0204540584, -0.0205410346, -0.0244694892, 0.013988778, -0.00737128872, -0.0130320322, 0.0259770881, 0.00196785131, -0.0134016844, 0.00938625261, -0.00565711968, -0.0311667081, -0.0239041392, 0.000978489639, 0.00683855545, -0.00882090256, 0.00276513933, -0.0182651393, -0.0387916788, 0.00468950206, 0.00539256539, -0.0100168344, -0.00592892244, -0.0147208329, -0.0051497547, 0.00856722053, 0.0205700267, 0.0049468088, 0.012705869, -0.00347363832, -0.00680231489, 0.0182216521, 5.94002122e-05, -0.00152753107, -0.0012792846, -0.00292097288, 0.00431622658, -0.00432709884, -0.0149455238, -0.00644353544, 0.00160816591, -0.00432709884, -0.00794388633, 0.00318915141, 0.00837877, -0.026440965, -0.0134596685, -0.0096254386, 0.0349067114, -0.0159167647, 0.00114428927, 0.00637830282, -0.0100023383, 0.0132059865, 0.00832803454, -0.0105531923, 0.00254226103, -0.00475835893, -0.00171779294, 0.0134306764, -0.00751625, -4.66594611e-05, 0.025904607, -0.00625871, -0.0148005616, 0.00575859286, -0.0202511121, 0.00890788, -0.0241650697, 0.0144236619, 0.00373638095, 0.00716109481, 0.0048380876, 0.0119810626, 0.00853098, 0.0283109676, -0.00433797063, 0.00581295323, 0.000687660766, 0.00696539646, -0.0128145907, -0.0173373874, -0.0114302086, 0.00381248561, 0.00374362897, -0.0265714303, 0.00247884053, 0.0258321259, 0.00169876672, 0.0059905313, 0.0117201312, -0.00323807588, -0.00482359156, 0.00483083958, 0.01762731, -0.017148938, -0.0122709852, -0.00127747259, -0.00043828183, 0.0102560213, 0.00273252302, 0.0198017322, -0.0178882405, 0.0155108729, 0.010364742, 0.0143076926, -0.00499392115, -0.0123144733, 0.00291553675, -0.00141609192, 0.00325619616, -0.0122492407, 0.0146483527, 0.0234837513, -0.00340659358, 0.00601227535, -0.0213093311, -0.0280500371, -0.0144381588, -0.0077047, 0.0271367803, 0.00294815307, 0.0205265377, -0.0128725749, -0.0272817407, -0.0240346044, -0.0152934305, 0.000321859668, 0.000481996743, 0.00220341375, -0.000543152331, 0.00228495453, 0.0324423686, -0.00595791498, 0.00139434775, 0.00874117389, 0.0119593181, -0.00795838237, 0.0110388128, 0.000764671538, 0.0124014504, 0.0260205772, -0.00493956078, -0.0796128139, -0.0251218155, 0.0143511817, 0.0157863, 0.00786415767, 0.0323843844, 0.00352437468, -0.00492506474, 0.00708136568, 0.0168300215, 0.0117273796, -0.00916881, 0.0184680857, 0.00321995583, -0.0241940618, -0.00865419768, 0.0149745159, -0.00879915897, -0.0180621948, 0.00634931074, -0.00940799713, -0.00266547827, -0.0123652099, 0.00510989036, 0.0085019879, -0.00517512299, -0.00261474168, -0.0188884735, -0.00680956338, -0.0144599024, 2.89498166e-05, 0.0025023967, -0.0217297189, 0.0121405199, -0.00224871421, -0.0228314251, -0.000237827349, 0.00137260358, 0.00230851071, -0.00896586478, -0.000635112287, -0.00586731406, -0.0093137715, 0.000156513037, -0.00682768319, 0.00937175658, 0.000425144681, -0.0184101015, -0.0205845237, 0.00945148524, -0.00584556954, 0.0129233114, -0.00937175658, -0.0144454064, -0.0258031338, 0.0121767605, -0.0130030401, -0.00782067, 0.00177668349, 0.0287168585, 0.00304600201, -0.0292822085, 0.0107488902, 0.00182560796, 0.0252812728, 0.0181781631, -0.00618985295, 0.0196277779, 0.00833528209, -0.003754501, -0.00935726054, -0.0241650697, -0.00600140309, -0.0105241993, 0.00713572651, 0.00624058954, -0.00479097525, 0.00105821842, 0.00327612832, 0.00125844637, 0.0210483987, -0.0149745159, -0.0172069222, 0.0122347446, 0.0151919574, 0.00161088386, 0.021787703, -0.00140068983, 0.0280935243, 0.0054614218, 0.0194248315, 0.00675882678, -0.0214253, 0.0071719666, 0.00754524255, 0.0118650934, -0.0078351656, -0.0129015669, 0.0123724584, 0.0234112702, 0.00507002603, -0.00818307232, -0.00094768533, 0.00594341848, 0.00567524, -0.00404804805, 0.00942249317, -0.0128218383, 0.0242955349, -0.00479822326, 0.0322394222, -0.00499754539, -0.0153804077, -0.0104734637, 0.00687117176, 0.0226139836, -0.00306774629, -0.00621884549, 0.00310036261, 0.0159602538, -0.00799462292, 0.00388496625, -0.0108141229, 0.00472574262, -0.00876291841, -0.0185985509, -0.00145505031, -0.00809609611, -0.014256957, 0.0148440506, 0.00246615638, -0.00227408251, 0.0060340194, -0.00896586478, -0.0151919574, -0.0228894092, -0.00350625464, 0.0121477675, -0.00216717343, 0.0200191736, -0.00805985555, -0.00199865573, 0.000394566887, -0.018149171, 0.000647343404, -0.0177722704, -0.0127566056, 0.0283544548, 0.0017069208, 0.010350246, -0.019700259, -0.0062623336, 0.0183086284, 0.00635293452, 0.00642541517, -0.0361243896, 0.0227444489, 0.000798193854, -0.0185115747, -0.0250348393, 0.00519686705, 0.000842135283, -0.018685529, -0.00935726054, 0.00837877, 0.0259915851, -0.00290466473, -0.0142642045, 0.000650967413, -0.0140685067, 0.0233677831, 0.0206859969, 0.0148875387, -0.00662473729, 0.00148132455, -0.0245564654, 0.00911807362, -0.0133509478, 0.00613911636, 0.00716109481, 0.0116548985, -0.0078351656, -0.0185260698, 0.0032996845, 0.0311667081, -0.000309855066, -0.00192073896, 0.00872667786, 0.00574409682, -0.00966167916, 0.0139597859, 0.0285863932, -0.00978489686, 0.0225849915, -0.0258466229, 0.00206388836, 0.00515337894, 0.01864204, -0.00464601396, 0.00582382549, -0.0112924958, -0.00601227535, 0.00865419768, 0.0102632688, 0.0109010991, -0.0133074597, -0.000531827216, 0.00763946725, -0.0164241306, -0.0237736739, 0.00843675528, -0.0144164143, -0.00209469255, 0.0154094, -0.0131914904, -0.00779892504, 0.00449380418, -0.00125482236, -0.00332505279, 0.0209759194, 0.0106909052, 0.0101183075, 0.029514147, -0.0090021044, 0.0240780935, 0.013481413, 0.00932826754, 0.0107706338, -0.0262960028, 0.000886982772, 0.0065740007, -0.0174533557, 0.029021278, -0.00740752928, -0.00890063215, 0.00151847093, -0.00633119047, 0.0163516495, -0.0017069208, 0.0198597163, -0.0114809452, 0.0238896441, -0.00441769976, 0.00108086865, -0.00979939289, -0.0139090493, 0.0123797059, -0.00694002863, 0.0092195468, -0.00127837865, -0.00593617046, 0.00582020124, 0.00104281632, 0.00250602071, 0.00716834283, -0.0108358664, -0.0408211388, 0.00844400283, 0.00818307232, 0.0261655375, -0.0081468327, -0.00102650817, -0.00948047731, -0.0208164621, 0.0162646715, -0.00143964821, -0.000477466703, -0.0219471604, -0.000794569845, 0.0101038115, 0.00446118787, 0.00558826327, -0.00940074865, -0.0211788639, 0.00858171657, 0.000138392861, 0.0054360535, 0.00626958162, -0.0123579623, -0.00270353071, -0.00320002367, -0.0158732757, -0.00369651639, 0.010067571, -0.0184680857, 0.00278144749, 0.00607026, -0.00779892504, -0.000275200204, -0.0127203651, 0.0257741418, 7.32168483e-05, 0.000397964439, 0.00853098, -0.0080816, -0.0157718044, 0.00698714098, 0.0136191268, 0.00308586634, -0.0234982483, 0.0206715, -0.00844400283, -0.00330693251, -0.020700492, -0.016569091, -0.00759597868, -0.0133871883, -0.00571148051, -0.00192436296, -0.00221066177, -0.0351676419, 0.018105682, -0.0074002808, 0.00149129075, -0.000223557698, -0.0190334357, -0.0177577753, 9.76224619e-05, 0.0149745159, -0.00566074392, 0.00655588042, 0.00596153876, 0.000998421805, 0.0239331312, 0.000647796376, 0.00862520467, -0.00252414099, -0.00642541517, 0.00313841505, 0.00953846239, -0.0102632688, 0.0115534263, -0.0264989492, 0.0219616573, -0.00538169313, 0.00126207049, -0.00516425073, -0.0219471604, 0.00213999301, 0.00372550869, -0.00815408, -0.00367477234, -0.000355608499, -0.0102487728, 0.00903834496, 0.000593435834, 0.0134596685, 0.00901660137, 0.0338919833, -0.000131484543, -0.022787936, -0.00463151745, 0.0099371057, 0.0135611417, 0.0149745159, 0.00238823961, -0.0173518825, -0.0112417592, 0.0059252982, 0.000330013747, 0.0260930564, -0.0242810398, -0.00616448466, -0.00511713838, 0.0224835183, -0.0102487728, 0.0276876334, -0.000793210813, -0.0166995563, 0.00349175837, 0.0183231253, -0.0182071552, -0.0116548985, 0.0584484488, 0.0161776952, 0.00800187048, -0.0107778823, 0.0176852942, -0.0156413391, -0.00916881, 0.0338050053, -0.0374580324, -0.00378711731, -0.0148585467, 0.0122782327, 0.0124811791, 0.00853098, 0.00790764578, -0.00475835893, -0.00668634614, -0.0204540584, -0.00172504096, -0.0194248315, -0.00595429074, 0.00436333893, -0.00821206532, -0.0298040695, 0.00782791711, -0.00557739101, -0.00194610714, 0.00345551805, -0.0116548985, 0.0203960724, 0.0118143568, 0.00311667076, 0.00297533325, -0.00726981554, 0.00380161358, -0.00990811363, -0.0249333661, 0.000744739373, 0.0225994866, 0.000772825617, 0.0261800345, 0.00444669183, 0.0214253, 0.0102052847, 0.00640004734, -0.00778442854, -0.00252051675, 0.00117146957, 0.0179897137, -0.0140830027, 0.00699801324, -0.0156993233, -0.00545417378, -0.0100168344, -0.00680956338, -0.00473661488, -0.000230579273, -0.0112055186, -0.00650876807, 0.0101473, -0.00619710097, 0.0124666831, -0.0101545481, -0.0353415981, 0.00152662501, 0.013242227, -0.00892237574, 0.0204105694, -0.00938625261, -0.0141119948, 0.0161487032, -0.00839326717, -0.00935001206, 0.00270896661, 0.0135321496, 0.00152662501, -0.00215992541, -0.000738850271, 0.0113649759, 0.00798012689, -0.00425099395, 0.00263286196, -0.0159167647, -0.0119738141, 0.0103792381, 0.0043234746, -0.0224400293, -0.0164241306, -0.00716471858, 0.0106691616, 0.0131117608, 0.00670446595, 0.0106039289, 0.0283109676, 0.0037834933, -0.0107343942, -0.00431985082, -0.000733867229, 0.0118505964, -0.014256957, 0.0354575664, 0.00688204402, -0.0141482353, -0.0179027356, -0.0239621252, 0.00942974072, 0.0112997433, -0.00709223794, -0.00329606049, 0.00575496862, -0.00416764105, 0.00385597395, 0.0213383231, 0.00416764105, 0.0135683902, -0.0234692562, 0.00947323, -0.0175548289, -0.00500479341, -0.00041812312, -0.0109228436, -0.00795113482, -0.00811059214, 0.00415676879, -0.00374000496, 0.0039175828, 0.0164241306, -0.0247159246, 0.0115534263, -0.0120897833, -0.00143330614, -0.00607026, -0.00419300934, -0.0271222834, 0.00128019066, 0.00896586478, -0.014510639, 0.0139452899, 0.00255132117, 0.0385017544, -0.000348586938, -0.0177287832, -0.00315472321, 0.0118578449, -0.00178574363, -0.00236287131, 0.0167140532, -0.0296156202, 0.0103212539, -0.00745101739, 0.0168010294, 0.027934067, 0.0196277779, -0.00289379247, 0.0263105, 0.000989361783, 0.024426, -0.0222370829, 0.0336020589, -0.00010186938, 0.0162066873, -0.00187181449, -0.00262380182, 0.0107126497, 0.017148938, -0.0184825826, -0.00424374593, 0.00564987166, 0.0213093311, -0.00010504041, -0.0110315643, 0.0134016844, 0.00670809, 0.0257451497, 0.00119774381, -0.00456266105, 0.00804535951, -0.00950946938, 0.00434159487, -0.0521571226, 0.0158732757, 0.0164821148, 0.00278869551, 0.0358344652, 0.0272672456, -0.0243100319, -0.0164676178, 0.00452279672, 5.30581492e-05, 0.00907458551, -0.00913257, 0.0155108729, 0.00967617519, 0.00322901574, -0.0282964706, -0.0299490318, 0.0375160165, -0.00221066177, 8.34094462e-05, -0.0136626149, 0.0155978501, -0.0095312139, 0.00788590219, 0.0164531227, -0.014735329, -0.0072806878, 0.0128798233, 0.00378711731, 0.00170148478, 0.010886603, -0.00958919898]
19 Sep, 2022
unordered_map emplace_hint() function in C++ STL 19 Sep, 2022 The unordered_map::emplace_hint() is a built-in function in C++ STL which inserts the key and its element in the unordered_map container with a given hint. It effectively increases the container size by one as unordered_map is the container that stores keys with the element value. The hint provided does not affect the position to be entered, it only increases the speed of insertion as it points to the position from where the search for the ordering is to be started. It inserts in the same order which is followed by the container. It works similarly to unordered_map::emplace() function but is at times faster than it if the user provides position accurately. It does not insert the key with the element if it is already present in the map container as the map stores unique key only. Syntax: unordered_map_name.emplace_hint(position, key, element) Parameters: The function accepts the following parameters which are described below. position: specifies the position from where the search operation for the ordering is to be started, hence making the insertion faster. key: specifies the key to be inserted in the unordered_map container. element: specifies the element to the key which is to be inserted in the unordered_map container. Return Type: This function does not return anything. Time Complexity: O(n) in worst case. Below programs illustrate emplace_hint() method: Example 1: CPP // C++ program to illustrate the // unordered_map::emplace_hint() function #include <bits/stdc++.h> using namespace std; int main() { // initialize container unordered_map<int, int> mp; // insert elements in random order mp.emplace_hint(mp.begin(), 2, 30); mp.emplace_hint(mp.begin(), 1, 40); mp.emplace_hint(mp.begin(), 3, 60); // prints the elements cout << "\nThe unordered_map is : \n"; cout << "KEY\tELEMENT\n"; for (auto itr = mp.begin(); itr != mp.end(); itr++) cout << itr->first << "\t" << itr->second << endl; return 0; } Output: The unordered_map is : KEY ELEMENT 3 60 2 30 1 40 Example 2 CPP // C++ program to illustrate the // unordered_map::emplace_hint() function #include <bits/stdc++.h> using namespace std; int main() { // initialize container unordered_map<char, int> mp; // insert elements in random order mp.emplace_hint(mp.begin(), 'b', 30); mp.emplace_hint(mp.begin(), 'a', 40); mp.emplace_hint(mp.begin(), 'c', 60); // prints the elements cout << "\nThe unordered_map is : \n"; cout << "KEY\tELEMENT\n"; for (auto itr = mp.begin(); itr != mp.end(); itr++) cout << itr->first << "\t" << itr->second << endl; return 0; } Output: The unordered_map is : KEY ELEMENT c 60 b 30 a 40 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL
https://www.geeksforgeeks.org/unordered_map-emplace_hint-function-in-c-stl?ref=asr4
PHP
unordered_map emplace_hint() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0230917912, 0.0146522913, -0.0136970058, -0.00197929633, 0.0255521666, 0.00746359676, -0.0162329804, 0.0271466, -0.0305416435, -0.00994459, -0.00304797897, 0.0356548242, -0.0196417682, -0.00931918714, 0.0020926937, -0.00677290512, 0.00374898, 0.00168549456, -0.0139444182, -0.0171264112, -0.011525278, -0.00477642706, -0.0202602986, -0.0110854348, 0.0171126667, -0.00221124524, -0.030926507, -0.00235900516, 0.0160405487, 0.0323010162, -0.0028314935, 0.0238202829, 0.0126455054, -0.0360671803, 0.0032404107, 0.0414827541, 0.0363420807, 0.00972466823, -0.00400326448, -0.0307890549, 0.017387569, 0.01263176, -0.00344830542, 0.0190094933, -0.00911301095, 0.00806838181, 0.023050556, -0.0112228859, 0.00714745931, 0.00554271741, 0.0554202981, -0.0251123235, 0.00900305, 0.00600317866, -0.026802972, 0.0268442072, 0.0103706885, 0.0177999232, -0.00273871399, 0.0107349344, -0.0437644422, 0.0085632056, 0.0267617367, -0.0300468188, 0.00292083668, -0.0209475532, -0.0210575145, 0.0323559977, 0.019201925, -0.0195455514, -0.0312838778, 0.0316962339, 0.0191194545, -0.00798591133, -0.0184321981, -0.00598599715, -0.0157793909, -0.0250848327, 0.00535028568, 0.0286448169, -0.0112709934, 0.0032782096, 0.0064464584, -0.0224732608, 0.0853296667, -0.0334831, -0.0131472014, -0.0221158881, 0.0324934497, 0.0115321511, -0.0306790937, -0.0420050696, -0.0063261888, -0.0291121509, -0.0465409569, 0.0397233814, -0.00649800245, 0.0145973107, -0.0271053649, 0.0502246469, 0.00598599715, -0.013504575, -0.0140268886, 0.0293320734, -2.37049517e-05, 0.017222628, 0.0752132609, 0.00139427, -0.0188582968, -0.0158206262, 0.0314488225, -0.0124530736, -0.0118414154, 0.0326583907, -0.0113122286, 0.00852884352, 0.0152433319, -0.0275726989, 0.0214698687, -0.0114496797, -0.00523345219, 0.0474756248, 0.00632962491, 0.0206039269, -0.0111816507, 0.00225591683, 0.0167003144, -0.00201194105, 0.0327683501, -0.0258683041, -0.0180473346, -0.00624371786, -0.0155182341, -0.0110167088, -0.00812336244, 0.0376341231, 0.013738241, 0.0369193777, 0.00386924972, -0.00345002371, -0.0720244, -0.0107074436, -0.0412628315, 0.0034998497, -0.0198067091, -0.0435720123, -0.0240676943, 0.00157982903, -0.025332246, 0.0193393752, -0.0465684459, -0.0542107299, 0.0223358106, -0.0214286335, 0.00826768577, -0.0222121049, 0.0239027534, -0.0297444277, -0.0020806666, -0.0277651306, 0.0323559977, -0.0374142, 0.00460461341, -0.00947725587, -0.0455238186, 0.0277238954, 0.00494480459, 0.0144186243, -0.0307890549, 0.0378540456, 0.029854387, 0.0271603446, 0.0306516048, -0.0222945753, -0.041042909, -0.0145148402, 0.038128946, 0.0356273353, 0.0285348576, 0.0329332948, 0.0198067091, 0.0141024869, 0.0438469127, 0.0105425026, 0.01289979, -0.00494824117, 0.0366994552, 0.0118345432, 0.0765877739, -0.00386924972, -0.00742923422, 0.0498397835, 0.00776598928, 0.0376341231, 0.0465684459, -0.0025669, -0.0255246758, -0.014040634, -0.00583136454, 0.0638872907, 0.0174837857, -0.0331532136, -0.0133808684, -0.00927108, 0.00963532459, 0.00892745145, -0.00285039307, -0.00886559859, 0.0225007515, 0.00134358485, 0.0290571712, 0.0353249423, 0.0064705126, -0.0243975781, 0.0228718705, 0.0114290621, -0.0279575624, 0.0345277265, 0.0195455514, -0.0329332948, -0.0108586401, 0.01758, 0.0193943568, -0.0524788462, -0.0138688199, -0.00214251969, 0.0336755291, 0.0581143424, 0.00149048585, -0.0358197689, 0.0406855382, 0.0224870071, -0.000291224598, 0.00766977342, 0.0417576581, -0.0240264591, -0.0424998924, -0.0151058808, -0.0072642928, 0.0478604883, 0.0100064427, 0.0144461151, -0.0300193299, 0.00380052393, -0.00863880385, 0.0242463816, 0.00569734955, -0.000425239472, 0.00744985184, -0.00463210326, 0.0130578587, 0.0213873982, 0.0365620032, -0.00737425359, 0.00841201, 0.0541007705, 0.033538077, -0.0389811434, 0.0157519, -0.0465409569, -0.0304316822, 0.00339332502, -0.0250161067, 0.0018710536, 0.000957003562, -0.00817834307, 0.0448090732, -0.0111335423, -0.0308715254, -0.019366866, 0.0265418161, 0.00155233883, 0.0145973107, 0.00427473057, 0.0324659608, -0.00291052787, -0.0299093686, 0.00402388209, -0.0142261926, -0.0707598478, 0.0134495944, 0.00637429673, 0.0178549029, 0.00584511, 0.00505820196, -0.0200403761, -0.0469808, -0.000200592753, -0.0344177671, -0.0272428151, -0.0238752626, 0.00227309833, -0.013236545, 0.0272977967, 0.0471182503, 0.0236415956, -0.0466509163, -0.0230917912, -0.0385962799, -0.0218547322, -0.00113139465, -0.0156694297, -0.00512692751, -0.00210987497, -0.00375928869, -0.0186933558, -0.000936385884, -0.00928482413, -0.0107005714, -0.0271466, 0.0137794772, -0.0130578587, -0.0139238006, 0.0302117616, -0.0159718227, -0.0175662562, 0.0198067091, 0.00705811614, -0.0344727449, -0.00260298094, -0.0218547322, -0.0139512904, -0.0159443319, 0.00765602849, 0.0195455514, -0.0425273813, 0.00374898, 0.0190782174, -0.008611314, -0.0582243, -0.0482728407, -0.0114428075, -0.0520115122, 0.000482367584, -0.026775483, -0.0164941363, -0.00829517655, 0.0215248484, 0.0144186243, 0.00283321156, 0.0030960869, -0.0378815345, -0.0200128853, 0.00390017615, 0.0458262116, 0.0217310246, -0.00639491435, -0.017525021, -0.0118963961, 0.00661483593, 0.000837592874, -0.0130166234, 0.0229405947, 0.000204565949, 0.0139993988, -0.0461011119, -0.0113122286, -0.0144873504, -0.0445066802, 0.0317787044, 0.003367553, 0.0118963961, -0.00629526237, 0.0239027534, -0.00693441, 0.00111936778, -0.0316962339, 0.0143361539, -0.00971092284, -0.0262256768, 0.00195524236, -0.0027541772, 0.00970405061, -0.0114840427, -0.0337305106, 0.0104806498, 0.0188170616, 0.0319711342, -0.0146935266, 0.0102401096, -0.00901679508, 0.0359847099, -0.0152295865, 0.00341566093, 0.0479704477, -0.00515785394, 0.00589321787, -0.00591383548, -0.00812336244, -0.0230917912, -0.0186246298, -0.03015678, -0.0394759662, -0.0500871949, 0.0101782568, 0.00163480954, -0.0219234563, 0.00584854605, -0.0129960049, -0.0416202061, -0.0174150597, 0.00697220908, 0.00191744335, -0.00662858132, 0.0190369822, 0.00664919894, 0.00159357418, 0.00104205147, 0.00219234568, 0.0133465054, 0.0268854424, 0.0044259266, -0.0219097119, -0.0125149265, 0.0260607358, 0.017456295, -0.0505820215, 0.038568791, 0.0299093686, 0.00771100912, -0.0252772644, -0.0172363725, -0.0226794388, 0.0117108375, 0.023188008, 0.0326034091, -0.00688973861, 0.0183497276, 0.000339332502, -0.0226382036, 0.0109617282, -0.0126592498, 0.00771100912, 0.0123499846, -0.00944289379, -0.0593788922, 0.0450839736, 0.0440118536, -0.0268854424, -0.0198616907, 0.0203565136, 0.0264593437, 0.0102950903, -0.0355173759, 0.00217344612, 0.0618530139, -0.00527125131, -0.00141746493, 0.00929856952, 0.0180198438, -0.0162604693, 0.0114977881, 0.0041785147, 0.0158756059, 0.0323010162, -0.0155594693, 0.0137107512, 0.000993084512, 0.0338954516, 0.0253459904, -0.0119032692, 0.00518190814, 0.0358197689, -0.00951161887, 0.0028916283, 0.0252497736, 0.0130784763, 0.0381014571, 0.0302667413, -0.00455650548, -0.00290880981, -0.030321721, -0.0134495944, 0.0120957, 0.0221021436, -0.0234079286, -0.021208711, -0.0172638632, -0.0160680376, -0.00304282457, -0.00838451926, -0.0117726903, -0.00200678664, -0.000616812, -0.00868691225, -0.0319161564, 0.0127829565, -0.0193118844, 0.000474635977, 0.0258957949, -0.0197242387, -0.0389536545, 0.0114702974, -0.0146522913, 0.00345174177, 0.00758730294, -0.0360122, -0.0139787812, -0.000448863866, 0.0173188429, 0.0047145742, 0.0066114, -0.0187345911, 0.0196830034, 0.0239439886, -0.0219097119, 0.00267514284, -6.14771707e-05, -0.0301292893, 0.00373867108, -0.00601005089, 0.0480529182, 0.0117726903, 0.000896868703, 3.12486591e-05, -0.00266655209, 0.0132228, 0.0131472014, -0.0498672724, 0.00881749112, 0.00380052393, 0.0041785147, 0.00374210719, 0.00667325268, -0.0370568261, 0.00186589919, 0.00101799751, -0.0137863494, -0.0243151076, -0.041647695, -0.0197379831, 0.0169477258, -0.0151883513, 0.00619561, 0.00414071558, -0.0177174527, 0.0166728236, -0.0037695975, -0.0259370301, 0.00777286198, -0.0206314158, -0.00992397219, 0.030321721, -0.004395, -0.0113053564, -0.00171728013, 0.00837764703, -0.0272428151, -0.0299918391, 0.0130922208, 0.00905115716, 0.00647394871, -0.0135183195, -0.0162604693, -0.026871698, 0.000885700807, -0.0216897894, -0.0451389551, 0.00102487009, 0.00795154832, 0.0150096649, 0.010453159, 0.00969717838, -0.0189545117, 0.0150096649, -0.0139581636, 0.0282324646, -0.0137726041, -0.0130716031, 0.0125424163, 0.0106043555, -0.0247824397, 0.0203290228, 0.00772475405, -0.0320810974, 0.0192706492, 0.0182122756, 0.0203015339, 0.00434689224, 0.00950474665, -0.0198479444, -0.002135647, 0.00135904818, 0.00468364777, 0.0263768733, -0.0141299777, -0.0476405658, -0.0437094644, -0.0235591251, 0.0312563889, -0.00445685303, 0.0265830513, -0.00698595401, 0.00804089196, 0.0162054896, -0.00141059235, 0.0142674288, 0.0110648172, -0.00211846572, 0.0203565136, -0.00805463642, 0.0293045826, 0.019435592, 0.00986211933, 0.00434001954, 0.0133327609, -0.00629526237, -0.00659765489, 0.00590696279, -0.000505992037, -0.042554874, 0.00983462948, 0.0333456472, -0.026638031, -0.0140612517, -0.00718182186, 0.00147502252, 0.0348026305, -0.0168652553, 0.00195180625, -0.00853571575, -0.0355173759, -0.0221158881, -4.21212571e-05, 0.0127004851, 0.00247583864, -0.048547741, -0.00996520743, 0.00521283457, -0.0321910568, 0.0185146686, -0.0104256691, -0.00114170357, -0.0159993134, 0.00609939452, 0.00531935925, -0.0156281944, 0.0224870071, -0.00220265449, 0.0118139256, -0.0376066305, -0.00575920288, -0.0263493843, 0.0406580456, -0.00383832306, -0.0136626437, 0.00525750592, 0.0119307591, 0.0253185, 0.00758730294, -0.0362871028, 0.0118689062, 0.033538077, 0.013167819, -0.00186761736, -0.017456295, -0.0191606898, 0.0140131442, -0.0106730815, 0.0160130579, -0.0123018771, -0.00162621879, 0.00709935138, -0.0194081012, 0.00376616116, 0.00584167335, -0.0294145439, -0.0214423779, 0.00127657747, 0.0076491558, -0.0351325125, -0.0198342, -0.00783471484, 0.00416477, 0.029084662, -0.0297719166, -0.0181710403, 0.0268304627, 0.00186418113, -0.00542244734, 0.0194081012, -0.00159615139, -0.0140131442, -0.0420600474, 0.00834328402, -0.0150646446, -0.000489669677, 0.00592414429, 0.0142124481, -0.0247686952, -0.0153670376, -0.0307890549, 0.00824706815, 0.0103844339, -0.0259645209, -0.0108517678, 0.00961470697, -0.0090374127, 0.00466303, -0.00386924972, 0.0141162323, -0.00228340714, -0.0243425965, -0.0315587819, -0.00369399949, 0.049289979, -0.00245865737, -0.0189682581, -0.0567398295, -0.038128946, 0.0183909629, -0.0102950903, -0.00231089722, 0.0144461151, 0.00134014862, -0.00503071165, -0.0170164518, -0.017387569, -0.00177311967, -0.0167690385, -0.00201709545, 0.0468708389, -0.000855633349, -0.0123912198, 0.0307890549, -0.0205077101, -0.00641896809, 0.000187921483, -0.0418676175, -0.00455306889, -0.0185009241, 0.00237962278, -0.00640178705, 0.0132640349, -0.0391460843, -0.00787595, 0.0275864433, -0.0169752166, -0.0104325414, -0.00499978522, 0.00175851549, 0.0446716212, -0.0106455907, 0.0137176234, 0.0042987843, 0.0210162792, 0.0402456932, -0.00569047732, -0.0382114165, 0.0354898833, 0.0151333706, 0.0156281944, 0.0112778656, -0.0166453328, 0.0104394145, -0.0308165457, 0.0270778742, -0.00818521529, 0.0122400243, -0.0155732138, 0.020672651, 0.0173325893, 0.0189270228, 0.0194768272, -0.0322460383, -0.00914737303, 0.0213186722, 0.0407130271, 0.00170697132, 0.0231605172, 0.00828143116, 0.00957347173, 0.00409604376, -0.00214423775, 0.00529874163, -0.0318336859, 0.0182397664, 0.0247686952, 0.00923671667, 0.00629526237, 0.00883810874, 0.0452214256, 0.0233117137, 0.0188582968, -0.00474893674, 0.01289979, -0.00911988318, 0.00241914, 0.00571453106, -0.0551453978, 0.0176899619, 0.0241501648, 0.0548704937, 0.0294695236, 0.00345517811, -0.0201915726, -0.0169614702, -0.0385138094, -0.0149959195, -0.0301018, 0.00513723632, -0.00501696672, 0.0203290228, 0.0244388133, 0.0261157174, -0.0283974055, 0.0216760449, 0.0202740431, 0.0423074625, 0.0476130769, -0.0151608605, 0.0201365929, -0.0068553756, 0.0101920022, 0.0157244112, -0.0216897894, -0.0166590791, 0.00888621621, 0.0172363725, 0.00805463642, 0.037359219, -0.0218684766, 0.0429122448, -0.00301018, -0.0371667892, 0.0344177671, 0.0285623465, 0.0196555126, 0.00621966412, -0.0423074625, 0.00787595, 0.00805463642, -0.014473605, -0.0219784379, -0.0216897894, 0.00880374573, 0.0131128384, -0.00317512127, -0.020975044, 0.0370568261, -0.0116627291, 0.00462866714, -0.0576195195, -0.0100682965, 0.0112160128, 0.00885872636, -0.0141987028, -0.0162329804, 0.00960096251, 0.0207138862, 0.0414552651, 0.00633993372, -0.0127623379, -0.0116970921, 0.00411322527, 0.0272153262, -0.0464859754, -0.0415652245, 0.0282874443, 0.00413040677, -0.00168205833, 0.0243838318, -0.00103346072, 0.0494274311, 0.0108998753, 0.00881061796, -0.0221708696, -0.0324934497, 0.03516, -0.0145010957, 0.0224320255, 0.022954341, -0.0174425505, -0.00125681888, -0.0186658651, -0.0116764745, 0.00421631383, 0.0107830418, -0.01929814, -0.0112160128, 0.0401082411, -0.0249473825, -0.0119719943, -0.0287547782, 0.0225419868, 0.010755552, 0.00622653682, -0.00663545402, -0.038568791, -0.0260744821, 0.0404381268, 0.00237103226, -0.00468708389, 0.00320948404, 0.0154220182, -0.0104600322, -0.0154632535, 0.0312014092, -0.00320432964, -0.0161092728, 0.00841201, -0.0331807062, -0.00554958964, 0.00931231491, 0.0232154969, 0.00355311204, 0.053578455, 0.0213599075, 0.00198960537, 0.0258957949, -0.00323010189, -0.00322494749, -0.0274764821, -0.0468983278, -0.00387268583, 0.0223220661, -0.00773849944, 0.00906490255, 0.00868691225, -0.0285073668, 0.0104737766, 0.01758, 0.0158756059, -0.0051338, -0.0192431603, -0.0163704306, 0.0167278033, 0.0447540917, -0.0211674757, 0.00364245521, -0.00265796133, 0.0146110561, 0.000781323819, 0.00920922682, 0.0142536834, -0.0212224554, -0.0248786565, -0.0246449895, -0.0508294329, -0.0150234094, 0.0108723855, 0.0115665132, -0.0337305106, -0.00720931217, -0.0472007208, 0.0124874357, -0.034280315, -0.00747734215, -0.00652205665, 0.0126867406, -0.0114290621, 0.00483140768, 0.0120682102, -0.023050556, -0.0068485029, -0.0252497736, -0.00988273695, -0.00180748245, -0.012968515, 0.0103706885, 0.034005411, -0.00318199396, 0.0204939656, -0.00191744335, 0.00760792056, 0.00340535189, -0.024864912, -0.0218959674, -0.0307340752, -0.00355311204, 0.0241914, -0.0181572959, 0.014542331, 0.026404364, -0.020975044, -0.00221468159, -0.0138688199, 0.00960783474, 0.00663889, 0.00702031702, 0.0412903242, -0.0083707748, 0.0307890549, 0.0141574675, 0.0290021915, -0.0032352563, 0.0346376859, -0.0342253335, -0.0371667892, 0.0206314158, -0.0214423779, -0.00244834833, 0.011758945, -0.0120750824, 0.046073623, 0.0619079955, -0.00225076242, -0.0229268502, 0.0193393752, -0.0226244573, 0.0107761696, -0.0249336362, -0.0454963259, 0.0207001418, 0.000788625912, -0.0170714315, 0.00437438255, 0.0413727947, -0.0154220182, 0.0182672571, 0.0328508243, -0.00241914, 0.0234079286, -0.0117864357, -0.0187895708, 0.0113672093, -0.0246312451, -0.0193531197, 0.0212362017, 0.0188582968, -0.00261157169, 0.00545681035, -0.015545724, 0.00339332502, 0.00716807693, 0.0156281944, 0.0135939177, -0.000764142431, 0.00343799661, 0.00720244, -0.0126523776, -0.0175525099, 0.00243803952, 0.00144237792, -0.0249061473, -0.000217774155, -0.0272015799, -0.0223633014, -0.00447403453, -0.00682444917, 0.00937416777, 0.0151058808, -0.0273115411, -0.0213049259, -0.00923671667, -0.000800652895, 0.0391185954, -0.000613805256, 0.00873502, 0.0133946138, 0.0194630809, 0.0130578587, 0.0034397149, 0.017758688, -0.000257076579, 0.000749538245, 0.00535372179, -0.00865254924, 0.0351874903, 0.000376702024, -0.00633993372, -0.014308664, -0.000674799201, -0.0322460383, -0.0064705126, 0.0381564349, 0.0154220182, 0.0310639571, 0.017057687, 0.00144495512, 0.0197104942, -0.0244525578, -0.0311739184, -0.00705124345, 0.0153945275, 0.00181779137, 0.03015678, -0.00222155405, 0.01929814, -0.03516, -0.0171126667, 0.0132090542, 0.00676259631, 0.0247137155, 0.00145784114, -0.0223770458, 0.013202182, 0.0163154509, -0.0402182043, -0.0163291954, -0.0270778742, 0.00424036756, 0.0213736519, 0.00938104, 0.0163979214, 0.01507839, 0.00681070378, 0.0521489643, -0.0208788291, 0.0176074915, 0.000641725, 0.00636398792, 0.0201915726, 0.00969030522, 0.00345345982, 0.00887934398, 0.0128516816, 0.00455650548, -0.00288475584, 0.00558738876, 0.0348851, 0.0129753873, 0.0454963259, 0.0473931544, -0.025029853, -0.0178686474, -0.0191744342, -0.0249748714, 0.0114496797, 0.000151947941, -0.00772475405, 0.00367338164, -0.0351325125, 0.0188033152, -0.0121850437, -0.00303251576, 0.0083226664, 0.0208238475, -0.00573514868, 0.0152983116, 0.00225419877, 0.017456295, 0.0222945753, 0.0161367636, 0.020906318, -0.0095665995, 0.0137657318, -0.0204114951, -0.00594819803, 0.00239508622, 0.00202224986, -0.00131265842, -0.0149684288, 0.00220437278, 0.00113053562, -0.00549117289, 0.00306859682, 0.00569047732, -0.00911301095, 0.00450152485, -0.0102469828, 0.0146110561, 0.0148309777, 0.0173325893, -0.0216210652, 0.0067110518, -0.00341737899, -0.00878312811, -0.00360809243, 0.000557965715, 0.0111747775, -0.00283321156, -0.0263631288, -0.0109548559, 0.00688973861, -0.00900992192, 0.0155732138, -0.00209097541, -0.00595850684, 0.0439293832, 0.00734676328, -0.0305416435, -0.00752545, 0.0194493365, -0.00854946114, -0.0290571712, -0.00984150171, 0.0139993988, 0.0343352966, -0.0166728236, -0.00729865534, 3.23493405e-05, -0.0237653013, 0.0251810495, -0.0111679053, -0.017758688, -0.000126927538, -0.0150921354, -0.012432456, -0.00189167133, -0.0113534639, 0.00484515261, -0.00638460554, -0.0138000948, 0.00333662634, -0.0331532136, -0.00883123558, 0.00696190028, 0.00543619273, 0.0288647395, 0.0154907433, 0.0191057082, -0.0483278222, 0.0201640818, -0.0150096649, -0.0123912198, 0.0139787812, -0.00930544175, 0.00855633337, 0.00554615352, -0.0272015799, -0.0165491179, -0.0125217987, 0.011559641, 0.00900992192, -0.0179923549, 0.00216485537, 0.0112778656, 0.0332081951, 0.00804776419, 0.00119152956, 0.0193531197, -0.0079790391, -0.0141574675, 0.000519307563, 0.00182294578, 0.0260744821, -0.000153558693, -0.0230230652, -0.00824706815, -0.0199441612, 0.00413727947, 0.00443967199, 0.0212911814, 0.0179786086, 0.00446716184, 0.00106181006, 0.0219097119, 0.0129066622, 0.00372492592, -0.0160542931, 0.00632962491, -0.0267617367, -0.00329195475, 0.0444791876, 0.0234491639, -0.000854774262, 0.000349641341, -0.00284867478, -0.00821270607, -0.0109204929, 0.00441218168, 0.00304969726, 0.027943816, -0.012597397, 0.0115184058, -0.0427198149, -0.00174562947, 0.00433314731, 0.0095665995, 0.00899617746, -0.0087487651, -0.0215935744, 0.0203427691, -0.0324659608, -0.0245350283, -0.00551179051, 0.0144873504, -0.00162106438, -0.0174700394, 0.00832954, 0.0127692111, -0.00152227143, 0.0328233317, -0.0113397194, 0.00887247082, 0.0455787964, -0.0143361539, 0.00938791316, 0.00347923208, -0.00339504308, -0.0129204076, 0.0371118076, -0.0241914, 0.0196280237, -0.00799965672, 0.0202190634, 0.00621966412, -0.000451870612, 0.0158206262, -0.00115716679, 0.0444791876, 0.0277513862, 0.00237275031, -0.0174013153, 0.00176796527, 0.024796186, -0.00173446164, 0.00706498884, 0.0208925735, 0.00288131949, 0.0123568578, 0.00862505939, -0.00332116312, 0.00207894854, 0.0187208448, 0.00570422225, 0.00729865534, -0.0100545511, -0.0127004851, -0.00783471484, 0.00664232625, -0.0135801723, 0.0048348438, 0.0316137634, 0.00460804952, 0.0402731858, 0.0138069671, 0.00869378448, 0.00743610691, -0.000505562464, -0.00892745145, 0.00876251049, 0.0153395468, -0.0166315883, -0.0196417682, 0.0111197969, -0.0130716031, 0.00730552804, -0.00938104, 0.00841888227, -0.0103363255, -0.00868691225, 0.0305691343, -0.0279850513, 0.000752974534, 0.011525278, -0.00555646233, 0.00341909705, 0.00344830542, 0.000963017053, 0.0156969205, -0.0003367553, 0.00620935531, -0.0164529011, 0.00190885272, -0.00827455893, -0.028314935, -0.000681242207, -0.0132640349, 0.00400326448, 0.00242085825, -0.014308664, 8.30210229e-06, 0.0186933558, -0.0239852238, -0.0507744513, 0.00331772701, 0.00628838968, -0.0165766068, -0.00185559038, -0.0197792184, -0.0158893522, -0.0147897424, -0.0240676943, -0.017758688, 0.00759417564, -0.00473862793, 0.0251673032, 0.00286929263, -0.0112160128, -0.0132502895, -0.00665950775, -0.00499978522, 0.0075529404, 0.0277101491, -0.00567673193, -0.0102744726, 0.0453863665, -0.0186246298, -0.00915424619, -0.00823332369, -0.0244388133, 0.00583823724, 0.00211846572, 0.00815772545, -0.00314591289, 0.0235591251, 0.0219234563, -0.00743610691, 0.0220884, -0.00201709545, 0.0224595163, -0.0015815472, 0.00493105967, 0.00448090723, 0.0109204929, -0.0218134951, -0.0299093686, 0.0316962339, -0.00887934398, -0.000566126895, -0.00375585235, 0.0227756537, 0.0159443319, 0.0126867406, -0.0246999692, -0.015312057, -0.00592758041, 0.0130647309, 0.0172776077, 0.0285623465, 0.00969717838, -0.0135664279, -0.0292221121, -0.00446028961, 0.00492418697, -0.00215111044, -0.0163017046, 0.0180748254, 0.0155319786, -0.00245522102, -0.0232567322, 0.00615781127, 0.0355173759, -0.00425411295, 0.0195455514, 0.00888621621, -0.000365319371, 0.00899617746, -0.00177311967, 0.0152845671, 0.00210987497, -0.0147485072, 0.0157381557, 0.0155594693, 0.0207001418, -0.0330982357, 0.0177037064, -0.00724367518, 0.000576865277, -0.00283836597, 0.0114290621, -0.0138344569, 0.0245900098, -0.00932606, -0.00604441389, -0.0277513862, 0.00986899156, 0.00040011169, -0.0336205475, 0.0137176234, -0.0266930107, 0.0104806498, 0.000504273863, 0.00174305227, 0.00232636044, -0.0217035357, -0.033758, 0.0068485029, 0.00603410508, -0.0199029259, -0.00818521529, 0.0103431987, -0.016384175, 0.00275589526, 0.0458262116, 0.0147897424, 0.0312014092, 0.00534341298, -0.0106799537, 0.0324109793, -0.0167690385, -0.0130441133, -0.0338954516, -0.0199716501, -0.00718182186, 0.00815772545, 0.0117520727, 0.000362527382, 0.0331807062, -0.0121506806, 0.0173600782, -0.0268991888, 0.0262669139, -0.00633306149, 0.0113672093, 0.000795068918, 0.0102332374, 0.0317787044, 0.0297169369, 0.0204802193, 0.000299815292, 0.017456295, -0.0114084445, 0.0126111424, -0.00632275268, 0.00668012537, -0.00139512913, 0.00622997293, 0.00259782653, -0.00558051653, -0.0137313688, 0.00925046206, -0.0232704785, -0.00351703097, 0.0167690385, -0.0108448947, 0.0217310246, 0.0101301493, -0.00560800638, -0.00742236152, 0.00360465609, -0.0128722992, -0.00747734215, 0.000653322437, -0.0134083591, 0.0121919159, -0.00949100126, -0.0443967171, -0.000976762152, 0.00759417564, -0.0206314158, 0.0045943046, -0.00828143116, -0.00654611038, 0.00202740426, 0.00669730688, -0.0248374213, 0.00849448051, -0.0119926119, 0.0205764361, 0.0278750919, 0.0221571233, -0.0295794848, 0.0190919638, 0.0175112747, -0.013635153, -0.011862033, 0.00274730474, -0.0120819556, 0.00216313731, 0.000363815983, 0.0197792184, 0.0185009241, 0.0032953911, 0.00270778756, -0.00131094025, -0.0139031829, -0.0325209387, 0.0170301963, -0.0091405008, 0.0188033152, -0.0109342383, 0.0223358106, 0.00447747111, -0.00992397219, 0.0357372947, -0.021139985, 0.0216760449, -0.0207963567, 0.0296619553, 0.00588634517, 0.00665263506, -0.000787337311, 0.00298784417, -0.00875563733, 0.0195043162, -0.014040634, -0.0177037064, -0.00478329975, -0.000113826725, 0.0255246758, -0.00501009403, 0.014074997, 0.0142811732, -0.0146797821, 0.0108242771, 0.0219921824, 0.0198342, 0.0396958888, 0.0126111424, 0.0176624712, -0.0282599553, 0.0161917452, 0.00237103226, -0.00086164684, -0.00311842281, -0.00747046946, 0.00153687561, 0.0166590791, -0.000661913131, 0.00166229974, 0.00372836227, -0.00488982443, 0.00616812, 0.0188857876, -0.00799965672, -0.00399295567, 0.0031630944, 0.00615781127, 0.0252497736, 0.00282805716, 0.011257248, 0.000564838294, -0.0109342383, -0.00311326841, 0.010219492, -0.0201640818, 0.0159718227, -0.0116283661, -0.00878312811, 0.00931918714, 0.00496542268, -0.0161230192, -0.0150234094, 0.00865254924, 0.00375241623, -0.00285554747, 0.0138413301, 0.0329607837, 0.0182810016, 0.0234079286, -0.0120201018, -0.00573514868, 0.000647738518, 0.0130441133, -0.00310639571, 0.020906318, -0.00374554354, 0.00629869848, 0.007119969, -0.00924358889, -0.014074997, -0.0183497276, 0.00179373741, -0.0224870071, 0.0108036594, 0.0134908296, 0.002639062, 0.0229955763, 0.00498604029, -0.0111129247, -0.00141832395, -0.00571453106, 0.00902366731, -0.025332246, -0.000932090566, 0.00261328975, -0.00749796, 0.00959408935, -0.00398264686, 0.0178686474, 0.00528499624, -0.00266483403, 0.00602379628, 0.00893432368, -0.00371805346, 0.0010875822, -0.0125286719, 0.000219707057, 0.00596537953, 0.0128929168, 0.00907864794, 0.00450839754, 0.0111610331, 0.00614062976, 0.00128860446, -0.0153395468, 0.00921609905, 0.0211262405, -0.00224904437, 0.0140200164, 0.0177037064, -0.000753404049, -0.0154769989, 0.0145698208, 0.00542932, -0.0092779519, 0.0225557312, -0.00367338164, -0.0223907903, -0.00805463642, -0.00153945282, -0.0164941363, 0.0132159274, 0.00616812, -0.0205214545, 0.0214973576, -0.00062712084, -0.0128173186, -0.00766977342, -0.0125424163, -0.0122606419, 0.011092307, -0.00429191208, 0.0122743873, -0.00900305, 0.00212362013, 0.00842575449, 0.00736050867, -0.00567673193, -0.0238202829, 0.0106181009, 0.00458399532, -0.034005411, -0.00197757827, -0.00489326054, -0.0119651221, 0.0165216271, 0.0233804397, -0.0112435035, -0.00571453106, 0.00380739663, -0.00914737303, -0.0101232762, -0.015312057, -0.0064395857, 0.00960096251, -0.00642927689, -0.0107280612, -0.0064395857, 0.0111404145, 0.00854946114, -0.000430608663, 0.00481079, -0.00300330739, -0.0164941363, 0.0072642928, -0.0142261926, 0.0111197969, -0.0204939656, -0.00121816073, 0.00698939059, 0.00239852234, -0.00144237792, -0.00495167729, 0.00527812401, 0.00419913232, -0.0178686474, -0.0143911345, -0.0130509855, 0.00495855, 0.00541901123, -0.000128430911, 0.00700313551, 0.00324212876, 0.00631244341, 0.0145285856, 0.00207035779, -0.00144151889, -0.00218547322, -0.0335655697, 0.0118826507, -0.0194905717, -0.0281499941, 0.021139985, 0.00372836227, -0.022651948, 0.0109067475, -0.0137657318, 0.0111129247, -0.0166040976, 0.0329882726, 0.0308990162, -0.0116421115, 0.0212224554, 0.021277437, 0.00161247374, -0.0131609468, -0.00224045361, -0.0168652553, 0.014074997, 0.00414071558, 0.0144048799, 0.0243013613, -0.0154357627, -0.0125355441, -0.0119857397, 0.00322494749, 0.0106318453, 0.00184184522, -0.0270366389, -0.00659765489, 0.00183497276, -0.0196005329, 0.00137279322, -0.0133121433, -0.0105081396, -0.0219097119, 0.0214698687, -0.00573171256, -0.0166590791, -0.0126592498, -0.000117799922, -0.00776598928, -0.0109754736, -0.0150371548, 0.018899532, 0.00819208752, 0.00750483247, -0.0240814406, 0.00364932767, 0.00126455049, -0.00361152878, -0.00966281537, 0.00642927689, -0.00823332369, 0.0106387185, 0.00160989643, -0.0132159274, -0.021208711, -0.0364245512, 0.00272840518, 0.00947725587, 0.0158343706, 0.0107967872, 0.0296619553, -0.027174091, -0.0114290621, 0.00381083298, -0.000930372393, 0.00286929263, -0.00830204878, -0.0155319786, -0.00860444177, -0.0174837857, -0.00396546535, 0.0184321981, 0.00316996686, -0.00446716184, -1.26444311e-05, 0.0204664748, 0.0205626898, 0.0180335902, -0.00815085229, 0.00486233411, 0.0118826507, -0.00806151, -0.00421631383, 0.00881749112, -0.0107074436, 0.0038245779, -0.00437781867, 0.00521970727, -0.00180748245, 0.0104806498, 0.00206176704, -0.00110819982, -0.0100133158, -0.0283974055, -0.00992397219, 0.00875563733, -0.000767149206, -0.00514067244, 0.0127967009, 0.0129410252, -0.00530905044, -0.0182122756, -0.0167140588, -0.0109067475, 0.0253597349, 0.0260469913, -0.00572140375, -0.00173274346, -0.00396546535, -0.0414002836, 0.00509600108, 0.019435592, 0.0335930586, 0.0232842229, -0.00588290859, -0.0111060524, 0.00299299858, -0.00430909311, 0.00887934398, 0.0176212359, 0.0185696483, 0.010755552, -0.000949271955, 0.0148722138, 0.000335681456, -0.00990335457, 0.00552897202, -0.016384175, 0.013270908, 0.0131128384, 0.0135801723, 0.0292770937, 0.0302942321, 0.0145285856, 0.000848331256, -0.00103431987, 0.00380739663, 0.000236888445, -0.0205764361, 0.00379708782, 0.00646020379, 0.0114840427, 0.00797216594, -0.0058726, 0.00651174784, 0.00149220391, -0.00381426909, 0.00426785788, 0.0185421593, 0.013202182, -0.0146522913, -0.00698595401, 0.00694471877, 0.0143636437, -0.000492676452, -0.0124668181, 0.00530561386, -0.000184592587, 0.00643271348, -0.0266792662, -0.0373042412, -0.000410635286, -0.00498604029, -0.0115802586, 0.00898243207, -0.0114496797, -0.019669259, 0.0098552471, 0.00729178311, 0.0225969683, 0.0124943089, -0.00852884352, 0.00518878037, -0.0174013153, 0.00171212573, 0.00533654075, 0.0103019634, -0.00733301835, -0.0242051464, -0.0360396877, 0.0236965772, 0.00089515053, 0.00750483247, -0.00251707411, 0.021277437, 0.0317787044, -0.00843262766, 0.00617155619, -0.00493105967, -0.0343902744, 0.00693784654, 0.0174975302, -0.0255246758, 0.0112228859, 0.0132228, 0.0180473346, -0.0163566861, -0.0146522913, -0.00963532459, -0.00513036363, -0.000981916557, 0.0070168809, -0.0167415496, 0.00733301835, 0.000256432279, -0.0101438938, 0.0231467728, 0.0153945275, -0.0150096649, -0.0211949665, -0.00889308844, -0.0039139213, -0.00934667792, 0.0027593316, 0.0109273661, 0.00918173604, 0.0112435035, 0.00193290669, -0.000346849352, -0.0261294618, 0.0166453328, 0.00649113, 0.0276551694, -0.0162604693, 0.000574288075, 0.00375241623, 0.00824706815, 0.00460804952, -0.00736050867, -0.00271294196, 0.0124943089, 0.0347201563, 0.00475580944, -0.00976590347, -0.015312057, 0.010989219, -0.0071130963, 0.0109823458, -0.00182466384, 0.00758730294, -0.0105287572, -0.00500665791, -0.00401013717, 0.00653580157, -0.00113483099, 0.0134839565, -0.0221983586, 0.00047034063, -0.00139341096, 0.0167003144, -0.0131746922, 0.0267205015, -0.00313044968, 0.0107624242, 0.0127073582, -0.0164116658, 0.0102401096, -0.00142261933, 0.00735363597, 0.00460461341, -0.00252566463, 0.0215248484, 0.000159679563, -0.000138310206, 0.0160130579, -0.0144186243, -0.0112366304, 0.0191469435, -0.00426785788, 0.00109101844, -0.00952536426, 0.0109479837, -0.00320432964, 0.00226966199, 0.0290571712, 0.00204458577, 0.0133258877, 0.00888621621, 0.0177037064, -0.0152570764, -0.00202912255, 0.0082195783, 0.00949787349, 0.0055255359, 0.0125836516, -0.00290709152, 0.00721618487, -0.00141574675, -0.0236828309, -0.00421287725, 0.0032283836, 0.0163566861, 0.0197379831, 0.00772475405, -0.0112778656, -0.00265624328, 0.0127829565, 0.0111885229, 0.0139375459, -0.00369399949, 0.00396546535, 0.0079790391, -0.00474206451, 0.00862505939, 0.0137794772, -0.0041785147, 0.0320810974, 0.03384047, 0.00096387614, -0.017387569, -0.0195592977, -0.0018212276, -0.028782269, -0.0100614233, -0.0283974055, -0.00115716679, 0.0157244112, -0.011862033, -0.00448778, -0.0189270228, -0.0109204929, 0.0104737766, 0.001382243, -0.0239027534, -0.000829431752, -0.00527468743, 0.0166315883, -0.0098552471, -0.011594004, -0.0110648172, -0.0121781714, -0.0108517678, -0.00720931217, 0.00373867108, 0.0167278033, 0.0038417594, -0.00529530505, 0.00190713455, 0.000829861267, 0.0151883513, 0.0143498993, 0.00464928476, -0.00891370606, 0.00924358889, 0.0143911345, 0.00301189814, -0.0116833467, -0.00575576629, 0.00225419877, -0.020810103, 0.017387569, 0.00231089722, -0.0279575624, 0.00895494223, -0.00652549276, 0.00373867108, 0.0107005714, -0.000361024024, 0.00871440209, 0.00163223234, -0.00312529528, 0.0122400243, 0.0176624712, 0.0150921354, -0.0114977881, 0.00732614566, -0.0044499808, -0.011360337, 0.00504445704, -0.000668785709, 0.000452300155, 0.0181572959, -0.0180885699, -0.00406511733, -0.00624715444, -0.00973154, 0.0103981784, -0.017153902, -0.000493965053, 0.000981916557, 0.0012121473, -0.00633993372, -0.00725054787, -0.00831579417, 0.0213049259, 0.00939478539, 0.0334006287, -0.0330982357, -0.0052368883, -0.0163429398, -0.0132777803, -0.00398608297, -0.000729779655, 0.0114496797, 0.00847386289, 0.0114496797, 0.0148309777, 0.00651518395, 0.0120269749, -0.0177174527, -0.00747734215, -0.0150921354, -0.0173463337, 0.0128104463, 0.0127279758, -0.0138619477, 0.0106662083, 0.0055014817, -0.0203015339, -0.00736050867, -0.000365319371, 0.00906490255, 0.00982775632, -0.011490915, -0.0120407203, -0.012666123, 0.00171470293, 0.0179098845, -0.0181023143, 0.00412009796, -0.0114496797, 0.0169064905, 0.00938104, -0.00988960918, 0.0040410636, -0.0223633014, 0.0188033152, 0.0151608605, 0.0303767025, -0.00438812748, 0.000504273863, -0.00341737899, 0.00655641919, -0.0374416895, 0.000831149868, -0.00852884352, -0.0327408612, 0.0202465523, -0.00222842651, 0.00419913232, -0.0130234957, -0.000819982, 0.00318543, 0.0234766547, 0.0136557706, -0.00288819219, 0.00115544861, 0.0186796095, -0.0141024869, 0.00744297914, -0.00204114942, 0.010322581, -0.0006735106, -0.00226450758, -0.0196967479, 0.0199991409, 0.00182638201, 0.00379365147, -0.0258408152, -0.0141299777, -0.00382801425, -0.0354898833, 0.00502383895, 0.0027713587, 0.0254971869, -0.00944976602, -0.00656329188, 0.00831579417, 0.0203840043, -0.00682444917, -0.0144873504, -0.00613719365, 0.0201915726, 0.0284523852, -0.00307203294, -0.021139985, 0.0108174048, -0.0246174987, -0.0180198438, -0.011092307, 0.00445341691, -0.00736050867, 0.000699712196, 0.014040634, -0.0124943089, 0.00693441, -0.00110734079, 0.0162604693, 0.0152295865, -0.0116077485, -0.012666123, 0.0280125421, -0.0317237228, -0.0181160606, 0.0140200164, 0.0180061, -0.0159855671, -0.0255521666, 0.0105081396, -0.0149959195, -0.00994459, 0.0347751379, 0.01289979, -0.00605128659, 0.00155233883, 0.0326309, -0.0163979214, -0.00200506859, -0.0260882266, -2.11948591e-05, -0.000184055665, 0.00733301835, -0.00705811614, -0.0114084445, 0.000359091093, 0.0150646446, 0.0102401096, -0.0122468965, 0.0241089296, -0.0083226664, -0.000420085038, 0.0109823458, -0.021112496, 0.0144461151, 0.0123431124, 0.00164168212, -0.0114496797, 0.0144323697, -0.0126729952, -0.00327477348, -0.000896868703, -0.0252910107, 0.00953910872, 0.0160817839, -0.0107624242, 0.00744985184, -0.000394312956, 0.00597912446, 0.00288303779, -0.0334556065, -0.0170027055, -0.00887934398, -0.00017965294, 0.010652463, -0.0249336362, 0.0214286335, 0.000137880677, 0.0287547782, 0.0194630809, 0.0178136677, -0.00881749112, 0.00737425359, 0.00631244341, 0.0280950125, -0.00677977735, -0.0183084924, 0.0186933558, 0.00732614566, 0.024493793, 0.0304041915, -0.0147072719, -0.00015645806, 0.0197104942, -0.017222628, -0.0302667413, -0.00764228357, -0.00318371202, -0.00247412059, 0.0130990939, -0.00160130579, -0.0142536834, 0.0105150118, 0.00799278356, 0.00499291252, -0.0162879601, -0.0088518532, 0.00199991418, -0.00648082141, 0.0183084924, -0.0285898373, 0.0106249731, 0.00255659129, -0.00259439019, 0.0185696483, -0.00536746718, -0.00592414429, 0.0172501188, 0.00882436335, -0.000143894169, -0.0140887415, -0.0179648641, 0.0252910107, 0.00988273695, -0.000894291501, 0.00325931027, -0.00592758041, -0.00349641335, 0.0104737766, -6.97994037e-05, -0.011559641, -0.00260985363, 0.00425067637, 0.0256483834, 0.000945835665, 0.000103142047, -0.0135320649, -0.021277437, 0.000195008804, 0.00647394871, -0.0164666474, 0.00449121604, -0.00933980476, 0.00117692538, -0.0186796095, 0.0198754352, -0.00251535582, 0.00185902673, -0.019133199, -0.0055221, 0.0199304149, -0.00167432672, 0.00947725587, -0.00758043025, -0.00540182972, 0.00721618487, -0.023421675, -0.0262806583, -0.00747046946, 0.0100064427, -0.0175387654, -0.00140801514, 0.0124943089, 0.00718869455, -0.0221158881, 0.0145698208, -0.024493793, 0.0254284609, -0.00951161887, -0.0122468965, -0.00372836227, 0.00558395265, -0.0019535243, -0.0148997037, -0.012934152, 0.00132554444, -0.00714058662, 0.00320432964, 0.00266483403, -0.0082195783, 0.00551179051, 0.0172501188, 0.00286242, -0.00831579417, -0.00370087195, -0.0344177671, 0.00140371977, -0.0131609468, -0.00773162674, 0.00625746325, 0.0134289768, -0.0136832613, 0.00519565307, 0.00293114549, 0.0150234094, 0.00163480954, 0.0198342, -0.00735363597, 0.00916799065, -0.0149959195, -0.00925046206, -0.00892745145, -0.00157811085, -0.000548515934, -0.0114634251, 0.00550491828, 0.0260332469, 0.00410978915, 0.000903741224, 0.0192706492, -0.00839826465, -0.00103431987, 0.017387569, 0.0192431603, -0.00514754513, -0.0129891327, 0.00112709939, -0.00181263697, -0.00882436335, 0.0123087494, 0.0187208448, -0.0100682965, -0.0146385469, 0.0017490657, 0.00455994159, -0.0118963961, 0.00791031308, 0.00650831172, 0.00506163808, 0.00359778362, -0.00939478539, 0.0151058808, 0.00498604029, 0.0243013613, 0.0203702599, -0.00838451926, -0.0189682581, -0.00489326054, -0.0155594693, 0.0288097598, 0.00685193948, 0.00775911706, -0.00729178311, -0.0026218805, -0.00147158629, 0.00885872636, -0.00804776419, 0.000312701333, 0.0127142305, -0.0038417594, 0.00907864794, 0.0271191094, 0.00509256497, -0.000481508527, 0.00673854211, 0.00539152091, -0.00423005875, 0.0230780467, -0.0197379831, 0.0139306728, 0.0155182341, 0.0178411584, -0.0477230363, -0.0362871028, -0.00151883508, 0.0307065845, -0.0083226664, -0.00906490255, -0.00907177571, -0.011594004, -0.0205764361, 0.00357029331, 0.011325974, -0.0069756452, 0.00786907785, -0.00479360856, 0.00251879217, -0.00358747481, 0.0135939177, -0.00537777599, 0.00199647783, 0.034280315, -0.00427816669, 0.00420600502, 0.00227825274, -0.00231948798, 0.00415102439, -0.0223633014, -0.0029586358, 0.00650487514, -0.0139650358, -0.00787595, 0.0091886092, 0.0293320734, 0.00262531685, 0.000646449917, 0.00492762355, -0.0146522913, 0.00287960144, -0.0051338, 0.0167003144, -0.0194493365, -0.00151969423, -0.00175765646, -0.0216348097, -0.0122468965, 0.0221158881, 0.00464584865, 0.0221021436, -0.0133190155, -0.00637429673, -0.00142176019, -0.0134289768, 0.00391735742, -0.0244525578, -0.019064473, -0.0189682581, 0.0118895238, 0.0130922208, -0.0138619477, 0.0074086166, 0.00892057922, -0.00929856952, -0.0386237688, 0.0237378124, 0.00579356542, -0.00301361619, 0.0425273813, -0.0295794848, -0.00675915973, 0.0140475063, 0.0167690385, -0.0157244112, -0.0224457718, -0.0203427691, -0.00759417564, 0.00281774835, 0.0100957863, -0.0222395938, -0.0103569431, 0.0169064905, -0.00166401791, 0.0079790391, -0.0134839565, -0.0209200643, -0.00499978522, 0.00301705254, 0.00839139242, 0.0233117137, 0.00983462948, 0.00639835047, -0.00839826465, 0.0060615954, -0.00364932767, -0.0201091021, 0.0112984842, 0.0160542931, -0.0116833467, -0.00879687257, 0.0105425026, 0.00371461711, 0.0205352, -0.0276826601, 0.00272668689, -0.00668356149, -0.00386581337, 0.018830806, 0.00709247869, 0.00250504701, -2.95573645e-05, 0.0315862708, 0.00760104787, 0.0322735272, 0.000480649469, 0.0111953951, -0.0192706492, -0.0178274121, 0.0234766547, -0.00765602849, 0.00311326841, 0.00293114549, -0.00799965672, -0.00706498884, -0.00069670548, -0.0173600782, 0.00780035229, 0.00612001214, -0.00234697829, 0.00415789708, 0.0177311972, 0.00670417957, 0.0176349822, -0.00695846416, 0.0103638163, 0.0132846525, -0.00140371977, -0.0308715254, -0.0291671325, -0.0186796095, 0.0254284609, 0.000224646705, 0.0117039643, 0.00410978915, -0.00931231491, 0.00729178311, -0.0135664279, 0.00112366304, 0.0214286335, 0.0156694297, 0.00848073512, 0.0176074915, -0.00874189287, -0.0466234274, 0.00605815882, 0.0254559517, 0.00288475584, -0.00876938272, -0.0270503853, 0.0218547322, -0.0178823937, -0.00674885092, -0.0209887885, 0.0173463337, -0.0104256691, -0.00497573148, 0.00468021119, -0.00582792843, 0.0279163271, -0.00850135274, -0.0165766068, 0.0220609084, 0.0114496797, 0.0195592977, -0.00486233411, 0.0296344664, -0.0268854424, 0.00681070378, -0.0120132295, 0.0010351789, 0.000243546237, 0.0117108375, 0.0113122286, 0.00236587785, -0.00445341691, -0.00447747111, -0.00468364777, 0.0277513862, 0.00986899156, 0.000477642723, -0.00245522102, 0.00954598188, -0.00484515261, -0.00795842148, 0.0220884, -0.00805463642, -0.00343799661, -0.00933980476, 0.00908552, 0.0138756931, 0.0281225033, -0.000378205412, 0.00168978993, -0.0316137634, -0.0123706022, 0.000748249644, -0.0063021346, 0.00868691225, 0.00137365237, -0.0216760449, 0.0111816507, 0.00281259394, -0.0178686474, -0.00422318606, -0.0313388593, 0.00586916367, 0.0183634721, -0.0193531197, -0.0117314551, 0.0201778281, 0.0139375459, -0.00238993182, 0.00657360069, 0.00275761355, 0.0104050515, 0.0294145439, 0.0104943942, 0.00955285411, 0.0279163271, -0.00503071165, -0.00602036, -0.0305966232, -0.0156694297, -0.020975044, -0.0279575624, 0.0256621279, -0.00168978993, 0.0272015799, 0.0095184911, -0.0161230192, 0.00379021512, -0.00212190207, 0.0147072719, -0.000821270572, 0.0315862708, -0.00210643862, -0.00510974601, -0.00245693908, -0.00795842148, 0.00427129399, -0.00330398185, 0.0176349822, 0.0311739184, -0.0158206262, 0.00317340321, -0.025332246, 0.00811649, -0.00235213269, -0.00266311574, -0.0187345911, 0.00997895282, 0.00052832783, 0.0234079286, -0.00604785, -0.0028864739, -0.034582708, -0.0193943568, 0.0074086166, -0.0205901805, 0.00473519182, -0.0130372411, 0.0101713846, -0.0109342383, -0.0149134491, -0.00748421438, -0.0197792184, -0.00642584078, 0.0297719166, -0.00650143903, 0.00497573148, -0.00806151, -0.000198122929, 0.00128087285, -0.00595163461, -0.00221124524, -0.00562518789, 0.0236003604, -0.0259095393, 0.00963532459, 0.019669259, 0.0106318453, 0.00235556881, -0.0161642544, 0.0155182341, -0.0130990939, 0.00226622564, -0.00534684956, -0.0213324167, 0.00332459947, -0.0272015799, 0.0156007046, -0.00601692358, -0.0285898373, 0.00162106438, 0.0146935266, 0.00464928476, 0.0119101414, -0.0301292893, 0.000473347376, -0.00953223649, -0.00760792056, -0.0147347618, -0.00104806491, -0.0299918391, 0.0184596889, -0.000197478628, 0.00824706815, -0.000652463408, -0.0270916205, -0.00988273695, 0.0128722992, 0.00488982443, -0.0198204536, -0.005628624, -0.00535715837, -0.00541901123, -0.0063261888, 0.00606503151, -0.000556677114, -0.0200953558, 0.00694471877, -0.0184047073, 0.0018212276, -0.0296069756, 0.0126386322, 0.00209612981, 0.016920235, -0.0272428151, 0.000286284951, 0.0292496029, -0.0222121049, -0.00694128266, 0.0106112277, -0.0200128853, -0.00466990238, -0.0273940116, 0.00697220908, -0.000457884104, 0.0161642544, 0.0019157253, 0.00232292432, 0.030926507, 0.00633649761, -0.00543962885, -0.0259507746, -0.00355654815, 0.00806151, 0.0296619553, -0.00284180231, -0.00321292039, -0.0113465916, -0.00230746111, 0.0209613, 0.0356548242, -0.0034998497, -0.0114015723, -0.00716120424, 0.0302942321, -0.00916799065, 0.0243838318, 0.00335208979, -0.00989648234, 0.0130509855, 0.014308664, -0.00882436335, -0.0283699147, 0.0022851252, 0.0145560754, 0.0308990162, 0.00931918714, 0.00139598816, 1.46444527e-05, 0.00443967199, 0.0406580456, -0.0251123235, -0.0199441612, -0.0290571712, -0.0146385469, 0.00543962885, 0.00497573148, 0.00966281537, -0.00351531291, -0.000755981251, -0.0201228466, -0.0156281944, -0.00751170469, -0.0215385929, -0.0075460677, -0.0141712129, -0.00473862793, 0.0213873982, -0.00679695886, 0.0166453328, 0.0118207978, -0.0341703519, -0.00504445704, 0.02157983, 0.00214767409, 0.0141712129, -0.00707186107, -0.0267892275, -0.00738112628, -0.0183909629, -0.00687599322, -0.00354280323, 0.0242326353, -0.000978480326, 0.0166315883, -0.00264593447, -0.00481079, 0.0176762175, -0.00777286198, -0.0146522913, 0.00176624721, 0.0203702599, -0.014775998, 0.00559426146, -0.0340878814, -0.0225969683, -0.0113740815, -0.00907177571, 0.000536059437, 0.00130578585, 0.0117726903, 0.00604097778, 0.012198789, -0.0132228, 0.00455650548, -0.00466303, -0.0179373734, -0.00123276492, 0.000763283344, -0.00213392894, 0.002898501, -0.00908552, 0.00459086802, 0.00965594221, -0.0149546843, -0.00561831519, -0.0179786086, -0.00208410295, -0.0100408057, -0.00623340905, -0.0119651221, -0.00558738876, -0.00154804345, 0.01236373, 0.00366650918, -0.0149821742, 0.00799965672, -0.00602723239, -0.00122932869, -0.00963532459, -0.00531935925, -0.0394759662, -0.00660109101, 0.0122812595, -0.0118070533, 0.0105287572, 0.00925046206, -0.0117726903, -0.0194493365, -0.0125286719, 0.0015815472, 0.00872127526, -0.02104377, 0.0189407673, 0.00102315191, 0.0121919159, 0.0101095317, -0.0260057561, -0.00221983599, 0.0145973107, -0.00133757142, 0.0186108835, 0.00255830935, -0.0118070533, -0.00600317866, 0.0273252875, 0.00577982049, -0.0189682581, -0.0118963961, -0.00359434728, -0.0047317557, -0.00102572911, -0.00814398, -0.0119926119, -0.0132296719, -0.0224870071, -0.00142004213, -0.0067110518, -0.00940165762, 0.0223907903, 0.00498604029, -0.000181478463, -0.00155749323, 0.0117383273, 0.00826081354, -0.0029363, -0.0199166704, 0.00944976602, 0.00128345, 0.000845754053, 0.0174425505, 0.00642240467, 0.0201228466, 0.0059172716, -0.0216897894, -0.0274764821, 0.0191881787, -0.000467763399, 0.00621622801, -0.00427816669, -0.0132434173, -0.0118551608, 0.00515098171, 0.0180061, 0.0219509471, 0.0120132295, -0.00963532459, 0.0267479923, 0.0155869592, 0.00935355, -0.025029853, 0.0240814406, 0.0112503758, 0.0165216271, -0.000583737798, -0.00780722499, -0.0121919159, 0.0141299777, -0.0063261888, 0.00493793236, 0.00636398792, 0.00885872636, 0.0168652553, -0.0067110518, 0.0194905717, 0.00846699066, -0.00558738876, 0.00785533246, -0.00394141162, 0.0254147165, -0.0020085047, -0.000822988688, -0.0223633014, -0.00274386839, 0.00961470697, 0.0221708696, 0.0159580782, 0.027943816, -0.00906490255, -0.00898243207, 0.0176762175, 0.00165027275, 0.0275314637, -0.0090374127, 0.0141437221, -0.0158756059, -0.00649800245, -0.0105287572, -0.0377440825, 0.0250710882, 0.0112366304, -0.0120407203, -0.00158068817, -0.00138052495, -0.0141987028, -0.014775998, 0.0103844339, -0.0231467728, -0.0184047073, -0.020672651, 0.0010128431, -0.00998582505, 0.00326446467, -0.0127142305]
05 Jun, 2023
unordered_set emplace_hint() function in C++ STL 05 Jun, 2023 The unordered_set::emplace_hint() function is an inbuilt function in C++ STL which inserts a new element in the unordered_set only if the value to be inserted is unique, with a given hint. Syntax: unordered_set_name.emplace_hint( position, value ) Parameter: This function accepts two parameters as mentioned above and described below: position: This parameter is used to describe the position for inserted operation. value: This parameter is used to hold the which needs to insert. Return Value: If the value is not present in the unordered_set, then the function inserts the value and returns an iterator pointing to the inserted element. Else, if the value is already present in the unordered_set, then the function returns the iterator pointing to that element. Below program illustrates the unordered_set::emplace_hint() function in C++ STL: Program 1: CPP // CPP program to illustrate // unordered_set::emplace_hint() function #include <iostream> #include <unordered_set> using namespace std; // main program int main() { // Initialize an unordered_set unordered_set<int> uset = { 20, 40, 50, 60 }; // Insert an element that is not present uset.emplace_hint(uset.begin(), 80); // Display uset cout << "uset: "; for (auto it = uset.begin(); it != uset.end(); it++) cout << *it << " "; } Output: uset: 80 20 40 50 60 Program 2: CPP // CPP program to illustrate // unordered_set::emplace_hint() function #include <iostream> #include <unordered_set> using namespace std; // main program int main() { // Initialize an unordered_set unordered_set<int> uset = { 20, 40, 50, 60 }; // Try to Insert an element that is not present uset.emplace_hint(uset.begin(), 50); // Display uset cout << "uset: "; for (auto it = uset.begin(); it != uset.end(); it++) cout << *it << " "; } Output: uset: 60 50 40 20 Time complexity: O(n) Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL
https://www.geeksforgeeks.org/unordered_set-emplace_hint-function-in-c-stl?ref=asr7
PHP
unordered_set emplace_hint() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0277922805, 0.00401725946, -0.0138701173, -0.00588113768, 0.0246175062, 0.00727986, -0.0106302872, 0.0292495526, -0.0176694356, -0.0215858575, -0.00472637918, 0.0269075073, -0.0120290089, 0.00268684723, 0.00672687683, -0.00128405925, -0.00109702093, 0.00129869708, 0.00930312742, -0.0166805722, -0.00217289827, -0.00527285645, -0.0229000058, -0.0277402345, 0.0203497782, 0.0128942644, -0.0337254629, -0.00127430074, 0.00672687683, 0.0150281293, -0.00788488798, 0.0262179039, 0.012256708, -0.0205319375, -0.00996670686, 0.0548559241, 0.0394504666, 0.0144816516, -0.0164203458, -0.00269823219, 0.0138961403, 0.00707167806, 0.00603402127, 0.017630402, 0.00835980289, -0.00422218861, 0.0263089836, -0.0215728469, 0.0070001157, 0.0168236978, 0.0350266, -0.015496538, 0.0220933016, 0.00656098174, -0.0208442099, 0.016602505, 0.00791741721, 0.00169310416, -0.0121396054, 0.000769297068, -0.0473613776, 0.0233293809, 0.0206360277, -0.0328146666, 0.00919903629, -0.0177865382, -0.00921204779, 0.0501978546, 0.0481680818, -0.0161991511, -0.0247866549, 0.0119964806, 0.0298480764, 0.00133529154, -0.0162642095, -0.0118013099, -0.03380353, -0.0357552357, -0.013740004, 0.00487275701, -0.0183720496, 0.0178776179, 0.0250729043, -0.0106823323, 0.0685438812, -0.0399188735, 0.0026169112, -0.0220933016, 0.0427033082, 0.0262309164, -0.0266993251, -0.0333091, -0.00623244466, -0.020870233, -0.0665141121, 0.0509785376, 0.0035260804, 0.0240840409, -0.0204018243, 0.0504580811, 0.0151972771, -0.0125299469, -0.00359439012, 0.0175523348, -0.0070196325, 0.0392943285, 0.0718747899, 0.00468734512, -0.00921204779, -0.0141043216, 0.0151061974, -0.00602426287, -0.00859400816, 0.048350241, -0.00544851, -0.0041668904, 0.00274214568, -0.0370563716, 0.0277922805, -0.00433929078, 0.0138571057, 0.044628989, 0.0231602341, 0.00500287069, -0.00870460458, -0.00655447599, 0.0200244933, 0.00574777136, 0.0356251225, -0.00195007864, -0.0137920491, -0.00402376521, -0.0181378461, -0.00497684767, -0.00971298572, 0.0529562645, 0.0181768797, 0.0387478508, 0.0125494637, -0.0148199471, -0.0777038857, -0.00517201843, -0.0401270576, 0.00944625214, -0.0210784152, -0.0508224, -0.028026484, -0.00589089654, -0.00624870881, 0.021273585, -0.0393984206, -0.0461643301, 0.0104806563, -0.0171750039, 0.00413761474, -0.0148459701, 0.0172660835, -0.0528001264, -0.00671386532, -0.024864722, 0.0356511474, -0.0213776752, -0.0083532976, -0.0165894926, -0.0468149, 0.028104553, 0.00760514382, 0.0241621081, -0.0398147814, 0.0343239866, 0.0234594941, 0.0132390661, 0.0252550635, -0.0052891206, -0.034532167, -0.00404328248, 0.0492089912, 0.0258015413, 0.0558968335, 0.0186322778, 0.0111572472, 0.0249948353, 0.0328667127, 0.00854196213, 0.00190291239, 0.000107038824, 0.0482201278, -0.0058974023, 0.0669304729, 0.00589089654, -0.00725383731, 0.0352868289, 0.00848991703, 0.0397887602, 0.0381233059, 0.00338620832, -0.0355730765, -0.0228089262, -0.0169928446, 0.054751832, 0.00518177683, -0.0318258032, -0.00415062625, -0.0202586986, -0.000432627945, 0.00357162021, 0.00177279871, -0.00813861, 0.0188274477, 0.00661628, 0.0365619399, 0.0162251741, 0.0180467665, -0.0117687816, 0.0048174588, 0.00376353785, -0.0407516025, 0.0373686478, 0.022002222, -0.0265952349, -0.0111702587, -0.00767670665, 0.0144816516, -0.0684397891, -0.0340897813, 0.00240385, 0.0305246674, 0.0607891083, -0.014767902, -0.038877964, 0.0239409152, 0.0251119379, -0.00382208917, 0.000255551393, 0.0486885346, -0.0305506904, -0.0445769429, -0.0156786982, 0.00666832551, 0.0317997821, -0.00561765768, 0.00627798447, -0.0350786448, -0.00302676926, -0.015119209, 0.0430676267, 0.019465005, -0.016576482, 0.0160690378, -0.00627798447, 0.00267383596, 0.0210263692, 0.0282606892, -0.0148199471, 0.00168497209, 0.0457219444, 0.0167196058, -0.0272458028, 0.0154835265, -0.0487666056, -0.0269595534, 0.0159779582, -0.0258145519, -0.0052078, -0.0150541514, -0.0167976748, 0.0443947837, -0.0154314814, -0.0229650624, -0.0143775605, 0.0357552357, 0.0061706407, 0.0198163129, 0.00543875154, 0.0218721088, 0.0055005555, -0.0216509141, -0.00142474473, -0.0244483594, -0.0775997937, 0.00356511446, -0.0173181295, 0.0162902307, 0.00889326911, 0.0233684145, -0.024864722, -0.0551681966, -0.00288201775, -0.0296398941, -0.0160039812, -0.0185932443, 0.0176694356, -0.012230685, 0.0140522765, 0.0412200093, 0.0352868289, -0.0409858078, -0.0112418216, -0.0347143263, -0.0330488719, -0.00770923495, -0.0340377353, -0.0131675033, 0.00076726405, -0.0192828458, -0.00999273, -0.0122697195, -0.00992116705, -0.0144556286, -0.0275840983, 0.0192958582, -0.0039554555, -0.0247346088, 0.0313053504, -0.00257950346, -0.0239669383, 0.0109555712, 0.0023046385, -0.0363277383, -0.0039782254, -0.0225096643, -0.0141433561, -0.00643412117, 0.0112418216, 0.0118858842, -0.0275580753, -0.00718878023, 0.0311231893, -0.0127706565, -0.0528521724, -0.0376288742, -8.23375594e-05, -0.0438743308, 0.0013108952, -0.0132325599, -0.0185411982, 0.00459951814, 0.017708471, 0.0230040979, 0.0059722173, 0.0100642927, -0.0234464835, -0.0059201722, 0.0047946889, 0.0432497859, 0.0356771685, 0.0111247189, -0.0203888118, -0.00986261666, 0.0074620191, 0.000696921372, -0.014390572, 0.0163552891, -0.0177475046, 0.023056142, -0.0657334253, -0.0139221624, -0.0216379035, -0.0200895499, 0.0119184125, 0.0115996338, 0.0240319949, 0.00301538431, 0.0353648961, -0.00108319626, -0.000818496337, -0.0240189843, 0.0230691545, -0.00680494495, -0.0275840983, -0.00186387834, -0.00898434874, 0.0202066526, -0.0104025882, -0.0307068266, 0.0145727312, 0.028130576, 0.0436401255, -0.000360048929, 0.00609907834, 0.000255144783, 0.0285209157, -0.0159649476, 0.0116126454, 0.0341938734, -0.0270896666, -0.00263642822, 0.00520454673, -0.0114695197, -0.0150541514, -0.00655447599, -0.0120094921, -0.055428423, -0.0448892154, 0.00635605259, 0.00451494427, -0.0290934164, -0.00445964606, -0.0233944375, -0.0413501263, -0.0127316229, -0.00569247315, 0.00460277125, 0.00897784345, 0.0199334137, 0.00670085382, -0.0146507993, -0.00475565484, 0.00107099814, 0.0087306276, 0.0132585829, -0.0102334404, -0.00670085382, -1.43455409e-05, 0.015795799, 0.028052507, -0.0361716, 0.0170709137, 0.0471011475, -0.00697409268, -0.0225487, -0.0201025624, -0.0207271073, 0.0179296639, 0.0272978488, 0.0373946689, -0.0117557701, 0.0234855171, -0.00308369403, -0.0186713114, 0.00571199, -0.00472637918, -0.00669434853, 0.0205969941, 0.00220867945, -0.0484543294, 0.0461643301, 0.0264651198, -0.0184891522, -0.0105847474, 0.0252290405, 0.0193869378, -0.00917951949, -0.0425731912, 0.00231602322, 0.0544916056, -0.00110596616, -0.0048174588, 0.0135708563, 0.0226397794, -0.0232383013, 0.0250208583, 0.0120875603, 0.0269075073, 0.0347143263, -0.0167976748, 0.0241881311, -0.00529887946, 0.0492350124, 0.0199854597, -0.0112613384, 0.0286510307, 0.0423650108, -0.0135318218, 0.0198943801, 0.0206880737, 0.00553633645, 0.0421047844, 0.0319819413, -0.00269660586, -0.00747503, -0.0334131904, -0.0195040386, 0.00851594, 0.0269855745, -0.0180077329, -0.0275580753, -0.00977153704, -0.026647279, -0.000685943, -0.0114630144, -0.00619341061, -0.00368221686, -0.0037245038, 0.00671386532, -0.00964792911, 0.0258535855, -0.0384095572, -0.0226918235, 0.0336994417, -0.0328667127, -0.0325023942, 0.0077352575, -0.0326585323, 0.00284135737, 0.0016003981, -0.0398928523, -0.0218460858, -0.0124518778, 0.00720829749, 0.0164984129, -0.00676591089, -0.0259446651, 0.0236026198, 0.0268034153, -0.0392422825, 0.00345451804, -0.00919903629, -0.0378370546, 0.0127186114, -0.00448566861, 0.0373166, 0.0116191506, 0.00994068477, 0.00858750194, -0.000763604592, 0.0126990946, 0.00332765724, -0.0565213785, 0.0092771044, 0.00301538431, 0.0159779582, 0.00057087373, 0.00613485975, -0.0378891, 0.00601450447, 0.00478493, -0.0168106854, -0.0373166, -0.0423129648, -0.0116256569, 0.0117427586, -0.025541313, 0.0119249178, -0.00313573936, -0.00728636561, 0.00601125136, -0.00815162156, -0.0339596681, 0.00481420569, -0.0178906303, 0.0103635537, 0.0267513711, 0.000513135805, -0.0196211413, -0.00603727438, 0.0157307424, -0.0201546084, -0.0231992677, 0.0107148606, 0.0178646073, 0.0167716518, -0.0227829032, -0.020219665, -0.0306027345, -0.00349029922, -0.0122957416, -0.0363017134, 0.00144832779, 0.0192177892, 0.0139091518, -0.000731076172, 0.0153013673, -0.00777429203, 0.0104611395, -0.00795645081, 0.0296659172, -0.00659676315, -0.0258275643, 0.0146507993, 0.00889326911, -0.0117492648, 0.0261008032, 0.00665531447, -0.0325023942, 0.00663905, 0.00656748749, 0.0258015413, 0.00268684723, 0.000649348542, -0.00716275768, -0.00936818402, 0.0010059413, -0.00598522881, 0.0208181869, -0.0181378461, -0.0535547882, -0.0416103527, -0.0174872782, 0.0239279047, -0.0096023893, 0.0302384179, 0.00437181955, 0.0168367084, 0.022704836, 0.00647966098, 0.0115931276, 0.0182419363, -0.0142604578, 0.0116646904, -0.00902988855, 0.0205969941, 0.0174872782, 0.0137920491, 0.00507443305, 0.0143775605, -0.00333741563, -0.00606329693, 0.00176629308, -0.000364114967, -0.0465026274, 0.014741879, 0.0257885288, -0.0224315971, -0.0033894612, -0.000678217504, -0.00364643568, 0.0372385308, -0.0136359129, 0.0144296065, -0.0190746635, -0.0127901742, -0.0120615372, 0.00656748749, 0.010044775, 0.00637882249, -0.0402571708, -0.00456373719, 0.0153664248, -0.0189835839, 0.0220933016, -0.0107604, -0.00152476958, -0.00586812664, 0.00135155581, 0.00934216194, -0.00225259294, 0.0261398368, 0.0104936678, 0.0240059718, -0.0158608556, 0.00931613892, -0.00940721855, 0.0403092168, -0.00233716681, -3.93136434e-05, 0.00565343909, 0.0195560846, 0.0289372802, 0.0201806296, -0.0423389897, 0.0143515375, 0.0312012583, 0.0079239225, -0.00647966098, -0.0147809125, -0.015847845, 0.00146784482, -0.00076604425, 0.00609257258, -0.00605353853, -0.014065288, 0.0156266522, -0.00238595949, -0.00411159219, 0.00246565416, -0.0275840983, -0.0234855171, -0.00528261485, 0.00111084548, -0.0321120545, -0.0229390394, 0.0119574461, 0.0103375316, 0.0244483594, -0.0351306908, -0.0307068266, 0.0145467082, -0.0147939241, -0.00541598164, 0.0206360277, -0.00937469, -0.0239148922, -0.0420267172, 0.0169668235, -0.0149890948, -0.0172270499, 0.0246044956, 0.0120745488, -0.0163292661, -0.0129463105, -0.0176954586, 0.0104676448, 0.00302839559, -0.0237197224, -0.00363993, 0.00906241685, -0.00597547041, 0.00246077473, -0.00608932, 0.0116451737, -0.000385258434, -0.0268554613, -0.03531285, 0.0029974936, 0.0483242162, -0.00255185436, -0.0202717092, -0.0446550101, -0.0269595534, 0.0122632133, -0.00347078219, 0.00166708138, -0.00212085294, 0.0100187529, -0.0087826727, 0.000152172, -0.00424821116, 0.0123087531, -0.0350786448, -0.0026348019, 0.0338295549, -0.00571524305, -0.022002222, 0.0450974, -0.00668133702, -0.00415062625, -0.000477354537, -0.0270115975, 0.000711965724, -0.0285469387, 0.0177344941, -0.00436856644, 0.015769776, -0.0488186479, -0.0174872782, 0.0223925635, -0.0205059145, -0.0156656858, -0.0216639265, 0.00125153083, 0.026321996, -0.0178646073, 0.0186192654, -0.00502889324, 0.0252940971, 0.0481680818, -0.0116321621, -0.0325023942, 0.0516030826, 0.0181378461, 0.0255022794, 0.0182419363, 0.000234204606, 0.00138083135, -0.0294317119, 0.0341678485, -0.00233554048, 0.0114174746, -0.00498985918, 0.0279223938, 0.0229130182, 0.00992767327, 0.0205839835, -0.0372645557, 0.00397171965, 0.000859563414, 0.0421308056, 0.00774176326, 0.0200114828, 0.0117362533, 0.00670085382, -0.000532246253, -0.00504190475, -0.0152493222, -0.0232643243, 0.0124518778, 0.0108905146, 0.00925108232, 0.0113329, -0.00125071767, 0.0307068266, 0.0181898903, 0.0112483269, -0.00388714601, 0.016628528, 0.0130373901, -0.00854196213, 0.00664880872, -0.0592797883, -3.72806171e-05, 0.0183720496, 0.0508224, 0.0333351232, 0.00224120799, -0.0371084176, -0.0150281293, -0.0153924469, -0.0334912576, -0.0223795511, 0.0108449748, 0.00834028609, 0.0118468497, 0.013740004, 0.0226007439, -0.0234464835, 0.0156006292, 0.0164333563, 0.0348964855, 0.0436401255, -0.0275840983, 0.0108840084, -0.00979755912, 0.00106693211, 0.0218721088, -0.00335367979, -0.0046287938, -0.0026445603, 0.0180727895, -0.00535092456, 0.0449152403, -0.0246175062, 0.0497294441, -0.0044076005, -0.049078878, 0.0207661409, 0.0251379609, 0.0257494953, 0.0052078, -0.0372905768, -0.00311947521, 0.000916488178, 0.00467758626, -0.0160950609, -0.0246305186, 0.00850943383, 0.0125364522, -0.00375052658, -0.0104025882, 0.0312012583, -0.00444338191, 0.0083207693, -0.0651609227, -0.0274800081, 0.0271417126, 0.0032902495, -0.026647279, 0.00241686148, -0.00118972687, 0.00996670686, 0.0343239866, 0.00168171921, -0.00893880893, -0.00807355344, -0.00349029922, 0.0199984703, -0.0338295549, -0.049026832, 0.0156917088, -0.000308410061, -0.000274865131, 0.0188014247, -0.00450843852, 0.0600604713, 0.0118013099, 0.0125234406, 0.00113036251, -0.0229910854, 0.0360675082, -0.0217680167, 0.0251900069, 0.0159909707, -0.0220672786, -0.0127251167, -0.00129869708, -0.0136489244, -0.000450111984, 0.017305119, -0.0265692119, -0.00235017808, 0.0234594941, -0.019087676, -0.0258926209, -0.0431456938, 0.00958287157, 0.0016003981, 0.0149890948, -0.0107343774, -0.0454356931, -0.0404653512, 0.0334912576, 0.018333016, -0.00990815647, 0.0176694356, 0.0096154, -0.0165894926, -0.0127771627, 0.0315655768, -0.00225096662, -0.0153664248, 0.00331464573, -0.0301863719, -0.00168497209, 0.00360089587, 0.0117492648, 0.00747503, 0.0404133052, 0.0167846642, 0.0174872782, 0.023082165, -0.00442711776, 0.00182484428, -0.0225617103, -0.05766638, -0.0088347178, 0.00349680497, -0.00724733155, 0.00624220353, 0.00713673467, -0.0205839835, 0.00689602457, 0.0270376205, 0.02446137, -0.0134277306, -0.00731889391, -0.0087956842, 0.0348184183, 0.0461903512, -0.018359039, 0.00578680541, -0.00831426401, 0.0189575609, -0.00170286268, 0.0116061391, 0.00511672, -0.0271417126, -0.0117362533, -0.00735792797, -0.0608931966, -0.0221713688, 0.00859400816, 0.00306255044, -0.0277922805, 0.00176466664, -0.0256063696, 0.0129788388, -0.03320501, -0.0180207435, -0.0124128442, 0.0155615946, -0.0198553465, 0.00839883741, 0.00819065515, -0.0228349492, -0.00778730307, -0.0167065952, -0.00496383663, -0.00575752975, -0.012608015, 0.0135448333, 0.0219631884, -0.00136050105, 0.003064177, -0.000991303474, 0.0184631292, -0.00473939, -0.0123412814, -0.0350005776, -0.0222104043, 0.00602751598, 0.0296919402, -0.0229260288, 0.0220802892, 0.0195170511, -0.012055032, -0.0127446344, -0.004157132, 0.015795799, 0.00415062625, 0.0105001731, 0.0175002888, 0.0115345772, 0.0420267172, 0.0053802, 0.0334652364, 0.0057184957, 0.0247085858, -0.0427033082, -0.0377069414, 0.0199204031, -0.0178385843, -0.0138961403, 0.0186843239, -0.0112678437, 0.0358072817, 0.0676070601, -0.00170936831, -0.0161861405, 0.00960889459, -0.0188274477, -0.00303490134, -0.0189965963, -0.0443687625, 0.0166155156, 0.0125364522, -0.0308109168, 0.00133529154, 0.0558447875, -0.0137269925, 0.0083532976, 0.0277662575, 0.00264618685, 0.0250338707, -0.00553308381, -0.015847845, 0.0123087531, -0.016953811, -0.0129983556, 0.0139351739, 0.024487393, -0.00377980224, 0.0141433561, -0.0220672786, -0.00652845344, 0.00281370804, 0.0106302872, 0.0119444346, 0.00867207628, 0.00164349831, 0.00293243676, -0.000612754084, -0.0111442357, 0.00323495106, 0.0115605993, -0.0304465983, -0.00759213278, -0.0204798914, -0.0195430741, -0.008815201, -0.00143369, 0.0195430741, 0.0146247763, -0.0251639839, -0.0194259714, -0.00766369514, 0.0100577865, 0.0310711451, 0.00154347345, 0.0110726729, 0.0122436965, 0.0176954586, 0.0127641512, 0.000612754084, 0.0151582425, 0.00128812529, -0.00750755891, 0.013661935, -0.00316664134, 0.0251769945, -0.0115996338, -0.00656098174, -0.0112743499, -0.000143023382, -0.0313053504, 0.000586731359, 0.0353388712, 0.0116061391, 0.0164854024, 0.015847845, -0.00841835421, 0.0189315397, -0.0130764237, -0.0167976748, 0.00346752931, 0.0199334137, 0.00328537, 0.0170058571, 0.00446940446, 0.0189315397, -0.0389560312, -0.0105587244, 0.00637231721, 0.00271449634, 0.0281826202, 0.0242011435, -0.0164203458, 0.00298773521, 0.00639833976, -0.026295973, -0.0147288674, -0.0202717092, 0.0129007706, 0.0171880163, 0.00988863874, 0.0204929039, 0.001171023, 0.0117492648, 0.0379151218, -0.013661935, 0.00902988855, 0.00156786968, 0.0109100314, 0.00862653647, 0.0162121635, 0.00417339616, 0.00496058352, 0.013740004, 0.0103115086, 0.0105587244, 0.0130243786, 0.0346622802, 0.0215598345, 0.0376028493, 0.0411419421, -0.0146768223, -0.0143515375, -0.0205319375, -0.0297439843, 0.00531514362, -0.0134277306, -0.00742298504, 0.0120940655, -0.0281826202, 0.0213776752, -0.0183069929, -0.0159389246, 0.011176764, 0.010675827, -0.0218590964, 0.0161210839, 0.000308410061, 0.00249818247, 0.00865255948, 0.018385062, 0.0264651198, 0.00137839175, 0.0191917662, -0.0201285854, -0.014416595, 0.00276491558, 0.00764417835, -0.00207531312, 0.000216923887, -0.00241523492, 0.00439458899, -0.0026722094, 0.00559814088, 0.00917951949, -0.00511346711, 0.00813210476, -0.0106953438, 0.00688301306, 0.00304953917, 0.00385461748, -0.0262179039, -0.000951456197, 0.00107262458, -0.00247866544, 0.00104578864, -0.00757912127, 0.00648291362, 0.0032951287, -0.016576482, -0.00772224646, 0.016901765, -0.0115345772, 0.014741879, -0.00350656337, -0.0052793622, 0.0435100123, -0.00333090988, -0.0172790959, -0.012757645, 0.0147809125, -0.0138310827, -0.0327886455, -0.00330488733, 0.010975088, 0.0339076221, -0.00975201931, -0.00143125036, 0.00953082647, -0.0155615946, 0.0210784152, -0.0114174746, -0.00709770061, 0.000817276479, -0.0107799172, -0.0130829299, -0.0131870201, -0.0157177318, 0.00875014439, 0.0153013673, -0.00488251541, 0.0178646073, -0.0327366, -0.00425146427, 0.00316501502, 0.00109783409, 0.0220412556, 0.0161861405, 0.0111962818, -0.0268294383, 0.00746852485, -0.0200375058, -0.0166805722, 0.0230431315, -0.00166708138, 0.00681795646, -0.00278443261, -0.0193218794, -0.0109946048, 0.00633653579, -0.00183948199, 0.00714974618, -0.00563066918, -0.00045743087, 0.0153143788, 0.025567336, 0.00588113768, 0.00563066918, 0.00105148111, -0.000148004299, -0.0189705733, 0.0121916514, 0.00901037175, 0.0219892096, -0.00408556918, -0.0207010843, -0.00916000269, -0.0306027345, 0.00320242275, 0.00521755824, 0.0222234149, 0.0235505737, -0.00946577, -0.00377980224, 0.0338555761, 0.014364549, 0.000855497376, -0.0157437548, 0.00327398535, -0.0260097235, 0.00536718871, 0.0322681889, 0.0336734168, -0.00351957488, 0.0117817931, -0.0125429574, -0.0170839243, -0.0161601175, 0.006128354, -0.00364968856, 0.0279484168, -0.00996670686, 0.0210263692, -0.0400750116, -0.0101098325, -0.00180695357, 0.0195040386, 0.00650243089, -0.0125754867, -0.0155615946, 0.0241100639, -0.0341158062, -0.0118728727, -0.00325284177, 0.027401939, 0.0110726729, -0.013713981, 0.00048955268, 0.0236937, 0.00906241685, 0.024513416, -0.018333016, 0.00533791352, 0.0447070561, -0.00747503, 0.00668133702, 0.00115638529, -0.00346102356, -0.0128422193, 0.0386177376, -0.015899891, 0.0127251167, 0.00153290166, 0.017682448, 0.0068114507, -0.00202814676, 0.018710345, -0.00712372363, 0.0293796677, 0.0374727361, -0.00651218928, -0.0164333563, -0.00193544081, 0.0153794363, -0.0158348344, 0.0108840084, 0.00660326891, 0.00483372295, 0.010422105, 0.0114369914, -0.00888676383, -0.00704565505, 0.00430351, 0.00739045627, 0.0187754035, -0.0119899744, -0.0128031848, -0.0142344357, -0.00236969511, -0.0206620507, -0.00182484428, 0.0310711451, -0.00164024543, 0.0288852341, 0.0179947205, 0.00539321173, 0.00143856928, -0.00288852351, -0.00809957553, 0.00949829817, 0.00913398, -0.0167196058, -0.0129007706, 0.00867207628, -0.0190746635, -0.00991466176, -0.0195430741, 0.0087306276, -0.0100252582, -0.00979105383, 0.0306808036, -0.0340117142, -0.00188176893, 0.018385062, -0.00969346892, 0.00334066851, 0.0163292661, 0.00517527107, 0.0186452884, -0.000299871346, 0.0128161963, -0.0188664831, 0.00329675502, -0.0030967053, -0.0222234149, -0.00181020645, -0.0223275051, 0.00739045627, -0.00676591089, -0.00651218928, 0.00774826901, 0.0131870201, -0.023758756, -0.0396326259, -0.000431001536, 0.0021176, -0.0163032431, -0.0104351165, -0.0161080733, -0.0123738097, -0.0149240382, -0.0242792107, -0.0241881311, 0.00341873663, 0.00391642144, 0.0139611969, 0.00103196409, -0.00843787193, 0.00884122401, -0.0130764237, -0.00265269238, 0.00822318438, 0.0235245507, -0.00355860894, 0.00286412728, 0.0416103527, -0.0218721088, 0.00556561211, 0.00375052658, -0.0246825628, 0.00789789949, 0.0135448333, 0.00342849526, 0.00449217437, 0.0177475046, 0.0232122783, -0.0224966537, 0.0268294383, -0.00387413451, 0.0194780156, -0.00800199062, 0.0013670068, 0.0181508567, 0.0105782412, -0.00303327502, -0.0272718258, 0.0232643243, -0.00786537118, 0.00554284221, -0.00253884308, 0.0320600085, 0.0175002888, 0.012985344, -0.0212605745, -0.00588764343, -0.00744250184, -0.000228105535, 0.0243702903, 0.0374727361, -0.0013670068, -0.0116451737, -0.0296138711, -0.00760514382, 0.00800199062, -0.0101748891, -0.0204538684, 0.00379931927, 0.015847845, -0.000758318754, -0.0239539258, 0.00992767327, 0.0383314863, -0.00865255948, 0.0140522765, 0.00999923516, -0.00374076795, 0.000629018294, -0.00167196069, 0.0147939241, -0.00607630843, -0.0125234406, 0.0141433561, 0.0129332989, 0.0200895499, -0.0253591537, 0.0300302356, -0.00690903608, -0.00256161299, -0.00711071212, 0.0100642927, -0.0104546333, 0.017708471, -0.0130829299, 0.00699361, -0.0209743232, 0.00116289093, -0.00465481635, -0.0383054651, 0.0170188677, -0.015769776, 0.0128747476, 0.0156266522, -0.00193869369, -0.00370498677, -0.016927788, -0.0323983021, 0.00917951949, 0.0204148348, -0.0146377878, -0.015119209, 0.00768971816, -0.0214557443, 0.00261040544, 0.0452275127, 0.00231602322, 0.0230040979, -0.00346752931, -0.00897133723, 0.0429895557, -0.0112873614, -0.00555260107, -0.0427033082, -0.0200505164, -0.0104546333, 0.00151663751, 0.0171229597, -0.0169408, 0.0285209157, -0.0128227025, 0.00875014439, -0.0142604578, 0.0159129016, -0.0185021646, 0.0054680272, -0.00785886589, 0.0044173589, 0.0489227399, 0.0191267096, 0.0110401446, 0.00902338326, 0.0198813695, -0.00897784345, 0.00559814088, -0.00464505795, 0.0059722173, 0.000886399357, 0.00301863719, 0.00583559833, -0.00325934752, 0.00337970257, 0.00934216194, -0.0289112572, -0.0111962818, 0.0179817099, -0.00583234522, 0.0186322778, 0.018437108, -0.00281208172, -0.0139611969, 0.013134975, -0.0173701756, 0.00848341174, 0.00862653647, -0.0061608823, -0.00330163445, -0.00238921237, -0.0335172825, -0.000885586196, 0.0128617361, -0.0199854597, 0.0161080733, -0.00991466176, -0.00951131, -0.0083532976, 0.0291454624, -0.0352347828, -0.000801012269, -0.00184273487, 0.0303945541, 0.0325023942, 0.0090429, -0.0318778493, 0.0233554039, 0.00955684949, -0.0196211413, 4.52856548e-05, 0.0144035835, -0.00790440571, 0.00328699662, -0.00103684328, 0.0182679594, 0.0169668235, 0.0050679273, -0.00243312563, -0.00510045607, -0.0101618776, -0.015899891, 0.00638858136, -0.00975852553, 0.02189813, -0.00464831106, 0.0293536447, 0.00731238816, -0.0147158559, 0.0414802395, -0.0231732447, 0.0155355725, -0.0169668235, 0.0445248969, 0.0142604578, 0.00938119553, 0.00529562635, -0.00542248739, 0.00222169096, 0.00988213345, -0.000133874768, -0.02189813, 0.00465806946, 0.00973250251, 0.0301863719, -0.00332115148, 0.0189315397, 0.00574451871, -0.0307588726, 0.0103440369, 0.0121200886, 0.0257234722, 0.041844558, 0.00413110899, 0.0156136407, -0.0229390394, 0.010649804, 0.00513949, 0.00536068343, -0.000875014463, -0.0117427586, 0.00182321784, 0.0175653454, -0.00238758582, 0.00573801296, -0.00207531312, -0.00296333875, 0.00626497343, 0.00432953238, -0.00824920647, -0.000350697, 0.000745714, -0.00377654936, 0.0274800081, -0.000955522293, 0.00259251497, 0.00423845276, -0.00852895156, -0.00137676531, 0.00679193344, -0.0206100047, 0.00764417835, -0.00529887946, -0.0036529412, 0.0145727312, -0.00345451804, -0.025593359, -0.0201546084, 0.0214427337, -0.00282997242, -0.0128227025, -7.51203115e-05, 0.02521603, 0.0223665405, 0.0231732447, -0.00756610977, -0.0148069356, -0.00212735846, 0.00533466041, 0.000613567303, 0.00934216194, -0.00428074, 0.0113914516, 0.0130569069, -0.00185411982, -0.0179426745, -0.0129918503, -0.00531514362, -0.0191006865, 0.0166935846, 0.0114825312, 0.00283485162, 0.0265952349, 0.0072408258, -0.00451819738, 0.000259617431, 0.00285924785, 0.00878917798, -0.0205059145, -0.00901687704, 0.00382859469, -0.0120355142, 0.00850943383, -0.00608606683, 0.0118923895, 0.00591366645, 0.00458000135, -0.00167846633, 0.00490203267, 0.00112548331, 0.00794994552, -0.0124779008, 0.0041994187, 0.0107669067, -0.00446940446, 0.0104286103, 0.00623244466, 0.0092055425, 0.019087676, -0.00109864725, -0.0202717092, 0.00796946231, 0.0182939824, 0.000973412883, 0.00498010078, 0.0191397201, -0.00972599722, -0.0178255737, 0.0153924469, 0.00567946164, -0.00917951949, 0.0269075073, -0.00867207628, -0.0206100047, -0.00490853842, 0.00183622923, -0.0146768223, 0.0138961403, 0.00772224646, -0.00274214568, 0.020193642, -0.00146133918, -0.0134537537, -0.00975201931, -0.0126210265, -0.0100317644, 0.00174514961, -0.00116533053, 0.0124648893, -0.0117687816, 0.00279581756, 0.0121200886, 0.0160690378, -0.001638619, -0.0292755757, 0.0128682423, -0.00162967376, -0.0177344941, -0.00389690441, -0.0131154582, 0.0037245038, 0.00664230296, 0.014390572, -0.0193088688, 0.00948528666, 0.00932915, -0.00695457589, -0.0149240382, -0.00711721787, -0.000648535322, 0.00359113724, -0.00957636628, -0.00482396455, 0.00354234478, 0.0123087531, 0.0127381282, -0.00274051912, -0.000232374878, -0.00091160892, -0.0278183036, 0.0121135823, -0.0124063389, 0.0217810292, -0.0124258557, -0.00328862295, 0.013740004, -0.00229487987, 0.00222819671, -0.00603076862, 0.00787838269, 0.000875827624, -0.0222624484, -0.0172270499, -0.00546477409, 0.0125689805, -0.00568596739, 0.00760514382, 0.00675289938, -0.00594294211, 0.0108254571, 0.00526309805, -0.0100512812, -0.00763116684, 0.00739696203, -0.0334131904, 0.0114434976, -0.0299521666, -0.0334392115, 0.0157177318, 0.00860051345, -0.0119899744, 0.000318575185, -0.0159389246, -0.00115475885, -0.0242141541, 0.0298741, 0.032372281, -0.0125039238, 0.0131024467, 0.02521603, -0.0057184957, -0.0125624752, 0.00371149252, -0.0155746061, 0.0168497209, 0.00113442854, 0.0146898339, 0.0157177318, -0.00887375232, -0.00873713288, -0.00594619475, 0.0114109693, 0.0103505421, -0.00511346711, -0.015847845, -0.0041668904, -0.00354885031, -0.00597872306, 0.00223470223, -0.0121916514, -0.00298773521, -0.0128487246, 0.0142084127, -0.00155811117, -0.0180988107, -0.00729287136, -0.00303327502, -0.00750755891, -0.00901687704, -0.0173181295, 0.0216769371, -0.00076726405, -0.00294544827, -0.0293536447, 0.000788000936, 0.00979105383, -0.0059624589, -0.0128877591, 0.00135236897, 0.00162479444, 0.0123477876, 0.00158006791, -0.0167976748, -0.00895832665, -0.0341418274, 0.00496058352, 0.0124388672, -0.000851431338, 0.00727986, 0.0342459194, -0.0200114828, -0.0048077, 0.00584210362, -0.000616820122, -0.000367571105, -0.0057087373, -0.015470515, -0.00599173456, -0.0194519944, -0.00332765724, 0.015873868, -0.00506142201, -0.0026901, -1.35704495e-05, 0.0167976748, 0.012230685, 0.0132781, -0.00368221686, 0.0083207693, 0.014390572, -0.0088347178, -0.00593318325, 0.00935517251, -0.0070521608, 0.00586812664, -0.0121200886, 0.00536068343, 0.00449542748, 0.0028381045, 0.00273076072, 0.00239409157, -0.00558512937, -0.0174612552, -0.00357162021, 0.00471987342, -0.00197772775, -0.00652845344, 0.017630402, 0.00424495852, -0.0141563676, -0.00925108232, -0.0180467665, -0.0145206852, 0.0259706881, 0.0217289831, -0.00553633645, -0.00288852351, -0.00854846835, -0.0441605784, 0.00617714645, 0.0164723899, 0.0310971681, 0.0233423933, -0.00243963138, -0.00892579742, 0.00336994417, -0.00672037108, 0.0128422193, 0.00615437655, 0.021976199, -0.000161828881, 0.0010059413, -0.00112710963, -0.0116711967, -0.00983659364, 0.0126925884, -0.0172660835, 0.0150281293, 0.011176764, 0.0132585829, 0.0352868289, 0.0322681889, 0.0227829032, 0.0131219635, 0.00301538431, 0.00885423552, 0.0130438954, -0.0197382439, 0.00533791352, 0.00397171965, 0.0092445761, 0.0147028444, -0.0161601175, 0.0169668235, 0.0107864235, -0.0143515375, 0.0183980726, 0.0208312, 0.0134927873, -0.00602426287, -0.00585836824, 0.016927788, 0.0179686975, -0.00256974506, -0.0122632133, 0.0113329, -0.00162316801, 0.00747503, -0.0173571631, -0.0420527384, -0.00542574, -0.000278727879, -0.0131805148, 0.0203758013, -0.015925914, -0.0191397201, 0.00411159219, 0.00782633759, 0.0224966537, 0.00616413495, -0.011677702, 0.00448566861, -0.0205059145, -0.00648291362, -0.00164593791, 0.0156136407, -0.00484022871, -0.0261008032, -0.0366139859, 0.014767902, -0.00279581756, 0.00320730195, 0.00193869369, 0.0216899496, 0.0215077903, -0.0173441526, 0.013661935, -2.70011287e-06, -0.0309150089, -0.0025404694, 0.00929662213, -0.0186973345, 0.0228219386, 0.00536068343, 0.0129528157, -0.0196211413, 0.00020330261, -0.00880869571, -0.00421568286, -0.00149061473, -0.000421243021, -0.0194519944, -0.0042091771, 0.00801500212, -0.00862003, 0.0137530146, 0.0218460858, -0.0140002314, -0.0264781322, -0.0015621772, -0.0171099473, -0.0126210265, -0.00433278503, 0.0157047193, 0.0163422767, 0.0129463105, -0.00629424863, 0.00386112323, -0.0214947779, 0.015496538, 0.011300372, 0.0129658272, -0.0163813103, -0.0063495473, -0.00619666371, 0.00785886589, 0.0138180722, -0.00303815422, 0.000792880193, 0.0157567654, 0.0452014878, 0.00434904965, -0.013713981, -0.00374402083, 0.0100317644, -0.0130764237, 0.00738395099, 0.00748804165, 0.00279907044, -0.00335367979, -0.00712372363, -0.00224934, -0.00957636628, -0.00871111, 0.00708468957, -0.0200505164, 0.00152314315, 0.00565018598, 0.0248907451, -0.022002222, 0.0206880737, 0.00276003615, -0.00130357628, 0.00799548533, -0.0175653454, 0.0106823323, -0.00436856644, 0.0221453458, 0.00304791285, -0.0160560273, 0.00986261666, -0.00709770061, 0.00158576039, 0.017708471, -0.0153534133, -0.0153013673, 0.0199073907, 0.00326747959, -0.00615762966, -0.00536393607, 0.0179296639, -0.00786537118, 0.00891929213, 0.0298741, 0.00231602322, 0.00490528531, 0.00613160664, 0.00579005852, -0.0146377878, -0.0119119063, 0.00772875221, 0.0117622754, -0.00202164124, 0.0106432978, -0.00742298504, 0.00774826901, -0.00373100955, -0.0192568228, 0.00214687549, 0.00356836733, 0.00682446221, 0.0155095495, 0.015873868, -0.00534116616, 0.00150931859, 0.00694807, 0.0213906877, 0.0233684145, -0.0144946631, 0.00248679752, -0.00255673355, -0.00843787193, 0.00848341174, 0.0219892096, -0.00568271475, 0.0200244933, 0.0285469387, 0.00266082445, -0.00860051345, -0.00861352496, -0.00401400682, -0.0233814269, -0.00338295544, -0.0189185273, 0.0013361047, 0.0152493222, -0.00761164958, -0.00635605259, -0.0148719922, -0.0059494474, 0.00906892307, 0.00895182, -0.0173181295, 5.20962931e-05, 0.0035260804, 0.00699361, -0.00633003, -0.00623244466, -0.0103310253, -0.0152232992, -0.0106563093, -0.000998622389, 0.000724977115, 0.0132325599, 0.00556561211, -0.000759945135, 0.00798247382, -0.00515250117, 0.0179426745, 0.002612032, 0.0250468813, -0.0096544344, 0.0132455714, 0.0166935846, 3.84241939e-05, -0.0147028444, -0.00620642211, 0.000390341, -0.0178776179, 0.0167456288, -0.00709770061, -0.0268294383, 0.0165114254, -0.0128487246, 0.0067789224, 0.00260064704, -0.0144426171, 0.00469710352, 0.013713981, -0.00091160892, 0.0175002888, 0.0110401446, 0.0059071607, -0.00832727458, 0.00921204779, 0.00121249678, -0.00229975907, 0.00945926365, -0.000995369628, 0.0141563676, 0.0205969941, -0.0302123949, 0.00299586728, -0.00516226, -0.0120875603, 0.0130764237, -0.00605679117, 0.000297838327, -0.000290722732, -0.000305563823, -0.00966744591, -0.00944625214, -0.00268196804, 0.0254502334, 0.0114825312, 0.0389820561, -0.0213256311, 0.000532652833, -0.0136098899, -0.00465156371, -0.011176764, 0.00223470223, 0.0250338707, 0.0214557443, 0.0126015088, 0.0178125612, 0.00977804232, 0.0156917088, -0.0050158822, -0.00769622345, -0.00244288426, -0.00893880893, 0.0127121052, 0.0105912527, -0.0116907135, 0.00816463307, -0.00507768616, -0.030967053, -0.00209645648, -0.00501262909, 0.00450193323, 0.0102529572, -0.00272588129, -0.00510370871, -0.0105196899, -0.00458325399, 0.0164593793, -0.0278183036, -0.00761815533, -0.0118468497, 0.0091730142, 0.00588439079, -0.0178646073, -0.00485649286, -0.0218851194, 0.0150541514, 0.0158868786, 0.0310971681, -0.0128617361, -0.00613160664, -0.0105066793, 0.0144686401, -0.042495124, 0.00832727458, -0.0201025624, -0.0340117142, 0.0278703477, -0.00484022871, -0.000877454062, -0.00765068363, 0.00128812529, 0.00191104459, 0.0115215657, 0.0154444929, -0.000825002, -0.00396521389, 0.0187754035, -0.0117297471, 0.010675827, 0.00774826901, 0.00978454761, -0.00237132167, -0.00368221686, -0.016953811, 0.0153664248, -0.00354559743, 0.0023192761, -0.0250859149, -0.00357812596, -0.0147548905, -0.0287811439, 0.0229910854, -0.001572749, 0.0222234149, -0.0140262535, 0.000132146699, 0.00371149252, 0.0184631292, 0.00459301239, -0.00417014305, -0.00511997286, 0.0260227341, 0.0307588726, 0.000574533187, -0.0198033, 0.0119249178, -0.0143385269, -0.0262309164, -0.00506142201, 0.00604703277, -0.00043994686, -0.000957961893, 0.0215598345, -0.00632352429, 0.00617714645, -0.00754008722, 0.0107864235, 0.0210393798, -0.00675289938, -0.00458325399, 0.0325544402, -0.0363277383, -0.0207401197, 0.0137530146, 0.014390572, -0.0180988107, -0.0223535281, 0.0147548905, -0.0168236978, 0.00211272063, 0.0444728509, 0.0097390078, -0.00533140777, 0.00450193323, 0.0353388712, -0.000758725335, 0.00276979478, -0.0234985296, -1.73950793e-05, -0.000117203956, 0.0197382439, -0.00858099665, -0.0126275318, -0.0038416062, 0.00848991703, 0.0116321621, -0.0134797767, 0.0267773941, -0.00446940446, 0.00775477476, 0.0113133835, -0.020115573, -0.00494431937, 0.00979105383, -0.00690253032, -0.0127641512, 0.0197122209, -0.016602505, 0.00768971816, -0.000429375126, -0.0236286428, 0.0141693791, 0.0163162537, -0.0096544344, 0.014065288, 0.0111832703, -0.00272750785, 0.0118858842, -0.023758756, -0.0142474473, -0.0115475878, -0.00858099665, 0.00740346778, -0.0158608556, 0.0186843239, 0.00355535606, 0.0214036983, 0.0208181869, 0.00887375232, -0.0175653454, 0.00996020157, 0.00824920647, 0.0315135308, -0.000892905053, -0.0109685827, 0.00887375232, 0.0138831288, 0.0336473957, 0.0307328496, -0.0260097235, -0.00471011503, 0.0248777345, -0.0156526752, -0.0397627391, -0.0148069356, 0.00112304359, -0.00729287136, 0.0141563676, -0.0118013099, -0.00945275836, 0.0131024467, 0.0120940655, 0.00806054194, -0.0107538952, 0.00494431937, 0.00579656381, -0.0191657431, 0.010799435, -0.0259576775, 0.0106628155, 0.00502238749, 0.00474589597, 0.0048695039, -0.0129398042, 0.000157457878, 0.0230040979, 0.00390991569, 0.0124063389, -0.00265106605, -0.0188664831, 0.0268294383, 0.0147548905, -0.00258113, -0.00263805478, -0.00932915, 0.00119704579, 0.0087631559, -0.0125039238, -0.0203497782, 0.00722781429, 0.00743599609, 0.0257104617, 0.00187201041, 0.0141823897, -0.0121591222, -0.0145076746, 0.0011685834, 0.00432627974, -0.0260357447, -0.00122550817, -0.0114760259, 0.00445964606, -0.0061608823, 0.00503214635, 0.002210306, 0.0103635537, -0.014741879, -0.00619991636, 0.0196081307, 0.000135399532, 0.00971298572, -0.0124909123, -0.00360414875, 0.0102204289, -0.0261528473, -0.0192308, 0.00560789928, 0.0195951182, -0.00942023, -0.0149630718, 0.016953811, -0.000889652234, -0.00921204779, 0.0245524496, -0.0241490975, 0.0152363107, -0.0103440369, -0.0166415386, -0.000563961454, 0.00897784345, -0.00348054059, -0.0269855745, -0.0243572798, -0.00439133635, -0.00798897911, 2.83607133e-05, 0.00855497364, -0.00283159874, -0.000491585699, 0.00721480325, 0.000324267661, 0.00137757848, 0.00134911609, -0.0281826202, -0.00453771418, 0.00114662678, -0.0105066793, -0.00244938978, 0.0195560846, -0.0110791791, 0.00321380771, 0.0126665654, 0.00549730239, -0.0126730716, 0.00854846835, -0.00994068477, 0.0149370497, -0.00718878023, -0.00981057063, -0.00908193458, -0.0148329586, -0.00455397833, -0.0205059145, 0.0173571631, 0.0217680167, 0.0130829299, -0.00289340271, 0.0291975085, -0.00966094, -0.00166870782, 0.00976503082, 0.0142864808, -0.010272474, -0.000953082636, 0.00652520079, 0.00336994417, -0.00262992247, 0.0186973345, 0.0138180722, -0.00477191899, -0.0213386416, 0.00436856644, 0.0088477293, -0.0129137821, 0.0144686401, 0.00903639477, 0.00222331728, 0.000320201623, -0.00884122401, 0.010773412, 0.0104676448, 0.00591041334, 0.011931424, 0.00158576039, -0.0084704, -0.00526635069, -0.0188794937, 0.0268294383, -0.0123347761, 0.00900386646, -0.00285924785, 0.000471662061, -0.00188014249, 0.00800849684, -0.00666181976, 0.0104676448, 0.00363667705, -0.000718878058, 0.00719528599, 0.0263610296, 0.000248232478, -0.00426772842, 0.00285924785, -0.00739696203, -0.0101488661, 0.0274800081, -0.0177475046, 0.00890628062, 0.017305119, 0.0239669383, -0.0463725105, -0.0228219386, -0.0048174588, 0.0251769945, -0.0105392076, -0.00905591156, -0.0121721337, -0.0165114254, -0.0225617103, 0.00134667649, -0.000496464956, 0.0105196899, 0.0167976748, -0.00907542836, 0.0119704576, -0.0166675616, 0.013362674, -0.0157437548, 0.0023046385, 0.0378370546, 0.000583478482, -0.0066000158, 0.0146638108, -0.00805403665, 0.00542574, -0.0148199471, 0.00404653512, 0.00371149252, -0.0111832703, 0.000682690181, -0.000183683907, 0.0319559164, 0.00992116705, 0.00692204712, -0.0150801744, -0.00597872306, 0.00423194701, -0.0103115086, 0.0223665405, -0.0254502334, 0.000333822885, -0.00726034259, -0.020245688, -0.0117427586, 0.0148199471, 0.00180858, 0.025593359, -0.0137009695, -0.00828173477, -0.00227536284, -0.0117232418, 0.00319429068, -0.0217680167, -0.0164203458, -0.0258535855, 0.00990815647, 0.0218851194, -0.00989514496, 0.0012092439, 0.0141563676, -0.0109360544, -0.0493651256, 0.0226397794, 0.00774176326, -0.0147939241, 0.0364318267, -0.0349745564, -0.00323820394, 0.0133496625, 0.0190096069, -0.00921855401, -0.00698059844, -0.0154835265, -0.00457349559, 0.00123607984, 0.00918602478, -0.0270636436, -0.00531514362, 0.0176954586, -0.010949065, 0.011001111, -0.0209743232, -0.0294577349, -0.00236318959, -0.0059299306, 0.0137530146, 0.0212996081, 0.0114109693, 0.00384485908, -0.0208181869, 0.00355860894, 0.0007176582, -0.0130569069, 0.00888676383, 0.0193739254, -0.00385461748, -0.0128617361, -0.00297309738, 0.0054777856, 0.0176694356, -0.0309150089, 0.00391967455, 0.00446289871, -0.00136294065, 0.0211174488, 0.00382534182, 0.00488576852, -0.0132065378, 0.0315655768, 0.0102919918, 0.0318778493, -0.002291627, 0.0217419937, -0.0123282699, -0.0183980726, 0.0246825628, -0.00453446154, 0.0126145203, -0.00259576761, -0.00780682033, -0.00256811851, 0.00329350238, -0.0264390986, 0.0143515375, 0.000933565607, 0.00198260695, 0.00252908445, 0.0261918828, 0.0107278721, 0.0261788704, -0.00469710352, -0.00214037, 0.00815812685, -0.0153794363, -0.0167846642, -0.0146638108, -0.0128227025, 0.0180077329, -0.00343174813, 0.0066130273, 0.00488251541, -0.000548103824, 0.0106107695, -0.0148459701, -0.000835980347, 0.0254892688, 0.011853355, 0.00390341016, 0.0163292661, -0.00218590978, -0.0415322818, 0.00927059911, 0.0193479024, -0.00488576852, -0.00847690552, -0.0298220534, 0.00875014439, -0.0155095495, -0.00651218928, -0.0123738097, 0.0124193495, -0.0102529572, -0.00225909869, -0.00379931927, -0.00831426401, 0.0213516541, -0.0142604578, -0.0145206852, 0.0220152326, 0.00183460279, 0.0140913101, -0.00241035572, 0.020219665, -0.0174222197, 0.000199541508, -0.00118728727, 0.00659351, 0.000794913212, 0.0184240956, 0.00975852553, 0.00511997286, -0.00503214635, -0.0048695039, -0.00628123758, 0.0202977322, 0.0038188363, 0.0066227857, 0.00123770628, 0.0105131846, -0.00507118041, 0.00647640787, 0.0260747802, -0.00587788504, 0.00759213278, 0.00156299048, -0.0027388928, 0.00499311229, 0.0156917088, -0.00108644913, 0.0021176, -0.0223925635, -0.0119509408, -0.00508419145, -0.0050484105, 0.00857449, 0.00750105316, -0.0108775031, 0.0057087373, 0.0135838669, -0.0041994187, -0.00726684835, -0.0316696689, -0.00104253576, 0.0169798341, -0.0164723899, -0.00912096817, 0.0243572798, 0.0174612552, 0.000681063742, -0.000807517965, 0.005487544, 0.0136229014, 0.016550459, 0.00167521345, 0.0143125039, 0.0188664831, -0.00529237371, -0.0155615946, -0.026321996, -0.00998622458, -0.0232903473, -0.0246044956, 0.0154444929, -0.011580117, 0.019491028, 0.00430676248, -0.0229650624, -0.00558838202, -0.00912096817, 0.0127901742, -0.00384485908, 0.0310190991, 0.000500937633, -0.00380257191, -0.00302351639, 0.000351916824, 0.00649592513, 0.00400750106, 0.0189315397, 0.0248517115, -0.0027486512, 0.00113036251, -0.0218721088, 0.0156917088, 0.000626985275, 0.00292267837, -0.0245654602, 0.00146621838, -0.00389690441, 0.0220802892, 0.000945763721, -0.00267058308, -0.0257885288, -0.0211825054, 0.0087436391, -0.0212345514, 0.0137269925, -0.0153404018, 0.00218103034, -0.0185542088, -0.0153664248, -0.0122827301, -0.0206880737, -0.00729937712, 0.0303425081, -0.00336994417, 0.0105131846, -0.00206718105, 0.00163536624, 0.00410183333, -0.0119834691, -0.00756610977, -0.00901037175, 0.026295973, -0.0344020538, 0.0112483269, 0.0246565398, 0.0150411399, 0.00567295589, -0.0195430741, 0.0103635537, -0.00977804232, -0.00138327095, 0.00655447599, 0.000362691848, 0.00991466176, -0.0267513711, 0.0243963134, -0.0148719922, -0.0261008032, -0.00550380815, 0.0139611969, 0.00960889459, 0.0147548905, -0.013160998, 0.0016947306, -0.00802150741, -0.00602751598, -0.0109360544, -0.00802801363, -0.0276881885, 0.0126405433, -0.00121981569, 0.0092771044, 0.000178398041, -0.0307848938, -0.00416038465, 0.00882821251, -0.000636743789, -0.0092445761, -0.00808005873, -0.00839233212, -0.0108384686, -0.00487275701, 0.0121526169, -0.00116370409, -0.0242401771, 0.0143775605, -0.0247215983, 0.00326747959, -0.0298480764, 0.00330488733, 1.32909081e-05, 0.017604379, -0.0256974492, -0.0160560273, 0.0196341537, -0.0247215983, -0.017630402, 0.00337644969, -0.00905591156, 0.00125722331, -0.0341678485, 0.00832727458, 0.00314061879, 0.0207271073, 0.00115313241, 0.00333741563, 0.0210393798, 0.00315200374, 0.00259414129, -0.0251379609, -0.00338295544, 0.0137269925, 0.0152623337, -0.00729287136, -0.00196959567, -0.00563066918, -0.00258926209, 0.0096349176, 0.0300562587, -0.0093096327, -0.00746852485, -0.00016254044, 0.0239799488, -0.0167586412, 0.0293276217, 0.00368221686, -0.0171099473, 0.00452470267, 0.0284428485, -0.0092055425, -0.0339596681, -0.00194357301, 0.00661953306, 0.0187493805, 0.00813861, 0.00823619496, 0.000587951159, 0.0145336967, 0.0355991, -0.023030119, -0.0238628481, -0.0283387583, -0.021976199, 0.0101683829, 0.0116451737, 0.0141563676, -0.00282184035, 0.00694156438, -0.0126925884, 0.000239693778, -0.0142344357, -0.0218721088, -0.00630726, -0.015145231, -0.00261528487, 0.0201285854, -0.0097390078, 0.0211044382, 0.000115170929, -0.0307848938, -0.00937469, 0.0137530146, 0.00871761609, 0.0106172757, -0.00593643636, -0.0313834175, -0.00936167873, -0.012783668, -0.0117557701, 0.00412135059, 0.023030119, 0.00426122267, 0.0217029601, -0.000137432566, -0.0107408836, 0.018385062, -0.00687650731, -0.0108449748, 0.000209808291, 0.0134407422, -0.00459951814, 0.00943974685, -0.0396066, -0.0268294383, -0.0203107446, -0.0107148606, 0.0207140967, 0.000336872414, 0.0319038704, -0.00192893518, 0.0240710285, -0.0256323926, -0.00379281351, -0.016927788, -0.0310971681, -0.00534441881, -0.0100838095, 0.00263642822, 0.00701312674, -0.0186452884, -0.00566319749, 0.00692204712, -0.0134537537, -0.0120159974, -0.0179426745, -0.011905401, -0.0101879006, -0.00544200419, -0.00543224579, -0.0108449748, -0.0097390078, 0.0179426745, -0.00271612289, -0.011703725, 0.00560139352, -0.00721480325, -0.00656748749, -0.00348054059, -0.00554609532, -0.0322161466, -0.0190226194, 0.0112288101, -0.00280720252, 0.0163422767, 0.0104286103, -0.00643086806, -0.0209873356, -0.0164333563, -0.00978454761, 0.0032007962, -0.0185411982, 0.0222104043, -0.00228024204, 0.0141303446, 0.00858099665, -0.02521603, 0.00089615793, 0.0074620191, -0.0113979578, 0.0160039812, -0.00583885098, -0.0135838669, -0.014065288, 0.0204408579, 0.0228479598, -0.0183720496, -0.00561765768, -0.0132585829, 0.00641135126, -0.00629099598, -0.0101748891, -0.016602505, 0.00473613758, -0.0349485315, 0.00839233212, -0.00221681176, -0.00679193344, 0.0306287576, 0.00305767125, 0.00235831039, -0.00393919135, 0.0119574461, 0.0103180138, -0.00923156459, -0.0195170511, 0.0259186439, 0.00748804165, 0.00472637918, 0.0202717092, 0.00602101, 0.0185932443, 0.00311134313, 0.00204115827, -0.0285729617, 0.0130373901, -0.00361390715, 0.00620967476, -0.000894531491, -0.0177214816, -0.000974226103, 0.00171424763, 0.0180727895, 0.0177605152, 0.0110726729, -0.00305929757, 0.0180077329, 0.0111702587, 0.0182029027, -0.0158088114, 0.0290934164, 0.0101683829, 0.00597872306, 0.00160934345, -0.0118013099, -0.0157437548, 0.00993417855, -0.0188534707, 0.00793693401, 0.0114304861, -0.000941697683, 0.0242792107, -0.0162381865, 0.0209092665, 0.00570548465, 0.0044401288, 0.00809957553, 0.000308003451, 0.0322942138, 0.00116045133, 0.00134992937, -0.0192438122, -0.0101488661, 0.0160430148, 0.0124518778, 0.0166935846, 0.0208181869, -0.00758562703, -0.0103245201, 0.0129918503, -0.00171262119, 0.0268554613, -0.00762466108, 0.0150411399, -0.0235115401, -0.00558187626, -0.00701312674, -0.0340637602, 0.0246955752, 0.0300822798, -0.0131284697, -7.97962712e-05, -0.0150671629, -0.0166805722, -0.00893880893, 0.00632027164, -0.0261918828, -0.019491028, -0.0150671629, 0.00255348068, -0.00912747439, -0.00226072501, -0.015769776]
05 Jun, 2023
unordered_set swap() function in C++ STL 05 Jun, 2023 The unordered_set::swap() method is a builtin function in C++ STL which is used to exchange values of two unordered_set containers. It swaps the element of two unordered_set containers. The sizes may differ but it swaps elements and changes the order of elements also.Syntax: unordered_set_firstname.swap(unordered_set_secondname) Parameter: The function accepts one mandatory parameter second_name which specifies the second unordered_set which is to be swapped with the first one. Return Value: This function doesn’t returns anything.Below program illustrates the unordered_set::swap() function: CPP // C++ program to illustrate the // unordered_set_swap() function #include <iostream> #include <unordered_set> using namespace std; int main() { unordered_set<int> arr1 = { 1, 2, 3, 4, 5 }; unordered_set<int> arr2 = { 5, 6, 7, 8, 9 }; cout << "The elements of arr1 before swap(): "; for (auto it = arr1.begin(); it != arr1.end(); it++) { cout << *it << " "; } cout << "\nThe elements of arr2 before swap(): "; for (auto it = arr2.begin(); it != arr2.end(); it++) { cout << *it << " "; } // inbuilt swap function to swap // elements of two unordered_set swap(arr1, arr2); cout << "\n\nThe elements of arr1 after swap(): "; // element for (auto it = arr1.begin(); it != arr1.end(); it++) { cout << *it << " "; } cout << "\nThe elements of arr2 after swap(): "; for (auto it = arr2.begin(); it != arr2.end(); it++) { cout << *it << " "; } return 0; } Output: The elements of arr1 before swap(): 5 1 2 3 4 The elements of arr2 before swap(): 9 5 6 7 8 The elements of arr1 after swap(): 9 5 6 7 8 The elements of arr2 after swap(): 5 1 2 3 4 Time complexity: O(1)Auxiliary Space: O(1) Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL
https://www.geeksforgeeks.org/unordered_set-swap-function-in-c-stl?ref=asr10
PHP
unordered_set swap() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0406371765, -0.0216560159, -0.0118696569, 0.0390168354, 0.0257454533, -0.0121847233, -0.0165635087, 0.0120496945, -0.0228391234, -0.012859867, -0.0499991626, 0.0289861392, -0.00817887485, -0.026298428, 0.00370042655, -0.0238421932, -0.0248324014, 0.030529324, -0.00167499762, -0.0153932599, 0.0243565869, -0.00414087716, -0.0322525464, -0.0156504568, -0.00991495699, 0.00592839858, -0.0281888284, -0.00560368691, 0.00727225468, 0.000610441784, 0.00769663, 0.0110209053, 0.0118696569, 0.0122104436, -0.0293976553, 0.0202928688, 0.0161648523, 0.0656367615, -0.0175022781, 0.000365702464, -0.0174508393, 0.00288543245, 0.0260798093, -0.00821102504, 0.00777378911, 0.027211478, -0.00278737606, -0.0296805725, 0.000856788596, 0.0164091904, 0.0388110764, 0.00774806971, 0.0335385315, 0.00546222832, 0.0241122507, 0.0108858766, -0.0137214772, 0.00943271257, -0.0129756052, -0.0313266367, -0.0105965296, -0.0460126027, 0.0556060635, -0.0423604, -0.0149946045, -0.00644922303, -0.0407143384, 0.0453953296, 0.0108858766, 0.00717580551, -0.0447780564, 0.04338919, 0.00611486658, 0.00122972473, -0.0310437176, -0.0269285608, -0.0136700384, -0.0487903319, -0.051979579, 0.032895539, -0.0232249182, 0.0170264635, 0.0098570874, 0.00135108968, 0.0320467874, 0.00351717346, 0.0327155, -0.0270571597, 0.0437749848, 0.0234306771, -0.0450352542, -0.0374736525, 0.0290890187, 0.0135157201, -0.0397884287, 0.0263241474, 0.0405343, 0.0103650521, -0.0286003426, 0.0455239266, 0.00859682076, 0.00587374391, -0.00172000716, -0.0159205142, 0.00525647029, 0.0292947758, 0.0350045562, 0.0163577497, 0.0117089087, 0.00194344728, 0.0302206855, -0.00325676124, -0.0149946045, 0.0639907, -0.0288832597, -0.0214502569, 0.0113552622, -0.0358533077, 0.0103779119, 0.0118760867, 0.0181967113, 0.0344130024, 0.0297062919, -0.000861611043, -0.0480187424, -0.0324325822, 0.0054300786, 0.0300663672, 0.0139529556, 0.0105836699, -0.00556510733, -0.00526290061, -0.0446494557, -0.0397112668, -0.0298606101, 0.0189554431, -0.0123454714, 0.0313009135, -0.0128341466, -0.0155089991, -0.0378851667, 0.0159333739, 0.012441921, 0.00188075553, 0.0152518013, -0.021360239, 0.0027713012, -0.0025655434, 0.0251281783, 0.016923584, -0.0210258812, -0.008172445, 0.0213345177, 0.00161953946, 0.00322300405, -0.001322155, 0.0319181904, -0.0150846234, 0.000304216228, -0.0328441, 0.0347730778, -0.0132971024, 0.0179909524, -0.0122811729, -0.0353131928, 9.03707041e-05, 0.0266199242, 0.018582508, -0.0120882746, 0.0394797921, 0.00597662292, 0.0256940126, 0.00906620547, -0.00810814556, -0.00659068162, -0.0373450518, 0.0295519736, 0.010120715, 0.0356218293, -0.0167049672, -0.00853252131, -0.00629169, 0.0403799824, 0.0287803821, -0.0178366341, 0.00190808275, 0.00482566515, -0.0223761685, 0.0314552337, 0.0229034219, 0.00656174682, -0.00477101048, 0.0302464068, 0.0392225944, 0.0303750057, 0.0251924787, -0.0163834691, -0.00947772153, 0.00761304097, 0.0488417745, 0.00444951374, 0.000109911671, -0.0118760867, -0.0136185987, 0.0131942229, -0.00314584491, -0.00151585671, -0.00121284614, 0.0228005443, -0.0202671494, -0.000613656768, 0.0152132222, 0.00527897524, 0.0211287607, -0.0358275883, -0.000691217836, -0.0588467494, 0.0214631166, 0.00303010596, -0.0171807818, -0.00624025, -0.0462955199, 0.008088856, -0.029912049, -0.0371907353, -0.0427976362, 0.0264398847, 0.0234692562, -0.0296034124, 0.0115931695, 0.0142873116, 0.0208329838, -0.023893632, -0.00503785256, 0.0228519831, -0.00545258354, -0.0251024589, -0.018042393, 0.00518895593, -0.00472600106, 0.00502820779, 0.0467327535, -0.00247391686, -0.037087854, 0.0045459629, 0.0273143556, 0.00748444255, -0.0129627455, 0.00906620547, -0.00584159419, 0.0289347, 0.0233406574, -0.00233245827, 0.0176823158, -0.00775449956, 0.0403285399, -0.0397884287, -0.0179395135, -0.00542043382, -0.0211802, 0.0140944142, 0.0366249, -0.0284203049, 0.0124290613, 0.00567763112, -0.00688002864, 0.0184153281, -0.0277258717, -0.0580237173, -0.0565319732, 0.00604092237, -0.00702148722, -0.00516645145, -0.00855181087, 0.0359304659, 0.0203828886, -0.0201256908, 0.00260251551, -0.0204343274, -0.0366763398, 0.0177723356, -0.0301435273, 0.00449452316, -0.0147631271, 0.0367020592, -0.0392997526, -0.0401999429, -0.0131234936, -0.00891188718, -0.00977992825, -0.00475172047, -0.0155089991, 0.0140686939, -0.0110144755, 0.0275201146, 0.0383738428, 0.00979278795, -0.0466041565, -0.0346702, -0.0193412397, 0.00289025507, -0.023520695, 0.00835248362, -0.0130527643, -0.0214502569, -0.00409586728, 0.0336156897, -0.00234371074, 0.00795382727, -0.0436721072, 0.0365220197, -0.0236107148, -0.0359819047, 0.0521339, 0.014891725, -0.0258611925, -0.00331784552, -0.00672571035, -0.0163191706, -0.0208844226, -0.0519538596, -0.0085775312, 0.0119275264, 0.0308379605, 0.041228734, -0.0102171637, -0.00184699835, 0.0433120318, -0.0191997811, -0.0359304659, -0.0282659866, 0.0185696464, -0.0332813337, 0.00517609622, 0.0180552527, -0.00180520373, 0.00379366055, -0.000526450807, -0.00165410037, -0.0235335566, -0.00548473326, -0.0059444732, 0.00505071273, 0.0232377797, 0.0177723356, 0.0076580504, 0.010037126, -0.0115931695, -0.000896975689, 0.019122621, 0.000547749922, -0.0439293049, 0.0229677223, -0.00612772629, 0.0418974459, -0.0563262142, -0.0112523828, -0.00990852714, 0.00629169, -0.0176951755, 0.015766196, 0.0364448614, -0.013605739, -0.0195855759, -0.0165635087, -0.0406371765, -0.0233149379, -0.00990209728, 0.0102686035, -0.0297320113, -0.0184539091, -0.00385474507, 0.0342844054, 0.0236878749, -0.0442893803, 0.0176051576, 0.00119918259, 0.0316867121, 0.0172193609, 0.00729797408, 0.00895046722, 0.00290311477, -0.0295005348, -0.00364255719, 0.00286292774, -0.0399170257, 0.012403341, 0.0115931695, -0.0205372069, 0.00160667952, -0.0381166451, 0.00590589363, -0.0118567972, -0.00638492359, -0.00369721162, -0.00625632517, -0.0424375609, -0.00200613914, -0.0434406288, -0.0175794382, 0.0137600573, -0.0511308275, -0.00846822187, -0.000388810033, 0.0111044943, -0.00527897524, -0.0169750247, 0.00734298397, -0.0114967208, 0.0112523828, 0.00353646325, -0.00235817814, -0.0176437367, 0.0192255, 0.00822388474, 0.00693146791, -0.013567159, 0.038785357, 0.0140815536, 0.000470992614, -0.0214759763, -0.0304007251, 0.00286614266, 0.0112266634, 0.00451702811, 0.0352103151, 0.00639456883, 0.0313009135, -0.0153289605, 0.000898583152, -0.000227860757, -0.0112330932, -0.022774823, 0.0186210871, -0.0311723165, -0.0297834501, 0.0222990084, -0.0353389122, 0.00414409209, -0.0195727162, 0.0404571407, 0.056583412, -0.00432413025, -0.0486360155, 0.0122168735, 0.0377822891, -0.00563583663, 0.019289799, 0.000788470556, 0.0511822701, -0.0463469587, 0.049819123, -0.0124612106, 0.0194569789, 0.00844893232, -0.0402513817, 0.00809528586, -0.0127634173, 0.0421289243, 0.0230448805, 0.0263884459, 0.0250253, 0.0329984166, -0.0156890377, 0.0211802, 0.022273289, -0.00530469511, 0.0214631166, -0.00704720709, -0.00483531, -0.0161134135, -0.0232377797, -0.0100049758, 0.0080759963, 0.0134128407, -0.00812100526, -0.00064942328, -0.0134385601, -0.0129113058, -0.00991495699, 0.0238164719, -0.0166406669, 0.00184860581, -0.00325676124, 0.0188911445, 0.00417945674, 0.0270314403, -0.0219646525, -0.0607500114, -0.0098570874, -0.0260798093, -0.00273593655, 0.00533362944, -0.0468613543, 0.00503785256, 0.0111880843, -0.0393769108, -0.0148145659, -0.0174508393, 0.0011654254, 0.0488160551, -0.00982493814, -0.0196370166, 0.014518789, 0.0136700384, -0.0619331188, -0.0160876922, 0.00827532448, -0.0137343379, -0.00849394221, 0.00949058123, 0.0236878749, 0.0104679316, 0.00725296466, -0.0121011343, -0.000347618276, 0.0180938318, -0.0272629168, -0.00845536217, 0.0181838516, -0.00651352247, -0.00280505838, -0.00632383954, 0.0382452421, -0.00671285, 0.0211159009, -0.0035718279, -0.0230191611, -0.0115931695, -0.0153161008, -0.0113231121, -0.0209101439, -0.0307865199, 0.00903405622, 0.00219260715, -0.0211930592, -0.00797311682, -0.0129627455, -0.0363162644, 0.0361876637, 0.00837177318, 0.00330498558, 0.00651030755, -0.0218103342, -0.0123647619, -0.0061759511, 0.0139529556, -0.022273289, -0.0395826697, 0.0175922979, 0.0332556143, 0.0350817144, -0.0301178079, -0.00507321721, -0.0158176366, 0.0103650521, -0.0115867397, -0.00809528586, 0.0065038777, -0.0206915252, 0.00610843673, 0.0142487325, 0.0260283705, 0.00833962299, -0.00909835566, -0.00821745489, 0.0233663768, 0.0128662968, -0.00349788368, 0.0145830885, 0.0322525464, -0.0110144755, 0.0142101524, 0.00440450432, -0.0187239666, 0.0208458435, -0.0187239666, 0.0187754054, -0.011200944, -0.015599018, 0.00139931426, -0.0329984166, 0.000254987041, -0.0056454814, 0.00614058645, -0.00695075793, -0.0412544534, -0.0144802099, 0.0017039323, 0.00179234392, 0.0271600373, 0.0208329838, 0.0201256908, 0.0184281878, 0.0284460243, -0.0165377893, -0.00388367963, -0.0154447, 0.000151103435, -0.00399620365, 0.0313266367, 0.00921409391, 0.00925267395, 0.00753588183, -0.00949058123, 0.0115353, 0.0123261819, 0.0203443095, 0.0107444189, -0.0182481501, -0.042489, -0.00728511438, 0.00604413729, -0.0253596567, 0.0241765492, 0.0152518013, 0.000391221256, 0.0426690355, -0.000681171077, -0.0122490227, 0.00789595768, -0.0315838307, -0.00515680667, 0.00283077802, 0.0144159105, 0.0261955485, -0.0400199033, 0.0153418211, 0.00305582583, -0.00760018127, 0.00111237844, -0.016550649, 0.00251410389, -0.0196112972, 0.0213087983, 0.00136957574, -0.00422125123, 0.00679643964, 0.01932838, 0.0499734432, -0.0278544705, -0.00494140387, 0.0363419838, 0.0351845957, 0.00339178974, -0.0231349, -0.0126991179, 0.0294748135, 0.0158947948, 0.0125833796, -0.0537542403, 0.0319181904, 0.0105000809, 0.00888616778, -0.00553295761, -0.0272629168, -0.00727868453, 0.0166149475, -0.011946816, -0.0154575594, -0.0366506204, -0.00387724978, -0.0135157201, 0.0208972823, 0.0194698386, 0.00442700926, -0.0375765301, -0.011741058, -0.000290753553, -0.017296521, -0.0225819256, -0.0176180173, 0.0116510391, 0.0135800187, 0.00100628461, -0.0332298949, -0.013772917, 0.0204729084, -0.00103763049, -0.00187432556, -0.00203346647, -0.0190969016, 0.00471635628, -0.011406702, 0.00913693476, 0.000149395477, -0.0109308865, 0.00445594359, 0.0323039852, -0.0483788177, -0.0120561253, -0.0021443828, 0.0158947948, 0.0285746232, -0.00391582958, -0.0222475696, 0.0220803916, 0.0321239457, -0.017875215, -0.0165249277, 0.0184667688, -0.0198813528, -0.00707935635, -0.0259383507, 0.017090762, 0.0470156707, 0.00379366055, -0.00423411094, -0.02795735, -0.0217588935, 0.00999211613, -0.0137214772, -0.0273400769, 0.0293204952, 0.0169750247, -0.00672571035, -0.0182352904, -0.00264752493, 0.0195855759, -0.0359561853, -0.0352617539, -0.0168721452, -0.0012337435, 0.00983779784, 0.046784196, -0.0197141748, -0.0235464163, -0.0422575213, 0.00133501494, -0.00614380138, -0.00515359174, 0.0177723356, 0.0106736897, 0.0151617825, -0.0308636799, 0.0024851691, 0.00812743604, -0.0420774817, -0.0275201146, -0.0299377702, -0.00308958301, 0.0187625457, -0.0227362439, 0.0247166641, -0.012609099, -0.000886527065, 0.0341815241, 5.77689316e-05, -0.0414344892, 0.0509250723, 0.0308379605, 0.0575607643, 0.0258997716, -0.00226655137, 0.0149688851, -0.0196498763, 0.0325869024, -0.00683501922, 0.00490282429, -0.00595411798, 0.0331012979, -0.000681171077, 0.0189040042, 0.0242151283, -0.040354263, -0.0139015159, -0.00768377027, 0.0184796285, 0.0125512294, 0.012859867, 0.0103329029, -0.0221446902, -0.00209133583, 0.0173479598, 0.00624989532, -0.00565834111, 0.00248034671, 0.00481280498, 0.0181066915, 0.0441865027, -0.0123454714, 0.0101271449, 0.0154832797, 0.0118439374, -0.00516645145, 0.0142744519, 0.0237135943, 0.00591553841, 0.00693789776, -0.041228734, -0.0174251199, 0.0315323919, 0.00640742853, 0.0142101524, 0.019495558, -0.0476329438, -0.011696049, -0.020074252, -0.0362648219, -0.0206400864, 0.0166921075, 0.0146988276, 0.00626275502, 0.00635277387, 0.0120882746, -0.0412544534, 0.000842321257, 0.028497465, 0.0146216685, 0.0428233556, -0.0563776568, -0.0108923074, -0.0064878026, 0.0306322016, 0.00295616174, 0.0153546808, -0.0105065107, -0.00253178622, 0.0151232034, 0.00488353427, 0.0434663482, -0.0104615018, 0.0384767205, 0.00922052469, -0.0399170257, 0.00450416841, 0.0205372069, 0.0266456436, 0.0142101524, -0.0240093712, -0.0257068723, -0.0146859679, 0.00860325061, 0.00544936862, -0.00124821078, 0.0146731073, 0.0260283705, -0.00897618663, -0.00878328923, 0.0316867121, 0.0317381509, 0.0163963307, -0.027005719, -0.0116060292, 0.00660354132, -0.00566477142, -0.02406081, 0.0292176176, 0.0155089991, 0.00997925643, 0.0368563756, 0.00616630586, 0.0011798928, 0.0150331836, 0.00864183065, 0.010410062, -0.0376794077, -0.0319953486, -0.000421562494, 0.0155089991, 0.0214631166, 0.00833962299, 0.0218874924, 0.0485074148, 0.0256940126, 0.025179619, 0.0125319399, -0.00439485954, 0.0148788653, -0.0196112972, 0.00367470691, -0.00472921599, -0.0223247278, 0.000569852826, 0.0106736897, -0.00476458063, 0.0307865199, -0.00566155603, -0.0234821159, 0.0103521924, -0.0183510296, -0.0261698291, -0.0307093617, -0.0594640225, 0.0139015159, 0.0140429744, 0.0137986364, -0.0177723356, -0.0198041946, -0.0238293335, 0.0260155108, 0.0242408477, -0.0221575499, -0.0199456532, -0.00667427061, -0.0238036122, 0.00952273142, -0.00147486595, 0.0258740522, -0.0540628806, 0.0146731073, -0.00766448025, -0.0192512199, 0.000710507622, 0.0166406669, 0.0155218588, 0.0265684836, 0.00968990941, 0.0172322206, 0.0233792365, -0.00908549596, 0.0105901, -0.0148017062, -0.0339243263, -0.0047903005, 0.0144416299, -0.0193926785, 0.00182127859, 0.0125769498, 0.0119403861, 0.0215917155, 0.0138372164, -0.0181195512, -0.00847465172, -0.00567763112, -0.00685430877, -0.00686073862, 0.00988923758, -0.00772235, -0.00200131675, -0.00940056238, 0.016550649, 0.0112266634, 0.00355253811, -0.022106111, -0.00329855573, -0.0188654251, -0.00754231168, -0.0698547959, -0.00686073862, -0.00777378911, -0.00963847, 0.00391261419, -0.00260573043, -0.0144287702, 0.0173479598, -0.0538056828, -0.0148531459, -0.0237135943, -0.0316095501, -0.0258354712, 0.00304778828, -0.00299474131, -0.0458582826, -0.0125576593, -0.00893760752, -0.00687359879, -0.0188911445, -0.0254110955, 0.00306386314, 0.0219646525, 0.0057162107, 0.0134514207, 0.00950987171, 0.0167949852, -0.0219003521, -0.00696361763, -0.00613737153, -0.019495558, 0.0310179982, 0.0189554431, -0.00859039091, 0.0289861392, 0.00451059826, -0.0247166641, 0.00483852485, -0.0482245, -0.00223440188, -0.00692503806, 0.013567159, 0.00792810787, 0.000503946037, -0.00706649665, -0.00848751236, 0.00768377027, 0.00641707331, -0.0175537169, -0.0211287607, -0.0281373877, 0.0184153281, -0.0176051576, -0.0146731073, 0.0435949489, -0.018543927, 0.0271857586, 0.0402771, 0.021527417, -0.0231220406, -0.000600796891, -0.0315838307, -0.00774806971, -0.00659068162, -0.027545834, 0.00705363695, 0.00780593883, -0.02314776, 0.00835248362, 0.0555546246, -0.0117346281, -0.019122621, 0.00740728294, -0.0106543992, 0.0102621736, -0.00975420885, -0.00347216404, 0.0299634896, -0.0150203239, -0.00952273142, 0.0476843864, 0.0247038044, -0.0332298949, -0.0247552432, -0.037293613, -0.0092591038, 0.00607950194, 0.00738799339, 0.0149045857, 0.0206915252, 0.00416338164, 0.00859039091, -0.0156118777, -0.0102235936, -0.00525647029, 0.00383545528, -0.0229934417, -0.0217203144, -0.00529183494, -0.00949701108, 0.0381938033, -0.00473886076, -0.00632383954, 0.0103843426, -0.0194441173, -0.0106415395, 0.000189381622, 0.00467456132, 0.00933626294, -0.0113938414, 0.00502820779, 0.0206658058, 0.00347859389, 0.0287032221, 0.00878971908, 0.00740728294, 0.00528219, -0.00790238753, 0.00872542, -0.00380652049, 0.0105129406, 0.0129048759, -0.00689288834, -0.00306868576, 0.00170714722, -0.0114452811, 0.000464562676, 0.0341300853, 0.0110016158, -0.00397369871, 0.0232763588, -0.0107058389, -0.00105209788, -0.0147374067, 0.0153804, -0.00955488067, -0.0161905717, -0.0045459629, 0.00772877969, 0.00574836042, -0.000617675483, -0.0286260638, 0.00629169, -0.00883472804, 0.00191772764, 0.0113295428, 0.0114324214, -0.022106111, 0.00427269051, -0.011824647, 0.00289989985, -0.0388625152, -0.0056872759, 0.00581266, 0.0275715534, 0.0164606292, 0.0298348907, 0.0068157292, 0.0231991988, 0.04521529, -0.019495558, 0.00122490234, -0.00183253095, 0.0198942143, 0.000433216745, 0.0163834691, 0.0163577497, 0.00744586252, 0.00703434693, 0.0110080456, 0.00163722178, 0.0192126408, 0.0242794286, 0.00844893232, -0.0117924977, 0.0435435064, -0.014518789, -0.0061888108, -0.0206400864, -0.0270571597, 0.0193541, -0.00314584491, 0.00728511438, 0.00418910151, -0.0267742425, 0.0205243472, -0.0223761685, -0.0336671323, 0.0139529556, -0.00511179678, -0.014891725, 0.0211802, -0.0056872759, -0.00936198328, 0.0127634173, 0.0104229217, 0.00823031459, 0.00189200789, 0.0279059112, -0.00659711147, 0.00711150607, 0.0113424025, 0.0285231844, 0.00180198881, 0.00778021943, 0.0153804, 0.00601841742, 0.028497465, 0.0230448805, 0.000779227528, -0.0133356815, 0.0271343179, -0.00291918963, 0.00892474782, -0.00633991417, 0.015599018, -0.0283688661, -0.0178880747, 0.0121654337, 0.0327669382, 0.00227458891, 0.00477101048, -0.00798597746, 0.00396726886, 0.00516966637, -0.0272886362, -0.0152003625, 0.0073044044, 0.0080759963, -0.00772235, 0.0132842418, 0.0432605892, 0.00389332464, -0.0170650426, 0.000472198211, -0.00882186834, -0.0136314584, -0.0287546609, 0.0133614009, 0.0125705199, 0.0200999714, 0.011200944, 0.0284203049, 0.00853895117, 0.00531755481, 0.00867398, -0.00839106273, 0.0146473879, 0.00850680191, -0.0449838117, -0.0180552527, 0.00290150731, 0.0240736697, -0.00749087241, 0.00298509654, 0.00837820303, 0.0204857681, -0.00241122488, -7.13320696e-05, -0.0100885658, 0.00253500114, 0.00524039567, 0.00499605807, 0.00287418021, -0.0315838307, -0.0162162911, -0.0235078353, 6.7363595e-05, 0.034593042, 0.0155732986, 0.0244337469, -0.00618238095, -0.000466973899, -0.000235496307, 0.00331463059, 0.00597662292, -0.0146345282, -0.00395440916, -0.0237778928, -0.0118117873, -0.00769663, 0.00331141567, 0.0143901911, -0.0130077554, -0.00931054354, -0.0218231939, 0.0343358442, 0.0173865389, 0.0111816544, -0.00855181087, -0.0317638703, 0.0200999714, -0.0176823158, -0.00114935054, 0.00421160646, -0.0134642804, 0.0283431467, -0.0209615827, -0.0106543992, 0.0395055115, 0.0151489228, -0.0144930696, -0.0244208872, -0.0258483309, -0.0149560245, 0.0024433746, 0.010326473, 0.0314809531, 0.0180295333, 0.0172450803, 0.00370685663, -0.0330498554, -0.00663569104, 0.00216045766, -0.0181452725, 0.0195855759, -0.0227619633, 0.00860968, -0.061315842, -0.0308894, 0.00109308865, 0.0335899703, 0.0119275264, 0.00552331284, -0.00805670675, 0.0007772182, -0.0198942143, -0.00447523361, -0.00178430649, 0.0378851667, -0.0051310868, 0.00359111768, -0.0120432647, 0.00599269802, -0.00080695661, 0.00579658477, -0.00738156354, 0.00391904451, 0.0188397039, -0.00185342832, 0.0115353, -0.000991817215, 0.0091883745, -0.0159719549, 0.00637849374, -0.000264230068, 0.000583516434, -0.00767091056, 0.0153804, 0.0107251285, -0.00686073862, 0.0192126408, -0.0230577402, 0.00524682552, 0.0355189517, 0.01634489, -0.0338986069, -0.0217846148, 0.0333842151, -0.0065006623, 0.00474207569, -0.0026314503, -0.00570656592, 0.0129627455, 0.00269574951, -0.00381938042, 0.0123261819, 0.00463598175, 0.0101078553, 0.0363934226, -0.0325354636, -0.0281888284, -0.0328183807, -0.0307608, -0.0105450908, -0.000430805521, 0.0193926785, -0.00212670048, 0.00301885372, 0.035390351, 0.0118182171, 0.000842321257, 0.00283077802, -0.0037872307, 0.0329984166, 0.0181195512, 0.00179073645, -0.00620810036, 0.0101978742, -0.0238550529, 0.00527254539, -0.00767091056, -0.00677714963, 0.00379366055, 0.0134257, 0.0327155, -0.0241765492, -0.0168078449, -0.00560368691, 0.00333713531, -0.0230577402, 0.0111044943, 0.00866755, 0.0242408477, -0.000301805, -0.00641064346, -0.0107637085, -0.00795382727, 0.0118375076, -0.00660354132, -0.0154961394, -0.029577693, 0.00321978913, -0.0091755148, 0.00642350316, 0.0247423835, -0.00712436624, -0.0152903814, -0.0357504301, -0.00321175158, 0.00308797555, -0.0189168639, 0.0278801899, -0.0313266367, -0.0279059112, -0.0100757051, -0.00951630156, -0.0249481406, -0.0239579305, 0.0192640796, -0.00292561972, 0.0110659152, 0.0140815536, 0.0167435464, -0.0156890377, 0.0163834691, -0.000317879836, -0.0211930592, -0.00992781669, -0.0145316496, 0.029243337, -0.0239836518, 0.0121397143, -0.00541078905, -0.0281116683, 0.00321496674, 0.00962561, 0.0203828886, -0.00268128212, -0.00750373211, 0.0223375876, -0.0106865494, -0.00058833888, -0.00144994992, 0.0248709824, -0.00814029574, -0.00166374526, 0.0201771315, -0.0128920162, -0.0164992083, -0.00803098641, 0.0243051481, 0.012692688, 0.018209571, 0.00451059826, 0.0283174254, 0.0154704191, 0.0092719635, -0.00350752869, -0.0166278072, -0.0110401958, -0.0260540899, 0.0390425548, 0.0147888465, -0.0191997811, -0.00703434693, -0.0151875028, -0.00327605102, -0.00805670675, -0.0158304963, -0.00749087241, -0.00374865113, 0.00466491655, 0.0132713821, -0.00319889188, -0.00828818418, 0.0294748135, -0.0235078353, 0.0228648428, 0.0148145659, 0.0130141852, 0.00774164, -0.00830104388, 0.00709864637, -0.011696049, -0.00748444255, 0.00651995232, 0.012441921, 0.025346797, 0.0108344378, 0.0302206855, -0.0137857767, 0.000257800129, 0.0121397143, 0.0193669591, -0.006745, -0.00271182437, 0.0173736792, 0.00102798559, -0.00526290061, -0.00175215676, -0.00407014787, -0.0421803631, -0.0292947758, -0.00108826626, 0.00191612006, -0.00303332112, 0.0145059293, 0.00140252919, -0.00432413025, -0.0161905717, 0.0196498763, 0.00307672308, -0.0180809721, -0.0459354445, 0.00576765, -0.0235721357, 0.00169428741, 0.00418910151, -0.00203346647, 0.0133228218, -0.0311465971, -0.00783808902, 0.0366763398, -0.00910478551, 0.00239032763, -0.0224533267, -0.0161648523, -0.0369335376, -0.0185567867, -0.00460704695, -0.0251924787, 0.00821745489, 0.00779307913, 0.0167821255, -0.0144673502, 0.0281631071, -0.00459418725, -0.00152389414, 0.00369078177, 0.00225851405, 0.0527254529, 0.0234949756, 0.00684787892, 0.0117989276, 0.00346573396, -0.0287546609, 0.0087704286, -0.00527897524, 0.0310437176, 0.0311208777, 0.00105450908, 0.00392547436, 0.00821102504, 0.0113874115, 0.0223890282, -0.0487903319, -0.00566477142, 0.000526852673, -0.00438199937, 0.0147759868, -0.0143901911, -0.0171936415, -0.00246909447, 0.0195341371, -0.0114452811, 0.0132713821, 0.00664855121, -0.0017505493, 0.000341791136, -0.0303492844, -0.049690526, -0.0243437272, 0.0117989276, -0.0223890282, -0.00321175158, 0.00235174806, 0.00783165917, -0.00941985194, 0.0182867311, -0.0189940222, 0.00215563504, -0.00915622525, 0.034258686, 0.037293613, -0.00324872369, -0.0133871213, 0.0266199242, 0.0140815536, -0.0193155203, -0.019662736, 0.0184410494, -0.00221993448, 0.00662926119, -0.000198926064, 0.0304264445, 0.0133099621, 0.0230706, -0.00347216404, -0.00914336555, -0.0203185882, 0.00653602695, 0.0173479598, 0.00342072453, 0.0190454628, 0.00148290338, 0.00497676851, 0.0171679221, 0.00550402282, 0.0206015054, -0.00841035228, 0.0258226115, -0.0110787749, 0.0397112668, -0.0019804195, 0.00317960209, 0.0157919154, -0.0201256908, 0.0106093902, -0.0157404765, 0.00330498558, -0.0210644621, -0.0118953763, 0.0353646316, 0.0309665594, 0.0174251199, 0.010660829, -0.0150074642, -0.0160748325, 0.0109308865, 0.0021588502, 0.00425018603, 0.029989209, 0.00257679587, 0.01634489, -0.0338728875, 0.0010794251, 0.00936841313, 0.00864183065, 0.00782522839, -0.0034078646, 0.00869326945, 0.0189683028, 0.00795382727, 0.0098570874, 0.00905334577, -0.00232763588, 0.00644279318, -0.00195148471, -0.0133614009, 0.0045748977, -0.0085646715, -0.000255991705, 0.0237007346, -0.00717580551, 0.00582230464, -0.0116703287, 0.000729395542, 0.0112716733, 0.0041151573, -0.0118889464, 0.0167821255, 0.00623703515, 0.00988923758, 0.0116317496, 0.017296521, -0.00957417, -0.0203443095, 0.0287289415, 0.00943271257, -0.0283431467, 0.00337571488, 0.0241508298, -0.00935555249, 0.018209571, 0.00900190696, -0.0326640606, -0.00671928, -0.00803098641, 0.000280706765, 0.0174251199, -0.00163159554, 0.00479673035, -0.000241323432, 0.00684144907, 0.00220868201, 0.000728591811, -0.0103007527, -0.00919480436, 0.00732369395, 0.0204729084, -0.00437556952, 0.0204857681, 0.00394797884, 0.00219260715, -0.00784451887, 0.00961918, -0.00309601286, -0.0111237848, -0.00668713078, -0.00771592, -0.00935555249, 0.00324550876, -0.0137343379, -0.0155604389, -0.00255589839, 0.0227362439, -0.0123647619, 0.00825603399, -0.00612451136, 0.00891831703, -0.00976706855, 0.000150500622, 0.00333392038, -0.00775449956, -0.00110755605, 0.0188397039, -0.0146731073, 0.00318442448, 0.0109694665, -0.00095886382, 0.0127827069, -0.00560368691, 0.017875215, -0.000916265475, 0.0185310673, -0.0190969016, -0.0122425929, -0.00647815783, 0.0100499857, -0.00826889463, -0.00137680944, -0.00898261648, -0.00850037206, -0.0207558237, 0.0335385315, -0.00566155603, 0.00518252607, -0.00394476391, 0.00761304097, -0.0036650619, -5.84910413e-06, 0.00716294581, -0.0113359727, -0.0195212774, -0.0171550624, -0.0156375971, 0.0154061206, 0.0197013151, -0.0142358718, 0.000186367601, 0.023893632, 0.0103200432, 0.00322621898, -0.0263241474, 0.0035010986, 0.00835891347, -0.00859682076, 0.0051439465, -0.0107058389, -0.00768377027, -0.000324912573, -0.00904691592, -0.00629811967, 0.0333842151, 0.00896975677, 0.00131974381, -0.00808242615, -0.0107508488, -0.00823674444, -0.0131106339, 0.00371007156, -0.0111687938, 0.00839106273, 0.0110787749, 0.0308122411, -0.00289186253, -0.0230577402, -0.0155347185, -0.0238421932, 0.00990852714, -0.0338471681, 0.00522110565, -0.0164220501, 0.00371971633, 0.00567120127, 0.0121654337, 0.00958703086, 0.00355896796, -0.00381938042, -0.0192640796, 0.000860807311, -0.00961275, 0.000150902502, 0.0316609927, -0.00734941382, -0.00275201141, 0.0154832797, -0.000458132738, -0.00931697339, 0.00734298397, -0.00146120228, 0.00395440916, 0.0112909628, -0.0171550624, 0.00962561, -0.00248999172, -0.0395826697, 0.0118889464, 0.0091883745, 0.000877685903, -0.00737513369, -0.00635277387, -0.0259897895, -0.00822388474, -0.00191612006, 0.0174508393, -0.0197398961, -0.00811457541, -0.000389010966, 0.00988923758, -0.0348245203, -0.000126689774, 0.0164349098, -0.00237907539, 0.0106415395, 0.00512787187, 0.00206079357, -0.00232442096, -0.0143130319, -0.00974134915, 0.0103907725, 0.0068285889, 0.0148274265, -0.0108087175, 0.00577729521, -0.0111752236, -0.00565191125, 0.00667427061, -0.0192383602, 0.0120625552, 9.83578866e-05, 0.0191354807, -0.000460543961, -0.0159590952, 0.013772917, 0.00574193057, -0.00383545528, -0.0202028509, 0.0162162911, 0.0115674501, -0.0106994091, -0.0168335661, -0.0311465971, -0.0105386609, 0.0142101524, 0.0162677318, 0.00483531, -0.00801169686, 0.0188268442, 0.00925267395, -0.00285810535, -0.0207944047, 0.00677072, -0.0309922788, 0.0210901815, 0.00512465695, -2.00558661e-05, -0.00152871665, 0.0295262542, -0.0168207046, 0.0122876028, -0.00200131675, -0.00525325537, -0.00365541712, -0.00725296466, -0.0348502398, 0.0011750703, -0.00503463764, -0.00393511914, 0.0102171637, -0.00341429445, 0.00765162054, -1.67655489e-05, 0.0062177456, -0.020575786, 0.00262984261, -0.00116622914, 0.0116188899, 0.0163706094, -0.00859039091, -0.00907906611, 0.0214888379, -0.0109308865, -0.0069893375, -0.00643957825, -0.00290633, 0.00225529913, 0.0270571597, -0.00441736402, -0.00261698291, -0.00669356063, -0.0043852143, 0.00742657296, 0.0105450908, -0.0171936415, 0.0185310673, 0.0265170448, -0.0104615018, -0.0217074547, -0.000906620582, -0.0128984461, -0.0164477695, 0.000459338364, -0.00354610826, -0.0046295519, 0.00521789072, -9.86592859e-05, -0.0254368167, 0.0122683123, 0.0164992083, 0.0162162911, 0.0337957293, -0.0163963307, 0.00653281203, -0.022106111, -0.0126733985, 0.0148145659, 0.00283399317, 0.0198942143, -0.00349145383, -0.00394797884, 0.00720152538, -0.00703434693, 0.000277089945, 0.0119532458, -0.00550080789, -0.00267967465, 0.00471314089, 0.00897618663, 0.006745, 0.0165249277, 0.0291147381, -0.00263305777, -0.00389332464, 0.00132858497, 0.022813404, -0.0132842418, 0.00546865817, 0.00533684483, -0.0144287702, 0.00971562881, -0.0135542993, 0.0198170543, 0.0133742616, 0.00519217132, 0.0159719549, 0.0112588136, -0.00656174682, -0.0065295971, -0.0131620737, 0.0139529556, 0.000653442, 0.0176694561, -0.0144930696, 0.00636563404, -0.000808564131, 0.0109115969, -0.00767734041, -0.0493304469, 0.00129161286, -0.00979278795, -0.00327605102, 0.0223761685, -0.00516645145, -0.0217331741, -0.00452024303, -0.00992138684, 0.00900190696, -0.000280505832, -0.00616309093, -0.00226494391, -0.01057724, -0.00970919896, 0.00548151834, 0.0210644621, 0.00720152538, -0.0182352904, -0.018749686, -0.00541078905, -0.0124483509, 0.00207526097, -0.000428796164, 0.0101528643, 0.00526933046, 0.00826889463, 0.00736870337, 0.00421160646, -0.0174765587, 0.00888616778, -0.00310244272, -0.0136828981, 0.0117989276, 0.0267999619, 0.0100178365, 0.00704720709, 0.00792167801, -0.0142487325, -0.00985065755, -0.00507321721, 0.00872542, -0.010120715, 0.00686716894, 0.0018116337, -0.00466813147, 0.0131427832, 0.012197583, -0.0232763588, -0.0222990084, 0.0171679221, -0.0324325822, -0.00202382146, 0.0027809462, -0.000370725844, 0.0309665594, 0.00740728294, -0.00845536217, -0.00958060101, -0.000657460652, 0.0062306053, -0.0162162911, 0.00618559588, -0.006243465, 0.00195791479, 0.00717580551, 0.000379567, 0.0129884649, 0.00751659181, -0.000278898369, 0.00425661588, 0.0246909428, 0.0245237648, 0.00801169686, 0.0180038139, 0.00896332692, -0.000598385639, 0.0254110955, 0.00216045766, 0.00148370711, 0.00516323652, -0.00413766224, -0.0164992083, 0.0142615922, -0.0116381794, 0.0120175453, 0.0091755148, 0.006745, 0.00877685845, 0.0159076545, -0.00705363695, 0.0141972927, 0.00522753596, 0.00990852714, 0.00832676329, -0.0138500761, 0.0208844226, -0.000631740957, 0.00970276911, -0.0127184084, -0.00543650845, 0.0173351, -0.00416981149, -0.0086482605, 0.0123904813, -0.0158304963, -0.0288832597, 0.0104293516, -0.000333753735, 0.000356258504, -0.00530791, 0.0105129406, -0.00819816533, 0.0111044943, 0.0102493139, -0.00509572215, 0.0105258012, -0.00178591395, -0.0119661056, -0.018543927, -0.0231991988, -0.00180359627, 0.0111430744, -0.0022794113, 0.0222604293, -0.0115160104, 0.0061888108, -0.00419231644, -0.0199713726, 0.0123519022, 0.0149560245, -0.00614380138, 0.0174894184, 0.0177337565, -0.00426947558, 0.00224404666, 0.00165088533, 0.00889902748, 0.00806956645, -0.015766196, 0.00134867849, 0.000376352022, -0.0170650426, 0.00310083525, 0.0222475696, -0.00154559524, 0.0212316401, -0.00813386589, 0.0131942229, -0.0170779023, -0.0365991816, -0.0242794286, -0.019495558, 0.00647172797, 0.0205500666, 0.00360719254, 0.010082135, 0.0036232674, -0.0135028595, -0.0203700289, 0.000771993888, 0.00317638693, -0.00195469963, -0.0100949956, 0.00217814, -0.00677072, -0.000249159901, -0.0139143756, -0.00666784076, -0.00591232348, -0.00971562881, -0.00341107952, 0.0160748325, 0.0051182271, 0.0155732986, -0.00687359879, 0.00828818418, 0.00233728066, -0.000138344039, -0.0068157292, 0.0164734889, 0.0291661769, -0.000211785926, -0.00860325061, 0.00986994803, 0.0274429545, -0.012113994, -0.00733655365, -0.00520181609, -0.0215917155, 0.01349, 0.00904048607, -0.0116896182, 0.00484816963, -0.0199585129, -0.000866433489, -0.00950344093, 0.00333070545, 0.00484816963, 0.0130077554, -0.00346251903, 0.0117667783, 0.00593482843, 0.013232803, -0.00380652049, 0.0263627265, -0.00336928503, -0.00294651696, 0.0178880747, -0.0197656155, 0.0288575403, 0.00439485954, -0.0286517832, 0.0182224307, -0.00299152639, -0.000569049094, 0.0188654251, -0.017708037, 0.0235335566, 0.0118503673, 0.0103200432, -0.0107894279, -0.0218231939, -0.00432091532, 0.0131556438, 0.019495558, 0.0175537169, -0.000991013483, -0.000458534603, -0.00563583663, -0.00513430173, -0.0142873116, 0.00168303505, 0.0210901815, 0.00593804335, 0.037293613, 0.0198813528, 0.0269285608, -0.000412721332, -0.0100049758, -0.00489639398, -0.0297577307, -0.00846179202, 0.026671363, -0.000493095489, -0.0121847233, 0.0113874115, 0.00277612358, -0.0324583, 0.00487710442, 0.0012827717, 0.0128791565, 0.00753588183, 0.00148692203, 0.000805751, 0.000224042989, -0.0202285703, -0.00997925643, -0.0230320208, 0.00961918, -0.00630454952, 0.0040572877, 0.00581908971, -0.029577693, 0.00611165166, -0.0185053479, 0.0106865494, -0.0105708102, 0.0224790461, -0.0179780927, -0.00833319314, -0.0130849145, 0.0148145659, -0.0199842323, 0.0097863581, -0.00638170866, -0.0113424025, 0.0251281783, 0.00209455076, -0.0086482605, 0.00719509553, 0.00193380238, -0.0052146758, 0.0188011248, 0.00319889188, -0.017090762, -0.00986351725, 0.0248967018, 0.00432091532, -0.000237706598, -0.0354675129, 0.00440771924, 0.000755115296, -0.000235295374, -0.0132070826, 0.0270828791, -0.0057162107, -0.0178494956, -0.026298428, 0.0135542993, -0.00887330808, -0.0127505576, 0.0346444808, -0.00289668492, 0.0176565964, -0.024472326, 0.0105065107, -0.00378401577, 0.0129948948, 0.0136314584, 0.0141715733, 0.0100049758, 0.015766196, 0.0306322016, 0.026671363, -0.0193412397, -0.0061759511, -0.0119210966, -0.0196755957, 0.0204729084, -0.0232892185, 0.00236460799, 0.0121397143, 0.00306547061, -0.0115481606, -0.0137214772, -0.00510858186, -0.00147004344, 0.0222861487, 0.00420517614, -0.0167306866, 0.035055995, -0.0267742425, -0.0140944142, -0.0126155289, 0.0114324214, -0.0340786465, -0.00776735926, 0.00588017376, -0.00354289333, -0.00633991417, 0.0498962812, 0.0171679221, 0.00400584843, 0.0023212058, 0.017463699, 0.0173608195, -0.00207043858, -0.0251153186, -1.34752308e-05, 0.0120625552, 0.0301178079, -0.0114131318, -0.0075873211, -0.0115545904, 0.00376151106, 0.00334035023, -0.00284363795, 0.0329726972, 0.0164734889, 0.0182867311, 0.0116896182, -0.0199327935, -0.00945200212, 0.0091883745, 0.00714365579, 0.00625954, -0.00695075793, -0.0101078553, 0.0245623458, 0.00427912036, 0.00756803155, 0.0167564061, 0.0202285703, -0.00841678306, -0.0097606387, 0.0112202335, -0.0146345282, 0.0266199242, -0.00771592, -0.0151489228, -0.00746515254, -0.00349788368, 0.0117217684, -0.00442700926, 0.0104679316, 0.0184410494, -0.0137343379, 0.0376794077, 0.00382581027, 0.00129884656, 0.0388110764, 0.00921409391, 0.032226827, 0.0261698291, -0.00803741626, 0.0151875028, 0.0035718279, 0.0168721452, 0.0218746327, -0.0284203049, -0.00986351725, 0.0234049577, 0.0041151573, -0.0227619633, 0.000623703527, -0.0140686939, 8.81101805e-05, 0.0199199338, -0.0168078449, -0.0144416299, 0.0241379701, 0.0287289415, 0.0108987372, -0.000203949443, 0.0206529461, 0.0145059293, 0.00158337108, 0.0173993986, 0.00396405393, 0.0304521639, 0.00779950898, 0.00951630156, 0.0132713821, -0.0116638988, -0.0103907725, 0.0169364437, 0.00105370535, 0.0236107148, 0.0027954136, -0.0209615827, 0.0223375876, 0.00463276682, -0.00107058394, 0.0127827069, -0.0256297141, 0.00415695179, 0.0125962393, -0.00970276911, -0.00677714963, -0.0204857681, -0.0087575689, 0.0208072644, -0.00862254, 0.0117346281, -0.0130913444, -0.00965776, 0.0140558342, 0.0131813632, -0.0294748135, -0.0281373877, 0.00212027039, 0.0108215781, -0.00490925414, -0.0129691754, 0.015676178, 0.018209571, 0.00870613, 0.00274718902, 0.0129048759, -0.011863227, -0.0073172641, -0.0144544896, -0.0127505576, 0.0172708016, -0.00226494391, -0.0215917155, 0.0304778833, 0.0133871213, -0.00172643713, -0.0234306771, 0.00948415138, 0.000974134891, -0.014145853, 0.0301178079, -0.021694595, 0.0136828981, 0.00949058123, -0.0357247107, -0.000556992949, -0.0109180268, 0.00329534081, -0.02024143, -0.0261183884, -0.00175215676, -0.0150331836, -0.0102814632, 0.00562297646, -0.00157292245, -0.0272629168, -0.000382982893, 0.00803098641, 0.00287096528, -0.00709864637, -0.0346444808, -0.00790238753, -0.00140252919, -0.00137761317, -0.0135028595, 0.0132842418, 0.00293365703, 0.00557475211, -0.00532076973, 0.027622994, -0.00397691363, 0.00190004532, -0.00795382727, 0.0113874115, -0.013605739, -0.00825603399, -0.0241251104, 0.0131813632, -0.00529826479, -0.016177712, 0.0189940222, 0.00814672559, -0.000926714158, -0.0103843426, 0.00841035228, 0.0194826983, -0.000362487481, -0.0132971024, 0.0068285889, -0.00672571035, -0.0108344378, 0.0017039323, 0.0157790557, 0.00510858186, -0.00871256, 0.0215016976, 0.00362648233, -0.0054172189, 0.0159205142, -0.00677714963, -0.0131813632, 0.0141201336, 0.00865469, -0.0326640606, 0.00191129767, -0.0046006171, 0.00824317429, 0.00108022883, -0.00719509553, 0.00658425177, -0.00436913967, -0.0013317999, -0.00888616778, -0.0163706094, 0.0303492844, 0.016923584, 0.0180552527, -0.00505392766, 0.029243337, 0.00486745965, 0.0107058389, -0.0174765587, -0.00477422541, 0.00990209728, -0.0106029604, 0.00732369395, 0.0242537074, -0.010037126, 0.00813386589, -5.10815516e-06, -0.00131251011, 0.0054011438, 0.0212059207, -0.0107186986, -0.00888616778, -0.00691217836, 0.00226172898, -0.0610586479, 0.00783165917, 0.00764519069, 0.010204304, -0.0174508393, -0.00862254, 0.00645565288, -0.0441865027, 0.00705363695, 0.00609557657, -0.00887330808, 0.0276744328, 0.00224726158, -0.00878328923, 0.0174379796, -0.0221189708, 0.0275715534, -0.0128984461, -0.00749087241, 0.00761947082, -0.00992781669, -0.0144930696, 0.0130656241, -0.0144159105, 0.0148017062, 0.0139915347, 0.0159205142, -0.0217203144, -0.00329855573, 0.000876882172, -0.00693146791, 0.00665498106, 0.011490291, 0.00329534081, 0.010082135, 0.0065713916, -0.00495426357, -0.00986994803, 0.0129691754, -0.0198556334, 0.00148852949, -0.0045877574, 0.00894403737, 0.000588740746, 0.00411837222, 0.0266970824, 0.00915622525, -0.00724010495, -0.0157533363, 0.0113809817, -0.0116767585, -0.0167692658, -0.0186725259, -0.00061084365, -0.0424118415, 0.00725939451, -0.00176823162, 0.00367149198, -0.0163963307, 0.0233277977, 0.00212027039, -0.0420260429, 0.0156375971, 0.012776277, 0.00493818894, 0.0131234936, -0.017965233, 0.0149817448, 0.000404081133, 0.0140043944, 0.00953559112, 0.00277451612, -0.0184539091, 0.0137086175, 0.00746515254, 0.0142873116, -0.0144930696, -0.0138757955, -0.00275522633, -0.0116896182, 0.0112973927, -0.00118150027, -0.00959989056, 0.0257454533, 0.00351717346, 0.00791524816, 0.00208651344, 0.0121590039, 0.00443986896, -0.018376749, 0.00430484, 0.0243180078, 0.00898261648, 0.012441921, 0.0111109251, 0.00364255719, -0.0181709919, -0.00267645973, 0.00735584367, 0.0156890377, -0.0164734889, -0.0118182171, 0.0126605388, 0.00459740218, 0.0132456627, -0.00861611, 0.000534086314, -0.0284460243, 0.0214888379, 0.000767573307, 0.029989209, 0.0122104436, 0.00558439689, 0.00801169686, -0.00405407278, 0.0133614009, 0.000907424313, 0.019495558, -0.00806956645, 0.00725939451, 0.00424054079, -0.0151232034, -0.0247038044, 0.011985396, -0.00356539804, -0.00532719959, -0.00593804335, -0.00480316, 0.00493497401, 0.0105386609, 0.0197013151, -0.0173865389, 0.00980564859, 3.98605625e-05, -0.00367149198, -0.0401999429, -0.00759375142, 0.00534005975, -0.00478065526, 0.0137600573, -0.0231863391, -0.0239965115, 0.0190326031, -0.00649423245, -0.0165377893, 0.00599269802, -0.0181967113, 0.00835891347, 0.0144673502, 0.0109951859, -0.0485845767, -0.00530791, -0.00230191601, -0.00309119048, -0.00101030327, -0.0346959196, 0.0123519022, -0.00507643213, -0.00922052469, -0.0124547807, -0.0108537273, 0.0134385601, -0.0158690754, 0.00785094872, -0.0128405765, -0.000995835871, -0.00344644417, -0.0219646525, 0.00949058123, -0.0187239666, 0.0219903719, 0.00936841313, 0.0121268537, -0.000401468948, -0.0214759763, -0.00475493586, 0.0171679221, -0.00728511438, -0.00147325848, 0.0248709824, 0.0135542993, -0.0230963212, -0.00857110135, -0.00110353727, 0.0141715733, -0.00515359174, 0.00751659181, -0.0164992083, 0.0115353, -0.0245366246, 0.0194441173, 0.0247166641, -0.0235978551, 0.0209873021, 0.0106415395, -0.0150846234, 0.00898904633, -0.0132456627, -0.0131685035, 0.00123776216, -0.0174508393, -0.0331270173, -0.00649423245, 0.00448487839, -0.000736629241, -0.0241894089, -0.0012216873, -0.00425983081, 0.018376749, -0.00197881204, -0.00743943267, -0.0142230121, 0.00117908907, 0.0185567867, -0.00493175862, 0.00848108158, 0.00899547618, 0.00354610826, -0.00428233575, -0.00227298145, 0.0173093807, -0.00925267395, 0.0170521829, -0.0102364542, 0.011406702, 0.00842964277, -0.00536577916, 0.0019563071, -0.0277773123, -0.00991495699, 0.0017505493, 0.00383224012, 0.0111623639, -0.00593482843, -0.0107251285, -0.0141329933, -0.0232506394, 0.0167692658, -0.0062177456, 0.0222089887, -0.0106286798, 0.0177466162, -0.00348502374, 0.00949058123, -0.00451702811, -0.0101914443, 0.00799883716, 0.00878328923, 0.0256039947, 0.0045459629, -0.00113649073, -0.000745470403, -0.0194055382, 0.0269285608, 0.0100242663, -0.00355896796, -0.0332298949, 0.0106929792, -0.00562619139, 0.00250767404, 0.0179780927, -0.0168078449, -0.022106111, -0.0119018061, 0.0106994091, -0.0151746422, 0.0167692658, -0.0186596662, -0.0167306866, -0.00905977562, -0.00929125398, -0.00269092713, -0.0191740617, -0.0092719635, 0.0242922883, -0.00635277387, -0.00517931115, -0.00913050491, 0.00108103256, 0.00639456883, -0.00242087, -0.00708578667, -0.00777378911, 0.0231220406, -0.0247552432, 0.0202542897, 0.00997925643, -0.00219903723, 0.00916908495, -0.0112909628, 0.00626275502, -0.0117539177, 0.00110835978, 0.0292176176, -0.0130013246, -0.00770306028, -0.0253339373, 0.0214245375, -0.0147502674, -0.0188525636, 0.0107058389, 0.00417945674, 0.00397691363, -0.0120496945, -0.00901476666, -0.00263466523, -0.00658103684, 1.51957411e-05, -0.00435949489, 0.00996639673, -0.0436978266, 0.00586088421, 0.00582551956, 0.0184539091, -0.00821102504, 0.00704077678, -0.00988923758, 0.00154559524, -0.0207944047, -0.00702791708, -0.0107958578, -0.00661640149, 0.00849394221, -0.00608271686, 0.012152574, -0.00188718538, -0.0283688661, 0.0176180173, -0.00145557616, 0.0105836699, -0.009747779, -0.0188525636, -0.000828657649, 0.00114211685, -0.0246523637, -0.0116703287, -0.00151666056, -0.0209615827, -0.00402513845, 0.0127119785, -0.00677714963, 0.00159140851, -0.0204343274, -0.0188397039, 0.0113616921, 0.00281309569, 0.00155845506, 0.00609879149, 0.0235335566, -0.00426626066, -0.00531755481, -0.0159076545, 0.000712918874, 0.0116317496, 0.0125126503, -0.00162114692, -0.0097863581, -0.00771592, -0.0129820351, 0.00217653252, 0.00612451136, -0.00774806971, 0.0146088088, -0.00722081494, 0.0149174454, -0.00860325061, 0.0366763398, 0.000421160628, -0.0039897738, -0.0069893375, 0.0314037949, 0.0137471976, -0.0199585129, 0.000880097097, 0.016010534, 0.000948415138, -0.00391582958, 0.0212830789, -0.0280602295, 0.0178366341, 0.027622994, -0.0182867311, -0.00944557227, -0.0440579019, -0.00103039679, 0.0181967113, 0.0106286798, 0.00642993348, 0.00120963121, -0.0184024684, -0.0027809462, 0.0230706, -0.0132070826, -0.00992138684, -0.00764519069, -0.00320371427, -0.0236364342, 0.0162291508, -0.0114581408, 0.0239836518, -0.00442379387, -0.0193412397, 0.000537703163, 0.0142230121, 0.0270828791, 0.0196498763, -0.0211544801, -0.0185310673, -0.0154575594, -0.0118825166, 0.00667427061, 0.00756803155, 0.0324325822, 0.00211384054, 0.0270571597, 0.00268128212, 0.000430403656, 0.00881543849, -0.00748444255, -0.00578051, 0.00710507622, -0.00765162054, 0.00380973541, -3.44604232e-05, -0.0397884287, -0.0323811434, -0.0108794468, 0.013567159, 0.0170521829, 0.0125640891, 0.0299377702, 0.00147004344, 0.0309665594, -0.0364448614, 0.00125946314, -0.0155089991, -0.0354160741, -0.0019948869, -0.00425983081, 0.00691860821, 0.0092848232, -0.0192255, -0.00402192306, 0.0027809462, -0.013978675, -0.0146731073, -0.0152003625, 0.00614058645, -0.0100628454, 0.00461026235, 0.0113102524, 0.00285006803, -0.014351611, 0.0126412492, -0.00250124396, 0.00124579959, -0.00767734041, 0.00783808902, -0.00311691, -0.00026724409, -0.000608834322, -0.0046166922, -0.011117355, 0.0151875028, 0.00131813635, 0.0161905717, 0.00895046722, -0.00479351543, -0.0128341466, -0.0211159009, -0.00372293126, 0.0121461442, -0.00718223536, 0.0143644707, -0.0105450908, -0.00281631085, -0.00136555708, -0.0334613733, -0.00447201869, -8.24839881e-05, -0.0133485412, 0.00137680944, 0.00627561472, -0.0019804195, -0.00750373211, -0.000754311564, 0.023392098, 0.00267002988, -0.00488353427, 1.55097023e-05, 0.0141072739, -0.018376749, 0.0018678956, -0.0137857767, 0.0133742616, -0.0238036122, 0.0251410399, 0.0127184084, -0.00233085081, 0.0319181904, -0.0139915347, 0.00664855121, -0.012068985, 0.015676178, 0.0339243263, -0.00272629177, -0.00603770744, 0.0199585129, 0.0128791565, -0.011033765, 0.0237393137, -0.00441736402, 0.0199327935, 0.00270378683, 0.0172193609, -0.0234692562, -0.00112523837, 0.012152574, 0.00089054578, 0.00490925414, -0.000874470919, -0.00425340096, -0.00965133, -0.00469385134, -0.0120432647, 0.0140686939, 0.0144030508, 0.0256940126, 0.0158947948, 0.0237521734, -0.00684144907, 0.0281888284, 0.00501534808, 0.00416659657, -0.0108087175, -0.00785094872, -0.00176019419, 0.00565834111, 0.00804384612, 0.0070729265, 0.0144673502, 0.00503463764, 0.00828818418, 0.0216431562, 0.0109051671, 0.00343036931, 0.0225819256, 0.0133228218, -0.0131685035, -0.000450497202, -0.0157018974, -0.0125769498, -0.038785357, -0.0184024684, 0.0146345282, 0.0100949956, 0.00792167801, 0.0111495042, 0.00768377027, -0.0162291508, -0.0092848232, 0.00467777625, 0.0258611925, -0.00848108158, 0.00589303393, -0.00273432909, -0.00522432057, -0.00950987171, -0.0184410494, 0.025179619, 0.0133485412, 0.00526290061, -0.00470992597, 0.00119596755, -0.026092669, 0.00751016196, 0.00299634901, 0.00352681847, 0.000508366618, -0.00313298497, -0.00814672559, -0.00136957574, -0.00836534332, -0.0101657249]
05 Jun, 2023
unordered_set begin() function in C++ STL 05 Jun, 2023 The unordered_set::begin() method is a builtin function in C++ STL which is used to return an iterator pointing to the first element in the unordered_set container. All of the iterators of an unordered_set can be used to only access the elements, iterators are not allowed to modify elements present in an unordered_set container. Note: This iterator can point to either the very first element or the first element of any specified bucket in the unordered_set container. Syntax: unordered_set_name.begin(n) Parameter: This is an optional parameter and specifies the bucket number. If this parameter is not passed then the begin() method will return an iterator pointing to the first element of the container and if this parameter is passed then the begin() method will return an iterator pointing to the first element of the specific bucket in the unordered_set container. Return Value: This function returns an iterator pointing to the first element in the container or a specified bucket in the container. Below program illustrate the unordered_set::begin() function: CPP // CPP program to illustrate the // unordered_set::begin() function #include <iostream> #include <unordered_set> using namespace std; int main() { unordered_set<int> sampleSet; // Inserting elements in the std sampleSet.insert(5); sampleSet.insert(10); sampleSet.insert(15); sampleSet.insert(20); sampleSet.insert(25); auto itr1 = sampleSet.begin(); auto itr2 = sampleSet.begin(4); cout << "First element in the container is: " << *itr1; cout << "\nFirst element in the bucket 4 is: " << *itr2; return 0; } Output: First element in the container is: 25 First element in the bucket 4 is: 15 Time Complexity: O(1)Auxiliary Space: O(1) Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL
https://www.geeksforgeeks.org/unordered_set-begin-function-in-c-stl?ref=asr3
PHP
unordered_set begin() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.00942445, -0.00903460104, -0.00426977733, -0.00303216069, -0.0154330786, -0.024170652, -0.018477615, 0.0286136959, 0.00088721636, -0.0259651951, -0.0365839452, 0.0268315282, 0.00491333799, -0.00846529752, 0.0102289012, -0.00147740485, 0.00483908085, 0.00548882969, 0.0234404579, -0.0274255835, 0.00593437161, 0.0247275792, -0.0302473493, -0.0120110689, 0.0116707245, 0.0180692021, -0.034925539, -0.0147771416, 0.0154825831, 0.0016382949, 0.0116892885, 0.0248637162, 0.0145419948, -0.0240840185, -0.0301730931, 0.050370995, 0.00333228265, 0.0246409457, -0.0527224652, 0.0150246657, -0.000284651818, 0.0031837686, 0.0294305217, 0.0161137674, -0.00840341672, 0.0410393663, 0.00229268475, -0.0369304791, -0.0132920025, 0.00184095465, 0.0161508955, -0.00259590079, 0.0441829115, 0.0239355043, 0.0241459, -0.00727099739, -0.00452039437, 0.0231063012, -0.0291087423, -0.0321285278, -0.00419552, -0.0473512113, 0.0333661437, -0.0247399546, -6.77305e-05, 0.0327968411, -0.0220790803, 0.074504517, 0.0163984206, 0.0112994397, -0.023886, 0.0235394668, 0.015445455, 0.0193191953, -0.0121162664, -0.0152969407, 0.00170172285, 0.00307857129, -0.017549403, 0.0333413891, -0.0278463736, 0.0192573145, -0.0124627994, -0.00172183407, 0.0182053391, -0.00712248357, -0.000828429591, -0.0350740552, 0.0549006723, 0.0324008, -0.0195790939, 0.003060007, -0.0160271339, -0.00769797526, -0.00624687, 0.0369799845, 0.034653265, 0.0175122749, -0.0087685138, 0.0446779579, 0.0221780892, -0.0118006738, -0.00902222469, 0.00047957644, 0.000645107648, 0.0189479105, 0.0408413485, 0.02378699, -0.00675738649, -0.0237374865, 0.0254701488, 0.0214355197, 0.00576729327, 0.0569303632, -0.0256929211, 0.00383970537, -0.0201483984, -0.0266582612, 0.0260642059, 0.0213488862, 0.0224379878, 0.0172895044, 0.0299750734, 0.0244553033, -0.0490591228, -0.0146657564, 0.014133581, 0.00818064529, -0.0268067755, 0.0109900348, 0.0244058, -0.0146038756, -0.0301978439, -0.0376482978, -0.0146657564, 0.0286632, 0.00427287119, 0.0141088292, -0.0152474362, -0.00938113406, -0.0471531935, -0.0196286, -0.0163117871, 0.035272073, -0.0285641905, -0.0254453961, -0.0095791528, 0.0173390079, 0.00832297187, -0.0105630578, -0.0112870634, 0.0217696764, 0.0193810761, -0.00894796755, 0.011738793, -0.0178340543, 0.0318810046, -0.0213612616, 0.0161756482, -0.017413266, 0.0514353439, -0.00148978096, -0.00277071423, -0.0079578748, -0.0155568402, 0.0447274633, 0.0131682409, 0.0183909833, -0.0341829695, 0.0306433868, 0.0118006738, 0.0269552898, -0.00262838812, -0.00170326978, -0.00441210298, -0.024096394, 0.0451235, 0.00449873647, 0.0279948879, -0.00070505467, -0.00449254829, 0.0144058568, 0.0418314412, -0.000903460081, -0.018341478, 0.0108972136, 0.0417076796, -0.0125061153, 0.0274008308, 0.0260394532, 0.0180939548, -0.00688114809, 0.0319305062, 0.0542076081, 0.0476482399, -0.0049504661, -0.0311879385, -0.0185147449, -0.0112437466, 0.0376730487, -0.000308243878, 0.0250246078, -0.0133043779, -0.00142403261, 0.0363116711, -0.0176112838, -0.0173637606, -0.00443685567, 0.0208785925, -0.00182084343, -0.000398357835, -0.0182919726, 0.00189355342, 0.035272073, -0.0299750734, 0.0143687287, -0.0776728168, 0.0352968238, -0.00913979858, -0.0431680679, -0.0148390224, -0.0264602434, 0.024306789, -0.0576234274, -0.0208785925, -0.0532175116, 0.00350554893, 0.0230691731, -0.00661506085, -0.00929450057, 0.000257192209, 0.00742569938, -0.0303958636, -0.011930624, 0.0326235741, -0.0160642639, -0.0378215611, 0.00324564939, 0.00394490268, -0.00795168616, 0.0113613205, 0.0506185181, -0.0620788485, -0.0223637316, 0.0302968547, 0.0516333655, -0.00700490968, -0.0309156626, -0.0129330931, -0.0154949594, 0.0372522585, 0.0303463582, 0.0199008752, -0.00442138547, 0.0144306095, 0.0302225966, -0.0286136959, -0.0133910114, 0.0204949304, -4.29298234e-05, -0.000461012183, 0.0471036881, -0.0304206163, 0.0144429859, -0.00753089692, -0.0162870344, 0.041138377, -0.0172771271, -0.0279453825, -0.0478215031, 0.0341334641, 0.00589105487, 0.0413363948, -0.0103279101, 0.021856308, 0.0163489152, -0.0130073503, 0.0118254265, -0.00118733838, -0.0257671773, -0.00122756092, -0.0289107226, 0.0236632284, -0.00154470024, 0.0396284834, -0.023514716, -0.0398265, -0.0306186341, -0.00743807573, -0.021856308, -0.0250122305, -0.00273667974, -0.0112808747, 0.0104083559, 0.0119182477, 0.0581184737, 0.0034498563, -0.0475987345, -0.0362869166, -0.03896017, -0.0101670204, -0.0159652531, -0.0313117, -0.0354948454, -0.00303370762, -0.0118006738, 0.00039642406, -0.0412868895, 0.0253463872, -0.0301978439, 0.0412373841, -0.0624748841, 0.0057765753, 0.00798262656, 0.0149751604, -0.0336384177, 0.0182424691, 0.00753089692, -0.0397522449, 0.00153077696, -0.0303958636, -0.028786961, 0.0195048377, 0.0300493315, 0.0127969552, -0.0323512964, 0.0121595832, 0.0554947257, 0.00530628115, -0.0487373397, 0.000718204363, 0.000684943399, -0.0425245054, -0.00568684842, -0.0140221957, -0.0207672063, -0.0095791528, -0.00736381859, 0.0403215475, -0.00617570663, -0.0012848007, 0.00812495314, 0.00709773088, -0.0110581042, -0.00063814607, 0.0138736814, 0.00853955466, -0.0197276082, -0.000152768291, 0.0421779715, 0.000571624143, -0.0159900058, -0.00468437886, -0.0323512964, 0.0495294146, -0.0409403555, -0.0233909525, -0.0154949594, -0.0106311264, 0.0364106782, -0.00224627415, 0.0234157052, 0.00906554144, 0.0368809737, 0.00325802574, -0.028960228, -0.0182919726, -0.0408908501, 0.0182053391, -0.0306928921, -0.0139231868, -0.0122957211, 0.0338611901, 0.0021952223, -0.0216335375, -0.00966578536, -0.0168068334, 0.0270790514, 0.00410269899, -0.00261137099, 0.00704822643, 0.0213488862, -0.0228340253, -0.0275245924, 0.0323512964, -0.0348512828, -0.0101855844, 0.0170172285, -0.00129098876, -0.0062901862, -0.00929450057, -0.00833534729, 0.00209466601, -0.0318315, -0.014480114, 0.009808111, -0.0425987616, -0.0344552472, -0.0487125888, -0.0285641905, 0.042375993, 0.000280204142, 0.0110828569, -0.00361384032, -0.0229577869, -0.0225246213, -0.00161199563, -0.0211261157, 0.00352101913, 0.0115655269, 0.0278216209, 0.00344366813, 0.0061354842, 0.0442571677, 0.0267077666, 0.00847148523, -0.027549345, 0.035544347, 0.0266582612, -0.00373450806, -0.00949251931, -0.00793312211, -0.0180196967, -0.00593746547, 0.0280691441, 0.0208043344, 0.0152226835, 0.00656555593, 0.00519798975, -0.0118378028, -0.00298575, 0.00852099061, -0.00882420596, 0.0250864886, 0.00431618793, -0.052375935, 0.0397769958, -0.0202845354, -0.0306433868, -0.00837247632, 0.0502224825, 0.0554947257, 0.0156558491, -0.0204701778, 0.00950489566, 0.0356433578, -0.0148513988, 0.0134281395, 0.00123529602, 0.0183167253, -0.0555937365, 0.0176112838, 0.00800119154, 0.0131187355, 0.00863237586, -0.0130568547, -0.00288364664, 0.000191153755, 0.0380443335, 0.0287622102, 0.0173513852, 0.0118068624, 0.0185147449, 0.0165221822, 0.027722612, 0.000236500797, 0.0111880535, -0.0079950029, 0.00530318683, -0.00181774935, -0.0168810897, -0.0377720594, 0.00206063152, 0.0169924758, 0.0312621966, -0.0164603014, -0.0179578159, -0.0161137674, -0.0600491576, -0.015098922, 0.021893438, -0.0203340407, -0.018032074, -0.00988855679, 0.00412126305, -0.00657793228, 0.0101917721, -0.0498264432, -0.021856308, 0.0171533655, -0.0340344571, -0.0164231714, -0.0107796406, -0.0280443914, 0.0179206878, 0.0150617938, -0.0415591635, -0.00829203147, -0.0138860578, -0.00337869325, 0.0266335085, -0.0143811051, -0.0269800406, 0.00305846, 0.0216087848, -0.0286384486, -0.019653352, 0.0220543277, -0.0266582612, -0.00127397152, -0.0115407743, 0.00306155393, -0.00638610171, -0.00142171211, 0.0173513852, -0.000889536925, 0.0301483404, -0.0133291306, -0.0345790088, 0.00520108361, 0.013205369, -0.00140701537, -0.00304917782, 0.061435286, 0.00450183032, 0.0481680371, -0.0179825686, -0.0075370851, -0.0307423957, 0.0026546875, 0.0298760645, -0.0135271493, -0.00717817619, -0.00104346545, 0.00607669726, 0.00170791091, -0.0135395257, 0.015618721, -0.0278216209, 0.0154578313, -0.0112251826, 0.00805069599, 0.00462868623, -0.0186261293, -0.0509898029, 0.00764228217, 0.0149627849, -0.00167697051, -0.0226978883, 0.0105506815, 0.0374502763, 0.0146905091, -0.0185147449, -0.0170914847, -0.00258816569, 0.0362374149, -0.0168934669, 0.00589105487, 0.0188365243, -0.000572397665, -0.00457299314, 0.0252473783, 0.0484650657, -0.00225400925, 0.018032074, -0.000592508935, 0.0157796107, 0.0228216499, -0.0177474227, 0.034826532, 0.0129330931, -0.00917073898, 0.0339106955, 0.00842816848, 0.0117944861, 0.00403772388, 0.0106991958, 0.00813114084, -0.0127845788, 0.00512992078, 0.0305443779, -0.0197276082, -0.00474316534, -0.0434650928, -0.016101392, 0.00678832689, -0.0438363776, -0.0178711843, -0.0154330786, -0.0116645359, -0.00388302212, -0.00599625241, 0.0264849942, -0.00384589355, 0.0100680105, -0.0319552608, 0.00766703486, -0.00312034087, -0.0280196387, -0.0164726768, 0.0212993808, 0.00130723254, 0.000611073163, -0.0066336249, -0.0080259433, -0.000935947523, 0.019306818, 0.0138365533, 0.0158538688, -0.0173390079, -0.0564848222, 0.0147400135, 0.0123885423, -0.015136051, 0.0116645359, 0.0117449816, 0.00526605872, 0.0174998976, -0.0174380168, 0.0274998397, -0.0170296039, 0.0079950029, -0.00514229713, 0.0120234452, 0.0129207168, 0.0189231578, -0.0356433578, -0.00943063851, 0.00499378284, -0.0210394822, 0.0108910259, -0.0224503651, 0.0148637751, -0.0116831008, 0.0208043344, 0.00737000676, -0.0265592523, 0.0294552743, 0.00628709234, 0.00507732201, -0.0100185061, 0.0180692021, 0.0317324884, 0.0376235433, -0.00118888542, 0.017376136, -0.00554761617, 0.0198018644, 0.00914598629, 0.00952346, -0.0276236013, 0.0127722034, 0.0235023387, -0.000751078536, -0.0250369832, -0.0321780294, -0.00429762341, 0.021856308, 0.00538982032, -0.015098922, -0.0198637471, -0.0247770846, 0.00478648208, 0.00917073898, 0.0198513698, -0.00221378659, -0.029480027, 0.0120605733, -0.00846529752, -0.00560640311, -0.0383908674, -0.0268810317, 0.00070505467, -0.00385208172, -0.00743188756, -0.0215097759, -0.0427967831, 0.0317324884, 0.0131187355, -0.010309346, -0.0155073358, -0.0234652106, -0.00389539823, -0.0276483539, 0.00944920257, -0.00425740099, 0.0123699773, 0.00363240461, 0.01772267, -0.0400987789, 0.00518251956, -0.0280938968, 0.0574749149, 0.0203464162, -0.00979573559, 0.00459155766, 0.023341449, 0.0100927632, -0.000796715671, -0.0182795972, 0.0058693965, -0.0272275656, -0.00978954695, -0.0196038466, 0.0318810046, 0.0421532206, -0.00377163664, -0.0201112702, -0.0142944716, -0.012549432, -0.00558474474, -0.00803832, -0.0398017503, -0.00536197377, -0.0145419948, -0.0152474362, 0.00985761639, -0.00571778882, 0.0489848629, -0.0348017775, -0.0252350029, 0.0109034022, -0.00355505361, -0.00418005, 0.0647521, -0.00258661876, -0.0242201574, -0.020618692, -0.0015841492, -0.0100370701, -0.0190592948, -0.00262529426, 0.00923262, 0.0143811051, -0.0302968547, 0.0220543277, 0.013378635, -0.0198142417, -0.00200648583, 0.00239942921, -0.0036354987, 0.0219058134, -0.0115283988, 0.00461321604, -0.0134528922, 0.00738857081, 0.0173637606, -0.00261910609, -0.0260642059, 0.046237357, 0.0312126894, 0.0468314104, 0.0357918702, 0.00101871311, 0.0089912843, -0.0142944716, 0.0321532786, -0.00287745846, -0.00775985606, 0.0015377386, 0.0332918875, 0.0128093315, -0.00908410549, 0.0164355487, -0.0373512693, -0.0158662442, 0.0043842569, 0.0309404153, 0.0266087558, 0.0320790224, 0.00478338823, -0.0250617359, 0.000573171186, 0.00782792456, 0.00060604536, -0.0172895044, -0.00102876883, -0.00538363215, 0.0103464751, 0.0468066595, -0.0284156762, 0.0312126894, 0.034653265, 0.0253958926, -0.0087994542, 0.000297608116, 0.0235270914, 0.00282331277, 0.0337869339, -0.0375492871, -0.0274008308, 0.0439848937, 0.020482555, 0.0278711263, 0.00307083619, -0.0351730622, 0.000597536738, -0.0358661301, -0.0447769687, -0.00624996377, 0.0354205854, 0.00668312935, -0.013514773, 0.000805997814, 0.0164726768, -0.015928125, 0.0143192243, 0.0276978593, 0.0177845508, 0.0505937673, -0.0178340543, -0.00273822667, -0.0196286, 0.00169398775, 0.0250864886, -0.00356433587, 0.00350554893, 0.00161973073, 0.0102350889, -0.0118749309, 0.0490591228, -0.0309899189, 0.0235270914, -0.00584155042, -0.0455937944, 0.0245666895, 0.012858836, 0.0140964529, 0.0100432588, -2.71937239e-07, -0.021410767, 0.00227876147, 0.0134528922, 0.031410709, -0.00456061726, 0.00651605148, 0.000708148757, -0.0110581042, -0.00118888542, 0.0375492871, 0.0133291306, -0.00934400503, -0.0392819494, -0.0112932511, 0.00922024343, -0.0167078245, -0.0062901862, 0.0327473357, -0.0186013766, 0.0119615644, 0.0079269344, 0.00563424965, -0.00460702786, -0.0062128352, 0.0122524044, 0.0197152328, -0.0324008, -0.0159900058, -0.00439663278, 0.0204701778, 0.0279948879, 0.00787743, 0.0301730931, 0.0498264432, 0.0291334949, 0.0199998841, 0.0129330931, -0.0124566108, 0.0210642349, -0.0079269344, 0.0058229859, 0.0158414915, -0.0455690436, 0.00154779421, 0.0192449372, -0.000562342058, 0.0146038756, 0.0427720286, -0.00997518934, -0.0345047489, 0.0210766103, -0.0100618228, -0.032475058, -0.0451730043, -0.00314354617, -0.0137499198, 0.00459774584, -0.00428834138, -0.0368562229, -0.0267820228, 0.0188736524, -0.00275833788, -0.0313117, 0.00612310786, 0.00461321604, 0.00634278497, 0.00994424894, 0.0208043344, 0.0158167407, -0.049133379, 0.00962865725, -0.00214571785, 0.00928831287, -0.00908410549, 0.0332423821, 0.0174503941, 0.0386383906, 0.00869425666, -0.00582608, 0.00610763766, 0.0299503207, -0.0191954337, -0.0361136533, -0.0448017195, 0.00052714732, -0.0148390224, 0.00448636, -0.00236848881, 0.0206681974, 0.00265004649, 0.039405711, 0.0358413756, -0.00111772248, -0.00923880748, 0.0178340543, -0.0190840475, 0.0145791229, 0.00495665427, -0.0166830719, 0.000959926343, -0.00943682622, 0.0149009032, 0.00623139972, 0.0052784346, 0.00143486168, -0.00367572135, -0.0110209761, -0.00542694889, -0.0476729907, -0.00354886544, 0.00916455, -0.0247275792, -0.0184528641, 0.00832916, -0.0165964384, -0.0155568402, -0.030717643, -0.0054021962, -0.0310641769, -0.0115407743, -0.0142449671, 0.000312884949, -0.0165593103, -0.0375492871, -0.0261384621, -0.00366953318, -0.00100246945, -0.01013608, 0.00170481682, -0.00215499988, 0.0226360075, -0.000745664, -0.00252473773, -0.00100246945, 0.0246656984, -0.0131806163, 0.00219676946, -0.0070544146, -0.0150494175, 0.0137251681, 0.0328710973, -0.0167202, 0.00818064529, 0.0247028265, -0.00849623792, 0.0153588215, -0.0189107805, -0.00505257, -0.0157796107, 0.00996900164, 0.0274503361, 0.0295790359, 0.00594984181, 0.0125618083, 0.0282671619, 0.0184157342, -0.0133043779, -0.010773452, -0.0210394822, 0.0200122595, -0.00934400503, -0.00943063851, 0.0112932511, -0.020928096, 0.0313364528, 0.0495294146, 0.021856308, -0.0174256414, 0.000594829442, -0.021410767, -0.0336384177, 0.0203711689, -0.0185147449, -0.00519489544, 0.0196904801, -0.00831059553, -0.00929450057, 0.0522769243, -0.0192573145, -0.0141212055, 0.0229206588, -0.036336422, 0.00345604424, 0.000327194895, 0.0280443914, 0.0111756781, -0.0161261447, 0.0116459718, 0.0225741267, 0.00250926754, -0.0160395112, -0.0163860433, -0.0315344706, -0.00139309221, 0.00189974147, 0.0107796406, 0.0219924469, -0.011943, -0.0040098778, -0.00682545546, 0.00398821943, -0.00978954695, 0.00978335924, 0.013997444, -0.00551977, -0.0140221957, -0.0134033877, -0.0146905091, 0.0148018943, -0.00311724679, 0.00314973411, -0.00327968388, -0.0137127917, -0.00229113759, -0.0167202, 0.0143563524, 0.0230939258, -0.024096394, -0.0208290871, 0.020098893, 0.0140717, 0.00857668277, -0.00224627415, 0.0213983916, 0.0174256414, -0.00326421368, 0.0116831008, -0.00782792456, 0.0131558646, -0.00574872922, 0.00292696315, -0.00323017919, 0.0131311119, -0.015928125, -0.0136385346, 0.0284404289, 0.0273018219, -0.000477642636, 0.024306789, 0.00400678348, 0.00125618081, -0.00952346, 0.0123885423, -0.019343948, 0.00431309361, 0.00523821218, -0.00939969812, 0.0012925358, 0.0198761225, -0.0378710665, -0.0070234742, -0.0205196831, 0.00117960328, 0.0293562654, 0.025098864, -0.0203092881, 0.0078341132, -0.0205196831, -0.00353958341, -0.0441581607, -0.00749376835, 0.000501621456, 0.0189850386, 0.0164603014, 0.0140098194, 0.00144569087, 0.0217325464, 0.0398512557, -0.00114634237, 0.0049195257, -0.0147152608, 0.0156434737, 0.0128464606, 0.00159033726, 0.0144677376, 0.00370975561, 0.00528462278, 0.0146038756, 0.0343067311, -0.00343748, 0.035618607, 0.0129330931, 0.0199875087, 0.0370789915, -0.00523202401, -0.0235518441, -0.000527920842, -0.0284899343, 0.00364168687, -0.00595603, 0.00460393354, 0.00022992595, -0.0125556206, 0.0258909389, -0.0160147585, 0.00367572135, 0.00904697739, 5.91252e-05, -0.00769797526, 0.0230567977, -0.00735763041, 0.00383042335, 0.017376136, 0.0107610766, 0.0329453535, -0.00292232214, 0.026237471, -0.00743188756, 0.00803213194, 0.0149875367, 0.0295047797, -0.000196955079, -0.031583976, -0.00259435386, 0.00419552, -0.00557546271, 0.021410767, 0.00857049506, 0.00330443634, 0.0190097913, -0.00626234, 0.0135271493, -0.00381495315, 0.0370789915, -0.0321780294, -0.0147771416, 0.00505875796, 0.00566209573, -0.00426977733, 0.0321532786, -0.00373760215, 0.0110024111, 0.00599625241, -0.0332176276, 0.00285115931, 0.0286136959, 0.00748758, -0.0307919011, 0.00752470875, 0.0339849517, 0.00349317282, -0.018477615, -0.0204949304, 0.00559712108, -0.00244738674, -0.0380690843, 0.0241211466, -0.00357980607, 0.0260642059, -0.0108167687, 0.0362126604, 0.00686258404, 0.0183538534, 0.00288055255, -0.000819147448, -0.00642323028, 0.00262220018, -0.0342819802, -0.00642323028, -0.015928125, 0.00526605872, -0.00349317282, 0.00845292117, -0.0039170566, 0.0226978883, -0.016410796, 0.00578895165, -0.00422646059, 0.00387373986, 0.021720171, 0.00739475898, 0.0153588215, -0.0278463736, -0.023477586, 0.0039170566, -0.0137004154, 0.0319800116, 0.0130939838, 0.00228030863, -0.00248451531, -0.00139928027, -0.0126608172, 0.00410269899, -0.00154315319, -0.00719674025, 0.00494118407, -0.0181434583, 0.00360765238, 0.0146038756, 0.00247059204, 0.00268717506, -0.0238364954, 0.00161818368, -0.013032103, 0.0191459283, 0.0243191663, 0.0179578159, -0.0134652685, -0.00565590756, 0.0192573145, -0.0147028854, 0.00671406975, -0.000624996377, 0.00520108361, 0.0240221377, -0.00920786709, 0.0125989364, 0.029480027, 0.023341449, 0.00315901637, -0.0198389944, -0.00994424894, 0.00693684071, 0.0188117716, 0.0150370412, 0.0200246368, -0.00189974147, -0.00313117, -0.0269800406, -0.0152969407, -0.00209776, -0.0118378028, -0.00879326556, 0.024306789, 0.0165098049, -0.00604575686, -0.0575244203, -0.00133198488, 0.00339106936, 0.0382176, 0.00986380409, 0.0137499198, -0.0104021672, 0.0183909833, -0.0296285413, -0.0140345721, 0.00939350948, 0.0314602144, 0.00389230414, 0.00596840587, -0.0154702077, 0.00137839548, 0.0107425116, 0.0115345865, 0.00579514, -0.0152350599, 0.0170791093, 0.0148390224, 0.0202474073, 0.0048823976, 0.00454824092, -0.0335641615, 0.0118625546, -0.0058848667, 0.000907327631, -0.0107548879, 0.030272102, 0.0018316725, 0.0257424247, 0.014789518, -0.0111818658, -0.00889227539, 0.0307671484, 0.0169677231, -0.0188365243, -0.0148637751, 0.0139726913, -0.0169429705, 0.00263302936, -0.00855193101, -0.0179083124, 0.0137746725, 0.00508969836, 0.00736381859, 0.00420480222, 0.00773510383, 0.0137375444, 0.0132796261, -0.00181774935, -0.00995043758, -0.00116026553, -0.00794549845, -0.0130568547, -0.0143316, 0.0188241489, 0.0154949594, 0.0100618228, 0.0344799981, 0.00912742224, -0.00471841311, -0.0172523744, -0.0139603149, 0.0372275077, 0.0144429859, 0.0123019088, -0.0192820672, 0.0111571131, -0.0265345, 0.0106806308, -0.0148513988, 0.00259590079, -0.000730967266, 0.0112066185, 0.0364354327, -0.0223637316, -0.0153835742, -0.0131558646, 0.000372832, -0.0118378028, -0.00157332013, -0.0108477091, 0.0248142127, -0.00023572729, 0.00447089, -0.00084003224, -0.00801356696, -0.00942445, -0.012549432, -0.0170296039, 0.0158662442, -0.00806926, -0.00282331277, -3.07470364e-05, 0.0296037886, -0.0171409901, -0.0129949739, -0.0330443643, 0.0142573435, 0.0115531506, -0.010154644, 0.020791959, -0.0184157342, -0.0147152608, -0.0118749309, 0.00780317234, -0.0279206298, -0.00772891566, 0.0283909235, 0.0202226546, 0.00284497114, 0.00784030091, 0.00707297865, -0.0139108105, 0.00176515069, 0.0066336249, -0.000148514, -0.0166830719, 0.00452967687, 0.0429700464, -0.0130444784, 0.0167078245, 0.00994424894, -0.00942445, 0.00545479497, 0.0223884843, 0.00661506085, -0.0132301217, -0.00258352468, 0.000852408411, -0.0268810317, -0.0035736179, -0.00376544846, 0.0122585921, 0.00363859278, -0.0165098049, 0.0230815485, -0.0240468904, -0.0104021672, 0.0194182042, 0.0183909833, -0.00868188, 0.00897890795, 0.0168439616, 0.0120420093, 0.00457608746, 0.00298575, -0.0235765968, -0.0161756482, -0.00899747293, -0.0321780294, 0.0175370276, 0.0206681974, -0.0116707245, 0.0170914847, -0.00385826966, 0.017239999, -0.00496284245, 0.00571778882, -0.00944301486, -0.00877470151, 0.000797489192, 0.0129207168, -0.0165098049, -0.00387373986, 0.0161756482, -0.0412373841, 0.0224503651, 0.0155815929, -0.00191366463, -0.0190345421, -0.00603956915, 0.0018394076, 0.0113056274, -0.00540529052, 0.0170543566, 0.0281929057, 0.0184033588, -0.0210023541, 0.0226236302, 0.00385826966, -0.00642941799, -0.00448017195, 0.00171564601, 0.0143068479, -0.00197554543, 0.00562496716, 0.0058384561, -0.00266087567, 0.00610454381, -0.0136014065, -0.0246780738, -0.017549403, -0.0219924469, -0.00152458891, 0.0390839316, 0.0113241915, 0.00782792456, 0.0130568547, -0.0255444068, 0.0191459283, -0.00404391205, -0.0302473493, -0.0126484418, -0.000680689118, 0.000300508778, 0.0327720866, 0.0402720422, -0.00111849594, 0.00466890866, -0.00263302936, 0.0115345865, 0.0524749421, -0.0169801, -0.0104145436, -0.0377473049, -0.018997414, -0.0121410191, -0.0196409747, 0.00808163639, -0.0333661437, -0.0119615644, -0.00785886496, 0.0187375154, -0.000674887793, 0.0014526525, -0.02579193, 0.00962865725, 0.00654699188, 0.0104021672, 0.0449997373, 0.0168687142, 0.00729574962, 0.00331371836, 0.0162994098, -0.0369799845, 0.00782792456, -0.00771653932, 0.0159900058, 0.030717643, 0.000881028303, -0.000615327503, 0.0259651951, 0.0325493179, 0.0403463021, -0.0310146715, 0.0210023541, -0.0104207313, 0.00803832, 0.00146270811, -8.03000439e-05, -0.00597459404, 0.0261632148, 0.0202474073, -0.0251483694, 0.0160271339, -0.00612929603, -0.00362621667, -0.0208785925, 0.00730193779, -0.0201360211, -0.0203959215, 0.00641704211, -0.0289107226, 0.00712867174, 0.00699872198, -0.00548573537, -0.0231558066, 0.0206681974, -0.0339354463, -0.00739475898, -0.0160023831, 0.0235889722, 0.0317077376, -0.0147152608, -0.00123684306, -0.012567996, 0.0158662442, -0.0012848007, -0.0171286128, 0.00121363776, 0.00074102293, -0.0108538978, -0.0014758578, 0.0105197411, 0.00171255192, 0.0168439616, 0.00194924616, -0.00482979883, -0.0206929501, -0.000925118395, 0.0187498908, -0.0121286428, -0.0150741702, 0.00193068187, 0.0134157641, 0.0327720866, -0.0109219663, 0.00435950421, -0.0229825396, 0.0136756636, 0.0121719595, 0.0367324613, 0.0225865021, 0.00496284245, 0.00133972, -0.0245419368, 0.00977717061, -0.013514773, 0.0157301072, -0.00567447208, 0.0132424971, 0.0207672063, 0.0307919011, 0.0112437466, 0.00811257679, -0.0126422532, -0.0100370701, 0.0153711978, 0.0230815485, 0.0159776304, 0.0378463157, -0.00902841333, 0.0244058, -0.0364106782, 0.0219676942, -0.00818683393, 0.0154207023, -0.00254794303, 0.0015067982, -0.00123761653, 0.00230351393, 0.00465653231, 0.0141212055, -0.00278773136, -0.00592508959, 0.0108972136, -0.00424193079, -0.0110519165, 0.00508041587, -0.00620355317, -0.0107115712, 0.0360393934, 0.00513610896, 0.0192944426, -0.0189355332, -0.0065717441, 0.0131806163, -0.00937494542, -0.0194058288, 0.0062283054, 0.00119120593, 0.0150865465, 0.00645417068, -0.00116490666, -0.00641704211, 0.00437497441, 0.0222028419, 0.0112437466, -0.0175122749, 0.00549811171, 0.0263364818, 0.00416767364, 0.00683783181, 0.0108167687, -0.0134405158, -3.16897531e-05, -0.0057920455, -0.00139773323, -0.00182084343, -0.00226793229, 0.00209776, -0.00318686268, 0.00149596902, -0.0118625546, 0.00149983657, 0.00251081469, -0.0148018943, 0.00706060277, 0.0166459437, 0.0120296329, 0.0174503941, 0.00451111235, -0.00145806698, -0.00844673347, 0.0133291306, -0.00222461578, -0.0234528352, -0.0131434882, -0.00192604086, 0.00547026517, 0.00220141048, -0.00423264876, -0.00317448657, -0.0162994098, 0.0155815929, -0.00486073922, 0.00811257679, 0.0113056274, 0.00767941074, -0.00292077521, 0.0171657428, 0.018341478, 0.00177288579, 0.00171409897, 0.0151731791, 0.00107904698, -0.00769178709, 0.00934400503, -0.0179454405, 0.011893495, -0.016856337, -0.00107208535, 0.00600862829, 0.0257671773, -0.0197152328, 0.00145497301, -0.0145914992, 0.0169182178, -0.0075061447, -0.00847767387, -0.00579823367, -0.00870044436, -0.0204578023, 0.00857668277, -0.0116583481, 0.0188241489, -0.00383970537, -0.00216892315, -0.000609139388, -0.00592199527, 0.00103805086, -0.0310146715, -0.0206558201, -0.0097400425, -0.00706060277, -0.0018316725, 0.00910267, -0.0158414915, 0.0261632148, 0.0283909235, 0.0112251826, 0.000270148506, -0.0394552164, -0.0015918843, -0.000335510122, -0.00537435, -0.00285270624, 0.000577038736, -0.000237080923, -0.0080568837, -0.00478648208, 0.000355814758, 0.0236632284, -0.00350554893, -0.0206681974, -0.0265345, -0.0200246368, -0.011274687, 0.00118501787, -0.0101608317, -0.0105011771, 0.00130336499, -0.00785267726, 0.0310641769, -0.00183321955, 0.00290685194, -0.00281403074, -0.0136632873, 0.0136632873, -0.0336631723, 0.0121286428, 0.00128789479, -0.00207610172, 0.00926356, 0.014133581, 0.00935019366, 0.00237467675, 0.00400059577, -0.0162994098, -0.0230939258, -0.00139309221, 0.00370356767, 0.0183167253, -0.00490715, 0.0130444784, 0.000939041609, 0.000951417722, 0.0108972136, 0.0080259433, -0.0053712558, -0.0100865755, -0.0070544146, -0.029653294, 0.00685020769, -0.0172647517, -0.0270790514, 0.00837866403, 0.00736381859, 0.0130197266, -0.00809401274, 0.002456669, -0.0221780892, -0.0160271339, 0.00201576808, 0.0142820952, -0.0160766393, 0.0125246802, -0.00628090417, -0.0154825831, -0.0231186785, 0.01013608, 0.0231805593, -0.00495665427, 0.0174998976, -0.00214571785, 0.0257424247, -0.00172338111, -0.00409960514, 0.00826727878, 0.0043069059, -0.0143934805, 0.00532793952, -0.0043533165, -0.0185890011, -0.00470603723, -0.0031450931, 0.00881801825, -0.00895415619, 0.0107053835, 0.00459774584, 0.0286632, -0.00490096165, -0.0186632574, 0.0103712268, 0.0101917721, 0.00840960443, 0.000225478274, 0.0125741847, 0.0170172285, 0.0117264176, -0.0194677096, -0.0224503651, -0.0154083269, 0.00700490968, 0.00759896589, 0.00168315857, -0.0222894754, 0.000238821318, 0.0169058423, -0.00241954043, -0.0165593103, -0.00495974859, -0.0183909833, 0.0271038041, 0.00976479519, 0.00769178709, -0.00282950094, 0.014826647, -0.00688114809, 0.0057920455, 0.00330443634, -0.0088365823, -0.0157424826, 0.00219212845, -0.0399007574, 0.0115098339, -0.00927593652, -0.0149504086, 0.00555689866, -0.00467509683, 0.00787124131, -1.53856054e-05, -1.50230217e-05, -0.00440591481, -0.00726480922, -0.0164603014, -0.00225710333, 0.00576729327, 0.00115871849, 0.0062592458, 0.0066026845, -0.00714104762, 0.00573325902, -0.0116892885, -0.00165376521, -0.00300122029, 0.00634897314, -0.00522583583, 0.00272894464, -0.0126546295, -0.00163210684, 0.00114556879, 0.00612929603, -0.0299503207, 0.022685511, 0.0250617359, -0.0125741847, -0.022413237, -0.0148513988, -0.0131187355, -0.0108229574, 0.0042914357, 0.0129949739, 0.0104888007, 0.000532175123, -0.0128093315, -0.0247028265, 0.0121038901, 0.00689971261, 0.0187127627, 0.0270542987, -0.0132301217, 0.00777842, -0.00601481646, -0.010600186, 0.00817445759, -0.00117341522, 0.0140717, 0.00444304338, -0.0187251382, -0.00123993715, -0.00632731477, 0.00355195953, 0.00772891566, -0.0111756781, 0.013997444, 0.015445455, 0.00923262, 0.0140840765, 0.0183786061, 0.0334404, 0.0204454251, -0.00453277072, 0.00228649657, 0.0242325328, -0.013551902, 0.00417076796, 0.0139850676, -0.00999375433, 0.00801356696, -0.0114355776, 0.0207548309, 0.00285270624, -0.00734525453, 0.023477586, -0.00202350318, 0.00134204049, 0.00622211723, -0.00913979858, 0.00493190205, -0.000597536738, 0.00567447208, -0.0285394378, 0.007085355, -0.00553524029, 0.00205753767, 0.00838485267, -0.0376978, 0.0275245924, 0.00462868623, -0.0096472213, 0.0245171841, 0.0130444784, -0.0197152328, -0.00282640685, -0.00732669, 0.00823633838, -0.00773510383, -0.0166583192, 0.0239355043, -0.0040408182, -0.00634897314, -0.000370898226, 0.0226236302, 0.0131063592, -0.0178340543, -0.0248760935, 0.011757358, 0.0103526628, 0.0114727058, -0.0146657564, 0.012858836, 0.0183786061, -0.00900984835, 0.00972766615, -0.00385208172, -0.0305938814, -0.0119986925, 0.00884895865, -0.011930624, 0.0278216209, 0.0168068334, 0.0127969552, 0.00141552393, -0.0024102584, 0.00494118407, -0.0121905236, -0.0105135525, 0.00277380808, -0.018861277, -0.00730812596, -0.00609216746, -0.0245171841, -0.00614786055, 0.0188860297, -0.0270542987, -0.0135642774, 0.0123885423, -0.00790218171, 0.018861277, 0.00465653231, -0.0113427555, 0.0182548445, 0.013824177, -0.0081497049, 0.00334156468, 0.00193377596, 0.0122276517, 0.011101421, -0.00504947547, -0.0171781182, -0.00121518481, -0.00174039835, -0.0166335665, 0.0155815929, 0.0116707245, -0.00259125978, -0.00418314384, 0.0301483404, 0.0157301072, -0.0110890446, 0.00997518934, 0.00183012558, -0.00233445433, 0.0284899343, -0.00569613045, 0.00190902362, 0.00526605872, -0.0255939104, -0.0130197266, 0.00694302889, 0.00661506085, 0.0054331366, -0.0118068624, -0.00281712483, 0.0108600855, 0.015309317, 0.00150834525, 0.0095791528, -0.000413828035, -0.00233600126, 0.00895415619, -0.0201979019, 0.0129949739, -0.00178216794, 0.0191954337, 0.0030368017, -0.00554142846, 0.0177721735, 0.0167078245, -0.0106991958, 0.0086756926, -0.027722612, -0.0171162374, 0.0237746146, 0.00907791778, -0.00685020769, -0.000139135183, 0.0015996194, -0.0114850821, 0.0202721599, 0.00507113384, -0.0115407743, -0.00839722808, 0.0160518866, 0.0155444639, 0.00777842, -0.0438116267, 0.00262838812, 0.0268810317, -0.00790837, 0.017376136, -0.0149999131, 0.00453586457, -0.0111076087, -0.0352473184, 0.0188365243, -0.00982667599, -0.00556927454, 0.021856308, 0.0270047933, -0.0101051396, -0.00150293065, -0.00322089717, 0.0194058288, 0.00326421368, -0.0207300782, -0.0123514133, -0.00468128454, -0.00567756593, 0.0118006738, 0.0195543412, -0.00508351, 0.018551873, 0.0111509254, 0.0210023541, -0.016546933, -0.00450801849, 0.000758040173, -0.0278958771, -0.00260208896, 0.00842816848, -0.00819302164, 0.0127722034, 0.00223389803, -0.0189107805, -0.012066762, -0.000643173873, -0.0197399836, -0.00390468026, -0.00797643885, -0.0219181888, -0.0143316, -0.000344792235, -0.00553833414, -0.00445232587, -0.00815589353, -0.0054021962, 0.00354886544, -0.00788361765, 0.00462559192, 0.015136051, -0.005309375, 0.00211323029, 0.00123684306, -0.0071162954, 0.0159776304, 0.00576729327, 0.0307919011, -0.0031992388, -0.0155815929, 0.00495974859, 0.0119058713, 0.00109219668, -0.0183538534, -0.00941207446, -0.00501853507, 0.00994424894, 0.00791455805, -0.0212870054, 0.00582917407, -0.0261384621, -0.00819302164, -0.00869425666, -0.00333537674, 0.0129578458, -0.000212521976, 0.00328277797, -0.00526605872, 0.00124844571, 0.00178990304, -0.00434403401, 0.0146410046, -0.00170172285, 0.0106682554, 0.021410767, -0.00011970073, 0.0290592369, 0.00832916, -0.0318067446, 0.0227845218, 0.00176205661, 0.000535655941, 0.0162499063, 0.000144743128, 0.0111509254, -0.00237312983, -0.00479576411, -0.0269057844, 0.00449564215, -0.00987618, 0.00997518934, 0.0290344842, 0.00938732177, -0.0208167117, 0.00548264151, -0.0116335955, -0.0136632873, 0.00676357467, 0.0211137384, 0.0185642485, 0.00017442659, 0.0337869339, 0.0178464316, 0.0270047933, 0.00085937, -0.00891083945, -0.00826727878, -0.00704203825, -0.0256929211, 0.0213860143, 0.0101175159, -0.013688039, 0.0235642195, -0.00913361, -0.0184652396, 0.0275245924, -0.00823633838, 0.00732669, -0.00464415643, 0.0036354987, 0.00776604423, -0.0048576449, -0.00948633067, -0.0146162519, -0.0229454115, -0.000211361708, -0.0186013766, 0.00264231139, -0.00426049531, -0.0230691731, -0.00779079646, -0.0194429569, 0.0103155347, -0.0196904801, 0.0159528777, 0.0142202144, -0.0155939693, -0.0111880535, 0.00863237586, -0.0321532786, 0.00568066025, -0.00772272749, -0.0124194827, 0.0480442755, 0.00847148523, -0.0173885133, -0.00646035839, 0.00714104762, 0.0067264461, 0.0164850522, 0.00567447208, -0.00771653932, -0.010464048, 0.022858778, 0.0078341132, 0.0128835887, -0.0115345865, 0.012722698, 0.00999375433, -0.0133415069, -0.0206681974, 0.010810581, -0.00446470175, -0.0108167687, -0.013861306, -0.0107487, -0.0189355332, -0.0145543711, 0.0163612906, -0.0115222102, 0.00897272, -0.00500925304, -0.00538363215, 0.0035426775, 0.0168687142, 0.0126298768, 0.00213798275, 0.00518561341, 0.0193191953, 0.0267325174, 0.0125556206, -0.0150617938, 0.0026082769, -0.00517633138, -0.0231434293, 0.000962246908, -0.0152474362, -0.00731431413, -0.00390777458, 0.0123699773, -0.0043842569, 0.0006772083, 0.00586320879, 0.00931306463, 0.0282176584, 0.0034498563, -0.00798262656, 0.0191211756, -0.0298265591, -0.00853336602, 0.0183662307, 0.0265592523, -0.0224998686, -0.00103108934, 0.00138381007, -0.0133291306, 0.0024721392, 0.0495294146, 0.0264849942, -0.0121595832, 0.0031296229, 0.0188860297, 0.0220419522, -0.00929450057, -0.0198513698, -1.19712813e-05, 0.00450183032, 0.00994424894, 0.0034653265, -0.0325493179, 0.0154949594, 0.000155475587, 0.0113984486, -0.00100556342, 0.00868188, 0.00707916683, 0.0133291306, 0.00811257679, -0.0257424247, -0.00228959066, 0.015928125, -0.00210394827, -0.00138071598, 0.0147028854, -0.0117016649, 0.0294552743, -0.0089603439, -0.00608597975, 0.00733287819, -0.00359527627, 0.00136447232, -0.00358599401, 0.0169553477, -0.00261446508, 0.0327225812, -0.000417308853, -0.0192449372, 0.00294707459, -0.00815589353, 0.0124256704, 0.00162901287, 0.0248884689, -0.00365096889, 0.000305536581, 0.0239726324, 0.00211787131, -0.00180692016, 0.0323265456, -9.12742253e-05, 0.0277721155, 0.0149380323, -0.0074442639, 0.00589724304, 0.00248296838, 0.00629946822, 0.0259156916, -0.0132301217, -0.00601791078, 0.0210023541, 0.0106991958, -0.0175122749, -0.00944301486, 0.00181001425, -0.00644798251, 0.0178835597, -0.0145791229, -0.021720171, 0.0044770781, 0.0203587934, -0.005309375, -0.0342572257, 0.00944301486, 0.0190469194, -0.00612310786, 0.00450801849, -0.00403772388, 0.0301483404, 0.0239726324, 0.00457608746, -0.0101175159, -0.0283661727, 0.00977717061, 0.0254206453, 0.0160147585, 0.000544551294, 0.000324680965, -0.0175370276, 0.0279453825, 0.0131434882, -0.0172276236, 0.0282671619, -0.0265592523, -0.00233909534, 0.0241211466, -0.00469984906, -0.0261879675, -0.0203464162, 0.0148390224, 0.00297801499, -0.00650367513, 0.0124442345, -0.0124132941, -0.0178959351, 0.00621902337, -0.000432392291, -0.0165964384, 0.00498140696, -0.0177102927, -0.00269955117, 0.00675119832, -0.0229330361, 0.0271285549, 0.00562806148, 0.00120744971, -0.0124566108, 0.00938113406, -0.00109838473, 0.00496284245, -0.00999994203, -0.00191366463, -0.0106249386, -0.00607050955, -0.0188984051, 0.016930595, 0.0142697189, 0.00915217493, -0.0160271339, 0.00423264876, -0.00177443272, -0.00865712762, 0.0140221957, 0.00167542347, 0.0215345286, -0.00698015746, -0.0312126894, 0.00889227539, -0.0180073213, 0.0225988794, -0.00644179434, -0.0258414336, 0.00727099739, -0.0144306095, 0.00592199527, 0.01465338, 0.0043069059, -0.0242820382, 0.0182919726, 2.18033238e-05, -0.00556927454, 0.0106744431, -0.0221409611, -0.00403463, -0.0232919436, -0.00105042709, 0.00474625966, 0.0133910114, -0.00368190929, 0.00392633863, 0.0112437466, 0.0188365243, -0.024306789, 0.00235147146, -0.00265778159, 0.0146162519, -0.000114576222, 0.00383661152, -0.00745664, 0.00197863951, -0.00495356042, -0.0333166383, 0.000848540862, 0.0337621793, 0.00835391227, 0.00678832689, 0.0220790803, 0.0154578313, 0.00287436461, 0.00271038036, 0.0113922609, -0.0194553323, -0.0137746725, -0.0142697189, 0.000860917033, 0.00413673325, -0.00226483843, 0.0280196387, 0.0058693965, 0.00302597252, 0.0123761659, 0.0154207023, -0.00511754444, 0.000251197489, -0.00732050231, -0.0133415069, 0.00477101188, -0.0137499198, 0.0265345, 0.0299503207, -0.00252473773, -0.0053186575, -0.0154702077, 0.00112777809, -0.0154083269, -0.00422027241, 0.0194677096, -0.0069925338, 0.0259156916, -0.0142325908, -0.00852717832, -0.0109590944, 0.00604575686, -0.019789489, 0.0133662587, -0.00748139247, 0.00453895889, 0.00999375433, 0.0459403284, -0.00842816848, 4.5032808e-05, 0.00209311908, -0.0116645359, -0.011775922, 0.0240468904, -0.00827965513, -0.00958534051, 0.0056992243, 0.00815589353, -0.0543066151, -0.00474625966, -0.00236694166, -0.00457299314, 0.009808111, 0.0116335955, 0.00320233288, -0.0277473629, 0.00614786055, -0.00097926415, -0.00105661515, 0.00999375433, 0.00842816848, -0.00719674025, 0.00320233288, -0.00436569238, 0.0310394242, -0.0251483694, -0.0189850386, -0.000129853055, -0.00761753, -0.00385517557, 0.00604575686, 0.0052784346, 0.00234837737, -0.00138767762, 0.00727718556, -0.0164355487, 0.000662898354, 0.00553833414, -0.0126175014, 0.0227350164, -0.00539910235, 0.0115222102, -0.00398821943, -0.000541844, -0.00475863554, -0.0277473629, 0.00563424965, -0.0287127048, -0.00171719305, -0.00338178733, -0.0107053835, 0.00788980536, -0.0156929791, 0.0120110689, -0.00721530477, -0.0199998841, -0.00259125978, 0.00565900188, -0.00907172915, 0.008706633, -0.0173885133, -0.0122771561, -0.0421532206, 0.0149504086, 0.00656555593, 0.00958534051, -0.00465034414, 0.0228092745, 0.00500925304, -0.0488858558, 0.0110147875, 0.00085550244, 0.0103836032, 0.0161385201, -0.0148390224, 0.00813114084, 0.0147400135, 0.015928125, -0.00384279946, -0.0148513988, -0.0057765753, 0.00609216746, -0.00152845646, 0.00618808297, -0.022858778, -0.010600186, 0.0103774155, -0.0140098194, 0.0225865021, 0.00276143197, -0.00975241885, 0.021584034, -0.00271966239, -0.00646035839, 0.00341272773, -0.00174813345, 0.0191088, -0.0104269199, 0.0233290717, 0.0113860723, -0.00531246932, -0.00329515408, 0.0394304655, -0.0066645653, -0.0190345421, -0.0168439616, 0.0167820808, 0.0178835597, 0.00128402724, 0.000745277212, 0.00591580709, 0.00619117683, 0.0242572855, -0.0123328492, -0.00694302889, -0.0123761659, 0.0251112413, 0.00451111235, 0.0256929211, 0.00452039437, 0.00201886194, -0.00635516131, -0.0131929927, 0.0237746146, 0.00303370762, 0.00576729327, 0.00379638886, 0.0132672498, -0.00174039835, 0.00205444358, -0.0207053255, 0.0128712123, 0.00142016506, -0.00331371836, 0.00537435, 0.016274659, -0.00484526902, 0.00394490268, 0.0134405158, -0.0156434737, 0.024962727, -0.00411816919, -0.00455442909, -0.0087685138, -0.0117511693, 0.00518561341, -0.00916455, 0.00816208124, 0.00221688068, -0.0016382949, -0.00382114109, -0.00539600849, 0.00771653932, -0.0053403154, -0.00933781732, 0.015136051, -0.00122291991, 0.0268067755, -0.0401235297, -0.0153711978, 0.00450801849, -0.0128712123, 0.0220419522, -0.0390591808, 0.00260982406, -0.00700490968, -0.0203092881, -0.0241211466, 0.00342510385, 0.00496284245, -0.00578895165, -0.0058539263, -0.0057920455, 0.0207300782, -0.0192201864, -0.0227350164, 0.0265345, -0.0176484119, 0.0220667031, 0.0261879675, 0.0122895325, 0.000520185742, 0.00577348145, -0.0228959061, 0.0347770266, -0.00600244058, -0.00109219668, 0.016410796, 0.0137622962, -0.00592818344, -0.0100803869, -0.00740713533, 0.0161137674, 0.00334775285, 0.00615714258, -0.0151855554, 0.0155320885, -0.0137004154, 0.0183786061, 0.0141954618, -0.0162994098, 0.0149999131, 0.0025928067, -0.0127845788, 0.0080568837, -0.00230041984, -0.0124566108, 0.00868806802, 0.00794549845, -0.0200741403, -0.00737000676, 0.0098390514, 0.00996281393, -0.0216211621, 0.00547645334, 0.0065408037, 0.00815589353, 0.00435641035, -0.0180815775, -0.0268810317, -0.0115160225, 0.0191335529, -0.0019894687, 0.00339725753, 0.0125556206, -0.00551977, 0.00688733626, 0.00471841311, 0.0131434882, 0.00758658955, 0.00244429265, -0.00521964813, 0.0249503497, 0.0169058423, -0.00855193101, 0.00482979883, -0.0281434, -0.00680070324, 0.0108229574, -0.0105444929, 0.0087375734, -0.02579193, -0.0138365533, 0.00852717832, -0.026237471, 0.0189602859, -0.00596221769, 0.0151112983, -0.0231063012, 0.0189850386, -0.00707297865, 0.00657793228, -0.00345913833, 0.00398512557, 0.0184899922, 0.0049040555, 0.0209033433, -0.00713485945, 0.00411507534, -0.00668312935, -0.00426049531, 0.0207795817, 0.0116645359, -0.00211477722, -0.0431433134, -0.00781554915, 0.00396656105, 0.015791988, -0.00499378284, -0.0159776304, -0.0176855419, -0.00231279596, 0.00313271699, -0.0187003873, 0.00601172261, -0.0379700772, -0.00767322304, -0.0133662587, -0.00668312935, -0.0125927487, -0.0127969552, -0.00815589353, 0.0192820672, 0.00586630264, 0.00794549845, -0.00168161152, 0.00795168616, 0.00499068899, -0.0263117291, -0.00785886496, -0.00941826217, 0.0359651372, -0.0256434157, 0.0203711689, 0.00327658979, -0.0204330496, 0.00698015746, -0.0284156762, 0.00896653254, -0.00778460829, 0.00172956917, -0.000188543156, -0.00162591878, -0.00728956144, -0.00876232516, 0.00993806124, -0.0193934515, -0.0293315127, 0.00762990629, 0.0128217079, -0.00241335225, -0.00312652881, 0.00105120055, 0.00264849956, -0.00420789653, -0.00782173686, -0.00688114809, 0.00674501, -0.0357918702, 0.0199256279, -0.00237312983, -0.00852099061, -0.0075680255, -0.0172152463, -0.0166706946, 0.00344057404, -0.00937494542, 0.0212993808, -0.00178835599, -0.000654389791, -0.00427905936, -0.0120977024, 0.00685639586, -0.0106311264, -0.0311879385, 0.00707297865, 0.00706060277, 0.00190747657, -0.000519025431, 0.017858807, -0.0131434882, 0.0189479105, -0.027202813, 0.00015856963, -0.0100308824, -0.0195048377, -0.00230506086, 0.0200493895, -0.0065408037, 0.00528771663, -0.0212003719, 0.00839722808, 0.0104269199, 0.00764228217, 0.00645417068, 0.00551667577, 0.0120420093, 0.00324255554, -0.00433475198, 0.00882420596, 0.0227845218, 0.00925737247, 0.0104702367, -0.00160426053, -0.00827965513, -0.00784649, -0.014343976, 0.00743188756, 0.0169801, -0.0125246802, -0.00132270274, -0.0130568547, 0.0179949459, -0.0106311264, 0.0355938524, -0.000311918062, -0.0152969407, -0.01239473, 0.0177350454, -0.00582917407, -0.0333661437, 0.00258816569, 0.000580132764, -0.0112808747, -0.00774129154, 0.0218810607, -0.0143563524, 0.0120977024, 0.0226483829, -0.00882420596, -0.0145048667, -0.023341449, 0.000688424218, 0.0116769122, 0.0173266325, 0.0193563234, -0.0087685138, -0.0126113128, -0.00330134225, 0.0234280825, -0.0116892885, -0.0019585283, -0.00757421367, -0.0108724618, -0.0165221822, 0.0129330931, -0.00977717061, 0.0238488708, 0.00671406975, -0.0132672498, 0.0112623107, 0.00655317958, 0.0053186575, -0.00660887267, -0.0165221822, 0.0135766538, -0.0235765968, -0.0366829559, -0.00591271324, 0.0231063012, 0.0151236746, 0.0121533945, 0.0098390514, -0.00647273473, 0.0180073213, 0.0185147449, -0.0123204729, -0.00353958341, 0.00589414919, 0.0107301362, -0.00238550594, 0.0097400425, -0.0237003583, -0.0174875222, -0.00896653254, 0.00925737247, 0.00299812621, 0.0109776594, 0.0278711263, 0.00850861426, 0.0313859582, -0.00810638815, -0.000777764653, -0.0133662587, -0.0273018219, -0.0130692311, 0.00499687716, 0.00559093291, 0.0164355487, -0.0197523609, -0.00866950396, 0.00176669762, -0.0104392963, -0.0115964673, -0.00295016845, -0.0095791528, -0.00322089717, -0.0107177598, -0.0150246657, 0.00353648933, -0.00712867174, 0.0143687287, -0.00211168337, -0.00294398051, -0.0113489442, -0.00406247657, -0.00169089367, -0.00429452956, -0.000654776522, -0.00803213194, -0.0194058288, 0.0071472358, 0.00337869325, 0.0133043779, 0.0265592523, -0.0086756926, -0.012586561, -0.0227968972, -0.00610145, 0.00318686268, -0.00738857081, 0.0228711553, -0.0166211911, -0.0080878241, -0.00835391227, -0.0256929211, -0.0103897909, 0.00335703488, -0.0104331076, -0.00736381859, -0.00250462652, -0.0143563524, -0.00349936099, 0.000691905036, 0.0116769122, -0.00461631, -0.00962246861, -0.0112128062, -0.00431309361, -0.0149875367, -0.00193377596, -0.0114912698, -0.00271192729, -0.00252473773, 0.0221657138, 0.00637991354, -0.00660887267, 0.0152598126, -0.00920786709, -0.00506185181, -0.0189726613, 0.00521964813, 0.0222275946, 0.00678213872, -0.0316087268, 0.0279701352, 0.0185271204, 0.00521964813, 0.0100803869, 0.00480814045, 0.035618607, 0.00403463, -0.00570231862, -0.0149132796, 0.00838485267, -0.00135054905, 0.0135766538, 0.00185642485, -0.0191583056, -0.0114727058, -0.0136261582, -0.00157873461, 0.00668931752, 0.0124566108, 0.00956677645, 0.0308661573, 0.0167944562, 0.0238117427, 0.00231743697, 0.0146657564, 0.0025850716, 0.0133538833, -0.00287281745, 0.00282021868, -0.00634278497, 0.0149875367, -0.0170048513, 0.0198142417, 0.0156806018, 0.000716657378, 0.00904078875, -0.00876232516, 0.0206434447, 0.00121209072, 0.0341829695, -0.00453586457, -0.00998137798, 0.0118687432, -0.00956058782, 0.00985761639, -0.0378710665, 0.003060007, 0.00752470875, 0.00882420596, 0.0124194827, 0.0253216345, -0.0125741847, -0.0185023677, 0.00733906636, -0.00698634563, 0.0186261293, -0.0105878096, 0.00988855679, -0.002616012, -0.00332609448, -0.00643560616, -0.0104702367, 0.0355195962, 0.00243965164, -0.0105692456, -0.0110704806, -0.00341891591, -0.0151731791, 0.0157053545, -0.00181774935, -0.0240221377, -0.0218315572, -0.00292851031, 0.011410825, -0.0163860433, -0.0120296329, -0.0198266171]
05 Jun, 2023
unordered_set end() in C++ STL 05 Jun, 2023 The unordered_set::end() function is a built-in function in C++ STL which returns an iterator pointing to the past-the-end-element. This iterator does not directly point to an element, rather it points to the location just after the last element. Syntax umap_name.end() or, umap_name.end(int i) Parameters: This function takes a single integer parameter which is optional. Return value: If the parameter is not passed then the function returns an iterator pointing to the past-the-end element. Actually, it does not point to any element of the set, but it points to the position following the last element of the container.If the parameter is passed then the function returns an iterator pointing to the past-the-end element of i-th bucket. As in the previous case, it does not point to any element of the set, but it points to the position following the last element of i-th bucket. So the iterator returned by unordered_set::end() cannot be dereferenced. Below programs illustrate the unordered_set::end() function: Program 1: CPP // CPP program to illustrate the unordered_set::end() // function  #include <iostream> #include <unordered_set>  using namespace std;  int main() {     unordered_set<int> sampleSet =             { 5, 10, 15, 4, 2, 7, 8, 6 };      // Continue the loop until it points to the     // past-the-end position returned by sampleSet.end()     for (auto it = sampleSet.begin(); it != sampleSet.end();                                                         it++)     {         cout << *it << " ";     }      return 0; } Output:6 8 7 2 4 15 10 5 Time Complexity: O(1) Auxiliary Space: O(1) Program 2: CPP // CPP program to illustrate the // unordered_set::end() function  #include <iostream> #include <unordered_set>  using namespace std;  int main() {     unordered_set<int> sampleSet =                 { 5, 10, 15, 4, 2, 7, 8, 6 };      // displaying all the buckets of the set.     // Continue the loop until it points to the     // past-the-end position returned by sampleset.end(i)     for (unsigned i = 0; i < sampleSet.bucket_count(); ++i)     {         cout << "Bucket " << i << " Contains: ";         for (auto it1 = sampleSet.begin(i);                         it1 != sampleSet.end(i); ++it1)             cout << " " << *it1;         cout << endl;     }          return 0; } Output:Bucket 0 Contains: Bucket 1 Contains: Bucket 2 Contains: 2 Bucket 3 Contains: Bucket 4 Contains: 4 15 Bucket 5 Contains: 5 Bucket 6 Contains: 6 Bucket 7 Contains: 7 Bucket 8 Contains: 8 Bucket 9 Contains: Bucket 10 Contains: 10 Time Complexity: O(1) Auxiliary Space: O(1) Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL
https://www.geeksforgeeks.org/unordered_set-end-in-c-stl/?ref=next_article
PHP
unordered_set end() in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0478025, -0.00282875588, -0.00649173837, 0.0193990748, 0.0199419856, -0.0468755811, -0.0217031296, 0.0195314921, -0.00877924077, -0.0343224593, -0.0251724515, 0.0164859034, -0.0124538094, -0.0143142669, 0.00873289444, -0.0356995948, -0.000839192071, 0.0235172417, 0.0188032, -0.0274897479, 0.00433996366, 0.00450548483, -0.0329453237, -0.0274367817, -0.00162707269, 0.00477031898, -0.0268938728, -0.0106794229, 0.00493583968, -0.00677974522, 0.00520398421, 0.0231199898, 0.0405460559, 0.00728955027, -0.000782914925, 0.0643016472, 0.0236496571, 0.0115798581, -0.00219977577, -0.0230802651, -0.00145493064, 0.0117056537, 0.0350904763, 0.00754776318, -0.0231464729, 0.0135065233, 0.0213058796, -0.0433532931, -0.0133674862, 0.0128113348, 0.0110501898, -0.00736900046, 0.0201670937, 0.00514770672, 0.0238880087, -0.00969953742, 0.0308001712, 0.0159165114, -0.0296349023, -0.0201141275, -0.0109243942, -0.0367324464, 0.0431943908, -0.0171347465, 0.00180252502, 0.0149763515, -0.00344946026, 0.0389040858, 0.0255167354, -0.0133145191, -0.0186045747, 0.0291582011, 0.00222625909, 0.0286550168, -0.0241131168, -0.0215707123, -0.0193461087, 0.00298600108, -0.0178100727, 0.0150028346, -0.0440418608, 0.0481732674, -0.00831578113, -0.0190680325, 0.0131225148, -0.00729617104, 0.00589917274, -0.0354347602, 0.0485175513, 0.0315681882, -0.0101431347, 0.00247454084, -0.0127054015, -0.0140361916, -0.0290522669, 0.0426117592, 0.0213853288, 0.0183397401, -0.0165653545, 0.0320978574, 0.0199419856, -0.00809067208, 0.00820322707, 0.00663077598, 0.0110634314, 0.0372091495, 0.0341370776, 0.0172141977, -0.0103682429, 0.000920297462, 0.0227889474, 0.00540592, -0.00521722576, 0.0436446108, -0.0159694776, -0.0082760565, -0.00574027235, -0.0269998051, 0.0420026407, -0.00493252929, 0.0108780479, 0.0142348167, 0.0418702215, 0.0144864088, -0.0376328826, -0.00728292949, 0.0121095255, 0.0375534333, -0.0207762122, -0.00962008722, 0.00592896668, -0.00596207101, -0.00567406416, -0.0301116034, -0.025212178, 0.0368648656, 0.0111495024, 0.0123942215, -0.0121426294, -0.0205643438, -0.036600031, -0.00959360413, -0.0083555067, -0.00818998553, -0.0409168229, -0.0223387312, 0.0110435691, 0.0148042096, 0.0139037743, -0.0145261334, -0.0170552973, 0.0197036341, 0.0227757059, -0.00483652717, 0.019121, -0.0433797762, 0.0371032134, -0.0176379308, -0.0257418454, -0.0328129083, 0.0272778813, -0.00438299915, 0.00828929804, -0.00626000902, -0.04247934, 0.0345608108, 0.0411816537, -0.00110154308, -0.00661753444, 0.0324686244, 0.00865344424, 0.0183000155, 0.00257054297, -0.0104079684, -3.14748759e-05, -0.0227359813, 0.0352758616, 0.0296084192, 0.0400163867, -0.00467762677, -0.00472397264, 0.00482990639, 0.035779044, -0.00707768323, 8.04846422e-05, -0.0180484224, 0.0518014915, -0.00854089, 0.0501330383, 0.0154795358, -0.000644704793, -0.010705906, 0.0273043644, 0.0274897479, 0.0460016318, 0.0181675982, -0.0168037042, 0.000161383097, -0.0293435846, 0.0250267945, -0.0126789184, 0.0108780479, 0.0150425592, -0.00042290648, 0.0277545825, 0.00319124735, 0.00111230195, 0.011301782, 0.0293435846, -0.00624014623, -0.0097591253, -0.0120366961, 0.0110568106, 0.0506891869, -0.0261788201, 0.0194520429, -0.0719818249, 0.00660098251, 0.00223453506, -0.0329718068, 0.00614414411, -0.0383479334, 0.0145261334, -0.044465594, -0.0304823704, -0.0337663107, 0.0262185466, 0.0152147012, 0.00317469519, -0.00161300332, 0.00507487776, 0.0240866337, -0.0217560958, -0.00484314794, 0.0195712168, -0.0269071143, -0.0520928092, -0.031091487, 0.00896462426, 0.0207232442, -0.00920959562, 0.0216766465, -0.0311974213, -0.00276254746, 0.000614083372, 0.066049546, 0.0164859034, -0.0343224593, -0.0214118119, -0.00488949381, 0.0209615957, 0.00743520865, 0.0143539915, 0.0164329372, 0.00225274242, 0.031885989, -0.0217560958, -0.0215839539, -0.00988492183, -0.00608124584, 0.0136521822, 0.0495239198, -0.0210145619, 0.00949429162, -0.00619049, 0.0155854691, 0.0311709382, -0.0111495024, -0.00301745, -0.0690156892, 0.0324951075, 0.00993126724, 0.0264966208, -0.0240336675, 0.0228419155, 0.00962670892, -0.0205775853, 0.0313563198, 0.0195712168, -0.0219149962, -0.00769342156, -0.0386922173, -0.00334849232, -0.0153868431, 0.0344283953, -0.00959360413, -0.0123611176, -0.0247354768, -0.01011003, -0.0220076889, -0.00943470374, 0.00968629587, 0.0172009543, -0.00320448889, 0.0186310578, 0.0568863, -0.000129727181, -0.0263774469, -0.0262979958, -0.0253445935, 0.0140494332, -0.0208159368, -0.0185251236, -0.0482527167, -0.0348256454, -0.0351964124, 0.00728955027, -0.0137581155, 0.0337663107, -0.0490472205, 0.0254505277, -0.0359909125, 0.00809067208, 0.00991802569, 0.0347461924, -0.0409168229, 0.0182867739, 0.00765369693, -0.0323097222, -0.00469086878, -0.033474993, -0.0191607252, 0.0236629, 0.0274102986, 0.0301645696, -0.0321243405, -0.00586606842, 0.0467166826, -0.0202597845, -0.0534169748, 0.00303565734, 0.000252626603, -0.0450482294, -0.014565859, 0.0158503018, -0.0228154324, -0.0176379308, -0.015929753, 0.0370237641, 0.0189885832, 0.00639904663, 0.00394271314, -0.0031631086, -0.0100107174, 0.00522715691, -0.00628649211, -0.0079052886, -0.0380566157, -0.00890503637, 0.0455778949, 0.000696430099, -0.0132814152, -0.00591903552, -0.0287874341, 0.0425587893, -0.0161416195, -0.0265495889, -0.0237820745, -0.00239343545, 0.0171744712, 0.00368781062, 0.0464253649, 0.000922780251, 0.0344283953, -0.0222460385, -0.0213191211, -0.0311974213, -0.0260331631, 0.0302175358, -0.0194388013, -0.00516094873, -0.0180881489, 0.0249208603, 0.000188797523, -0.0332101583, -0.0160489287, -0.00155507098, 0.045683831, 0.021438295, -0.00943470374, 0.0112620573, 0.0432738438, -0.0101762386, 0.00119009684, 0.0136654237, -0.0106529398, -0.0130761685, 0.0333425738, -0.00234212377, 0.00153272564, -0.0304558873, 0.00200777128, -0.00486301072, -0.0209086277, -0.0135197649, 0.00481335446, -0.0471139327, -0.0259272289, -0.0577337667, -0.0506891869, 0.0312239043, 0.0050086691, 0.0170155708, -0.0109508773, -0.0269468389, -0.0129967183, -0.00590579351, -0.0384538658, -0.00676981406, 0.0303499531, 0.0137051493, -0.00272282236, 0.0096796751, 0.0107588731, 0.00758748828, 0.0184191912, -0.0149101429, 0.031091487, 0.011838071, 0.00148720725, -0.0368913487, -0.0156119522, -0.00330876722, 0.00487294188, 0.0141288834, 0.044465594, -0.00794501416, -0.00272447779, -0.0306412708, 0.000673257164, -0.0122287, 0.0149101429, 0.027569199, 0.0372356325, -0.0229346063, -0.0702868924, 0.0175452381, -0.0107919769, -0.0306412708, -0.0106794229, 0.0285755675, 0.028707983, 0.0328393914, -0.0187634751, 0.0234907586, 0.0375269502, -0.0134270731, 0.010335139, -0.00160555483, 0.00649835914, -0.044465594, 0.00217494764, 0.0331307091, 0.0123611176, 0.0532315932, -0.0140891578, 0.00340973516, -0.0197168756, 0.0605410039, 0.0361498147, 0.005806481, 0.0271719471, 0.0273308475, 0.0184456743, 0.0320978574, 0.0114937872, 0.0324951075, 0.0182338078, -0.00134899712, -0.000999747543, -0.00142927491, -0.0224976316, 0.00290158531, 0.0239674579, 0.0488618352, 0.00772652589, -0.0117453793, -0.00803108513, -0.0349580608, -0.0154265687, 0.00951415394, -0.00966643356, -0.013175481, -0.00654470501, -0.000970781373, -0.00310021057, 0.0333160907, -0.033501476, -0.0324686244, -0.000100967882, -0.0315417051, -0.00589917274, -0.0358320139, -0.0377917811, 0.023596691, 0.00252254191, -0.044465594, 0.000126934014, 0.000834226434, -0.0140759163, 0.0338192768, -0.0128311971, -0.041711323, 0.0142877838, 0.0219547208, -0.0331571922, -0.0208821446, -0.0103417598, -0.038242, 0.00412147585, -0.0039294716, 0.0145128919, 0.0162872784, -0.00183893961, 0.00810391456, 0.00103781745, 0.0248546526, 0.0155192604, -0.0410227552, 0.00965981279, 0.011924142, -0.0053099175, 0.00363815436, 0.0642486811, 0.00235702074, 0.032256756, -0.022034172, -0.0104741771, -0.0313033536, -0.00306048547, 0.023596691, -0.00471735187, -0.0215707123, -0.00356863532, -0.00946118776, 0.0134072108, -0.0231464729, 0.0153868431, -0.0195977017, 0.00826943573, -0.0152676683, 0.000876434322, 0.00553502655, 0.00560785551, -0.0466902, 0.0112620573, 0.0141288834, -0.0168301873, -0.0228948817, -0.00156334694, 0.0211469792, 0.00693202484, -0.0294230338, -0.0158767868, 0.000152589782, 0.0170685388, -0.0257286038, 0.000776707893, 0.0267614555, -0.0156781599, 0.0130629269, 0.0251459684, 0.0570981652, -0.0079847388, 0.00753452163, -0.000956712116, 0.0139964661, 0.0130695477, -0.0358849801, 0.0311179701, 0.0092625618, -0.0164726619, 0.01073239, -0.000332697469, 0.0145261334, 0.0250532776, 0.00440286193, 0.0184191912, -0.0077000428, -0.0217163712, 0.0211999454, -0.0161945857, 0.00209880783, -0.0282842498, 0.00233219261, 0.00257881917, -0.024417676, -0.0072432044, -0.0263642035, 0.0136256991, 0.0149763515, 0.011983729, 0.0204451699, 0.00036993972, 0.0126722967, -0.0159827191, -0.00394602353, -0.0234775152, -0.0358320139, -0.0112885404, 0.0164064541, -0.00550192222, 0.00347925397, -0.0251459684, 0.0032028337, 0.00282048, 0.0358849801, -0.00404533604, 0.0139964661, -0.00639904663, -0.0383479334, 0.0272513982, 0.0302440189, -0.00526688201, 0.0152279437, 0.00804432668, 0.00891827792, 0.0266555212, -0.0228816401, 0.0209483542, -0.0292376503, -0.00649504876, -0.0112686781, 0.0215574708, 0.0082760565, 0.0375004672, -0.0345872939, -0.00268806308, -0.00537612615, -0.0211999454, -0.000460976327, -0.0185118821, -0.00392616121, -0.0149895931, 0.00483652717, 0.030270502, -0.00907055754, 0.0254372861, -0.00699161226, 0.0211867038, 2.01470248e-05, 0.026576072, 0.0142348167, 0.0293435846, -0.00563433906, 0.00693202484, 0.0189488586, 0.0477495342, 0.00612759218, 0.0131092733, -0.018114632, 0.00297110411, 0.016552113, 0.00719685853, -0.0298467688, -0.0306677539, 0.00334187155, 0.0162740368, 0.000963332946, -0.00771328434, -0.00516425911, -0.0320448875, -0.00533640105, 0.0157046448, 0.00278075482, -0.00759410905, -0.0365735479, 0.00364477513, -0.0197301172, -0.00530660711, -0.0498946868, -0.024987068, 0.0155192604, 0.028760951, 0.00928904582, -0.0167772211, -0.017690897, 0.0319389552, 0.0052072946, 0.00389967766, 0.0166050792, -0.0138243241, -0.00600510649, -0.0334220268, -0.0118513126, 0.0057667559, 0.000785397715, 0.0181013905, 0.0328923576, -0.0361233316, -0.0113150235, -0.00103036896, 0.0398839712, 0.0176379308, -0.00441941386, 0.0047504562, 0.00842833519, 0.00702471659, 0.00657118857, 0.00758748828, 0.0215839539, -0.0199817102, -0.0157443695, -0.012122767, 0.0218885131, 0.0284696333, -0.000340973522, 0.00924932, -0.0128378179, -0.00498218602, -0.00223122467, -0.0150160762, -0.0400428697, 0.00582303293, -0.0116460659, -0.00577006629, 0.0214118119, -0.00888517406, 0.0270395298, -0.0462929457, -0.0203127526, 0.00247785123, -0.0217958223, 0.0173730962, 0.0359909125, -0.0281783156, -0.0420820899, -0.0215839539, 0.0158635452, -0.00444258703, -0.0159694776, 0.00617724843, -0.00215011928, 0.0196506679, -0.0289993, 0.0245500933, 0.0212529115, -0.038136065, -0.0156384353, -0.0091367662, 0.00925594103, 0.0084813023, -0.00328062871, 0.00550523261, -0.000839605869, -0.0263774469, 0.0161548611, 0.00695188716, -0.032733459, 0.0538142286, 0.0185251236, 0.0352758616, 0.0301380865, -0.00724982517, 0.0203127526, -0.0293435846, 0.0383479334, -0.0103616221, 0.00480342284, 0.00290158531, 0.0175717231, 0.00372091495, -0.00809729286, 0.0134469364, -0.0182338078, 0.00672015781, -0.000731189561, 0.0244574, 0.0255961865, 0.0281253494, -0.00511460286, -0.0289463345, -0.00129603036, 0.00748155452, 0.00317304, -0.00679960754, -0.00881896541, 0.00813039765, 0.0112090902, 0.029528968, -0.0364411287, 0.0414729714, 0.0288139172, 0.00511460286, -0.00494908169, 0.00615076488, 0.0119042788, 0.0106330765, 0.0247752015, -0.0443861447, -0.0207232442, 0.0108052185, 0.0343489423, 0.0336074084, -0.0162740368, -0.0405460559, -0.0235172417, -0.0255961865, -0.0392218865, -0.0215971954, 0.0348256454, -0.00141686085, -0.00390629843, -0.00412147585, 0.00123644283, -0.0278869979, 0.0184191912, 0.0319654383, 0.0199817102, 0.0334485099, -0.00145575823, -0.000399940414, -0.00555157848, 0.0110501898, 0.0237158667, 0.00767355924, 0.0117188953, 0.00618717959, -0.0220209304, -0.00361167081, 0.0483056828, -0.0146320676, 0.0192004498, -0.00403540488, -0.0545027964, 0.00556813041, 0.0248943772, 0.0221401062, 0.00631297566, -0.0227624644, -0.0286550168, 0.00159314077, -0.00367787923, 0.0378977172, -0.0242058095, 0.00515763834, 0.00112471601, -0.0020342546, -0.00618717959, 0.0423469245, -0.00196308061, 0.00854751095, -0.0339252092, -0.020246543, 0.000331042247, -0.00225274242, -0.0176246893, 0.0231332313, -0.0117056537, -0.0183397401, -0.00122651155, 0.00867330655, -0.0040320945, 0.0104145892, -0.00249605859, 0.00624014623, -0.0344283953, -0.0136256991, 0.00528343441, 0.0224181805, 0.00269137346, 0.00154100161, 0.00922945794, 0.0369443148, 0.0342694931, 0.0435651578, 0.020868903, -0.0157973357, 0.00692540361, -0.025410803, 0.0116460659, 0.0201141275, -0.0254240446, -0.00379043375, 0.011612962, 0.0101497555, 0.00557144079, 0.0316211544, 0.00691216206, -0.0396721028, 0.00787880551, -0.0300321523, -0.0184721574, -0.0509275384, -0.00621697353, -0.0153073939, 0.00327235251, -0.00559792435, -0.0383479334, -0.0355406962, 0.0239674579, 0.00944132451, -0.0155854691, 0.014168608, 0.0137051493, 0.010050443, 0.0167639796, -0.00039207816, 0.016525628, -0.0353553109, 0.0137581155, -0.0126524344, 0.0103550013, -0.0199552272, 0.0182470493, 0.00180914591, 0.0490737036, 0.000753948698, 0.0133211398, 0.0246560257, 0.019875776, -0.0360173956, -0.0404136367, -0.0399634205, -0.00479349168, -0.0113547491, -0.0221136212, -0.00521722576, 0.0242587756, -0.0194652844, 0.017518755, 0.0268409047, -0.0380301327, -0.0237291083, 0.0143275084, -0.0197036341, 0.00809729286, 0.00569723686, -0.0187767167, 0.00518412143, -0.0110501898, 0.0160489287, 0.0150425592, 0.0115401326, 0.00237853848, 0.00164445234, -0.0241396, -0.0249208603, -0.039751552, -0.00879910309, 0.013201965, -0.00442603463, 0.000604152097, 0.0255697034, -0.0173068885, -0.00121658028, -0.0346932262, -0.0134535572, -0.0173598547, -0.0108052185, -0.0165918376, 0.0169758461, -0.0185118821, -0.026576072, -0.0153206354, -0.0293435846, -0.0118910372, -0.017492272, -0.0392218865, 0.00873289444, 0.0291582011, -0.00284199766, 0.0077397679, -0.000831743644, 0.0433797762, 0.00274765072, 0.0046312809, -0.0155722275, -0.0316211544, 0.0142745413, 0.0361233316, -0.00793839339, 0.0184986405, 0.0288668834, 0.0162343122, 0.0180881489, -0.0182205644, -0.0115335118, -0.00697837071, 0.00248778239, 0.0237026252, 0.0273838136, 0.0171479881, -0.00204418576, 0.0225108732, 0.0152014596, -0.00779273454, -0.0174790304, 0.00591572514, 0.0297938026, -0.0187899582, -0.0163799711, -0.00079946703, -0.0136124576, 0.0277281, 0.0579456352, 0.0151749766, -0.0421350561, 0.0110038444, -0.0274897479, -0.0188694075, 0.0341370776, -0.0331571922, 0.0123213921, 0.0118182078, -0.0175717231, -0.0213853288, 0.0548735633, -0.0114739239, 0.00204749638, 0.0280723833, -0.0391159505, 0.00705119967, -0.00396257546, 0.00787218474, 0.0133211398, -0.0197830852, -1.20002815e-05, 0.010533764, 0.0226962566, -0.0278340317, -0.0197301172, -0.0270262882, 0.00340973516, 0.0110501898, 0.021663405, 0.0224446636, 0.000849950942, -0.00132996216, 0.00144417176, 0.00681947032, -0.0243117418, -0.000960022502, 0.0317800567, -0.0211602207, -0.0194520429, -0.0136786653, -0.0168434288, 0.0311179701, -0.00331704319, -0.00442603463, -0.0011313369, -0.0307472032, 0.00418768451, -0.0170950219, 0.000861537468, 0.0251062438, -0.020047918, -0.00537281577, 0.000860709813, 0.00695188716, 0.00239012507, 0.00842833519, 0.02578157, 0.00869979057, 0.0125663634, 0.024417676, -0.0192004498, -0.00331207761, 0.00172804052, -0.00904407445, -0.00783245917, 0.0144731672, -0.0121558709, -0.0142877838, 0.0286550168, 0.0295554511, -0.0106926644, 0.0230802651, 0.00598193333, -0.00516094873, -0.0111826072, 0.00649504876, -0.00618386921, -0.00259868172, 0.00688567851, 0.00084581296, 0.0139170159, 0.0277545825, -0.039354302, 0.00106678368, -0.0108714271, 0.0107654938, 0.0189621, 0.0299791861, 0.000336421683, -0.00238846987, -0.00503184227, -0.00570054725, -0.0143275084, -0.01042121, 0.0042274096, 0.0272778813, 0.0300056692, 0.0149498675, -0.00681284955, 0.0270527732, 0.0513512716, -0.00500535872, 0.0109906029, -0.0155987106, 0.0280458983, 0.0159165114, 0.0137845995, 0.0263377205, 0.0156119522, 0.00674002, 0.0231597163, 0.0324951075, -0.0018058354, 0.030270502, 0.0106728021, 0.00815026, 0.0148704173, -0.00614745449, -0.0213058796, -0.00688567851, -0.0150690433, 0.00269799423, -0.0093949791, -0.0175452381, 0.015135251, -0.00624345662, 0.02146478, -0.0479614, -0.0117255161, -0.00229246751, 0.00420754682, -0.000876434322, 0.00874613598, -0.00748817576, -0.00244805729, 0.0159165114, 0.0111230193, 0.0200744011, 0.00201273686, 0.0269468389, -0.00571709964, -0.00917649083, 0.0179292485, 0.00913014542, -0.00134899712, -0.0207364857, -0.0043465849, -0.0136786653, 0.000132313449, 0.00935525354, 0.00482328562, -0.0111759864, 0.015161735, -0.017889522, -0.004528658, -0.0173466131, -0.00353222084, -0.0338987261, -0.0167242549, 0.00131589291, 0.00401885295, 0.00413802825, 0.0100769261, -0.000190556195, 0.00701147458, -0.000262971676, -0.00887193251, 0.00995113, 0.0272778813, 0.00964657124, -0.0177571066, 0.0108846687, 0.0324156582, 0.00778611377, -0.0211867038, 0.0110832946, 0.00604152074, 0.0018058354, -0.0287874341, 0.0301380865, 0.0198890176, 0.0272513982, 0.00133492786, 0.0337927938, 0.0125729842, 0.0150822848, -0.0147380009, -0.00460479781, 0.00576344552, 0.015929753, -0.0296084192, -0.00762721337, -0.00123975321, -0.00159314077, -0.00887193251, 0.0228419155, 0.00417775335, 0.0195977017, -0.0177968312, 0.00944794528, 0.000893814082, 0.00571378926, 0.0252254196, 0.00285854982, -0.000799880829, -0.0283107329, -0.0131489979, 0.000900434912, -0.00206073793, 0.0169626046, 0.00607793545, -0.00107257685, -0.00592234591, -0.0152809098, -0.0181808397, 0.00020928077, -0.0115798581, -0.0266687628, -0.0261126123, -0.0306412708, -0.00815026, 0.00145824114, -0.00833564345, 0.00732927537, -0.0332896076, 0.0106860436, -0.00486301072, 0.0274632648, 0.0180351809, 0.0164329372, -0.0115335118, -0.00346601242, -0.0015815543, -0.0277016144, 0.0069651287, -0.0120764207, -0.0111495024, 0.0238350425, -0.0194255598, 0.0116262035, 0.0231332313, 0.0288139172, -0.00429361779, -0.0306677539, 0.00168831542, -0.00752127962, 0.0146850338, 0.0148042096, 0.017889522, 0.00383677962, -0.0174525473, -0.0268541463, -0.0209086277, -0.00302572618, 0.000862365065, -0.0110237068, 0.0218355469, 0.0223519728, 0.00877261907, -0.0658376813, -0.0066671907, 0.00236198632, 0.0357525609, -0.00698499149, -0.00718361652, -0.0214118119, 0.014963109, -0.0308796205, 0.00232722703, 0.000153624293, 0.0156781599, -0.00170983316, 0.00189687207, 0.00543240318, 0.0190018248, 0.0166448038, -0.00257881917, 0.00454521, 0.000383802108, 0.0520398393, 0.00565751176, 0.00569061609, 0.0081966063, 0.0105734896, -0.0175849646, 0.0264304131, 0.0104278307, 0.00607793545, 0.00234543439, 0.0109045319, 0.00314159086, 0.0159032699, 0.0143539915, -0.00291648228, 0.00811053533, 0.0322302729, 0.0250400361, -0.0336338915, -0.0280458983, 0.0218487885, -0.0137448739, 0.0129106473, -0.0163932126, -0.0275956821, -3.66732747e-05, -0.0194520429, 0.0101298923, -0.0231067482, 0.0059091039, 0.00950753316, 0.00636263192, -0.0115599949, -0.00640235702, -0.0132549312, -0.0201141275, 0.00376726082, -0.0237555914, 0.0233186167, 0.0157046448, 0.0176246893, 0.0246295426, 0.0182735324, -0.00786556397, -0.0168831553, -0.00471404148, 0.0376328826, 0.0142745413, 0.0051510171, -0.0135859735, 0.00905069523, -0.0417378061, 0.0154795358, 0.000701395737, 0.010136514, 0.000579323911, 0.00561116589, 0.0317800567, -0.0275162309, -0.00569061609, -0.00480342284, -0.00841509365, -0.0118446918, 0.00682609109, -0.0292641353, 0.0278075486, -0.000285523944, -0.00148555206, -0.0108581856, 0.00288337795, -0.00437968876, 0.00443596626, -0.0293435846, -0.00984519627, -0.0161151364, -0.00248778239, 0.0102424473, 0.0206305534, -0.00421085721, 8.09501726e-05, -0.0199022591, 0.0200346764, 0.0205246191, -0.0021070838, 0.0122220796, 0.00129603036, -0.0181411151, -0.0243382268, -0.0178365558, -0.0353288278, -0.0143804755, 0.019306384, 0.00678636599, 0.00427375548, 0.00979885086, -0.0024530231, -0.00543902395, 0.00411154469, 0.0211734623, 0.00820984785, -0.00714389188, -0.00808405131, 0.0378712341, -0.0380831, 0.0156914033, 0.00946118776, -0.00378381275, 0.00907717831, 0.0144466832, 0.0179027654, -0.0115070287, -0.00218156842, 0.00382022746, -0.0166712869, 0.0142877838, 0.000509805046, 0.0156251937, -0.00871965289, -0.0392483696, 0.0319389552, -0.00325745577, -0.00877924077, 0.0293965507, 0.0249738265, -0.00745507143, 0.00339649338, -0.00113050931, 0.00408175075, 0.00468093716, -0.00144168898, -0.0218355469, -0.022656532, 0.00138954981, -0.0291846842, 0.0194255598, 0.0223784558, -0.035858497, 0.0214780215, -0.0101762386, 0.00902421121, 0.000916987, -0.00736900046, -0.026774697, -0.00919635314, 0.0167110134, -0.00141934364, -0.0282312818, 0.00730941258, 0.026205305, -0.0395132, 0.0144996503, 0.029131718, 0.00180086982, -0.0106794229, -0.000970781373, 0.00799798, 0.00995113, 0.00787880551, 0.0128245763, 0.0233451, 0.00726968748, 0.00036725, 0.0347726792, -0.0165653545, -0.00151782867, 0.0113679906, 0.00397912785, 0.00682609109, 0.01732013, -0.000987333478, 0.00685919542, -0.0172936469, 0.0036216022, 0.0123081505, -0.0192004498, -0.0293700676, -0.0254637692, 0.000303524372, 0.0271984302, 0.00988492183, 0.0206040684, -0.000340973522, -0.0264304131, 0.0211469792, 0.0218752716, -0.01732013, -0.018313257, 0.00168334984, -0.00493583968, 0.0244706422, 0.0423998907, 0.00479680207, 0.000411113084, -0.00923607871, 0.0129569937, 0.040969789, -0.00415458, -0.0182470493, -0.0256226696, -0.0187237486, -0.00546219712, -0.00611766055, -0.00948105, -0.0332631245, 0.0034229767, -0.00762721337, 0.011752, -0.00589586236, 0.00273275375, -0.0120698, 0.00611104, 0.00751465885, 0.024417676, 0.0396985859, -0.00394602353, 0.0203524772, 0.0103616221, 0.0175319966, -0.0164196957, -0.0106595606, 0.00732927537, 0.00980547164, 0.0349580608, 0.00965319201, 0.0117453793, 0.016525628, 0.0102556888, 0.0282842498, -0.0277545825, 0.0271057393, -0.0175849646, 0.00967305433, 0.0179027654, -0.0214780215, -0.00534302182, 0.0108383233, 0.0102424473, -0.00661091367, 0.017518755, 0.0114209577, -0.00899772812, -0.0103152767, -0.0045121056, -0.022431422, -0.0114739239, 0.0347991623, -0.0463459156, -0.000525943353, 0.0120234545, -0.00167755655, -0.00068277464, 0.0151749766, -0.0150160762, -0.0129636144, -0.0128709227, 0.0260728877, 0.0474847, -0.00439293077, -0.0153206354, -0.0145923421, 0.0337927938, -0.00818336476, -0.0248281676, 0.0190018248, -0.00901097, -0.00565420138, 0.00178266247, 0.0192931425, 0.00595876062, 0.0201538522, -0.00674333051, -0.0133410022, -0.00778611377, -0.00216170587, 0.00329221506, -0.0072034793, -0.0044723805, 0.00589917274, 0.0110700531, 0.0437505431, -0.0139567414, 0.0154927773, -0.0205113776, 0.027145464, 0.02640393, 0.0439359285, 0.0149763515, 0.0150160762, 0.00119920052, -0.0127385054, 0.0196506679, -0.0190415494, 0.0125266388, -0.00142017123, 0.00011783035, 0.0173863396, 0.0273573305, 0.0110965362, 0.00293137901, -0.00307372725, -0.0139832245, 0.0144996503, 0.0182735324, 0.0103086559, 0.0325215906, -0.0119638667, 0.0224579051, -0.0193461087, 0.0122485626, -0.00274599553, 0.000437803363, -0.0144202, 0.0114077162, -0.00705782045, 0.00552178454, 0.00353884161, 0.00943470374, -0.00306545128, -0.0063030445, 0.000778776885, 0.00216998183, -0.00862034, 0.00894476101, -0.0138772912, 0.0113415075, 0.0282577667, -0.00385333179, 0.0199552272, -0.0175584815, -0.00114292337, 0.00582965417, -0.0137448739, -0.00985181704, 0.0028635154, 0.00268475269, 0.0189223755, 0.00140527438, -0.00181742187, -0.0212793946, -0.000494494336, 0.0168963969, 0.00695188716, -0.0175584815, 0.00751465885, 0.0356731117, -0.00136885967, 0.00508480892, 0.00816350151, -0.0019647358, -0.0288933665, -0.0134138316, -0.00283537689, 0.00111312955, -0.00546881789, 0.010335139, 0.00510467123, 0.0014673447, -0.00713727064, -0.000194487322, -0.000658360252, -0.0110303275, 0.00814363919, 0.0311444551, 0.00099892, 0.0267482139, 0.00342628732, -0.00572372042, -0.0062235943, 0.0134072108, -0.00574689358, -0.0292376503, 0.00296779373, -0.00885869, -0.0102887927, 0.00800460111, -0.00934863277, 0.00131506531, -0.0012025109, 0.0246427841, -0.00304724392, 0.00221632794, 0.00470411032, 0.00994450878, -0.00554164732, 0.0146055836, 0.0141818495, 0.00885869, -0.00801122189, 0.012976856, 0.000982367899, 0.00582303293, 0.0140759163, -0.0300056692, 0.0177703481, -0.00170983316, 0.00482990639, 0.00163203827, 0.0206437949, -0.0206835195, -0.0194123164, -0.0116328243, 0.00986505859, -0.0105470056, -0.00658443, -0.0137448739, -0.0297673196, -0.0178762805, 0.0180484224, -0.0164461788, 0.00818998553, -0.000631049275, 0.003542152, 0.00822308939, 0.00242653955, -0.00497887516, -0.0199155, -0.019121, -0.0173730962, -0.00730279181, -0.00922283716, 0.00514770672, -0.0133476229, 0.021663405, 0.0305618197, 0.0226300471, 0.0112355743, -0.0300586354, 0.000884710404, -0.00472066225, -0.0183927063, -0.0130298231, 0.00126209855, 0.000425803097, 0.00235702074, -0.0113679906, -0.00282048, 0.0260861292, 0.00613421295, -0.0183794647, -0.0263377205, -0.0270130467, -0.00975250453, 0.000832571241, -0.00796487648, 0.00177273119, 0.00449886406, -0.000433665351, 0.0214912631, -0.00371429394, -0.0116063412, -0.0145791005, -0.0180881489, 0.0163799711, -0.0299791861, 0.00253909407, -0.00916987, 0.00132416899, -0.00506494613, 0.00394933391, -0.00302738138, 0.000655463664, 0.00388312549, -0.00799798, -0.0160754118, -0.0210145619, -0.00856737327, 0.00965319201, -0.00653146347, 0.00249440339, 0.00533309067, -0.00145410304, 0.000400561112, 0.0257418454, -0.0103020342, -0.0141156409, -0.00961346645, -0.0300321523, 0.0242985, -0.0185118821, -0.0333690569, 0.0192401744, 0.0110435691, 0.0144466832, 6.82774635e-06, 0.00134734192, -0.0127318846, -0.0175982062, 0.0066671907, 0.0225903224, -0.0139964661, 0.024020426, 0.00619049, -0.00718361652, -0.0125531219, 0.0268011801, 0.0117453793, 0.00681947032, 0.0171347465, 0.00314324605, 0.0186178163, -0.00146155152, 0.00468093716, -0.00429030741, 0.00180914591, -0.00295951776, 0.00973926298, -0.00570716849, -0.0190812759, -0.0112819197, -0.00607462507, -0.00392285082, -0.00688567851, 0.00901759, 0.00801784359, 0.0170685388, 0.0121426294, -0.00465776445, 0.0104410723, 0.00850778539, 0.00255233562, -0.0146850338, 0.0100901676, 0.0137845995, 0.00824295171, -0.0188164413, -0.0310385209, -0.018909134, 0.0230802651, 0.00731603382, -0.0059091039, -0.010646319, -0.0182073228, 0.015161735, -0.00797811802, -0.0120300753, -0.0132152066, -0.0219017547, 0.0240469091, -0.00111395714, 0.0189885832, -0.00589255197, 0.0229081232, -0.00276420265, 0.0120830415, 0.012493534, -0.000493666739, -0.00206901412, 0.000364560285, -0.0292111672, -8.9019326e-05, -0.0065645678, -0.00481997523, 0.0106595606, 0.00212529115, -0.00484314794, -1.46382745e-05, 0.0121889757, -0.0144864088, 0.003393183, -0.0095605, 0.00334352674, 0.0128643019, -0.0203922018, -0.00801784359, 0.0182602908, -0.00288503314, -0.0189753417, -0.00771328434, -0.00226267381, 0.000119071759, 0.0139567414, 0.00815688074, 0.0101762386, 0.00372753572, -0.00877261907, 0.0165123865, 0.0115599949, -0.0203524772, 0.0161681026, 0.0281783156, -0.0250003096, -0.010533764, -0.00406850921, -0.00882558618, -0.00748817576, 0.0125928475, 0.0147909671, 0.0133410022, 1.97978788e-05, -0.0164859034, -0.0165388715, 0.00371098355, 0.00117437239, 0.0123081505, 0.0149233844, -0.0121426294, 0.0142613, -0.0180616658, -0.0125398804, -0.000229039855, -0.0171744712, 0.00225936342, 0.00117933797, -0.0129967183, 0.00172307494, -0.00862034, -0.00269964943, 0.00540592, -0.00154431211, 0.0175055135, 0.00922945794, 0.00222129351, 0.0164329372, 0.00703133736, 0.0233451, 0.0124670509, -0.00230239891, -0.00388643588, 0.018684024, -0.0127716102, 0.00558137242, 0.0127716102, -0.0150690433, 0.0127649894, -0.0188429244, 0.0127252638, 0.0153471185, 0.00665063877, 0.00821646862, 0.00119175203, 0.012665676, -0.00242819497, -0.00866668578, 0.00348587474, 0.00400561094, 0.0136256991, -0.0163005199, 0.00614414411, -0.00776625099, 0.000508149853, 0.00799136, -0.0318330228, 0.0217693374, 0.000173900626, 0.000560289, 0.0257021207, -0.00359842926, -0.017743865, -0.0045915558, -0.00825619325, 0.00890503637, 0.00581972254, -0.0170950219, 0.0104476931, 0.002264329, -0.0156781599, -0.00892489869, 0.0207629688, 0.0124670509, -0.0215971954, -0.00792515092, 0.00146320672, -0.00288668834, 0.00748155452, -0.0142613, 0.0158370603, 0.0160224438, -0.0156516768, 0.00106264558, -0.0137448739, -0.0120698, -0.0018108011, 0.00593889784, -0.0200346764, 0.00817012228, 0.0134138316, 0.0286550168, -0.00260861288, 0.0211072527, 0.00594220823, -0.00911028218, -0.00111726753, 0.00942146219, -0.010705906, 0.00328062871, -0.00156582985, -0.0249738265, 0.0101497555, 0.0162740368, -0.0161681026, 0.000347387453, -0.0034329081, -0.00431348057, 0.0124736717, -0.000397871394, 0.00779935531, 0.0250003096, -0.00997761358, -0.0155722275, 0.0147115169, 0.00145741354, 0.00432672212, 0.0163137615, 0.00404533604, -0.0084018521, -0.0152147012, 0.00609448785, -0.0125862258, 0.0233053733, 0.019054791, -0.0129437521, 0.00695188716, 0.0269468389, 0.0354347602, -0.00975250453, 0.00887193251, -0.00129437516, 0.00536288414, 0.0259272289, -0.0114341993, -0.0101166507, 0.00499211717, -0.011811587, -0.0120896632, 0.013572732, 0.00343952887, 0.016499145, -0.0196374264, 0.00153024273, 0.00144334417, 0.0181675982, -0.00917649083, 0.0138110826, 0.00485970033, 0.00449555367, -0.00189852726, -0.0164859034, 0.00995775, -0.00409168238, 0.0222990047, 0.00506163575, -0.0123213921, 0.0273838136, 0.0109111527, -0.0105139017, 0.0215442292, -0.024219051, -0.0258742627, 0.0352228954, 0.011414337, 0.00290986127, -0.0043465849, 0.00723658362, -0.0155987106, 0.0336338915, -5.41564441e-05, -0.0111627448, 0.0049457713, 0.0140361916, 0.0117917247, -0.0035818771, -0.03464026, 0.00907055754, 0.00287675718, -0.00651491154, 0.000768018, -0.0231862, 0.0039923694, -0.00499542756, -0.0320978574, 0.00399899, -0.00825619325, -0.000664981082, 0.00779273454, 0.0175717231, -0.00216667145, 0.000315731537, 0.00952077471, 0.0282047987, 0.00274102972, -0.0248678941, -0.0171082634, -0.010931015, 0.00171314366, 0.0207364857, 0.0272513982, -0.00663408637, 0.0247089937, 0.000261730282, 0.00744845066, -0.0186575409, -0.0223122481, 0.0017760417, -0.0284166671, -0.0129238889, -0.00867330655, -0.00683933264, 0.00582965417, 0.0136124576, -0.000987333478, -0.0128576811, 0.00641890895, -0.00185383658, -0.00295289676, -0.0292641353, -0.00492259813, -0.0059256563, 0.00543902395, 0.00212198077, 0.00285358424, -0.0181411151, -0.0153868431, 0.00189852726, -0.0237158667, 0.0231199898, -0.00332862977, -0.00437637838, 0.0113150235, -0.003691121, -0.0166712869, 0.0185780916, -0.000424561673, 0.036626514, 0.00693202484, 0.00548205944, 0.0142083336, 0.0278605148, -0.00614745449, -0.010844944, 0.00826943573, -0.00667381147, 0.00834888499, 0.00703133736, -0.0117718624, 0.00648842799, -0.0117122745, -0.0126722967, -0.00698499149, -0.017743865, 0.0181808397, 0.00878586154, 0.01112964, -0.00474052504, -0.00922945794, 0.0146850338, -0.00623683585, 0.0310385209, -0.0162078291, -0.00213522254, 0.0108912895, -0.00555819925, 0.0238218, 0.015532502, -0.03464026, 0.0187502336, -0.00258047436, 0.00927580334, 0.00383346924, -0.0115997205, 0.0152809098, -0.00893151946, -0.0160621703, -0.0344283953, -0.00290986127, -0.00143589568, -0.000140279153, 0.0247089937, 0.0106132142, -0.0224976316, 0.00870641135, 0.0079847388, -0.019677151, 0.0049854964, 0.019121, 0.0097591253, 0.0126789184, 0.0388246328, 0.0255432203, 0.0231597163, 0.00663739722, 0.00182735315, -0.00599848526, -0.0157973357, -0.0212264284, 0.0204054434, -0.00259206071, -0.0173995811, 0.0115997205, 0.0120896632, -0.0300056692, 0.0256094281, -0.0159827191, 0.0121492501, 0.00567737455, 0.0144202, -0.00380036491, -0.0166712869, -0.00707768323, -0.00840847287, -0.0200081933, -0.00171314366, -0.00316641899, 0.00379705452, -0.003542152, -0.0212661531, -0.00726306671, -0.0246692672, 0.00858061481, -0.0201538522, 0.00764707569, 0.00458493503, -0.00973264221, -0.0251724515, 0.00571709964, -0.00874613598, 0.00622028392, 0.00411485508, -0.00641890895, 0.0302969869, 0.0113547491, -0.0129172681, 0.002264329, -0.000377595046, -7.90363338e-05, 0.0233186167, 0.0236231741, -0.00665394915, -0.0180086978, 0.0167639796, -0.00223453506, 0.0156384353, -0.00954063796, 0.0193196256, -0.00156996783, -0.00112057803, -0.0072034793, 0.00565751176, 0.00440286193, -0.0117188953, -0.0155192604, -0.00824957248, -0.0121095255, -0.0131556187, 0.0206437949, -0.00796487648, 0.00823633093, -0.0148704173, 0.00555819925, -0.00612759218, 0.0133277606, 0.00601503765, -0.00649504876, -0.00602165842, 0.0184191912, 0.0328129083, 0.00656125741, -0.0230670236, -0.00119589013, -0.00484314794, -0.019875776, -0.0119440043, -0.012407463, 0.000487045909, 0.0050881193, 0.0106728021, -0.00370436278, 0.011838071, 0.00624014623, 0.0135396281, 0.0144731672, -0.00455514109, -0.00584951648, 0.0357525609, -0.0199949518, -0.0107654938, 0.00249440339, 0.0304558873, -0.0326275229, -0.0113944737, 0.00968629587, -0.0053099175, -0.00866668578, 0.0447039455, 0.0290257838, 0.00243150536, 0.0107985977, 0.0213456042, 0.0136786653, -0.00359842926, -0.0309061036, -1.40434331e-05, -0.00647518644, 0.014565859, 0.0013953431, -0.0226697735, 0.00768018, -0.0120300753, 0.00834226422, -0.0111428816, 0.00565089099, -0.00694526639, 0.0147512425, 0.0114805447, -0.0138772912, -0.000820984773, 0.00230736448, -0.00485970033, -0.012493534, 0.0182205644, 0.000849950942, 0.0306412708, -0.00442934502, -0.0221930724, 0.011215711, 0.00176114473, -0.00702471659, 0.0044889329, 0.0184986405, -0.0072101, 0.0183662232, 7.08637299e-06, -0.02640393, 0.00102374819, -0.0198890176, 0.0173730962, -0.00134568673, 0.0325480737, 0.00681947032, -0.00742196711, 0.0160886534, -0.0027840652, 0.000395181676, 0.0266687628, -0.0052867448, 0.0341900438, 0.00144251657, 0.0050483942, 0.00423072, 0.0101828594, 0.0242455341, 0.042850107, -0.0230802651, 0.00651822193, 0.0149498675, 0.00973926298, -0.0227624644, -0.0271189809, -0.0137316324, 0.00388974627, 0.01308941, -0.0144864088, -0.02578157, -0.00657780934, 0.0238085575, -0.0122485626, -0.0278075486, 0.0158900283, 0.019306384, 0.00139948109, -6.79153891e-05, -0.00872627366, 0.0168831553, 0.0142613, -0.00557806203, -0.000122589088, -0.00209384225, 0.0183000155, 0.0177968312, 0.0139037743, 0.0250267945, -0.00190514815, -0.0276221652, 0.0242587756, -0.00858061481, -0.0122154588, 0.0252916273, -0.0147777256, 0.00734913768, 0.021292638, -0.00357194594, -0.0379242, -0.0189356171, 0.00337001, 0.00409168238, -0.00672015781, 0.00524039892, -0.0107985977, -0.0337663107, 0.00908379909, -0.00149300054, -0.0121889757, -0.0131225148, -0.0190812759, -0.00346601242, 0.0032425588, 0.00090953859, 0.00769342156, 0.0135992151, -0.00412478624, -0.00158734759, 0.017916007, -0.00486963149, 0.00583296455, -0.00108250813, 0.00325249, -0.000458907307, -0.0232921317, -0.00867992733, 0.0063824947, 0.0182073228, 0.00675326167, -0.0187105071, 0.011699033, -0.000478356058, -0.0130629269, 0.00381691707, -0.00282710069, 0.0344813615, -0.0141288834, -0.016327003, 0.0083224019, -0.00963333, 0.0171877127, -0.00617724843, -0.0235304832, 0.00100305805, -0.0124802925, -0.00806418899, 0.0135594904, -0.00537943654, -0.00390960881, 0.0182735324, -0.00924932, -0.00468424754, 0.00756100472, -0.0200876426, 0.00115699263, -0.00616069604, -0.0013969983, 0.00211536, 0.0141818495, 0.00897124503, 0.00844819844, 0.0139037743, 0.0141023993, -0.0122220796, -0.00449555367, -0.000921125058, 0.00640897779, -0.0110965362, -0.0121293878, -0.0169626046, -0.0131887235, -0.00418768451, -0.0235569663, 0.00206239312, 0.0235304832, 0.00703133736, 0.00906393677, 0.0138905328, 0.00210377341, 0.00928242411, 0.00479018129, 0.0180484224, -0.0209483542, 0.000462217722, 0.0097591253, 0.00285358424, 0.00372091495, 0.00603821035, 0.0218355469, -0.00799136, -0.00685919542, 0.0180219393, 0.0028320665, -0.00246460945, -0.00904407445, 0.00395595469, -0.0178762805, 0.00338987261, -0.00385664217, 0.0245236102, 0.0242852587, -0.00836874824, -0.00121326977, -0.0111627448, -0.00845481921, -0.0183927063, -0.00671022618, 0.0278605148, -0.0143010253, 0.023225924, -0.000506908458, -0.012493534, -0.0179292485, -0.00607793545, 0.000362077466, 0.00427375548, -0.00340642477, -0.00207066932, -0.00232060603, 0.0288139172, -0.00223784568, 0.00628649211, 0.00870641135, -0.00680622878, -0.019875776, 0.0107721146, -0.00145493064, 0.0035024269, 0.0162343122, -0.00513777556, -0.0578397028, -0.00822971, 0.000464286742, 0.0140097076, 0.00255730143, 0.0204319265, 0.00289661973, -0.016525628, -0.00110402587, 0.00527350279, 0.0123081505, 0.00845481921, 0.0267349724, -0.0039923694, -0.0107985977, -0.0144599257, 0.0192931425, -0.0230935067, -0.0240071844, 0.0112024695, -0.000413802802, -0.00995113, -0.000419802935, -0.00357194594, 0.0103550013, -0.00677312445, 0.0109442566, -0.0269335974, -0.000128071973, 0.0039129192, -0.00675988244, 0.00989816338, -0.00280889357, 0.0130629269, -0.00549861183, -0.00398574863, -0.00519405305, 0.000628980284, 0.00356863532, -0.0136654237, -0.00106761127, -0.0106264558, -0.0147380009, 0.0098385755, -0.0169493631, 0.0114408201, 0.00911028218, -0.0331571922, -0.00518743182, 0.0107721146, -0.00885869, 0.00489942543, -0.0143539915, -0.0129702352, -0.0319389552, 0.00761397183, 0.000458493509, -0.00348587474, -0.000188073376, 0.0289463345, 0.0103152767, -0.0316476375, 0.0137183908, 0.0038102963, 0.0214250535, 0.0105271433, -0.0133012775, 0.0189753417, 0.00791853, 0.0162078291, -0.00829591881, -0.0138772912, -0.0148969013, -0.00514439633, 0.00935525354, 0.011752, -0.0170685388, -0.00593889784, 0.00627987133, -0.00484976871, 0.0152014596, -0.0103417598, -0.025212178, 0.0233715829, -0.0012819611, 0.0111097777, 0.0176246893, -0.000782501127, 0.0228816401, -0.0104675554, 0.0213853288, 0.0079052886, -0.0108052185, 0.00578992907, 0.0111230193, 0.0182073228, -0.00579986, -0.0240336675, 0.00645863404, 0.0272513982, 2.66902807e-05, -0.00821646862, 0.013969983, 0.00144086138, 0.0120168338, -0.00760073, -0.00255068042, -0.0200876426, 0.0375004672, -0.0124008423, 0.0282047987, -0.00462466, -0.00207232451, -0.0137581155, -0.00883220695, 0.00875937752, -0.00445913896, 0.00352228945, -0.00212860154, 0.0120300753, -0.0142215751, 0.00777949253, -0.0115533741, 0.0115335118, -0.0103285182, -0.00253081787, -0.00474714581, 0.00340311439, -0.0115864789, 0.0133343814, 0.00561116589, -0.0194652844, 0.00314655644, -0.00507156737, 0.00111230195, -0.024219051, -0.00768018, 0.0105734896, -0.0100570638, 0.0111097777, -0.0150160762, -0.00408837153, 0.00108581851, 0.0037010524, -0.00677312445, -0.00158900279, -0.0169626046, 0.0264701378, -0.00280889357, 0.0194917675, -0.0332896076, -0.0038102963, 0.015135251, -0.00135313522, 0.00251426594, -0.0341370776, 0.00615076488, -0.00258378475, -0.0202862695, -0.0219149962, 0.00259702653, 0.0107654938, -0.00961346645, -0.00534302182, -0.00429692818, 0.0303499531, -0.0144334417, -0.0204451699, 0.000879744766, -0.0125994682, 0.0106661813, 0.0220871381, 0.0105006602, 0.000576427323, -0.00239012507, -0.0191607252, 0.0141421249, -0.00879910309, 0.0143010253, 0.0124869132, 0.0143010253, -0.00769342156, -0.013797841, -0.00661753444, 0.0273573305, -0.0109442566, -0.00390629843, -0.0089778658, 0.0158767868, -0.0141950911, 0.0280988663, 0.0386392511, -0.0229081232, 0.0294230338, -0.0165918376, -0.000194073509, 0.011387853, 0.00514108595, -0.0111230193, 0.00259702653, -0.0106728021, -0.0195050091, 0.000862365065, -0.00179424894, 0.000988988671, -0.00632952759, 0.00104030024, 0.00872627366, 0.0045915558, -0.0144599257, 0.000956712116, -0.0240733922, -0.00292972382, 0.0181675982, -0.0150425592, 0.00977898762, 0.0195977017, 0.00250764494, 0.00771990512, 0.0078258384, 0.00705119967, -0.000550357741, -0.000333111268, -0.00717699574, 0.0344019085, 0.0119771082, 0.00139037741, -0.00290158531, -0.0306677539, 5.11305079e-05, 0.00978560839, -0.0230140574, 0.00920297485, -0.0134138316, -0.00475707697, -0.00507487776, -0.0215574708, 0.0158900283, -0.00695188716, 0.0131887235, -0.0270660147, 0.0159032699, -0.00444258703, 0.0116063412, -0.00142927491, -0.00538605731, 0.0191607252, 0.00375732942, 0.0131489979, -0.00628980249, -0.00163203827, -0.00101464451, -0.00536950538, 0.0110303275, 0.00898448657, -0.00352559984, -0.0472993143, -0.0174128227, 0.00166431488, 0.020100886, 0.00177935208, -0.00674333051, -0.0112752989, -0.0215045046, 0.00247123046, -0.00686581619, 0.00439293077, -0.0305088535, -0.0038036753, -0.00174790306, -0.000916987, -0.00460479781, -0.00949429162, -0.0266820043, 0.0157311279, 0.00303069176, 0.00674333051, -0.00647849683, -0.00638911547, 1.5595193e-05, -0.00405526767, -0.00681947032, -0.00238019368, 0.0145261334, -0.033501476, 0.0106132142, 0.0114209577, -0.0111693656, 0.00709754555, -0.016128378, 0.014936626, 0.00674002, -0.00413140701, 0.00506494613, -0.0075808675, -0.00851440616, -0.0133410022, 0.0214515366, -0.0147512425, -0.0207364857, 0.0044889329, 0.00322766183, 0.00376726082, -0.0101696178, -0.00985181704, 0.00263178581, 0.000922780251, -0.00134734192, 0.00628318172, 0.000270627032, -0.0410492383, 0.022855157, -0.0109641189, 0.0109574981, -0.00181411149, -0.0237555914, -0.0246692672, -0.000298972533, -0.000177624854, 0.0018058354, 0.000958367309, 0.00946780853, 0.00389967766, 0.0103417598, 0.00494246092, 0.00209880783, -0.0194255598, 0.00417113211, 0.00409499276, 0.0197830852, -0.00457500387, 0.00746831298, -0.0189223755, 0.023596691, -0.0169493631, -0.00637587346, -0.00544233434, -0.0203392357, -0.0113150235, -0.00450879522, -0.0131622395, 0.00877261907, -0.0120168338, -0.00167093577, -0.00344283925, 0.00891827792, 0.00971940067, 0.0132681727, 0.0216501635, -0.00435320567, -0.0155457435, 0.00264668278, -0.00134982471, 0.00623683585, 0.0126722967, 0.003542152, -0.0158900283, -0.00143010251, -0.00640235702, -0.0114341993, 0.0138640497, -0.0191474836, -0.00644870289, 0.00208060048, 0.00841509365, -0.00932877, 0.0428236239, 0.0041744425, -0.0231067482, 0.0018505262, 0.029131718, -0.0186178163, -0.02123967, 0.00100388564, 0.00902421121, -0.00797149725, 0.00595545, 0.0317006037, -0.0237291083, -0.00277413405, 0.0289198514, -0.0308531374, -0.0175982062, -0.00567406416, -0.00565420138, 0.019875776, 0.0126259513, 0.00709754555, -0.00679960754, -0.00911690388, -0.0111428816, 0.0245236102, -0.0135859735, -0.00822971, 0.000455183093, -0.00828929804, -0.0237820745, 0.011924142, -0.00344283925, 0.0118446918, 0.00355208339, -0.00688567851, 0.0256623942, 0.0104675554, 0.0217560958, 0.000910366187, -0.0125531219, -0.00545226596, -0.018313257, -0.0222857632, -0.000551185338, 0.0150955264, 0.00567737455, 0.0149498675, 0.00948105, 0.00572372042, 0.00938835833, 0.0137581155, -0.00998423435, -0.00410161354, 0.00920297485, 0.00619380036, -0.00658111973, 0.0143010253, -0.0207762122, -0.0243779514, -0.00816350151, -0.00493915, 0.0211867038, 0.00871965289, 0.00266323495, -0.00439293077, 0.0104609346, -0.00367787923, 0.00990478415, -0.0231862, -0.040969789, 0.00318131596, 0.0113679906, 0.00441610347, 0.018485399, -0.0208821446, -0.0135462489, 0.0119307628, -0.00989816338, -0.0238747671, -0.00405526767, -0.000779604481, -0.00610110862, -0.0038500214, 0.00881896541, 0.00150872499, -0.00475376658, 0.00752790086, -0.014963109, -0.00148472446, -0.00275592669, 0.00856737327, -0.000463045348, -0.000405112951, -0.0123677384, -0.00656125741, 0.000296489714, 0.0105139017, 0.0115666157, 0.0103682429, 0.0272249151, -0.00993788801, -0.014936626, -0.00711740833, -0.00980547164, 0.00765369693, -0.00924269948, 0.0264701378, -0.0100173382, -0.00767355924, -0.0159165114, -0.0146453092, -0.00724982517, 0.00833564345, -0.0153471185, 0.000830916048, -0.0012769954, -0.000876434322, 0.00581972254, 0.00717037497, 0.0107390108, 0.0154530518, -0.0178630389, 0.00530660711, -0.00330380164, -0.0106065935, -0.00472066225, -0.00536950538, -0.00121823547, -0.00850116462, 0.00245964387, 0.00702471659, -0.0043697576, 0.0118910372, -0.0197830852, 0.00694526639, -0.0091831116, 0.010844944, -0.00319290254, -0.00463459129, -0.0254240446, 0.0165653545, 0.0071240291, -0.0148439342, 0.0114805447, -0.0132284481, 0.0354877301, -0.00196142541, -0.00312669389, -0.00127865071, 0.00117437239, -0.00462797051, -0.00495239208, 0.0196639095, -0.0249605849, -0.00615738565, -0.0101497555, 0.0114937872, 0.0127517469, 0.013201965, 0.00857399404, 0.0247619599, 0.00689892052, 0.0368913487, -0.0160356872, 0.0309061036, -0.00453527877, 0.0271189809, -0.00180914591, 0.000662084494, 0.0066274656, 0.0147247594, -0.0269203559, -0.00223122467, 0.00193825236, 0.0137581155, 0.011414337, -0.00471735187, 0.0207364857, 0.00881234463, 0.0320448875, 0.00144168898, -0.00680622878, 0.0101431347, -0.00639242586, 0.00329221506, -0.0476436, 0.0109243942, 0.00844819844, 0.00475376658, 0.00852102693, 0.0203922018, -0.0284431502, -0.0112554366, 0.00346932281, -0.00167590135, 0.0112024695, -0.00138375664, 0.0150028346, -0.00229081232, 0.000541667861, -0.0140494332, -0.0224843901, 0.0498152375, 0.00792515092, -0.00714389188, -0.0125266388, -0.00641890895, -0.0233186167, 0.0149101429, 0.013969983, -0.0170155708, -0.0153736016, 0.0153868431, 0.00706444168, -0.00539929885, 0.00175948953, -0.00924269948]
05 Jun, 2023
unordered_set cend() function in C++ STL 05 Jun, 2023 The unordered_set::cend() method is a built-in function in C++ STL which is used to return a const_iterator pointing to past-the-end element in the unordered_set container or in one of it’s bucket. This function does not directly point to any element in the container. It is only used to denote the end of a container or the open end of a range as in [cbegin, cend). Note: A const_iterator can only be used to access elements, it cannot modify the elements present in the container. Syntax: unordered_set_name.cend(n); Parameter: This function accepts a single parameter n. This is an optional parameter and specifies the bucket number. If this parameter is not passed then the cend() method will return a const_iterator pointing to the position just after the last element of the container and if this parameter is passed then the cend() method will return a const_iterator pointing to the position just after the last element in a specific bucket in the unordered_set container. Return Value: This function returns a const_iterator pointing to the position just after the last element in the container or a specified bucket in the container. Below programs illustrate the unordered_set::cend() function: Program 1: CPP // C++ program to illustrate the // unordered_set::cend() function #include <iostream> #include <unordered_set> using namespace std; int main() { unordered_set<int> sampleSet; // Inserting elements in the std sampleSet.insert(5); sampleSet.insert(10); sampleSet.insert(15); sampleSet.insert(20); sampleSet.insert(25); // Here, the cend() method is used to // iterate in the range of elements // present in the unordered_set container cout << "Elements present in sampleSet are: \n"; for (auto itr = sampleSet.cbegin(); itr != sampleSet.cend(); itr++) { cout << *itr << endl; } return 0; } Output: Elements present in sampleSet are: 25 5 10 15 20 Program 2: CPP // C++ program to illustrate the // unordered_set::cend() function #include <iostream> #include <unordered_set> using namespace std; int main() { unordered_set<string> sampleSet; // Inserting elements sampleSet.insert("Welcome"); sampleSet.insert("To"); sampleSet.insert("GeeksforGeeks"); sampleSet.insert("Computer Science Portal"); sampleSet.insert("For Geeks"); // Here, the cend() method is used to // iterate in the range of elements // present in the unordered_set container cout << "Elements present in sampleSet are: \n"; for (auto itr = sampleSet.cbegin(); itr != sampleSet.cend(); itr++) { cout << *itr << endl; } return 0; } Output: Elements present in sampleSet are: Welcome To GeeksforGeeks For Geeks Computer Science Portal Time complexity: O(1) Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL
https://www.geeksforgeeks.org/unordered_set-cend-function-in-c-stl?ref=asr10
PHP
unordered_set cend() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.037143264, -0.0139940148, -0.00982990675, 0.0258116666, 0.0180347953, -0.0459938087, -0.0208640676, 0.023316104, -0.0192390513, -0.0221698862, -0.0259277392, 0.00766079826, -0.0165403597, -0.0307012293, 0.0153070875, -0.0202837046, 0.00477349, 0.0169321056, 0.0309914108, -0.0125938887, 0.00699700741, 0.0101491073, -0.020544868, -0.0235917773, 0.0102434158, 0.0291632675, -0.0358084291, 0.00369981746, -0.00447605364, 0.00119337253, -0.0144147789, 0.0101708705, 0.033806175, -0.0090536708, -0.00589069, 0.0466031916, 0.037752647, 0.0230839588, -0.0287134852, -0.0247525033, 0.00418224465, 0.0182234142, 0.0212703235, 0.0126301609, -0.0223149769, 0.00473359, 0.0194421783, -0.0539447889, -0.0136965793, 0.0123327244, -0.000238946537, -0.0135950157, 0.0264645759, -0.0050999443, 0.0283362493, 0.00107639295, 0.024114104, 0.0188618135, -0.0135732517, 0.0015570065, 0.000467918086, -0.0298887212, 0.0316878483, -0.0111502344, 0.0163227245, 0.0244042855, -0.0293228664, 0.0398129374, 0.0223585051, -0.021342868, -0.0225471221, 0.0234902129, 0.00875623431, 0.0246654488, -0.0408285744, -0.0280170478, -0.00719650742, 0.000727721432, -0.0204287954, 0.0111792525, -0.0263194852, 0.02688534, -0.0145671247, -0.0277413763, 0.0157423597, -0.0228808317, 0.00652546203, -0.0280895941, 0.0490407161, 0.0312815942, -0.00771883456, -0.00837174337, -0.0165838879, -0.0364468284, -0.0344445743, 0.0260583218, 0.0380138084, 0.019949995, -0.024317231, 0.0455295183, 0.0107947616, -0.00417861715, 0.0261018481, -0.00948168896, -0.00342777208, 0.0501434058, 0.0440205708, 0.0155827608, 0.00426204456, 0.0116870701, 0.0308173019, 0.0107657434, -0.00205122237, 0.0439335182, -0.0309914108, -0.0148137789, 0.00111447927, -0.0116725611, 0.0320360661, 0.0111212162, -0.00621714396, 0.00734885316, 0.0444268286, 0.0232725777, -0.0420183167, -0.00224165409, -0.00697161676, 0.020544868, -0.00269143586, 0.00811058, 0.00646742573, -0.042076353, -0.0045304629, -0.0261889044, 0.000751752115, 0.0263920315, 0.019384142, 0.0294389389, -0.00650007138, -0.0127825066, -0.029656576, -0.00125866337, -0.014429288, 0.00336429477, -0.050433591, -0.0329936668, -0.00606117165, 0.0314266831, 0.00714935316, -0.0187602509, -0.0187457409, 0.0224310495, 0.0286989752, -0.0141681246, 0.00514347153, -0.0503755547, 0.0375785381, -0.00276035396, -0.0134209059, -0.0195147227, 0.0252458137, 0.0084225256, -0.00991696119, -0.0240560677, -0.0203562509, 0.0335740298, 0.0430049375, -0.0176865775, -0.0410026833, 0.0486344621, 0.0291342493, 0.00946718, 0.00413509, -0.00760276197, 0.00240306766, -0.0213138498, 0.0170191601, 0.0194131602, 0.0520876236, 0.022140868, -0.00416773558, 0.00993147, 0.0091769984, -0.00716748927, 0.0134789422, -0.00831370708, 0.0467482805, -0.00661251694, 0.0406834818, 0.0194566865, 0.00140194059, -0.0242011584, 0.0294969752, 0.0467482805, 0.0493889339, 0.0211107228, -0.0275092311, 0.0123327244, -0.0213138498, 0.0439625345, -0.0128115248, -0.000444340811, 0.0305561386, -0.00769707095, 0.0325003564, 0.0245493762, -0.00491495337, -0.0131524885, 0.0128840702, -0.00768981641, -0.0170481782, 0.000842887326, 0.0277703945, 0.0250426847, -0.0204287954, 0.0317749, -0.0645364225, 0.000568574877, -0.0238964669, -0.0140520511, -0.00587618072, -0.0249991585, 0.0367950462, -0.0511010066, -0.0400450826, -0.0361856669, 0.0245493762, 0.0229823943, 0.0114766881, -0.0118249068, 0.013254052, 0.0123762516, -0.030440066, -0.00737424381, 0.0236643218, -0.02768334, -0.0345316306, -0.0231710132, -0.00411695382, 0.0322682112, 0.00296166749, 0.0459647886, -0.0395517722, -0.00469731726, 0.00779863494, 0.0461679175, 0.00312489481, -0.0382459573, 0.00768981641, -0.0129058333, -0.0178171601, 0.0338351913, 0.0240560677, -0.000774422544, -0.00948168896, 0.024099594, -0.012064307, -0.0151474876, -0.00491495337, -0.0222279225, 0.0242882129, 0.0497661717, -0.0166854504, 0.00215097237, 0.00581451692, 0.0156117789, 0.00619900785, -0.00768981641, -0.0239399951, -0.0717909634, 0.0395517722, -0.0237949044, 0.0346767195, -0.0242591947, 0.00756648928, 0.00748668937, -0.0232580677, 0.0130799431, 0.000232598817, -0.0258551948, -0.0127825066, -0.0366499573, 0.00728718936, -0.00368530839, 0.0313976668, -0.0271029752, -0.0337191187, -0.0135007063, -0.0103449794, -0.0203562509, -0.0152055239, 0.00688818935, 0.00963403471, 0.00428743567, 0.028858576, 0.0420183167, -0.0229969043, -0.0388263203, -0.0339512639, -0.0221989043, 0.00185625639, -0.0347347558, 0.00570207136, -0.0211252328, -0.0202401783, -0.0146541791, 0.0115347244, -0.0186441783, 0.0278864671, -0.0192970876, 0.00354747195, -0.0475898087, -0.00190431776, -0.00114893843, 0.0159309786, -0.0361276269, 0.0125140883, 0.0140883243, -0.0264935941, 0.0024901221, 0.00125050195, -0.0299177393, 0.020167632, 0.0178026501, 0.0245058499, -0.0268127937, -0.016395269, 0.0369111188, -0.0217781402, -0.042714756, -0.016612906, 0.0130944522, -0.0330226831, -0.0143567426, -0.0280605759, -0.0137328515, -0.0156698152, -0.0160760693, 0.0192535594, 0.0199935231, -0.000676032796, -0.00295441295, 0.00579638081, 0.00240125414, -0.00309769018, 0.00289456313, 0.0174399242, -0.0189778861, -0.000848328229, 0.0313106105, 0.00120153383, -0.0242156684, 0.000123667298, -0.0390294455, 0.0501434058, 0.0130799431, -0.0251877774, -0.0305561386, -0.0103667434, 0.0116507979, -0.00500200782, 0.0471255183, 0.00810332596, 0.0196888316, -0.0119627425, -0.00997499749, -0.0180638134, -0.00877799839, 0.0151474876, -0.0182379242, -0.00139559293, -0.0313396305, 0.0176865775, -0.00309406291, -0.0248105396, -0.0189488679, 0.0163807608, 0.0456165709, 0.00420400826, -0.0142624332, 0.00250281766, 0.0340673365, -0.0019859313, -0.00539375329, 0.00641301693, -0.015814906, -0.0143785058, 0.047618825, 0.00936561637, -0.0232870858, -0.033225812, 0.0072980714, -0.0153506147, -0.0197178498, -0.00716023473, -0.0065435986, -0.0197323598, -0.0420473367, -0.0362727195, -0.0515652969, 0.0118756881, -0.0172658153, 0.0242591947, -0.0271465033, -0.01424067, 0.00034685788, -0.00937287, -0.0254199225, -0.00442164438, 0.0374624655, 0.00607568072, -0.0266677029, 0.00441076281, -0.00469006272, 0.0202837046, 0.0241866503, -0.0135805067, 0.00964854378, -0.0115202153, -0.0121078342, -0.0162937064, -0.0288295578, 0.00341507653, 0.0175269786, 0.0274366848, 0.0144510511, -0.0224165414, 0.00307774032, -0.00754472567, 0.00738875289, -0.0342704654, 0.00647830777, 0.0178751964, 0.0301789027, 0.00244115409, -0.0760276169, 0.00965579785, -0.0217491221, -0.0262614489, -0.0191374868, 0.0137618696, 0.0249701403, 0.0225906502, -0.0311655216, 0.0125576155, 0.0280460659, -0.0136748152, -0.0021636677, 0.000900016865, 0.000925407745, -0.0380138084, -0.00600313488, 0.030440066, 0.0029562267, 0.0333709, -0.0147484876, 0.00696798926, -0.0293954127, 0.0430919901, 0.0332548283, 0.0105118342, 0.020951122, -0.00642027147, 0.00418587169, 0.0368821025, 0.0119627425, 0.0195147227, 0.00282201753, -0.0207334869, -0.00438537169, 0.0145526147, -0.0328775942, 0.0295405034, 0.0205158498, 0.0380428284, 0.0130001428, -0.00214371784, -0.00811783504, -0.0445429, -0.0229823943, 0.012049797, -0.0210381765, -0.0234321766, -0.00469731726, -0.00604666257, -0.00207842677, 0.00310494471, -0.024708977, -0.032239195, 0.00111810653, -0.0125140883, 0.0109543614, -0.0416120626, -0.0398709737, 0.0219522491, 0.00811783504, -0.0517974421, -0.00420038076, -0.00563678052, -0.00453409, 0.038768284, -0.022343995, -0.038739264, 0.0202256683, 0.0312525742, -0.0609962046, -0.0245929044, -0.00183449278, -0.0324713401, 0.000616182806, -0.00220900867, 0.0355182476, -0.00373609015, 0.0168305412, 0.0130581791, -0.00170481787, 0.0144728152, 0.0396098085, -0.0557148978, 0.00210744492, 0.0268127937, -0.00852408912, -0.00334253116, 0.049214825, 0.0109325973, 0.0362727195, -0.0167289786, -5.72712233e-05, -0.00412420835, -0.0392906107, 0.0218361765, 0.00100203382, -0.011469434, 0.0060321535, -0.019384142, -0.003950099, 0.00177282922, 0.0134571791, -0.0184555594, -0.00847330689, -0.038739264, 0.0133048333, -0.00790019799, 0.0161776338, -0.0383910462, 0.0129203424, 0.00369074917, 0.00883603469, -0.0194711965, -0.00013092185, 0.0244768318, 0.0336901024, -0.0161631238, -0.0146614332, -0.00820488948, 0.0180057772, -0.00549531681, -0.000143617304, 0.0226631947, -0.024897594, 0.0175414868, 0.0270449389, 0.0528711155, -0.00170844514, -0.01424067, -0.00632596249, 0.0201095957, -0.00332620833, -0.0256520677, 0.0166564323, 0.0132177789, -0.0369111188, 0.0289746486, 0.00889407098, 0.018571632, 0.0297726486, 0.00919150747, 0.0195292328, -0.0126229068, -0.0115927616, 0.00297980383, -0.0223004688, 0.00342051755, -0.0316588283, -0.00223802682, 0.00795098, -0.0249266122, -0.00890132505, -0.0272625759, -0.0105045792, 0.00334978569, 0.00485691708, 0.0221698862, -0.000890495256, 0.00938012544, -0.00649644388, -0.00934385229, -0.00106007024, -0.0329936668, 0.00324459467, 0.0179332327, 0.00863290764, -0.000512805593, -0.0373173729, -0.0155827608, -0.0123327244, 0.0335740298, -0.0052776807, 0.00747943483, -0.0184845775, -0.0329936668, 0.0140738152, 0.0192825776, 0.00126773154, 0.00943816174, 0.00725454371, -0.000365901069, 0.0204142872, -0.0271610133, 0.0253909044, -0.0256520677, 0.00249374937, -0.00874898, 0.0132177789, 0.013645797, 0.0343575217, -0.0158729423, -0.0139940148, -0.0148065239, -0.0207334869, 0.0123254703, -0.0257681403, 0.0045268354, 0.00759550743, 0.00220900867, 0.0289891567, -0.0044687991, 0.0198194142, -0.0105118342, 0.0206319224, -0.0055388445, 0.0227067228, 0.00871996209, 0.0456455909, 0.00082611118, 0.00845879782, 0.0133628696, 0.0520586073, 0.0131815067, -0.00141735654, -0.0198919587, 0.0076680528, 0.0174689423, 0.0016068815, -0.0131887607, -0.0267692674, 0.0149298515, 0.0169611238, 0.0045304629, 7.70795305e-05, 0.00195691315, -0.0521166436, 0.00975736137, 0.0147629967, 0.00696798926, -0.0116798161, -0.0294824671, 0.00301244925, -0.0143494876, 0.00620626239, -0.0515362807, -0.0104537979, 0.0123907607, 0.0279880296, -0.0054735532, -0.0250281766, -0.0324423201, 0.0424826108, 0.00964854378, -0.0116798161, 0.00988794304, -0.0201386139, -0.00606842618, -0.0303239934, -0.0258261766, 0.00545541709, 0.0139940148, 0.0137183424, 0.0256375577, -0.0271900315, -0.0140665611, -0.0123689976, 0.0347927921, 0.031020429, 0.00541914441, -2.73745682e-05, 0.00910445303, 0.00597774424, 0.00203308603, 0.0122166518, 0.0200515594, -0.00393196288, -0.0257826485, -0.0187312327, 0.00693897111, 0.0248250496, 0.00335341296, 0.0110341609, -0.00516523514, 0.00811783504, 0.000439806725, 0.003607322, -0.0348798484, 0.0116290338, -0.000816589629, 0.00569844432, 0.0139432335, -7.49258397e-05, -0.00504916254, -0.0635498, -0.00673584407, -0.00805254374, -0.0211542509, 0.00531032635, 0.0383910462, -0.0151329786, -0.0110921981, -0.0175124686, 0.00520876236, 0.00189706322, -0.0151765058, 0.0127172153, 0.011280816, 0.0103522344, -0.0264500678, -0.00230513141, 0.0125721246, -0.050433591, -0.00726542575, 0.00448330818, -0.0113315973, 0.000343003892, -0.00233414955, 0.00734885316, 0.00182270422, -0.0185426138, 0.0137546156, 0.00355654024, -0.0370271914, 0.0331387557, 0.0203127228, 0.05374166, 0.0260583218, -0.0083644893, 0.00913347118, -0.0232870858, 0.0291632675, 0.0109688705, 0.00626429869, 0.00631870795, 0.0334579572, 0.00798725244, -0.0126229068, -0.000837446423, -0.0137038333, 0.0160470512, -0.0132685611, 0.00879976153, 0.0242882129, 0.0142261609, -0.00115165883, -0.0261598863, 0.0178897046, 0.0137183424, -0.00549531681, -0.0191084687, 0.00604303507, 0.0109688705, 0.0354892276, 0.0109616155, -0.0143349785, 0.0332838483, 0.0271465033, -0.00136748154, -0.00227974053, -0.0123980157, 0.00914072525, 0.0100693069, 0.0273641404, -0.0310784653, -0.016598396, -0.00679750787, 0.0347347558, 0.0273351222, -0.0112155247, -0.0337191187, -0.0255359951, -0.0221843962, -0.0395227559, -0.0300628301, 0.0338351913, -0.00362001732, -0.0219667591, 0.000872812292, 0.0269578844, -0.0208640676, -0.000484240794, 0.0089883795, 0.00941639766, 0.0307592656, 0.00620988943, -0.00843703467, -0.00928581599, 0.0190069042, 0.0227792673, 0.0133556155, 0.0013439043, 0.00964128878, -0.00890858, -0.00487142615, 0.0291922856, -0.00583990803, 0.00827018, -0.0132975793, -0.0865902379, 0.0197613779, 0.0326744653, 0.0149298515, 0.00039401243, -0.00552796246, -0.0219812673, 0.020182142, -0.0151619967, 0.0286119208, -0.000652002112, 0.0229969043, 0.00159327919, -0.00564040802, 0.000483787386, 0.0430339538, 0.000483787386, 0.0149298515, -0.0180493053, -0.0171062145, 0.00730532594, -0.0090536708, -0.0254344307, 0.0106279068, -0.0181073416, -0.00203852681, -0.00224528136, 0.00133120886, -0.0199064687, 0.0148863243, -0.00225797668, 0.0279445034, -0.0313976668, -0.0349669, 0.00409881724, 0.00666692574, 0.00552070793, 0.0129493605, 0.00864741672, 0.035373155, 0.0189778861, 0.0508398451, 0.0189923961, -0.0155972699, 0.00332802208, -0.020167632, 0.0161195975, 7.04484191e-05, -0.0171352327, -0.0134209059, 0.0169756319, -0.00946718, 0.016598396, 0.0283507574, -0.00681564398, -0.0368821025, 0.0101418523, -0.0190794505, -0.0231565051, -0.0467482805, -0.00971383415, -0.00863290764, 0.00307048578, -0.0107077071, -0.0341543928, -0.0395227559, 0.0359245, -0.000707318, -0.0266677029, 0.00504190801, 0.0219522491, 0.0197903961, 0.00687005324, 0.00114440429, 0.00360369473, -0.0251442492, 0.000407387968, -0.0218797047, -0.00457399, -0.0160470512, 0.0127534885, -0.0151039604, 0.0313976668, 0.00206754496, 0.0224455595, 0.0153215965, 0.0328195579, -0.0333999209, -0.0411477722, -0.0429178812, -0.00789294392, 0.00394647196, -0.0262614489, 0.00369619019, 0.0330517031, -0.0198194142, 0.0230839588, 0.0100402888, -0.0229823943, -0.00680113491, 0.0151184695, -0.0122021427, 0.00609744433, -5.14619205e-05, -0.035982538, 0.00804529, -0.0289746486, 0.00606842618, 0.0212703235, -0.00184446783, 0.00541189, -0.0101055801, -0.0125576155, -0.0269723944, -0.0500853695, -0.0024901221, 0.00819763448, -0.00604666257, 0.000167874678, 0.0246074125, -0.0102651799, -0.00310857198, -0.0315717757, -0.00413509, -0.00624616211, 0.00636948971, -0.0154811963, 0.00616998971, -0.0189923961, -0.0242737047, -0.0190649405, -0.0387973, -0.0189488679, -0.00386667182, -0.0217491221, 0.0166999605, 0.0286989752, -0.00862565264, -0.0084225256, -0.00503102643, 0.0443687923, -0.00365447649, 0.0150023969, -0.0214444324, -0.0242737047, 0.0033026312, 0.0291197393, -0.00520876236, 0.0374334455, 0.0404513367, 0.0193115957, 0.0295695215, -0.00444340799, -0.0123109613, 0.00272770855, -0.00479525374, 0.0319780298, 0.0265806485, 0.00212195399, 0.0124125248, 0.0286119208, 0.0141100883, -0.0017147928, -0.0186877046, -0.0270014126, 0.0128840702, -0.00325729023, -0.0143712517, 0.0226777047, -0.00840801653, 0.0265661404, 0.0558019504, 0.0296275578, -0.0196598135, 0.0141971428, -0.0131742517, -0.00314121763, 0.0149878878, -0.0223294869, 0.0253183581, 0.006920835, -0.0222714506, -0.015408651, 0.0423955545, -0.0195582509, -0.0220828317, 0.00626429869, -0.0180202872, 0.00253002229, 0.00812508911, 0.0156407971, -0.000463837408, -0.00385941728, -0.00491858087, 0.0139649967, 0.00315391296, -0.00985167082, -0.0263630133, -0.0338351913, 0.00849507097, 0.0033878719, 0.0192970876, 0.0142189059, 0.0053973808, -0.0169611238, -0.000146451101, 0.000839713437, -0.0306431931, 0.0151329786, 0.0170626864, -0.0139722517, -0.0300047938, 0.0076680528, -0.016395269, 0.0037179538, -0.0104537979, -0.00275309943, -0.0053973808, -0.0221843962, -0.011280816, -0.0168740693, 0.0164533053, 0.00588343525, -0.0113678705, -0.0104102707, -0.0104465429, 0.00528856274, 0.00877799839, -0.0101128342, 0.02530385, -0.000391972077, -0.00554247154, 0.0299467575, -0.0297146123, 0.00253364956, -0.0011217338, -0.00416048104, -0.00978637952, 0.0151765058, -0.0339802839, -0.00541189, 0.0303239934, 0.0135587426, -0.0167725049, 0.0216765776, 0.0101128342, 0.00848781597, 0.00486417161, 0.00350938551, -0.0145526147, -0.0163372327, 0.00360369473, 0.00720013492, 0.0115637435, 0.0478509702, -0.0362146832, -0.0130654341, 0.0124197789, 0.0220683217, 0.0247525033, 0.0249556303, 0.00435635354, 0.00400813529, -0.0309333745, -3.61593666e-05, -0.0108310338, 0.000140330085, 0.00177917688, 0.0140883243, 0.017396396, 0.00687730778, -0.0102869431, 0.00926405285, 0.0479380265, -0.0102216527, 0.0107512344, -0.0279445034, 0.0321811587, -0.00120878837, 0.00969207101, 0.0135805067, 0.0140520511, 0.00366535829, 0.0247815214, 0.0306722112, 0.00391745381, 0.0391165, -0.00346223102, 0.00423665345, 0.0211542509, -0.0230549406, -0.0214154143, -0.00671045296, -0.0223149769, -0.00740326196, 0.00138743152, -0.010279689, 0.0217926502, 0.00865467079, 0.0185281057, -0.0511300266, -0.0136240339, 0.00485329, 0.0189923961, 0.00661977148, 0.00681927148, -0.016003523, 0.00610832591, 0.00906818, 0.0236062855, 0.0226922128, 0.00816136226, 0.0203707591, 0.000648374844, -0.00827018, 0.0016068815, 0.00938737951, -0.00259531313, -0.0100330338, -0.0151329786, -0.0259567574, -0.000975736184, 0.0106641799, 0.00178552466, -0.00688093482, 0.0149298515, -0.0210962147, -0.00185534963, -0.0111719975, 0.00886505283, -0.0321811587, -0.00556423515, -0.0126301609, -0.00370525825, -0.0164242871, 0.0120933251, 0.00381951733, 0.00948168896, 0.00268599484, -0.0132830702, -0.00221444946, 0.0140665611, 0.00762452558, -0.00190975866, 0.000484240794, 0.025710104, 0.00357286283, -0.0119772516, 0.00693897111, 0.0271319952, -0.00575285312, -0.0213283598, 0.00669231685, 0.0250426847, 0.0333709, 0.00832096208, 0.0239545032, 0.00274221762, 0.0238239225, -0.0245348681, 0.00424390798, -0.011266307, 0.00877799839, -0.0158584323, -0.0103014521, -0.00623528054, -0.0014073815, -0.0110631799, 0.0028256448, 0.0099242162, 0.0327034853, -0.0207915232, 0.0127825066, 0.00239581312, 0.0137546156, 0.01542316, -0.000754472567, -0.00512896245, -0.0278574489, 0.0143567426, -0.00517611718, -0.0052776807, 0.0282346848, 0.0101563614, -0.00129493605, -0.00412783539, -0.0186877046, -0.0183685049, -0.00226885872, 0.00106732477, -0.0146831973, -0.0194566865, -0.024708977, -0.0197903961, 0.00267148577, 0.00315028569, 0.0258406848, -0.0535965711, 0.0226922128, 0.000509631704, 0.0319780298, 0.0199935231, 0.022735741, -0.00771883456, -0.00649281684, -0.00412420835, -0.015220033, 0.00206573145, -0.00429106271, -0.0042729266, 0.0374624655, -0.0291922856, -0.00753747113, 0.0192535594, 0.0247234851, -0.020544868, -0.0390004292, 0.00977187, -0.0108092707, 0.00873447116, 0.015031415, 0.0281476304, -0.00132758159, -0.0194857046, -0.0307012293, -0.00748668937, 0.0109035792, 0.00788568892, 0.00160416099, 0.00343502662, 0.00984441582, 0.0151329786, -0.0548733696, 0.0114186518, 0.018586142, 0.0357503928, 0.00775510725, -0.011469434, -0.0151910149, 0.0210381765, -0.0246799588, 0.00190975866, 0.00267511304, 0.0162646882, 0.00408068113, 0.0199935231, -0.00888681598, 0.0175559968, 0.014044797, 0.0138997063, 0.0184700694, 0.00876348931, 0.021560505, 0.0034023812, 0.00786392577, -0.00805254374, 0.00928581599, -0.0123544885, 0.0244478136, -0.00242301775, 0.00467555365, -0.00630057137, 0.00699700741, -0.00223621307, 0.0109688705, 0.00532846246, -0.00840801653, 0.0122964522, 0.0253183581, 0.0106424158, -0.0284233037, -0.0151329786, 0.00609744433, -0.0146686882, 0.0318039209, -0.0266096666, -0.0232435595, 0.021545995, -0.0152780693, -0.00217817677, -0.0188618135, 0.009684816, 0.00710219843, -0.00151075877, -0.0106061436, -0.00243208581, -0.00656536222, -0.0169321056, -0.00680113491, -0.0121150883, 0.0137328515, 0.000845607778, -0.0045304629, 0.0251877774, 0.0217491221, 0.000282700523, -0.020951122, -0.00748668937, 0.0360695906, 0.0273061041, 0.0162211601, -0.00661977148, 0.0141318515, -0.0268998481, 0.00941639766, 0.00752296206, 0.00506367162, -0.0119699975, 0.00320832198, 0.0248540677, -0.0169030875, -0.0343285, -0.00675398, -0.00956874341, -0.0138126519, -0.0010972498, -0.0219812673, 0.0256230496, -0.000204374111, 0.0123254703, -0.0152345421, 0.000643387379, 0.00451595336, -0.00146632467, -0.022140868, 0.00051371241, -0.0278429389, 0.00571658043, 0.0105045792, 0.0225326139, 0.00118793151, 0.00353114936, -0.0247379951, -0.00626792572, 0.0163372327, -0.00852408912, 0.0284523219, -0.00106007024, -0.00680113491, -0.0170336682, -0.00503828097, -0.0256230496, -0.00433459, 0.0290036667, 0.0275092311, -0.00773334363, 0.000256402796, -0.0182814505, -0.00988068897, -0.00408068113, 0.0103377253, 0.0164242871, -0.00532846246, -0.0107077071, 0.0466902442, -0.044310756, 0.0204868317, 0.00871270709, -0.0196017772, 0.00566217164, 0.0245348681, 0.0223730132, -0.00212014047, -0.000582177134, -0.0162356701, -0.00589069, 0.00737787131, 0.0234611947, 0.0169030875, 0.00541551691, -0.0428888649, 0.0394647196, -0.00868368894, -0.00949619804, 0.025100721, 0.0272480678, 0.00686279871, -0.00366717204, 0.00821939856, 0.00567668071, 0.0042656716, -0.00143277238, -0.0211397409, -0.0170191601, -0.00932934321, -0.0318329372, 0.0249411222, 0.025100721, -0.0287134852, 0.0131379794, -0.00283289934, -0.000603034, 0.0181508698, -0.00189524959, -0.0333128646, -0.0403642841, 0.0194276683, 0.00101472938, -0.0182669424, 0.00074721803, 0.0233741403, -0.0367079936, 0.0204142872, 0.0304690842, -0.0145743787, -0.00532483542, -0.00424390798, 0.00947443396, 0.0166274142, 0.012260179, 9.1248563e-05, 0.0166564323, 0.0125793796, -0.00850232504, 0.0392325744, -0.0170046501, -0.0113678705, 0.00137654971, 0.00880701654, 0.00153161562, 0.0196017772, -0.0148718152, 0.00639850786, -0.0259132311, 0.00474809902, 0.00470457179, -0.0127534885, -0.00976461638, 0.00214553135, -0.00229243585, 0.017410906, 0.0131379794, 0.0259132311, -0.004642908, -0.0105190882, 0.0156988334, 0.0264790859, -0.00640938943, -0.0131307244, -0.00379049918, -0.0039537265, 0.0390874818, 0.0485764258, -0.0122891972, -0.00298161758, -0.0169030875, -0.00447242614, 0.0407415181, -0.002520954, 0.000546811265, -0.0235772673, -0.0196743235, -0.00700426195, -0.018571632, -0.0321811587, -0.0207334869, -0.001160727, -0.00639850786, 0.0163227245, -0.00763903465, 0.0155247236, -0.0102506708, -0.0127172153, 0.0069172075, 0.0258116666, 0.0278574489, 0.00885054376, 0.0156262871, 0.0130291609, 0.00180728827, -0.0110921981, 0.00196235417, 0.0187167227, 0.01424067, 0.0140738152, 0.0115492344, 0.0223004688, 0.0192680694, 0.0163227245, 0.0179187227, -0.0291197393, 0.0450362079, -0.0162791964, 0.0226051584, 0.0111357253, -0.0217636321, -0.0123762516, 0.00839350745, 0.0228808317, -0.00186985871, 0.0298306849, 0.00512896245, -0.000441393669, -0.00614459859, -0.00895936135, -0.00814685319, -0.0272335578, 0.0369111188, -0.0540028252, 0.00712396204, 0.00331169926, -0.0139940148, -0.0104247797, 0.00969932508, -0.015220033, -0.0318329372, 0.00473721698, 0.0314266831, 0.0405093729, -0.0189488679, -0.00832096208, -0.0128405429, 0.0209656321, -0.00582539896, -0.0112445429, 0.0146977063, 0.00222351775, -0.00799450744, -0.00127679971, 0.0174544323, 0.0018589769, 0.0139069604, -0.00839350745, -0.00164496782, -0.00565854413, -0.00651458045, -0.0091189621, -0.00420400826, -0.00698975287, 0.00440350827, 0.0190939605, 0.0297726486, -0.00780588947, 0.0161486156, -0.0156553052, 0.0158729423, 0.0172367971, 0.0249846485, 0.0404513367, 0.0131162154, -0.00329719018, -0.0153506147, 0.00887230691, -0.0153215965, -0.000912712305, 0.00433459, -0.0038340264, 0.0177301057, 0.0154521782, 0.0133048333, 0.00851683412, -0.00408068113, -0.0161776338, 0.0170336682, 0.024317231, 0.014617906, 0.0334289372, -0.00806705281, 0.0107222162, -0.0194566865, 0.00211469945, 0.0010083816, 0.00570207136, 0.0011969998, 0.0205158498, -0.00623528054, 5.66761228e-05, 0.00457761716, 0.0190649405, 0.00606842618, 0.00460663531, 0.000583990768, -0.0100620529, -0.0211687591, -0.00645654416, -0.0200660676, -0.00208568131, 0.0202691965, -0.00617724424, 0.0052813082, -0.0109325973, 0.00716386223, 0.00975736137, -0.00774059817, -0.00970658, 0.00983716175, -0.00254997215, 0.0117596155, -0.00126229064, -0.00918425247, -0.0141173424, 0.00814685319, 0.0144002698, 0.0113968886, -0.00935836136, 0.015408651, 0.0227792673, -0.003114013, 0.0148427971, 0.011658052, 0.00231057219, -0.0216910858, -0.0146614332, -0.00556786265, -0.00187711325, -0.0067177075, 0.0055388445, 0.0068591712, 0.00395735353, 0.00216729497, -0.00266060396, -0.00844428875, 0.00439262623, 0.0030450949, 0.0372593366, -0.00815410726, 0.0393776633, 2.61702e-05, -0.00643115304, -0.0114984522, 0.020762505, 0.00706229871, -0.0228082854, 0.00802352559, 0.00482427189, -0.0232145414, 0.00946718, 0.00306867203, 0.0132105248, -0.00296166749, 0.00964854378, -0.00944541581, 0.0207770132, -0.000550891913, 0.0104320338, -0.0122166518, 0.0178606864, 0.015016906, 0.0132105248, 0.00931483414, 0.0160905793, 0.000783037336, 0.00146088377, 0.0209075958, -0.0325003564, 0.0295985397, -0.00315754022, 0.0173818879, 0.00277667679, 0.0135587426, -0.0120788161, -0.0143712517, -0.00766079826, 0.00418949919, -0.00989519805, 0.00529944431, -0.017991269, -0.033225812, -0.0222279225, 0.010272434, 0.00219268585, 0.0153070875, -0.0114331609, 0.00131579291, 0.00554972608, -0.00615548063, -0.0217201039, -0.0238674488, -0.0194857046, -0.0195147227, -0.00325729023, -0.0127825066, 0.00313214934, -0.0126229068, 0.0207189769, 0.033777155, 0.0290762112, 0.00598862581, -0.0439335182, -0.000549531716, 0.00237767678, -0.0120352879, -0.0149008334, 0.0160760693, 0.0042112628, -0.00023962665, -0.00606479868, -0.00734522566, 0.0100547979, 0.00175015873, -0.0291777756, -0.0208060313, -0.0223149769, 0.00082611118, -0.00267329952, -0.0182089061, 0.00641301693, 0.0166274142, -0.00143549289, 0.0144510511, 0.00371432654, -0.00679750787, -0.00136204064, -0.0117813796, 0.012855052, -0.021545995, 0.0184120331, -0.00589794433, 0.00119065202, -0.00857487135, 0.00753747113, 0.0113315973, -0.00813959818, 0.0102579249, 0.00293809036, -0.0124778152, -0.0170771964, -0.0165403597, 0.00827743486, 0.0023323358, 0.0130654341, 0.00837174337, 0.0105045792, 0.00162501785, 0.0135659976, -0.0122021427, -0.0218942128, -0.00896661635, -0.0274366848, 0.0235627592, -0.00408793567, -0.0217636321, 0.0152780693, 0.0275382493, 0.0171352327, -0.00713484408, 0.0102289068, -0.0240560677, -0.0195582509, 0.0139142154, 0.0292067938, -0.00867643487, 0.0174254142, 0.00759550743, -0.0194421783, -0.0139795057, 0.0157133415, 0.00930032507, 0.0138851972, 0.0297436304, 0.00406254455, 0.0244913399, 0.00113896339, -0.00266967225, -0.00157967699, -0.00504553551, 0.00510357181, 0.0191519968, -0.0218942128, -0.0179042146, -0.00998950657, 0.00786392577, -0.00404440844, -0.00103558612, 0.0142987063, 0.00218180404, 0.0100185247, 0.01542316, -0.00663065305, 0.00543728052, 0.0126809431, 0.00381951733, -0.00720376195, 0.0172658153, 0.0172948334, 0.0177010875, -0.0115347244, -0.0161631238, -0.0171497427, 0.00940188859, 0.0143857608, -0.00420400826, -0.0107222162, -0.0269723944, 0.0160470512, -0.0105118342, -0.0141318515, -0.02688534, -0.0228518136, 0.0198629405, 0.00831370708, 0.0139069604, -0.00429831725, 0.0175705049, -0.0155682517, 0.0197468679, 0.00531758089, -0.00635498064, 0.00456310809, -0.00449781725, -0.0389133729, 0.00657624425, -0.0120207788, -0.0104465429, 0.0182814505, 0.0082411617, 0.00129765656, -1.04284072e-05, 0.00795823429, -0.0119772516, -0.000899110048, -0.0161921419, 0.00199318584, 0.0157858878, -0.0206029043, -0.0115492344, 0.0101998886, -0.00541914441, -0.0228953399, 0.00118702475, 0.00217092223, 0.00413509, 0.0181798879, -0.00551345339, 0.0104900701, -0.00184265419, -0.0026406541, 0.00368893566, 0.0148863243, -0.0148863243, 0.0176430512, 0.0280170478, -0.00944541581, -0.00278937211, -0.0126881972, 0.00307955383, -0.0140955793, 0.00983716175, 0.0187167227, 0.0172222871, 0.00898112543, -0.00411695382, -0.0322682112, 0.0117305974, -0.000595326, 0.0200370494, 0.0195147227, -0.0151910149, 0.0124197789, -0.00570932589, -0.0221698862, 0.0063440986, -0.00472996244, 0.0112372888, -0.00190613139, -0.0171642508, 0.0108165247, -0.0045268354, 0.00768981641, 0.0102579249, -0.00230694492, 0.0144365421, 0.00931483414, 0.00522327144, 0.0266967211, 0.00225072214, 0.0176865775, 0.0217201039, -0.00211651321, 0.00185172237, 0.0238674488, -0.020544868, 0.00635498064, 0.0121803796, -0.0213718861, 0.0149443606, -0.0214444324, 0.0175559968, 0.0115057062, 0.00536110811, 0.0172658153, -0.0129638696, 0.0123835066, 0.000336202764, -0.00626792572, 0.00920601655, 0.00742865307, 0.0197033416, -0.00387392635, 0.0274511948, -0.00129040203, 0.0100983251, 0.0107004521, -0.0300628301, 0.0151619967, 0.00158874516, -0.00440350827, 0.00746492576, -0.00100384746, -0.0134716881, -0.00321557652, -0.0129421065, 0.0145235965, 0.00531758089, -0.0180057772, 0.00408793567, -0.00171660644, -0.00845154375, -0.0120425429, 0.0258551948, 0.0216475595, -0.0206029043, 0.00196235417, 0.015016906, 0.0183539968, 0.00332439481, -0.0110994522, 0.00804529, 0.0131017063, -0.0248685759, 0.00339331292, -0.0241576321, -0.0158874504, 0.000218203073, 0.00852408912, -0.0244478136, 0.0266967211, 0.0103522344, 0.0331387557, -0.00127498608, 0.00529219, 0.000269098236, -0.00755198, -0.00242664502, -0.00147448608, -0.0198484324, -0.0143132154, 0.00467918068, -0.000767621445, 0.0010138225, 0.00512170792, -0.0181363598, -0.000312625489, 0.00925679784, 0.00138924515, 0.0197323598, -0.00800901651, 0.00627880776, 0.0180347953, -0.0111357253, -0.00441076281, 0.000313985744, 0.00504190801, 0.0023939996, 0.0163807608, 0.0142987063, 0.00103105209, -0.0210381765, 0.000973015733, -0.00120606797, 0.0222424325, 0.0208350495, -0.0129711246, 0.00469731726, 0.0331677757, 0.0212558135, -0.00630782591, 0.0119409794, 0.00211832672, -0.00158511789, 0.0142696882, -0.0118249068, -0.0137981428, 0.0067793713, -0.00870545302, -0.00338605838, 0.00979363453, 0.00598862581, 0.00554609904, -0.014828288, 0.0125793796, 0.00895936135, 0.0196307953, -0.00487142615, 0.00153614965, 0.000713212357, -0.00198774505, 0.00649644388, -0.0156407971, 0.00622077147, -0.00855310727, 0.0281476304, -0.00777687086, -0.00474809902, 0.0267692674, 0.00730895298, -0.018774759, 0.0163227245, -0.0279445034, -0.0238529406, 0.0242446866, 0.024128614, -0.00281113572, 0.0100040156, 0.00243027229, -0.00914798, 0.0172948334, 0.006228026, 0.00323552662, 0.00868368894, 0.0195437409, 0.0165548697, -0.017410906, -0.0458197, 0.00111175887, 0.00475898059, -0.0110631799, 0.00078485097, -0.017773632, 0.0119772516, -0.0072944439, -0.0294244308, 0.00185716327, -0.00673947111, -0.00824841671, 0.0127462335, 0.0131162154, -0.00433821743, -0.00494397152, 0.012267434, 0.0300628301, 0.0052776807, -0.022343995, -0.0109180883, -0.00675760768, 0.00317567657, 0.021923231, 0.0255505033, -0.00242845854, 0.015016906, -0.000928581634, 0.0111792525, -0.0143277245, -0.0126374159, -0.00449418975, -0.034415558, -0.0175705049, -0.0178171601, -0.0090536708, 0.00358193112, 0.0102651799, 0.0123980157, -0.0117233433, -0.00927130692, 0.00782039855, 0.00168849505, -0.0225181039, -0.00462477189, 0.000509178324, 0.00816136226, 0.00768981641, 0.00230694492, -0.020167632, -0.00731620751, 0.00183267915, -0.0233741403, 0.0146831973, -0.00820488948, 0.00440350827, 0.00825567078, -0.00651095295, -0.0180493053, 0.0247379951, -0.0101926345, 0.0211832691, 0.00126863841, -0.00410969928, 0.0252893399, 0.0179187227, -0.00450869882, -0.00975736137, 0.00753747113, -0.0196162872, 0.0200805776, 0.0104610519, -0.0204142872, 0.00433459, -0.00739600742, -0.0202691965, 0.00401901733, -0.00303421309, 0.00802352559, 0.00763903465, 0.00954698, -0.00834272522, -0.023519231, 0.0162646882, -0.00839350745, 0.0221118499, -0.00451232633, -0.00327542657, 0.0161050875, -0.000477439666, 0.0303820297, 0.012847797, -0.0307592656, 0.0103594884, -0.00781314354, 0.0157713778, 0.00816861633, -0.0121731246, 0.010475561, -0.0102361618, -0.00840076152, -0.0231274869, -0.00852408912, -0.0123689976, -0.0022053814, 0.019964505, 0.00228155404, -0.0163372327, 0.0158294141, 0.0136167789, -0.00949619804, 0.00517248968, 0.021560505, 0.0134644331, 0.0194131602, 0.0295114852, 0.0119772516, 0.0309914108, 0.00266967225, 0.0141536156, -0.00313214934, -0.00170300424, -0.00949619804, 0.0183394868, 0.00855310727, -0.0133265974, 0.000688274857, -0.00122873834, -0.0322682112, 0.029453449, -0.000848328229, 0.0101853795, -0.0023794903, -0.000476986257, -0.00718199834, -0.00443615345, -0.00221082219, -0.0106351618, -0.0105335973, 0.00112264068, 0.00144728157, -0.0175850149, -0.00330807199, -0.0134716881, -0.0176575594, -0.0347057395, 0.0206609406, -0.0115855066, 0.00901739765, -0.000943090708, -0.0101418523, -0.00620263489, 0.00659438036, -0.00897387, -0.00268055405, -0.0142987063, -0.00795823429, 0.0370562114, 0.015814906, -0.00839350745, 0.000936743, 0.00104012026, -0.0061663622, 0.0171642508, 0.0163227245, -0.0221263599, -0.00961952563, 0.0167144686, -0.0103232162, 0.025506977, -0.022343995, 0.0123907607, -0.00104012026, 0.00580726238, 0.000630691939, 0.00218361779, 0.012855052, -0.0108890701, -0.0159454867, 0.000415095943, -0.0205158498, -0.0197613779, 0.0116290338, -8.10468555e-05, 0.00816136226, -0.0042656716, -0.0028673585, -0.00386667182, 0.0330226831, 0.000489228289, 0.00690995296, 0.00128858839, 0.0188763235, 0.0523487888, 0.00709131686, -0.0186006501, 0.000761727104, -0.0062243985, -0.015814906, -0.0199354868, -0.0158874504, 0.0112445429, 0.0181218516, 0.00645291666, 0.00211651321, -0.00491495337, 0.00786392577, 0.0214299224, 0.00920601655, -0.0084225256, 0.00109362253, 0.0224745777, -0.0113170883, -0.00347129931, 0.0173383597, 0.0263920315, -0.0415830463, -0.0128695611, 0.0169175956, -0.00739600742, -0.00857487135, 0.0219667591, 0.0308753382, -0.000594419194, 0.00262433128, 0.00930758, 0.00796548929, -0.00642752601, -0.0469223894, -2.14944193e-05, -0.00763903465, 0.0245929044, 0.0113388523, -0.0144437971, -0.00378324464, -0.0161776338, 0.00574559858, -0.0197323598, 0.00760276197, 0.000943090708, 0.0162066519, 0.00714935316, -0.00927856192, 0.00184990873, 0.00864016172, -0.0163807608, -0.0105916345, 0.0115564885, -0.00804529, 0.032239195, -0.0169611238, -0.0165113416, 0.0159164686, 0.00375785376, -0.0107439794, 0.0162937064, 0.00744316215, 0.0025681085, 0.0143132154, 0.000224324103, -0.0224310495, 0.00630419888, -0.0220973417, 0.00594872609, -0.00441801734, 0.0292938482, -0.00435635354, -0.0065435986, 0.00852408912, -0.00128496112, 0.00379049918, 0.0346477032, 0.00108364748, 0.0296130478, 0.00211832672, 0.00120969524, -0.0066632987, 0.00689907139, 0.0332838483, 0.0381008647, -0.0207770132, 0.0170191601, 0.0127534885, 5.46357842e-05, -0.0267837755, -0.0340383202, -0.00865467079, -0.00981539767, 0.00802352559, -0.00678662583, -0.00884328876, -0.00537561718, 0.0176430512, -0.0167870149, -0.030236939, 0.0179187227, 0.0200805776, 0.00692446204, -0.00282745855, -0.0172658153, 0.0175850149, 0.0160470512, -0.00322283106, -0.00413509, -0.0112082707, 0.0097428523, 0.00776236178, 0.0169901419, 0.0225326139, -0.0156698152, -0.0162501782, 0.00943816174, -0.0129638696, -0.00795098, 0.0200080313, -0.0102941981, 0.00594509859, 0.0200950876, -0.0156988334, -0.0225326139, -0.0137110883, 0.0143930148, 0.0145018334, -0.0184410512, 0.0114041427, -0.0218216684, -0.0241721403, 0.00695348, 0.0034023812, -0.00981539767, -0.0132685611, -0.0220102854, -0.00882878, 0.00689907139, 0.00675035315, 0.0028836811, 0.00846605282, -0.0124125248, -0.00180094049, 0.0215314869, -0.00492583541, -0.00105916336, -0.00779863494, -0.00115075207, -0.00246291771, -0.0166274142, -0.0129058333, -0.00708043482, 0.019949995, 0.00389206293, -0.00867643487, 0.018586142, 0.00367624, -0.014617906, -0.00260075391, -0.0118829431, 0.0330517031, -0.0171497427, 0.00234503136, 0.00826292578, -0.00659800787, 0.00876348931, -0.0147920148, -0.0215169769, -0.00902465265, -0.00406254455, -0.00694985315, 0.0150749423, -0.00558599876, 0.00230875867, 0.0115709975, -0.00621351693, -0.00396098103, 0.0108527979, -0.0135514876, -0.00676848926, -0.00701514399, 0.00995323434, 0.00914072525, -2.02617139e-05, 0.00720013492, 0.00644928962, 0.019949995, 0.0182379242, -0.00307774032, -0.00334434467, -0.00576010766, 0.00226160418, -0.0183830149, -0.00512896245, 0.00377236283, -0.0155537417, 0.00124868832, -0.0341253728, 0.00158511789, 0.0171062145, 0.0125213424, 0.00463565346, 0.0210671946, -0.0089883795, 0.00663428055, 0.00794372521, 0.013232288, -0.0129275974, -0.00520150783, 0.0127389794, -0.00734885316, 0.0216620676, 0.00568756228, 0.0302659571, -0.0161341056, 0.0110123977, 0.0141681246, 0.0169321056, 0.00462114438, -0.00769707095, 0.0107149612, -0.020747995, -0.00481339, -0.0121368524, 0.0105045792, 0.0338351913, -0.0232870858, -0.0053393445, -0.00108274072, -0.00508180819, -0.0139214694, -0.0133918878, 0.0192535594, -0.00300338119, 0.0269143581, -0.0112372888, -0.0314266831, -0.0222279225, -0.0153941419, -0.00114349753, 0.0173093416, -0.0145888878, -0.00203852681, -0.00939463452, 0.0323842838, 0.000603487366, 0.000301517, -0.0024901221, -0.000907271402, -0.00228518131, 0.0109180883, 0.00730532594, -0.0127244703, 0.0194421783, 0.00327905384, -0.0822955444, -0.0059668622, 0.016801523, 0.0278284308, 0.017207779, 0.0256230496, 0.0150749423, -0.000251868711, 0.0072980714, 0.0115057062, 0.0141028333, -0.00405891752, 0.0147847608, 0.000979363453, -0.0103232162, -0.00551345339, 0.0225616321, -0.0153651237, -0.0220683217, 0.00266967225, -0.00603940804, -0.0112082707, -0.00449418975, -0.000855582766, 0.00606479868, 0.00262433128, 0.00441801734, -0.0199209768, -0.0113315973, -0.000478346483, -0.00645291666, 0.00718199834, 0.000425751059, -0.00256085396, -0.00982265268, -0.0130871972, -0.0120062698, -0.00663065305, 0.00320650847, -0.0135152154, -0.00488593522, 0.00467192614, 0.0104320338, -0.00139105879, -0.0172658153, 0.00756648928, 0.00760276197, -0.0198049042, -0.0150894513, 0.00795823429, -0.00786392577, 0.006028526, -0.0129130883, -0.0174834505, -0.0321521387, 0.00454859901, -0.00608656229, -0.0181508698, -0.00850958, 0.0246074125, 0.0132903242, -0.0391745381, 0.0195872691, 0.0175705049, 0.016598396, 0.0101345982, -0.0117305974, 0.0091697434, 0.0117015792, 0.00560050784, -0.00971383415, -0.0164387971, -0.0193406139, -0.000433912413, 0.0184265412, -0.00188799505, -0.0147339785, 0.00431282632, -0.00482789893, 0.000718199823, 0.0258987211, -0.0055932533, -0.0111284703, 0.017410906, 0.00866918, 0.00360006746, 0.0242011584, 0.00424028095, 0.0234321766, -0.00606117165, 0.0308173019, 0.00845154375, -0.0129130883, -0.00428380817, 0.0218071584, 0.0143059604, -0.0178606864, -0.023330614, 0.0106133977, 0.0191955231, 0.00481701735, -0.00577098969, 0.0106351618, 0.0090609258, 0.0133773787, -0.00901014358, -0.00792921614, -0.0171497427, 0.0190359224, -0.00996774342, 0.0390294455, -0.00844428875, -0.00689181685, -0.000717746443, 0.0109906336, 0.0180202872, -0.0140883243, 0.00259531313, 0.00616273517, 0.014617906, -0.00548443524, 0.00585804414, -0.0260147937, 0.00798725244, -0.0134499241, -0.00687368028, -0.00880701654, -0.000890948693, -0.00790019799, 0.00150531786, 0.00512533542, -0.0147775058, 0.0159599967, -0.0178171601, 0.00863290764, -0.0102216527, 0.000150985201, 0.00704778964, -0.00428380817, 0.0162646882, -0.00876348931, -0.000993872527, 0.00030242381, -0.0151329786, -0.0149878878, -0.0174689423, -0.0104900701, 0.0278139208, -0.00396098103, 0.0141463606, -0.0252022855, -0.0131017063, 0.0234176684, -0.00774785271, -0.00161413604, -0.0422504656, 0.0161050875, -0.00641301693, -0.00875623431, -0.0155972699, -0.0145598697, 0.00537924422, -0.00688818935, -0.00430919928, -0.000219563299, 0.0193986502, -0.00462114438, -0.0182669424, 0.000688728236, -0.00988794304, 0.0195582509, 0.0264935941, 0.0104973251, -0.00688093482, 0.00875623431, -0.0104610519, 0.00896661635, -0.0139722517, 0.00494397152, 0.000798453228, 0.0198484324, -0.00175106549, 0.00166310417, -0.00762452558, 0.018571632, -0.00513621699, -0.00305053568, -0.00138561788, 0.0152925784, -0.00837899838, 0.0340673365, 0.015031415, -0.02688534, 0.0264210496, -0.0297726486, -0.0123254703, 0.00652546203, 0.00580363534, -0.0131524885, 0.00172114058, -0.0121295974, -0.00550619885, -0.00014044343, -0.0023323358, 0.000218769841, -0.0147702517, -0.0045268354, 0.00319381291, 0.00113624299, -0.0165693779, 0.00142370421, -0.0166999605, -0.00662702601, 0.019964505, -0.000769435079, 0.00656898972, -0.0062860623, 0.000839713437, -0.00282201753, 0.025710104, 0.00891583413, -0.00732346205, 0.022140868, 0.00339331292, 0.022735741, -0.00203308603, 0.000540010107, 0.0153070875, -0.0276253037, 2.25996041e-06, -0.000165607635, -0.0140665611, 0.0258697029, -0.00990245212, 0.00887956191, -0.00359099917, -0.0198049042, 0.0127389794, -0.00170300424, 0.0145235965, -0.0162356701, 0.0173238516, -0.00616998971, 0.00420400826, -0.00354747195, -0.00802352559, 0.0024792403, 0.0128115248, 0.0130509241, -0.0125938887, -0.00696436223, -0.00501651689, 0.00594872609, 0.0145598697, 0.00940914359, 0.00710219843, -0.0386812277, 0.00469368976, -0.00328086759, 0.0345316306, 0.00701151649, -0.00488593522, -0.0138851972, -0.014233415, 0.00406979909, 0.00439988077, -0.00129765656, -0.0190359224, -0.0107294703, 0.00483152643, 0.0103087071, -0.00445429, 0.00386304455, -0.0160615593, 0.01463967, 0.0210671946, 0.00742865307, 0.00130853837, -0.0231129769, -0.0123254703, -0.0199209768, -0.00474447152, -0.00568756228, 0.0190939605, -0.011280816, -0.00503102643, 0.00872721616, -0.0100983251, 0.0144655602, -0.0098081436, 0.023316104, 0.00428743567, 0.00203852681, 0.00842978, 0.00238130405, -0.0144873243, -0.00863290764, 0.0196743235, -0.0155392326, -0.0181363598, -0.00487505365, -0.0059124534, -0.0134499241, -0.0125140883, -0.00895210728, -0.00756648928, -0.00162683148, -0.000858303218, 0.00459212624, -0.00615185313, -0.0370562114, 0.0136603061, -0.000232598817, -3.53659e-05, -0.00710945297, -0.0260002855, -0.0188473053, -0.00363815366, 0.003014263, 0.00137836335, -0.0025100722, 0.00416410808, -0.00232326775, 0.0104537979, -0.00355654024, -0.00142461108, -0.010860052, 0.00731983501, 0.00470819883, 0.0105988886, 0.00292902207, 0.0147847608, -0.0181218516, 0.0244478136, -0.00233959034, -0.00100747484, 0.00369619019, -0.0178026501, 0.00513621699, 0.00349669019, -0.00215459964, 2.53342278e-05, -0.00333346287, -0.00720013492, 0.0128332879, -0.00319018564, 0.00296166749, 0.0105481073, 0.00959050748, -0.0109471064, -0.0197323598, 0.0133846337, -0.00071230554, 0.017207779, 0.00644566212, -0.00212195399, -0.0155682517, -0.00445429, 0.00258805859, -0.0143059604, 0.00837174337, -0.0148500511, -0.00639488036, 0.00602127146, 0.00152798835, -0.0131960157, 0.0395227559, 0.00331532652, -0.0288150478, -0.00244659488, 0.028858576, -0.0265081041, -0.0105843795, 0.0581814423, 0.0104102707, -0.0038956902, 0.00325366296, 0.0194711965, -0.0294389389, 6.05867754e-05, 0.0297436304, -0.0262759589, -0.0224890858, 0.00357649, 0.00419675373, 0.0177446138, 0.0118829431, 0.0274947211, -0.0107875066, -0.00948168896, -0.00449781725, 0.0123254703, -0.0206754506, 0.0099242162, 0.00516886264, -0.00145090884, -0.0282927211, 0.0135297244, -0.0076680528, -0.00184990873, 0.00261526299, -0.018789269, 0.0257246122, 0.00778412586, 0.00875623431, -0.0125503605, 0.00315754022, -0.000285874383, -0.017976759, -0.0163662508, 0.00343684014, 0.0315717757, -0.00159781333, 0.028844066, 0.00442527188, 0.0203997772, 0.00295078568, 0.0108165247, -0.0218216684, 0.00782765262, 0.0131597426, 0.00937287, -0.0111574885, 0.000102753816, -0.0148427971, -0.00165766326, -0.0309333745, -0.0086038895, 0.0197468679, 0.0176575594, 0.00225072214, -0.00419312622, 0.0264355578, -0.00726905279, 0.0101128342, -0.0121078342, -0.0381008647, 0.00928581599, -0.00183721329, 0.00684466213, 0.0124415429, -0.0180347953, -0.0205883961, 0.0204578135, -0.0148065239, -0.0160905793, -0.0100547979, -0.00159146555, 0.000986618, -0.0150894513, 0.000709585089, 0.014044797, -0.00756648928, 0.014429288, 0.00264246762, -0.00291814026, -0.0084805619, 0.00178824505, 0.00140012696, -0.00450869882, -0.0120207788, -0.00845154375, 0.00318474486, 0.00805979874, 0.0167289786, 0.0111792525, 0.0260002855, 0.00177010871, -0.0204433054, -0.00556060812, 0.00254271762, 0.00190431776, -0.00755923474, 0.0309043564, 0.00576010766, -0.010475561, -0.0225471221, -0.0203127228, 0.00875623431, 0.00760276197, -0.00272226753, 0.00460300827, -0.0152490512, -0.0049004443, 0.0126156518, 0.0188037772, 0.0155827608, 0.00990970712, -0.0237658862, 0.00963403471, -0.00144818833, 0.00179187232, -0.000720466895, 0.00296348124, 0.00788568892, -0.0121803796, 0.0102143977, 0.0086038895, -0.00217092223, 0.0206899587, -0.0149878878, 0.00945992488, -0.0104610519, 0.000178303089, -0.0137401065, 0.0042112628, -0.0200660676, 0.017396396, 0.00738512585, -0.00344772195, 0.0161486156, -0.00695710769, 0.0340093, 0.00934385229, 0.00935836136, -0.00472633541, 0.00209293584, 0.00409881724, -0.0164968334, 0.0295695215, -0.0323262475, 0.00188980869, -0.00949619804, 0.000869185, 0.0238964669, -0.00322645833, -0.00680476241, 0.016612906, 0.0100475438, 0.0183104686, -0.0119047062, 0.0410026833, -0.0104320338, 0.0150459241, 0.00191519957, 0.00391382631, -0.00383765367, 0.00728356233, -0.0383620299, 0.00531395338, 0.00196779496, 0.0114984522, 0.0128187789, 0.000318746519, 0.0286699571, 0.0113243433, 0.0315427557, 4.45474325e-05, -0.00574197154, 0.0173093416, -0.00471908087, 0.00288549485, -0.0356633365, 0.0127462335, 0.00856036227, -0.00468643522, 0.0441656634, 0.01463967, -0.0212267954, -0.00388480816, -0.00102561119, -0.0109688705, -0.000334389129, -0.0197468679, 0.00617361674, -0.0126301609, 0.000437766372, -0.0171497427, -0.0388843566, 0.0363017395, -0.00152708148, -0.00584353507, -0.0130146518, 0.00981539767, -0.0171207245, 0.0162066519, 0.0170046501, -0.0144873243, -0.00100566121, 0.0117668705, 0.0178606864, -0.00350394472, 0.00377599, -0.0343285]
18 Dec, 2018
unordered_map cend in C++ STL 18 Dec, 2018 The unordered_map::cend() is a built-in function in C++ STL which returns an iterator pointing to the position past the end element in the container or in one of its bucket. In an unordered_map object, there is no guarantee that which specific element is considered its first element. But all the elements in the container are covered since the range goes from its begin to its end until invalidated. There are two variant of this function. Syntax-1: unordered_map.cend() Parameters: This function does not accept any parameter. Return type: The function returns an iterator to the element past the end of the container. // CPP program to illustrate // unordered_map cend() #include <bits/stdc++.h> using namespace std; int main() { unordered_map<int, int> ump; // inserting data into unordered_map ump[1] = 2; ump[3] = 4; ump[5] = 6; // here 'it' can not be modified for (auto it = ump.cbegin(); it != ump.cend(); ++it) cout << it->first << " " << it->second << endl; return 0; } Output: 5 6 1 2 3 4 Syntax-2: unordered_map.cend ( size n ) Parameters: This function accepts parameter size n which should be lower than bucket count. Return type: The function returns an iterator to the one of its bucket count. // CPP program to illustrate // unordered_map cend() #include <bits/stdc++.h> using namespace std; int main() { unordered_map<int, int> ump; // inserting data into unordered_map ump[1] = 2; ump[3] = 4; ump[5] = 6; cout << "unordered_map bucket contains \n"; for (int i = 0; i < ump.bucket_count(); i++) { cout << "Bucket " << i << " contains "; for (auto it = ump.cbegin(i); it != ump.cend(i); ++it) cout << it->first << " " << it->second; cout << endl; } return 0; } Output: unordered_map bucket contains Bucket 0 contains Bucket 1 contains 1 2 Bucket 2 contains Bucket 3 contains 3 4 Bucket 4 contains Bucket 5 contains 5 6 Bucket 6 contains How is cend() different from end()? cend() is const version of end(). Similarly cbegin() is a const version of begin(). For example, the following code shows compiler error because we try to modify value in iterator. // CPP program to illustrate // unordered_map cend() #include <bits/stdc++.h> using namespace std; int main() { unordered_map<int, int> ump; // inserting data into unordered_map ump[1] = 2; ump[3] = 4; ump[5] = 6; // here 'it' can not be modified for (auto it = ump.cbegin(); it != ump.cend(); ++it) it->second = 10;  // COMPILER ERROR return 0; } Output : Compilation Error in CPP code :- prog.cpp: In function 'int main()': prog.cpp:19:20: error: assignment of member 'std::pair::second' in read-only object it->second = 10; // COMPILER ERROR Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL
https://www.geeksforgeeks.org/unordered_map-cend-in-c-stl?ref=asr8
PHP
unordered_map cend in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0311232246, -0.0118757663, -0.0126710525, 0.0281103142, 0.0292114802, -0.0542324111, -0.0275903195, 0.0218397863, -0.0319032185, -0.0114934174, -0.0264126826, 0.0154545549, -0.0187962875, -0.0410490111, 0.0138028068, -0.0214574374, 0.0095816711, 0.0254185759, 0.006022, -0.0134663386, -0.004435251, -0.00485201133, -0.00824344903, -0.0138563355, 0.00502789207, 0.0186127592, -0.0361243524, -0.000318066741, 0.00645023119, 0.00838109478, -0.00234762416, 0.00218321406, 0.03719493, -0.0159974899, 0.00802168623, 0.0398866683, 0.0400090218, 0.0147739733, -0.00594553025, -0.0357878841, 0.0130610485, 0.0159210209, 0.0160280783, 0.0145522105, -0.0397337303, 0.0074328687, 0.012716935, -0.0716981217, -0.0282479599, 0.0219774321, 0.0242562331, -0.0230327155, 0.019698631, -0.00708110724, 0.0310926381, 0.00881697237, 0.0325149782, 0.0072111059, -0.0112028318, 0.00646934845, -0.00212203804, -0.0415690057, 0.0176033583, -0.00860285759, 0.00358070037, 0.0202186257, -0.0344114304, 0.0227421317, 0.0114016533, -0.0138410414, -0.0170068927, 0.0399172567, 0.00133822218, 0.0220080204, -0.0467689559, -0.0330349728, 0.00409496, 0.0146286804, 0.00355775934, 0.0249903444, -0.0237515327, 0.0132216355, -0.00911520515, -0.0369196385, 0.027544437, -0.0227727182, -0.00260379817, -0.0371031687, 0.059554711, 0.0157833751, 0.00254835747, -0.00984931551, -0.013886923, -0.0368584618, -0.0308173466, 0.0296550039, 0.0279420801, 0.0126098767, -0.0154927894, 0.0550582856, 0.0164563097, 0.00632023253, 0.0109581286, -0.000832087477, 0.0152098518, 0.0385102108, 0.0477477685, 0.0195762794, -0.00247188774, 0.012395761, 0.0222374294, 0.00853403471, -0.0146286804, 0.0217786115, -0.0243785847, -0.00103521044, 0.00961225946, 0.000120081546, 0.0256021023, 0.012242822, -0.0396419652, 0.0181998219, 0.0203409772, 0.0404372513, -0.0377149247, -0.000432771514, 0.0108969528, 0.0226350725, -0.00141755969, -0.00924520381, 0.00812874455, -0.0467077792, 0.0129539911, -0.0200351, 0.00324232131, 0.0237515327, 0.0226656608, 0.030526761, -0.0150569119, -0.0259997454, -0.030297352, -0.00856462214, -0.0191786364, -0.00697404938, -0.0577194355, -0.0403149, -0.013030461, 0.0504089184, -0.00591876591, -0.0092528509, -0.0239962358, 0.0144986818, 0.0450254418, -0.0119981179, 0.0073449281, -0.0521524325, 0.0320867449, 0.00166130729, -0.0120287063, -0.0335855559, 0.00987225678, -0.00658023, 0.0093522612, -0.00542553514, -0.0241032932, 0.0328820311, 0.0416913591, -0.0252656359, -0.0254644565, 0.0550276972, 0.0236903578, 0.0200045109, 0.027070323, -0.0192398112, 0.00131528126, -0.0303126443, 0.00543318223, 0.0252962243, 0.0187657, 0.038296096, 0.0128469337, -0.00175307109, 0.0268715024, -0.00936755538, 0.0358796492, -0.0224821325, 0.0335855559, 0.000900432409, 0.0519689061, 0.000222479444, 0.00399937248, -0.00894697104, 0.0334632024, 0.0371337533, 0.0615429282, 0.0239962358, -0.0198515709, 0.0163951349, -0.0140398629, 0.0543241762, 0.00253306353, -0.0139786871, 0.0230480097, 0.00818227325, 0.0302055869, 0.0281409025, -0.0105375443, -0.0124110552, 0.0101169599, -0.0070466958, -0.0347784832, 0.00589964818, 0.0300067663, 0.0122275278, 0.0101016657, 0.0319949798, -0.0584229603, -0.0117075332, -0.016165724, -0.00819756743, 0.00167755713, -0.0168998353, 0.0426701717, -0.0447807387, -0.047013659, -0.0367667, 0.0329126194, 0.0194998104, 0.00696640275, -0.0076278667, 0.0319949798, 0.0179857071, -0.0176033583, -0.00532994792, 0.00430525187, -0.0156610236, -0.0315055735, -0.0163645465, -0.0142386844, 0.0516324379, 0.0216256715, 0.0478395335, -0.028645603, 0.0150416177, 0.00684022717, 0.0434348695, 0.0024049764, -0.0194845162, -0.00446583889, -0.00375658087, 0.00805227458, 0.0130381081, 0.0407737195, 0.00971931685, 0.000445436832, 0.0355125926, 0.0100557841, -0.0247456413, 0.00139461877, -0.0151639692, 0.0114704762, 0.0342890769, -0.0188727565, 0.0108281299, 0.0102393115, 0.0135198683, 0.00230365386, 0.0100634312, -0.0181692336, -0.072065182, 0.0373478718, -0.0098569626, 0.0365525857, -0.0296550039, 0.0203868598, -0.00127895805, -0.0170680694, 0.0230633039, 0.00448495615, -0.023231538, 0.000227019846, -0.0189339332, -0.00492465775, -0.0054217116, 0.0163492523, -0.020478623, -0.0406513661, -0.01004049, -0.0335243791, -0.0243021157, -0.0250668135, 0.00172535086, 0.0132675171, 0.0151639692, 0.0163492523, 0.0349008366, -0.0377761, -0.0505924486, -0.0288597178, -0.000112434565, -0.00524583133, -0.0279879626, 0.00686316844, -0.0368890502, -0.00388084445, -0.0252197534, 0.0155922007, -0.019071579, 0.0399784334, -0.03060323, -0.0078611, -0.0512959696, 0.0100557841, -0.00851109345, 0.00358070037, -0.0174045358, 0.032331448, 0.0176492389, -0.0154392608, 0.0020646858, -0.00544465287, -0.0264738593, 0.0151410289, 0.0120592937, 0.0308938157, -0.0443525091, -0.0168233644, 0.0301749986, -0.0165786613, -0.0550582856, -0.0196680427, -0.00256173965, -0.036032591, -0.0152404392, -0.0376537517, -0.0117457677, -0.0156457294, -0.01404751, 0.012395761, 0.0126710525, 0.00446201535, -0.0149498545, 0.00285614864, 0.0170833617, 0.0121204695, -0.0116845919, 0.0173586532, -0.0218856689, -0.00700846082, 0.030297352, 0.00135829556, -0.0379290432, -0.00496289274, -0.024332704, 0.0371643417, 0.0346561335, -0.0372866951, -0.0283397231, -0.0199127458, 0.0281561948, -0.0201115683, 0.0464324877, 0.0111722434, 0.0119904708, -0.0157222, -0.0110040102, -0.0173127726, -0.0134663386, 0.0143304486, -0.016089255, 0.0103846043, -0.0427925251, 0.0121816462, 0.00105910725, -0.0350231864, -0.0128469337, 0.0129386969, 0.0494912826, 0.000661464117, -0.0101093128, -0.0125410538, 0.0252350476, -0.00625523319, -0.00305688195, 0.00828168355, -0.00816697907, -0.00161446957, 0.0437713377, 0.0189645216, -0.0220691971, -0.0363078825, -0.00698934356, 0.00880932529, -0.00349658355, -0.00026023644, -0.018046882, -0.00940579083, -0.0346561335, -0.0287832487, -0.0564041547, 0.0159516092, -0.00583082531, 0.0176645331, -0.0298538264, -0.00451936759, 0.000241357935, 0.00111550384, -0.0163951349, -0.0155998478, 0.0337690823, 0.00017193766, -0.00888579525, 0.00514259702, -0.00952049531, 0.0270244423, 0.0185362902, -0.019698631, 0.0163645465, -0.0191174597, -0.0169610102, -0.00465319, -0.0389078557, 0.0101475483, 0.00494759856, 0.01404751, 0.0164257213, -0.0285079572, -0.00984166842, -0.00930638, 0.0121969394, -0.0259232763, -0.00131814892, 0.034380842, 0.0286150146, -0.0126634054, -0.0866862088, -0.00194711331, -0.00790698174, -0.0211362634, -0.0180162955, 0.028722072, 0.027391497, 0.0370725803, -0.0281103142, -0.010285194, 0.0195609853, -0.0229868349, -0.0130457552, -0.0110881273, 0.00177218858, -0.0368890502, -0.0108816586, 0.0211974401, -0.00232277135, 0.0518159643, -0.00608317601, 0.00370496372, -0.018597465, 0.0531312451, 0.0312608704, 0.00645023119, 0.0129922265, -0.00917638093, 0.00942873117, 0.0236444753, 0.020172745, 0.0182762928, 0.0116998861, -0.0250668135, -0.0104304859, 0.0108816586, -0.0142998602, 0.01992804, 0.0205398, 0.0299455896, 0.024562113, 0.00417525321, -0.0023265949, -0.0357267112, -0.0152480863, 0.0116310632, -0.0141163329, -0.0196833368, -0.0144069185, -0.0162880756, -0.0239197668, 0.0126404651, -0.0109734219, -0.0195915736, -0.00864109211, 0.00547141721, -0.00195667217, -0.0315667503, -0.0306491125, 0.0217786115, 0.0134510454, -0.0414466523, 0.0124110552, -0.00477171829, 0.00308555807, 0.0381737463, -0.00718051801, -0.0478395335, 0.0218244921, 0.0216409657, -0.0437713377, -0.0262597427, 0.00544082932, -0.0222221352, -0.0053873, -0.0135198683, 0.0427925251, 0.0114781233, 0.011455182, 0.00840403512, 0.00219850801, 0.0184598193, 0.0447195619, -0.0423337035, 0.00571229728, 0.030373821, -0.00834285934, -0.00649228971, 0.0428842865, 0.00974990521, 0.0400090218, -0.00835050642, -0.00984931551, 0.0178939421, -0.0505924486, 0.0216409657, 0.00960461237, -0.00443907408, 0.0061367047, -0.0163645465, -0.00777698308, 0.00197483366, 0.0125410538, -0.019377457, -0.00941343792, -0.0394278504, -0.00383878616, -0.00659934711, 0.0228033066, -0.0390302055, 0.012242822, 0.00363040576, -0.00796815753, -0.0113940062, -0.00458436692, 0.00698934356, 0.024332704, -0.00533377146, -0.00721492944, -0.00488259923, 0.0116998861, -0.0211362634, -0.0148580903, 0.0200198051, -0.0232009497, 0.0167316012, 0.0278350227, 0.0482677631, 0.000535766827, -0.0157069061, -0.00391334435, 0.0116616506, -0.0111034205, -0.01412398, 0.014284566, 0.00848815218, -0.0374702215, 0.0264738593, 0.00822815485, 0.010438133, 0.0305114668, 0.0172821842, 0.0217021406, -0.00457672, -0.0123345852, -0.00982637424, -0.0237515327, -0.000136211907, -0.0267797392, 0.000452127948, 0.0141010387, -0.0105987201, -0.0172515959, -0.0313526355, 0.00111263618, 0.00641581975, 0.00193755457, 0.0102469586, 0.000570178265, 0.0072990465, -0.0110422447, -0.00991813838, -0.00417525321, -0.0158445518, 0.00945931952, -0.00300908834, 0.0133898696, -0.000331926916, -0.0378984548, -0.0129004624, -0.012242822, 0.0336161405, -0.00844991766, 0.0111722434, -0.0154316137, -0.0326373279, 0.0142157432, 0.0238738842, -0.00553641655, 0.00346981897, 0.00625140965, 0.0114322416, 0.0230938923, -0.0275138486, 0.00789933465, -0.0324843898, -0.00717287092, -0.0180621762, 0.010438133, 0.011692239, 0.0287067778, -0.0259538647, -0.0186892301, -0.0120363533, -0.0339831971, -0.00206659758, -0.0211056769, -0.00882461946, 0.00554406364, 0.0202950966, 0.029196186, -0.011141656, 0.0110498918, -0.0184139386, 0.016716307, -0.0157222, 0.0201115683, 0.00716140075, 0.0395502038, 0.00265541533, -0.00184674666, 0.0246691704, 0.0448725037, 0.0140780974, -0.000900432409, -0.0172821842, -0.0092528509, 0.0114322416, -0.00191843719, -0.0231091864, -0.0219621379, 0.00791462883, 0.0160739608, -0.0106598958, 0.0110728331, -0.000150788968, -0.0499501, 0.00296702981, 0.0127322283, 0.0140398629, -0.0144145647, -0.0345031917, 0.00450407388, -0.00272997329, 0.00438936893, -0.0461877845, -0.0251279902, 0.0110498918, 0.0328208543, 0.00135925144, -0.0157069061, -0.0264738593, 0.0361549407, -0.00161638123, -0.0187657, 0.00880932529, -0.00260379817, 0.00212012627, -0.0318420418, -0.0208456796, 0.00325761526, 0.00894697104, 0.000910947, 0.0220080204, -0.0319032185, -0.0076278667, -0.0249597561, 0.0271162055, 0.033891432, 0.00229983055, -0.00686699199, 0.00251968135, -0.0139786871, 0.00146057399, 0.0102546057, 0.0236444753, -0.00795286335, -0.0304502901, -0.0153322034, 0.00581935514, 0.0271467939, 0.00355202402, 0.0137033956, -0.00361702358, 0.0157986693, -0.000164410158, -0.00822815485, -0.034442015, 0.0116692977, -0.000772823347, 0.00494759856, 0.00624758611, -0.0106904842, -0.037592575, -0.0557618067, -0.00530318357, 0.00377569837, -0.0105604855, 0.00154755847, 0.0279420801, -0.0205550939, -0.021900963, -0.0160586666, -0.0111187147, 0.00310276379, -0.0173280668, -0.00266306219, 0.000111239722, 0.0161963124, -0.024088, -0.00124932604, 0.0157833751, -0.0479007103, -0.0096275527, 0.0145598575, 0.00310658733, 0.0144451531, -0.00476024766, 0.00663375854, 0.00721875299, -0.0211515576, 0.00893167779, -0.0018620406, -0.0441995673, 0.0227421317, 0.0154316137, 0.0431901664, 0.0233385954, -0.0236291811, 0.03217851, -0.0181692336, 0.0302361753, 0.00752845593, 0.0144833876, -0.00135733967, 0.020799797, -0.000896608864, -0.00576582598, 0.00310849911, -0.0259997454, 0.0159363151, 0.00022833416, 0.00812109746, 0.0258315131, 0.0184598193, -0.0190104023, -0.0173586532, 0.0236444753, 0.0209986176, 0.00352717144, -0.0271773823, -0.00714610657, 0.0131145781, 0.0318114534, -0.00310658733, -0.0148427961, 0.030052647, 0.0289820693, 0.0045996611, 0.0012885168, -0.0171751268, -0.00415613595, 0.0260762163, 0.0374090448, -0.0235832985, -0.0157680809, -0.0252350476, 0.0430372283, 0.0213350859, -0.00994872674, -0.0295938291, -0.0312302839, -0.0280644316, -0.0208762661, -0.0374090448, 0.0178021789, -0.00617111614, -0.00918402802, 0.00616346905, 0.00255982787, -0.0271926764, 0.00094965985, 0.0142616257, 0.0140857445, 0.03719493, 0.00311232265, -0.00372981653, -0.0043243696, 0.0227268375, 0.0186739359, 0.0146592688, 0.0019050549, 0.0123575265, -0.00437025167, 0.00705051934, 0.0189951081, -0.00671405206, 0.0130992839, -0.0214115549, -0.0787333474, 0.024088, 0.0274985544, 0.0152557334, 0.0173280668, -0.00437789829, -0.0201574508, 0.0218856689, -0.0215644948, 0.0306185242, -0.00465701334, 0.023231538, 0.0114934174, -0.00522289, -0.00195093686, 0.0439242758, -0.00719581218, 0.00690140342, -0.00316776312, 0.00164792512, 0.00294026546, -0.0128928153, -0.0194692221, 0.00398407876, -0.0149269132, 0.003590259, 0.000505656819, 0.0124034081, -0.0201421566, 0.0215644948, -0.00513495, 0.0304502901, -0.0334937908, -0.0220691971, 0.0269632656, 0.00597611815, -0.000431815628, 0.0125716422, 0.000644258398, 0.0245162304, 0.011929295, 0.0417831205, 0.00587288383, -0.0341361389, -0.00280835503, -0.0140245687, 0.00918402802, 0.00571994437, -0.0141163329, 0.000619405706, -0.00412937161, -0.0135428086, 0.0148198549, 0.0243938789, 0.00482524699, -0.0369502269, 0.022910364, -0.0237056501, -0.0073219873, -0.0369502269, -0.0146439746, -0.00187924632, 0.0147816204, -0.00139079522, -0.0224668402, -0.0374090448, 0.0366137587, -0.0143380957, -0.0312302839, -0.00121013529, 0.0247609355, 0.0252809301, 0.0150416177, -0.00866403338, 0.00338379038, -0.0289973635, -0.00444289763, -0.00292688329, 0.0172821842, -0.00115756225, 0.0140322158, -0.0144833876, 0.0424560569, 0.0124569368, 0.0198209826, 0.0112028318, 0.0241032932, -0.0354208313, -0.0455760248, -0.0345031917, -0.00205895049, 0.0121128233, -0.0342890769, -0.00842697639, 0.0302055869, -0.0172974784, 0.0141163329, 0.0133898696, -0.0300373528, 0.00588817801, 0.0148580903, -0.0111645972, 0.00196336326, 0.000808190613, -0.0365219973, 0.00599141186, -0.0241491757, 0.00303967623, 0.0243174098, -0.00939049665, -0.00317923375, 0.0042134882, -0.0313067548, -0.0300067663, -0.0367972888, -0.00694728503, 0.00851109345, 0.000222718416, 0.00825109612, 0.0156304352, -0.0254797507, 0.0119140008, -0.0331573226, 0.00348893646, -0.00848050509, -0.00537583, -0.0200656857, 0.00052047288, -0.00904638227, -0.0308479331, -0.0211209711, -0.0400702, -0.0275903195, 0.00320408633, -0.0207233261, 0.0267338566, 0.0380208045, -0.0146286804, -0.000341485633, -0.011302243, 0.0298691206, -0.00886285491, 0.00428231107, -0.0252809301, -0.0289973635, 0.000676280179, 0.0259691589, -0.00678287493, 0.0343196653, 0.042089, 0.0106522487, 0.0350537747, -0.0158904325, -0.0165174864, -0.0049514221, 0.00386363873, 0.038754914, 0.00780374743, 0.00182667328, 0.0146975033, 0.0292114802, 0.029976178, 0.00593023608, -0.0182151161, -0.0233233012, 0.0156763177, -0.00571994437, -0.00952049531, 0.009023441, -0.00766227813, 0.0234915353, 0.0494606942, 0.0281867832, -0.0278350227, 0.0131986942, -0.0178021789, -0.000259041582, 0.00497054, -0.0231397748, 0.0354208313, 0.0116845919, -0.00922226254, -0.0144986818, 0.0330655612, -0.0094746137, -0.0121739991, 0.00740610436, -0.0246844646, 0.00291732443, -0.00154373492, 0.0119981179, -0.00150645582, -0.00322320382, -0.0103998985, 0.0156610236, 0.0038961384, -0.00733728148, -0.0257091615, -0.0279114917, 0.00950520113, 0.0020952737, 0.0174810067, 0.0308479331, -0.00872520916, -0.0207539145, 0.00112697424, -0.00357687683, -0.0291503035, 0.00685552135, 0.0116998861, 0.00181233522, -0.0259232763, 0.00271850289, -0.0264126826, 0.0117687089, -0.0175574757, -0.00196336326, 0.000839256507, -0.0277738459, 0.000908557326, -0.0141775087, 0.00702757854, 0.00680199219, -0.0171751268, -0.0158139635, -0.011302243, -0.00601817667, 0.0114934174, -0.00403378392, 0.0285691321, -0.00230556563, 0.00868697371, 0.022451546, -0.0336467288, 0.0063890554, 0.00813639071, -0.00636993768, -0.0143533889, 0.0145445643, -0.022680955, -0.00959696528, 0.035482008, 0.0110193044, -0.012005765, 0.0270550307, 0.0119675305, 0.0106216613, -0.00237821206, -0.0141545674, -0.0245774072, -0.0172974784, -0.00556700444, 0.0143228015, 0.0072264, 0.0332490876, -0.0290585402, -0.0271926764, 0.0169304237, 0.0235068295, 0.0269785598, 0.0179398246, -0.00369731686, 0.00472583622, -0.0130839897, -0.0150951464, -0.00361128827, -2.88628848e-06, 0.00679052202, 0.015301615, 0.0135045741, -0.00647317199, -0.00305497018, 0.0170833617, 0.0454842634, -0.0117992964, 0.0121357637, -0.0163645465, 0.0388772674, 0.0126481121, 0.00262673898, 0.0127628166, 0.0267797392, 0.00562053313, 0.0201880373, 0.0175880641, 0.00281600188, 0.0315361619, -0.0146975033, 0.0108357761, 0.0157680809, -0.0186739359, -0.0219621379, -0.00805992167, -0.0281409025, 0.0017836591, 0.0119216479, -0.0167621896, 0.0185515843, 0.00682111, 0.0276667885, -0.0515100844, -0.00469142478, -0.00296129473, 0.0202950966, 0.00405672519, 0.00959696528, -0.0212892033, 0.012242822, 0.0103310756, 0.026213862, 0.0252503417, -0.00601052959, 0.0212892033, -0.00458436692, -0.00134682504, 0.00126270822, 0.00310085202, -0.00700463727, -0.0212127343, -0.0133669283, -0.0265044477, 0.00203218614, 0.00296320627, -0.00903873518, -0.0153169092, 0.0215644948, -0.0154392608, -0.000171818174, -0.00331305596, 0.0204633288, -0.0206621513, 0.00182476162, -0.0162574891, -0.00870991498, -0.0193468705, 0.0244703498, 0.00768521894, 0.00757051446, 0.000355823722, -0.0104763685, -0.0101704886, 0.0242409389, 0.0116310632, 0.000237056505, 0.00217174343, 0.0267338566, 0.0053911237, -0.0233538896, 0.011539299, 0.0266726799, -0.0163492523, -0.0189033449, -0.00495524565, 0.027391497, 0.0367361121, -0.00188784918, 0.0230174214, -0.000147801868, 0.0186586417, -0.0213044975, -0.00280261971, -0.0128392866, 0.00357114151, -0.014751032, -0.0104687214, -0.0015571171, -0.000965909683, -0.0190562848, 0.00736022228, 0.00923755672, 0.0231550671, -0.0214268491, 0.0104534272, 0.00824344903, 0.00768521894, 0.0194692221, -0.00138028059, -0.000534333, -0.0430066399, 0.0162727814, -0.00802168623, -0.00122160569, 0.0173586532, 0.0111951847, -0.000781904149, 0.0122122336, -0.0350843631, -0.0200198051, -0.0182915851, 0.00788404047, -0.0218856689, -0.0275291428, -0.0306949951, -0.014751032, 0.00793756917, 0.00877873786, 0.0035118775, -0.0301597062, 0.0212586168, 0.00883226655, 0.013810453, 0.00788404047, 0.0154163204, -0.0113557717, -0.010201077, -0.00270512071, -0.011141656, 0.000934843789, -8.94338664e-05, -0.00872520916, 0.0392137356, -0.0118910605, 0.0047640712, 0.0145369172, 0.019071579, -0.0165021922, -0.037592575, 0.0101857828, -0.0074634566, -0.00168807176, 0.0235527121, 0.0247456413, 0.00526877213, -0.0279726684, -0.0232774206, -0.00675228704, -0.00358834723, 0.00780374743, 0.012479878, -0.00052907574, 0.0104687214, 0.00587288383, -0.0635005534, 0.00643111346, 0.0318726301, 0.0253268108, 0.0128392866, -0.0151945576, -0.0168845411, 0.0283244289, -0.0264126826, -0.00889344234, 0.000853594625, 0.0123269381, -0.0114857703, 0.0096275527, -0.000526686, 0.0174351241, 0.00692816777, 0.0128239924, 0.0246232897, 0.0137492772, 0.0216868464, -0.00179226196, 0.00603347039, -0.0089240307, 0.00723787071, -0.00170814514, 0.0161810182, 0.00365525833, 0.00436642813, -0.0147127975, 2.35383723e-05, -0.00632787915, 0.0122810565, 0.00286188372, 0.00171196857, 0.0309855789, 0.0118834134, 0.0139480988, -0.0210903827, -0.0151257347, 0.0108510703, -0.0157222, 0.0243174098, -0.0200656857, -0.0278350227, 0.0215339065, -0.021579789, 0.00117476797, -0.0124110552, 0.016165724, 0.000873667945, -0.0122810565, 0.0025043874, 0.00243365276, 0.0092987325, -0.0117916493, 0.00379290408, -0.00755522028, 0.0241491757, 0.00748257386, -0.00513495, 0.0121051762, 0.02135038, 0.00812874455, -0.0253726933, -0.0103540169, 0.0176645331, 0.0327902697, 0.00430907542, -0.00841168221, 0.012479878, -0.0327596813, 0.0121051762, 0.00950520113, 0.0144528, -0.0172210075, -0.00319261593, 0.0242103525, -0.0246844646, -0.0200045109, 0.00161924888, -0.0062246453, -0.00969637558, -0.0098034339, -0.0272691455, 0.0211515576, -0.000227975717, 0.00893167779, -0.0132292826, 0.00546377, 0.00640052557, -0.000833521248, -0.0194998104, 0.00704287225, -0.0314444, 0.0142539786, 0.00755522028, 0.010201077, -0.00351952435, 0.00647317199, -0.0316891037, -0.00505848, 0.0104610743, -0.00939814374, 0.0243938789, -0.0025464457, -0.0128469337, -0.0157222, -0.00772345392, -0.0176033583, -0.00840403512, 0.0143763302, 0.0304502901, -0.00792227592, -0.00257321028, -0.0271467939, -0.0129616382, -0.00913814642, 0.0184139386, 0.0240727067, -0.00363805261, -0.0236138869, 0.0490936376, -0.0447195619, 0.00643876055, -0.00529171294, -0.0305726435, 0.00825109612, 0.0217939056, 0.0237974152, -0.0166092496, 0.00684787426, -0.0176033583, 0.0109504815, 0.00552876946, 0.0189951081, 0.0243479982, -0.000363709696, -0.047472477, 0.0332185, -0.00381584512, -0.00226541911, 0.0180927645, 0.0422113538, 0.00355011248, -0.0056434744, -0.00285232509, -0.00297276513, 0.00408348953, 0.000509002362, -0.0219927263, -0.0167316012, -0.00884756073, -0.0301291179, 0.0203562714, 0.0165480729, -0.0187198166, 0.00691669714, -0.00609464617, 0.00140800094, 0.0221915487, 0.00430907542, -0.0236597694, -0.0353596546, 0.0184292309, 0.00279306085, -0.0214574374, 0.00997166708, 0.0299455896, -0.0336773172, 0.0308938157, 0.030373821, -0.0166857187, -0.00129903143, -0.00684787426, 0.00811345, 0.0286914837, 0.0133669283, 0.00342967245, 0.017496299, 0.00453083823, -0.0115622403, 0.0363996439, -0.0175268874, -0.0122963507, 0.00460730772, -0.00183432037, -0.00835815351, 0.0288444236, -0.0128086982, 0.00598376524, -0.0323620364, 0.0140016284, -0.000609369075, -0.00625140965, -0.0190868732, -0.00922226254, -0.00102756347, 0.0115163578, 0.0154698491, 0.0238891784, -0.0188421682, -0.0121739991, 0.0180162955, 0.0190868732, -0.00452701468, -0.00858756341, -0.00479848264, -0.00136116322, 0.0347784832, 0.0472889505, 0.00118337083, -0.00777698308, -0.0136651611, -0.00140417751, 0.0259232763, 0.001392707, -0.00695110857, -0.0134051628, -0.0149039719, 0.00427466398, -0.00748257386, -0.0382655077, -0.0126710525, -0.0079910988, -0.000678669836, 0.0179092363, -0.00888579525, 0.0122198807, 0.00175593875, -0.012716935, 0.0150569119, 0.0195303969, 0.0126098767, 0.0132751642, 0.0214268491, 0.0107593071, -0.00406437228, -0.011378712, 0.00378334546, 0.00900814775, 0.008472858, 0.00365908188, 0.0238127094, 0.0215339065, 0.0172974784, 0.000398360076, 0.0145139759, -0.0141469203, 0.057291206, -0.0095281424, 0.0139480988, 0.0151104406, -0.0272691455, -0.0135045741, 0.0125945825, 0.0168386586, 0.00188880507, 0.0257550422, 0.00851874053, -0.00224821339, 0.00428613462, -0.00132484, -0.0135351615, -0.0194080453, 0.0436489843, -0.0545077026, 0.00647699554, 0.00733345794, -0.0141469203, -0.0168386586, -0.00221953704, -0.000955873, -0.0222374294, 0.000827786047, 0.0145751517, 0.0429148749, -0.00728757586, -0.00714993, -0.012716935, 0.0188727565, 0.00518465508, -0.0293032434, 0.0103234285, -0.00177410035, -0.00618641032, -0.00101609307, 0.0143916244, -0.00781904161, 0.0117916493, -0.00743669225, 0.00714228302, -0.00470671896, -0.016089255, -0.00733728148, -0.0100634312, -0.00942873117, -0.00870226789, 0.0147816204, 0.0236444753, -0.00300526479, 0.0181080587, -0.00926814508, 0.0192398112, 0.0122963507, 0.0113328304, 0.0259997454, 0.00554406364, -0.00636229059, -0.00642729038, -0.00191652542, -0.00552112237, -0.00307408767, 0.0051158322, -0.0118145905, 0.0137951598, 0.0167468954, 0.0154010262, 0.00850344636, -0.00290394225, -0.00707728369, 0.00938285, 0.0336161405, 0.00808286201, 0.0279420801, -0.00485965842, 0.00818992, -0.0194386337, 0.00595700042, -0.000513303792, -0.0020952737, -0.00480230618, 0.0207845028, -0.0094746137, -0.00331879104, 0.00569317956, 0.0104610743, 0.011141656, -0.00258085714, 0.000459774921, 0.000656684744, -0.0201880373, -0.0102469586, -0.0113557717, 0.00778462971, 0.0157374926, -0.0104304859, 0.0166857187, -0.0113328304, 0.00300526479, 0.000325952686, -0.00568170939, -0.00785345305, 0.0172363017, -0.00872520916, 0.00932167377, -0.00424025254, -0.00145579455, -0.00497818645, 0.0110575389, -0.000802455412, 0.00993343256, 0.00150741171, 0.0172363017, 0.0230785981, -0.00173108606, 0.0220691971, 0.00802168623, 0.000639956968, -0.0110116573, -0.0117992964, -0.00668346416, 0.0102622528, -0.00653817132, -0.00249291677, 0.00435878104, 0.00281982543, -0.00591494236, -0.000708301901, -0.00139461877, 0.00157145527, -0.00441995682, 0.0351149514, -0.0129081095, 0.036093764, 0.00110212155, -0.0156610236, -0.0151945576, 0.0195609853, 0.0134816328, -0.0245774072, 0.0170374811, 0.0157374926, -0.0177257098, 0.0173892416, 0.0100863725, 0.0106293084, 0.00253688707, 0.00552112237, -0.0027548261, 0.0208456796, 0.00896991231, 0.0130916368, -0.0199127458, 0.0154774962, 0.0108740116, 0.0314138122, 0.00598758878, 0.016165724, 0.00135638379, -0.00283129583, 0.0125869364, -0.0282020774, 0.022910364, 0.00491318712, 0.0228491891, 0.0148198549, 0.0095281424, -0.0127398754, -0.0162116066, -0.000414132, 0.0114322416, -0.00475260057, 0.00265923864, -0.0118528251, -0.0418137088, -0.00792992301, 0.0161810182, -0.00104190165, 0.00589964818, -0.0120134121, -0.00337232, 0.00915344, -0.0107593071, -0.0141086858, -0.0283397231, -0.0145904459, -0.0169915985, -0.00482142344, -0.0155845536, 0.00749022095, -0.0101169599, 0.0236597694, 0.0308173466, 0.017496299, 0.0079910988, -0.0320867449, -0.00926814508, 0.00893932488, -0.0207692087, -0.0170068927, 0.000665287604, -0.00723022362, 0.0105222501, -0.00321938028, -0.00235909456, 0.00650758343, -0.00619405694, -0.0347173065, -0.0260303337, -0.030297352, -0.00215644948, -0.00757051446, -0.0119828237, 0.00215836125, 0.0139251584, -0.00302438228, 0.014988089, 0.000556318089, -0.0173127726, -0.00905402936, -0.00103138702, 0.00482907053, -0.0165633671, 0.00994872674, -0.0125028193, 0.012479878, -0.0199739225, -0.00339334924, 0.0136728073, -0.00463024899, 0.0142386844, 0.00790698174, -0.00719198864, -0.00929108541, -0.0184598193, 0.0136651611, 0.00955873, 0.0067408164, 0.00473348331, 0.0178939421, 0.00806756783, 0.0120516466, -0.00267644436, -0.012946344, -0.0154469078, -0.0226656608, 0.0247150529, 0.00498201, -0.0181386471, 0.0154086733, 0.0172057152, 0.0130457552, -0.00250629894, 0.00877873786, -0.000273618643, -0.0155616123, 0.0133669283, 0.0300220605, -0.00238585914, 0.0304808784, 0.00941343792, -0.0133286938, -0.0152939679, 0.00893932488, 0.00493230484, 0.0217786115, 0.0297008865, 0.0122963507, 0.0250974018, -0.00192799582, 0.00723022362, 0.00168998353, -0.0120592937, 0.00619023386, 0.0171445385, -0.0285079572, -0.0189492274, -0.00506612705, 0.000150311025, -0.00861815084, 0.0037431987, 0.0100022554, 0.00106579845, 0.00843462348, 0.00760874944, -0.0104687214, 0.00157719047, 0.0195915736, -0.0020513034, -0.00842697639, 0.0193621647, 0.014276919, 0.0161045492, -0.00128947268, -0.02135038, -0.0135275153, 0.0137951598, 0.0101704886, -0.00332452636, -0.00763169024, -0.0308938157, 0.00896226522, -0.00505465642, -0.0147357387, -0.0271620881, -0.0293950066, 0.0201880373, 0.00578112, 0.0273456145, -0.00493995193, 0.0125487009, -0.0151716163, 0.0112104788, 0.00870991498, -0.00857991632, 0.0108051887, -0.00730669312, -0.0213044975, -0.0015322644, -0.0130228139, -0.0111569501, 0.0226962492, 0.013106931, 0.00155998475, -8.96877737e-06, 0.0139022171, -0.00981872808, 0.00509671494, -0.0189033449, -0.00381202158, 0.0245315246, -0.0255715158, -0.0188727565, 0.00628199754, -0.00639670203, -0.02809502, 0.00274909078, 0.00505465642, 0.00629346818, 0.0199433342, -0.00552494591, 0.00931402668, -0.00437789829, -0.0106369546, 0.00669875834, 0.0135657499, -0.00872520916, 0.0134586925, 0.0220844895, -0.00175307109, 0.00756286737, -0.0152098518, 0.00815168489, -0.0162727814, 0.00942108408, 0.0205398, 0.0220080204, 0.0119063547, 0.00287144259, -0.0334326141, 0.0092987325, -0.000536722713, 0.0244703498, 0.01333634, -0.0191633422, 0.0189645216, -0.0129004624, -0.0198209826, 0.0130457552, -0.00128373748, 0.00392672652, -0.00164601335, -0.0248221103, 0.0286150146, 0.0118834134, 0.00667199353, 0.0060258233, -0.00011960361, 0.0130228139, 0.00610229326, 0.0076508075, 0.0232162438, 0.0107287187, 0.0099563729, 0.0161198433, -0.00198056898, 0.000454278663, 0.0164104272, -0.00633170269, 0.000473874039, 0.00670258142, -0.0242715273, 0.0164257213, -0.0174657125, 0.0139557458, 0.0122810565, 0.00951284822, 0.00189549616, -0.00802168623, 0.0171598326, -0.00951284822, -0.0016852041, 0.0063890554, 0.00975755136, 0.0155769065, -0.00697022583, 0.0199127458, 0.00526112504, 0.00798345171, 0.00355393579, -0.0223291945, 0.017741004, -0.00593023608, -8.28025e-05, -0.00197865721, 0.00451936759, -0.00586906029, -0.00530700712, -0.0168539528, 0.0199739225, 0.00697787292, -0.0204174481, 0.00338187884, 0.0067714043, -0.00541788805, -0.010591073, 0.0262597427, 0.0159974899, -0.0162727814, 0.00198439229, 0.0182915851, 0.0217021406, 0.00241453527, -0.00886285491, 0.00497436337, 0.014521623, -0.0171751268, -0.000726463506, -0.0255256332, -0.022053903, 0.00252159312, 0.00640434911, -0.0310008731, 0.0172363017, 0.0194233395, 0.0378984548, 0.00121204695, -0.00201306865, -0.0040490781, -0.00569317956, -0.00491318712, -0.00309320516, -0.0280644316, -0.0056740623, 0.0071575772, -0.00802933332, 0.0114322416, -0.000200613853, -0.0176798273, 0.00215836125, -0.00752080884, 0.00867168, 0.0255715158, -0.00345834857, 0.0184904076, 0.00794521626, -0.016869247, -0.003041588, 0.00137263362, -0.0018811581, -0.00662228838, 0.0133439871, 0.0168080702, -0.00566259166, -0.0117228264, 0.00992578547, 0.00436260458, 0.0167316012, 0.0105069559, -0.00968108233, 0.00727610523, 0.0302055869, 0.0254797507, -0.00904638227, 0.0112716546, 0.00218130229, 0.00310849911, 0.0243479982, -0.0220997836, -0.0117228264, 0.00383878616, -0.00524583133, -0.000124024518, 0.0113710659, 0.00833521318, 0.0142998602, -0.0184751134, 0.00577347307, 0.000328103401, 0.0114169475, -0.00497818645, 0.0105222501, -0.00237821206, -0.000887050177, -0.00190314313, -0.0133975167, 0.00047267921, -0.00904638227, 0.028171489, 0.000489884929, 0.00307599944, 0.0278044343, 0.017190421, -0.0157374926, 0.0179857071, -0.0268562082, -0.0172210075, 0.031780865, 0.0182609987, 0.00351761281, -0.00117190031, 0.00192895171, -0.00464936625, 0.0165939555, 0.00206277403, 0.0024049764, 0.0205550939, 0.0233385954, 0.0271467939, -0.0198515709, -0.0348702483, 0.00612523453, 0.0018868933, -0.00521142, 0.00102756347, -0.0178327672, 0.0112334201, -0.0072684586, -0.0249291677, -0.00263629784, -0.0103769572, -0.0140933916, 0.017496299, 0.016165724, -0.0100175496, -0.0101322541, 0.023002129, 0.0172821842, -0.00465701334, -0.0171292443, -0.00253879884, -0.000390713103, 0.0120975291, 0.024883287, 0.0187809933, -0.0016794689, 0.0205856822, 0.0150569119, 0.0155616123, -0.0110804802, -0.0162880756, -0.0074863974, -0.0369808152, -0.0259538647, -0.0182151161, -0.00864109211, -0.000957306824, 0.00257894536, 0.0232927129, -0.0139175113, -0.00593023608, 0.0112869488, -0.00437025167, -0.0270856172, -0.00271850289, -0.00545612304, 0.00579641387, 0.00587670738, 0.0069358144, -0.0195762794, -0.00570465, 0.000134897578, -0.0243479982, 0.0167927779, -0.0086487392, -0.00315820449, 0.00339334924, -0.0129922265, -0.0159363151, 0.0224056635, -0.00174733589, 0.0131222252, -0.00214115554, -0.00268217968, 0.0173280668, 0.0139328055, -0.00695110857, -0.00348320138, 0.0100557841, -0.019377457, 0.0225433093, 0.0172363017, -0.0220080204, 0.00119197369, -0.00927579217, -0.0187809933, 0.00739463372, 0.00227880129, 0.0110728331, 0.00827403646, 0.010285194, -0.0111034205, -0.014437506, 0.0166245438, -0.0096275527, 0.0103693102, -0.00725698797, -0.0101016657, 0.0166551322, 0.00697022583, 0.0250209328, 0.0105298972, -0.0219162572, 0.00594170671, -0.00199012761, 0.0123651735, 0.00813639071, -0.022053903, 0.0204633288, 0.000808668556, -0.00461877836, -0.0187198166, -0.0151869105, -0.0186433475, 0.00440083956, 0.0196374562, 0.000888006, -0.0271773823, 0.00762021961, 0.0161504298, -0.0120592937, 0.00354055362, 0.0078687463, -0.000635177596, 0.0163339581, 0.038204331, 0.0186586417, 0.0352984779, 0.000886572234, 0.00789933465, 0.0034373193, -0.0153474975, -0.012166352, 0.0119675305, 0.0184904076, -0.0170068927, -0.000515693508, 0.00495524565, -0.036032591, 0.0271009114, 0.00710787158, 0.014674563, -0.00569317956, -0.00316967489, -0.0159363151, -0.0136881014, 0.000215429885, -0.00953578949, 0.00224821339, 0.0109198932, 0.00394584378, -0.00385790342, -0.0153169092, -0.00857226923, -0.0162421949, -0.0306797, 0.0156610236, -0.0146133862, 0.0056740623, 0.00251776958, -0.00991813838, -0.00942108408, -0.00250247563, -0.0137492772, 0.000819183188, -0.00816697907, 0.000397882133, 0.0279573742, 0.0238585901, -0.00284085469, -0.0103004873, -0.00129903143, 0.000888006, 0.0291044209, 0.0139404517, -0.0253115166, -0.0129922265, 0.0119522363, -0.0180010013, 0.019377457, -0.0145751517, 0.0149269132, 4.90482344e-05, 0.0132904584, -0.00443142746, 0.00424025254, 0.0190104023, -0.004435251, -0.0140016284, -0.00505083287, -0.00478318846, -0.0206315629, 0.00140608917, 0.0078687463, 0.00300908834, 0.0015322644, -0.00493612839, -0.000124860919, 0.0303279385, -0.0154163204, -0.00285423687, -0.00339717278, 0.0194692221, 0.0479924716, 0.00242027058, -0.0277891401, 9.47509106e-05, -0.0190868732, -0.00904638227, -0.0289514828, -0.0191327538, -0.00395349087, 0.0159669034, 0.00116998854, -0.00867168, -0.00410643034, -0.00272614975, 0.0282938406, 0.01075166, -0.00370305218, -0.00863344502, 0.0187657, -0.0196068678, -0.0105757788, 0.0112640075, 0.0216256715, -0.0329126194, -0.0213656742, 0.0167774837, -0.00967343524, -0.0209986176, 0.0253879875, 0.0266420934, 6.64331747e-05, 0.00382349198, 0.00531847728, -0.00942108408, -0.00477936491, -0.0435572229, -2.40909867e-05, -0.00881697237, 0.0183068793, 0.0182762928, -0.00991813838, -0.000233233019, -0.0140933916, 0.00325952703, -0.0179092363, 0.0091993222, 0.000694441725, 0.013886923, 0.0101551954, -0.00900814775, 0.0123422323, 0.00562435668, -0.0108357761, -0.0169304237, 0.0127398754, -0.0039076088, 0.0263973884, -0.00526877213, -0.0149727948, 0.0123728206, 0.00781139452, -0.00914579257, 0.0187504049, -0.00319261593, 0.00253115175, 0.0101322541, -0.0209221486, -0.0260609221, 0.00609846972, -0.0192092247, 0.00635846751, -0.00394202024, 0.0351149514, -0.00426701736, -0.000530509511, 0.00561288651, 0.00225586025, 0.013657514, 0.0259079821, -0.00412172452, 0.0194080453, -0.0047640712, -0.00527641922, -0.00357114151, 0.00443142746, 0.0370419919, 0.0317502767, -0.0170221869, 0.00441995682, 0.0149345603, -0.000717860647, -0.0217480231, -0.0279267859, -0.0147204446, -0.0106828371, 0.00997166708, 0.0029077658, -0.00694346149, -0.00764698396, 0.017970413, -0.0181539413, -0.0278044343, 0.0219315514, 0.0126022296, 0.00807521492, -0.00188976096, -0.0163798407, 0.00997166708, 0.00325761526, -0.00518465508, 0.00783815887, 0.00166321907, 0.00910755806, 0.00160395494, 0.0242256466, 0.0213809684, -0.0232162438, -0.0221762545, 0.00497436337, -0.00983402133, -0.00816697907, 0.0164410155, -0.00606405828, -0.00826639, 0.0191174597, -0.0112793017, -0.0187504049, -0.00970402267, 0.0104610743, 0.0118604722, -0.0171292443, -5.88160619e-05, -0.0224056635, -0.02150332, 0.00189740793, 0.00634699687, -0.0032920267, -0.00765463104, -0.0141928028, -0.00591111882, 0.00857226923, 0.0200045109, -0.00203409768, 0.00429760525, -0.020172745, -0.00360746472, 0.024638582, 0.00310849911, 0.00658787694, -0.00558229862, 0.000670067, -0.00469907187, -0.0108740116, -0.020799797, -0.0123345852, 0.00763933733, -0.00903108809, -0.000397165248, 0.0124569368, -0.00253688707, -0.0252044592, -0.00311232265, -0.0129769323, 0.0388160907, -0.0153551446, 0.016318664, 0.00506230351, -0.0101857828, 0.0130457552, -0.00661846483, -0.0130457552, -0.0124034081, -0.00491701066, 0.00481377635, 0.0096275527, 0.00373364, 0.012242822, 0.0184751134, -0.00389805017, -0.0119216479, 0.0106063671, -0.0212127343, 0.00343923108, -0.0132751642, 0.0103922514, 0.0106675429, -0.00843462348, -0.00442760391, 0.00858756341, 0.00796815753, 0.0161351357, 0.00693199132, -0.000368728, -0.0022711542, 0.00159248442, -0.0216256715, -0.00618258677, 0.00179035019, -0.0102546057, 0.00366099365, -0.0229868349, -0.00396113796, 0.0182304103, 0.0108663645, 0.00459583756, 0.0182304103, -0.014276919, -0.00636611413, 0.0179551188, 0.0127628166, -0.00928343832, -0.0099563729, 0.00811345, -0.0122581152, 0.0152710276, 0.0053681829, 0.0327596813, -0.0248068161, 0.0136498669, 0.0105604855, 0.00775786536, -0.00131432537, -0.00253306353, 0.00519994926, -0.00637376122, -0.00480995281, -0.0160127841, 0.0158904325, 0.02401153, -0.0101781357, -0.0076278667, -0.00711169513, -0.0227727182, -0.000509958249, -0.00848815218, 0.0212127343, 0.00871756207, 0.021029206, -0.0148504432, -0.0363078825, -0.0306338184, -0.0197751019, -0.0103310756, -0.00381775689, -0.00647317199, -0.00352908322, -0.0109504815, 0.0329432078, -0.000288195704, 0.00379672763, -0.00528024277, 0.0125257596, 0.00154755847, 0.00565876812, 0.00740992744, -0.002393506, 0.0234915353, 0.00162211654, -0.0793451071, -0.0242409389, 0.0264126826, 0.0265656225, 0.0138410414, 0.0216103774, 0.00779992389, 0.00723404717, 0.00276438473, 0.0168233644, 0.0177562963, -0.0146133862, 0.0120592937, 0.00545612304, -0.0162727814, -0.00844227057, 0.0192856938, -0.0119063547, -0.0280185491, -5.41561822e-05, -0.00979578681, -0.00231703627, -0.00993343256, 0.0055555338, 0.0044887797, 0.000146965482, -0.00207042089, -0.0135275153, -0.00854932796, -0.0196374562, -0.00182954094, 0.00271850289, -0.00578876678, 0.00243938784, 0.000246615236, -0.0269479714, -0.0132522238, -0.00820521358, 0.00132675178, -0.0155080836, 0.00382158044, 0.00663758209, 0.00785345305, -0.000780948263, -0.0125334067, 0.00874050334, 0.00530700712, -0.0145139759, -0.0179092363, 0.0129081095, -0.0123422323, 0.00413319515, -0.0110498918, -0.0175268874, -0.0276667885, 0.0116463564, 0.00208571483, -0.022206841, -0.00247762282, 0.0236750636, 0.0118145905, -0.026840914, 0.0167774837, 0.0173280668, 0.0174657125, 0.0161810182, -0.0133516341, 0.0165633671, 0.011531652, -0.000821572845, -0.0107363658, -0.0192092247, -0.0176645331, 0.00141947146, 0.0140322158, -0.00194137811, -0.0101322541, 0.00783051178, 0.00249674032, 0.00971167, 0.0242103525, -0.00760492589, -0.0115851806, 0.00411025388, 0.0116769448, -0.00243365276, 0.0220233146, 0.00281409, 0.0265962109, 0.00572759099, 0.0226503666, -0.00111168029, -0.0175574757, -0.00320217456, 0.011929295, 0.01004049, -0.0187809933, -0.0119904708, 0.00572376745, 0.0142692728, 0.00763169024, -0.0122351749, 0.00269365, 0.000627052679, 0.00709257787, -0.00109543046, -0.0162421949, -0.0143151544, 0.0205703881, -0.0140704513, 0.0430372283, -0.00215262594, -0.0106522487, -0.0108663645, 0.00663375854, 0.0216103774, -0.0166857187, 0.00218703737, 0.00278732576, 0.0200809799, 0.00195762794, 0.00135925144, -0.0170680694, 0.0110269515, -0.0142080961, -0.0105681317, -0.00396113796, -0.0137645714, -0.00877109077, -0.00232277135, 0.00406437228, -0.00290011871, 0.0135581028, -0.0165021922, -0.00088752812, -0.0115087107, 0.00323849777, -0.00348893646, 0.000807712728, 0.0267338566, -0.00844991766, 0.00473348331, 0.00532994792, -0.0203409772, -0.0247150529, -0.0280032568, -0.00738316309, 0.0343502536, 0.0089775594, 0.00114991528, -0.020478623, -0.00867168, 0.0264585651, 0.00401466666, 0.00236674165, -0.0377149247, 0.0284009, -0.007023755, -0.00798345171, -0.0211056769, -0.00560906297, 0.00208380329, -0.0028332076, -0.00687846215, 0.00865638629, 0.0225127209, 0.00707728369, -0.0206315629, 2.08051733e-05, -0.0058078845, 0.0158445518, 0.020172745, 0.0165939555, -0.0104151927, 0.0049284813, -0.014827502, 0.00285041332, -0.0176339447, 0.00654199487, 0.00110212155, 0.0168998353, -0.000720250304, -0.00411025388, -0.00808286201, 0.0272844397, 0.00331879104, -0.00833521318, 0.00377378659, 0.0130457552, -0.00879403204, 0.0198362768, 0.0125869364, -0.0170680694, 0.0191633422, -0.0297773555, -0.00368393469, 0.00931402668, 0.0228491891, -0.0123575265, 0.00758198462, -0.0255103391, -0.00502024498, 0.00439701602, 0.00170718925, 0.00268409145, -0.0200809799, -0.0103157815, 0.0158904325, -0.0136957485, -0.0236444753, 0.00742139807, -0.01412398, -0.00879403204, 0.0171598326, -0.00725316443, -0.00538347661, -0.00272041466, -0.0020092451, -0.00724551734, 0.0276973769, -0.00155520544, 0.00352717144, 0.0333714373, 0.00909991097, 0.0186433475, 0.00570082664, 0.00081297, 0.0152863218, -0.0217786115, 0.000291302305, -0.00192704, -0.0151104406, 0.0330961458, -0.00599141186, 0.00693963794, 0.00115087116, -0.0150645589, 0.0189798139, 0.00688993279, 0.0205550939, -0.00701228436, 0.0224362519, -0.0066949348, -0.007375516, -0.0033589378, -0.013886923, -0.00145292701, 0.00561671, -0.000653817144, -0.00718434155, -0.0126557583, 0.00299570593, 0.00369731686, 0.00182093808, 0.00332835, 0.00266497396, -0.0368584618, 0.00585376658, 0.00604876457, 0.0426701717, 0.00187255524, -0.00590347173, -0.0124722309, -0.0182304103, 0.0108587174, 0.00979578681, -0.00525347795, -0.0092528509, -0.00507377414, 0.0022290959, 0.00917638093, 0.0059493538, 0.00680199219, -0.012005765, 0.0171751268, 0.00749786803, 0.000330254115, -0.00281409, -0.0196833368, -0.0103310756, -0.0147892674, -0.0132675171, 0.000128206462, 0.0130839897, -0.0147739733, -0.00549435802, 0.0150645589, -0.00615582243, 0.00530318357, -0.00957402401, 0.0260456279, -0.000446153717, 0.000362992781, 0.00241262349, 0.00143094186, -0.0212127343, -0.00802168623, 0.012869874, -0.00731051667, -0.0185057018, 0.0018620406, -0.00636611413, -0.00991813838, -0.0189492274, -0.0197598077, -0.00663758209, -0.00845756475, 0.00255409279, 0.00372408121, -0.00615582243, -0.0405901931, 0.0166551322, -0.00558994524, 0.00403378392, 0.00311996951, -0.0239809416, -0.021900963, -0.00228836, 0.0112334201, -0.00477554137, 0.00388657977, 0.00802168623, 0.000243030721, 0.0149039719, -0.00780757098, 0.00471054204, -0.00796051, -0.00413319515, 0.0084193293, 0.015148676, -0.0031276166, 0.0180621762, -0.0126557583, 0.0178786498, 0.00388849154, 0.00424025254, 0.0129310498, -0.0246997587, 0.00939049665, -0.00412554806, -0.000526686, -0.00667199353, 0.00190409902, -0.00468377769, 0.0150798531, 0.000181137933, 0.00311041088, 0.0117304735, 0.0167010128, -0.00991813838, -0.0184904076, 0.00726081152, 0.00369731686, 0.0110422447, 0.0119445892, -0.00263056252, -0.0182762928, -0.00468760123, 0.00808286201, -0.00818227325, 0.0135045741, -0.0146286804, -0.012319291, 0.00653817132, 0.0125716422, -0.0119216479, 0.0379596278, 0.00100557844, -0.0220844895, -0.00286953081, 0.0152480863, -0.0222833119, -0.00271276757, 0.0624911562, 0.015462202, 0.00930638, 0.00279114931, 0.0160127841, -0.0178939421, -0.00227688951, 0.0396725535, -0.0319338068, -0.0117151793, -0.00499730418, 0.0104457801, 0.0186586417, 0.00739845727, 0.0175727699, -0.00464171916, -0.0143992715, -0.01404751, 0.00168711587, -0.0198056884, 0.00978814, 0.0027548261, 0.00292879483, -0.0212433226, 0.0150186764, 0.000981681631, -0.0100710783, 0.00588435447, -0.0117228264, 0.023460947, 0.00974990521, 0.00488259923, -0.0159363151, 0.0102928411, -0.00317541021, -0.0155310249, -0.0301902927, 0.00212586159, 0.0222680178, -0.0010199165, 0.0274067912, 0.00603729393, 0.0161504298, 0.0016421898, 0.0156380832, -0.0109275403, 0.00809815619, 0.00469142478, 0.0109428344, -0.0173280668, -0.00089039572, -0.0192245189, -0.00389996194, -0.0301291179, -0.00976519845, 0.0106904842, 0.00483671762, -0.00728757586, -0.00701228436, 0.0166551322, 0.00841168221, 0.024638582, -0.00649611326, -0.033891432, 0.0126481121, 0.00205895049, -0.00403760746, 0.0175268874, -0.0192856938, -0.00831227191, 0.0217021406, -0.018520996, -0.0145522105, -0.0143151544, 0.000820139074, -0.00147586793, -0.0081440378, -0.0102775469, 0.0132522238, 0.00345070171, 0.000806756841, 0.000530987454, -0.00977284554, -0.0140169216, -0.000530031568, 0.00832756609, -0.0110575389, -0.0203562714, -0.0006504716, 0.0112104788, 0.00948990695, 0.00681346282, 0.012716935, 0.0171751268, 0.00268217968, -0.0180010013, 0.000473396125, 0.0086487392, 0.00667964062, -0.0140704513, 0.0308938157, 0.0185362902, -0.0131222252, -0.0238280017, -0.0240727067, 0.00946696661, 0.00739463372, -0.000909991097, 0.00616729259, -0.00854932796, -0.00273188506, 0.0163492523, 0.0260456279, 0.0118375318, 0.00415613595, -0.0344726034, 0.0177868847, -0.0101322541, 0.00206277403, -0.00463024899, -0.00442378037, -0.00341629027, 0.000779514434, 0.00109447457, -0.000785727636, 0.00862579793, 0.0186586417, -0.0213656742, 0.0134357512, -0.00316776312, 0.00474495348, -0.0207845028, 0.00387319736, -0.0135275153, -0.000485822471, 0.0112410663, -0.0126098767, 0.0193162821, -0.00120726763, 0.0386019759, 0.00716140075, -0.0194845162, -0.00760874944, 0.0146516217, 0.0124263493, -0.0129845794, 0.0205245055, -0.0291503035, 0.00937520247, -0.00651140697, 0.0106140142, 0.0297008865, 0.00854168087, -0.0111569501, 0.0169304237, 0.0101475483, 0.0170833617, -0.0142233903, 0.042058412, -0.00303202914, 0.0123269381, 0.00057209, -0.0013009432, -0.000115003473, 0.0185668766, -0.0278197285, 0.00563582731, 0.00737169292, 0.0235068295, 0.0106446017, 0.000792896666, 0.0269173849, 0.0131986942, 0.0237362385, -0.00195762794, -0.00191748131, 0.0122657623, -0.00316202804, 0.00201880373, -0.038204331, 0.0170986559, 0.00735257519, -0.00187159935, 0.0379902162, 0.0184292309, -0.0260150395, -0.00541024143, 0.00477554137, -0.0023380653, -0.001520794, -0.0156916119, 0.01726689, -0.00961225946, 0.00129138445, -0.0266420934, -0.0368278772, 0.0408043079, -0.00601052959, -0.00738316309, -0.017817473, 0.0195609853, -0.00549818156, 0.0115087107, 0.0196527485, -0.0118222376, 0.0164716039, 0.0146057401, 0.0129234036, -0.00216409657, 0.00576200243, -0.0223750751]
13 Jun, 2022
list cbegin() and cend() function in C++ STL 13 Jun, 2022 The list::cbegin() is a built-in function in C++ STL which returns a constant random access iterator which points to the beginning of the list. Hence the iterator obtained can be used to iterate container but cannot be used to modify the content of the object to which it is pointing even if the object itself is not constant.Syntax: list_name.cbegin() Parameters: The function does not accept any parameters.Return value: It returns a constant random access iterator which points to the beginning of the list.Below programs illustrate the above function: CPP // C++ program to illustrate the // cbegin() function #include <bits/stdc++.h> using namespace std; int main() { // declaration of list list<int> lis = { 5, 6, 7, 8, 9 }; // Prints the first element cout << "The first element is: " << *lis.cbegin(); // printing list elements cout << "\nList: "; for (auto it = lis.cbegin(); it != lis.end(); ++it) cout << *it << " "; return 0; } Output: The first element is: 5 List: 5 6 7 8 9 Time Complexity: O(1) Auxiliary Space: O(1) The list::cend() is a built-in function in C++ STL which returns a constant random access iterator which points to the end of the list. Hence the iterator obtained can be used to iterate container but cannot be used to modify the content of the object to which it is pointing even if the object itself is not constant.Syntax: list_name.cend() Parameters: The function does not accepts any parameter.Return value: It returns a constant random access iterator which points to the end of the list.Below program illustrates the function: CPP // C++ program to illustrate the // cend() function #include <bits/stdc++.h> using namespace std; int main() { // declaration of list list<int> lis = { 10, 20, 30, 40, 50 }; // printing list elements cout << "List: " << endl; for (auto it = lis.cbegin(); it != lis.cend(); ++it) cout << *it << " "; return 0; } Output: List: 10 20 30 40 50 Time Complexity: O(1) Auxiliary Space: O(1) Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL
https://www.geeksforgeeks.org/list-cbegin-and-cend-function-in-c-stl?ref=asr9
PHP
list cbegin() and cend() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[0.00960897561, -0.000888985465, -0.0121129658, 0.0185143501, -0.000230653357, -0.0428506508, -0.0250950847, 0.0225566048, 0.000673852686, 0.00722225243, -0.0413606726, 0.011988801, 0.00784307625, -0.023894826, 0.0147756105, 0.00259366469, 0.0205561724, 0.0176314, 0.016458733, -0.00630136346, 0.00873292424, -0.0157413371, -0.00913990848, 0.00680837, -0.0030368641, 0.0146100577, -0.023577515, -0.00749127613, 0.00474585453, -0.0180866718, 0.0331933908, 0.00429748138, 0.00949170906, -0.0343246683, -0.0070394543, 0.0165415108, 0.0372770317, -0.00152446784, -0.0555154607, -0.0305169486, 0.0253848024, 0.00377323013, 0.0178797301, -0.00461479183, -0.0273024589, 0.0330830216, -0.00735331513, -0.0530597568, -0.0185695346, -0.00961587392, 0.0123061109, 0.0127061978, 0.0493899956, 0.00338866422, 0.0393464454, 0.00911921449, 0.0190937873, 0.0173830725, -0.036835555, -0.00703600515, -0.019976737, -0.0200319216, 0.0045354641, -0.0325311758, 0.0190937873, 0.0130579975, -0.060371682, 0.0623583198, 0.00698426971, -0.00584264332, -0.0637931153, 0.0193559118, 0.0159482788, 0.00438715611, -0.036752779, -0.0228049345, 0.00889157876, 0.0220047608, -0.0180590805, 0.035290394, -0.00518732937, 0.00234533497, -0.0196180381, -0.0167070627, 0.020335434, -0.0195490569, -0.00636344589, -0.0327519141, 0.0478724279, 0.00394568127, -0.010422945, -0.00152791687, 0.0147066303, -0.0302962102, -0.0125544406, -0.0028247491, 0.0267644115, 0.00694633042, -0.0279646721, 0.0387118235, -0.000109775909, 0.0322828479, -0.00092088891, -0.0108299293, 0.0174934398, 0.0401742086, 0.033745233, 0.00221944577, 0.00855357479, -0.0186523125, 0.00104419142, 0.00147790601, -0.0065014069, 0.0534184538, -0.0247087944, -0.0134856766, 0.02148051, -0.0196732227, 0.0299099199, 0.017686585, -0.00401811069, 0.0234809425, 0.0189006422, 0.049527958, -0.059654288, 0.018790273, 0.0165691022, 0.00465962896, -0.00786377, 0.0174244605, 0.0100366548, -0.0447545126, 0.0127337901, -0.0138305789, 0.0258124825, 0.0161966085, -0.000938134035, 0.0330278352, -0.0213149562, -0.00753956242, -0.0336072706, -0.0220461488, 0.00514594093, 0.0353455804, -0.0517629236, -0.0352628, 0.00277128932, 0.0355111323, -0.0222117025, -0.0112093221, -0.0317585953, 0.01251995, 0.0472929925, -0.0334693119, 0.0243087076, -0.0385462716, 0.0330554284, -0.00667385804, 0.0311791599, -0.0219771694, 0.016969189, 0.02084589, 0.00139426719, -0.0264333058, -0.0134994723, 0.0464928187, 0.0334693119, -0.0124509698, -0.0647312477, 0.0458030142, 0.0314274915, 0.0193007272, -0.00853288081, -0.00500453124, -0.0123681938, -0.0443682224, 0.0350696556, 0.0110920556, 0.0187212918, 0.0118508404, 0.0210390352, -0.019342117, 0.0174520519, -0.00974693708, -0.0130786924, 0.00578401, 0.0430989824, -0.00473205838, 0.000800173148, -0.0212045889, 0.00676698145, -0.0103263725, 0.0400086567, 0.0251778625, 0.0291373394, 0.0111886282, -0.0156999491, -0.0157137457, -0.00441819755, 0.0683182329, 0.00214529177, 0.0103194742, 0.0332761668, -0.00520802336, 0.0443682224, -0.00637379289, 0.000297262595, -0.0104505373, -0.00341970543, -0.0162793845, -0.0067428383, 0.00971244648, 0.0293856692, 0.000590213924, 0.0305445399, 0.011650797, -0.0277163424, 0.00773960585, -0.031731002, -0.0166656747, -0.00743609155, -0.00318517187, 0.0663315952, -0.0501625799, -0.0432369411, -0.0385186784, 0.012264723, 0.0165553056, -0.000765682897, -0.0177555662, 0.0179901, 0.0175486244, 0.00129338331, -0.0144307083, 0.000822160684, 0.00190903374, -0.0280750412, -0.0246949978, -0.0305721331, 0.0352628, 0.0380496122, 0.0277163424, -0.0331657976, 0.0212597717, 0.0222944785, 0.0267506167, 0.00640483433, -0.031372305, 0.00687735, -0.0244052801, 0.00196076906, 0.0166656747, 0.0379944295, 0.000375296717, -0.0102642896, -0.000994180678, 0.02084589, -0.00856737141, 0.0125682363, 0.0175072365, -0.000618668331, 0.0327243209, -0.0162104033, 0.00272472762, 0.0109196045, 0.00674973615, 0.0370287, 0.00720155844, -0.0258538704, -0.0309584234, 0.0203216393, -0.00436301297, 0.0299926959, -0.00661522429, 0.00803622138, 0.0172175188, 0.00389394606, 0.00416986784, 0.0270679258, -0.00691528944, -0.00628066948, -0.0250812899, 0.014278952, 0.0186385158, 0.0316482261, -0.0243225042, -0.0517077409, -0.0243914854, 0.00480448781, -0.00617030077, -0.0339383781, 0.0146100577, 0.00227463013, 0.0449752472, 0.0192593392, 0.0416917801, -0.0150791248, -0.0382703505, -0.0401466191, -0.028723456, 0.0161138307, -0.0118232481, 0.00516318623, -0.03749777, -0.00064367376, -0.0289441943, 0.011333487, -0.0291097462, 0.039870698, 0.00610821834, -0.0143755246, -0.0855909362, 0.0194800775, -0.0123681938, 0.00169605669, -0.014913572, 0.0304065794, -0.0098986933, -0.00355249271, -0.0042836857, 0.0285303108, -0.0224324409, 0.00229015062, 0.0245570373, 0.0158517063, -0.0371390693, 0.00991249, 0.00694633042, -0.00576331606, -0.0498590656, -0.0153964348, 0.010719561, -0.0289166011, -0.0212597717, -0.0292753, -0.0315654501, -0.0326415449, -0.0212321803, 0.0240465831, -0.00270748232, -0.0202802494, -0.00323863188, -0.00307652773, 0.000560035, 0.00590127707, -0.0328071, -0.00683596171, 0.00651175389, 0.0368907414, 0.00461134268, 0.00121146906, -0.0123888878, -0.00860875938, -0.0336072706, 0.0429886132, -0.00257297046, -0.00016975656, -0.0398982875, -0.0142099708, 0.046520412, -0.00149773783, 0.0437060073, -0.00443544239, 0.0398431048, -0.00197628979, -0.0455546863, -0.00567364134, -0.0216322672, 0.022666974, -0.00143393094, -0.0183074102, -0.0405053161, 0.02211513, 0.00373529107, -0.0201560855, -0.0171071496, 0.0116438987, 0.038022019, 7.7710778e-05, -0.020018125, -0.0140168257, 0.0179349147, -0.00722915027, -0.0135270646, -0.00448028, -0.0271644983, -0.0195628535, 0.0339383781, 0.00643932447, -0.0162793845, -0.0144307083, 0.0280198567, 0.00463203667, -0.00724294642, -0.00149170205, -0.00773960585, -0.0245156493, -0.0334417187, -0.0271093138, -0.0407812372, 0.0120301889, -0.00890537538, 0.0231636334, -0.0215356946, -0.0376357287, 0.0172037221, -0.014913572, -0.0178935267, 0.0112300161, 0.0389325619, 0.00527700409, -0.0233981665, 0.0063358536, -0.016693268, 0.0293580759, 0.0283647589, -0.0211080164, 0.0387946, 0.00994698, 0.00204527, 0.0157965217, -0.032917466, -0.0129269352, 0.0289441943, 0.0227635466, 0.0191903599, -0.0158517063, 0.0131683666, -0.0067531853, 0.0287786406, -0.0435956419, 0.0228739157, 0.00837422535, 0.0362561196, 0.00322656031, -0.0551843531, 0.0435128622, -0.0079948334, -0.0652279, -0.0079879351, 0.0283095744, 0.0404777229, 0.0258124825, -0.00885019079, -0.00475965068, 0.0140582146, -0.0416365974, -0.00140375202, 0.01432034, -0.00730502885, -0.0229566917, -0.0102642896, 0.0163759571, 0.00526320795, 0.0166380834, -0.0124854604, 0.0257710945, -0.0253296196, 0.0340763405, 0.0198249798, 0.00754646026, -0.00657038717, -0.0225152168, 0.00984351, 0.0397879183, 0.00543565908, 0.00321103958, -0.00712568, -0.0223220717, 0.00990559161, -0.025357211, -0.0383807197, 0.0490864851, 0.0187350884, 0.020335434, 0.0102780862, -0.0102435956, 0.0116438987, -0.0678767562, -0.0201009, 0.0261159949, -0.0192317478, -0.0339383781, -0.0263367333, -0.00422160327, -0.0338556021, 0.000595818565, -0.0157275405, -0.0059357672, -0.00121060677, -0.00360077922, 0.0226945654, -0.000567795301, -0.018279817, 0.0161552206, 0.018831661, -0.0467135571, 0.00369045371, -0.00390774198, 0.0215356946, 0.0355387256, -0.0156861525, -0.0476792827, 0.053528823, 0.00702910731, -0.0309860148, -0.036394082, -0.00337486807, 0.0121612521, -0.00137529755, -0.0382703505, 0.0200043283, 0.00531149423, -0.00241948897, -0.00160638208, -0.00632895576, 0.00489761168, 0.0231084488, -0.0471550301, -0.00289200502, 0.0266954321, 0.0135408612, 0.00373184192, 0.0206941329, 0.000632033334, 0.0278129149, 0.0254123956, -0.00420435797, -0.00696012657, -0.0356490947, 0.0219081882, -0.00218840456, -0.00353007414, 0.00754646026, -0.000782065792, -0.00749817397, 0.00412503071, -0.00410088757, -0.0200319216, 0.00663246959, -0.045775421, 0.0264471024, 0.00286441296, 0.0031731003, -0.0191213787, 0.00493899966, -0.00032830381, 0.0317585953, 0.00342660351, 0.00752576627, -0.00563570205, 0.0424367674, 0.019935349, -0.00709808758, -0.0228601191, 0.0104574356, -0.0318965577, -0.016969189, -0.000671697082, -0.0225979928, -0.00472171139, 0.0254675802, 0.0405053161, -0.00244535669, 0.00969865, -0.0196456295, 0.0150791248, 0.0102849845, -0.021439122, 0.0235637203, -0.00600819662, -0.00368700479, 0.0525355041, 0.0020642397, 0.0135201672, 0.0197146107, 0.00863635167, 0.0195766501, -0.0271920916, 0.0289166011, -0.00289028068, -0.0256607253, 0.00154085062, -0.0469342917, -0.0118853301, 0.0195214655, -0.0245708339, -0.00679112459, -0.00528045278, 0.00707739359, -0.0115473261, 0.00898815133, 0.0197835919, -0.00646346761, 0.00690494245, -0.0125889312, -0.00900884625, 0.00979522336, -0.0241845436, 0.00674628746, 0.000653589726, 0.0114300596, 0.0126234209, -0.0684286, -0.0105195176, -0.0165139176, 0.0328346901, 0.0060737282, 0.00412503071, -0.0197146107, -0.0277439337, 0.0210252386, 0.00489071338, 0.00336452108, -0.00519767636, -0.0088157, 0.0127199935, 0.017603809, -0.030461764, 0.0149411643, -0.0327795073, 0.0143755246, -0.0190799907, -0.00484932493, 0.0174934398, 0.0172727033, -0.00611856533, -0.0446717367, -0.0145410774, -0.0175900124, 0.00433197198, -0.0153136579, 0.0155757843, 0.0295788143, 0.00360767706, 0.0156585611, -0.00779479, 0.0176727902, -0.0159758702, 0.024170747, -0.0117542678, 0.00917439908, 0.0140168257, 0.0676008314, 0.000508299621, 0.0170657616, 0.00150377362, 0.0282130018, 0.00377323013, 0.000189804, -0.0189972147, 0.0231222454, -0.00602544192, -0.00358353392, -0.0112920981, -0.0210252386, 0.0162931811, 0.0223496631, 0.00470446609, 0.00623928104, 0.0191765632, -0.0344074443, 0.00350420643, 0.00582884764, -0.00755335856, -0.0315930434, -0.024805367, -0.00232636556, 0.0112507101, -0.0064738146, -0.0333037563, -0.0282543898, 0.0194662809, 0.00966416, -0.0145548731, -0.0210114438, -0.0454719067, 0.0261849761, 0.0249433275, -0.0208182987, -0.013747802, -0.0322276615, 0.00202285149, -0.044451, -0.0179073233, -0.00601509446, 0.0111058513, -0.0158379097, 0.00775340199, -0.0243638922, 0.000830783218, -0.0201146975, 0.0124440724, 0.00159775955, -0.00244363211, -0.0098986933, -0.0042664404, -0.0137891909, 0.00344384857, -0.0247087944, 0.0171347428, -0.00291269924, -0.0268333927, -0.00271093147, -0.00958138332, 0.0300754737, -0.0051286961, -0.0261573847, 0.00662557175, 0.0145548731, -0.00956758764, -0.0146652423, -0.00529424893, 0.0024074174, 0.0141961752, 0.0166656747, 0.0125475423, -0.00381116942, 0.0105747022, -0.0432645343, 0.00127958728, -0.00900884625, -0.0141547872, -0.016693268, 0.0311239753, -0.000892434502, -0.023260206, -0.0272472743, 0.000249191857, 0.00638758903, -0.032200072, 0.00133908284, 0.00924337935, 0.00848459452, -0.0102022076, -0.0139409471, 0.0309032388, -0.00851218682, 0.00220564962, 0.00794654712, 0.00385255786, 0.00668075588, -0.0193559118, -0.00998147, 0.00361112622, -0.00249536755, 0.0177831575, -0.00756715471, -0.0178659353, 0.0189558249, 0.0159068909, 0.03749777, 0.0400086567, -0.0207217243, 0.0103677604, -0.0155757843, 0.0148169994, 0.00431127753, 0.0133339195, 0.00395257957, 0.0342418924, 0.0100780427, 0.00660832645, 0.027178295, -0.0278818943, 0.00290062767, 0.00189868675, 0.0120853735, 0.0177831575, 0.00813969225, 0.00148997759, -0.00582884764, 0.0261573847, 0.00346281822, -0.00129769463, -0.0161690153, -0.0114576519, 0.0188730489, 0.0318137817, -0.00611511618, -0.0236051083, 0.0484518632, 0.0138443746, -0.000124595928, 0.0235499237, -0.0184729621, 0.0167208593, 0.0242259316, 0.033662457, -0.0251640659, -0.0276473612, -0.00376288313, 0.0446165502, 0.0262401607, -0.0179763027, -0.0168036353, -0.00924337935, -0.0397051424, -0.0435128622, -0.0346557759, 0.0392636694, -0.00418711267, -0.00673594046, -0.0192731358, 0.0301306583, -0.00552533334, -0.0286958646, 0.0072912327, 0.00379392435, 0.0295788143, 0.00698771887, 8.41777e-05, -0.0162104033, 0.0228463225, 0.0124785621, 0.00137702213, -0.00816038623, 0.00175210321, 0.0154378228, -0.00316447788, -0.00158568798, -0.0158930942, 0.0282130018, -0.0292477086, -0.0520112552, 0.0323380306, 0.000592800672, 0.0102504939, 0.0346557759, 0.0132235512, -0.0114852441, 0.0207079295, -0.0034541958, 0.018279817, 0.00723604858, 0.0356215, -6.99504817e-05, 0.00405605, 0.0204871912, 0.0288338251, -0.0152446777, -0.0045527094, -0.0271231104, 0.0041181324, 0.0114852441, -0.0114507535, -0.0255089682, 0.00510800164, -0.0209838506, -0.00652210088, -0.0177279748, 0.0111058513, -0.0308480542, 0.0181142651, -0.00565984519, 0.0159758702, -0.0604820512, -0.0136512294, -0.00311964052, 0.00429058354, 0.0100711444, 0.0208182987, 0.00162362715, 0.0389877483, 0.0053873728, 0.0292477086, 0.00264712446, -0.0195490569, 0.0126786055, -0.0035111045, 0.0129614249, 0.00409054, -0.0147204269, -0.0107057644, 0.00163224968, -0.0292753, 0.0321724787, 0.0267230235, -0.0111610359, -0.0413054898, 0.0203078426, -0.0115749184, -0.0417469628, -0.0245846305, -0.00921578705, 0.0113886716, -0.0115266321, -0.0130373035, 0.000129122767, -0.0229566917, 0.0400362499, -0.00747058215, -0.0289441943, -0.0222806837, 0.0222668871, 0.0190110095, 0.0167484507, -0.00685320701, -0.000336495228, -0.0156309679, -0.00789826084, 0.00485967239, 0.0125130527, 0.0266126543, 0.0434852727, -0.00554257864, 0.0342143, 0.00992628559, 0.00265229796, 0.0237982534, 0.0185281467, -0.0327519141, -0.010443639, -0.0330002457, 0.0219357815, 0.00463548582, 0.00469756825, -0.00609097304, 0.0224048477, -0.000150463587, 0.0136788217, 0.00389394606, -0.00632550661, 0.0127406875, 0.0104574356, -0.00990559161, 0.0114576519, -0.0123612955, -0.0296064056, -0.0152032897, -0.0528114289, -0.00982281473, 0.0197973866, -0.0108713182, 0.0134787783, -0.00851218682, -0.0314274915, -0.0374701768, -0.0575572811, 0.0157965217, 0.0121888444, -0.00853288081, 0.0115818167, -0.00839492, -0.00855357479, -0.00243845861, -0.0332485735, 0.010402251, -0.0205561724, 0.000322914711, 0.00361802429, -0.00287820888, -0.00353007414, -0.041415859, -0.0217840243, -0.00503212353, -0.0283095744, 0.00217288407, -0.0191213787, 0.00218323106, 0.0276887491, -0.00779479, 0.0193559118, -0.0106712747, 0.0547704734, -0.019424893, -0.0047113644, -0.0220047608, -0.0254537836, 0.00272645196, 0.0173416827, 0.0022022007, 0.0293304846, 0.0435404554, 0.00738780526, 0.0427402817, -0.0215770826, -0.0248881448, -0.0206665415, 0.0172451101, 0.032200072, 0.0314274915, -0.0234395545, 0.022073742, 0.0230394676, 0.0204733964, -0.00170467922, -0.00223151734, -0.0148445917, 0.010678173, -0.0127613824, -0.0196042415, 0.00542876078, -0.0189006422, 0.00843630824, 0.0476792827, 0.00228497712, 0.00800862908, -0.010740255, -0.00703600515, -0.010802337, -0.000480707473, -0.0160034634, 0.0291097462, 0.00105712528, -0.00913990848, -0.0109058078, 0.014679038, -0.0154378228, -0.00196766714, 0.00845700223, -0.0122026401, 0.00139254273, 0.00276611582, 0.0127061978, -0.00448717782, 0.00612546317, -0.0049803881, 0.0335520878, -0.00185729843, 0.00595991034, -0.0436508246, -0.0323656239, 0.00457685255, 3.79931334e-05, 0.0120922718, 0.00958828162, -0.0147756105, 0.00545635307, -0.00867774, 0.0140168257, -0.00646691676, 0.0276059732, 0.0216460638, 0.000720845652, -0.022666974, 0.0183212049, -0.0301306583, 0.000705325045, 0.0033058878, 0.00893296767, 0.00398706971, -0.00762233883, 0.0091261128, 0.00199698377, 0.00713947602, -0.0135615552, -0.0160172582, -0.0156447645, -0.0100090625, 0.0140858069, 0.0114093656, -0.015230882, 0.020887278, 0.00998836849, 0.00126234209, 0.00500108209, -0.0153136579, -0.0173692759, 0.00994698, 0.00816038623, -0.0210252386, 0.0145548731, -0.00777409598, -0.0153826391, 0.0488381535, 0.0259366464, -0.00429058354, 0.0129269352, 0.0178935267, 0.0146652423, 0.00428023655, -0.0120232916, -0.0328898765, -0.0129131386, -0.00800173171, -0.00709118973, -0.00891227368, 0.0346281826, -0.0275094, -0.0151205128, 0.00727743655, 0.0196042415, 0.0199215524, 0.0289166011, -0.0148721831, 0.0118853301, 0.000403751153, -0.0216736551, -0.0047113644, 0.000441905955, 0.0230118763, 0.00842251256, 0.00538392365, -0.0219909661, -0.0191351753, 0.00436646212, 0.0461341217, -0.0122371307, -0.0248191636, -0.0231498368, 0.0379944295, -0.00417676568, 0.0061875456, 0.00971934479, 0.0038491087, -0.00209528091, 0.00782238226, -0.00320414151, -0.00555637479, 0.0125337467, -0.00347488979, 0.030461764, 0.0170381702, -0.0198525712, -0.0251916572, 0.00965726189, -0.0227773432, 0.00129338331, 0.0123337032, 0.0153826391, 0.0151067171, 0.0120370872, 0.00444578938, -0.0215356946, -0.00484932493, 0.00292821974, 0.0296891835, 0.00320241717, 0.0217150431, -0.0148169994, 0.0173968673, -0.000966588443, 0.00793964881, 0.0174106639, -0.0180176925, 0.00960207731, 0.00974693708, 0.00849149283, -0.00503557222, 0.0223220717, -0.00771201355, -0.0260884035, -0.0100297565, -0.00152360555, -0.0207079295, 0.0153688425, -0.00143220648, -0.00855357479, 0.0143755246, -0.0162379965, -0.0050838585, 0.00186764554, 0.0253710076, -0.00967105851, 0.0325035863, -0.0167484507, -0.0294408537, 0.000813538092, 0.0122509263, -0.0124509698, 0.00659797946, 0.0127889737, -0.0188178644, -0.00813279394, -0.00626342418, 0.017051965, -0.0117197772, 0.0105402116, 0.0241983403, -0.0142927477, -0.00642897747, -0.00234705955, 0.0155343954, 0.0100228582, -0.0208045021, 0.00130890391, 0.00617374945, 0.0296339989, 0.0020590662, 0.0177831575, -0.00360077922, 0.00987799931, -0.0262263641, 0.0107540507, -0.00834663399, -0.0125889312, 0.00687735, -0.00462858751, -0.0230394676, 0.0117956558, -0.00196594256, 0.01283726, 0.00526665663, 0.04423026, -0.0147480192, 0.00984351, -0.00381461857, 0.0291649308, 0.0123750912, -0.0200457163, 0.0119612087, -0.0242949128, 0.0241983403, -0.0115404278, -0.010464333, 0.0247087944, 0.0160448514, -0.00504247053, 0.0130304061, 0.00631515961, -0.0146928346, -0.00679457374, 0.00541496463, 0.0045527094, -0.00709118973, -0.0238810293, -0.0227221586, 0.00567709049, -0.00222461927, 0.0132925315, -0.0231636334, 0.00811899826, -0.00971934479, 0.0167484507, 0.0400086567, 0.0180728752, -0.0224186443, -0.00306100724, 0.00211769971, -0.00479414081, 0.00287648453, 0.0252330452, -0.00967105851, 0.0245708339, -0.0188040696, -0.0163621604, 0.0056563965, 0.0204596, -0.018748885, -0.017603809, 0.00712568, 0.015189494, 0.0143065443, 0.0120577812, 0.0289717857, -0.0148997754, -0.0259366464, -0.0399810635, -0.00543221, 0.00615650462, -0.0136926183, -0.00621858705, 0.00498728594, 0.0310412, -0.00424574642, -0.0573917292, 0.00069368456, 0.0180176925, 0.0321724787, 0.0185971279, 7.30761603e-05, -0.0120853735, 0.00938823819, -0.021439122, -0.00257814396, 0.014913572, 0.0149273677, 8.19142733e-05, 0.0368631482, -0.0493624061, 0.032117296, -0.00183487975, 0.00135891477, 0.0304893553, 0.0041181324, 0.00369390263, 0.00572192762, 0.00856737141, -0.0178659353, 0.00592542, -0.0173968673, 0.0102022076, -0.00659453031, -0.00223841541, -0.00972624216, 0.00724294642, -0.00493210182, 0.0141823795, -0.00600474747, -0.0284199417, 0.0225704014, 0.00781548396, 0.0205009878, -0.00860875938, -0.000990731642, -0.00824316312, -0.0252606384, 0.00340418494, -0.0281992052, -0.00214011827, 0.0133339195, -0.0372770317, -0.0199629404, 0.0101539213, 0.0140720103, -0.00474240538, -0.0132718375, 0.00876051653, 0.00519767636, 0.00995387789, 0.00212632213, -0.00373184192, 0.000860962144, 0.0222944785, 0.0213839374, -0.0239913985, 0.0197697952, 0.000863117806, 0.00885019079, -0.0289993789, 0.00130028138, 0.0306273159, 0.0266678389, 0.0169002078, -0.0242259316, 0.0119956993, -0.0387394167, 0.0138029866, 0.0229704883, 0.0181694496, 0.000440828153, 0.000330675, 0.0305169486, -0.0205975603, -0.0281164292, 0.0224600323, 0.00595991034, -0.000415391609, -0.021439122, -0.00982971303, 0.011354181, -0.000166846454, 0.0158379097, -0.0172865, -0.0128717506, 0.0122992126, 0.00585299078, -0.0167070627, 0.0203906186, -0.014361728, 0.0132994298, 0.0100228582, 0.00628066948, -0.0165553056, 0.0107333567, -0.027095519, 0.00191765628, 0.021439122, -0.00278336089, 0.0111748315, -0.00365596358, -0.0131062847, -0.0287510492, -0.00340935844, -0.00239362149, -0.0118784327, 0.0302962102, 0.031013608, -0.0165139176, 2.57194661e-05, -0.0150515325, -0.0201974735, 0.0122164367, 0.00104677817, 0.023025671, -0.011312793, 0.00679112459, 0.0264333058, -0.025439987, 0.00708429143, -0.0190661941, -0.0353179872, -0.006725593, 0.0241155624, 0.00998836849, -0.0144858928, -0.00085233961, -0.0187212918, 0.00607027905, -0.000625997549, 0.0154654151, 0.00974003877, 0.00917439908, -0.0446717367, 0.0171761308, -0.00316102873, -0.0164311416, 0.0240741745, 0.0168036353, 0.0160310548, -0.000557017105, -0.0131062847, 0.00857426878, 0.00919509307, -0.0150239402, -0.0276611578, -0.0196456295, -0.0239913985, -0.0155757843, 0.0250536967, 0.00942272879, -0.0102022076, 0.0221979059, -0.00674628746, 0.0236464962, 0.010719561, 0.0198801644, -0.0175348278, -0.037580546, 0.0313447118, -0.00393533427, -0.0295788143, 0.00256607239, 0.0098986933, -0.0409743823, 0.0164035503, 0.0156861525, -0.000707480649, -0.0183350015, -0.00251778611, -0.0210804231, 0.0154102314, 0.0200043283, 0.0214667134, 0.00495624496, 0.0127130961, -0.0173692759, 0.0197973866, -0.00493210182, 0.00249019405, 0.00404570298, 0.00865014736, -0.00271438039, 0.0406432785, -0.0219771694, 0.00623928104, -0.00891227368, 0.00819487683, 0.00933995191, 0.0012200916, 0.00681181857, -0.0058150515, -0.00448717782, 0.0298547354, 0.00764993113, 0.0175486244, -0.0115059381, -0.00704635214, 0.0128096687, -0.0124371741, -0.00404225383, -0.0173968673, 0.0148997754, -0.00176589936, 0.0359250158, 0.0555430539, -0.0111748315, -0.0112576084, 0.00449407566, -0.00147100794, 0.0245018527, -0.0112783024, 0.00224703783, -0.00022116855, -0.0203492306, 0.00889157876, -0.0227497499, -0.0429058373, -0.0175486244, -0.00482173311, -0.0144445049, 0.0229428951, -0.00359733, 0.00748437829, -0.0114990398, -0.00590817491, -0.00166932668, 0.00888468139, 0.0201698821, 0.0133132255, 0.0134373903, 0.0222530905, 0.00467342511, -0.0228325259, 0.0051011038, 0.004025009, 0.00290407659, -0.0155895799, 0.0137340063, 0.0120025976, 0.0178797301, 0.0130511, -0.00314205908, -0.0317585953, 0.0469342917, -0.0223634597, 0.00818108, -0.00668075588, -0.0202526581, 0.0115335304, 0.0419125184, 0.0272334795, -0.00421125628, 0.0251088813, -0.00213149562, 0.00733262114, -0.0138512729, 0.00257814396, -0.00808450766, -0.00621858705, 0.0067531853, -0.0243087076, 0.0213701408, -0.000744557648, -0.0147204269, -0.0256055407, 0.0136788217, -0.0141823795, -0.0248329602, -0.0115473261, 0.0294960383, 0.023577515, -0.0111748315, 0.00746368384, -0.00870533194, 0.0141409906, 0.00240569306, -0.0125268484, -0.00183832878, -0.0064738146, -0.0148307951, 0.00162362715, 0.00300064939, -0.00789136253, 0.012540645, 0.00345074665, 0.00480793696, 0.00316965138, -0.0148445917, -0.0100987367, -0.000950205605, -0.0188592523, -0.0117956558, 0.0419401079, 0.0394568145, 0.00773960585, -0.00127700041, -0.0197697952, -0.0144858928, -0.00784997456, 0.020970054, 0.0419952944, 0.00767752342, -0.00845700223, -0.00907782651, 0.00237810076, -0.00822246913, 0.00862255506, 0.0135201672, -0.00253675575, 0.0171485376, -0.00225393591, 0.00374563807, 0.0119612087, -0.0114369579, -0.00689804414, 0.0093330536, 0.0239913985, 0.011609409, 0.0213425495, 0.00789136253, 0.0136029432, -0.011333487, 0.0199491438, -0.00925717503, 0.00219357805, -0.00859496277, 0.0031110181, -0.0132511435, -0.0155895799, -0.000211791514, 0.0248191636, 0.00926407333, -0.00610132, 0.0236878842, -0.0286130887, -0.0215494912, -0.0221979059, 0.0110713607, -0.00507006235, 0.0180590805, -0.0183350015, 0.0165415108, -0.0119198207, 0.0114990398, 0.0215908792, -0.0221841112, -0.0264746938, -0.00398362055, -0.00461824052, -0.000895883481, -0.00173916947, -0.00178659346, 0.00446648384, 0.025357211, -0.00185557397, 0.0143065443, -0.00902264193, 0.0242673196, 0.00186074746, 0.000562190602, 0.018707497, 0.00246260175, -0.00381461857, -0.00907782651, -0.00778789213, -0.00477344682, -0.00130200584, -0.00326967309, -0.00103901792, -0.0031110181, 0.00357663608, -0.0102091059, -0.00574952, 0.00542186294, 0.00273852353, -0.0121543538, 0.019107582, -0.00851218682, 0.0348765105, 0.00110972289, -0.00405260082, -0.00875361823, 0.0106091918, 0.00727743655, 0.00707739359, 0.00891227368, 0.000236473585, 0.00199698377, -0.00599440048, -0.000910541858, 0.0238258447, -0.0155619876, -0.0144445049, -0.0134856766, 0.0111127496, 0.0162517931, -0.000759647111, -0.0185143501, 0.0185695346, 0.0242259316, 0.0243776888, -0.000345980021, 0.003728393, 0.00561845722, -0.00347661437, 0.00955379102, -0.014361728, 0.0153412502, 0.00275231968, 0.00867774, 0.0154930074, 0.00925027765, -0.0102091059, -0.00520112552, -0.00858116709, 0.0193145238, 0.0204871912, -0.000590645068, -0.00947791245, -0.0135615552, -0.00400086585, 0.0285303108, -0.00664626574, 0.00691528944, -0.00869153626, 0.00426299125, 0.00654279487, 0.0041284794, -0.0173830725, -0.0193145238, -0.0030989463, 0.00519767636, -0.00154257519, -0.0187212918, 0.0115887141, -0.0160448514, 0.0225428082, 0.0124785621, 0.0185833313, -0.00773270754, -0.0358974226, -0.0205561724, -0.00263850205, -0.023618903, -0.0134787783, -0.0106298858, -0.000338219746, -0.00245742826, 6.6232e-05, -0.0115266321, 0.0142513597, -0.015189494, -0.0231636334, -0.0180728752, -0.0138995592, -0.00164001, 0.00686010486, -0.00827075541, -0.0132028572, 0.0142237674, -0.0176727902, 0.00728433486, -0.00894676335, -0.00818797853, -0.00170209247, 0.00252985768, 0.00628411816, -0.0105816, 0.0208596867, -0.00231601833, -0.00521837035, -0.00404570298, -0.00390774198, 0.0102780862, -0.00905713253, 0.0165691022, 0.0194110963, -0.023577515, -0.00485967239, -0.0155895799, 0.0192731358, 0.0223910511, 0.00806381367, -0.014679038, 0.00175727683, 0.011630103, 0.00101228803, 0.00351455365, -0.0164311416, -0.0114231613, -0.0275094, 0.017010577, -0.00314378366, -0.0268195961, 0.0134373903, 0.0132718375, 0.0185143501, -0.0155757843, 0.013982336, -0.00956758764, -0.0161276273, 0.0114162629, 0.0216598585, 0.00167622475, 0.0199077558, -0.00373184192, -0.0181004684, -0.0216736551, -0.00597025733, 0.0279094875, 0.0174244605, 0.034931697, -0.00448028, 0.024722591, 0.00613581063, 0.0112714041, 0.00771891139, -0.00391808897, -0.0128441583, 0.0118991267, -0.0270265378, -0.00900884625, 0.00166415318, 0.0138788652, -0.00848459452, 0.0163759571, 0.00885019079, 0.0018641965, 0.0237844568, -0.00750507228, -0.0147894071, -0.0123474989, 0.0165139176, -0.00330761215, 0.0107540507, 0.0201009, 0.0152998623, 0.026902372, -0.00994698, -0.0140582146, -0.00236258027, 0.00842251256, 0.0161690153, 0.00513559394, -0.0143893203, -0.00833973568, -0.00161500461, -0.000499677088, -0.0165691022, -0.0274680126, -0.014679038, 0.0102849845, 8.96206839e-05, 0.010740255, -0.00922268536, 0.00556672178, -0.00978832506, 0.00601509446, 0.019935349, -0.00370769878, -0.00653589703, 0.00135977694, -0.0231360402, 0.00393878343, -0.0157965217, -0.0223220717, 0.0323932171, 0.0109402984, -0.00253503118, -4.54031442e-06, 0.0126786055, 0.00183660432, 0.000880362932, -0.00386635377, 0.0039974167, 0.0021435672, -0.0121957427, -0.0125958286, -0.00741539756, -0.00969175249, -0.00394913042, 0.00741539756, 0.0201974735, -0.0169553924, 2.40623194e-05, -0.00423195027, 0.0189144369, -0.00127613824, 0.00606338074, 0.0017158885, -0.00431127753, -0.0293856692, 0.0295788143, 0.00804312, 0.00101056346, 0.00264367554, -0.00967795588, 0.0243087076, -0.00889847707, 0.00390774198, 0.000873896, 0.0200733095, 0.0244190767, 0.0056494982, -0.0366975963, -0.0085259825, 0.00435266597, 0.0169415977, -0.00221772119, -0.0289166011, 0.00905713253, -0.0177279748, -0.0129476292, 0.00480103865, 0.0166380834, 0.00372149493, -0.00265574711, -0.0211494043, 0.0243087076, 0.015865501, 0.0182108376, -0.000848459429, -0.00798103772, 0.0329450592, 0.00303341495, 0.0130511, 0.0354559496, -0.000396206422, -0.00276439125, 0.0142651554, -0.00821557082, -0.00701186201, 0.00913990848, -0.0118646361, 0.00260918518, 0.0159206856, -0.0180452839, -0.000133002919, -0.0120577812, 0.00532529037, 0.00768442126, -0.00651175389, -0.00651520304, 0.00405260082, 0.00749127613, -0.000198426555, 0.0012037087, -0.0131614683, 0.0022073742, -0.00161500461, -0.0192041546, 0.0342143, 0.0024867449, 0.00700841285, 0.00206251536, -0.00475965068, 0.0335520878, 0.00286786188, -0.00589093, 0.00149256433, 0.0121198641, -0.00355249271, 0.00344212423, 0.00299202674, 0.00800173171, -0.00994008221, -0.0160724428, 0.00479759, 0.00121405581, -0.0156999491, -0.0159758702, 0.0361733437, 0.0338556021, -0.0295236297, -0.0064738146, 0.022073742, 0.0298547354, -0.000538047461, 0.00976763107, 0.00199353485, 0.0151067171, -0.0109334, 0.00896745734, -0.0164035503, -0.026543675, -0.00798103772, -0.00396982441, -0.0174934398, 0.0142651554, 0.00967105851, 0.028130224, -0.00876741391, -0.00242811162, 0.000121793593, -0.00354559487, 0.0108644199, -0.00689459546, -0.0172589067, -0.0191765632, 0.0207631141, -0.0239913985, 0.014913572, -1.17617046e-05, -0.0148169994, -0.0248881448, -0.00216771034, -0.000171696636, 0.0273300521, 0.00724984473, -0.00697047357, 0.0218943935, 0.00866394397, -0.0170381702, -0.00876051653, -0.00153309037, -0.00298167975, 0.00857426878, 0.0106298858, -0.0145686697, -0.0138374772, -0.010802337, -0.00280750403, 0.0176589936, 0.0233291853, -0.00348696136, -0.0063530989, 0.0295236297, 0.0130717941, -0.00775340199, 0.0214529186, 0.003505931, -0.0147894071, 0.0169278011, -0.0105678039, -0.00627032248, 0.0023332634, -0.0246260185, -0.0026247059, 0.0125130527, -0.00156499376, 0.00741539756, -0.00277128932, -0.00490106037, 0.00817418285, 0.0106574781, 0.0137547, -0.00164345908, 0.00535978051, -0.00823626481, -0.00688769715, -0.00491485652, -0.0135960458, -0.0112231178, 0.0197559986, -0.00074283313, 0.0150515325, 0.0313447118, -0.00828455109, -0.0173416827, 0.010402251, -0.0245570373, -0.0137891909, 0.0175348278, 0.0126579115, 0.0166794714, 0.0145548731, 0.00602544192, 0.0145548731, 0.00978832506, 0.013451186, 0.0112852007, 0.0153550468, 0.0170381702, 0.0120301889, -0.00274197268, -0.0270679258, 0.00442854455, 0.0079948334, 0.0016900209, 0.00221772119, 0.00101487478, 0.0108920122, -0.0193145238, -0.0200595129, 0.00113472831, -0.0165277142, 0.00191420724, 0.0228463225, 0.0164449383, -0.0200871043, -0.0135615552, 0.0193559118, 0.0240741745, -0.000855788647, -0.017093353, -0.00480448781, 0.00595301203, -0.000562621746, 0.0162379965, 0.0108368276, 0.0180452839, -0.0067531853, 0.0175348278, -0.000631171046, 0.00448717782, -0.0114093656, 0.00804312, -0.020018125, 0.00215046527, -9.52253467e-05, -0.0140582146, 0.00548739405, 0.00724294642, 0.0186937, -0.0124164801, -0.00968485419, 0.0067600836, -0.00161069341, -0.00525630964, -0.0057702139, -0.0181280598, 0.00738090742, 0.0250123087, -0.00346626737, -0.0186385158, 0.00533218822, -0.00138047116, -0.0157965217, 0.00449062698, 0.00130631716, -0.00293856696, -0.0024298362, -0.0119405147, 0.00307825231, 0.032558769, 0.00637379289, 0.0180452839, -0.00114162639, -0.0202250667, 0.0155757843, 0.0130304061, 0.0100573488, -0.0111472392, -0.0141961752, -0.0150929205, 0.0289993789, 0.00174520526, -0.0246536098, 0.00339728687, -0.0186247192, -0.00816038623, 0.00827075541, 0.00753266457, 0.0169553924, 0.00636689505, 0.0050838585, 0.00887778308, -0.0152446777, 0.029827144, -0.000128799424, 0.00667730672, -0.0106091918, 0.00290925, 0.0204320066, -0.00158223894, 0.00800862908, 0.0145824654, -0.021439122, -0.00106057432, 0.00640828302, 0.0154792117, 0.00871912763, 0.00190730928, -0.00295236288, 0.000704893901, 0.00149946241, -0.00694977958, -0.00857426878, -0.0232326128, -0.00374218915, 0.0160448514, 0.00195387099, -0.0295236297, 0.0140375206, -0.00370080071, -0.00550463935, -0.00419746, 0.00849839, 0.00158741244, 0.00626342418, 0.0292477086, 0.00780168828, 0.0379944295, 0.00326622394, 0.0127889737, -0.00927787, -0.00486657023, -0.0155343954, 0.00607027905, 0.0123268049, -0.0212735683, -0.00189178868, -0.0128924446, -0.0237154756, 0.0172313154, -0.00705325045, -0.00686700316, -0.0058047045, -0.00605993206, -0.00156413158, -0.00982971303, 0.00431127753, -0.0253710076, -0.00611856533, -0.00172192429, 0.00628756732, -0.00572192762, 0.00594611419, -0.0102229016, -0.0155757843, -0.0266402476, 0.0140513163, -0.0103125758, 0.0041181324, 0.00462168967, -0.00456995424, 0.00409743842, -0.010402251, -0.0123888878, -0.0125130527, -0.0106850704, -0.000689373293, 0.0313447118, 0.0220599454, -0.00916060247, -0.0149273677, -0.007594747, -0.00830524508, 0.0239362139, -0.0131821623, -0.0147066303, -0.0128993429, 0.0208320934, -0.00199353485, 0.0172175188, -0.0120439855, 0.0187212918, 0.00807761, 0.00424229726, -0.00929166563, -0.00681526773, 0.00962967, 0.00107092143, -0.00950550474, -0.00177797093, -0.0189834181, -0.0222530905, 0.017093353, 0.0102435956, 0.00844320655, 0.01251995, -0.0366700031, 0.00104936503, 0.0174244605, 0.0138443746, -0.0106712747, 0.0131683666, -0.00331795937, 0.0550739877, 0.00349213486, -0.0234671459, 0.00611856533, -0.0045630564, 0.00103556889, -0.017051965, -0.013961642, 0.00485622324, 0.0131752649, 0.00318689644, 0.00251606177, -0.000802328752, -0.000729037041, 0.0344902202, 0.0128855472, -0.00987110101, -0.0154792117, 0.0240603779, -0.0281164292, 0.0112093221, -7.1459428e-05, 0.0120025976, -0.0387946, -0.00973314047, 0.0186937, -0.0155343954, -0.0128855472, 0.0161966085, 0.00953999534, 0.00705325045, -0.00575986691, -0.00386980292, 0.00780858612, 0.00831214339, -0.0277853217, -2.15294422e-05, -0.00309032388, 0.0194524843, 0.00901574362, -0.00558051793, 0.00516318623, -0.0101125333, 0.0158517063, -0.00380082242, -0.0106229885, 0.000588920549, 0.0173140913, -3.79122976e-05, -0.00281440211, 0.00838802196, 0.0141271949, -0.00773270754, -0.00631515961, 0.0234809425, -0.0212045889, 0.0317861885, 0.000144535588, -0.0235223304, 0.00887088478, -0.00236430462, -0.00122354063, 0.021521898, 0.00758095086, 0.00553223165, 0.00925717503, -0.00179176696, -0.025398599, 0.00172537332, -0.00804312, 0.0135753509, -0.00524251349, 0.0339107849, -0.00396637525, -0.00717396615, -0.00187109457, 0.00120715774, 0.00602544192, 0.0172175188, 3.74272786e-05, 0.0211769957, 0.00908472482, -0.00925027765, -0.000955379161, -0.00188833964, 0.0153826391, 0.0248881448, -0.0149411643, 0.000547532283, 0.0195904467, -0.0123406015, -0.0211218111, -0.0277163424, -0.01495496, -0.000651865208, 0.00753266457, 0.00513904309, 0.000736366259, 0.00916060247, 0.0118232481, -0.00482173311, -0.0434576795, 0.0227497499, 0.00894676335, -0.00526665663, 0.0194938742, -0.0254123956, 0.00888468139, 0.0214115288, -0.014596262, -0.0236327, -0.00552533334, 0.00600819662, -0.000525113603, 0.0165966954, -0.00571503, -0.0189420301, -0.014278952, 0.00487346854, 0.00889157876, -0.00386290485, 0.0255641527, -0.00222289469, 0.00221599685, 0.0328898765, 0.00262815482, -0.0154516194, -0.0242949128, 0.0169415977, 0.0266126543, -0.011078259, 0.00440440141, -0.0143755246, -0.0088639874, -0.00631171046, -0.000947618857, -0.00239189691, -0.0115680201, -0.0326139517, -0.00954689365, 0.00771891139, -0.00137184851, 0.014913572, 0.00914680678, -0.0111610359, -0.0156033766, 0.0127130961, -0.00789826084, 0.0213701408, 0.000230222227, -0.0125337467, -0.0125958286, -0.014679038, -0.013430492, -0.0249019396, 0.0196456295, -0.0220461488, 0.0112714041, -0.00501487823, -0.0222255, -0.0184591673, 0.0122302324, -0.00831214339, 0.0272748675, -0.0123681938, -0.0053873728, 0.00746368384, -0.00225738506, 0.0120094949, -0.0146514457, -0.0185281467, -0.00599440048, -0.0127268918, 0.00356628885, 0.0151619017, 0.0133753084, -0.00700496417, 0.0193697084, -0.0021608125, -0.0014416913, 0.00110282481, -0.0224876236, 0.00291442382, -0.0207493175, 0.011016177, 0.00976763107, -0.00197111606, -0.0172037221, 0.001784869, 0.01495496, 0.00395602826, -0.00340590929, -0.0136098415, -0.0180590805, 0.00628411816, -0.0240879711, 0.0150791248, 0.00555982394, -0.0134994723, 0.0154792117, -0.0221979059, 0.0119129224, -0.00827765279, 0.0135822492, 0.00558741577, 0.0354559496, -0.00965036359, -0.00174951646, 0.0287510492, -0.00271093147, -0.018790273, 0.0112783024, 0.0013227, 0.00230222219, 0.0274818093, 0.00576331606, 0.0258262772, 0.00232636556, 0.0102504939, 0.0144307083, 0.01463765, 0.000637206831, 0.00276094233, 0.00398706971, -0.0135132689, 0.0128027704, -0.0233291853, -0.00246432633, 0.0377185047, -0.00644967146, -0.00232636556, -0.0118715344, -0.0181694496, 0.00418366399, 0.00960207731, 0.0154102314, -0.0226945654, 0.0196042415, -0.01527227, -0.0384910889, -0.0225014202, -0.0122716213, -0.0197284073, 0.0139892334, -0.0129614249, 0.00272472762, -0.00594956335, 0.0379668362, 0.0029730571, -0.0120853735, 0.000471222651, 0.010995483, 0.00151670747, -0.00180901214, 0.00344039965, -0.0261159949, 0.01283726, 0.00525630964, -0.0733400062, -0.0143341357, 0.0245432425, 0.0182522256, 0.0197146107, 0.0131545709, -0.00102091057, 0.00815348793, 0.0258814618, 0.00492520351, 0.00849839, 0.00197284063, 0.00369735179, 0.000575124461, -0.00907782651, -0.00349903293, 0.0178107508, -0.0159896668, -0.0106850704, -0.0142099708, -0.0130304061, 8.7680608e-05, -0.00484587625, 0.00963656791, -0.00240051933, 0.0105953962, 0.000822160684, 0.00315930438, 0.00412503071, -0.0174658485, -0.0134580843, 0.0203216393, 0.00926407333, -0.016693268, -0.000445786107, -0.0148859797, -0.0328346901, -0.0190799907, 0.0045182188, -0.0112162204, 0.00870533194, -0.00123043871, 0.00657728547, -0.0159206856, -0.0281854086, 0.0130511, -0.000682475278, -0.0200733095, -0.00293856696, 0.0155206, -0.0319241509, 0.0151067171, -0.00429748138, -0.0156861525, -0.033662457, 0.00418711267, 0.00918129738, -0.0262815487, -0.000669110275, 0.0247915704, 0.00902264193, -0.0551843531, 0.00541151594, 0.0116163064, 0.0192593392, 0.0119405147, -0.0140927043, 0.00906403, 0.0118991267, -0.00165553065, -0.0112024238, -0.0354835391, -0.0122509263, 0.00380427134, 0.0106505807, -0.01495496, -0.0112507101, -0.00381116942, 0.00929166563, 0.0228463225, 0.0142099708, -0.00239534583, 0.00533563737, -0.0115266321, -0.00168570958, 0.00140892551, 0.00882259849, 0.00507351151, 0.0185833313, 0.00457340339, 0.0308480542, -0.00521492166, -0.0202250667, 0.00539772, 0.0361181609, 0.00553912949, -0.0115197338, -0.0140996026, 0.0254951715, 0.00148135505, 0.0149411643, 0.00673249131, 0.01527227, 0.00656348933, 0.0207217243, -0.0271507017, -0.00534253521, -0.0186385158, -0.00947101507, 0.00164777029, 0.0282405932, -0.00352834957, -0.0107540507, 0.00378357735, 0.0109334, 0.0154516194, -0.00574262207, 0.00443889154, 0.00638069119, 0.0242397282, -0.0127337901, -0.0265988596, -0.00271610497, 0.00190386025, 0.0060564829, 0.00410433626, 0.00180901214, -0.00559431408, -0.0088294968, -0.0170243736, 0.00520457467, -0.000478982955, 0.0210804231, -0.0343798511, -0.00407329528, -0.00991938729, -0.00496659195, 0.00329554058, 0.0067704306, 0.0133270221, -0.000185600511, 0.0145134851, -0.00835353136, -0.0283647589, -0.00885019079, -0.0249571241, -0.014278952, 0.0120439855, -0.00158137665, -0.00348868594, -0.0153274545, -0.0233705733, 0.000782928, -0.0119956993, 0.00643587532, -0.0110299727, 0.0207769088, -0.00964346621, -0.00479759, -0.021439122, -0.00793275051, 0.000170079904, 0.00723604858, 0.00200043293, -1.16741312e-05, 0.0257159099, -0.00340073579, -0.00945032109, 0.00373529107, -0.010740255, 0.0087950062, 0.00697047357, 0.00784307625, -0.000746713311, -0.00827765279, -0.00464583281, 0.00165984186, -0.00969865, 0.00204699463, 0.00108557974, 0.0230946522, -0.00394223211, -0.00818797853, -0.00543910777, -0.00359733, -0.0190386027, 0.00436991127, -0.0128096687, 0.00931925792, 0.00475965068, 0.022666974, 0.0167070627, -0.0176176056, -0.000410433626, -0.013133876, -0.0101332273, 0.0123337032, 0.0103401681, -0.0205561724, 0.0145686697, -0.0222668871, -0.000812675862, -0.00763613498, 0.00560811, 0.019700814, -0.0140720103, -0.00782928057, 0.0346557759, 0.0107954396, -0.00382151664, -0.00347833894, -0.0288614165, -0.014361728, 0.0154378228, 0.00263677747, 0.000638931349, -0.0194524843, -0.00838112365, 0.000194115273, 0.0173830725, -0.00797413941, 0.018279817, 0.014278952, -0.000674715, 0.0091261128, 0.0111679342, -0.0046665268, 0.0180728752, -0.0105884979, -0.00584609248, 0.0168588199, -0.0163621604, 0.0199629404, -0.0141547872, -0.00274369703, 0.0139271514, -0.00597370649, 0.018197041, 0.00888468139, 0.0142099708, -0.00252468418, 0.0105195176, -0.00433887, -0.000893296732, -0.0134718809, 0.00126320438, 0.0221289266, 0.000246389507, -0.00321448874, -0.00059366296, -0.020928666, -0.00250054104, 0.00917439908, 0.0224324409, 0.00393878343, -0.0144583005, -0.0116576953, -0.000600561, 0.013727108, 0.034573, -0.00567364134, -0.0201422889, -0.00139599177, -0.00349903293, 0.0136788217, 0.0029730571, 0.00477344682, -0.0311515685, -0.00588748092, -0.00290925, 0.00844320655, -0.0058150515, 0.000112308786, -0.000734641741, 0.0195490569, 0.00887088478, 0.00599440048, -0.000835094485, -0.0204320066, -0.00608752389, -0.0166794714, -0.0137133123, -0.00777409598, 0.0294408537, -0.00684975786, 0.00371804577, -7.07588479e-05, -0.0189834181, 0.00283854525, -0.0276059732, 0.0233153906, 0.00160379533, 0.000825609663, -0.00554602779, 0.00032916604, -0.0298547354, -0.0139547437, -0.00215908792, -0.0170243736, -0.0235913116, -0.00592886889, 0.00497349, -0.0165139176, -0.00583229633, -0.00768442126, -0.0135822492, -0.0061875456, -0.00196076906, 0.00383186364, -0.0130373035, -0.0300754737, 0.00197456521, 0.0128648523, -0.00135805248, -0.00569433579, -0.0228325259, -0.0159068909, 0.00856737141, 0.00350420643, 0.0094020348, -0.00659108115, -0.0180176925, 0.00456995424, -0.00476999767, -0.0132235512, -0.0138374772, -0.00800173171, 0.0241293591, 0.0173140913, -0.00239534583, 0.0185281467, 0.0320897028, -0.0178659353, 0.0260056276, -0.00754646026, 0.00536322966, -0.00182970625, -0.0275369938, 0.00934685, -0.00697047357, -0.0021383937, -0.00154516194, 0.0041457247, -0.00289545418, 0.0212183837, -0.0111058513, -0.000506575103, 0.014913572, -0.00494244881, -0.006725593, -0.0144445049, 0.0126717072, 0.00858806539, 0.0117266756, 0.000897608, -0.00699461671, -0.0196042415, -0.00693598343, 0.010995483, -0.00406294828, 0.00782928057, 0.00615305547, -0.00916060247, -0.00813969225, 0.00522181951, -0.013409798, 0.025439987, -0.0012037087, -0.0218668, 0.000525113603, 0.0200457163, -0.0261435881, -0.00821557082, 0.0508799739, 0.0229290985, 0.00283854525, 1.25565966e-05, 0.0146652423, -0.0156447645, -0.00417676568, 0.0293856692, -0.00651175389, -0.0146514457, -0.00857426878, 0.00683941087, 0.0118025541, 0.00153309037, 0.00424229726, -0.0178659353, -0.0114162629, 0.00312481401, -0.00187109457, -0.011609409, 0.0106643764, -0.00529769808, 0.0116576953, -0.00269713532, 0.0176314, 0.0053701275, -0.0153412502, 0.000230222227, -0.00226255856, 0.0239638053, -0.0119129224, 0.00176762382, -0.0165828988, 0.0101884119, 0.000228497724, -0.00447338168, -0.0395671837, 0.0111127496, 0.00915370509, -0.00661177561, 0.0332209803, 0.0151619017, 0.00533218822, 0.0134994723, 0.0144307083, -0.00419401098, -0.00479414081, 0.00992628559, 0.00543221, -0.00744299, -0.0112024238, -0.0139685394, 0.00793964881, -0.0284199417, -0.0109678907, 0.00033477071, 0.0182936136, 0.0167760439, -0.00217978191, 0.0406432785, 0.00942272879, 0.000850615092, 0.0203906186, -0.0320897028, 0.00126406667, 0.00860186107, -0.00648761075, 0.0275507886, -0.0269161686, -0.0129683232, 0.016100036, -0.0228463225, -0.0167070627, -0.019935349, 0.013961642, -0.00114766217, -0.0171623342, -0.0152998623, 0.00164259679, -0.00159086147, 0.00487346854, -0.00416641869, -0.00280405511, -0.0209838506, -0.0025453784, -0.0148859797, -0.0184453707, -0.0146652423, -0.0153688425, 0.00198318763, 0.00203319849, 0.00458375039, 0.0176176056, 0.0190937873, -0.00615995377, -0.00842251256, -0.0147066303, -0.00403190684, 0.00970554817, -0.0123543972, 0.0218530037, 0.00922958367, -0.00838802196, -0.0129269352, -0.00740160141, 0.0161552206, -0.00862945337, 0.00716706784, 0.0186799038, -0.0200319216, -0.00717396615, -0.00519767636, 0.0123406015, 0.0205837637, 0.00552533334, -0.0098986933, 0.010464333, 0.0143065443, -0.00103729346, -0.00687045231, 0.00295063853, -0.0136650261, 0.00985730533, 0.0147342226, 0.00648071244, -0.00481828395, 0.0062151379, -0.00184177782, 0.00996077619, 0.00691184029, -0.0163207725, -0.0154240271, -0.0060564829, -0.0220185574, 0.0117059816, 0.0125061544, 0.00545290392, -0.00380082242, 0.00262125675, 0.0276335664, 0.014679038, -0.00291097467, -0.00314550824, 0.00302479253, 0.0156585611, 0.00509075681, 0.0202526581, -0.0251088813, 0.00840181764, -0.00847079884, 0.00545980223, 0.025991831, 0.00658073416, -0.02084589, 0.00709118973, 0.0122854169, -0.000914853124, -0.000401811092, 0.0472102165, -0.00472171139, -0.00102004828, -0.00101142575, -0.00774650369, -0.0276611578, 0.00203492306, -0.0249019396, 0.000260401168, -0.000506575103, 0.0157551337, 0.0150239402, 0.00423195027, 0.0270679258, 0.00444578938, 0.0285579041, -0.00959518, -0.0214253254, -0.00462513883, -0.0135408612, -0.000112739908, -0.0153136579, 0.0175900124, 0.0085259825, 0.00543910777, 0.0558465682, 0.0133753084, -0.0476516895, -0.0111679342, 0.00445613684, 0.00664626574, -0.000957103621, -0.0145134851, -0.00938134, -0.0141271949, -0.00251606177, -0.0205285791, -0.0122923153, 0.0205561724, -0.0197146107, -0.00930546224, -0.0124509698, 0.0197146107, -0.00435266597, 0.0154516194, 0.0266402476, -0.0203768238, 0.0108920122, 0.00302479253, 0.0125061544, -0.0137202097, -0.0106919687, -0.0156585611]
26 Jun, 2023
list crbegin() and crend() function in C++ STL 26 Jun, 2023 The list::crbegin() is a built-in function in c++ STL that returns a constant reverse iterator which points to the last element of the list i.e reversed beginning of container. The elements cannot be modified or changed as the iterator is a constant one. Syntax: list_name.crbegin() Parameters: The function does not accept any parameters. Return value: It returns a random access reverse iterator which points to the reverse beginning of the list. Below program illustrates the above function: CPP // C++ program to illustrate the // list::crbegin() function #include <bits/stdc++.h> using namespace std; int main() { // declaration of the list list<int> lis = { 10, 20, 30, 40, 50 }; // prints the last element cout << "The last element is: " << *lis.crbegin(); cout << "\nList: "; for (auto it = lis.crbegin(); it != lis.crend(); ++it) cout << *it << " "; return 0; } Output The last element is: 50 List: 50 40 30 20 10 Time Complexity: O(1)Auxiliary Space: O(1) The list::crend() is a built-in function in C++ STL that returns a constant reverse iterator which points to the theoretical element preceding the first element in the list i.e. the reverse end of the list. The elements cannot be modified or changed as the iterator is a constant one. Syntax: list_name.crend() Parameters: The function does not accept any parameters. Return value: It returns a constant random reverse iterator which points to the reverse end of the list. Below program illustrates the above function: CPP // C++ program to illustrate the // list::crend() function #include <bits/stdc++.h> using namespace std; int main() { // declaration of the list list<int> lis = { 7, 6, 5, 4, 3, 2 }; cout << "List: " << endl; for (auto it = lis.crbegin(); it != lis.crend(); ++it) cout << *it << " "; return 0; } Output List: 2 3 4 5 6 7 Time Complexity: O(1)Auxiliary Space: O(1) Let us see the differences in a tabular form -: list crbegin() list crend() 1. It is used to return a const_reverse_iterator pointing to the last element in the container It is used to return a const_reverse_iterator pointing to the theoretical element preceding the first element in the container 2. Its syntax is -: const_reverse_iterator crbegin(); Its syntax is -: const_reverse_iterator crend(); 3. It does not take any parameters. It does not take any parameters. 4. Its complexity is constant. Its complexity is constant. 5. Its iterator validity does not changes. Its iterator validity does not changes. Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL
https://www.geeksforgeeks.org/list-crbegin-and-crend-function-in-c-stl/?ref=next_article
PHP
list crbegin() and crend() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0074723158, -0.0163983889, -0.0174450949, 0.0345994383, 0.0263857059, -0.0504454, -0.0155697474, 0.0105542829, -0.00747958478, 0.018433651, -0.0198583342, 0.0206288248, 0.00410323171, -0.0432638377, 0.0244231336, 0.00690535037, 0.0223442595, 0.0191896055, -0.00538617326, -0.0212539416, -0.00665457686, -0.00283846236, 0.00651283562, 0.0154389096, 0.00395785598, 0.0250773244, -0.0254989136, -0.0204253, -0.0107868835, -0.0232746638, 0.0462876521, 0.0138034318, 0.0377395563, -0.0169508178, -0.0191169176, 0.00574234407, 0.0514339544, -0.01423229, -0.039425917, -0.0177939981, 0.026283944, 0.0237980168, 0.0243359078, 0.0103580253, -0.0232892018, 0.022824, -0.0197565705, -0.0512885787, 0.0016827248, 0.017328795, 0.0186081026, 0.0183609631, 0.0444268435, 0.00445576804, 0.0345703624, 0.0185499508, -0.00500819599, 0.00725425221, -0.0415193252, -0.00853355881, -0.00774126127, -0.00574597809, -0.0154243717, -0.0257024411, 0.0267055333, 0.0128366826, -0.0628605, 0.0476251096, 0.0067890496, 0.0019989172, -0.0510850549, 0.0179248359, 0.0228966884, -0.005266238, -0.0404435471, -0.00767584192, 0.00795205589, 0.0272143483, -0.00500092749, 0.0491660945, -0.0074178, 0.0291187726, -0.0218499824, -0.0191605296, 0.00204616436, -0.0318373, -0.02102134, -0.0389025621, 0.0556789301, 0.0180556737, -0.00832276419, 0.0104597881, 0.0221552718, -0.0330875292, -0.0173578691, 0.0036016854, 0.0237544049, 0.0239143185, -0.0334655084, 0.0319536, 0.0122479107, 0.0338144116, 0.00206797058, 0.00484101381, 0.0211376399, 0.0283918921, 0.0192041416, -0.00795205589, -0.00596404215, 0.0197711084, 0.00886792317, 0.00910779368, -0.00600765459, 0.0366056263, -0.0273451861, -0.010001855, 0.0217918325, -0.0159622617, -0.00144103752, 0.0193204433, -0.00211158348, 0.0369545259, 0.0192041416, 0.0584992208, -0.050009273, 0.0211085659, -0.0029747521, 0.0118699335, -0.00272943056, 0.0202799235, 0.0046811006, -0.0438162647, 0.0155406725, -0.0218209065, 0.0201054718, 0.0303835403, -0.00125840923, 0.00139742484, -0.0320117511, 0.0165583026, -0.0393386893, -0.048962567, 0.0293804482, 0.0505907759, -0.0608252324, -0.010503401, 0.00305470894, 0.033145681, -0.00567329, 0.00717793, -0.0186807904, 0.0123496735, 0.0391642377, -0.0187970903, 0.028973395, -0.0265020076, 0.000754136941, 0.00255497964, 0.0380884595, -0.0120589221, 0.0187244024, 0.0351809412, -0.00989282317, -0.00627296558, -0.00625115912, 0.0241469201, 0.06204639, -0.0104379822, -0.0633256957, 0.0431475341, 0.00362349162, 0.0278249271, 0.00790844299, 0.00484828278, 0.00242595864, -0.0368673019, 0.0381756835, -0.0033890733, 0.00829368923, 0.00274578528, 0.0336108841, -0.0177794602, 0.00566238724, -0.00683629652, -0.00250046374, 0.0123205986, 0.0432347618, -0.0145085044, 0.0111939358, 0.00277849496, -0.00160640257, -0.0116954828, 0.0285227317, 0.0213702414, 0.0328258537, 0.0145811923, -0.00216973363, -0.00704345712, -0.00189351977, 0.0621045381, -0.00663277041, -0.00618574, 0.0165437646, -0.00152099424, 0.0391060896, -0.0159041118, -0.000200913884, -0.00650920114, -0.0147774499, -0.0264583938, -0.00272579608, -0.00187534781, 0.031546548, 0.00219880883, 0.00771945482, 0.0113320434, -0.0335236564, 0.0216173809, -0.0312848724, -0.0239433926, -0.00856990274, -0.0116736768, 0.0733275488, -0.0449211188, -0.0367800742, -0.0319826752, -0.00424133893, 0.0370417535, 0.00364529807, -0.0215010792, 0.023667179, 0.0190878417, -0.00449211197, -0.0323315784, -0.0041504791, 0.0199310221, -0.0306742918, -0.0290460829, -0.0249174107, 0.0402981713, 0.0442523919, 0.0326804779, -0.0393968411, 0.0249174107, 0.0225623231, 0.0178230722, 0.00174178369, -0.0344831385, -0.0080392817, -0.0231874399, 0.012087997, 0.00797386188, 0.0269090589, 0.00127930695, -0.0205997508, -0.00407415675, 0.0254407637, -0.00757407909, 0.00600765459, 0.0256733652, 0.016863592, 0.0318373, -0.00722517679, 0.0165437646, 0.00586954784, 0.0144648915, 0.0111067109, 0.0146684181, -0.0125750061, -0.0336690359, 0.0456189252, -0.02528085, 0.0180120617, -0.00791571196, 0.00851175282, 0.0168781299, 0.0011730009, 0.00703618862, 0.0437871888, -0.00317282672, 0.00872981641, 0.00124296302, 0.0163983889, 0.00617120229, 0.0267927591, -0.0127567258, -0.0462585762, -0.0178376101, 0.00189897127, -0.00373252342, -0.0323315784, 0.00638199737, 0.00992916711, 0.0250627864, 0.0213411674, 0.0356170684, -0.00388516812, -0.038437359, -0.0225477852, -0.012625888, 0.0327967778, -0.0313720964, 0.00503000244, -0.0413158, -0.0025477109, -0.0279993787, 0.0257460531, -0.00410323171, 0.0195239689, 0.0045829718, -0.0275777876, -0.0740253553, 0.0108741093, 0.00326550379, -0.010547014, -0.00792298093, 0.0365765505, -0.00774126127, -0.0149737066, -0.00678541511, 0.0309068933, -0.0365474746, -0.0060512675, 0.00365074957, 0.0172270313, -0.0430603102, -0.00658552349, 0.00632384699, -0.00407779124, -0.0509396791, -0.0231874399, 0.0134617984, -0.0125750061, -0.0235508792, -0.0190296918, -0.00659642648, -0.0206142869, -0.0139197325, 0.0176486224, -0.00785029307, -0.0238561686, -0.0157005861, 0.00414321, 0.00624752464, 0.0127131129, -0.038931638, 0.00646922272, 0.00384155544, 0.0264438577, 0.0235944912, 0.00122933404, -0.0125750061, -0.0208905023, -0.0251209382, 0.0363148749, -0.0146248052, 0.000944942643, -0.0381175317, 0.000114142713, 0.0387281105, 0.00580049399, 0.0586736724, -0.0186662525, 0.0330003053, 0.00263857073, -0.0648957565, -0.0255716015, -0.00482647633, 0.0436418131, 0.0159477238, -0.00951484591, -0.0330875292, 0.0192186795, 0.00526987249, -0.00190442288, -0.00422316696, 0.00528804446, 0.0192477554, 0.00174814393, -0.00744324084, 0.00181810604, 0.0161803253, -0.00750139123, -0.00435763923, 0.0124877803, -0.00404508132, -0.0314883962, 0.00836637709, 0.0101981116, -0.0329712294, -0.01207346, -0.00529531343, 0.00593860121, -0.00107214646, 2.18631567e-06, 0.00331275095, -0.00388516812, -0.0274324119, -0.0285663437, -0.027359724, 0.00447394, -0.00630930951, 0.00602219207, -0.0277231634, -0.0372743532, 0.0142468279, -0.0104234442, -0.0339597873, 0.0154389096, 0.0409669, 0.0198874082, -0.0176922344, -0.0100890798, 0.00697076926, 0.0117536327, 0.0199455582, -0.00746504683, 0.0337562598, 0.002900247, -0.00996551104, 0.000625115936, -0.0413739495, -0.0209631901, 0.0354135446, 0.0329712294, 0.0381466076, -0.0111866677, 0.0192477554, 0.0116591388, 0.00606943946, -0.029453136, 0.0179975238, 0.0176340844, 0.0264293198, 0.0201490857, -0.0544577725, 0.0310813449, -0.011412, -0.045648, -0.00565511826, 0.0195239689, 0.0566674843, 0.023681717, 0.00669819, 0.0121534169, 0.0168781299, -0.0358787477, 0.0124223614, 0.00935493223, 0.000640562095, -0.0107796155, -0.00634201895, 0.0219226703, 0.000235554224, 0.0275632516, -0.00961660873, 0.03363996, -0.0303253904, 0.0464621037, 0.0212539416, -0.0014991879, -0.00395058701, -0.045822449, 0.00339634204, 0.0351518653, 0.00124296302, 0.0204107612, 0.00160276808, -0.0278685391, -0.00666911481, -0.0269090589, -0.0256879032, 0.0405598469, 0.0157587361, 0.0268945228, 0.015816886, 0.011600988, 0.00879523531, -0.0478867851, -0.0316919237, 0.0411704257, -0.0267055333, -0.0139051946, -0.0355879962, -0.00244231336, -0.0241033062, -0.00398693094, -0.0314593203, -0.00692352233, 0.00673089921, -0.00755954115, 0.0220244322, -0.00274033379, -0.0251645502, 0.00817738846, 0.0179684479, -0.0414030254, 0.00119662448, -0.00026985383, -0.00107759808, 0.0455607735, -0.013163778, -0.0440779403, 0.0576560386, -0.00742143439, -0.0296421237, -0.057888642, -0.00157187576, -0.00895514898, -0.000665094238, -0.0311394949, 0.032040827, 0.00168545067, 0.0227513127, 0.0173578691, -0.0165873785, 0.0139924204, 0.0278249271, -0.0483810641, -0.00830822624, 0.0283192042, 0.000631930423, 0.01051067, 0.0282319784, 0.00876616, 0.0253680758, 0.0292496104, 0.00400510337, 0.0151626952, -0.0454444736, 0.0179684479, 0.0107432716, 0.0118408585, 0.0239288565, -0.00298383809, -0.0156424362, 0.00990736, 2.08409838e-05, -0.027897615, 0.0036562013, -0.0402690955, 0.0419554561, -0.0226640869, 0.015220846, -0.00484101381, 0.0129820583, 0.00241687265, 0.0318373, 0.00287662353, 0.00790117402, -0.0128512206, 0.0200909358, 0.0157587361, -0.0115064941, -0.0185935646, 0.0278394651, -0.0229693763, -0.0159041118, -0.00247684, -0.0223878715, -0.0143776657, 0.0304707661, 0.0251500122, 0.0024005177, -0.00280938717, -0.0236526411, 0.0282610543, 0.0196548067, -0.0220971201, 0.0190006159, 0.00129838753, -0.0207305886, 0.032593254, -0.00878796633, 0.0104016382, 0.0243213698, 0.00592769822, 0.0182301253, -0.0261385683, 0.0369545259, -0.00526987249, -0.0223442595, -0.00121116207, -0.0464039519, -0.0195675828, 0.00324733183, -0.0118408585, 0.00349992234, -0.00441578962, 0.00298020383, -0.00383428647, -0.00284936558, 0.0321280509, -0.00758861657, -0.00218427135, 0.00649102917, -0.015220846, 0.00982013531, -0.0178376101, 0.000258950633, -3.14034442e-05, 0.00359623367, 0.0122479107, -0.0556207784, -0.0236235671, -0.0234200414, 0.0466365553, -0.00401237188, 0.00741416542, -0.0217918325, -0.0391642377, 0.0165873785, 0.00203889562, -0.00658915797, 0.000638290599, 0.000864986, 0.00715612341, 0.00769764837, -0.0321571268, 0.0133963795, -0.00928224437, 0.0128439516, -0.0232892018, 0.0122769857, 0.0177358463, 0.00243322738, -0.0127712637, -0.0338725597, -0.0207887385, -0.00956572685, -0.0104525201, -0.0117754396, 0.019509431, 0.00294022541, -0.00258950633, 0.00330184773, -0.0224024095, 0.0207305886, -0.0219372083, 0.0242196079, -0.00827915128, 0.00854082778, 0.0300055649, 0.0627441928, -0.00468836958, 0.00960207079, 0.00543705467, 0.0272870362, 0.0179975238, -0.00397602795, -0.0169653557, 0.0221552718, -0.0140578393, 0.0023950662, -0.0119571593, -0.0192477554, 0.0226204731, 0.00320008467, 0.00123115128, 0.00321462215, 0.00216064765, -0.0298311133, -0.000990372617, 0.0154970596, -0.000685083447, -0.022082584, -0.0104379822, -0.00549520506, 0.00403417833, -0.00847540889, -0.0304126162, -0.031633772, 0.0192622934, 0.0154679846, -0.0167036783, -0.0124732433, -0.0293804482, 0.0262694061, 0.00459387526, -0.00353081455, -0.0207596626, -0.0182446614, 0.0226931609, -0.0395131409, -0.0241469201, -0.00660006097, 0.00763949798, -0.015773274, 0.011412, -0.0188116282, -0.0122188358, -0.00159095635, 0.0271561984, 0.0135344863, 0.00796659384, -0.0100745428, -0.00337998732, -0.0183609631, -0.0131855849, -0.014719299, 0.0202217735, -0.0230711382, -0.0136217121, -0.0181574374, -0.0105833579, 0.0373034291, -0.00142922578, -0.0216609929, 0.0196838826, 0.0241323821, 0.00541524822, -0.0146902241, -0.00328912726, -0.00125023187, 0.027897615, 0.0202217735, 0.00314011727, 0.0109758722, 0.0062039122, -0.0442523919, 0.00902783684, 0.00782848615, -0.00496458355, -0.0201345477, 0.0190151539, 0.0249464866, -0.0101108868, -0.0253099259, -0.0157441981, 0.00175813853, -0.028944321, 0.0185208768, 0.00314011727, 0.00554245198, -0.0113538494, -0.00264220499, 0.0380593836, -0.015816886, -0.00472107902, 0.0168054421, 0.00392878102, 0.0208468884, -0.00828642, -0.0141087212, 0.0296421237, -0.0204253, 0.0108159594, -0.000945851265, -0.0246557351, 0.012633157, 0.00134654331, 0.0120807281, 0.0281447545, -0.0191896055, 0.0126622319, -0.014188678, 0.0161367133, 0.002853, 0.0213993173, -0.00583683839, 0.0361404233, 0.0129893273, -0.00044589481, 0.0159768, -0.0193059053, 0.0132146599, 0.00483011082, 0.00280211843, 0.0222570337, -0.0032109879, -0.00377977057, 0.00829368923, 0.0184772629, -0.0086716665, -0.0111575918, -0.0104525201, -0.0135562932, 0.0158459619, 0.0328840055, -0.0240742322, -0.0170089677, 0.0419554561, 0.0113029685, -0.0127276508, 0.0140214954, -0.00168090768, 0.0475378856, 0.0229548384, 0.0356461443, -0.0176195465, -0.0302672405, -0.00728332717, 0.031023195, 0.0227658488, -0.0178812221, -0.0214429293, -0.00723971473, -0.0221698079, -0.0518991575, -0.044223316, 0.0360531956, -0.00224605598, -0.00538617326, -0.0189715419, 0.0117245577, 0.00621118071, -0.0138397757, -0.000556062441, 0.0185208768, 0.0262257941, 0.0126695009, -0.00407415675, -0.0175468586, 0.0176340844, 0.0177067723, -0.00842452701, 0.0092459, -0.000540161913, 0.0202653855, -0.0132001219, -0.00887519214, -0.0224896353, 0.0169653557, -0.0239579305, -0.0455026254, 0.0230275262, -0.00827188231, 0.00567329, 0.013658056, -0.00814104453, -0.00338362157, 0.0288570952, -0.00696713477, 0.0125095872, -0.00853355881, 0.0465784036, -0.00216064765, 0.00338362157, 0.00778487371, 0.0312267207, -0.0119280843, 0.00188443379, -0.0229839124, -0.00513539976, 0.0081047006, -0.0122697167, -0.0287262574, 0.00464112218, -0.0186517145, -0.00879523531, -0.00967476, -0.0120080402, -0.0304416921, 0.0212103277, 0.0125241252, 0.00669455528, -0.0415484, -0.0135635613, 0.000263947935, 0.00862078462, 0.0242777579, 0.0371289775, -0.00787936803, 0.019422207, 0.00700711319, 0.032040827, 0.0093185883, -0.0302963164, 0.0240306184, -0.0270980485, 0.00699984469, -0.00477922941, -0.029976489, -0.00931131933, 0.0102417246, -0.0314883962, 0.0280866027, 0.0190878417, -0.00614212733, -0.0319826752, 0.0305870678, -0.0193931311, -0.0534110665, -0.0426823348, -0.00852629077, 0.0196402706, -8.73390527e-05, -0.00780668, -0.0224169474, -0.0265601575, 0.0315756239, 0.00490279868, -0.0282319784, -0.0367219262, 0.0118190525, 0.023201976, 0.0170235056, -0.00220244331, -0.00661823293, -0.00442669308, -0.000361849437, 0.0203235354, 0.0125095872, 0.0155261345, 0.0311685707, -0.0244667456, 0.0377977081, -0.00026985383, 0.00214065867, 0.0217191447, 0.0171834193, -0.0501837246, -0.0248156488, -0.0233909655, 0.0261967182, 0.0141596021, -0.00449938094, 0.000782303512, 0.0170089677, 0.00629840652, 0.0153952967, 0.00507725, 0.00188806816, 0.00216246489, 0.00221516378, -0.0106996587, -0.00464839116, -0.0181719735, -0.0316628478, -0.0160204135, -0.046869155, -0.0190587658, 0.0231438261, -0.00931131933, 0.00790844299, -0.0139051946, -0.0216173809, -0.0338725597, -0.0335527323, -0.010539745, -0.00139651622, -0.0063747284, 0.00453935936, -0.0119353523, -0.0236962549, -0.011084904, -0.0338144116, 0.0182010494, -0.0229839124, -0.0174887087, 0.0133891106, -0.0239433926, -0.00660733, -0.0512595065, -0.0153226089, -0.00520081911, -0.0275341757, -0.0142540969, -0.0185935646, 0.0276214015, 0.00162275729, -0.00793751795, 0.0403563194, -0.0132800788, 0.0570454635, -0.0148574058, -0.0202072356, -0.00424497342, -0.0143049778, 0.0133382296, 0.0112811616, -0.0104452511, 0.0375941806, 0.0434673615, 0.00992189813, 0.0294385981, -0.0437871888, -0.0348029658, -0.0139415385, 0.0305870678, 0.0302381646, 0.0422462076, -0.0411122739, 0.011041292, 0.0327095538, 0.00717793, -0.00719973631, -0.00292750518, -0.0211376399, 0.00870801, -0.0118553964, -0.026327556, -0.00191350887, -0.0225477852, 0.00441578962, 0.0440779403, 0.00793751795, 0.0173578691, -0.00194803567, 0.00819919445, -0.0125532, 0.00267491466, -0.00218972284, 0.0272870362, -0.00557516189, 0.0106705837, -0.000141173528, 0.0220535081, -0.00143013441, 0.0140287643, -0.00230784086, 0.000367301021, 0.00975471549, 0.00262221601, 0.00324006309, -0.00336726685, 0.00940581411, 0.000820464629, 0.0287844073, 0.0068472, -0.00530258194, -0.0179539099, -0.0194948949, 0.028987933, 0.00692715682, 0.00796659384, -0.00400510337, -0.0176776964, 0.00239688344, 0.00630204054, 0.0244376715, -0.0114047313, 0.0172997192, 0.0265310816, -0.0104016382, -0.0162094012, 0.0213702414, -0.0243068337, 0.0114410752, 0.00643287878, 0.0110994419, 0.00413594116, -0.0065273731, 0.0110994419, 0.0102707995, -0.00239870069, -0.00803201273, -0.00667638332, -0.0102126496, -0.0133745736, 0.0187680144, 0.0187244024, -0.00724698324, 0.00864986, 0.0140869142, -0.00860624667, 0.0133673046, -0.0213411674, -0.0183028132, 0.00105851749, -0.00451391842, -0.0302963164, 0.0106996587, -0.0062656966, -0.0109031843, 0.0418682285, 0.00951484591, -0.00596767617, 0.014719299, 0.0107141957, 0.0198001824, 0.0108159594, -0.00872981641, -0.0269381348, -0.0252227, 0.00582230045, -0.00750139123, -0.0148574058, 0.0212539416, -0.0354426205, -0.00743597187, -0.0036562013, 0.018898854, 0.0113829244, -0.00541161373, -0.0138615817, 0.010539745, 0.00697440375, -0.0223297216, -0.0170235056, -0.00666184584, 0.0180120617, 0.0151917702, -0.00530258194, -0.00554972095, -0.0118408585, 0.0116882138, 0.0408796743, -0.0148574058, -0.0130184023, -0.032040827, 0.0464330278, -0.0088243112, -0.0044666715, -0.00042795, 0.000924044871, -0.00156915, 0.015773274, -0.0138761196, 0.00399056543, 0.0103943693, -0.00952211488, 0.020032784, 0.0260077305, -0.016340239, -0.0158459619, 0.012087997, -0.009994586, 0.00136380666, 0.00623298716, 0.0199600961, 0.014210484, 0.0135635613, -0.00320917065, -0.0271271225, -0.0112012047, -0.00437944569, 0.0208759643, -0.0123642115, 0.0196984205, -0.0217918325, 0.0140433013, 0.00453209039, 0.0101835746, 0.0139633454, -0.0172270313, 0.0108595723, -0.00149373629, 0.0239433926, 0.00347629865, 0.0205997508, -0.0185354147, -0.0106124328, -0.00501909945, -0.0184918, -0.0211521778, 0.00400510337, 5.900213e-05, -0.015773274, 0.0162239391, -0.00971110351, 0.00407415675, 0.0101908436, 0.0301509406, -0.0166600663, 0.0364893228, -0.00532438839, -0.0230420642, 0.0101472307, 0.015278996, -0.00642197579, 0.00807562564, 0.0227367748, -0.0161367133, -0.00139651622, -0.011034023, 0.013156509, -0.0192477554, 0.0074287029, 0.0163547769, -0.0120153092, -0.00565148424, -0.0067890496, 0.0160785634, 0.0122261047, -0.0329130813, 0.00308741839, 0.00156097254, 0.0316628478, -0.00747958478, 0.00793025, 0.00115937192, 0.0202217735, -0.0230129883, 0.00357261021, 0.00471017556, 2.49864643e-05, 0.00160458533, 0.00601128908, -0.0354426205, 0.021035878, 0.00135835505, 0.0152063081, -0.0031819127, 0.0284791179, -0.00817738846, 0.00798113085, -0.00923863146, 0.00930405129, 0.0137816258, -0.012124341, 0.0188407023, -0.0151481582, 0.0229403, 0.00761769153, 0.00931131933, 0.0114265373, 0.0233473536, -0.00748685328, 0.014210484, 0.00158368761, -0.00971837156, -0.00187171332, 0.00529894792, 0.0080392817, -0.000137084833, -0.0103580253, -0.0216900688, 0.00159549934, -0.00674543669, 0.000574234407, -0.0222715717, 0.0121388789, -0.0111575918, 0.0155261345, 0.0261094924, 0.0176631585, -0.0285081938, -0.00703618862, 0.00202617515, -0.00606943946, 0.0119426213, 0.0297148116, -0.00817738846, 0.0109758722, -0.0135126803, -0.00724334875, 0.00142468279, 0.0118117835, 0.000544250652, -0.0330584571, -0.00534256035, 0.0179975238, 0.00130929076, 0.00371253444, 0.0172706451, 0.00115392043, -0.0183318872, -0.0282901302, 0.00119299011, 0.00867893454, -0.00700347871, -0.0149882445, 0.000398420525, 0.0174014829, -0.00609124592, -0.0591970235, -0.001311108, 0.0157296602, 0.0280284528, 0.0108232275, -0.00878069829, 0.0016082197, 0.00785756204, -0.0336108841, -0.0209050402, 0.00348720187, 0.00120934495, 0.0138397757, 0.0400946438, -0.0430603102, 0.017866686, 0.00795205589, -0.0100600049, 0.0156860482, 0.0152935339, 0.0171979573, -0.00981286634, -0.00804655068, -0.0207742, 0.0133818416, -0.0202799235, 0.0100600049, -0.00617483677, -0.00711251097, -0.0111503238, 0.0127203818, -0.014195946, 0.00531712, 0.0119353523, -0.0183028132, 0.0178376101, 0.0107796155, 0.0108014215, -0.00928224437, -0.00032118964, -0.0101545, -0.024248682, 0.00960207079, -0.0255570654, 0.00341996551, 0.00106851209, -0.0256442893, -0.0159186497, 0.00725425221, 0.0178376101, -0.016849054, -0.0167472921, 0.00706889806, 0.0119426213, 0.0172270313, 0.00043203868, -0.011026754, 0.00691261888, 0.0290315468, 0.0167909041, -0.0309941191, 0.0202508476, 0.00308378413, -0.00896968693, -0.0260804184, -0.0059967516, 0.0282174423, 0.0293077603, 0.00445213355, -0.0144648915, 0.0100745428, -0.0258478168, -0.00189170253, 0.0267491471, 0.014733837, 0.000804564159, -0.00797386188, 0.0096892966, -0.0156860482, -0.0393968411, 0.0336690359, 0.00191896048, -0.0112520866, -0.00896968693, 0.00127294683, 0.0148574058, -0.000169340085, 0.0149882445, -0.010517939, -0.0295549, 0.0211812537, -0.00165183248, -0.037884932, 0.0137307439, -0.0139124636, 0.0213120915, 0.0124005554, 0.00951484591, -0.0213266294, 0.00694532879, -0.0282174423, -0.00987828523, 0.00543705467, 0.00242050691, 0.017866686, -0.00665457686, -0.0212684795, -0.0272143483, -0.00215337891, -0.0158605, -0.0255716015, 0.0233182777, 0.0516665578, -0.0141741401, 0.00934039522, -0.0181138236, -0.0290606208, 0.00502636796, 0.0100600049, 0.010517939, -0.0045284559, -0.000721427379, 0.0293513723, -0.0024441306, 0.0146248052, 0.000343904627, -0.0199310221, 0.000213407126, 0.0209050402, 0.0257315151, -0.0134399924, -0.000216473651, -0.00553154899, 0.0092749754, 0.00391060906, 0.0149155566, 0.017386945, 0.00960934, -0.0343086869, 0.0256152153, 0.0108886473, -0.0301800147, 0.0240306184, 0.021064952, 0.0367510021, 0.00341633125, -0.0170671176, -0.0140796453, 0.00640743831, -0.012596813, -0.025804203, -0.012596813, -0.0201345477, -0.0167036783, 0.0243795216, 0.00872254744, -0.00597131066, 0.0258768909, -0.00760315405, 0.0106633147, 0.0167909041, 0.015278996, -0.022082584, -0.049922049, 0.0290751588, -0.00377977057, -0.0287262574, -0.0197856463, -0.00826461427, -0.0403563194, 0.0103943693, 0.0290170088, 0.0143413218, -0.0158750359, 0.0163838528, -0.0136507871, 0.0221552718, 0.0230711382, 0.0293804482, 0.0133091537, 0.00105215737, -0.015249921, 0.0165583026, -0.0116227949, 0.00929678231, 0.000770037412, 0.00790117402, -0.00774853, 0.02840643, -0.00627296558, 0.00920955651, -0.00513539976, -0.0035471695, 0.00925316941, 0.00138107, -0.0151481582, 0.00771945482, -0.0077339923, 0.0388444141, 0.00341633125, 0.0231292881, -6.28068883e-05, -0.0139415385, 0.0188261662, -0.0220389701, 0.00491006766, -0.00847540889, 0.018898854, 0.00885338616, 0.025804203, 0.0589353479, 0.0102926064, -0.0204689112, -0.0279266909, 0.00585501036, 0.0235508792, -0.0181865115, 0.00870074145, 0.00107487233, -0.031633772, -0.00248047453, -0.0283918921, -0.0419554561, -0.00751592871, -0.000319599611, 0.00256406562, 0.0191459917, -0.00459387526, 0.00261676428, -0.00971837156, 0.0034490407, 0.0100381989, -0.00327277253, 0.0444849916, 0.0199019462, 0.0132073909, 0.0196111947, 0.000635110482, -0.0307033677, -0.0108450344, -0.00276759174, -0.00791571196, -0.0203962233, 0.0261821803, 0.0113611184, 0.00231874385, 0.0169653557, -0.00234963628, -0.0417228527, 0.0562313572, -0.0225477852, 0.0149300937, -0.00852629077, -0.0249755606, 0.00164183788, 0.0205706749, 0.0282319784, 0.0014891933, 0.0224024095, -0.0097329095, 0.0109686041, -0.0125822751, -0.0123932865, -0.0223442595, -0.000278485502, 0.00852629077, -0.0296275876, 0.00950757693, -0.0112157427, -0.00991462916, -0.0309359692, 0.00585501036, -0.0137016689, -0.0188552402, -0.0113683874, 0.0256733652, 0.0265456196, -0.00519355, 0.00667274883, -0.0204398371, 0.0140360333, -0.0068326625, -0.00775579875, -0.00581866596, -0.0100454679, -0.0224314854, -0.00243141013, 0.00295294588, -0.00297111785, 0.0221552718, -0.000738690782, 0.00486645475, -0.00747958478, -0.00604763301, -0.00886065513, 0.0107069276, -0.0151336202, -0.0124005554, 0.0285808817, 0.0448920466, 0.013134703, -0.00149555353, -0.00915867463, -0.00790844299, 0.0022605937, 0.0107868835, 0.0291187726, 0.00851902179, -0.00169090217, -0.00673089921, -0.00449938094, -0.0185790267, 0.000715067203, 0.0249755606, -0.0058332039, 0.0167327542, -0.00301473052, 0.0104597881, 0.0127930697, -0.0129311774, -0.00461931573, 0.015220846, 0.0280866027, 0.0179248359, 0.0221698079, 0.00862078462, 0.0137816258, -0.00871527847, 0.0132364659, -0.0150173195, 0.0107069276, 0.00260949554, 0.00438671466, -0.01261135, -0.00235690502, -0.00501909945, 0.0182737373, 0.0148574058, 0.00187716493, 0.0190878417, -0.0212539416, -0.0158459619, -0.0234927293, 0.00312012807, -0.00873708539, 0.0060512675, -0.0129021015, 0.00826461427, -0.000429085747, 0.0289588589, 0.026821835, -0.0259786546, -0.0180120617, -0.0154970596, -0.0040959632, 0.00541524822, 0.00136289804, 0.0081047006, -0.000668274355, 0.0201490857, -0.0256297532, 0.0170816556, -0.00804655068, 0.028944321, 0.00709070452, -0.00343995471, 0.0291187726, 0.000532438862, 0.00427768286, -0.000612395525, -0.00731240259, -0.00142377417, 0.00476469146, -0.0028947955, -0.00691261888, -0.00342178275, 0.00938400719, 0.00437217718, -0.00759588508, 0.013679862, 0.00240960391, -0.00476469146, 0.018419113, 0.000104602426, 0.0256733652, -0.0056260433, -0.00392151205, -0.0142613659, 0.00555699, 0.00341814826, -0.0155406725, 0.0105760889, -0.0037107172, -0.000990372617, 0.00505907787, -0.00281120441, 0.0207451265, -0.026821835, -0.0126622319, -0.0165437646, 0.00746504683, 0.00820646342, -0.00295112864, -0.0146538801, 0.016863592, 0.0155697474, 0.0153952967, 0.00625479361, 0.00156642415, 0.0046265847, -0.00232419558, 0.00170634838, -0.00992189813, 0.0150754703, 0.00741053093, 0.0377395563, 0.0145739233, -0.00827188231, -0.00909325574, -0.0128148766, 0.00147829007, 0.00209886301, 0.0144285476, -0.00181083719, -0.0101835746, -0.0246121213, -0.00703982264, 0.00925316941, 0.0170380436, 0.001311108, -0.00436490821, 0.0120298471, 0.00326186931, -0.00998731703, -0.0148065249, -0.016849054, -0.00545886112, 0.00361077138, 0.0041068662, -0.0258914288, 0.0156424362, -0.03363996, 0.0206869747, 0.0190006159, 0.0263857059, -0.00950757693, -0.0473343581, -0.0135926371, 0.00108304969, -0.0113829244, -0.00950757693, -0.00686173746, -0.00879523531, -0.00357624446, -0.000396376185, -0.00211885222, 0.0151481582, -0.00926043838, -0.024728423, -0.00876616, -0.0212103277, -0.0091296, -0.0154534467, -0.0132510038, -0.00843906496, 0.0127858007, -0.00728332717, 0.00910052471, -0.0103507563, -0.0165583026, 0.00608034246, -0.00392514654, 0.00860624667, -0.0124514364, 0.018957004, -0.0140723772, 0.00700347871, -0.0112666246, -0.00933312625, 0.00158641336, 0.00328185852, 0.0167182162, 0.0338144116, -0.00592406373, -0.00491733616, -0.0108741093, 0.0133673046, 0.0103216814, -0.000162639175, -0.0269962847, 0.0110776359, 0.0125168562, -0.00286026881, -0.000159231931, -0.00675634, -0.0102635315, -0.0262112562, 0.0180556737, -0.0122697167, -0.0298311133, 0.00447757449, 0.0194076691, 0.0140142264, -0.00551337702, 0.00540071074, -0.0260658804, -0.0119426213, 0.00540797971, 0.0242922958, 0.00674907118, 0.0150027825, -0.00448484346, -0.0142540969, -0.0169217419, -0.000513358274, 0.0194512811, 0.0125532, 0.0316919237, -0.0039978344, 0.0220098961, 0.0118045146, -0.00163366052, 0.00985647924, 0.00334909488, -0.0217772946, 0.0147120301, -0.0401527956, -0.0112302797, -0.00462295, 0.0144939665, -0.00753046619, 0.0212248657, 0.0117463646, 0.00517901266, 0.0218935944, 0.000614212709, -0.00682175905, -0.015278996, 0.0165583026, -0.00227694842, -0.000124478029, 0.0151626952, 0.00860624667, 0.0187680144, -0.00998731703, -0.0193931311, 0.00246048532, -0.00648739468, 0.0144430855, -0.00104488852, -0.0103798313, -0.0214138553, -0.00122479105, 0.00706889806, -0.0251500122, -0.0244376715, -0.00624752464, 0.00166546146, 0.00215883064, 0.00834457, 0.00154643506, 0.0141305272, -0.00940581411, 0.0172706451, 0.0189715419, -0.00757407909, -0.0170525815, 0.00742506888, -0.0326223299, -0.00520081911, -0.0221552718, -0.00979832839, 0.0228821505, 0.00375069561, -0.0102053806, -1.06050511e-05, 0.0213266294, -0.00355625548, -0.000101819845, 0.0023350988, -0.00429222034, -0.00566965621, -0.0103434874, -0.0135635613, -0.00822100136, -0.0168926679, -0.0143122468, 0.00995097309, 0.0306452177, -0.0108595723, -0.00316737522, -0.0112884305, 0.0143703977, 0.00990009122, 0.00465929415, 0.000896786922, 0.000701438228, -0.0203816872, 0.0370999, 0.0120443841, 0.0129384454, 0.00316919223, -0.00919501856, 0.021588305, -0.00444123056, -0.00022113022, -0.0120661911, 0.0161512513, 0.01423229, 0.00526260398, -0.0460259765, 0.00190442288, 0.00553518347, 0.0163838528, 0.00204434711, -0.0227658488, 0.0212103277, -0.0204543751, -0.00942035113, 0.00253317319, 0.0139270015, 0.0259205047, -0.00541524822, -0.0184481889, 0.020309, 0.00516447518, 0.0269235969, -0.0131855849, 0.00479740137, 0.0198728703, -0.00513903424, 0.00332547119, 0.0301800147, 0.0155842854, -0.000693260808, 0.0113102365, -0.00823553838, -0.00811197, 0.014195946, -0.00876616, 0.00475378847, 0.0182446614, -0.0236526411, -0.00473925099, -0.0184772629, -0.00628023455, 0.0177794602, -0.0018807993, -0.00987828523, -0.000913596, 0.00264765671, 0.00100763596, 0.01213161, -0.0197129585, 0.00160640257, -0.0128584886, -0.021544693, 0.026283944, 0.000480194431, 0.0140214954, -0.0047356165, -0.00546976412, 0.0355879962, 0.00194621843, -0.00238598022, 0.0058986228, 0.0116446009, -0.00386336166, 0.000911324518, 0.00461568171, -0.000128112413, -0.000687809254, -0.0113393124, -0.00296384911, -0.00493914261, -0.0222424958, -0.00610941788, 0.0206579, 0.0369545259, -0.0159913376, 0.0125750061, 0.0272434242, 0.0171979573, -0.00537890429, 0.0005469764, 0.0124514364, 0.00556425843, 0.00121116207, 0.0106487768, -0.0172706451, -0.0193495192, -0.0181429, 0.00261131278, -0.00870074145, 0.0100890798, 0.0202653855, 0.017910298, -0.0225332491, -0.00209886301, -0.00576778455, -0.00982013531, 0.00218063686, -0.00721427379, -0.0201926976, -0.00521535659, 0.0149155566, -0.00657098601, 0.015802348, 0.00897695497, -0.0142250219, -0.0115283, -0.00471381, -0.0124368994, 0.0192768313, 0.0173578691, 0.00547703309, 0.0221698079, 0.00939854514, -0.0174450949, -0.0127421888, -0.00736328401, -0.0016082197, 0.011579182, 0.00807562564, -0.0149010187, -0.0249174107, -0.00522989407, 0.00294386, 0.0132219288, 0.0236090291, -0.00922409445, -0.00412140368, 0.0296857376, 0.00771218585, -0.0132946167, 0.0237980168, 0.0129093705, -0.0103652943, 0.0266909953, -0.00820646342, -0.00867893454, -0.00153825758, -0.0212248657, -0.0165001526, 0.00204071263, -0.00510269031, 0.0137670878, 0.00166091847, 0.00581503194, 0.016325701, 0.0171834193, 0.0146538801, -0.00240960391, 0.00936947, -0.00663277041, -0.00619300874, 0.00156551565, -0.0200473219, -0.00545522664, 0.00323279435, -0.00308560114, 0.0177067723, 0.0212830156, 0.00185354135, -0.00522626, 0.00532802287, -0.0328549296, -0.00954392087, 0.0180847496, 0.0016082197, 0.0202944614, 0.0112012047, 0.00656371703, 0.018375501, 0.00420136051, 0.00214611017, 0.0116155259, 0.00896968693, 0.0240015443, 0.00416138209, -0.00393968401, -0.0298311133, -0.0135199493, 0.00483011082, 0.00152553723, 7.29150488e-05, -0.00141832256, 0.00750139123, -0.0220389701, -0.0229548384, -0.000365256681, -0.0124368994, 0.00513539976, 0.0171252694, 0.00352718029, -0.0259059668, -0.00881704222, 0.0181283616, 0.0172706451, 0.0097329095, -0.0093185883, -0.00833003316, -0.00367437326, -0.00144830637, 0.0046374877, 0.0136362491, 0.0112157427, -0.00366165279, 0.0182010494, -0.00783575512, -0.000726424681, -0.0180847496, 0.00641834131, -0.015816886, -0.00211340073, 0.00244231336, -0.0148719437, -0.00218972284, -0.000706889783, 0.0285518058, -0.00758861657, -0.0067890496, 0.00774853, -0.00885338616, 0.00415411312, -0.0181429, -0.00980559736, -0.0119135464, 0.017328795, -0.00450301543, -0.0090132989, 0.0126840379, -0.00184263824, -0.0307905935, 0.00477922941, -0.00064237928, 0.0134763364, 0.0157005861, -0.0306742918, 0.00397239346, 0.0351518653, 0.0124732433, 0.0228530746, 0.0181429, 0.00101127033, 0.0170671176, 0.0146756861, 0.000372525479, 0.0012120707, 0.00242050691, -0.00938400719, 0.0240596943, 0.00793751795, -0.0159622617, 0.0185644887, -0.0235508792, -0.00369981397, 0.00819919445, 0.00585864438, 0.0244812835, -0.00337635283, -0.0017517783, 0.0106560457, -0.0108523034, 0.0267200712, 6.99621e-05, 0.0122697167, -0.0137525499, -0.000401827769, 0.0135054113, -0.00795932487, 0.0158459619, 0.0122479107, -0.0211667158, 0.00386336166, 0.0117463646, 0.0180120617, 0.00859171, 0.00348538463, -0.00451028394, 0.00517537817, -0.00690535037, -0.0106778517, -0.00568782818, -0.0212684795, 0.00256951712, 0.0265456196, 0.00400873739, -0.0165292285, 0.0146974931, 0.0103943693, -0.0023950662, -0.00275487127, 0.0112956995, 0.00388153363, 0.0130910901, 0.0309650451, 0.0155988224, 0.0361695, 0.00675997464, 0.00957299583, -0.0113102365, 0.00587318232, -0.0137888938, 0.00513903424, 0.0117972456, -0.0264438577, -0.00418682303, 0.000503818, -0.0132946167, 0.0197856463, 0.00609851442, -0.00615303032, -0.00939854514, 0.00427041389, -0.00599311711, -0.0143994726, 0.00135926367, -0.0258478168, -0.0121461479, -0.00854809675, 0.0139706135, 0.00401964085, -0.00463021919, -0.0111357858, -0.0086425906, -0.0266037695, 0.00459750928, -0.00552064599, -0.00738145597, 0.00874435436, -0.00515357172, 0.00263857073, -0.00682902802, -0.0280429907, -0.011055829, -0.0129166394, 0.00709070452, 0.0257315151, 0.0386118107, -0.00546976412, -0.00898422394, 0.000840908091, 0.00950030796, 0.0210940279, -0.0142250219, -0.0134327235, -0.0149737066, 0.0220389701, -0.00797386188, 0.0274469499, -0.00603673, 0.0187680144, 0.00119935034, 0.000298928964, -0.00021499717, 0.011586451, 0.0132219288, 0.00074141653, -0.00979832839, 0.00338362157, -0.0107868835, -0.00862078462, 0.0123860175, 0.0108741093, 0.014239559, 0.0101835746, -0.0408796743, -0.00584774138, 0.0170089677, 0.0280720666, -0.0171543434, 0.029976489, 0.00628386857, 0.0492823943, 0.00160731107, -0.026298482, -0.00319281593, -0.00919501856, -0.00549883954, -0.0198001824, -0.0260077305, 0.00731603708, 0.00936947, -0.00545159215, 0.00438308, -0.00366347, -0.002633119, 0.0290315468, 0.0096892966, -0.0136362491, -0.00699621, 0.0232165139, -0.0219662823, 0.0182737373, -0.00306561217, 0.0163693149, -0.0368963778, -0.00299110706, 0.0140287643, -0.0123642115, -0.0257024411, 0.009471233, 0.00602219207, 0.016340239, -0.00440488663, 0.00488462672, 0.00603309553, 0.00707980106, -0.0264583938, -1.87256519e-05, -0.00570236566, 0.0163983889, 0.00825007632, -0.000170702988, 0.00660733, -0.0185935646, 0.011571913, 0.00459387526, -0.00540071074, -0.0201926976, 0.0101181557, 0.00699984469, -0.0197711084, 0.00412140368, 0.0235654172, -0.00768311089, -0.00920955651, 0.025760591, -0.0213120915, 0.0138397757, -0.00495004561, -0.0248156488, 0.00787209906, 0.00101036183, -0.00439034915, 0.0163983889, 0.0108886473, 0.000639653474, 0.0181865115, -0.00722517679, -0.0145012354, 0.0138470447, -0.00671636174, 0.00757407909, 0.0155697474, 0.0358496718, -0.0114628812, -0.0229548384, 0.00439034915, 0.000696895237, 0.00334727764, 0.0200037099, -0.00713795144, 0.0222715717, 0.0194367431, -0.013171047, 0.00873708539, 0.00549883954, 0.0335236564, 0.0124805123, -0.0230129883, -0.00147738156, 0.0155115975, -0.0143631287, -0.00867893454, -0.0230856761, -0.00618937425, -0.0062584281, 0.000643287902, 0.00853355881, 0.000278712658, 0.0136144431, 0.0113683874, -0.0140578393, -0.0235072654, 0.0129675213, 0.0116809448, -0.00726152072, 0.022126196, -0.0108959163, 0.00704709161, 0.0101254238, -0.0098419413, -0.0219226703, -0.0039978344, -0.00334182614, 0.00598584814, 0.027897615, -0.00793025, -0.015278996, -0.0156424362, 0.00859171, 0.0154970596, -0.0023950662, 0.0118917404, -0.00194621843, -0.00672363071, 0.0161803253, -0.00551337702, -0.0143558597, -0.0207015127, 0.0170525815, 0.0175468586, 0.00265310821, 0.00258587184, -0.0250918623, -0.0068980814, -0.00802474376, 0.00500092749, 0.00480830437, -0.0159041118, -0.0225623231, -0.0218354445, 0.00384155544, -0.00500092749, 0.00848994683, -0.0040414473, -0.00167363882, -0.0170525815, 0.025251776, -0.000333910022, 0.00963114668, 0.00582230045, -0.0139996894, -0.00104216277, -0.0124150924, -0.0127058448, -0.0286535695, 0.020541599, -0.0267055333, 0.013156509, 0.0108741093, -0.0125241252, -0.0240160804, 0.0242196079, -0.00908598676, 0.0367219262, -0.00376886758, -0.00884611718, 0.00413957564, 0.00895514898, 0.012124341, -0.00957299583, -0.00447394, -0.0095802648, -0.00090405572, 0.00606217049, 0.0145593863, -0.00557879591, -0.0155406725, 0.00759588508, 0.00242232415, -7.97295361e-05, 0.00114483433, -0.0208905023, -0.00504817441, -0.0059967516, 0.013716206, 0.00936947, -0.0134617984, -0.00451391842, -0.00166909583, -0.000565148424, 0.0243504457, 0.00428858586, 0.0017617729, -0.0243068337, -0.00286935479, -0.026298482, 0.0100745428, 0.012109804, -0.00202617515, 0.00298020383, -0.011412, 0.0104670571, -0.00582593493, 0.0272288863, 0.00802474376, 0.0281738285, -0.0178376101, 0.00590225728, 0.0191750675, -0.000934039475, -0.0143558597, 0.0137670878, 0.0122188358, -0.00286390306, 0.0331166051, -0.00413230713, 0.0135853682, 0.00974017847, -0.00405961927, 0.0144721605, 0.00543342, 0.00750865974, 0.00648012618, 0.00223878725, -0.0242196079, 0.00562967779, -0.0149155566, 0.00750865974, 0.0360531956, -0.0113102365, 0.0104234442, -0.0139197325, -0.0202217735, 0.0113901934, 0.0146320742, 0.00833730213, -0.000396830495, 0.00600765459, -0.0129384454, -0.0269672107, -0.0156860482, -0.00601492357, -0.0151917702, 0.0193785932, -0.00971110351, 0.00815558247, -0.0143049778, 0.0399492681, -0.0117172888, -0.0114338063, 0.00859171, 0.0227949247, 0.00356352422, -0.0125604691, 0.00532438839, -0.0284936558, -0.00200255169, 0.00711251097, -0.0738509074, -0.0101036178, 0.0268799849, 0.0149882445, 0.0118408585, 0.00743960636, -0.00465565966, -0.00449938094, 0.032040827, 0.00128021557, 0.00914413761, 0.00020114104, 0.0138252378, -0.000375478412, 0.00169453665, -0.00407415675, 0.0146320742, -0.0154098347, -0.0157587361, -0.021064952, -0.00257678586, 0.00118390413, 0.0188261662, 0.000180470422, -0.00726152072, 0.0149882445, -0.00187716493, 0.0128221447, 0.00759588508, -0.0143922037, -0.0218935944, 0.00427404838, -0.000186717036, -0.0137888938, 0.00368527649, -0.014188678, -0.016863592, -0.0113175055, 0.0050954218, -0.007374187, 0.00149737066, -0.00613485835, 0.00631294399, -0.0136144431, -0.0292350724, 0.00923136342, 0.00880977325, -0.0130184023, 0.00139651622, 0.0197129585, -0.0364602506, 0.0148864817, -0.0146974931, 0.00093222229, -0.0224750973, -0.00259859231, 0.00954392087, -0.0218499824, 0.0143049778, 0.0270835105, 0.00728332717, -0.0570745356, 0.00677814661, -0.00169907964, 0.0201490857, 0.0156278983, -0.00125931785, 0.00859171, 0.0120080402, -0.00374342664, -0.00790117402, -0.0275777876, -0.0211376399, 0.00181356305, 0.00282574212, -0.0200909358, -0.0051499377, -0.00587681634, 0.0144648915, 0.0175904706, 0.00895514898, 0.00476832595, 0.00665094238, -0.00870801, 0.00803201273, 0.00149555353, 0.0081483135, 0.0183173493, 0.0166746043, 0.00797386188, 0.0219372083, -0.00585864438, 0.000566057, 0.00309105287, 0.0303544663, 0.00840999, -0.00976925343, -0.0110194851, 0.0283918921, 0.0068980814, 0.00879523531, -0.00148828467, 0.0199019462, 0.014188678, 0.0242196079, -0.0236090291, -0.0151190823, -0.0107650775, -0.0119571593, 0.000609669718, 0.00880977325, -0.00726878969, -0.00667274883, -0.00166909583, 0.0118117835, 0.0159622617, -0.00833003316, -0.00867893454, -0.00572417211, 0.0167909041, -0.00968202762, -0.0305870678, -0.0144576225, -0.0117318267, 0.0107650775, 0.0154243717, 0.00949303899, -0.00541524822, -0.0111430548, -0.0118553964, 0.00114574295, -0.00020034601, 0.0109249912, -0.0225623231, -0.0106560457, -0.00329276174, 0.013149241, 0.00156915, -0.00172542897, 0.00678541511, -0.0117899766, 0.00473925099, -0.00827188231, -0.0315174721, -0.00944215804, -0.0258187409, -0.013665325, 0.00897695497, 0.00887519214, 0.00464112218, -0.0197711084, -0.0327095538, 0.00451391842, -0.010517939, 0.00533892587, -0.0108741093, 0.0152935339, -0.00508088386, -0.0169362798, -0.0115428381, -0.0188261662, -0.00307288091, 0.00373979239, -0.00666548032, -0.00618574, 0.0198292583, -0.00843179598, 0.0039433185, -0.00282210764, -0.0156424362, 0.00294204266, 0.0228676125, 0.0111357858, -0.00349447061, -0.00137470989, -0.00272034458, -0.00580412848, -0.00702891964, 0.00753046619, 0.00941308308, 0.0269817468, -0.00747958478, 0.000689172128, -0.00777760521, -0.00166182709, -0.0228966884, -0.00554245198, -0.0167182162, 0.00270035537, 0.00525533501, 0.0222861096, 0.0156569723, -0.0155842854, 0.00287662353, -0.0198001824, -0.00455389684, 0.0109540662, 0.0150609324, -0.0146611491, 0.0235944912, -0.010488864, 0.000905872905, -0.0132728098, 0.0135344863, 0.00414321, -0.021544693, -0.0188552402, 0.0186807904, -0.0037361579, -0.0141523341, 0.00816285051, -0.0200473219, -0.0267927591, 0.0223733354, 0.013708937, 0.00359259942, -0.00851902179, -0.00814104453, 0.0143340537, 0.00492460513, -0.0048446483, 0.023114752, 0.0170671176, 0.00728696166, 0.00819919445, 0.0170235056, 0.000862260174, 0.0202653855, -0.0104234442, -0.00767584192, 0.00781394914, -0.0145521173, 0.0169217419, -0.00928951334, -0.0117609017, 0.0119716963, -0.00488462672, 0.00877342932, 0.00493550813, 0.0198437963, 0.00417955406, 0.0152935339, -0.00990009122, 0.00406325329, -0.0219662823, -0.0107650775, 0.0255279895, -0.00557516189, -0.0106633147, 0.00124932325, -0.0180411357, -0.00735601503, 0.00359805091, 0.0126913069, 0.0135199493, -0.0143340537, -0.0186517145, 0.0135126803, 0.00449938094, 0.0300927889, 0.0123787485, -0.0153226089, 0.00188806816, -0.0140287643, 0.00739599345, 0.00122024806, 0.0138179697, -0.0131056281, -0.00344177196, 0.011026754, 0.00923136342, -0.00455753133, 0.0135344863, -0.0133527666, 0.0166746043, -0.0105906269, -0.0138688507, 0.0129166394, -0.011084904, -0.00186807895, -0.00686173746, -0.0260368045, -0.000575142971, 0.0184481889, -0.00986374728, -0.01261135, -0.0024986465, -0.0339307114, -0.00435400521, -0.0263420939, 0.022635011, 0.00257133436, 0.0020534331, -0.00682539353, 0.00424497342, -0.0298601873, -0.00728332717, 0.00800293777, -0.0166600663, -0.0113538494, -0.0103216814, 0.00274396804, -0.0112666246, 0.00499365851, -0.00914413761, -0.0254843775, -0.0106560457, -0.00850448385, 0.00204616436, -0.0111357858, -0.0341633111, -0.000710524211, 0.00984921, -0.0066255019, -0.00715248892, -0.0143340537, -0.0176631585, 0.00517174369, 0.00851175282, 0.00320735341, -0.00585501036, -0.0176631585, 0.00481557334, 0.00243322738, -0.0119062774, -0.0197711084, 0.00588045083, 0.0339016356, 0.0191605296, 0.0006978038, 0.0160204135, 0.0291623846, -0.00413230713, 0.018433651, -0.018986078, 0.0102780685, -0.00233146432, -0.0202799235, 0.00709797302, -0.0113247745, -0.00870801, -0.00186444458, 0.015802348, -0.000823190436, 0.0297729634, -0.0218935944, 0.00520808762, 0.0154679846, -0.0111357858, -0.00616393378, -0.0104379822, 0.0114265373, 0.0158605, 0.0183609631, -0.00480467, -0.00452482142, -0.0210068021, -0.00617120229, 0.014748374, -0.00201708917, 0.00728696166, 0.00456116535, -0.0164710768, -0.0020788738, 0.00271489308, -0.00502273394, 0.0228094626, -0.00556062395, -0.0107069276, -0.00826461427, 0.023638105, -0.0244522095, -0.0109831411, 0.0568710119, 0.0105833579, 0.00506634638, -0.00308378413, 0.0207742, -0.0276940893, 0.00476832595, 0.0368673019, -0.00689444691, -0.0156715102, -0.00576778455, 0.0128294136, 0.00127476396, 0.000516992644, 0.00580412848, -0.0107287336, -0.0263566319, -0.00648012618, 0.00768311089, -0.00598584814, -0.00661823293, -0.00531712, 0.0134472614, -0.00366165279, 0.0107505396, -6.60437727e-05, -0.00807562564, 0.00440488663, -0.00794478692, 0.0278685391, -0.00221334654, -0.000974926399, -0.0104670571, -0.00128021557, 0.00144648913, 0.0106124328, -0.0239433926, 0.00579686, 0.00982013531, -0.00765403546, 0.0364311747, 0.0167472921, 0.00733420905, 0.0240742322, 0.0143485907, -0.00768311089, 0.0153371459, -0.00216973363, 0.00653100759, -0.011041292, -0.0097329095, -0.0112375487, 0.00454299338, -0.0127421888, -0.0145012354, -0.00129747891, 0.0222570337, 0.00888973, -0.00421226351, 0.0285518058, 0.0130910901, 0.0180992857, 0.0203380734, -0.0233473536, 0.00553881796, -0.00440125214, 0.00824280735, 0.0191169176, -0.0283482801, -0.0170816556, 0.0269526727, -0.0207015127, -0.00570236566, -0.018942466, 0.017866686, 0.017343333, -0.0167182162, -0.004997293, 0.00456116535, -0.00873708539, 0.00121661369, 0.00686173746, -0.0029493114, -0.000273261074, -0.00272397907, -0.012618619, -0.0211521778, -0.0137816258, -0.0125241252, 0.00722154276, 0.000351854862, 0.00592406373, 0.014726568, 0.0014601181, -0.00346539542, -0.0136071742, -0.0101472307, -0.00268581789, 0.0117827086, -0.00950030796, 0.00355080375, 0.000810015772, -0.0118917404, -0.0133673046, -0.00398693094, 0.0155988224, -0.0113974623, 0.005789591, -0.00106942072, -0.0137016689, 0.00412140368, 0.00335272937, 0.0270835105, 0.014217753, 0.00801747479, -0.00523352856, 0.0180265978, 0.00839545205, -0.0032600523, -0.00122842542, 0.0129384454, -0.00518628163, 0.0032109879, 0.018986078, 0.0177503843, 0.000663277053, 0.000976743642, -0.00587681634, 0.00881704222, 0.00580412848, -0.0162675511, -0.0141596021, -0.00438308, -0.00791571196, 0.0027366993, 0.0229112245, -0.00911506265, -0.0112738926, 0.00156006403, 0.034686666, 0.00206797058, 0.00226241071, 0.00218608859, 0.00606217049, 0.023201976, -0.00294749415, 0.0183173493, -0.0187970903, 0.0300637148, 0.00505544338, 0.00264583947, 0.0221988838, 0.00907145, -0.00629840652, 0.0112375487, 0.00838818308, 0.0124441683, -0.00294749415, 0.0423625074, -0.00196257327, 0.00261858152, -0.00216973363, -0.00891880505, -0.0195530448, 0.0091659436, -0.0148210619, -0.00086453167, 0.00147647294, 0.0118045146, 0.00649102917, 0.00393604953, 0.0158459619, 0.00741053093, 0.0283918921, -0.00294022541, -0.0028348281, -0.00672363071, 0.00376523309, -0.00957299583, -0.0195821188, 0.00555699, 0.0146175362, 0.00447030552, 0.0602437295, 0.0109540662, -0.0385536626, -0.00407052226, 0.0115937199, 0.00792298093, 0.00459387526, -0.0119280843, -9.71632762e-05, -0.0080392817, -0.0104016382, -0.0213993173, -0.016325701, 0.0199455582, -0.0226204731, -0.0156424362, -0.0187680144, 0.0287262574, 0.00546613, 0.0101326928, 0.0187389404, -0.00699257571, 0.0132510038, 0.0153080709, 0.0115937199, -0.0116736768, -0.0155261345, -0.00182719203]
20 Feb, 2023
deque crend in C++ STL 20 Feb, 2023 The deque::crend() is an inbuilt function in C++ STL which returns a constant reverse iterator which points to the position before the first element of the deque. Syntax deque_name.crend() Parameters: This function does not accept any parameters. Return Type: This function returns constant reverse iterator of deque. Example-1: CPP // C++ program to illustrate the // deque::crend() function #include <bits/stdc++.h> using namespace std; int main() { deque<int> dq = { 10, 20, 30, 40, 50 }; cout << "The deque in reverse order: \n"; // prints the elements in reverse order for (auto it = dq.crend() - 1; it >= dq.crbegin(); --it) cout << *it << endl; return 0; } Output: The deque in reverse order: 10 20 30 40 50 Example-2: Since the iterator is constant, making an attempt to change it would cause error. CPP // C++ program to illustrate the // deque::crend() function #include <bits/stdc++.h> using namespace std; int main() { deque<char> dq = { 'a', 'b', 'c', 'd', 'e', 'f' }; cout << "The deque in reverse order: \n"; // prints the elements in reverse order for (auto it = dq.crend() - 1; it >= dq.crbegin(); --it) *it = 'g' return 0; } Compilation Error in CPP code :- prog.cpp: In function ‘int main()’: prog.cpp:15:13: error: assignment of read-only location ‘it.std::reverse_iterator<_Iterator>::operator* >()’ *it = ‘g’ ^ prog.cpp:17:5: error: expected ‘;’ before ‘return’ return 0; ^ Time complexity: O(N). // N is the size of the deque. Auxiliary space: O(1) Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL
https://www.geeksforgeeks.org/deque-crend-in-c-stl?ref=asr10
PHP
deque crend in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0253269542, 0.00983226579, -0.00803180318, 0.0336532556, 0.00226396462, -0.056329716, -0.00938382372, 0.0148722231, -0.0185668524, 0.0185400788, -0.0266923606, 0.00897554, -0.0084333932, -0.0337068029, 0.0105685145, 0.0128843514, 0.0105417417, 0.019115692, -0.00287471642, 0.00497971801, -0.0191960111, -0.00357749918, 0.00437063957, -0.00332483207, 0.010514969, 0.0241623428, -0.0372140221, -0.0199590307, -0.0307618063, -0.0198117811, 0.0321807601, 0.0259828847, 0.0319933519, -0.0162644014, -0.0295838099, 0.0341083929, 0.046370279, 0.00532106962, 0.00723531609, -0.0258757938, -0.0116661945, 0.0236268882, -0.013587134, -0.00556202373, -0.013031601, 0.00511023495, -0.00530768326, -0.042943377, 0.00334491138, 0.00611421047, 0.028164858, 0.0176967401, 0.0135603612, -0.0076168268, -0.00414641853, 0.0087212, 0.0306011718, -0.00677014096, -0.0237339791, 0.00103242137, -0.0120209325, 0.00375486817, -0.0216858685, -0.010160231, 0.0262372252, 0.00632169843, -0.0503861792, 0.0212441199, 0.0164250378, 0.0169471055, -0.0321272127, -0.00266388152, -0.0399180613, 0.0333052129, -0.00744280452, -0.0276829489, -0.0139485653, 0.00602050591, -0.0140690422, 0.0434788279, -0.0292357653, 0.0226898454, -0.0106555261, -0.00477223, 0.0424882397, -0.0387668386, 0.00195775204, -0.0419795588, 0.049583, 0.000347835652, 0.00892868824, 0.00542146713, -0.00682368642, -0.035714753, -0.0195306689, 0.0125162266, 0.00204643654, 0.0259828847, -0.0264514051, 0.0320201218, 0.00901569892, 0.0217661876, 0.00781092886, 0.0135202026, 0.0133595662, 0.036517933, 0.019517282, -0.00592345512, -0.0202936903, 0.0368392058, 0.00737587269, 0.000298055209, -0.00290483562, 0.0347241648, -0.0186605565, -0.00688727153, 0.00370801589, -0.0156486295, -0.00179376942, 0.00048567311, -0.0276561771, 0.0211771876, 0.0282451753, 0.0658607855, -0.0106889913, -0.0176833533, -0.0133194076, 0.0310830791, 0.0328500755, 0.00474211061, -0.00416649785, -0.060559798, -0.013526896, -0.01539429, 0.00770383794, 0.0496900901, 0.0210700985, 0.0314578973, -0.0176833533, 0.03220753, -0.0242292732, -0.0344296657, 0.0469592772, 0.033599712, -0.0297979899, 0.00483916141, -0.00767706567, 0.0620055236, 0.0146044958, -0.00928342622, -0.012877658, 0.0445497371, 0.0499310456, -0.0135603612, 0.0059602675, -0.0132658621, -0.00414976524, -0.00752312271, 0.0133327935, -0.0135469753, 0.00226563797, 0.055847805, -0.0138147017, -0.00710145291, -0.00495629199, 0.0259025656, 0.0457545072, -0.017201446, -0.0720720515, 0.0391684286, -0.00595022785, 0.0456741899, 0.0185266938, 0.0056222626, -0.000169525432, -0.0202803034, 0.0346973911, -0.0274018366, 0.0165589023, 0.033599712, 0.0101066856, 0.00656265253, -0.00702113472, 0.00995274354, 0.01568879, -0.00268228771, 0.0443087816, -0.0145911099, 0.0375352949, 0.0425150134, -0.0100732204, 0.00434721354, 0.0140958149, -0.00783770159, 0.0340280756, -0.00799164455, 0.000204037089, 0.0102539361, -0.00510354154, 0.0384455658, -0.0188613515, -0.0307082627, 0.0281380843, -0.0159699023, 0.0103275608, -0.00544489361, -0.00309391762, -0.0223150272, -0.00614767615, -0.00991258398, 0.0427291952, -0.0394629277, 0.0280577671, 3.95053867e-05, 0.00406610034, 0.0150060859, -0.0760344043, -0.0202401448, -0.0296909, -0.0182321947, -0.0207755975, -0.0379368849, 0.0220339149, -0.0488065928, -0.0426488779, -0.0148722231, -0.00665970379, 0.0364376158, 0.00759674748, -0.00363773759, 0.00990589056, 0.0151399495, 0.000380883168, -0.0268931556, -0.00536122872, -0.00997282285, -0.0297444463, -0.00537796179, -0.0139217926, 0.0187007152, 0.0212976653, 0.0549910814, -0.0319398046, 0.0130516803, 0.0304940809, 0.0655395165, 0.010514969, -0.0367856584, -0.000267726777, -0.0296105817, -0.00604393193, -0.00146831409, 0.0290483553, -0.000806108583, -0.00797825772, -0.00637859059, 0.0218598917, -0.00840662047, -0.0399983823, -0.0179109219, 0.000977202784, 0.00933027826, -0.0292893089, 0.0134867365, 0.0149257677, 0.0028897759, -0.00904916506, 0.00551517168, -0.00460824743, -0.0491546355, 0.0389007, -0.00594353443, 0.03137758, -0.0503861792, 0.00648568105, 0.0052407519, -0.00296172756, 0.00740264542, 0.0162108559, -0.0359289348, 0.0157824941, -0.0130516803, -0.000962979742, -0.00054423837, 0.0159431305, -0.00653922651, -0.0188613515, -0.0128977373, 0.0225827545, 0.0317523964, -0.00877474528, -0.00351726054, 0.00573604647, 0.00598704023, 0.044174917, 0.0275490861, -0.0458615981, -0.0698766932, 0.00953776669, -0.00434386684, 0.027870357, -0.0283522662, -8.2514227e-05, -0.0244300682, -0.0105417417, -0.0303066708, 0.0108897872, -0.00608409103, 4.0368177e-05, -0.000799415458, -0.00713491859, -0.0200527366, 0.0158494245, -0.00308889779, -0.00893538166, -0.00771053135, 0.0359021612, 0.000404727587, -0.0299318545, 0.0136674521, 0.0171880592, -0.0283254925, -0.0140556563, -0.0134131117, 0.0368927494, -0.0214449149, 0.00729555497, 0.0145509504, -0.00714830495, -0.0189550556, -0.038632974, -0.00410291273, -0.016799856, -0.00775069045, -0.0368659794, 0.0315917619, 0.00256181066, -0.0243229773, 0.0299854, 0.00306379842, -0.0146714272, 0.013031601, -0.0113583086, 0.0131587712, 0.0115457177, -0.0386865214, 0.0124292159, -0.0134599637, 0.00416984456, 0.00998620875, 0.000851287507, -0.0215118472, -0.014684814, -0.00720185041, 0.0679490566, -0.00276929885, -0.0299586263, -0.0212708935, -0.0136005208, 0.0199054871, 0.020815758, 0.0504664965, -0.00958461873, 0.0214850735, -0.0104748104, -0.030279899, -0.0161305387, 0.00732232723, 0.0510822684, 0.0188479647, 0.0244836137, -0.0136272935, -0.00892868824, 0.00807865523, 0.0134599637, -0.00159464765, -0.00990589056, 0.0311098527, -0.0186873302, 0.0221677776, -0.00957792532, 0.0376959294, -0.0195038952, -0.0129780555, 0.0214449149, -0.011873683, -0.0391148813, 0.0308956709, 0.0162242427, -0.0423811488, -0.00577955181, -0.0196377598, -0.0142698372, 0.00285798335, 0.0183258988, -0.00458816765, 5.50617769e-05, -0.0189015102, 0.00433048047, -0.0461828709, -0.0110236499, -0.00571596669, 0.0487530455, -0.0284058116, 0.0172148328, 0.0105484352, 0.00603389228, -0.0303066708, 0.0173353087, 0.037428204, -0.00493955892, -0.0297176726, -0.0143367695, -0.00288642943, 0.0289144926, 0.0290215835, -0.00239113485, 0.00507676927, 0.00118301774, 0.00574273942, -0.0193432607, -0.0256749988, -0.0310563073, 0.0400519259, 0.043452058, 0.00952438, 0.00412299251, 0.0189684425, 0.0232654568, -0.00841331389, -0.0302531254, 0.00722862314, 0.0342422538, 0.0331445746, 0.000876805221, -0.0593282543, 0.0225425959, -0.0204677116, -0.0335729383, 0.0221008454, 0.0234662518, 0.00277097221, 0.0204810984, -0.0170274228, -0.0141493604, 0.0244568419, -0.0101468451, -0.0118000582, 0.0253403392, 0.0121079441, -0.0194369648, -0.000430454471, 0.04687896, -0.00794479251, 0.0401054733, -0.0128040332, -0.00827275775, -0.0163179468, 0.0845481157, 0.00459151436, -0.0113783879, 0.0133461803, -0.0173219219, -0.0163045619, 0.0411496051, 0.0143233826, 0.0299050808, 0.0148588363, -0.0178439897, -0.0250726137, -0.0112177525, 0.00482577505, -0.0202936903, 0.0194503497, 0.0479498655, 0.0084333932, 0.0120677846, -0.0290215835, -0.0417118333, -0.0160368346, 0.0294499453, -0.0221811645, -0.00469191186, -0.0114854788, 0.0146982, -0.0139753381, -0.0209897794, -0.00697428267, -0.00202468387, -0.00176699681, -0.00259694969, -0.0089822337, -0.00866096094, -0.0300924908, 0.0341619365, 0.0153005859, -0.0411763787, 0.0192093961, -0.00265551498, -0.0220606867, 0.0479230955, 0.00194603903, 0.00111022952, 0.0334390737, -0.0299050808, -0.0526350848, -0.0404535159, -0.0179644674, -0.0518051311, 0.0114386268, -0.00416984456, 0.0409086533, -0.0139619512, 0.0382046103, 0.0143769281, -0.0312704891, 0.0109098665, 0.0314578973, -0.0597030707, 0.00902908575, 0.011070502, -0.00365447067, 0.0185936242, 0.0153005859, -0.0139619512, 0.0418724678, 0.00818574615, 0.0120677846, 0.0251127724, -0.0254742038, -0.00281782448, 0.0222213231, -0.00268898089, 0.0175093319, -0.00978541374, 0.000578959181, -0.00183058181, -0.00140640221, -0.0339745283, -0.0134733506, -0.00433717389, 0.0186337847, -0.0222213231, 0.00922318734, -0.0121012507, 0.0122284209, 0.0133930324, -0.0275223125, -0.000800252077, 0.000205082892, 0.00546831964, 0.00277766539, -0.0241489559, -0.00745619088, 0.00405606069, 0.01649197, -0.00776407681, -0.0309224427, 0.00913617667, -0.0274955407, 0.00684711244, 0.0321004428, 0.0253135674, -0.0123422043, -0.0263844747, -0.0139619512, 0.0263041556, 0.00205312972, -0.0089822337, 0.0273884498, -0.000673918519, -0.0557942614, 0.0301995818, -0.00716169132, 0.0136272935, 0.0297712181, 0.0153407445, 0.00608743774, -0.0149793131, -0.00044635075, -0.0155683123, -0.0316720791, 0.00109935307, -0.0305743981, 0.000354947144, -0.00569923408, -0.0116260359, -0.00565907499, -0.00621126126, -0.00333152502, -0.00168835197, -0.0054382, 0.0319398046, 0.0236001164, -0.00838654116, 0.00678352732, -0.0107826963, 0.00929012, -0.0276294034, 0.0092633469, -0.00262706913, 0.0169069469, 0.0287538562, -0.037428204, -0.0169337187, -0.00970509555, 0.0203740075, -0.0137343835, -0.0120209325, -0.0280042216, -0.0500916801, 0.013881634, 0.00366451032, -0.0135068158, -0.00134532712, 0.0173353087, 0.000561807945, 0.0143635422, -0.03177917, 0.0187944192, -0.0108964797, 0.00323447422, -0.0110236499, 0.0184597615, 0.0176298078, 0.0362502076, -0.017803831, -0.0122819664, -0.00914286915, -0.0239749327, -0.0208693035, -0.0112779904, -0.00350387418, -0.00398912886, -0.0121146366, 0.0148722231, -0.0201196671, 0.0123957498, 0.00319096865, 0.0225024354, -0.0201062821, 0.021230733, 0.0321539864, 0.0249655228, 0.000350345596, 0.00233424292, 0.00717507768, 0.0529831313, 0.00599708, -0.0123154316, 0.00283121062, 0.0159431305, -0.0167329237, 0.00314746308, -0.00243296707, -0.00980549306, 0.0367321149, -0.0103275608, 0.0132190101, 0.00424681604, -0.0218732785, -0.0243229773, -0.00370801589, -0.000660532154, 0.0162376296, -0.0303602163, 0.00375821465, 0.00825937092, -0.022730004, 0.0142966099, -0.052420903, -0.0220473, 0.0356344357, 0.0221811645, 0.00660281163, -0.00222547888, -0.0121280234, 0.0356344357, -0.0203070771, 0.0171612874, 0.000608241768, -0.00908932462, -0.0100933, -0.0307618063, -0.0193031, -0.00136958982, 0.00816566683, 0.00321774115, 0.0282987207, -0.0125563862, -0.0229843445, -0.0200928953, 0.0164651964, 0.051617723, 0.0121280234, -0.00865426846, 0.013031601, -0.0211370289, -0.0221677776, 0.0201330539, 0.00710145291, -0.0205346439, 0.0302531254, -0.0239080023, -0.0134934299, 0.0510287248, -0.000753818196, 0.0122685796, -0.0087145064, 0.0213512108, 0.0124559887, -0.036919523, 0.0025082652, 0.0158761982, 0.0139217926, 0.0211370289, 0.00216858694, -0.00419327058, -0.00151349301, -0.0480301827, 0.000964653038, 0.0316988491, -0.00402594125, 0.000575194252, 0.0376959294, -0.00525079155, 0.00248818588, -0.0260899756, -0.00588998897, 0.00324451388, -0.0335193947, 0.0163179468, -0.00295168767, -0.000788539, -0.00817236, -0.0164384246, 0.0208023712, -0.0245103873, 0.0190755334, 0.016799856, -0.00694751, -0.00247145281, -0.00774399703, 0.00526752463, 0.00393893, -0.0283254925, 0.0163045619, 0.0122150341, 0.00177536323, 0.0267726779, 0.0127036357, 0.0368927494, 0.0196109861, -0.0229843445, 0.00292658829, -0.000121209116, 0.0124961473, -0.0144572463, 0.0602920726, -0.00158293464, 0.0335461646, 0.0135737481, 0.018312512, -0.00979880057, -0.0130985323, 0.0190086011, -0.00386530533, 0.00498306472, 0.0227032304, -0.00160468742, -0.0182991251, -0.000730810454, -0.0130516803, -0.0224756636, -0.0311366245, -0.00680026039, 0.0123957498, 0.0255946796, 0.0575077124, -0.00164651976, 0.000707802654, 0.0296105817, 0.0129378969, -0.0122016482, 0.00991927739, -0.00530099031, 0.0560619868, 0.0168935601, 0.0252734087, -0.0236536618, -0.0122551937, -0.0157958809, 0.021726029, 0.0145777231, 0.00995943602, -0.0254474301, -0.0195038952, 0.006816993, -0.0301460363, -0.0559013523, 0.0296373554, -0.00135118363, -0.0130918398, -0.00611421047, -0.0114854788, 0.014885609, 0.0149659272, 0.00316252257, 0.00376156135, 0.0164651964, 0.0250056814, 0.0156754032, -0.00518051302, 0.0216590967, 0.0113850813, -0.0103342533, 0.00150512648, -0.0186605565, 0.0059167617, -0.0187274888, -0.00554863736, -0.0292089917, -0.012074478, 0.00180715579, -0.039543245, 0.0131453853, 0.0408283323, 0.0248048864, 0.00331311882, -0.00468521845, 0.0043974123, 0.0244300682, -0.00492282631, -0.0131052257, 0.00797825772, 0.0184329897, 0.0123890564, 0.0150328586, 0.0064789881, 0.0230914354, -0.00589668239, 0.00237105531, -0.0463970527, -0.0161706973, -0.0174825583, -0.0204677116, -0.0246844087, 0.0101669244, -0.0230245031, 0.0137076108, -0.00862080231, -0.00505668949, -0.0185534656, 0.0152336536, 0.0091629494, 0.00126835564, -0.0263041556, -0.0241891146, -0.00890860893, -0.00474545732, 0.0366785675, 0.0240284782, -0.00738256611, 0.000947083463, 0.0236670468, 0.0359824784, 0.0185534656, -0.0192763284, 0.0117866714, -0.0177904442, -0.00122903322, 0.0155281536, -0.0269467011, -0.025152931, 0.000294081139, -0.0271073375, 0.0138950199, 0.0222079363, 0.0245103873, -0.0263041556, 0.0175227169, -0.0348580256, -0.0335729383, -0.0166258328, 0.00781762227, -0.0101200724, 0.00465844618, 0.000698181218, -0.020628348, -0.0343761183, 0.032287851, 0.0214449149, -0.0223551858, -0.0525279939, 0.00282451743, 0.0142162917, -0.00347710168, -0.00963147078, -0.008600723, 0.0225024354, 0.00562560884, 0.024550546, 0.0158494245, -0.0195038952, 0.00937713, -0.0183794443, 0.0286199935, 0.00756997475, 0.00937713, 0.0070010554, -0.00195105886, -0.0331445746, -0.0141493604, -0.0312704891, 0.00840662047, -0.0164518114, 0.0192227829, -0.0118335234, 0.0407747887, 0.00361765805, -0.00116210151, -0.00182890857, -0.00462498, -0.00699436199, 0.00436729332, -0.0143099967, -0.0234930255, 0.00319431513, -0.0316185318, -0.00262372242, -0.0160636064, -0.00277097221, 0.0368392058, -0.0161439255, -0.00670990255, -0.0122217275, -0.036517933, -0.0283522662, -0.0311366245, -0.0192897152, 0.00813220069, -0.0100062881, -0.0101401517, 0.0153407445, -0.0307082627, -0.0110370368, -0.0240686368, 0.00166743586, -0.0124024432, -0.0118602961, -0.00289479573, -0.0286467653, -0.0129780555, -0.0418724678, 0.00225057825, -0.0350989811, -0.00552521134, 0.00899562, -0.00388538488, 0.0347777084, 0.0157958809, -0.00690735085, 0.0196109861, -0.0134733506, 0.0514570884, -0.00783100817, 0.00450784946, 0.00953107327, -0.0198653266, -0.0168667864, 0.0244032964, -0.0404802896, 0.0341619365, 0.021739414, 0.0045379689, 0.020025963, -0.0169203319, -0.0269199274, -0.00444761105, 0.0116461152, 0.0209897794, 0.0393826105, -0.0182723533, 0.0166659914, 0.0427291952, 0.00340347667, -0.0077172243, -0.000796905486, -0.0102472426, -0.0182857383, -0.0125429993, -0.0240150914, 0.0153273586, -0.00212508137, 0.00712153222, 0.0554729886, -0.00987242535, 0.00626815343, 0.000326292, 0.0119138416, -0.0107492302, 0.0220874585, -0.0253001805, 0.03177917, -0.0261033606, -0.000932023861, -0.00758336112, 0.0353667066, 0.00175026385, -0.00115624501, 0.00244802679, 0.0162510164, 0.0222882554, -0.0137611562, 0.00575277908, 0.0119540012, 0.00485254778, 0.00246141315, 0.00447103707, 0.0189550556, -0.000283413887, -0.00606401172, -0.0057193134, 0.0269333143, -0.00315080956, 0.0142966099, 0.00447438378, 0.00648902776, -0.0147115868, -0.00593684148, 0.0105618211, -0.0309759881, 0.00208492228, 0.0363573, -0.0148722231, -0.0243899096, 0.013988724, -0.014684814, 0.0301728081, 0.0144706322, 0.00433717389, 0.00491278665, -0.0297712181, 0.00448442344, -0.000511609134, -0.0165053569, 0.00970509555, -0.0127371019, 0.00402928796, 0.000583979068, 0.00745619088, 0.00569588738, -0.0146446545, 0.0194101911, 0.0274152216, 0.00609413069, 0.0372407958, -0.0109299459, -0.0152871991, -0.0204810984, -0.0140154967, -0.0390077904, -0.000144530626, -0.00754320202, -0.0249253642, 0.0216724835, -0.0121146366, -0.00997951534, 0.00251830509, -0.00800503, 0.0275223125, 0.0106019806, 0.000119117503, -0.0196243729, -0.033492621, 0.0201598257, 0.0176967401, -0.00775069045, 0.00152353267, -0.0155281536, -0.0155549264, -0.00647564139, 0.00657269266, 0.0105752079, -0.005157087, -0.00971178897, 0.020815758, 0.002289064, -0.0103007881, -0.0271608811, -0.0188613515, 0.0269600861, 0.0174156278, 0.00514035439, 0.00618783524, -0.0214181431, 0.0143501554, 0.0212976653, -0.0149659272, 0.00158544455, -0.0205212571, 0.0225158222, -0.0070010554, -0.027870357, 0.00622464763, 0.0161305387, -0.0084200073, 0.0283254925, -0.0136072133, 0.00779754249, 0.00322945439, -0.00658607902, 0.0131654646, 0.0134198051, -0.0201062821, -0.0110838888, -0.000649655762, -0.00260866294, 0.000631249568, -0.00712153222, 0.00736917974, 0.0197716225, 0.0142564513, 0.0111307409, -0.0565438978, -0.0314578973, -0.00324618723, 0.0238009114, -0.00165906944, 0.00314746308, -0.00862080231, 0.00288140937, -0.00428697513, 0.0260230433, 0.0355541147, 0.00541142747, 0.0280845389, -0.0163447205, 0.00857395, 0.0230780486, 0.00726878224, -0.0205881894, -0.0120343184, -0.00775069045, -0.0348848, -0.0169471055, -0.00408283342, 0.00309224427, -0.00896215439, 0.0153273586, -0.00229241047, 0.00150261656, 0.0334123038, 0.0144170867, -0.0326358937, 0.00305041205, 0.0105082765, -0.0178975351, 0.0105952872, 0.00233926275, -0.00253169145, -0.0111441277, 0.0031892953, -0.00471199118, 0.0199590307, 0.00306547154, 0.0140021108, -0.0150997909, 0.00635181786, 0.000178101065, -0.00176030362, -0.002289064, -0.013988724, 0.0108496277, -0.00236101565, -0.0337068029, 0.0087011205, 0.0156218577, 0.0258222483, -0.00462163333, 0.00509350188, 0.00296674739, 0.0208826885, -0.0340548456, 0.0111374343, -0.00134114386, 0.0164518114, -0.00080694526, 0.0121481027, -0.0205078721, 0.00479565607, 0.00190755329, 0.0402125642, 0.0146312686, 0.00306881825, -0.0185400788, 0.0020815758, -0.0178975351, 0.00443757139, 0.0138950199, -0.0184196029, -0.0043606, -0.0284593571, 0.00628488604, 0.0111708995, 0.00403932761, -3.6917012e-05, 0.00476219, 0.0017485905, 0.0194369648, 0.000472286774, -0.0250726137, -0.0168667864, -0.00516378041, 0.000345534878, -0.0115055582, 0.00230914354, -0.0179376937, -0.00238778815, 0.00077180611, 0.00967163, -0.019918872, 0.0300657172, -0.013587134, 0.0256214533, 0.0155281536, 0.0234662518, -0.000207802, 0.00609078445, 0.00854048412, -0.0159832891, 0.00644886866, 0.00859403, -0.0105952872, 0.0267994516, -0.0189818293, -0.0016691091, 0.0020815758, 0.00537796179, -0.00147333392, -0.0283254925, 0.00862749573, 0.0225024354, -0.0101267658, 0.00801841728, 0.0102472426, -0.00249487883, -0.0237072073, -0.0359824784, 0.00213512103, 0.0292357653, -0.00146831409, -0.0250993855, 0.00488936, 0.00198787125, 0.0234930255, -0.0233323891, -0.00759674748, 0.00507676927, 0.00394897, -0.00044635075, -0.00971848238, 0.00752981566, 0.0102740154, -0.0223685727, 0.000432546076, -0.0131520778, 0.0108161615, 0.0216724835, 0.0114988657, -0.00408618, 0.0190487597, -0.0032896928, 0.00708137313, 0.012275273, 0.00693412358, 0.0215653926, -0.00359088555, -0.0166793782, -0.00559883611, 0.00473541766, -0.0347241648, 0.0083329957, 0.0171880592, -0.00485589448, -0.00446099741, 0.00265384163, -0.0252198633, -0.0160368346, 0.0166258328, -0.0104346517, 0.0245907046, 0.0216457099, 0.0116795804, -0.0125764655, -0.00540808076, -0.00662623765, -0.0144706322, 0.0172549915, -0.0304405354, -0.00583979, -0.00211169501, -0.00933027826, -0.0232119113, -0.00233758939, 0.0126902498, -0.0108964797, -0.026263997, -0.0135938274, 0.0142296785, 0.0202535316, -0.0174959451, 0.0180983301, 0.00738925906, 0.0201999862, 0.0149123818, -0.0308153518, 0.0210700985, 0.00610417081, -0.00756997475, -0.0226764586, -0.0012850886, 0.0244166832, 0.00735579338, 0.0196109861, 0.00244468, 0.00950430054, -0.0325020328, -0.0115390243, 0.00586990966, -0.00497971801, -0.00938382372, -0.00422339, 0.01131815, -0.0169203319, -0.0332784392, 0.0358218439, -0.00779084954, -0.00653922651, 0.00340682338, -0.00830622297, 0.0128374994, -0.000271073368, 0.00685380539, -0.0203204621, -0.0301995818, 0.0162108559, 0.00870781392, -0.0294499453, -0.0163714923, -0.0059602675, 0.00547835929, 0.00251830509, 0.00811212137, 0.00236603548, 0.00523405848, -0.0386865214, -0.00579293817, -0.0131119192, 0.014082429, 0.0091629494, -0.00720185041, -0.0148320636, -0.00969171, -0.0108429343, -0.0136206, -0.0138548613, 0.0197716225, 0.0120008532, 0.0100464476, 0.00754320202, -0.0081255082, -0.0196243729, -0.0139084067, 0.00044676906, -0.00222547888, 0.00044676906, -0.00163397007, 0.0210700985, -0.0355541147, 0.0204409398, -0.00825267844, -0.0305476263, 0.00915625598, 0.0187810343, 0.0202803034, 0.00918972213, 0.0223551858, 0.00419327058, 0.00141476875, 0.00305543188, 0.011117355, 0.0174557865, -0.013587134, -0.0112980697, 0.0172282178, 0.0226229131, -0.0182857383, 0.0120878639, 0.0293428544, 0.0206551217, -0.0128241125, 0.012275273, -0.0241891146, 0.0233993214, 0.0107693095, -0.0190219879, 0.0229709577, 0.00713491859, -0.0232252982, 0.0138414744, 0.0174691733, -0.00638528354, 0.0245103873, -0.00540138781, 0.00537796179, 0.00385191897, 0.0167864691, -0.0316720791, -0.0300121717, 0.0114720929, 0.00257185032, -0.0271876547, -0.00558544975, 0.00740933884, -0.0411228351, 0.011873683, 0.0231717527, 0.00820582546, -0.0184329897, 0.0113248425, -0.00440410571, 0.0443355553, 0.0326626673, 0.00702113472, 0.013172158, 0.000172662854, -0.0159699023, 0.0391952023, -0.0120075457, 0.00505668949, 0.0131253051, 0.00306714489, -0.0269199274, 0.0246710237, -0.015193495, 0.00515039405, 0.00635851128, -0.0182723533, 0.0112177525, -0.00394562352, -0.0291554462, 0.0127371019, 0.00054842158, 0.00665635709, 0.00750973634, 0.00339343701, -0.0167730823, -0.0165722873, 0.0251930896, -0.0128441919, 0.0197582357, -0.00543150725, -0.0177502856, 0.00930350553, 0.0126969423, 0.0380172022, -0.0169203319, 0.0121949548, -0.0305743981, -0.00880821142, 0.0168400146, 0.00807196274, -0.00513700768, -0.0128642721, -0.0337603465, 0.00669316947, -0.0125429993, -0.0245237723, -0.0019042067, -0.00694081699, -0.0204677116, 0.0226363, -0.013881634, 0.00141393207, 0.0110504227, 0.00734240701, 0.0101401517, -0.000538800145, 0.0376959294, 0.0218732785, -0.00374482828, 0.0338674374, 0.00201966381, -0.0173888542, -0.0332248919, -0.0033298519, -0.000600711966, -0.00667978311, 0.0333319828, 0.0109098665, 0.000500314403, -0.00106839719, 0.00686719175, -0.0421134233, 0.0400519259, 0.00140807556, 0.0229843445, 0.00910271052, -0.00995943602, -0.00848024618, -0.00711483927, 0.0167061519, 0.0104815038, 0.0286467653, -0.00451788958, 0.00259192986, 0.0104748104, -0.0124024432, -0.00945075508, -0.0235465709, 0.0240820237, -0.0335461646, -0.000652165734, -0.0136072133, -0.00792471226, -0.0364643894, 0.00267726788, -0.0168266278, -0.0303066708, -0.0048224288, 0.0141627463, 0.0396771096, -0.00652584, 0.00880821142, -0.0166526064, 0.0291822199, -0.00578959147, -0.0153407445, 0.0217661876, 0.00387199852, -0.00549843861, -0.00550513202, 0.000419996388, -0.00417319126, 0.0145911099, -0.00723531609, 0.00231416337, -0.000714077498, -0.0155415395, -0.021940209, -0.00322945439, -0.0070010554, 0.0138950199, 0.0100799128, 0.0253671128, -0.0102807088, 0.0175896492, -0.0179109219, 0.000235515909, 0.0144170867, 0.0133394869, 0.0198921, 0.0201196671, -0.00349383452, -0.00110186299, 0.00363439112, -0.016398266, 0.0121547962, 0.0358753875, -0.00537126837, -0.0016691091, 0.00555867748, 0.00355407293, 0.00285631, 0.00310730399, 0.000668061955, 0.0101736179, 0.0316988491, 0.041658286, 0.0252867937, -0.0147651322, -0.00259862305, -0.0155816991, 0.00543485349, -0.0256749988, -0.000615771569, 0.00331981201, 0.0216055512, -0.0256749988, 0.00115373509, -0.00657269266, 0.0106555261, 9.4959345e-05, -0.0221543908, 0.0217528, 0.00675675459, 0.000104267034, -0.0146312686, -0.0184731483, -0.0116661945, 0.00400586193, -0.0105952872, 0.00258691, 0.0149391545, 0.00829283707, 0.0214047562, -0.0240150914, -0.0190487597, 0.0246040914, -0.00187910732, -0.0103409467, 0.00386865204, -0.0172951501, -0.00658273231, -0.00708806654, -0.0306547172, 0.00148839352, -0.00448777, 0.0135001233, 0.0206818935, -0.00447103707, 0.0132257026, 0.0123689771, 0.0148722231, 0.00205647643, -0.00962477736, 0.00257352367, 0.0289144926, -0.00605397206, 0.00200293097, 0.0143635422, 0.0183928292, 0.00527087087, -0.00515374076, 0.01212133, 0.00504330313, -0.00384522579, 0.0400519259, 0.00384187931, 0.0346973911, -0.00864088163, -0.00357749918, -0.0285129026, -7.85401644e-05, -0.00369462953, -0.0355273448, 0.00331311882, -0.0043572532, -0.0105685145, 0.024952136, 0.00950430054, 0.00154695881, -0.00630831206, 0.00686719175, -0.0146178827, 0.0270404052, -0.00401255535, 0.00403263466, -0.0121748755, 0.0140288835, -0.00153189921, 0.00662623765, 0.00408952637, 0.0016297868, 0.0023409361, 0.0089822337, 0.00385861215, -0.0200795084, 0.0289144926, 0.0264915656, 0.0414708778, 0.0142698372, 0.00284459698, -0.0235197973, -0.00549843861, 0.0179778542, 0.0118536036, 0.000891028205, -0.0153541313, -0.0196511466, -0.0188078061, -0.0189550556, 0.00110353634, 0.010407879, 0.00854048412, -0.00826606434, 0.00749635, 0.00941729, -0.0102003906, -0.027870357, -0.0211504158, -0.00902239233, -0.014484019, -0.0042568557, -0.00051328243, 0.0332784392, -0.0356076621, 0.00896884687, 0.0266120415, 0.027870357, -0.00214348757, -0.0457277335, 0.0115925698, 0.0229040254, -0.019825168, -0.013881634, 0.0186337847, -0.030279899, 0.00322276121, 0.00486928085, -0.0157423355, 0.015702175, -0.00816566683, -0.0285396744, 0.00745619088, -0.0168935601, -0.000725790567, -0.0171479, -0.0138950199, -0.0194235779, 0.00280276476, 0.000404100108, 0.0121280234, -0.012476068, -0.00443757139, 0.00348379463, 0.0108964797, 0.00991258398, -0.0105216624, 0.0246040914, -0.0180313978, 0.0109433318, -0.0115858763, -0.0128441919, 0.00797825772, 0.00446099741, 0.0107425367, 0.0223953445, -0.0105484352, -0.00789124705, -0.0126902498, 0.00473876391, 0.0177235138, 0.010668912, -0.00799164455, -0.00965824351, -0.0101669244, -0.0012909451, -0.00547835929, -0.00839992799, -0.00068521325, -0.0163313337, 0.0120945573, -0.0195708275, -0.0227567758, 0.00504330313, 0.0422472842, 0.00434721354, 0.00752312271, 0.00242292741, -0.0109031731, -0.0100598335, 0.0182455797, 0.0142029058, -0.0215118472, 0.0166793782, 0.00201799069, -0.00874797255, -0.00902239233, 0.00344363577, 0.00527756428, 0.00631500548, 0.0131989308, 0.0119272284, 0.0245103873, 0.010762617, -0.0117732855, -0.0134264985, -0.014283224, -0.00118385442, 0.0202669166, -0.0323949419, -0.0188479647, -0.00365112396, 0.0167864691, -0.0200661216, 0.00959800556, -0.00101652509, 0.00797825772, -0.00848024618, -0.0021518541, -0.00118720089, -0.0155147668, 0.0192897152, 0.00989919808, -0.0116929673, 0.000328383641, 0.00369128305, 0.0216858685, -0.00580297783, -0.00492951926, 0.00616440922, -0.00136206, 0.0123422043, -0.0260632019, 0.0144572463, -0.0257687028, -0.0164116509, 0.00520393951, -0.0306011718, -0.0291019, -0.011873683, 0.0134198051, 0.0147919049, 0.00153859239, -0.00123572641, 0.0182188079, -0.0301728081, 0.0143769281, 0.0155549264, -0.0287806299, -0.0123689771, -0.00220205286, -0.0192763284, 0.00369797624, -0.0153005859, 0.0108964797, 0.0342690274, 0.0135670546, -0.00205480307, -1.43537109e-05, 0.0140422694, -0.0212842785, 0.00129178166, -0.0163179468, 0.0148989949, -0.00109433325, -0.0267057456, 0.000701946148, 0.0168132409, -0.0225961395, -0.0259427242, -0.00309057091, 0.0239883196, 0.000878478517, 0.002099982, -0.00183058181, 0.0193834193, -0.00614432944, 0.00131437113, -0.0237473659, 0.00355407293, -0.00536457542, 0.0168266278, 0.0168935601, 0.0200661216, 0.0133997258, -0.0171612874, 0.0189015102, -0.01539429, -0.00132775749, -0.00232085655, 0.00822590571, 0.00766367931, 0.00764359953, -0.0269467011, 0.0045814747, -0.00467183255, 0.0224355049, 0.0118536036, -0.00726208882, -0.000606150192, -0.00401255535, -0.0129111242, -0.000210834842, 0.00301359966, 0.0135135092, -0.0102874013, -0.0145911099, 0.0304405354, -0.0251663178, 0.0252064764, 0.00981218647, 0.00454800855, 0.0144438595, 0.0030085796, -0.0138147017, 0.0386597477, 0.0163714923, 0.0029600542, 0.00384857249, 0.00112445245, 0.0106287533, 0.00726878224, -0.03137758, -0.00094792014, 0.0136406794, -0.00265049515, -0.0132926349, -0.0293160826, -0.000574775913, 0.0367053412, 0.00326794013, 0.0138414744, -0.0141627463, -0.000783937459, -0.00796487182, 0.00330140581, -0.0116862739, 0.00260866294, -0.0059569208, -0.0167329237, 0.0191558506, 0.00388203841, 0.0140690422, 0.012074478, -0.0115791829, 0.0284593571, 0.00387534522, 0.00212006154, 0.00424681604, 0.0126032382, -0.0142162917, -0.00850701891, 0.00197783159, 0.014484019, 0.00909601711, -0.0149525404, -0.00184564153, 0.00627149967, -0.00591006875, -0.00498641143, 0.0148722231, 0.0354737975, -0.0172817633, 0.0106889913, 0.014885609, -0.00158042461, -0.00218531978, -0.0121414093, 0.011365002, 0.00904247165, -0.0114118541, -0.0159832891, -0.0162777882, -0.0138950199, -0.0203873944, -0.00818574615, -0.00699436199, 0.00550513202, 0.0266388152, 0.0131520778, 0.00362769794, 0.0212976653, -0.000136582486, -0.00605062535, 0.000937880366, 0.00121062703, -0.0131788505, -0.00609078445, 0.0204810984, -0.00251663174, 0.0142296785, -0.00032148129, -0.0135335885, -0.0107760029, 0.000795650529, 0.00542481383, 0.0171345137, 0.0178707633, 0.00916964188, -0.000357247918, -0.00858733617, -0.0140288835, -0.00866765436, 0.0125764655, -0.0143099967, 0.011365002, 0.0270939507, -0.015889585, -0.0130449878, 0.0171746723, -0.010514969, 0.0264514051, 0.0222480949, -0.0219134372, 0.0168400146, 0.0225827545, 0.00191089988, -0.014189519, 0.0176164228, 0.0147115868, 0.00543150725, 0.00133612391, 0.00138966937, 0.000739176932, 0.000351809722, -0.0177368987, -0.0123890564, -0.00631835219, 0.0127973398, -0.0022003795, -0.0179510806, 0.0276829489, 0.0171345137, 0.00323447422, -0.0290215835, -0.00597700058, -0.0148588363, -0.00510688825, 0.00772391772, -0.0244300682, -0.0098389592, 0.0112177525, 0.024952136, 0.00278435857, 0.0076168268, 0.0126166241, 0.0158761982, -0.00718846405, -0.000953776645, -0.0213645976, -0.0159163568, 0.0153139718, 0.0136272935, 0.0147115868, 0.00150679983, -0.00315415603, 0.0130182151, 0.0141627463, -0.0108429343, 0.00627484638, 0.00149759674, 0.0209897794, -0.00702782813, -0.0132390894, -0.0306547172, -0.0115858763, 0.00111441268, -0.00497637177, 0.00660281163, -0.0128575787, 0.00817236, -0.008600723, -0.0181518756, 0.00738256611, -0.0182857383, 0.00237440178, 0.00818574615, 0.0129713621, -0.0170541964, -0.000921147468, -0.00385191897, 0.0122886589, 0.0136674521, -0.00638528354, -0.00951768737, -0.00473876391, -0.0114587061, 0.0161171518, 0.0244300682, -0.00706798723, 0.0144572463, 0.0106421392, -0.00755658839, 0.00146580418, -0.0179644674, 0.0119473077, -0.0174825583, -0.00207990245, -0.00995943602, -0.0222614817, -0.0106555261, 0.00175863027, 0.00191759306, -0.0120410118, -0.0121079441, 0.0202936903, -0.00931689236, -0.0268931556, -0.0177368987, 0.00254507782, -0.00508680893, 0.00779754249, -0.00925665349, -0.00914286915, 0.0118000582, 0.0117532061, -0.0145375645, 0.013172158, -0.00222715223, 0.00954446, 0.043853648, -0.0104212649, -0.00493621267, 0.0312437154, 0.0109834913, 0.0142698372, 0.000629157934, 0.0110236499, 0.0277364943, 0.0191692375, 0.00758336112, -0.00434386684, 0.0230780486, -0.0141225876, 0.0368392058, 0.00330642564, -0.0238142963, -0.00355072645, -0.0205212571, -0.00523071177, 0.0179243088, 0.0119874664, 0.0118201375, -0.0238276832, -0.00660281163, 0.0113583086, -0.00560218282, 0.0171345137, -0.00345367542, 0.0351257548, -0.00337670394, 0.00429701479, 0.00832630321, -3.41717678e-05, 0.0394093804, 0.0230245031, -0.0057762051, 0.00599038694, -0.019316487, 0.0194637366, 0.0101736179, -0.00910271052, 0.00169755507, -0.00404267432, -0.0271073375, -0.00202635699, -0.00639867, -0.0269467011, -0.00694751, 0.0173353087, 0.0238009114, -0.0109366393, 0.00876805186, 0.0243229773, 0.00222045905, -0.00766367931, 0.0048224288, 0.00152938929, 0.00902239233, 0.0313240327, 0.0125429993, 0.0228237081, 0.0121614886, 0.000786447432, -0.00668982277, -0.00963147078, 0.00512362132, 0.00848024618, 0.00637524389, -0.0178439897, -0.00160552398, 0.00650576083, -0.0219669826, 0.0216858685, 0.00714830495, 0.0214984603, -0.00558210351, 0.0102137765, 0.010160231, -0.0114653995, -0.0178975351, -0.0114988657, -0.0121347159, -0.00255177077, 0.00842670072, -0.000359757862, -0.00977872, -0.0111374343, -0.00701444177, -0.0263041556, 0.0143769281, -0.0100999931, -0.00761013385, 0.00959131215, -0.0103275608, -0.00904247165, -0.00328132627, -0.0132257026, -0.00367789669, -0.00808534864, 0.00434386684, 0.0150194727, 0.0348848, -0.000765531266, -0.0133595662, 0.0134465778, 0.0002898979, 0.00829953048, 0.0142698372, 0.00447103707, -0.0153541313, 0.0136741456, -0.0144037008, 0.00401255535, -0.00555533078, 0.0127705671, -0.000696926261, 0.00615102286, 0.0137343835, 0.00293830154, 0.00165655941, 0.000554278085, -0.0140288835, -0.0101200724, 0.00649572117, -0.0165722873, 0.0205078721, 0.00739595247, 0.00330307917, -0.0105551286, -0.0166124459, -0.0102874013, 0.0172416046, 0.00237105531, -0.0147919049, 0.0103811063, -0.00918302871, 0.0573470779, 0.0105952872, -0.0207488257, -0.00664297072, 0.00152269611, -0.00615436956, -0.0182723533, -0.0154879941, 0.00799164455, 0.0145911099, -0.000229031895, 0.00489940029, 0.00589333568, -0.00738256611, 0.0187944192, -0.0206952803, -0.00933027826, 0.00167831231, 0.0407747887, -0.0120878639, 0.012275273, 0.00303200586, -0.00107341702, -0.0270939507, -0.001785403, 0.0129847489, -0.00083037134, -0.0340816192, 0.00806526933, 0.0283254925, 0.0292625371, -0.0156754032, 0.00819913298, 0.00188078068, 0.00112863572, -0.0311098527, -2.0563195e-05, -0.0131453853, 0.00441414537, 0.00176867, -0.0034704085, 0.00546497293, -0.0123957498, -0.00537126837, 0.0201598257, 0.010267322, -0.0364643894, 0.00476219, 0.00399247557, -0.0255812947, 0.0078577809, 0.00379837374, -0.00720854336, -0.0182455797, -0.000262079411, -0.0216055512, 0.0175361037, -0.000698181218, -0.0163848791, 0.010267322, 0.0229843445, -0.0181251038, 0.0114787854, 0.0352863893, -0.014484019, 0.0112913772, -0.00779084954, -0.0155415395, 0.00971848238, -0.007141612, 0.00866765436, 0.013480043, 0.0388471559, -0.0315649882, -0.0203338489, -0.00123154314, 0.0112445252, 0.00159297429, 0.012877658, -0.00750304293, 0.00933027826, 0.0175227169, -0.00935035758, 0.012074478, -0.00409622, 0.0238678418, 0.0215118472, -0.0195038952, 0.00506672915, 0.00672328891, -0.00474211061, -0.00433382718, -0.0345367566, -0.0112913772, 0.00546497293, -0.00486593414, -0.00623134105, -0.00405606069, 0.000243254879, 0.00850032549, -0.00574943284, -0.00313574984, 0.0218331199, 0.0200125761, 0.000597783714, -0.0048224288, 0.0132993283, 0.00445765071, -0.000718679104, -0.00794479251, -0.0119941598, 0.00433048047, 0.0117933648, 0.0204944853, 0.0201330539, 0.00854717754, -0.0173620824, -0.0112846838, 0.00275758584, -0.00391885079, 0.00367455, 0.00745619088, 0.00575612579, -0.0152738132, -0.00403598137, 0.00160134083, -1.75957157e-05, -0.0143501554, 0.0140958149, 0.00874797255, -0.00253838464, 0.0048759738, -0.0237875246, -0.0107693095, -0.0194369648, -0.000149550513, -0.00523071177, -0.0118870689, -0.0182857383, -0.0135469753, -0.00319598848, 0.00214181421, 0.00192428625, -0.00399916898, -0.017803831, -0.0106956847, 0.049395591, -0.00499979779, 0.00886844937, 0.0104011856, 0.00954446, 0.00449111685, -0.0134398844, 0.00109767984, -0.0173486955, 0.0143233826, -0.0193968061, 0.0115925698, 0.00840662047, -0.00673332857, -0.0162242427, 0.0236938205, 0.00168333214, 0.0317523964, 0.00498641143, 0.00172851107, -0.000854634098, -0.00807865523, 0.00829283707, 0.00232085655, -0.0157423355, -0.0296641272, 0.00914956257, -0.00321774115, 0.0133595662, -0.0131654646, -0.00603054557, 0.00924996, -0.0125095341, -0.0109767979, 0.016398266, -0.010468117, -0.00432713423, 0.0157289486, 0.0224756636, 0.00858733617, -0.0167864691, 0.00714830495, 0.00952438, 0.00239448133, 0.0187676474, -0.00346371531, 0.0143903149, -0.00388538488, -0.0058163642, -0.0170274228, 0.0123488978, 0.010963412, -0.0331445746, -0.0134198051, 0.000553023128, 0.0117732855, 0.0140021108, 0.019316487, 0.00126835564, 0.00929012, -0.0194637366, -0.00143986812, 0.00633508479, 0.00977202784, -0.0180715583, 0.0124359094, 0.0219000503, -0.0152738132, 0.0114787854, 0.00335662463, 0.0198519416, 0.000688559841, -0.00347375497, 0.0111976722, -0.0103275608, 0.00939051714, -0.00897554, 0.0185802393, -0.0274955407, 0.0118469102, -0.0139619512, 0.00728886155, 0.0323146209, -0.0129512828, 0.0117465127, -0.00765029294, -0.0119874664, -0.0116193425, 0.0116996607, 0.0084333932, 0.0121146366, 0.010869707, -0.000180715579, -0.0134198051, -0.0092767328, -0.0131386919, -0.00758336112, 0.0193834193, -0.00289814244, 0.0138414744, -0.0189282838, 0.0379904285, -0.0152470404, 0.00336331758, 0.0117063532, 0.017402241, -0.00547166588, -0.00948422123, 0.00452458253, -0.0174557865, 0.000154256646, 0.0045413156, -0.0352596156, -0.0125630796, 0.013172158, 0.0314311236, 0.00903577916, 0.00291654863, -0.000800670416, 0.00910940394, 0.018312512, -0.00201464398, 0.011518945, -0.010869707, 0.000500314403, 0.011224445, 0.00542146713, 0.00105166424, 0.0115122516, -0.0281916298, -0.0176833533, -0.0235733427, 0.00875466596, -0.000354947144, 0.0235465709, -0.00993935671, 0.00112110586, 0.00723531609, -0.00529095065, 0.013680838, 0.0136406794, -0.00630831206, -0.0182723533, 0.00438737264, 0.00852040481, -0.00488601392, 0.0148722231, -0.0130918398, -0.00665970379, -0.0071817711, 0.0046383664, -0.0124693746, 0.0174959451, 0.000238444161, 0.0106622195, 0.0138548613, -0.0278168134, -0.00494959904, 0.00273415982, -0.0227433909, 0.000791467319, 0.0177502856, -0.0192897152, -0.000259151158, -0.0188613515, -0.0153273586, -0.0220473, 0.00358084566, 0.0103811063, -0.0271207225, 0.0397306532, 0.012723715, -0.00664297072, -0.0432914197, 0.0263443161, 0.0377494767, 0.0128910448, 0.00719515746, 0.0122886589, 0.0149123818, 0.0117532061, -0.0120677846, -0.0113516152, -0.0128174201, -0.0172683783, 0.00268898089, 0.012630011, -0.0238009114, -0.00779084954, -0.00112696236, 0.00151349301, 0.0160636064, -0.00530768326, 0.00240284787, 0.00229910365, -0.0060573183, 0.00639532367, -0.000481071562, 0.024041865, 0.0227166172, 0.0216189381, -0.000766367884, 0.0166793782, -0.00265049515, 0.00922988076, -0.0115925698, 0.010361026, -0.00318427547, -0.00699436199, -0.0157958809, 0.00858064368, 0.0178306028, 0.00979880057, -0.0167195369, 0.0325288028, 0.0123756705, 0.0153675172, 0.0029600542, -0.0287270844, -0.00521397917, -0.00264380197, -0.022141004, 0.0254742038, 0.0176833533, 0.00513700768, -0.0170541964, 0.0116661945, 0.0136875315, -0.0247111823, -0.000411839079, 0.00433717389, 0.00205480307, -0.00403932761, 0.00427358877, -0.0304405354, -0.00801841728, -0.00622799434, 0.00379837374, 0.0045379689, -0.0126500903, -0.00108680339, 0.00381845329, 0.000247228949, -0.00314746308, 0.00972517487, -0.0206551217, 0.0031491362, -0.00863418914, 0.00197281176, -0.00360761839, -0.0163179468, 0.00085045083, -0.0124827614, -0.00509015564, 0.0134198051, -0.0115858763, -0.0219803695, -0.0288609471, 0.00365781714, -0.00696089631, 0.0214449149, 0.0242694318, -0.035313163, -0.0352328457, 0.00369797624, -0.0234127063, 0.0116394218, -0.022141004, 0.01590297, -0.010361026, -0.0209228471, 0.00698097562, -0.0333052129, 0.00477223, 0.0140422694, -0.00192930608, 0.000901904597, 0.0143635422, 0.00327128661, -0.0210700985, -0.013480043, -0.00185233471, 0.00316084921, 0.0222213231, 0.00254005776, -0.0265718829, 0.00135285687, 0.00345367542, -0.00333152502, -0.0274955407, 0.0171479, 0.0129178176, 0.027763268, -0.0021702603, -0.00631500548, -0.0173754673, 0.0114386268, -0.0181920342, -0.0225559808, -0.00798495114, 0.00268396107, -0.0148588363, 0.00248483918, 0.0189550556, -0.0229977313, 0.0172416046, -0.0491814092, -0.00637859059, 0.0156620163, 0.00886175688, -0.00565572828, 0.0248718187, 0.0028111313, -0.00590337534, -0.0153675172, 0.00932358485, -0.00287136971, -0.00512027461, -0.00925665349, -0.00211336836, -0.0056758076, -0.00756997475, 0.0068604988, -0.0192093961, -0.016799856, 0.0208425298, -0.00128090533, 0.00460490072, 0.0152470404, -0.00595357409, 0.0119138416, 0.00910940394, -0.0126835564, 0.0150060859, 0.00629492616, 0.00648902776, 0.0134532703, 0.0134599637, -0.00920980144, -0.000241163259, -0.00867434777, -0.00208659563, -0.0098389592, -0.0370533876, 0.0207755975, 0.00491278665, 0.00781092886, 0.0041196458, -0.0080518825, 0.00852709822, 0.00112528913, 0.0104480376, -0.00263376231, 0.00773061067, 0.00107927364, -0.00624807365, -0.0122551937, -0.00585317658, 0.0272144265, 0.0129579762, -0.00569588738, -0.0195976011, -0.00899562, -0.00244300696, -0.00392554374, 0.00797156524, 0.010869707, 0.00791132636, -0.0288341735, -0.00596361421, -0.00951768737, 0.0334123038, 0.0236804336, -0.00879482459, -0.00189249369, -0.018004626, 0.0112512177, -0.000674755138, 0.0127973398, 0.00492951926, -0.0143769281, 0.0102807088, 0.00138046616, -0.00198117807, 0.0202535316, -0.0303869899, 0.00960469805, 0.0208826885, -0.0120075457, 0.00261368277, -0.0224087313, 0.00511023495, 0.00349048781, -0.00284794369, -0.00568584772, 0.00349383452, -0.0145777231, -0.0176833533, 0.0173486955, -0.00939051714, 0.000588998897, -0.00824598502, 0.0333855301, 0.00476553664, 0.0113382293, 0.00656934595, 0.00171261479, -0.0296641272, -0.000949593436, 0.00658942526, -0.0150194727, 0.00178205641, -0.0134198051, -0.00249655219, -0.00291989511, 0.0120543987, -0.00228571729, -0.0184865333, -0.026665587, -0.0199724175, 0.000620791456, -0.00902239233, -0.0403999723, 0.0130182151, -0.00761013385, 0.00022150208, -0.00390881114, -0.0073491, -0.027977448, -0.00275758584, 0.0102472426, -0.00230077701, -0.0067199422, 0.00746288383, 0.00279439823, 0.00744280452, -0.0081255082, -0.010514969, 0.0141493604, 0.03078858, 0.0117933648, 0.00323280087, 0.00904916506, 0.0124492953, 0.00874797255, 0.0183794443, -0.0155281536, 0.00297176722, -0.00510688825, -0.0101334583, 0.00460155401, -0.0194905102, 0.00483246846, -0.00606735796, 0.0129512828, 0.0191692375, 0.0150730181, -0.0194503497, -0.00251997821, 0.00977202784, -0.0114185475, 0.00310730399, -0.011518945, 0.0113984682, -0.00520393951, 0.0118402168, 0.0115591036, 0.0025082652, -0.0141493604, 0.0168400146, 0.010963412, 0.00181719556, 0.00642209593, 0.00115373509, -0.0220606867, 0.0130182151, -0.00340180332, -0.000483581505, 0.0192897152, 0.00144070468, -0.0142296785, -0.00561556919, 0.0112311384, -0.0334658474, -0.00486593414, 0.0042602024, 0.00539469486, 0.0129847489, -0.00239950139, 0.00719515746, -0.0369998403, -0.00464506, 0.0300121717, -0.00399916898, -0.0210031662, -0.00971848238, 0.0142966099, 0.0100062881, -0.000320853811, 0.0273616761, -0.0231985264, -0.016398266, -0.00756328134, 0.0169738773, -0.00519055314, -0.00426354911, -0.00218866649, 0.0118201375, -0.0146044958, 0.0136272935, -0.0103877988, 0.00633508479, 0.0165187418, -0.0200928953, 0.0292089917, 0.00585317658, 0.0040627541, -0.0174424, 0.00706798723, -0.0126634771, 0.00958461873, -0.0205881894, -0.00400586193, 0.0176565815, 0.0148454504, 0.0207889844, 0.0252867937, -0.00637859059, 0.0183794443, 0.017201446, -0.011518945, 0.0185534656, -0.015193495, 0.0156754032, -0.0308688972, 0.00611086376, -0.00561556919, -0.0151801081, -0.00872789323, -0.0106822988, -0.00135704014, -0.00832630321, 0.00359757873, -0.00407279376, 0.00851371139, 0.0222480949, 0.0473340936, 0.0123020457, -0.0272947457, 0.0226496849, -0.0236135013, 0.021940209, 0.00138046616, -0.0263443161, -0.0187408738, 0.0254875887, -0.0183392838, -0.0282719489, -0.0130048282, 0.00750304293, 0.0107358443, -0.00951768737, 0.00886844937, 0.0113315359, -0.00714830495, -0.00279941806, -0.00652918685, 0.0102606285, 0.0199456457, -0.00683372607, -0.00243966025, -0.0300121717, -0.0102271633, -0.0150462454, -0.00807196274, 0.00556537043, 0.00306212506, 0.0112445252, -0.0275758579, 0.00235097576, -0.00542481383, -0.000553441467, 0.006816993, 0.015889585, -0.00356745929, 0.00331479218, 0.0124626821, 0.00868773367, -0.00845347345, -0.0118937623, -0.00829953048, -0.00963147078, -0.0112579111, -0.021324439, -0.00660281163, -0.0031006108, 0.0166526064, 0.0402125642, -0.00204476318, 0.00929012, -0.0055385977, -0.00300690648, 0.0165187418, -0.00703452108, 0.00342188287, 0.00779084954, 0.00788455363, -0.00685380539, 0.0183526706, 0.00763690658, 0.000786029093, -0.00206986279, -0.0178573765, -0.0032411674, 0.0239080023, -0.00700774835, -0.0112846838, -0.00960469805, -0.00606401172, 0.0203740075, -0.00458816765, -0.00615436956, 0.00603723899, -0.0188747384, 0.0411496051, 0.00348379463, 0.00422673672, 0.00927003939, -0.00334323826, 0.0152738132, -0.0272412, 0.0181786492, -0.00900900643, 0.013988724, 0.0065224939, -0.00788455363, -0.00754989544, 0.00538465474, -0.0166526064, 0.017803831, 0.0272947457, 0.018914897, -0.00848693866, 0.0406409241, 0.0012148103, 0.0249789078, 0.00371805578, -0.00302363932, 0.00131771772, 0.019115692, -0.00761013385, -0.0006500741, 0.00783100817, -0.000704037782, 0.0149391545, -0.00139217929, 0.0315382145, 0.00657269266, 0.0268797688, -0.00333487173, -0.0123422043, 0.00891530141, 0.00615102286, -0.0103342533, -0.0210433248, -0.0100330608, -0.00300690648, -0.00490944, 0.00832630321, 0.00217360677, -0.0221677776, -0.00463501969, 0.0221811645, 0.00262539578, -0.0114653995, -0.00690735085, 0.00356076611, -0.0196511466, -0.00779754249, -0.0237875246, -0.0281380843, 0.0214984603, -0.00302865915, -0.0073357136, -0.027763268, -0.00177870982, -0.00479900278, 0.020815758, 0.0284861289, 0.00129512826, 0.00896884687, 0.0101936972, 0.00975864101, -0.00902908575, -0.00666639674, -0.0272010416]
29 Dec, 2022
multimap::crbegin() and multimap::crend() in C++ STL 29 Dec, 2022 multimap::crbegin() is a built-in function in C++ STL which returns a constant reverse iterator referring to the last element in the multimap container. Since multimap container contains the element in an ordered way, crbegin() will point to that element that will come last according to the container’s sorting criterion. Syntax: multimap_name.crbegin() Parameters: The function does not accept any parameter. Return Value: The function returns a constant reverse iterator referring to the last element in the multimap container. Simple Example : C++ #include <vector> #include <iostream> int main() { std::vector<int> vec {1, 2, 3, 4, 5}; // Iterate through the elements of vec in reverse order for (auto it = vec.crbegin(); it != vec.crend(); ++it) { std::cout << *it << ' '; } std::cout << std::endl; return 0; } Output 5 4 3 2 1 C++ // C++ program to illustrate // multimap::crbegin() function #include <bits/stdc++.h> using namespace std; int main() { // initialize container multimap<int, int> mp; // insert elements in random order mp.insert({ 2, 30 }); mp.insert({ 1, 40 }); mp.insert({ 3, 60 }); mp.insert({ 4, 20 }); mp.insert({ 5, 50 }); auto ite = mp.crbegin(); cout << "The last element is {" << ite->first << ", " << ite->second << "}\n"; // prints the elements cout << "\nThe multimap in reverse order is: \n"; cout << "KEY\tELEMENT\n"; for (auto itr = mp.crbegin(); itr != mp.crend(); ++itr) { cout << itr->first << '\t' << itr->second << '\n'; } return 0; } Output The last element is {5, 50} The multimap in reverse order is: KEY ELEMENT 5 50 4 20 3 60 2 30 1 40 multimap::crend() is a built-in function in C++ STL which returns a constant reverse iterator pointing to the theoretical element before the first element in the multimap. Since multimap container contains the element in an ordered way, crend() will point to the element theoretically before the first element according to the container’s sorting criterion. Syntax: multimap_name.crend() Parameters: The function does not accept any parameter. Return Value: The function returns a constant reverse iterator pointing to the theoretical element before the first element in the multimap. C++ // C++ program to illustrate // multimap::crend() function #include <bits/stdc++.h> using namespace std; int main() { // initialize container multimap<int, int> mp; // insert elements in random order mp.insert({ 2, 30 }); mp.insert({ 1, 40 }); mp.insert({ 3, 60 }); mp.insert({ 4, 20 }); mp.insert({ 5, 50 }); // prints the elements cout << "\nThe multimap in reverse order is : \n"; cout << "KEY\tELEMENT\n"; for (auto itr = mp.crbegin(); itr != mp.crend(); ++itr) { cout << itr->first << '\t' << itr->second << '\n'; } return 0; } Output The multimap in reverse order is : KEY ELEMENT 5 50 4 20 3 60 2 30 1 40 Let us see the differences in a tabular form -: multimap::crbegin() multimap::crend() 1. It is used to return a const_reverse_iterator pointing to the last element in the container It is used to return a const_reverse_iterator pointing to the theoretical element preceding the first element in the container 2. Its syntax is -: const_reverse_iterator crbegin(); Its syntax is -: const_reverse_iterator crend(); 3. It does not take any parameters. It does not take any parameters. 4. Its complexity is constant. Its complexity is constant. 5. Its iterator validity does not change. Its iterator validity does not change. Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL
https://www.geeksforgeeks.org/multimapcrbegin-and-multimapcrend-in-c-stl?ref=asr10
PHP
multimap::crbegin() and multimap::crend() in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0213415567, -0.00154917326, -0.0131642018, 0.0309935175, 0.014263453, -0.0463830344, -0.0325753689, 0.00285202032, -0.0129832281, 0.010677482, -0.0161000062, 0.0300283227, -0.02008144, -0.0262345653, 0.00152822712, -0.00355580915, 0.0360608, 0.0280443076, -0.0241164956, -0.0150945941, -0.0288486388, -0.0110394303, 0.012078356, 0.00585820386, 0.00187341881, 0.00921628159, -0.0283124186, -0.0242907684, -0.0253229905, -0.0192905162, 0.0178293157, 0.00951120257, 0.0404578038, -0.00951120257, -0.0433802, 0.024156712, 0.0400288254, -0.015684437, -0.0166228209, -0.0148130786, 0.0114080813, 0.0356854424, 0.0275080875, 0.0188749451, -0.0373209156, 0.020497011, -0.0371332392, -0.0397875272, 0.00699096872, 0.00511419866, 0.0448816158, 0.0143706966, 0.0372941047, -0.000473800668, 0.0275080875, 0.0278834421, 0.0035692146, 0.00638101855, -0.0162340626, -0.0127419289, -0.000847060117, -0.0112941349, -0.0144645358, -0.0111734848, -0.00531192962, 0.0259262398, -0.0704056919, 0.0330847763, 0.0037568917, -0.0104294801, -0.0312616266, 0.0198267363, -0.000135940165, -0.0126681989, -0.0351492241, 0.01674347, 0.00234093564, 0.0304304864, 0.0108785639, 0.0484742932, -0.0321463905, 0.027172951, -0.0138478829, 0.00472879037, 0.0391708724, -0.0327094235, -0.0139417211, -0.0361680426, 0.0635420755, 0.0174539629, -0.0159525461, -0.00787573215, 0.00172428251, -0.0182180759, -0.0146656185, -0.00194379769, 0.00904871337, 0.0259932671, -0.0356586315, 0.019009, 0.0179231539, 0.0146924295, 0.0157916807, 0.00436013937, 0.00996699, 0.0250682868, 0.0248538, 0.0125207379, -0.0353905223, 0.0152822714, 0.0187677015, 0.0166764427, -0.0118236523, 0.0392244942, -0.03348694, 0.00397473108, -0.0112137012, 0.00124252238, 0.00128441455, 0.00380045944, -0.0346666239, 0.0267707855, 0.00497008953, 0.0526031852, -0.0396802835, 0.0103423437, -0.0114214867, 0.029358048, 0.00251520704, -0.0148398895, 0.00975250173, -0.0451229177, -0.00063676131, -0.0420396514, 0.00323910429, 0.0174673684, 0.0284464732, 0.0107378066, -0.0161134116, -0.0045980867, -0.0435678773, -0.0581262521, 0.0229368117, 0.0415838659, -0.0503778718, -0.029679779, 0.00175947195, 0.0645072684, -0.000824019371, 0.0102552082, -0.0454446487, 0.0116761914, 0.0479648821, -0.0158721134, 0.00934363436, -0.0254436415, 0.00692394143, -0.00931012072, 0.0150945941, -0.0182851031, 0.034639813, 0.0322536342, 0.00756740524, 0.0115086222, 0.00860633142, 0.0210198257, 0.0647217557, -0.00493322453, -0.044184532, 0.0451497287, -0.0212075021, 0.0324949361, 0.00886103604, -0.0134457173, 0.00580123067, -0.0288754497, 0.0323340669, 0.00401829882, -0.0071585374, 0.017427152, 0.0230708681, -0.0249074213, 0.0170249864, 0.0122794388, 0.0141428038, -0.000838262727, 0.0455518924, -0.0373477265, 0.0312884375, 0.0160329789, -0.00202087918, 0.00607604347, 0.0269986782, 0.0170249864, 0.0450961068, 0.0175075848, -0.000893979333, 0.00996028725, 0.0141159929, 0.0414766185, -0.00975920446, -0.0165557936, 0.0144511303, 0.0131642018, 0.0379643776, -0.011488514, -0.0278030094, -0.00538901147, -0.0033731591, -0.0160597898, -0.0223603752, -0.00274142507, 0.0224676188, -0.00291402079, 0.0102820192, 0.00514771231, -0.0437823646, 0.0240628738, -0.0147996731, -0.0365970172, 0.00437689619, -0.0175880175, 0.0582871176, -0.046195358, -0.0178427212, -0.0171992574, 0.000635923469, 0.0448548049, -0.00533538917, -0.00970558263, 0.0324413106, 0.0362484753, -0.0238751974, -0.0174539629, -0.00955142, 0.00821086951, -0.041851975, -0.0145449685, -0.0119510042, 0.0391172506, 0.0232585445, 0.0334065072, -0.0393585525, 0.0110059166, 0.0222531315, 0.0361144207, -0.00321564451, -0.0147326458, -0.0269852728, -0.0277225766, 0.038983196, 0.00563366199, 0.0359803662, -0.0070110769, -0.0202020891, 0.00851249322, 0.0169981755, -0.0174003411, -0.0200948454, 0.00776848802, 0.0120984651, 0.0291167479, -0.00782881305, 0.0346934348, 0.0161938444, 0.00489635905, 0.00516782049, 0.0207651202, -0.00842535775, -0.0349079259, 0.0493590534, -0.0226284862, 0.00199406827, -0.0145985903, 0.00644804584, -0.00145449687, -0.0123330606, 0.00955812261, 0.0322268233, -0.0307254083, 0.0256581288, -0.000311677897, 0.0125408461, -0.00500695454, 0.0177354775, -0.00394792, -0.0209259875, -0.0130971745, -0.0258860216, -0.0138880992, -0.0280711185, -0.0243712012, -0.00712502375, -0.000976088049, 0.0282856077, 0.024572283, -0.0103289383, -0.0334333181, -0.00841195229, 0.0039445688, 0.0381520577, -0.0090554161, 0.00722556515, -0.0493590534, -0.00486619677, -0.025604507, 0.0119107878, 0.00677312957, 0.0232183281, -0.00336478068, -0.0289826933, -0.0490641333, 0.00298439967, 0.0213817749, 0.00262747821, -0.011267324, 0.030216, -0.00254369387, -0.0254972633, -0.000235224652, 0.0137205301, -0.0357658751, -0.00423278706, -0.0105635347, 0.0091961734, -0.0631667227, -0.0143304802, 0.0102015864, -0.0165557936, -0.0533538945, -0.0245990939, 0.00381386513, -0.0124872243, -0.00739983656, -0.0105769401, -0.00935704, -0.00767464936, 0.00554652605, 0.0171054192, 0.0121453842, -0.00991336815, -0.0124872243, -0.00127436046, 0.0298138335, 0.0198535472, -0.0166362263, 0.00637096446, -0.00820416678, 0.00747356704, 0.0312884375, 0.000888952287, -0.00637431582, -0.014384103, -0.0159793571, 0.0237545483, -0.00961174443, -0.0211538803, -0.0330579653, 0.000318590115, 0.0397607163, 0.00651507359, 0.0430048481, -0.00945758075, 0.0202154964, -0.0010045747, -0.0434070118, -0.0306449756, 0.00479916949, 0.0444258302, 0.0169043373, 0.0247197431, -0.0207249038, 0.0242639575, 0.021824155, 0.00948439166, 0.000936709403, 0.00788243487, 0.00594534, 0.000955141964, -0.000133845548, -0.00823768, 0.0490909442, -0.0191832725, 0.00433332799, 0.0192637052, 0.00604252936, -0.00790254306, 0.00370326964, 0.0108852666, -0.0353369, -0.0108584557, -0.0106975902, 0.00142098311, 0.00168071466, -0.0195318144, -0.00491981907, -0.00884092785, -0.0267305691, -0.0224005915, -0.0357390642, 0.0125207379, 0.00904201064, 0.00590512343, -0.0276689548, -0.0226284862, -0.00109171052, 0.0179231539, -0.0400288254, 0.0181108322, 0.0504851155, 0.00459473534, -0.00575766247, -0.00780200167, 0.00359267415, 0.0120917615, 0.00814384222, -0.038018, 0.0326826125, -0.002344287, -0.00817065313, -0.0150141614, -0.0468656309, -0.0158989243, 0.00317710382, 0.0318246596, 0.0426831134, 0.00822427496, 0.0102753164, 0.0156442188, 0.021086853, -0.014558374, -0.00860633142, 0.0417179205, 0.0228697844, 0.0207114983, -0.0379375666, 0.0160731953, 0.00551636377, -0.0234864373, -0.00531863235, 0.0307522193, 0.0580190085, 0.0371332392, 0.00452100532, -0.000388759538, 0.027347222, -0.030510921, 0.00921628159, 0.00809021946, 0.00515106367, -0.0255106688, 0.010824942, 0.0107579147, -0.00364964758, 0.0285537168, -0.0204433892, 0.0390904397, -0.0168105, 0.0642391592, 0.0285269059, -0.0093302289, 0.0199876018, -0.0383933559, 0.00753389159, 0.0196524654, 0.000264130271, 0.0103021273, 0.0267975964, -0.0120917615, -0.0251889359, -0.00451095123, -0.0166496318, 0.00820416678, 0.0305913538, 0.0312616266, 0.0193709489, 0.0184057523, -0.0113477567, -0.0108316448, -0.0309398957, 0.0469192527, -0.0160195734, -0.0372941047, -0.0243443903, -0.0210466366, -0.0166094154, -0.00150392961, -0.0177354775, -0.0131843099, 0.0143438857, -0.0139149101, -0.00103054789, -0.000131436755, -0.0330579653, 0.00944417529, 0.0247599613, -0.0373745374, 0.028205175, -0.00320559042, -0.0180706158, 0.037508592, -0.00743335, -0.0219314, 0.0302964319, -0.0193709489, -0.0141964257, -0.0307522193, 0.00419257, -0.0463562235, -0.010188181, -0.0196792763, 0.0454178378, 0.0172796901, 0.0195452198, 0.0340499729, -0.0169981755, 0.0338354856, 0.010530021, -0.0510481484, -0.0070110769, 0.0253632087, -0.000599058345, 0.0159257352, 0.0377498902, 0.0145047521, 0.0260334834, 0.0117030023, 0.00487960223, 0.015121405, -0.0462489799, -0.00245488249, 0.0218509659, 0.0115354341, 0.00691053597, -0.0170920137, -0.0271193292, 0.00423278706, 0.0138076665, -0.036650639, -0.00370662101, -0.036650639, 0.0196926817, -0.00532533508, 0.0161000062, -0.00497008953, 0.000168720799, 0.00869346783, -0.00488630496, -0.0103758574, 0.0157380588, -0.00191028393, -0.00693064416, 0.00541582238, -0.0158721134, -0.0204165783, 0.0361412317, -0.00511419866, -0.0160195734, -0.00851249322, -0.00724567333, -0.00599896163, 0.0452033505, 0.0160866, 0.00474889856, -0.0104965074, -0.0201484673, 0.00979271811, 0.0255374797, -0.00526501052, 0.0145851849, -0.00715183467, -0.0240226574, 0.0201618727, -0.00769475754, 0.0109925112, 0.0175746121, 0.016864121, 0.0220788606, -0.00996699, 0.0194111653, -0.00946428347, -0.0153224878, 0.00715183467, -0.0379643776, -0.00872027874, -0.00569733791, 0.00154247042, -0.00506057683, -0.0161268171, 0.0045076, -0.00072264031, -0.00822427496, 0.0168239046, -0.00369656691, 0.00416575931, -0.00321396883, 0.00521138869, -0.00630393671, -0.0267305691, 0.000635085627, 0.0108517529, -0.012493927, 0.0130435526, -0.0373477265, -0.0119778151, -0.0276421439, 0.0308594629, -0.000359644444, 0.0243846066, -0.017333312, -0.0438091755, 0.0279370639, 0.00897498336, -0.00606934074, -0.00163463328, 0.0308594629, 0.00575766247, -0.0091961734, -0.0388223305, 0.00409873202, -0.0262345653, -0.0126078734, -0.025309585, 0.0201082509, 0.0118973823, -0.00486284541, -0.0228027571, -0.0143170748, -0.0153627042, -0.0299210791, -0.00931012072, 0.00169663376, 0.00709821284, -0.0315029286, 0.0119912205, -0.00718534831, -0.0394926071, 0.0324681252, -0.0366238281, 0.0216364786, -0.034023162, 0.00694404962, 0.0107713202, 0.0348274931, 0.00132044184, 0.00238282769, 0.00275483052, 0.0266501363, 0.00532533508, -0.0129162, -0.030510921, 0.00823768, -0.0136870164, -0.000101169644, -0.0143706966, -0.0187006742, 0.0172394738, -0.00365635031, -0.00237612496, 0.00987315178, 0.00845216867, -0.0283660404, -0.00591182616, 0.00453441078, 0.0172662847, -0.0040819752, -0.0239422247, -0.00743335, -0.00276153325, -0.00537560601, -0.0147594567, -0.0207383092, 0.00246661226, 0.018164454, 0.00724567333, -0.0143975085, -0.0126749016, 0.0364897735, -0.014973945, 0.00862644, -0.00461819489, -0.00431322, 0.0173467174, -0.031368874, -0.0165155772, 0.00257385615, 0.0129094971, -0.0138880992, 0.0307790302, -0.0490909442, -0.00430986844, -0.0234462209, 0.0219179951, 0.0247867722, 0.00602242118, -0.0147728622, -0.00215493422, -0.0202289019, -0.0102082891, -0.0106573729, 0.0247197431, -0.0313152522, -0.015536976, -0.0212611239, -0.00227893516, 0.0629522353, -0.00144779414, -0.0128826862, 0.0166630372, 0.0298942681, 0.0140623702, -0.0171188246, -0.0298942681, -0.00831811316, 0.0146254012, -0.000247373391, -0.00381721649, -0.00111349439, -0.00337483478, -0.0335405618, 0.0125475489, 0.02994789, 0.0119510042, -0.00856611505, 0.029358048, 0.0228831898, 0.00689713, -0.0181108322, -0.0294921026, -0.00915595703, -0.0370528065, 0.0165021718, -0.0181108322, -0.00773497391, -0.0277493875, -7.68721729e-05, 0.0368651263, -0.0191430561, -0.00379375671, 0.0124805216, 0.00537560601, 0.0294384807, -0.00595204253, 0.00408532657, 0.0301891882, -0.0309398957, 0.00958493352, -0.00233255723, -0.0295993462, 0.012373277, 0.00767464936, -0.00666923681, 0.00085753313, -0.0186470523, 0.021502424, -0.0258055888, 0.0137406383, 0.00294083171, 0.0204031728, -0.0151884323, 0.0337282419, 0.00536220055, -0.000202967669, 0.0195050035, -0.0261139162, 0.00953801442, 0.0108182393, 0.0236204937, 0.0368115045, -0.00562025607, -0.037830323, 0.00191866234, 0.0244382285, -0.000142223987, -0.00398478517, -0.0136132864, -0.0205640383, 0.0182985086, 0.0179767776, -0.00283023645, 0.000489719736, 0.0539169237, 0.0173467174, 0.00378035125, 0.00320559042, -0.00118554896, 0.0303768646, 0.0307522193, 0.0393317416, -0.0239020083, -0.0196658708, -0.00670945318, 0.0166764427, 0.00827789679, -0.00500025181, -0.0351492241, -0.00531863235, -0.0243980121, -0.0402165, -0.026020078, 0.0186336469, -0.00231747609, 0.00105819677, -0.000718451047, -0.00292910193, -0.0198669527, 0.0115823532, 0.0165155772, 0.0198937636, 0.0231244899, 0.0211002585, 0.008076814, -0.0172930956, 0.00242639566, 0.0214488022, -0.000570990553, 0.00973239355, 0.0140355593, 0.0144243194, -0.00248672045, -0.0127352262, -0.0131105799, 0.0106372647, -0.0150543777, -0.0509677157, 0.00774167664, 0.0175478011, 0.0147192404, 0.014384103, -0.0135194482, 0.0138478829, 0.0342912711, -0.021824155, 0.0174539629, -0.012567657, 0.0371600501, 0.00454111351, -0.00054376066, -0.00767464936, 0.0315297395, -0.00279504689, 0.00148633495, -0.0241835229, -0.00311342767, -0.000375144562, -0.0162876844, -0.0126413871, 0.0255911015, -0.0167166591, 0.00925649889, 0.00329607748, 0.0134189064, -0.0228161626, 0.0257921834, 0.0159123298, 0.0112740267, -0.0361412317, -0.0135931782, 0.0103959665, 0.0197731145, 0.0217973441, 0.0297065899, -0.000971898844, -0.00224877289, 0.0181912649, 0.00874038693, 0.00805000309, -0.0326826125, 0.032843478, -0.0237679537, 0.000121592086, -0.00796957, -0.0390636288, 0.000583977147, 0.0232049227, -0.032548558, 0.0311275739, 0.0331920199, 0.00871357601, -0.0139015047, 0.0446939394, -0.022682108, -0.0454178378, -0.0439968556, -0.00233088154, 0.0202289019, 0.00636091037, -0.0162206553, -0.033701431, -0.0101412619, 0.0253498033, -0.0065988577, -0.0226955134, -0.0297065899, 0.0209662039, 0.0134256091, 0.0342912711, -0.010824942, 0.00190022972, -0.0127687398, 0.00267607323, 0.00695745507, 0.00490306178, 0.0123866834, 0.0247599613, -0.00519128, 0.05700019, 0.0132714463, -0.00471203355, 0.0107847257, -0.00381721649, -0.0321732, -0.0286073387, -0.00961844716, 0.0100809364, 0.00843206048, -0.012567657, -0.0151750268, 0.0252961796, 0.0178025048, 0.0156040033, 0.0217973441, -0.0168507155, 0.00560014788, -0.0107646175, -0.0263284035, -0.0233926, -0.0182716977, -0.0334601291, -0.0018533105, -0.0324681252, -0.000834911363, 0.0285269059, -0.0189285669, -0.0030413731, -0.0274276547, -0.0300551336, -0.0231378954, -0.0457395688, -0.0174807739, 1.15465355e-05, -0.0040819752, 0.0111734848, 0.00452770805, -0.0465975218, 0.00676642684, -0.0414766185, 0.00142601016, -0.0236607101, -0.0297334, 0.00563701335, -0.0298942681, -0.00699767144, -0.0461685471, -0.00906882156, -0.0108115366, -0.0241701175, -0.0092430925, -0.0106104538, 0.0286877714, -0.000978601631, 0.00179968856, 0.041020833, -0.0260737, 0.0436751209, -0.0143304802, -0.0197865199, 0.00505052228, -0.0178159103, 0.00659215497, 0.0253363978, -0.0193039216, 0.0243443903, 0.0425758697, 0.00945087802, 0.0282319859, -0.0451497287, -0.034318082, -0.0159793571, 0.0289826933, 0.0360071771, 0.0368383154, -0.0184593741, 0.00817065313, 0.0247331485, 0.0278030094, -0.00748697249, -0.00762773026, -0.0345057584, 0.00817065313, -0.0274544656, -0.0280979294, -0.00870687328, -0.0217973441, 0.0292239916, 0.0397875272, 0.0265965145, 0.00817735586, -0.00352564687, 0.000911574054, -0.0173601247, 0.00564706745, -0.0300551336, 0.0337282419, -0.0225882698, -0.000391482521, -0.00800308399, 0.0344789475, 0.00874709, 0.0135596646, 0.00398478517, -0.0210600421, 0.00591852888, -0.0250280704, 0.00683010276, -0.00404175837, -0.000818573404, -0.0163547117, 0.0371600501, 0.00721215969, -0.0143036693, -0.0070110769, -0.0351492241, 0.0326558, 0.00788243487, 0.00230742176, -0.00475225, -0.0238081701, -0.00612296257, 0.000887276605, 0.0200948454, -0.0137674492, 0.0134859337, 0.0335405618, 0.00837173499, -0.00741994474, 0.00512425276, -0.0315297395, 0.001834878, 0.00751378341, 0.0046416549, 0.00143857778, -0.014558374, 0.0124336025, 0.00356586324, -0.0277225766, 0.00786902942, -0.0144645358, -0.00500360318, -0.00532198371, 0.00780870439, 0.0219850224, -0.0164753608, 0.0115086222, 0.0131306881, -0.00834492408, 0.0201484673, -0.0296261571, -0.0018533105, 0.0035222955, -0.0158989243, -0.0161000062, 0.00641118083, -0.0118973823, -0.0127084153, 0.0305913538, 0.00813713949, -0.00540241692, 0.0196792763, 0.0126749016, 0.0126883071, -0.00534544373, -0.0213013403, -0.0247331485, -0.0215962622, 0.00327764498, 0.00965866353, 0.00304640015, 0.018606836, -0.0222799424, -0.0245588776, 0.00262580253, 0.0197194926, 0.0114482976, -0.00948439166, -0.022239726, -0.00061078812, 0.0243712012, -0.0291971806, -0.0256313179, -0.0195586253, 0.0128893889, 0.0295725353, 0.000270414079, 0.0155235706, -0.00152403791, 0.0315029286, 0.0399215817, -0.0229904335, -0.00392446062, -0.0266367309, 0.0316637941, -0.000262873509, -0.0150811886, 0.00474889856, 0.0118839769, -0.00842535775, 0.0157916807, -0.00199239259, -0.00396467699, 0.00425289525, -0.0191296507, 0.0138612883, 0.0334333181, -0.0238751974, -0.0194111653, 0.0143975085, -0.00610620575, 0.00361613394, 0.0120716533, 0.014826484, 0.00557668833, 0.0137942601, -0.00151147018, -0.028768206, -0.00290564238, -0.00326423952, 0.0179097485, -0.0146119958, 0.0191296507, -0.0203361455, 0.0227893516, 0.0113142431, 0.0133987982, 0.0280711185, -0.0171054192, 0.0115019195, -0.0165423881, 0.00992007088, 0.00582804158, 0.00110511598, -0.0216230731, -0.0118839769, 0.00493657589, -0.0261943489, 0.00170417433, -0.0145985903, -0.00799638126, -0.0283392295, 0.0214756131, -0.00323910429, 0.0164485499, 0.00506727956, 0.0305377319, -0.0265428927, 0.00438359892, 0.00179131, -0.00774167664, 0.00629053125, 0.0282587968, 0.0133116627, -0.0056604729, 0.0221726988, -0.0112539185, -0.0136199892, 0.0253229905, 0.000517368549, -0.0264758654, 0.0102082891, 0.025162125, -0.010456291, -0.0176684503, -0.0134591227, 0.00113025133, 0.00638437, -0.0302696209, 0.00702448236, -0.00385073014, 0.0382324904, -0.019196678, 0.0127285235, 0.00634080218, 0.00899509154, -0.016153628, -0.00423949, 0.00534209237, 0.0182448868, -0.00900179427, 0.0155905979, -0.0267841909, 0.00965866353, -0.00314526563, -0.000781708281, -0.0131507963, 0.0117164077, -0.0180438049, -0.000150497697, -0.019196678, 0.0114482976, 0.0224676188, 0.00183320232, 0.022829568, -0.0350419804, 0.00957152806, 0.0125073325, 0.0165423881, 0.00027208979, 0.0141696148, 0.0116426777, 0.0139015047, -0.0140757756, -0.0149605395, -0.0110126194, -0.000119916396, 0.00938385073, -0.0163949281, -0.0146522122, -0.00506727956, 0.00750708068, -0.00754059432, -0.0064581, -0.0100072064, 0.0258994289, -0.00535884919, -0.0029223992, 0.00798967853, 0.0197731145, -0.0199741963, -0.0135395564, 0.00971228536, -0.0228831898, 0.0134926364, 0.0181778595, -0.00543593056, -0.00415905658, -0.00530522689, 0.0140623702, 0.000428976025, 0.0061296653, 0.00433667935, -0.0280174967, -0.00527506461, 0.0185264032, 0.00782210939, 0.0154431369, 0.0134390146, -0.000508571218, -0.0276957657, -0.0158050861, -0.0027162896, 0.00367981, -0.00953131076, -0.0232049227, -0.00112941349, 0.0149337277, -0.0157648697, -0.0508872829, -0.00894146878, 0.0122325197, 0.0186872687, 0.020939393, -0.00634415355, -0.000368232344, 0.0125810625, -0.0377498902, -0.0408331566, 0.0046416549, -0.00560349924, 0.00231244904, 0.0166094154, -0.02341941, -0.00419257, 0.0205506328, -0.00407192111, 0.0211404748, 0.0015743085, 0.0327630453, -0.0258860216, -0.0129631199, 0.000341840263, 0.00773497391, -0.0210734475, 0.0246661212, -0.00678653503, 0.00363624212, -0.0385810323, 0.0155101651, -0.00560685061, 0.0106506702, 0.0148532949, -0.0179231539, 0.00521474, 0.0243175793, 0.0159123298, -0.0108919693, 0.0122794388, -0.0180035885, -0.0156710315, -0.00292742625, -0.0200010072, -0.00143271289, 0.00396467699, -0.0133853927, -0.00886773877, -0.00772827119, 0.0383397341, -0.0108919693, -0.00513430685, 0.0127486316, 0.0162206553, 0.0233657882, 0.00546274148, 0.00282185804, 0.021234313, 0.0508872829, 0.00237780064, -0.010751212, 0.023097679, 0.00928331, -0.00324245566, -0.0279638749, -0.00864654779, 0.0167568754, 0.025162125, -0.00325418543, -0.000215954249, 0.00846557412, -0.0186202414, 0.00107244006, 0.0039445688, 0.0188615397, -0.00562695926, 0.00150141609, 0.0105166156, -0.0309130847, -0.0243712012, 0.0238617919, 0.00043358418, -0.00623690942, -0.0109321857, 0.00078882993, 0.012125276, -0.000159085597, -0.00317710382, -0.00939725619, -0.0186738633, 0.00461819489, -0.0181912649, -0.0303232428, 0.0109589975, -0.00871357601, 0.0230440553, 0.00593863707, 0.0157916807, -0.0106238592, -0.00583474431, -0.038366545, 0.00157765986, -0.00732610608, 0.00776178529, 0.0107780229, 0.00379710807, -0.0280979294, -0.0217437223, -0.00409538066, -0.0238617919, -0.0271595456, 0.0120716533, 0.0338354856, -0.00397808244, 0.0137004219, -0.0208053384, -0.0357658751, -0.0101479646, -0.00125760352, 0.00829130225, -0.0061765844, -0.00545939, 0.0141964257, 0.00503041409, 0.00888114423, 0.00609950302, -0.0268378127, 0.0146119958, 0.0136266919, 0.023097679, -0.0110193221, 0.0152152432, 0.0157112479, 0.00876719784, 0.0152152432, 0.00884092785, 0.0320391469, 0.00224374584, -0.0264892709, 0.0402165, 0.0118772741, -0.0378035121, 0.00126179273, 0.0370796174, 0.0293044243, -0.00359602575, -0.00630728807, -0.0133585818, 0.0119979233, -0.00374013488, -0.0168105, -0.00342678116, -0.0157246534, -0.0131172827, 0.021824155, 0.0243041739, -0.00280677667, 0.0109589975, -0.00821086951, 0.00157179497, 0.00602912391, 0.0157246534, -0.0311811958, -0.0324949361, 0.0223469697, -0.00287715555, -0.0199741963, -0.0242371466, 0.0109858084, -0.0421468951, 0.0264490526, 0.0294921026, 0.00355245778, -0.007339512, 0.00794275943, 6.75511546e-05, 0.0339427292, 0.0124269, 0.0344253257, 0.0203227401, -0.00845216867, 0.00431992253, 0.0234060045, -0.0191832725, -0.0014813079, -0.00113862974, 0.00196055463, -0.0185934305, 0.0231513, -0.00143690209, 0.0073864311, -0.00797627307, 0.00731270062, 0.00952460803, -0.00554987742, -0.0291703697, -0.00511755, -0.0158050861, 0.0222531315, 0.00953801442, 0.0266635418, -0.00105316972, -0.0290095042, 0.0123598715, -0.0182180759, -0.00677312957, -0.00109757541, 0.0113209458, 0.00748697249, 0.0110059166, 0.0478308275, 0.0141830202, 0.0028855342, -0.0332188308, 0.0172260683, 0.0260468889, -0.019344138, -0.0174807739, -0.00813043676, -0.0215426404, -0.00711832102, -0.0094240671, -0.0283928514, -0.0025319641, 0.013157499, 0.00414565112, 0.0158050861, -0.0140489647, 0.00116460293, -0.0189821888, 0.0209527984, 0.00841865502, 0.00423613843, 0.0394926071, 0.0245052557, 0.00730599789, 0.0186336469, 0.00846557412, -0.03348694, -0.022534648, -0.0248269886, -0.00236439519, -0.000560098561, 0.0374549702, 0.00308326515, -0.0123665743, 0.00129111728, 0.0126413871, -0.0292776134, 0.0485547259, -0.0145851849, 0.0228027571, 0.010630562, -0.0193843544, 0.00242639566, 0.00584815, 0.0270388965, 0.0032256986, 0.0152152432, -0.00954471715, 0.0182180759, -0.0239556301, -0.0111064576, -0.0176416393, 0.00111181871, 0.0303768646, -0.0404578038, 0.0150141614, -0.0156308133, 0.00133803661, -0.0301623773, -0.00713842921, -0.00995358452, -0.00573085155, -0.00585820386, 0.0127955507, 0.0286341496, 0.00378705398, -0.0112002958, -0.0355782, 0.0120381396, -0.00343851093, -0.0196390599, 0.00237612496, 0.00308326515, -0.0150007559, -0.00274310075, 0.0133920955, 0.00137992878, 0.0174807739, 0.00609950302, 0.00421603024, -0.0113142431, -0.00925649889, -0.000805167889, 0.0070646992, -0.0087336842, -0.0137942601, 0.0217705332, 0.0392513052, 0.00464835763, 0.00983293541, -0.00564706745, -0.00243309839, 0.00765454117, 0.00254369387, 0.0179231539, 0.00575095974, 0.00163966033, -0.0078891376, -0.0139015047, -0.0141830202, -0.00758751342, 0.00739983656, -0.00292910193, 0.0186470523, 0.00384067604, 0.00303467037, 0.00463830354, -0.0062201526, 0.00645474857, 0.0181912649, 0.033165209, 0.0145449685, 0.0203361455, -0.0106439674, 0.0201752782, -0.0186738633, 0.0180304, -0.0272936, 0.000495584623, 0.000638437, 0.00568058109, -0.0271059237, 0.00449419441, -0.00926990435, 0.00861303415, 0.00976590719, 0.0023845036, 0.0236070864, -0.0147728622, -0.0121118706, -0.0180438049, 0.00198904122, 0.00853260141, 0.00762773026, -0.0154565424, 0.0154431369, 0.000595288, 0.0171054192, 0.0100943418, -0.0263954308, -0.0114482976, 0.0070646992, 0.00709151, 0.0128089562, 0.00204769033, 0.00388424401, 0.0051108473, 0.00368651282, -0.0201752782, 0.0118437605, -0.00169412023, 0.0152152432, 0.0267305691, 0.00577777112, 0.0216364786, 0.00165725511, 0.000936709403, 0.00175276923, -0.00616653031, -0.00965196081, 0.0162474681, -0.0043668421, -0.0124872243, -0.010630562, 0.00704459101, -0.00179298571, -0.0071116183, 0.0224810243, -0.00122995477, -0.00292072352, 0.013673611, -0.00160782225, 0.0162608735, -0.00239958474, 0.00154749758, -0.0230306499, 0.0198267363, 0.00819746405, -0.0261005107, 0.0058079334, 0.001491362, -0.00435343664, 0.00221358333, 0.00247834204, 0.012373277, -0.0152286496, -0.0064044781, -0.0150677832, 0.0121319788, 0.0139551265, -0.00104981835, -0.0130435526, 0.0145985903, 0.00668264227, 0.0174405575, -0.00140422618, 0.0213951804, -0.00435008528, -0.00540911965, -0.00502371136, -0.0142500475, 0.0122861415, 0.00826449133, 0.0291435588, 0.0264356472, -0.0112606212, -0.0220520496, -0.0137004219, 0.0148801059, 0.00444727484, 0.000735207926, 0.00106322381, 0.00026329243, -0.0333260745, -0.00748697249, 0.00949109439, -0.00385743286, 0.00371332373, 0.000711329398, 0.00810362492, 0.000532868668, -0.00310169789, -0.0132848518, -0.0206578765, -0.00689713, -0.00239288202, 0.00244817953, -0.0214219913, 0.0150007559, -0.0231513, 0.0244784448, 0.0158050861, 0.0252827741, -0.00791594852, -0.0511017703, -0.014826484, 0.00321564451, -0.00191698666, -0.0134725282, 0.00203763624, -0.0166496318, 0.00148968631, -0.00945758075, 0.012493927, 0.00621345, -0.00983963814, -0.0268110018, -0.0190224051, -0.0369187482, -0.00884763058, -0.0141830202, 0.00686361641, 0.0108651584, -0.00056345, -0.00563701335, 0.00298607536, 0.00772156846, -0.0141562093, -0.00142768584, -0.0113745676, 0.00675972411, -0.0117298132, 0.00293580466, -0.0146656185, 0.0290363152, -0.0191296507, -0.009377148, 0.000114784605, 0.0164753608, 0.0229234062, 0.0292776134, 0.00150392961, 0.00640112674, -0.0186738633, -0.00184325641, 0.0093302289, -0.00298942672, -0.0230708681, -0.0071585374, 0.00318715791, 0.00143438857, -0.00749367522, -0.00643128902, -0.00544263329, -0.0248806104, 0.0257251561, -0.010530021, -0.0312616266, 0.0206980929, 0.024156712, 0.00697756326, 0.0115488395, 0.0034820789, -0.0159659516, -0.00464835763, 0.0138344774, 0.0169713646, 0.00589842023, 0.0344253257, -0.00462489808, -0.00702448236, -0.0122124115, 0.00900179427, 0.0125877652, 0.00927660707, 0.0107042929, 0.0110796466, 0.0306985974, 0.00489635905, 0.00591517752, 0.0191028398, -0.000207680539, -0.0150677832, 0.0120381396, -0.0312348176, -0.0107646175, -0.00717864558, 0.00466846582, -0.000519044232, 0.0119375987, 0.00397473108, 0.014826484, 0.0321195796, 0.00578447385, -0.0131373908, -0.00897498336, 0.0247867722, 0.0158989243, -0.00541917374, 0.0124336025, -0.00383397331, 0.0222263206, -0.0114080813, -0.0253900196, -0.00299780513, -0.00362618803, 0.0136602055, 0.00486619677, -0.00634750491, -0.030510921, -0.00196055463, 0.0177891, -0.0240494683, -0.010556832, -0.0129027944, -0.00252358546, -0.00642458629, 0.010824942, 0.000413057, 0.00973909628, -0.00921628159, 0.00935704, 0.00928331, 0.00280510099, -0.00172763399, 0.0113611622, -0.0278566312, 0.000328644237, -0.0266233254, -0.00565041881, 0.00513095548, 0.00955142, -0.00593193434, -1.81707383e-05, 0.0179097485, 0.00423949, -0.000884763082, -0.00435678801, 0.00339661888, -0.0228697844, -0.0100206118, -0.00424954388, -0.0034418623, -0.01330496, -0.024156712, 0.0227357298, 0.0145985903, -0.00288720988, 0.0100809364, -0.00665583136, 0.0059922589, 0.00428976025, -0.0041858675, 0.00331451022, 0.0174807739, -0.0137942601, 0.0347470604, 0.0273606274, 0.0182985086, 0.00383062195, -0.016421739, 0.00983963814, -0.0263015926, 0.00880741421, 0.000222656992, 0.0180974267, 0.00130368501, -0.00565041881, -0.0423881933, 0.0177086666, 0.00672956137, 0.0275617093, -0.00247163931, -0.0064581, 0.0167702809, -0.025751967, -0.00156676793, -0.00609615166, 0.0175478011, 0.0177354775, -0.00266099186, -0.0253632087, 0.0213281512, -0.0014754429, 0.0215828568, -0.00205104169, 0.0124671161, 0.0163815226, 0.00086633052, 0.00307488674, 0.0189151615, 0.0270657074, 0.00219682651, 0.00898838881, -0.00740653928, 0.0029911024, 0.00685691368, 0.00136652321, 0.000109233886, 0.0110930521, -0.0228563789, -0.00112019712, -0.024840394, -0.00490976498, 0.0222531315, -0.0100742336, -0.0167702809, -0.00943747256, -0.00282520941, 0.000202444018, 0.0052482537, -0.0198669527, -0.000899006438, -0.0124872243, -0.0184057523, 0.00839184318, -0.000913249736, 0.0297065899, -0.00549960695, -0.0108115366, 0.0376962684, 0.00364294485, 0.00550966104, 0.00792935397, 0.0122727361, 0.00721886242, 0.00499690045, -0.0105434265, 0.00440035574, -0.00987985451, -0.0131306881, -0.00121990056, -0.0144243194, -0.00342342979, -0.00758081069, 0.00966536626, 0.03348694, -0.0254704524, -0.00500360318, 0.0112941349, 0.00223034015, 0.0049265218, -0.00963855535, 0.0182985086, 0.0121118706, -0.00304472446, 0.0193307325, -0.0100005036, -0.0312348176, -0.0223469697, 0.00725907879, -0.0243712012, 0.00132714456, 0.0364897735, 0.014558374, -0.0100340173, -0.00239790906, 0.00409873202, 0.00319721201, -0.00297769695, -0.00289558829, -0.02675738, 0.00660220906, 0.00703118509, -0.00885433331, 0.0143706966, 0.0067362641, -0.0208321493, -0.00570404064, -0.0117365159, 0.000629220682, 0.0162608735, 0.00847227685, 0.00436349073, 0.0120448424, 0.00735291746, -0.0140355593, 0.00231915177, -0.0093302289, 0.00620339578, 0.00823097769, 0.00498349499, -0.00561020197, -0.00555993151, 0.00251855841, -0.011857166, 0.0211136639, 0.0112002958, 0.00368986418, -0.0126816044, 0.0394926071, 0.018486185, -0.0069641578, 0.0214219913, 0.0254168306, 0.00635085627, 0.0310203303, -0.0181376431, -0.00838514, -0.00419257, -0.0228831898, -0.0120716533, 0.000857952051, 0.0102686137, 0.0143975085, 0.00707140192, -0.00532868644, 0.00872027874, 0.0090152, 0.011635975, 0.0147460513, -0.00159525464, -0.00286375, -0.0178561267, -0.0152822714, -0.022413997, 0.0112740267, 0.00366305304, 0.00233423291, 0.0106372647, 0.0155771924, 0.0211672857, -0.00363289076, 0.0118370578, -0.0477503948, -0.00725237606, 0.01659601, -0.000778356916, 0.0159525461, -0.00176449912, 0.00909563247, -0.001190576, 0.00442381529, -0.00118052191, 0.0107914284, 0.00402500154, 0.0306181647, 0.00842535775, -0.00551301241, -0.022266537, -0.0068267514, 0.0102216946, 0.0016773633, 0.00767464936, -0.00401494745, 0.0013095499, -0.016864121, -0.0323608778, 0.0163949281, -0.0186470523, 0.00651842495, 0.0239154138, 0.0113678649, -0.0259262398, -0.0187945124, 0.0226284862, 0.0153090823, -0.0011721435, -0.00542252511, -0.0108450502, -0.00741994474, 0.00160530873, 0.0132714463, 0.00764783844, -0.00869346783, 0.0143304802, 0.0236607101, 0.00167484977, -0.0174539629, -0.0158989243, -0.00684685959, -0.0255508851, -0.00683010276, -0.00809021946, -0.00758751342, -6.26091878e-06, -0.00504381955, 0.0320927687, -0.00821757223, 0.00504717091, -0.0103423437, 0.00288888556, -0.00610285439, -0.00825778861, -0.0149873504, -0.0171054192, 0.0122861415, -0.000753221568, -0.0129162, 0.00312180608, -0.00241969293, -0.0379375666, 0.00465170899, 0.0135462591, 0.012788848, 0.0266501363, -0.0408063456, 0.00360272848, 0.0192905162, 0.0170517974, 0.0382324904, 0.0130770663, 0.0011922518, 0.0139283156, 0.00988655724, 0.00517117186, -0.00833151862, -0.00452435669, -0.00893476605, 0.0233121663, 0.0206310656, -0.007554, 0.0198267363, -0.0220118333, -0.00221861037, 0.00724567333, 0.011488514, 0.0147192404, -0.0111667821, 0.00926320162, 0.0216364786, -0.0158050861, 0.0192100834, -0.00284531759, 0.00992677361, -0.00344521366, -0.00530522689, 0.00355580915, -0.00858622324, 0.0226418916, 0.016153628, -0.0154967587, 0.00118554896, 0.0103691546, 0.0105702374, 0.00902860519, 0.000909060531, 0.000469611463, 0.00268947869, -0.00742664747, -0.00473214174, -0.00479581812, -0.0233255718, 0.00961844716, 0.0227223244, 0.0061765844, -0.0152956769, 0.0158050861, 0.00622685533, -0.00998039544, -0.0106104538, 0.01659601, 0.00296596717, 0.0070646992, 0.0308058411, 0.017427152, 0.0365433954, 0.00780200167, 0.00782881305, -0.013157499, 0.00553312059, -0.00796286762, 0.0152822714, 0.00762773026, -0.0238215756, 0.00790924579, 0.0121654924, -0.0170383919, 0.0214488022, -0.000397556898, -0.000198464259, 0.00227223244, 0.00821757223, -0.00357256597, -0.0164887663, -3.08693088e-05, -0.0224944316, -0.0141293984, 0.000327178015, 0.0154967587, 0.0132245263, -0.0100340173, -0.0122392224, -0.000436935545, -0.0207249038, -0.000389387918, 0.000284238515, -0.00425624661, 0.0122660333, 0.00398478517, -0.00805000309, -0.0115086222, -0.0197865199, 2.22159524e-05, -0.00423278706, 0.0169043373, 0.0271461401, 0.044184532, -0.00508068502, -0.00684685959, 0.00560685061, 0.0135328537, 0.0202825237, -0.0150007559, -0.00255542365, -0.0111533767, 0.0182985086, -0.0135730701, 0.0247197431, -0.00576101383, 0.0121923033, -4.4981738e-05, 0.00498014363, 0.00758081069, 0.0128223617, 0.00774167664, -0.00228731357, -0.0132044181, -0.00748026976, -0.00162122783, -0.014263453, -0.00183990505, 0.0116024613, 0.0156040033, -0.00192033802, -0.0238483865, -0.00271461392, 0.0239154138, 0.00733280927, -0.00868006237, 0.0199876018, 0.0204433892, 0.0342912711, -0.00496673817, -0.0320659578, -0.00439700438, -0.0120381396, -5.49311335e-05, -0.0207249038, -0.011830355, -0.00694404962, 0.0125475489, -0.0210198257, 0.00330110453, -0.00239958474, -0.00339159183, 0.0202423073, 0.014679024, -0.0090554161, -0.00552976923, 0.0211538803, -0.00989326, 0.012594468, 0.00953801442, 0.0283124186, -0.0306449756, -0.00813043676, 0.00167149841, -0.010898672, -0.027615333, 0.0268244073, 0.00680329185, 0.00659550633, 0.00516782049, 0.00865325052, 0.0104965074, 0.00247331499, -0.026341809, -1.40469756e-05, -0.00629388262, 0.0168775264, 0.00859292597, -0.00875379238, 0.00075531617, -0.000393996044, 0.00845887139, -0.00423949, -0.00737972837, -0.0299747, 0.00771486573, 0.0115354341, -0.0231378954, 0.0129094971, 0.025604507, -0.0121118706, -0.0162608735, 0.0295725353, -0.012225817, 0.0138880992, 0.00174439081, -0.0248135831, 0.0195720308, 0.00248504477, -0.00383397331, 0.00282353372, 0.0118906796, -0.0125006298, 0.0126279816, -0.0220252387, -0.0177086666, 0.0127553344, -0.0193977598, 0.000300367, -0.0018885, 0.0311811958, -0.00468187127, -0.0284464732, 0.0123933861, -0.000277535757, -0.00996028725, 0.0208991766, -0.0171188246, 0.015108, 0.00860633142, -0.00649831677, 0.0237009265, 0.0115086222, 0.0275617093, 0.0111131603, -0.0327630453, -0.00283358782, 0.0116761914, -0.0104495883, -0.00376359443, -0.0107579147, -0.00408532657, 0.00535549782, 0.00185666187, 0.00717194285, -0.00980612356, 0.00639442401, 0.0107646175, -0.0213817749, -0.0133920955, -0.0061296653, 0.00338153774, -0.0104696965, 0.0227893516, 0.000675721036, 0.00821757223, 0.00170417433, -0.0113343513, 0.00178125594, -0.00237109791, -0.00442046393, 0.0153224878, 0.0241433065, 0.00676642684, -0.00990666542, -0.0184593741, 0.0125542516, 0.00938385073, -0.0024129902, -0.000519882073, -0.00174271513, -0.0168239046, 0.017333312, -0.00134809071, -0.0161402225, -0.0271595456, 0.00533538917, 0.0102418028, -0.00440705847, 0.00796286762, -0.0231244899, -0.0107914284, -0.0100474227, 0.0123062497, 0.00335807796, -0.00719875423, -0.00771486573, -0.0245052557, -0.00088392524, 0.00348543026, -0.00681334594, -0.00448749168, -0.000794275955, -0.0197328981, 0.0291167479, -0.000404888036, 0.0161134116, 0.0154297315, -0.00248336908, 0.00829800498, -0.0176952612, -0.0264758654, -0.0196658708, 0.00894817151, -0.0187140796, -0.00196223031, 0.00705799647, -0.00959833898, -0.0165557936, 0.0267037582, -0.00766794663, 0.0423881933, -0.00756070251, -0.00853260141, -0.000506057637, -0.00438024756, 0.0141964257, -0.00202590623, -0.00185498619, -0.0153627042, -0.0122727361, 0.0186872687, 0.0217035059, -0.00359937712, -0.0285537168, 0.01330496, 0.0104026692, -0.00662902044, 0.00354910642, -0.0158050861, 0.000592355558, -0.0112405121, 0.00369991828, 0.0236473046, -0.0141025875, -0.0183923468, -0.00524155097, -0.0139953429, 0.0312080067, -0.00102468301, 0.000683261605, -0.00852589868, 0.0127017125, -0.0219045877, 0.00667258818, 0.0113745676, -0.0100809364, -0.00154582178, -0.00858622324, 0.00827789679, 0.0067798323, 0.0102954246, 0.0110528357, 0.0147728622, -0.0298674554, 0.00590847479, 0.011709705, 0.00949779712, -0.0111734848, 0.003019589, 0.00823097769, -0.015121405, 0.0210466366, -0.000307698152, 0.00831141, 0.00192368939, -0.00160530873, 0.0151348105, -0.000789667771, 0.0138076665, -0.00521809142, 0.012493927, -0.0354441442, -0.00362953939, -0.0100608282, 0.00897498336, 0.0213147458, 0.00527506461, 0.0045511676, -0.0187274851, -0.0161268171, -0.00287212851, 0.0094240671, 0.00813043676, 0.0132915545, 0.0148935113, -0.0107914284, -0.0260737, -0.0236204937, -0.00973239355, -0.00798967853, 0.00904871337, -0.0101010446, 0.0149069168, -0.00210298807, 0.0406454802, -0.0116091641, 0.00394792, 0.00720545696, 0.0242103357, 0.00835162681, -0.00670945318, 0.00666923681, -0.0193307325, -0.00467516854, 0.0199607909, -0.0384201668, -0.0211538803, 0.0218509659, 0.0204031728, 0.00387754128, -0.000852087163, 0.00380045944, -0.00996699, 0.0191162452, 0.0113611622, 0.00409538066, -0.0153761096, 0.0169311482, 0.00221190765, 0.00637096446, 0.00167568761, 0.01345242, -0.015268866, -0.030832652, -0.0049265218, -0.00724567333, 0.0134725282, 0.0156576261, -0.0113008376, 0.00563701335, -0.00296094012, -0.00269953278, 0.00386413559, 0.00784892123, -0.014826484, -0.0264624581, -0.00411548885, -0.0163547117, -0.00585820386, 0.0111533767, -0.020671282, -0.00429646298, -0.00842535775, 0.0055230665, -0.00251353136, 0.00339326751, 0.000751545886, 0.0135596646, -0.000394205505, -0.0173199065, 0.00965196081, 0.0134792309, -0.00981282629, -0.00285537168, 0.0180706158, -0.0260468889, 0.00150728098, -0.0149337277, -0.00138914504, -0.0183253195, -0.00811703131, 0.0117901377, -0.0150677832, 0.0171456356, 0.0245320667, -0.00245153089, -0.0605392419, -0.00215493422, 0.00918276794, 0.0220252387, 0.0210466366, 0.00178963435, 0.0157916807, 0.0140757756, -0.0169177428, -0.00809021946, -0.0303500537, -0.0298406444, 0.011783435, -0.000286333117, -0.0193575434, -0.00800978672, 0.00241634157, 0.00729929516, 0.00877390057, 0.00880071148, 0.00647150539, -0.00290061533, -0.00183822936, 0.00778859621, 0.00212142058, 0.0232585445, 0.0230172444, 0.0273338165, 0.00849908777, 0.0164485499, -0.00419592159, -0.0100541255, 0.0109388884, 0.0236607101, 0.00553312059, -0.0147192404, -0.00667258818, 0.0237143319, 0.0243846066, 0.00114281895, 0.00628382852, 0.01659601, 0.00911574066, 0.0241701175, -0.0039914879, -0.0136937192, -0.00105233188, -0.00632069353, -0.00335640227, 0.0142500475, -0.00908222701, 0.00234596268, -0.000132379326, -0.00121152215, 0.0121051678, -0.012225817, -0.0151750268, -0.00547279557, 0.024746554, -0.01330496, -0.025014665, -0.0163547117, -0.0109388884, 0.00552976923, 0.00666923681, 0.00347537617, -0.00627042307, -0.00872698147, -0.00698426599, 0.000757410831, 0.00691053597, 0.0113008376, -0.0124872243, -0.0231110845, -0.00360943121, 0.00867335871, -0.0127620371, -0.00917606521, 0.00850579049, -0.0228965953, 0.000406773179, -4.139472e-05, -0.0231378954, -0.00686361641, -0.0177086666, -0.00865995325, 0.0313956849, 0.0244516339, 0.02008144, -0.0407795347, -0.0249342322, 0.0131306881, -0.00608944893, 0.0103825601, -0.0289022606, 0.0147728622, -0.000988655724, -0.0272533838, -0.0149337277, -0.0212611239, 0.00446403166, 0.00463830354, -0.0120582478, -0.00310169789, 0.0156978425, -7.86525852e-05, -0.0117566241, -0.0041389484, -0.012125276, 0.00268277596, 0.0109455911, 0.0306985974, -0.0153358933, -0.00224542152, -0.0025503966, -0.00413559703, -0.0140623702, 0.00254034251, 0.010630562, 0.0230574626, -0.0062670717, -0.00216498831, -0.00219179946, 0.0111667821, -0.00981953, -0.0133987982, -0.00437354483, 0.00388424401, -0.00819746405, 0.014384103, 0.00577441975, -0.0048360345, 0.00574090565, -0.0227223244, 0.00997369271, 0.017159041, 0.013968532, -0.0134457173, 0.0217303168, -0.0305913538, -0.0127017125, -0.000855857448, 0.00953131076, -0.00751378341, -0.0258324, -0.0192100834, 0.0199741963, -0.0241299011, -0.0219314, -0.00570068927, -0.0101479646, -0.0391976833, 0.0337282419, 0.0193039216, 0.00171925547, -0.00114030542, -0.00817065313, 0.0145985903, -0.000486368343, -0.00490306178, 0.0224542134, 0.0144377248, 0.012373277, 0.0101010446, 0.0160195734, 0.00136736105, 0.00815724768, -0.00303299469, 0.0015156595, 0.00320391473, -0.0276957657, 0.0242907684, -0.0123263579, -0.0206042547, 0.0146924295, -0.00165725511, 0.00627042307, 0.00438024756, 0.0253766142, 0.00467516854, 0.0147594567, -0.00882082, 0.010530021, -0.020349551, -0.0202825237, 0.0345593803, -0.0150007559, -0.00637766719, 0.000104782841, -0.0254436415, -0.0138478829, -0.00512760412, 0.00474219583, 0.0115354341, -0.00161368714, -0.0288218278, 0.00837843772, 0.00574760837, 0.0203361455, 0.00823097769, -0.00546609284, -0.00649831677, -0.0189285669, 0.00908222701, -0.00610955711, 0.0115555422, -0.00990666542, -0.010261911, 0.023687521, -0.000120544777, -0.000810613914, 0.0232317336, -0.0203763619, 0.0210332312, -0.0237947647, -0.0120180314, 0.0110193221, -0.000384151383, 0.000590679876, -0.0135060418, -0.0259396452, 0.00288218283, 0.00902860519, -0.0231781118, -0.00810362492, 0.018338725, -0.0300283227, -0.00835833, -0.0202557128, 0.0235266536, -0.00242304429, 0.00821757223, -0.00610285439, -0.0147594567, -0.0297065899, -0.00230909744, 0.00917606521, -0.00709821284, -0.0150409723, -0.00319218496, 0.0110327275, -0.00651172223, 0.0143706966, -0.0131172827, -0.011709705, -0.0326289907, -0.00268612732, 0.000341421342, 0.00219682651, -0.0553379096, 0.0111399712, -0.00294418307, -0.00142601016, 0.00339997024, -0.0115890559, -0.0149471341, -0.000787992089, 0.00721215969, 0.0120247342, -0.015121405, -0.00615982758, 0.00717194285, 0.0137406383, -0.0180974267, -0.0113946758, 0.00407527247, 0.0189687833, 0.0333528854, 0.00853260141, 0.00142936152, 0.0204567946, -0.00992677361, 0.0237277374, -0.0317174159, 0.00517787458, -0.00353905233, -0.0143438857, 0.00670945318, -0.00455787033, -0.00895487424, -0.00368651282, -0.000964358216, 0.00530187553, 0.0178293157, -0.0140087483, 0.0163547117, 0.0104361828, -0.00284029054, 0.000847479037, -0.0110528357, 0.0114617031, 0.0198937636, 0.0238751974, 0.000708815875, -0.0079829758, -0.0214622077, -0.00138328015, 0.0261809435, -0.00387083832, 0.00281515531, 0.0154297315, -0.0180706158, -0.0068267514, -0.00314191426, -0.0052013346, 0.0299747, -0.00457797851, -0.0156710315, -0.000269157317, 0.00822427496, -0.0265965145, -0.00794275943, 0.0067798323, -0.00463160081, 0.0132178236, -0.00251353136, 0.00407862384, -0.0144645358, 0.00250515295, 0.0371332392, -0.0241433065, -0.0179365613, -0.0151616214, 0.00838514, 0.0116292723, 0.00535214646, 0.00984634086, 0.00471538492, -0.0335137509, -0.0136065837, 0.000270414079, -0.0115890559, -0.0188615397, 0.000976925832, 0.0091492543, -0.00192536507, 0.0206578765, 0.00774837937, -0.0034117, -0.00270958687, -0.0118973823, 0.028205175, 0.0121520869, 0.00234596268, -0.0140355593, -0.014531563, 0.0028855342, 0.00140003697, -0.0447743721, 0.00198233849, 0.00713842921, 0.00192368939, 0.0371332392, 0.0213147458, 0.0171858519, 0.0231513, 0.0115354341, -0.0135797728, 0.0107378066, -0.00726578152, 0.0185264032, -0.0191162452, -0.00163044408, -0.00221023196, -0.00613971939, -0.015108, -0.0118839769, -8.81830638e-05, 0.0166094154, -0.00854600687, -0.00383732468, 0.0193307325, 0.0106841847, 0.0180035885, 0.0136400973, -0.016006168, 0.0153090823, -0.00120063021, 0.016274279, 0.0135596646, -0.0263954308, -0.0147192404, 0.0248001777, -0.014263453, -0.0106707783, -0.0119040851, 6.02723885e-05, 0.00949779712, -0.0186604578, -0.00421603024, 6.45663386e-05, -0.00356251188, -0.00417916477, 0.00210298807, -0.00258223456, 0.00157263281, 0.00817065313, -0.000460395182, -0.0234730318, -0.0141159929, -0.0103155328, 0.0094240671, 0.00592858298, -4.3096592e-05, 0.0103289383, -0.00100206118, -0.00353570096, -0.0230172444, -0.0102485055, 0.00454111351, 0.0131373908, -0.00766794663, 0.00703118509, -0.000583139306, -0.0208455548, -0.020644471, -0.0176148284, 0.00203931192, -0.00939725619, 0.00317542814, -0.0129027944, -0.00358932279, 0.0047354931, 0.00716524, 0.0339427292, 0.00973239355, 0.00101211527, -0.00769475754, 0.0165155772, -0.00949779712, -0.0141293984, 0.00138914504, -0.00265764049, -0.000495165703, 0.0150409723, 0.0156442188, 0.0158989243, -0.00135395559, 0.00697086053, -0.0161670335, 0.00223369151, -0.00327764498, 0.00372337783, 0.00276153325, -0.00270455983, -0.0200278182, 0.00155755167, 0.0147728622, -0.017306501, 0.00223201583, 0.000117298136, 0.0516648, -0.00534879509, -0.0139953429, -0.0132848518, 0.017427152, 0.0150677832, -0.014973945, 0.0132245263, -0.0249744486, 0.00352564687, -0.00895487424, 0.00999380089, 0.0239422247, 0.0188883506, -0.000437354465, 0.0253363978, 0.00984634086, 0.0194647871, -0.00453105941, 0.0317174159, 0.00210466376, 0.0116694886, -0.00629053125, -0.0179365613, -0.00133300945, 0.0175209902, -0.00640112674, 0.0106238592, -0.000790086691, 0.0186872687, 0.0134390146, 0.00360272848, 0.0184459686, 0.000257636973, 0.0211404748, 0.00566382427, -0.00124922511, 0.00509744184, 0.00331283454, 0.00208287966, -0.0370528065, 0.00382391922, 0.0148532949, -0.00172093115, 0.0173199065, 0.02008144, -0.0339695401, -0.000921628205, 0.0187677015, 0.0111533767, 0.000414942158, -0.00448749168, 0.00662566908, 0.00184493209, -0.0130435526, -0.0300551336, -0.0256849397, 0.0299747, -0.0183119141, -0.0183923468, -0.0207517147, 0.0237411428, 0.00754059432, 0.00519463187, 0.0179767776, -0.0111734848, 0.0064044781, 0.00717864558, 0.00697086053, -0.0177622885, -0.0199205745, 0.00214152876]
27 Dec, 2018
deque crbegin in C++ STL 27 Dec, 2018 deque::crbegin means constant_reverse_beginner and as the name suggests it returns a constant_reverse_iterator pointing to the last element of the deque. What is a constant iterator? A constant iterator is not used for modification. It is only used for accessing the elements. You can use non_const iterators for modifying the elements. Syntax: dequename.crbegin() Return Value: It returns a const_reverse_iterator to the reverse beginning of the sequence. Application: Given a deque with numbers in the increasing order, print them in non increasing order. Input: deque{1, 2, 3, 4, 5, 6}; for (auto reverseit = deque.crbegin(); reverseit != deque.crend(); ++reverseit) cout << ' ' << *reverseit; Output : 6 5 4 3 2 1 Below program illustrates the working of crbegin function: // deque::crbegin and crend #include <deque> #include <iostream> using namespace std; int main() { // Declare a deque with the name numdeque deque<int> numdeque = { 1, 2, 3, 4, 5, 6 }; // Print the deque backwards using crbegin and crend cout << "Printing the numdeque backwards:"; for (auto rit = numdeque.crbegin(); rit != numdeque.crend(); ++rit) cout << ' ' << *rit; return 0; } Output: Printing the numdeque backwards: 6 5 4 3 2 1 Since the returned iterator is constant, if we try to change value, we get compiler error. // deque::crbegin and crend #include <deque> #include <iostream> using namespace std; int main() { // Declare a deque with the name numdeque deque<int> numdeque = { 1, 2, 3, 4, 5, 6 }; // Print the deque backwards using crbegin and crend cout << "Printing the numdeque backwards:"; for (auto rit = numdeque.crbegin(); rit != numdeque.crend(); ++rit) *rit = 10; return 0; } Output: prog.cpp: In function ‘int main()’: prog.cpp:14:8: error: assignment of read-only location ‘rit.std::reverse_iterator<_Iterator>::operator* >()’ *rit = 10; ^ Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL
https://www.geeksforgeeks.org/deque-crbegin-in-c-stl?ref=asr10
PHP
deque crbegin in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0238215476, -0.0129985157, -0.0155547094, 0.0327954181, 0.00625111675, -0.0268400311, -0.020408757, 0.0013970685, -0.0139774829, 0.0218636114, -0.0172271114, 0.00318844337, -0.0113669029, -0.0284716431, -0.00726067694, 0.00947015267, 0.020721484, 0.0333664827, -0.0141814351, -0.00898746774, -0.0115912491, -0.00846399181, 0.0234408379, -0.00235224189, -0.00527554797, 0.0356235467, -0.0328226127, -0.0458211266, -0.0336656123, -0.0368200615, 0.0427210629, 0.029640967, 0.0322787389, -0.031272579, -0.0245149825, 0.0237399675, 0.0274926759, -0.00903505646, -0.0180565156, -0.0145077575, 6.94179e-05, 0.0298585147, 0.00217888295, 0.0184644181, -0.0184780154, 0.0207894668, -0.0102655645, -0.0517765135, -0.00268196361, 0.000446569029, 0.0273703057, 0.0449781269, 0.023522418, 0.00398045545, 0.0158130471, 0.0100276209, 0.00706352387, -0.0145893386, -0.0410894491, -0.0167784188, -0.013535588, -0.0149428546, -0.0279005803, -0.0185324028, 0.011802, 0.00830083061, -0.0411710292, 0.0379893854, 0.0124682412, 0.00783854, -0.0468272902, 0.00641427794, -0.0101499911, 0.02529, -0.0242294502, -0.0308374818, 0.00959932245, 0.00910983793, -0.00316464901, 0.0386964194, -0.0336656123, 0.0279821604, -0.0192258377, 0.000749947038, 0.0437000319, -0.0144533701, 0.00277034263, -0.0360314511, 0.057323996, -0.00423539476, -0.00842320174, 0.013515193, 0.0229921434, -0.0559099317, -0.00282982853, 0.0136647578, -0.00626811245, 0.0382069349, -0.026758451, 0.0242430475, 0.000807308417, 0.0366025157, -0.00242022565, 0.00638028607, -0.00616613682, 0.0386692248, 0.00738304807, -0.0093681775, -0.0374999, 0.017838968, 0.00568345143, 0.0069207577, -0.0128557496, 0.0380981602, -0.0511782542, -0.00553048775, -0.00851837825, -0.000591034768, 0.00359634659, 0.0110677741, -0.0331217423, 0.0190898702, 0.00202252017, 0.0613486432, -0.0280909352, -0.00238793343, -0.00567665277, 0.000200977316, 0.00719949184, 0.0079269195, 0.0118699837, -0.0400832891, -0.0285532251, -0.00768897543, 0.0211429838, 0.0396753848, 0.0203271769, 0.0165472738, -0.00372891524, 0.0315717086, -0.0289883222, -0.0403552242, 0.050552804, 0.0575959347, -0.029369032, 0.00813766941, -0.00608795555, 0.0454676114, -0.0105850883, -0.00670660846, -0.0303208046, 0.0306743216, 0.0446789972, -0.0166968387, 0.018736355, -0.015228386, -0.0113261128, -0.00153813499, 0.0442167073, -0.0128149595, -0.0067643947, 0.0324690938, -0.00160441932, 0.00533333467, -0.0157994516, 0.0438359976, 0.0708663836, -0.0192258377, -0.0667873546, 0.0366569, -0.0199464671, 0.0400289, 0.00322243525, 0.00714510446, 0.00260208244, -0.0122846849, 0.0342638679, -0.063415356, 0.00247971155, 0.00249330839, 0.0107074594, 0.00120756344, 0.0136647578, -0.000561716734, 0.0194569826, 0.00480306, 0.0413885787, -0.0217820313, 0.0127197821, 0.0183284506, -0.000548119948, 0.00787253212, 0.0160577893, -0.00207350799, 0.0396481901, 0.00546590285, 0.00370512088, -0.0301576443, 0.0178253707, 0.0326866433, -0.0212789513, -0.023522418, 0.0126857897, -0.0226522256, 0.0426394828, 0.0117068226, -0.000399192766, -0.0227745958, -0.00823284686, -0.00646866485, 0.022978548, -0.0118563864, 0.0210478064, 0.000959422323, 0.00847758818, -0.00704312883, -0.0548221916, -0.0135015966, -0.0241886601, -0.0301304497, -0.00311706029, -0.0351068713, 0.0336112231, -0.0416877083, -0.0412254184, -0.0146165313, 0.00382409268, 0.0228153858, -0.031816449, -0.010632677, 0.0186955631, 0.0158946291, 0.00384108862, -0.0260786116, -0.00219587889, 0.0139910802, -0.0556651913, 0.00148034876, -0.0111289592, 0.0306743216, 0.019783305, 0.0544414818, -0.0604784489, -0.00147694955, 0.0359770618, 0.0711383224, 0.0186411776, -0.0194161925, -0.0294506121, -0.0324147083, -0.0116048465, -0.00105459976, 0.0163025316, -0.0116320401, -0.0152419833, 0.0100140236, 0.0136035718, -0.0229513533, -0.0189403053, 0.00733545935, 0.0313813537, 0.0369832255, -0.0256571118, -0.00342638697, 0.0176758058, -0.0144533701, 0.0185188055, 0.0024253244, -0.0171319339, -0.0185188055, 0.051558964, -0.0238351449, 0.0329857729, -0.035786707, 0.021537289, 0.017254306, 0.0220403709, 0.00614914112, 0.0203407742, -0.00694115274, 0.00720629, 0.00241342722, 0.0256027244, 0.00707712071, 0.0101839835, 0.00462970138, -0.0230737254, -0.000754196, 0.0210206117, -0.00028447, -0.0273159184, -0.0167376287, -0.0217004512, 0.0039498629, 0.0382069349, 0.0235088225, -0.0277238209, -0.0500633195, -0.00412662094, -0.00339919352, 0.0326322578, -0.013746338, 0.00736265304, -0.0333120972, -0.00841640308, -0.0316532888, 0.00430337898, -0.00336690107, -0.00514298, 0.00132058666, -0.0118971765, -0.0621644482, 0.00216018734, 0.00189505029, -0.0143445963, -0.0227202084, 0.0472623855, -0.00537072541, -0.0426394828, 0.0071654995, -0.0010715957, -0.0383700952, -0.00196643337, -0.0106054833, 0.0244062096, -0.0405999646, 0.0211565793, 0.0280637406, -0.00267856452, -0.0241886601, -0.037309546, -0.00164605945, -0.021850016, -0.00247121369, -0.0494378693, -0.00195963494, -0.00562906452, -0.002726153, 0.0349980965, 0.0034110907, -0.0189539026, -0.00600637496, -0.00179307454, 0.0032734233, 0.00777735468, -0.0203271769, 0.00402804418, -0.00475547137, 0.0202999823, 0.00254769553, 0.00092628022, -0.0157994516, -0.0246237572, -0.00398045545, 0.0466913208, -0.0193618052, -0.0151332095, -0.0287979674, 0.00895347539, 0.03747271, 0.00542171346, 0.0160985794, -0.0150924185, 0.0273431111, 0.00756660476, -0.0469632559, -0.0300760642, 0.00108349288, 0.0258882567, 0.0124478461, 0.00475887069, 0.00441895146, 0.0110813705, 0.00844359677, 0.0181652904, 0.00633609667, 0.00490843551, 0.00836201571, -0.00760059664, 0.0173358861, -0.00314425398, 0.0260378215, 0.00174888503, 0.00290461071, 0.0100616124, -0.0149836447, -0.0214013215, 0.0445974171, 0.00249160873, -0.0353788063, -0.00201912085, -0.0421228036, -0.0248413049, -0.0174718536, -0.0105646932, 0.00418780651, 0.029369032, -0.0141678378, -0.00633949554, -0.0423403531, 0.0147117088, 0.00369832246, 0.0293146446, -0.0440263525, -0.0200824346, 0.016397709, -0.0065026572, -0.0287979674, 0.0510150939, 0.0262689665, 0.0133520318, -0.0149020636, 0.00265986891, 0.0104083298, 0.0237127729, 0.0245693699, -0.0126110073, 0.0352156423, 0.0080085, -0.00110728724, -0.030728709, -0.0413885787, -0.0352700315, 0.0205175318, 0.0499273539, 0.0347261615, 0.00185256044, 0.00974888634, 0.0435368679, 0.00570044713, -0.0346989669, 0.036493741, 0.00916422531, 0.0243654177, 0.0171183385, -0.0537616424, 0.0314901285, -0.0170503538, -0.0228017885, 0.0315717086, 0.0357051268, 0.0137055479, 0.0311366115, 0.00581941893, 0.0110065881, 0.0222035311, -0.0451956764, -0.00513958046, 0.0212245639, 0.0156906769, -0.0297225472, -0.00137837289, 0.033801578, -0.0148204835, 0.0289067402, -0.0240662899, -0.000554918312, -0.0224618707, 0.074184, 0.00424899161, -0.0231281128, 0.00853197556, -0.0286076125, -0.00479966123, 0.0439991578, -0.00904185418, 0.0265952889, -0.00660803216, -0.0173630808, -0.014140645, -0.0417964831, -0.0201232247, -0.0315717086, 0.0108910156, 0.0233864505, -0.00388187892, -0.0105510959, -0.000239005793, -0.0466913208, -0.0222171284, 0.0423131585, -0.0460386761, -0.0275742561, -0.0149972411, 0.00450393138, -0.00251370342, -0.0104083298, -0.0192258377, 0.00251200399, 0.00931379, -0.0279277731, 0.00547270151, 0.00804249197, -0.0315173231, 0.0422859676, 0.0220947564, -0.0471808054, 0.0351340622, 0.0142902089, -0.00267006643, 0.0427210629, 0.00240832847, -0.00160781853, 0.0381797403, -0.0140726604, -0.0265137088, -0.03747271, 0.00592819322, -0.0279005803, 0.00167835178, -0.000384958665, 0.0242974348, -0.0227202084, 0.040273644, 0.00770937046, -0.0325778686, 0.0256027244, 0.00881070923, -0.0572696105, 0.0113601042, 0.0310822241, -0.00643807231, 0.00978967734, 0.00968090259, 0.00497302, 0.0314901285, 0.0108978143, -0.00825324189, 0.0248685, -0.00881070923, 0.00117102219, 0.0112037417, 0.000891438453, 0.0113940965, 0.00653324975, -0.00322923367, 9.08222e-05, -0.006621629, -0.0424491279, 0.00384448771, 0.00218058261, 0.0465825461, -0.0181924831, 0.00934098382, -0.0337471925, -0.00138347177, 0.00842999946, -0.000227745957, 0.0114620803, 0.0169279836, 0.00164435979, 0.00591119751, -0.0121895075, -0.00997323357, -0.0162345469, 0.0304839667, -0.00961291883, -0.00420480222, -0.00918462, -0.00470108446, 0.00550669339, 0.0387236103, 0.0224482734, -0.000695984869, -0.0187907405, -0.0180973057, 0.0325778686, 0.0297225472, -0.0278733857, 0.0225162581, -0.0101567898, -0.0300216768, 0.0351340622, -0.00933418516, 0.0189403053, 0.00385128614, 0.0034331854, -0.00134863, -0.00363713689, 0.032251548, -0.0169279836, -0.0230329353, -0.0214557089, -0.0293962248, 0.00155173184, 0.0102927573, -0.00591119751, -0.00594858825, 0.0158130471, -0.00881070923, -0.00210749987, -0.012645, 0.0177845806, 0.02410708, 0.00339749386, 0.00609475374, -0.00478266506, 0.0198920798, -0.0363033861, -0.0216460638, 0.00995963626, -0.00378670148, 0.017798176, -0.0354059972, -0.00642107613, -0.0209662244, 0.0215916764, -0.0145349512, -0.00723348372, -0.0128285559, -0.0474255458, 0.0345901921, 0.00489143934, -0.0301032569, -0.00359974592, 0.0158810318, 0.0052789473, -0.00232164911, -0.0488396101, 0.0207486767, -0.00946335401, -0.0244062096, -0.0101635884, 0.0271527562, 0.0279005803, -0.00272275391, 0.00370172155, -0.0348349325, 3.94094e-05, -0.0208030641, -0.00496622175, -0.00709751574, 0.0283084828, -0.0171999186, -0.00961291883, 0.00492883055, -0.0343726426, 0.0192122404, 0.00540131843, 0.010319951, 0.00388867734, 0.00915062893, 0.0392402895, 0.0158946291, -0.00771616912, 0.00281453226, 0.0185052082, 0.0317620635, 0.017485451, -0.00881750789, -0.0178661607, 0.00818525814, -0.0184508227, -0.00198682863, -0.0073218625, -0.0106734671, 0.0158266444, 0.00369492313, 0.00122116029, 0.00573443947, -0.0179341435, -0.0197289195, 0.0093681775, 0.0104491208, 0.00955173373, -0.0278461929, 0.0107822418, 0.00927979778, -0.0125702173, 0.0131208869, -0.0260650143, -0.0358410962, 0.0361674167, -0.0243110321, -0.000984066515, -0.00861355569, -0.00989845116, -0.00466709258, -0.0123594673, 0.00466369325, -0.0122099025, -0.0164249018, 0.0104015321, -0.0236447901, -0.0186819676, -0.00834162068, -0.000149564512, -0.010612282, 0.0279549658, -0.0143038062, 0.0151196122, -0.00847758818, 0.0476159, 0.0204631444, 0.00104100304, -0.0284988377, 0.0102723623, -0.0338559672, 0.00310516311, -0.000146590217, -0.00634289486, -0.034780547, -0.00249840715, -0.00796771, -0.00651285471, 0.0534081273, -0.00309496559, -0.0277510155, 0.0122438949, 0.0234272406, 0.0114280879, -0.0195249673, -0.00452092709, -0.00984406378, 0.0203135796, 0.0122370962, 0.00170554535, -6.9895912e-05, 0.0325506777, -0.0468816757, -0.0152963707, 0.0279277731, -0.00747142732, -0.0251948219, 0.0333392881, -0.00821925, -0.0153099671, -0.0212517567, -0.0157586616, 0.00137922273, -0.0421771929, 0.0188995153, 0.00521436287, -0.00159422169, -0.0359770618, 0.00240662904, 0.015187596, -0.00204971363, 0.00757340295, 0.0134472093, -0.0131276846, 0.0116116451, -0.0133180395, 0.00191884465, 0.0270439833, -0.0391587093, 0.0223802887, 0.0194433872, -0.0074850237, 0.0177029986, -0.00114892737, -0.000596558442, 0.0034331854, -0.0230601281, -0.0173902735, -0.00900106411, 0.00374591118, -0.00842999946, 0.0190490801, 0.0117136203, 0.025861064, 0.0125634186, 0.0250180643, -0.00402124599, -0.00227406039, 0.0187771451, 0.00558487466, 0.0224754661, 0.0311366115, 0.00546250399, -0.0245149825, -0.0135559831, -0.00561546767, -0.0208710469, -0.026132999, -0.0174990483, -0.0116592338, 0.01230508, 0.0426122881, -0.0226930156, -0.0111153629, 0.0210614018, 0.0163161289, -0.0146573223, -0.0105986847, -0.00725387875, 0.041279804, 0.0213605314, 0.041551739, -0.0380437709, -0.0121963061, -0.0115844514, 0.0219044015, 0.00717909634, 0.0221763384, -0.020680692, -0.016356919, -0.00325642736, -0.0486492552, -0.036221806, 0.037037611, -0.0136919515, 0.00327852205, -0.00123815623, 0.00891948398, 0.00709071755, 0.00690716086, 0.00108179334, 0.0140046766, 0.0189675, 0.0256979018, 0.00210240111, -0.0169143863, -0.00963331386, 0.0247461274, -0.00733545935, 0.0050783949, -0.0187771451, 0.0241886601, -0.00048693447, -0.0082872333, -0.0181652904, 0.000428723259, -0.0239439178, -0.0400289, 0.0185731929, 0.0287979674, 0.0156090958, 0.00288081635, 0.0115980478, 0.0078045479, 0.0397841595, 0.00500361249, -0.00237263693, 0.013182072, 0.0343726426, -0.00182876608, 0.00676779402, 0.00297089503, 0.0157042742, -0.00268026395, -0.00133248384, -0.0258474667, -0.0248685, 0.00131038902, -0.0185867902, -0.0207350794, 0.0213469341, -0.0342910625, -0.00575823383, 2.76184473e-05, -0.0061015524, -0.0117136203, 0.017254306, 0.0157586616, 0.00941576529, -0.0276966281, -0.0137123466, -0.0226250309, 0.00806288701, 0.0375270955, 0.0263505466, -0.0122574912, 0.0103335483, 0.00779774971, 0.0094293626, 0.0108434269, -0.0156362895, 0.0443254821, -0.024379015, 0.0117884027, 0.0273567084, -0.0268128384, -0.00679158838, 0.00289441319, -0.0382069349, 0.0250588544, 0.0348621272, -0.00214659073, -0.00686977, 0.0455763862, -0.0190490801, -0.0261873864, -0.0224074833, 0.00609815307, 0.00138432148, -0.000764393597, 0.000898236874, -0.0205447245, -0.0171591286, 0.0325506777, 0.0214693062, -0.0151468059, -0.0460114814, -0.00625111675, 0.0131344832, 0.00998003222, -0.000828128483, -0.00762779, 0.020680692, -0.00904185418, 0.0129237333, 0.00866794307, 0.00819885451, 0.0235496126, -0.000672615424, 0.0377718359, 0.00421499973, 0.000921181403, 0.000664967229, -0.00405863672, -0.0180565156, -0.0151604023, -0.0215236936, 0.0310278367, -0.024419805, 0.00828043558, -0.00309496559, 0.0406815484, 0.0145621449, 0.00338559668, 0.0207894668, -0.00411642343, -0.00104695163, 0.000712555891, -0.0319252238, -0.0341279022, 0.00619672937, -0.0132364593, 0.0111425556, -0.0272071436, -0.0144261764, 0.0107346531, 0.000337157486, -0.00467729, -0.00767537858, -0.0232640803, -0.0239983052, -0.0238215476, -0.0201640148, 0.0242022574, -0.0258338694, -0.0116864266, -0.00100616121, -0.0308102891, -0.00794051588, -0.035786707, 0.00292330631, -0.0128761446, -0.00947015267, -0.00111748488, -0.0514501929, -0.00542171346, -0.0482141599, -0.00831442699, -0.00654004794, -0.0145077575, -0.00381389493, -0.000272785284, 0.0226250309, -0.0127469758, -0.00986446, 0.0267720465, -0.020367967, 0.0405183844, -0.0298313219, -0.00462630205, 0.0105307009, -0.0150652248, -0.0082260482, 0.0152147897, -0.026132999, -0.00121691125, 0.0345901921, 0.00430337898, 0.032088384, -0.026636079, -0.039621, 0.0126110073, 0.0248549022, 0.0235360153, 0.0182060804, -0.0164656937, 0.0234272406, 0.0456307717, 0.00293010473, 0.00277204229, -0.009191419, -0.00382409268, -0.00661483034, -0.0211429838, -0.00763458852, -0.00724708056, -0.00861355569, 0.0407359339, 0.0634697378, -0.0073218625, 0.00823964458, -0.000263012596, 0.00185935874, -0.0182604678, 0.0288795475, -0.00623412058, 0.0161121767, -0.018654773, 0.0116320401, -0.0136783542, 0.045059707, -0.00914383, 0.0180021282, -0.0106190806, -0.00534353219, 0.0258882567, -0.0183964353, 0.0171727259, 0.0111493543, -0.0109114107, -0.000590609852, 0.0189946927, 0.023291273, -0.00372551591, 0.00746462867, -0.0244741924, 0.00907584652, -0.00164435979, 0.00400764914, 0.00273295143, -0.0130936932, 0.00657064095, -0.0326322578, 0.00738984626, -0.0282812901, -0.00517697167, 0.0404368043, -0.00958572514, -0.00213469355, 0.00961291883, -0.0114280879, 0.021809224, 0.0220403709, 0.0249364823, 0.0261058062, -0.011489274, 0.0164656937, -0.0056358627, -0.00789972581, 0.00938177388, -0.0237807576, -0.00519396737, -0.0147525, 0.0170095637, 0.0167376287, -0.022393886, 0.00331421359, 0.0255619343, -0.00275674579, 0.019864887, -0.00813087076, -0.00376970554, 0.0118631851, -0.0074238386, -0.0392402895, 0.000703633064, -0.00106564711, -0.0203815643, 0.0256435145, -0.00380029832, -0.0256707091, -0.000106065454, -0.00297089503, 0.027302321, -0.00486084679, 0.0105850883, -0.0149836447, -0.0269352086, 0.0242430475, -0.0122235, -0.0112105403, 0.0157042742, -0.0193482097, -0.0334752575, -0.00517017301, 0.01230508, -0.00429997966, 0.000581262051, -0.0168599989, 0.007587, 0.0209798217, -0.0148612736, -0.033964742, -0.0180973057, 0.0130257094, 0.0182604678, -0.0073218625, 0.0117476126, 8.89632647e-05, 0.0304567721, 0.0222851112, -0.0188587252, -0.00192734262, -0.0132296607, 0.00743063679, -0.00755980611, -0.0240798853, 0.00509879, 0.0155547094, -0.00807648338, 0.00743063679, -0.0254667569, 0.0098304674, -0.000533673388, -0.00907584652, 0.014099854, 0.0234136451, -0.0269488059, -0.0204903372, 0.000654769654, -0.00263437489, 0.000267898926, 0.0111425556, 0.0280637406, 0.00359974592, 0.0196473375, -0.0132296607, -0.0352156423, -0.0131888706, 0.00855237059, 0.0244741924, -0.00636668922, 0.0157042742, -0.0086883381, 0.025779482, 0.00887869298, 0.0129237333, 0.0359770618, -0.00477926573, 0.0214149188, -0.00283832639, 0.00458211266, 0.0168056116, -0.00324453018, -0.0157178696, -0.00580582255, -0.00547270151, -0.0359498709, -0.00378670148, 0.000595283753, 0.0134879993, -0.00513958046, 0.00604716502, 0.0165064838, 0.0121011287, 0.016669644, 0.0202455968, -0.017757386, 0.0140182739, -0.00218568137, -0.0137259429, 0.010612282, 0.0070023383, -0.00169704726, 0.00612534676, -0.00235394132, -0.0125566209, 0.0100344187, 0.00767537858, 0.0137123466, -0.0254395641, 0.00280773384, 0.000667091692, -0.00817845948, -0.0106054833, -0.00873592682, 0.0121283224, 0.00422519725, -0.0334752575, 0.0167376287, 0.00931379, 0.0173630808, -0.00885829795, 0.0107210558, 0.00985766109, 0.0116116451, -0.0326050632, 0.0185324028, 0.00527214911, 0.016397709, 0.003232633, 0.0356235467, -0.0431833528, 0.0159490146, 0.00124835374, 0.0372007713, -0.0082260482, 0.011530064, -0.00983726606, 0.00974208862, -0.0230329353, 0.00228765723, 0.0112853218, -0.0191578548, 0.0110405805, -0.0101499911, -0.0136919515, 0.0120671364, 0.00618993118, 0.0097692823, 0.00951774139, 0.018926708, 0.0204495471, -0.00589420134, -0.0283356756, -0.00744423363, -0.00667261658, 0.0112377331, -0.0175126437, -0.00233524595, -0.0161665641, 0.0101363948, 0.000527299882, 0.00610495126, -0.0231553055, 0.0174310636, -0.00990525, 0.00974888634, 0.01900829, 0.01230508, -0.00455152, 0.0165608712, 0.0150652248, -0.0172950961, 0.0117952013, 0.014099854, -0.00513958046, 0.00894667674, -0.0250996444, 0.00311706029, -0.00200212491, -0.00157042732, 0.0185188055, -0.0185324028, -0.00551349157, 0.0208846442, -0.00318504428, 0.00513618113, 0.00398045545, -0.00627151178, -0.00900786277, -0.0191306602, 0.00211259862, 0.0244062096, -0.00865434669, -0.0211565793, 0.00359634659, 0.020408757, -0.0122235, -0.0538160317, -0.00654684659, 0.0140318703, 0.005901, 0.016356919, 0.00436116522, 0.00890588667, 0.0115368627, -0.0424763225, -0.0136307655, -0.00863395166, 0.0211565793, 0.0153779509, 0.0175126437, -0.018029321, 0.0280093532, 0.0121215237, -0.00541491527, 0.0157178696, -0.00015636289, 0.013243258, -0.013182072, -0.00794731453, -0.0105035072, 0.0188451279, -0.0352156423, -0.0082260482, 0.0117680077, -0.00515317731, -0.033801578, 0.013494798, -0.0174038708, 0.0135287894, 0.0156906769, -0.0183012579, 0.0159490146, 0.0169959664, 0.00654004794, -0.010048016, 0.00722668506, -0.0174718536, -0.0107822418, 0.011740814, -0.02001445, 0.0140726604, 0.00683577778, 0.00399745163, -0.00573443947, -0.00998683, 0.0239439178, -0.00554748345, -0.0240526926, -0.00508179422, 0.0259290468, 0.0116184428, 0.00039388155, -0.0029318044, 0.00665901974, 0.0243654177, 0.0039498629, -0.0367384814, 0.0290427078, 0.00934778154, -0.020232, -0.0104151284, -0.009191419, 0.0039940523, 0.0129441284, 0.0265409015, -0.011761209, -0.00578542706, -0.00633609667, -0.00779095152, 0.00525515294, 0.0215780791, -0.0123118786, 0.00119481643, 0.0105375, -0.0219859835, -0.0227338057, 0.0397841595, 0.000221797367, -0.0153099671, -0.00299638906, 0.0105035072, 0.0156226931, -0.000223921859, 0.00623072172, -0.0136171691, -0.0401104838, 0.0215508863, 0.00393286673, -0.0334208682, 0.00206501, -6.59124853e-05, -0.00203781645, -0.0047962619, 0.00152878719, -0.00633269735, -0.0153643545, -0.037092, -0.0208030641, -0.0125634186, 0.00234374381, 0.0131344832, -0.0101024024, -0.0377990305, -0.0146029349, 0.00265816925, -0.0319524184, -0.0204495471, 0.0247461274, 0.0241614673, 0.0174718536, 0.00496622175, -0.00113872974, -0.0283356756, -0.00813087076, 0.0124138547, 0.00755980611, -0.006903762, 0.00885829795, 0.0239031278, -0.00445634266, 0.020721484, -0.00893987902, -0.0220267735, -0.000327809714, 0.0150516285, 0.0195657574, 0.00230975193, 0.0216052737, 0.0068833665, 0.00849798322, 0.00433737086, 0.0212245639, 0.0183148533, 0.00759379799, -0.0105510959, 0.0183556452, 0.0118835801, -0.0171863213, 0.0127673708, 0.0370104164, 0.0225162581, -0.00446993951, -0.00888549164, -0.0204903372, 0.00488464115, -0.00881070923, -0.0135423867, -0.00860675797, -0.0122506935, -0.0200280473, 0.011530064, 0.0285804179, 0.00376630621, 0.0316804834, 0.0167920161, -0.000624601787, -0.00890588667, 0.0343182571, -0.0130461045, -0.014956451, 0.0258474667, 0.0065842378, -0.0147117088, -0.0182604678, 0.0111017656, -0.0235088225, 0.0133792255, 0.020408757, 0.0250588544, -0.0120195476, 0.0133928219, -0.000509029196, 0.045222871, 0.00684597576, 0.0343998373, 0.026676869, -0.00228085881, -0.00891268533, 0.0225978382, -0.0113940965, 0.0102111772, 0.00162651401, 0.00320543931, -0.0220947564, 0.0155683057, -0.00282812887, 0.0205039345, 0.00582961692, 0.00968090259, -0.00568345143, -0.000314850302, -0.0218636114, 0.00338219735, 0.00445294334, 0.0376358703, -0.00970809627, -0.00530954031, 0.00571064511, -0.0293418374, 0.0160849839, -0.00223327, 0.0126721933, 0.00399065297, -9.33715928e-05, 0.0172271114, 0.0249228869, 0.0461474508, 0.00381389493, 0.00432717334, -0.0134812007, -0.00104270258, 0.0265137088, 0.00170979428, -0.00354195945, -0.0213333387, -0.0279821604, 0.00856596697, -0.0161801614, -0.00964011252, -0.00787253212, -0.0199872572, -0.0170367565, 0.0236447901, -0.00962651614, 0.00373571366, -0.00512938295, 0.0245829672, 0.0116524352, -0.00987805612, 0.0214149188, 0.0261465963, 0.0104083298, 0.0208166596, 0.00264797173, -0.032523483, -0.0268944185, -0.0306199342, -0.0171183385, -0.0266088862, 0.0233864505, 0.0115368627, 0.00287061883, 0.0244334023, 0.00138687086, -0.0366297066, 0.0517765135, -0.00500701182, 0.00726747559, 0.0136511605, -0.00468748761, 0.000924580614, 0.0150108384, 0.023794353, -0.0043135765, 0.0149836447, -0.0308918692, 0.0184644181, 0.00738304807, 0.0041130241, -0.0208438542, -0.0228153858, -0.00802209601, -0.0331489332, 0.00644487049, -0.0184508227, 0.00237943535, -0.0346989669, 0.00517357234, -0.0137531366, -0.00225026603, -0.0178253707, 0.0161801614, 0.0285532251, 0.00357595156, 0.0169143863, -0.0150924185, 0.0177845806, -0.00466369325, -0.0148204835, 0.00862035435, 0.00336010265, -0.0248820949, -0.0133656282, 0.000606331101, 0.00332781044, 0.0111425556, -0.00216698577, -0.00499341497, -0.00492203189, -0.00634969352, -0.00133588305, -0.0171047412, -0.00918462, 0.00541831413, 0.0184916127, 0.0322787389, 0.00229275599, 0.00520756422, -0.0159898065, -0.015269177, 0.0161121767, 0.00895347539, 0.0187227577, 0.00849118549, -0.0104831122, -0.0051599755, 0.00831442699, -0.0101703871, 0.00553048775, 0.0262689665, 0.00311366119, 0.0054353103, 0.00992564484, 0.0121147251, 0.0113329105, 0.00198342931, 0.0056800521, 0.00778415287, 0.026758451, 0.0332305133, 0.0280909352, -0.00228935666, 0.00176248176, -0.0121963061, 0.0225706436, -0.031272579, 0.00657404028, 0.000514977786, 0.00426598778, -0.0110405805, -0.00220607664, -0.0131684756, 0.0183556452, -0.00166135572, -0.01230508, 0.0245285798, -0.0155683057, -0.000478011585, -0.0118563864, -0.000988315442, -0.0256027244, 0.0124750398, -0.0110473782, 0.00958572514, 0.00919821765, 0.0129917171, 0.0199328698, -0.0250724498, -0.0213061441, 0.00843679812, 0.00582621759, -0.00602677, 0.00391587103, 0.00939537, -0.00678479, 0.00468408875, -0.0292602573, 0.00180497172, -0.0063191005, 0.021768434, 0.00701593515, 0.0133452332, 0.00331591326, 0.0135083944, 0.0139230965, -0.00495942309, -0.0220539663, 0.0106734671, 0.0263641439, -0.00589760067, -0.00724028191, 0.00189335074, 0.0134744029, -0.00228085881, -0.00336520141, 0.0110201854, -0.00264797173, -0.0116388379, 0.0272343382, 0.0189403053, 0.0130664995, 0.00138857053, -0.00435096771, -0.0248277094, 0.0125634186, 0.00253579835, -0.0125634186, 0.00554408459, -0.0077229673, 0.00649925787, 0.0221355483, -0.000338644633, -0.0136035718, -0.0257930793, 0.00166135572, -0.0142766126, 0.0164385, -0.000693435431, 0.0090894429, -0.0141542414, 0.0170095637, 0.00873592682, -0.00735585438, 0.00724028191, 0.00317824585, 0.00224176794, 0.00243552215, 0.000113979208, -0.012910137, 0.018382838, 0.00927979778, 0.0242294502, 0.0211565793, -0.01487487, -0.0169143863, -0.00564266089, 0.00330571551, 0.000483960175, 0.00442235079, -0.0193482097, -0.0161529668, -0.0108366283, -0.00224856636, 0.00918462, 0.0042319959, 0.000939027173, -0.00406543538, 0.00359974592, 0.00162056542, -0.00214149174, -0.0114620803, -0.0311366115, -0.0180701129, 0.00399065297, 0.0138483141, -0.0186819676, 0.0251132417, -0.037935, 0.0201776121, 0.0215644836, 0.0339375474, -0.016125774, -0.0616205782, -0.00294030225, 0.00524155609, 0.00482005626, -0.00168769958, 0.012950927, -0.0240390953, -0.00311196153, -0.0128149595, 0.0183692407, 0.0223259032, -0.0137735317, -0.0183692407, -0.00639048358, -0.0223394986, -0.013827919, -0.011802, -0.00176928018, -0.0133588305, -0.00941576529, -0.00201062299, -0.00505460054, -0.00492203189, -0.00142851099, 0.00163671165, 0.00600637496, -0.00664882222, 0.00165455742, 0.0146165313, -0.0227066111, 0.0164792892, -0.00347227603, 0.00354875787, -0.00334990514, 0.00938177388, 0.0200960319, 0.0313269682, -0.0104559185, 0.00534013286, -0.00148629735, 0.0111901443, 0.00266836677, 0.0168599989, -0.0165608712, -0.00974208862, 0.000506904733, -0.0128217572, 0.0101771848, -0.00707032252, -8.66794289e-05, -0.0182876606, 0.0118699837, -0.0143445963, -0.0167240314, 0.00804929, 0.015269177, 0.0205583218, -0.000512853323, 0.00817845948, -0.0158266444, -0.0066012335, 0.0105307009, 0.00811727345, -0.00604036683, 0.0104151284, -0.000901636, -0.0059621851, -0.00457191514, 0.0207486767, 0.0222851112, 0.00267856452, 0.00174718536, 0.0186275803, 0.0337199979, 0.00532653602, 0.00143106037, -0.000219885318, -0.00633949554, -0.0113193141, 0.0119651612, -0.0203543697, -0.00814446714, 0.00628510863, 0.0147117088, -0.014330999, 0.00183726405, 0.0171591286, 0.00783174206, 0.00844359677, -0.00101550901, -0.00719949184, -0.00753941108, 0.0205583218, 0.00679498771, 0.000789887563, 0.018736355, 0.00608455623, 0.0197153222, -0.00738304807, -0.00887869298, 0.0108162332, -0.0012721481, 0.0147389024, 0.00873592682, 0.00889229, -0.0209526289, -0.0158946291, 0.0135287894, -0.0207758695, -0.0242294502, -0.00358614908, 0.00709071755, 0.0129577257, -0.00212109671, -0.0156498868, 0.00603016932, -0.0252628047, 0.0177709833, 0.0203815643, -0.0116456365, -0.0247053374, 0.0122506935, -0.0172271114, 0.00763458852, -0.012386661, 0.0107278544, 0.00481665693, 0.00816486217, -0.00180157251, -1.52034236e-05, -0.0013562782, 0.000600382511, -0.0299400948, -0.00296749594, 0.0117476126, -0.0122031048, -0.0350796767, 0.0124750398, 0.0103879347, -0.00688676583, -0.0237535629, -0.00916422531, 0.0236175954, -0.00192224386, 0.00177267939, 2.10789835e-06, 0.0248005148, 0.00649245922, 0.0148612736, -0.00819885451, 0.0123798624, -0.0208710469, 0.0259970315, 0.019864887, 0.0129373297, 0.0133724269, -0.00749862054, 0.00522456039, -0.00303887902, 0.00577522954, -0.00462290319, 0.0237807576, 0.0118087977, 0.011217338, -0.0381253548, -0.00265477016, 0.0101227984, 0.0246645473, -0.00918462, -0.00471128197, 0.0197017249, -0.00513278227, -0.00449373387, -8.90694864e-05, 0.00483705243, 0.0110745719, -0.0073218625, -0.0139230965, 0.0110337818, -0.00655364478, 0.0268128384, -0.00576843135, 0.000728277199, 0.00904865284, -0.012910137, 0.000624176871, 0.025507547, 0.0222715158, 0.000605056412, 0.0157858543, -0.00520756422, -0.00408583041, 0.0103267496, -0.018029321, -0.0011149355, 0.0171727259, -0.0207758695, -0.00830083061, -0.0174446609, -0.00231994945, 0.0212109666, 0.000821330119, 0.00584321329, -0.00271765515, -0.0153507572, -0.00394646358, 0.00117867033, -0.0148204835, 0.000743998447, -0.0186683703, -0.0337199979, 0.0150924185, 0.00218568137, 0.0107278544, 0.00928659644, 0.00690716086, 0.034508612, -0.00664202403, 0.0106870644, 0.00596558442, 0.0118563864, 0.00226896163, -0.0168464035, 0.00313575589, 0.00562906452, 0.00537412474, -0.0136103705, 0.00523815723, -0.00711111259, -0.00323093333, -0.00720629, 0.0294234175, 0.0347533524, -0.0115708541, 0.0140182739, 0.0037119193, 0.00808328204, -0.00298619131, -0.00712470943, 0.00944295898, 0.0117680077, 0.00122540921, 0.0063191005, -0.0131616769, -0.00749862054, -0.0197561122, -0.000532823557, -0.0113533055, 0.00703633, 0.0369832255, 0.0229649507, -0.000758445, 0.0065196529, 0.0138007253, -0.0105307009, 0.00137412397, 0.0148340799, -0.0117680077, 0.000155406873, 0.0114960717, -0.0119447652, -0.00124580436, 0.009273, -0.0183420479, -0.0246101599, -0.00310686277, -0.000490758568, 0.0125702173, 0.0219587889, 0.00440875394, 0.00232674787, 0.000987465726, -0.0271935482, -0.00250520557, 0.0113601042, -0.0145213539, -0.00334990514, 0.00549309654, -0.00119481643, -0.0199872572, -0.00225366512, -0.00743743498, 0.0236311927, 0.0257386919, -0.0120127499, -0.0140182739, 0.0107822418, -0.00876991916, -0.0105307009, 0.0234816279, 0.0115232654, -0.00365073374, 0.0137531366, 0.010381137, 0.00290970947, 0.00325982645, -0.032523483, -0.0204359517, -0.00266156835, 0.005058, 0.00555768143, -0.0145349512, 0.0102859596, 0.0107142581, -0.00471808063, -0.0149428546, 0.0113329105, -0.0127129834, -0.0168056116, -0.0197017249, -0.0284444503, -0.0168599989, 0.00878351554, 0.000548119948, 0.018736355, 0.0138755077, 0.0140726604, 0.010116, -0.00758020114, -0.0041946047, -0.0366297066, -0.0134608056, 0.0216460638, 0.0110949669, 0.0289067402, 0.0050783949, 0.00441555213, 0.0140454676, 0.00518377, -0.00167410274, -0.00307966932, -0.00473507633, 0.0193074178, -0.0120195476, -0.00622052373, -0.0378806107, -0.0128965396, 0.0118291928, -0.000975568488, 0.00606756, -0.0117340153, 0.00381389493, -0.0227338057, -0.0270575788, 0.00893987902, -0.0311366115, 0.0168464035, 0.00526195159, 0.0170639511, -0.0250452571, 4.23040256e-05, 0.00595538691, 0.0134744029, 0.0113737015, -0.00488124182, -0.0120263463, -0.0121079274, -0.00972169358, 0.0128829433, 0.0191034675, -0.0117272176, 0.0215780791, 0.0108094355, 0.00111578521, 0.00352156442, -0.0116320401, -0.00218568137, -0.0250316598, 0.00154918234, 0.00663182652, -0.0158946291, -0.00875632185, -0.00338729634, 0.00738984626, -0.000108880413, 0.00124240515, 0.00322243525, -0.0191986449, -0.00962651614, -0.0140318703, -0.0183284506, -0.00120076502, -0.00326662487, -0.0102519672, -0.0033736995, 0.000145209298, 0.0036337378, -0.0184916127, -0.0118903788, -0.000376035779, 0.0100548137, 0.021850016, -0.0263505466, 0.00280603417, 0.0239983052, 0.0170775484, 0.0210342091, 0.00270745764, -0.0124886362, 0.0194841772, 0.0148884673, -0.00428298349, -0.00562566519, 0.0139502902, 0.00937497523, 0.0168735962, 0.00900786277, -0.0203951597, 0.00881750789, -0.0286348052, -0.000659868412, 0.0206263065, 0.00770937046, 0.00770257227, -0.0373911262, -0.0174718536, 0.0109997895, 0.0018389636, 0.0171999186, 0.0137939267, 0.0282812901, -0.0116524352, 0.00427278597, 0.0137055479, -0.0161937568, 0.0313541591, 0.00466369325, -0.00781814475, 0.00381729426, -0.0134744029, 0.0116320401, 0.0136375641, -0.00242192531, -0.00691395951, -7.34544446e-05, -0.0348621272, -0.00542851165, 0.00678479, -0.0351612568, 0.00818525814, 0.00985086244, 0.0236447901, 0.00920501538, 0.00723348372, 0.0139094992, -0.00446654, -0.00557127781, 0.00503080618, -0.000611854834, -0.000241980088, 0.0262145791, 0.00839600805, 0.0250996444, 0.011740814, 0.00847758818, -0.0211157892, -0.00561886653, -0.00229955441, -0.00221457449, 0.00130698981, -0.0148884673, 0.00528234662, -0.0154051445, -0.00783854, 0.0243654177, 0.00161206746, 0.00726747559, -0.00900106411, 0.00535372971, 0.00749862054, -0.0107482495, -0.0180973057, -0.0181788858, -0.0274110958, 0.00468748761, 0.00362014095, 0.009191419, -0.0154595319, -0.0109522007, 0.00357935065, -0.00749182235, 0.0107958382, -0.0130597008, -0.00063225, 0.0102587659, -0.0130257094, -0.0167784188, -0.0182468705, -0.0292058699, -0.0174446609, -0.0142902089, 0.00845719315, 0.0179885309, 0.0304567721, -0.0105239032, -0.022393886, 0.0162073541, 0.015581903, 0.0242430475, -0.00485404814, 0.00330061675, -0.0184916127, 0.0152827734, -0.00385468523, -0.000265561976, 0.000798810448, 0.00343998382, 0.00332781044, 0.0031510524, 0.00466369325, 0.0121623138, -0.00897387, 0.00172933959, -0.00852517691, -0.0114008943, 0.00378670148, -0.015500322, 0.0176486131, 0.00738984626, 0.00156192936, -0.000620777719, -0.018926708, -0.00219247979, 0.0222579185, 0.00941576529, -0.0176758058, 0.0111017656, -0.00517017301, 0.0490027741, -0.00465349574, -0.0259562414, -0.00494922558, -0.00421839906, -0.011740814, -0.0216324665, -0.0135423867, -0.0057174433, 0.00653324975, -0.00289271353, 0.00828043558, -0.00289781229, -0.0115232654, 0.00347737479, 0.00752581423, -0.0176214185, 0.000302528206, 0.0289611276, -0.016982371, 6.31506409e-05, 0.0182468705, 0.00519396737, -0.0159626119, 0.017254306, 0.0149972411, -0.00852517691, -0.0320611931, 0.00875632185, 0.0099324435, 0.00917782262, -0.0126042096, 0.00253919745, 0.0135559831, -0.00882430654, -0.0056800521, -1.80980496e-05, -0.002731252, 0.00998003222, 0.00249500806, -0.00838241074, 0.00755980611, -0.0117272176, 0.0110949669, 0.01230508, -0.00168005133, -0.0191986449, 0.0184372254, 0.00122710888, -0.0401648693, -0.00562566519, 0.0240798853, -0.00704992702, -0.0219451934, 0.00990525, -0.0198105, 0.00869513676, -0.00614574179, -0.0043951571, 0.0132840481, 0.013243258, -0.00394306425, 0.00963331386, 0.0304567721, -0.00751221739, 0.0128013622, -0.002229871, -0.0120467413, 0.00855237059, -0.00643127412, 0.00364393531, 0.0147796925, 0.0328226127, -0.012658596, -0.0225434508, 0.00170214614, 0.00446654, -0.00529254414, -0.00190184871, -0.0184644181, 0.0150924185, 0.024447, -0.0135015966, 0.0280093532, -0.00153558562, 0.0253715795, 0.0161121767, -0.0100344187, -0.00474187499, 0.0045141289, -0.00656724162, 0.000459316, -0.0149972411, -0.00908264518, 0.00204291521, 0.00286212075, -0.000407265848, -0.00343828415, 0.0136579592, -0.00218738103, -0.016982371, -0.00117697066, 0.0153507572, 0.0304839667, -0.00305417529, -0.00980327372, 0.0215644836, 0.00819885451, 0.00459910883, -0.0133384345, -0.0115504591, 0.000467389094, -0.000286594499, 0.0266632736, 0.0273159184, -0.000265986891, -0.013787128, -0.0133180395, 0.00333120953, 0.00981687102, -0.00695135072, 0.00625111675, 0.013263653, -0.0170367565, -0.0023301472, -0.00650945539, -0.00440875394, -0.0253443867, 0.00421160087, -0.000325472764, -0.010299556, 0.00568345143, -0.0275062732, -0.00475547137, -0.0290970951, -0.00500701182, -0.00752581423, -0.00173953723, -0.0180429183, -0.0106938621, -0.0142494189, 0.00354875787, 0.0231145155, -0.0129985157, -0.00242872373, -0.00294370158, 0.0399745144, -0.0112717254, 0.0177029986, 0.00813087076, 0.00645846734, -0.00127894653, -0.0178117733, -0.0182876606, -0.018382838, 0.0153235635, -0.0183556452, 0.0115436604, 0.0113193141, -0.00906224921, -0.0181924831, 0.0234952252, 0.00326152612, 0.0262417737, 0.0162209515, -0.00947695132, -0.00517357234, -0.00444954401, 0.0216596611, -0.00376970554, -0.00912343524, -0.0189131126, 0.0051599755, 0.0128965396, 0.0170911439, -0.00461950386, -0.0350252874, 0.0133724269, 0.0027907379, -0.00569364894, 0.0087903142, -0.0137395402, 0.00252220151, 0.0118495878, 0.00735585438, 0.0254123695, -0.0207350794, 0.00744423363, 0.00608795555, -0.0106870644, 0.0153779509, -0.00580922142, 0.00830762833, -0.00581262074, -0.003671129, -0.010116, 0.0117000239, 0.00754620926, -0.00582281826, -0.0125838136, -0.00991884619, 0.0295865797, 0.00936137885, 0.00672700396, 0.00847758818, 0.0102315722, -0.00950414501, 0.00246951403, 0.0013724243, 0.000102294478, -0.0326322578, 0.0166152567, 0.011448483, -0.0136035718, 0.00380709651, -0.000283407746, 0.0205991119, -0.000172402841, -0.00562226586, 0.0162617415, -0.00461270567, 0.00919821765, -0.00241682655, 0.0239167251, -0.0414701588, 0.00111833459, -0.018151693, 0.00713830628, 0.0129441284, -0.0204767417, 0.00602337066, -0.0121963061, -0.0256843045, -0.010007225, 0.0150244348, 0.00948375, -0.00331591326, -0.00120246469, 0.00940216891, -0.0141270477, -0.0171183385, -0.0114144916, -0.00838241074, 0.0173766762, -0.00691395951, 0.0190490801, -0.0133996205, 0.0355963521, -0.0107958382, 0.0104967095, 0.00904185418, 0.0182740632, -0.0105171045, -0.00519396737, 0.0136783542, -0.0158946291, 0.000153707282, 0.00527554797, -0.030728709, -0.0107754432, 0.00925940275, 0.0195929501, 0.0139366928, 0.00991884619, 0.0112377331, -0.00674399966, 0.0372007713, 0.0079881046, 0.0145077575, -0.0137735317, -0.00194093946, -0.00363033847, 0.0104015321, -0.00197153213, 0.0214693062, -0.0302392244, -0.0260106288, -0.0308918692, 0.00218568137, -0.00290801, 0.0205583218, -0.00274824793, -0.00287571759, 0.0117476126, -0.0019392398, 0.0149836447, 0.014059064, -0.00747142732, -0.0314901285, -0.000910983828, 0.0111425556, -0.0144397737, 0.0180565156, -0.00469088694, 0.0015321864, -0.0132160643, 0.010381137, -0.0143581927, 0.019633742, -0.00919821765, 0.0071043144, -0.000452092732, -0.0231417082, 0.0100004273, 0.00436456455, -0.0212245639, 0.0128625482, 0.0182876606, -0.0333392881, -0.000666666834, -0.020232, -0.0156634841, -0.0115164677, -0.012950927, 0.00804929, -0.0145213539, 0.0234544352, 0.00973529, -0.00100106245, -0.0631978065, -0.00255449396, 0.0158946291, 0.0185324028, 0.00649925787, 0.0106598707, 0.00284512481, 0.0297225472, -0.000349054666, -0.0100412173, -0.0206535, -0.00199532649, -0.00408243109, 0.0147660961, -0.0214421116, 0.00958572514, -0.00262077805, 0.00781134656, 0.0102519672, 0.00860675797, 0.00572764082, 0.009273, -0.00203441735, 0.000446993945, -0.013787128, 0.0196881276, 0.0325506777, 0.0208302569, 0.0167648215, 0.0182604678, -0.00729466928, -0.00826004, 0.0101499911, 0.0134404106, -0.00930019282, -0.0114144916, -0.00967410486, 0.0189675, 0.0202455968, -0.00133503322, -0.0060811569, 0.038750805, 0.0138891041, 0.0116456365, -0.00803569332, -0.0300760642, 0.00143615925, 0.007185895, -0.00882430654, 0.0214421116, 0.0153507572, 0.00289951195, -0.00371531839, 0.000592309458, 0.00261907862, -0.00592139503, -0.00346887694, 0.0102519672, 0.000247716234, -0.00625451608, -0.025548337, -0.0112037417, -0.0153235635, 0.0154051445, -0.00217208453, 0.0140862577, 0.00651625358, 0.00247121369, -0.00220267731, -0.00564606, 0.00148884673, 0.0117272176, -0.0257115, -0.002229871, -0.000342681189, 0.0124410475, -0.00775695918, -0.00955853146, 0.0100344187, -0.00950414501, 0.00353516126, -0.00444274582, -0.0384244807, 0.00605736254, -0.0282269027, -0.00932738651, -0.000358402467, 0.0291514825, 0.028390063, -0.0353516117, -0.0386420302, 0.00340429228, -0.0191306602, 0.0150244348, -0.013494798, 0.0162753388, -0.00896027405, -0.0257930793, -0.00131208869, -0.0234136451, -0.00292160665, 0.00876991916, -0.011217338, -0.00135797774, 0.0228833705, 0.000906734844, -0.0120807337, 0.00486764498, -0.002224772, -0.00595878623, 0.0147253061, 0.0150244348, -0.020232, 0.0119651612, 0.00156532857, 0.00413681846, -0.0183420479, 0.00982366875, 0.0191850476, 0.0392402895, -0.00935458, -0.00237263693, -0.00229955441, 0.00998003222, -0.0119855562, -0.0248549022, -0.0147389024, 0.00691395951, -0.00257828832, 0.0123118786, 0.0143174026, -0.0143989837, 0.0133452332, -0.0317620635, 0.0154459346, 0.0166016612, 0.0074238386, -0.00252730027, 0.0279821604, -0.00446314085, -0.0104627172, -0.0186003856, 0.0242974348, 0.00221967325, -0.0201504193, -0.0257930793, 0.00122201, -0.0153507572, -0.00655704411, 0.00910983793, -0.0284716431, -0.0300760642, 0.0109522007, 0.015500322, 0.00514637865, 0.00147864909, -0.00982366875, 0.0318436436, -0.00096197176, -0.0095925238, 0.0258474667, -0.00527214911, -0.0056358627, 0.0123594673, 0.0137395402, -0.000274909777, -0.00778415287, -0.00401444733, -0.00869513676, 0.00536732655, -0.028390063, 0.00274314918, -0.00437816093, -0.00870873313, 0.0101635884, 0.00475547137, 0.00596898375, -0.00209390325, 0.0122031048, -0.00307966932, 0.0115640564, -0.00398725364, 0.00350796757, -0.00560527, -0.00310856244, 0.0458755158, -0.00772976596, -0.000736775168, 0.000526025193, -0.0144125801, -0.00453452393, -0.0120399427, 0.0129373297, 0.0178117733, 0.00121606141, -0.0158266444, -0.00162736385, 0.00308476808, 0.0335024521, -0.00192904228, -0.0235088225, 0.00225536479, -0.0144397737, 0.0111085642, -0.00553388707, 0.00842999946, -0.0113329105, -0.0053979191, 0.0133452332, -0.00181346969, -0.00979647506, 0.0149292573, -0.0130597008, 0.013807524, 0.00624091923, -0.0108502256, 0.0154323382, -0.00826683827, -0.0035113669, -0.00481325807, -0.0225978382, -0.00656044343, 0.00767537858, -0.0184780154, -0.0134200156, -0.00431697583, -0.0357595161, -0.00175568345, -0.0171047412, 0.0318980291, 4.28882595e-05, 0.0201912094, -0.00410622545, -0.00390907237, -0.0368472561, 0.00424219342, 0.00498661678, -0.0185731929, -0.00048693447, -0.0286348052, -0.00130444043, -0.00267856452, 0.0165880639, 0.00324622961, -0.0147660961, -0.01234587, -0.0121623138, 0.00388187892, -0.0113872979, -0.0280909352, 0.0118903788, -0.00640408043, -0.00159847073, 0.000274059974, -0.00481325807, -0.029369032, -0.00655364478, 0.0116388379, 0.0111289592, -0.0152963707, -0.00673380215, 5.50775549e-05, -0.0113057178, -0.00951774139, -0.0162345469, 0.0144533701, 0.0358954817, 0.00674399966, 0.0162345469, 0.00438835891, 0.0241750628, 0.00115062692, 0.0240526926, -0.029369032, 0.0090282578, -0.00223157043, -0.0232368857, 0.00520756422, -0.00605056435, -0.00255789305, -0.011822395, 0.0172135159, 0.0114960717, 0.00842320174, -0.0168056116, 0.00193074183, 0.0055984715, -0.0132500557, -0.000183237775, 0.00343828415, 0.0174718536, 0.0162753388, 0.0113804992, 0.00216188701, -0.0238623377, -0.0171047412, -0.00425239094, 0.0218364187, 0.00241512689, 0.00733545935, 0.00527214911, -0.031544514, -0.000447843719, 0.000692585658, 0.000727002509, 0.020639902, 0.00180327205, -0.0173630808, -0.000759719755, -0.00249330839, -0.0273431111, -0.00697514508, 0.00193244149, 0.0029505, 0.00624771742, -0.010299556, 0.00296409661, -0.0221763384, -0.00557127781, 0.0373367406, 0.00203611678, -0.00282642944, -0.0171999186, 0.021890806, 0.0165472738, -0.0131208869, 0.0267720465, -0.00484385062, 0.0113940965, -0.012930532, 0.011217338, -0.00265986891, -0.020721484, -0.00601657247, 0.00461270567, 0.00385808456, 0.0108230319, -0.0045141289, -0.00456511695, 0.00510218926, -0.0127877658, 0.0239575151, 0.00285022357, 0.00422859658, -0.0129985157, 0.00870193541, -0.00314255431, 0.00312725804, -0.0352156423, -0.00395666109, 0.00697514508, 0.0117476126, 0.032523483, 0.0362489969, 0.00704992702, 0.0127061848, 0.0122031048, -0.00796771, 0.011740814, -0.00954493508, 0.0109318057, -0.0204223543, -0.00646526599, -0.00473167701, -0.00679498771, 0.00823964458, -0.0144533701, -0.0208982415, -0.00485064881, 0.00675759651, -0.00620692736, 0.00666581839, 0.0216324665, 0.0337471925, 0.0226794183, -0.0190490801, 0.00384788704, -0.00612194743, 0.0235904027, 0.0091302339, -0.0253035966, -0.0122235, 0.0126789911, -0.020367967, -0.0179613382, -0.00874272548, -0.00410282658, 0.0186139829, -0.00772976596, -0.0153371608, 0.00384448771, -0.0122574912, 0.00318674394, -0.0122574912, 0.000760994444, 0.0142358216, -0.00753261242, -0.013202467, -0.0389683545, -0.0100956047, -0.012638201, -0.0286348052, -0.000290206139, -0.0135491854, 0.0042761853, -0.0214285161, -0.00523135858, -0.00457531447, -0.00809687842, 0.00142001302, 0.0283356756, -0.0131344832, -0.0078045479, 0.0152147897, -0.00778415287, -0.00955173373, -0.0198105, -0.00414701598, -0.00763458852, -0.00144890614, -0.0270847734, -0.00420820154, -0.0094905477, 0.0136987492, 0.0321971588, 0.00339069543, 0.00276354421, -0.0127401771, 0.00238283467, 0.00978287868, -0.0236991756, 0.00595538691, 0.00573104, 0.00323093333, 0.00690036267, 0.013494798, 0.0155275157, 0.00269556046, -0.0152011933, -0.0172679033, -0.0103743384, 9.21500105e-05, -0.00147525, 0.00292670564, -0.0108094355, -0.00950414501, 0.00738984626, 0.0121147251, -0.00479966123, -0.013263653, 0.000897387043, 0.0587924495, 0.00464669755, -0.014643725, 0.00966730621, -0.00442574965, 0.0148340799, -0.00549989473, 0.0119991526, -0.00877671782, 0.00569704827, 0.00683917711, 0.00224176794, 0.00340939104, 0.0158402417, 0.00251880242, 0.0154323382, 0.0208030641, 0.029015515, -0.00775695918, 0.0330129676, -0.00672360463, 0.00224856636, 0.00282472977, 0.000279371219, -0.00584661262, 0.0120875314, -0.0050342055, -0.00537072541, 0.00644827, -0.000258126238, 0.0134404106, 0.00015700025, 0.0152011933, 0.0104083298, 0.0253715795, -0.00420480222, -0.00669641094, 0.00900786277, 0.0127877658, -0.0158130471, -0.0202999823, -0.00814446714, 0.0041130241, 0.00565285888, 0.0150108384, 0.0108570233, -0.0155547094, -0.0130121121, 0.0250860471, 0.0197153222, -0.0229241606, -0.0143174026, -0.0205719192, -0.00429658033, -0.00767537858, -0.00752581423, -0.014059064, 0.0279005803, -0.0110745719, -0.0326050632, -0.0219859835, 0.00364053622, 0.00108434272, 0.0109114107, 0.0152147897, -0.0142630152, -0.00473167701, 0.0145485476, 0.0131616769, -0.0176350158, -0.0304839667, -0.0140862577]
18 Mar, 2019
deque cbegin() in C++ STL 18 Mar, 2019 The cbegin() method in deque is a function in C++ STL which returns an iterator pointing to the first element of the container. Syntax: deque_name.cbegin() Return value: It returns a constant iterator pointing to the first element of the deque. This means, that the iterator can be used to traverse the queue, but not to modify it. That is, functions like insert, erase would throw an error if called using a constant iterator. The constant iterator should be used when you want no part of your code to modify the contents of the deque. The following programs illustrates the function. Program 1: #include <deque> #include <iostream> using namespace std; int main() { // Create a deque deque<int> dq = { 2, 5, 7, 8, 6 }; // Print the first element of deque // using cbegin() method cout << "First element of the deque is: "; // Get the iterator pointing to the first element // And dereference it cout << *dq.cbegin(); } Output: First element of the deque is: 2 Program 2: #include <deque> #include <iostream> using namespace std; int main() { // Create a deque deque<int> dq = { 1, 5, 2, 4, 7 }; // Insert an element at the front dq.push_front(45); // Insert an element at the back dq.push_back(56); // Print the first element of deque // using cbegin() method cout << "First element of the deque is: "; // Get the iterator pointing to the first element // And dereference it cout << *dq.cbegin(); } Output: First element of the deque is: 45 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL
https://www.geeksforgeeks.org/deque-cbegin-in-c-stl/?ref=next_article
PHP
deque cbegin() in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.00108110311, 0.0124052642, -0.00553849339, 0.0240171682, -0.0299553461, -0.0337779, -0.0090214638, 0.0166485365, 0.000196649577, 0.0131745823, -0.0510154441, -0.00300815632, 0.00267308182, 0.000438376417, -0.0133308508, 0.0279599261, 0.0266857427, 0.0286571216, 0.0180429276, -0.0159513429, -0.00123060937, -0.0153623326, 0.0100852875, -0.00460990192, 0.00382255227, 0.0257481355, -0.0262770411, -0.0196416676, -0.0131265, -0.0183073804, 0.0118222646, 0.0258683413, 0.0037534337, -0.0609204248, -0.0367109254, 0.0153262708, -0.00798769202, 0.0100672562, -0.0226708595, -0.00675557973, -0.0145088695, 0.0143045196, -0.0163239799, 0.00941213313, -0.0167086404, 0.041687455, -0.00420420663, -0.04673611, -0.00875701, -0.0257721767, 0.0343068056, 0.0394275822, 0.0353405774, 0.0222501382, 0.00855867, -0.0113955326, 0.0317584388, 0.00159723777, -0.0263010822, -0.0264453292, -0.0111491103, -0.0290898625, -0.0122550065, -0.0126456758, 0.0088591855, 0.00978477206, -0.0440434963, 0.0428654738, 0.0271425247, 0.00739868218, -0.0478420071, 0.00720635243, -0.0416153334, 0.041831702, -0.0260606706, -0.040196903, 0.0151098995, 0.0218053758, -0.0118583264, 0.0415432081, -0.0233560354, -0.00615454931, -0.0320469327, 0.0149055496, 0.058179725, -0.0120085841, 0.0111130485, -0.02824842, 0.0509673618, -0.000873747689, -0.0124172848, 0.00540326163, 0.01688895, -0.0426010229, 0.0200263262, 0.018547792, 0.0030472232, 0.0283686258, -0.0111431, 0.0310372, -0.0202186573, 0.0176462475, -0.00607641554, -0.00132902805, -0.0108666262, 0.0441877432, 0.038946759, 0.0129101295, -0.0171654224, -0.0166004542, -0.00158822234, 0.00628076587, -4.95849927e-05, 0.0696233436, -0.0500057153, 0.00420420663, -0.00439353101, -0.00467301, 0.0188483074, 0.0123571809, -0.0260125883, 0.000522145, 0.000504114083, 0.0478660464, -0.0366628431, 0.00512378244, -0.00695993, -0.000750912121, 0.00443259766, 0.00684573408, 0.0121468212, -0.0302197989, -0.0198339969, 0.00588709116, 0.00998912193, 0.0156868882, 0.0303159636, 0.0445724, -0.00705008442, 0.032215219, -0.0285369158, -0.012297078, 0.0312054884, 0.0556313582, -0.0362301022, 0.00116900378, -0.00247774716, 0.0735661, -0.0137756122, -0.0231637042, -0.0388505943, 0.026733825, 0.0572661608, -0.0267819073, 0.0169971343, -0.0145449312, 0.0285128746, 0.000994705, 0.0417114981, -0.0185357723, -0.0105300499, 0.0134991389, -0.00179407524, -0.01412421, -0.0269021131, 0.0587086305, 0.0351001658, -0.0307246652, -0.0739507601, 0.0306765828, -0.00906954613, 0.0555351935, -0.00727246562, 0.00206003105, -0.0226107575, -0.0206153374, 0.0432741754, -0.0734218508, 0.0104398951, 0.0140400659, -7.9871279e-05, 0.0293783564, 0.0187281016, 0.0141001688, 0.00712220836, 0.0101934727, 0.026421288, -0.0146771576, 0.00673153857, -0.00249878317, 0.0124894083, 0.0120025733, 0.0317103527, 0.00766313542, 0.0337298177, 0.00532512786, -0.0156989098, 0.00477518514, 0.0127899228, 0.0340423509, -0.0085767014, -0.020170575, 0.0183795039, 0.00135006418, 0.035436742, -0.000352729607, -0.00478420034, -0.0212043468, 0.00900343247, -0.0010728389, 0.0158551764, -0.0266136173, 0.0217572935, -0.00280230353, 0.0187401231, 0.00569776632, -0.0568334162, -0.0146170547, -0.0240171682, -0.0371436663, -0.00940612331, -0.0162037741, 0.0165403523, -0.0597664453, -0.0507269502, -0.0351001658, 0.0110649662, 0.00885317475, -0.0304602124, -0.000416213443, -0.00632884819, 0.0190286171, -0.00650314707, -0.0216971915, 0.0132467058, -0.0177664533, -0.0331047438, 0.00958042219, -0.029787058, 0.00953233894, 0.0343068056, 0.0524098352, -0.0716428, -0.00555051398, 0.0391871706, 0.0786147565, 0.00637092, -0.029017739, -0.0226468183, -0.0277195144, 0.0050726952, 0.0114015434, 0.0258923825, -0.0117381206, 0.0202186573, -0.000270463614, 0.010698338, -0.0125735523, -0.00742873363, 0.00916571077, 0.00376545428, 0.028104173, -0.0411825925, 0.00175951596, 0.00665340433, -0.0191368014, 0.05010188, -0.00630480703, -0.0297389757, -0.0299793873, 0.0169370323, 0.00701402267, 0.038658265, -0.0385140181, 0.0278878026, 0.033898104, -0.0014101672, 0.00404493324, 0.00741070276, -0.0100011425, -0.00583900884, -0.0184997097, 0.015494559, -0.00134480512, -0.00248375745, 0.00759101193, -0.0199542027, -0.00576688489, 0.0243417248, 0.00446565449, -0.0269261543, -0.00260095834, -0.0199181419, 0.015494559, 0.0487555712, 0.0480343364, -0.0366147608, -0.0479381718, -0.0206273571, -0.0204230063, 0.014580993, 0.00409602094, 0.000891027332, -0.0188963898, -0.00981482398, -0.0379610695, -0.00171894638, -0.045365762, 0.00302167935, 0.0140881483, 0.00430938648, -0.0750085711, 0.00432441244, -0.0147733232, -0.0253634751, -0.00378949544, 0.0440915786, 0.01412421, -0.0258923825, 0.00656926027, -0.00379550597, -0.0118763568, 0.000748282648, 0.00898540206, 0.0378889441, -0.0233079512, 0.0342587233, 0.0252673104, 0.0128981089, -0.0108185438, -0.0339942686, -0.00199391786, -0.0331047438, 0.000541302841, -0.0395718291, -0.0105841421, -0.025195187, -0.00744075421, 0.0486834496, -0.00776531035, -0.00951430853, 0.0141121894, -0.0142804785, -0.00196687132, 0.00503963837, -0.0143045196, -0.012381223, -0.0128500266, 0.0172255263, -0.0112032034, 0.000689306529, -0.00558958109, -0.0143646225, -0.0206273571, 0.0478179641, -0.0102776168, -0.0185237508, -0.0339461863, -0.00904550496, 0.0367349684, 0.00667744596, 0.0109688016, 0.008901258, 0.0287052039, 0.0103136785, -0.0315661058, -0.00455580931, -0.0313737765, 0.005649684, 0.00670749741, -0.00187371171, -0.00177604426, 0.0193651933, -0.0037864903, 0.0189444721, -0.0208196864, -0.011756151, 0.00944218505, -0.0227790456, 0.013979963, -0.0168408677, 0.0205792747, -0.000657001161, -0.0158551764, 0.0137034887, -0.0282965023, -0.0234882608, 0.0679885373, 0.00514782406, -0.00914768, 0.0136914682, -0.00509974128, -0.0239330232, -0.025195187, 0.0113955326, -0.0169730932, 0.00533113815, -0.0169129912, -0.0062026321, -0.0439232886, 0.025820259, 0.0129461912, 0.0280560907, -0.0199662242, -0.0123090986, 0.0067736106, 0.000362496357, -0.00715827, 0.0387303866, 0.0205792747, 0.0236805901, -0.0224304479, 0.0119304499, -0.00273318496, 0.0415432081, 0.014749282, -0.0303159636, 0.0439232886, 0.00497052, 0.00968860742, -0.010644245, -0.0268059485, -0.0436347947, 0.0227069221, 0.0380812734, 0.0165403523, 0.002824842, 0.00890726782, 0.0211803056, 0.0156027442, -0.0321671367, 0.0458706282, 0.008751, 0.0399084054, 0.0169851147, -0.0471448116, 0.0555832759, -0.0278397202, -0.0318305604, 0.0224785302, 0.0610646717, 0.00934001, 0.0303880889, -0.0133428713, -0.0189925544, 0.0375523679, -0.0405094363, -0.008817113, 0.0283205435, 0.00373840798, -0.0382495634, 0.0089613609, 0.0252673104, -0.00832426827, 0.00442358246, -0.0286571216, -0.0147853438, -0.00808385666, 0.0564487576, -0.00332970754, 0.00438451534, 1.62818142e-05, -0.0147733232, 0.0050757, 0.0490681082, -0.000353293086, 0.00802375376, -0.00634687906, -0.0130784176, -0.00635288935, -0.0288013685, -0.0149295907, -0.0160114449, 0.00146951887, 0.0281762965, -0.00602833321, -0.0275271833, -0.00264303037, -0.0539003909, -0.0120867174, 0.026565535, -0.035749279, -0.0415672511, -0.0020344872, -0.00543030817, -0.017033197, -0.0223823655, -0.0236204881, -0.00837836135, 0.018716082, -0.0100612463, -0.00438752072, 0.00745878508, -0.0281522553, 0.0581316426, 0.0448849387, -0.0388986766, 0.0382255204, 0.00453777798, 0.0261087529, 0.0283205435, -0.001198304, 0.00102475658, 0.0350280404, -0.00673153857, -0.0245460737, -0.0122189447, 0.0245580953, -0.0135352006, 0.00697195064, -0.00890726782, 0.0200143065, -0.0298111, 0.0126096141, 0.000603284105, -0.0261327941, 0.0300274696, 0.00653920881, -0.0515924357, 0.0127057787, 0.0166124757, 0.00897939131, 0.0119725224, 0.0114676571, -0.00143571093, 0.043682877, 0.00658128085, -0.00435145898, -0.000500357652, 0.00882913359, 0.000492469117, -0.00326359412, -0.00192780443, -0.00165283307, 0.0127418404, -0.000589760893, -0.0202547181, 0.00278126728, -0.0313016549, -0.00589009607, 0.00191127614, 0.0331528261, 0.0117681716, -0.0199301615, -0.0306765828, -0.00557756051, 0.00206904649, -0.0032425581, 0.00813193899, 0.0172736086, 0.0217813347, 0.0239570644, -0.0123030888, -0.0114255846, -0.0087990826, 0.021540923, -0.0257481355, -0.00748282624, -0.0079997126, -0.0208677687, -0.0038976809, 0.0416634157, 0.0412787572, -0.00576989027, -0.00819805264, -0.0156868882, 0.021456778, 0.0103737814, -0.0104699461, 0.0467841923, -0.0137635916, -0.0143045196, 0.0527944937, -0.00106156967, 0.0334413201, -0.00750686741, 0.0162398368, -0.00618460076, -0.010187462, 0.0231637042, 0.00118628342, -0.0197859146, 0.00856468081, -0.0307487063, -0.00679765176, 0.0176582672, -0.0183073804, -0.0135832829, -0.0140881483, -0.000524398871, 0.00516585493, -0.00676760031, 0.0151940444, 0.0254836809, 0.000883514411, -0.0183915254, -0.000453777815, 0.0201345123, -0.0425769798, -0.00765712513, 0.0173577536, 0.0111070387, 0.0263732057, -0.0254115574, -0.00156568375, -0.0224424694, -7.72887288e-05, 0.00695392, -0.0130423559, -0.0140520865, -0.0509673618, 0.0221058913, 0.0043484536, -0.0222501382, -0.0112633063, 0.0160835683, 0.0186679978, 0.00506367953, -0.0340183116, 0.0328162499, -0.0188362878, -0.00766914571, -0.00733256852, 0.00609444641, 0.0186920408, 0.0229593553, -0.00115773443, -0.0458706282, 0.0105300499, -0.0422884859, -0.0038646243, -0.00938208215, 0.0187040605, 0.0129942736, -0.00457985047, -0.000890276046, -0.0231757257, 0.0119304499, 0.00819805264, 0.00344690843, -0.00633485848, 0.0146410959, 0.00811991841, 0.0346674249, -0.00318546, 0.00834830943, 0.0055835708, 0.022742983, -0.0128259845, -0.00295406347, -0.0263732057, 0.0199061204, -0.00640698196, -0.00805380475, -0.00397280976, -0.0212524291, 0.0155907236, -0.000775329, 0.00795163, 0.00946021546, -0.00144547771, -0.0229112729, 0.0115998834, -0.00185417826, 0.00611548265, -0.0409181379, -0.00801774301, 0.0202547181, -0.00819805264, 0.0135592418, -0.0277435556, -0.0272627305, 0.017177444, -0.0346433818, 0.0072844862, -0.010812534, -0.0360137299, 0.0147733232, -0.000995456357, -0.00177153654, 0.00278727757, -0.0291139036, -0.015975384, -0.0269742366, -0.004450629, -0.0127298199, -0.0108546056, -0.0279839672, 0.0175140202, -0.00533714844, 0.0226468183, -0.0389948413, 0.0345231742, 0.0367109254, -0.00440254621, -0.0228030868, 0.00750085711, -0.0160114449, 0.00586305, -0.0205672551, -0.0110529456, -0.0295706876, -0.00534015335, -0.0208196864, 0.000936855853, 0.0619782358, -0.0112813376, -0.0233440138, -0.0142444167, 0.0121588418, 0.0108846575, -0.0263732057, -0.00741070276, -0.00444461871, -0.0123331398, 0.0177063495, 0.0172495674, -0.0175621025, 0.0325758383, -0.0498614684, -0.0133428713, -0.000236655644, -0.00220127311, 0.00021693435, 0.0594298691, 0.00100897951, -0.0254115574, -0.0270463601, -0.00354006793, 0.00295706862, -0.04656782, 0.00140941585, -0.00495849922, 0.00500658154, -0.0291139036, -0.00402690237, 0.0204951297, -0.00155366317, 0.0152541474, 0.0122850575, -0.0111791622, 0.0080598155, -0.0364705138, -0.000656625489, -0.00505766924, -0.0129702324, 0.0294985641, 0.00576688489, 0.000316104328, 0.026421288, 0.0164922699, 0.0119605018, 0.0244138483, -0.0141482512, -0.0231997669, -0.0240051467, 0.00996508077, 0.00366327912, 0.0218414385, 0.0158191156, 0.0423846506, 0.0167086404, 0.0315901488, 0.00841442309, -0.0198700596, 0.0114376051, 0.00206003105, 0.032095015, 0.0155426413, 0.0276714321, -0.00627475558, -0.0170812793, -0.00233800756, -0.0221058913, -0.00708013587, -0.0174779594, 0.00307276705, 0.00554450369, 0.0449811034, -0.00368732051, -0.0160114449, 0.0193892345, 0.0234522, 0.00797567144, -0.001879722, -0.0218654796, 0.0302678812, 0.0192329679, 0.0337298177, -0.0351242051, -0.0177424122, 0.00117877056, 0.0294504818, 0.010728389, 0.0241013113, -0.0223823655, -0.00276173395, -0.0135111595, -0.0317343958, -0.0187882055, 0.0306285, -0.00481124688, -0.00294354558, -0.00845048483, 0.0109808221, -0.00375042856, 0.00607040524, 0.00273619, 0.00589310145, 0.0293302741, 0.0207475629, 0.00983285438, -0.0210721195, -0.00216370891, 0.00724241417, -0.0107584409, -0.0149776731, -0.0154705178, 0.0188603289, -0.00361820194, -0.00962249376, -0.0201104712, 0.00241013127, -0.0368551724, -0.0424086936, 0.0395477898, 0.0396199115, 0.00643703388, 0.00402089208, 0.0252192281, -0.00535217393, 0.0247143619, 0.00505466433, 0.0107103586, 0.0228631888, 0.0234642196, -0.00359416078, 0.00697796093, 0.0164081249, 0.0115217492, -0.0113534611, -0.00685775466, -0.0473130979, -0.00753090857, 0.000460915064, -0.0273829363, -0.00653920881, 0.0222982205, -0.0350520834, 0.00992901903, -0.00599227147, 0.0133669125, -0.0143405814, 0.00840240251, -0.00633485848, 0.0234882608, -0.0389708, -0.00798769202, -0.0226708595, 0.0129461912, 0.0332970731, 0.0185838547, 0.00403591804, 0.0177424122, 0.026565535, 0.0209879745, 0.0144848283, 0.00328463013, 0.0335374847, -0.00623268355, 0.0127298199, 0.0241493937, -0.00688780611, -0.00921379309, -0.000407573621, -0.0413989611, 0.02505094, 0.0255317632, -0.00738065131, -0.020771604, 0.0344991349, -0.011185172, -0.0213966761, -0.0078554647, 0.00950228795, 0.00172796194, -0.0009233327, -0.00702003296, -0.00801173318, -0.00222230935, 0.024738403, 0.0085346289, -0.0317103527, -0.0260125883, 0.00613952382, 0.00517186522, 0.00896737073, -0.00938809197, -0.0112092141, 0.00460990192, -0.00496450951, 0.010355751, 0.00962249376, -0.00547538511, 0.0178505983, -0.00366027397, 0.0326960459, -0.00160174549, -0.00384358829, 0.000566470961, 0.00323354267, -0.00331167644, -0.00784945488, -0.0204350278, 0.0175861437, -0.0329364575, 0.0313978195, -0.025195187, 0.033898104, -0.000591639138, 0.00481725717, 0.0184516273, 0.0176943298, -0.00382255227, 0.0136794476, -0.0380091518, -0.0107584409, 0.00846250542, -0.0112753268, 0.00246272143, -0.0319988504, 0.00165283307, 0.0127899228, -0.0173938144, -0.0181150511, -0.00625071442, -0.0500537977, -0.0155907236, -0.03697538, 0.00917773135, 0.0298832227, -0.0206874609, -0.0239210036, 0.0140400659, -0.0211202018, 0.00238909503, -0.0337298177, 0.000105837666, -0.00784344412, -0.00427633, -0.00510875694, -0.0444762371, -0.00710417703, -0.0457744636, -0.007062105, -0.0023139664, -0.000101987316, 0.00557155, 0.00652718823, -0.00852861907, 0.00645506475, -0.0097427, 0.0135352006, -0.00635889964, 0.0464476161, -0.0325277559, 0.0032756147, -0.0119484812, -0.0149536319, -0.00167386921, 0.0346914642, -0.0222862, -0.017862618, 0.0276954733, -0.00484129833, 0.0449811034, -0.0154464766, -0.0331768692, -0.0148694878, 0.0115457904, 0.0302678812, 0.022742983, -0.0042973659, 0.0252192281, 0.0352203697, 0.0132346852, 0.00651516765, -0.00596522493, -0.00298261247, -0.00158671977, -0.0194373168, -0.0163119603, 0.00741671305, -0.00374441827, 0.0252432693, 0.0634687915, -0.0097427, 0.0113294199, -0.0133548919, 0.00591413723, -0.0217092112, 0.0316382311, -0.0205432121, 0.0161436722, 0.00354006793, 0.00762707368, -0.0108185438, 0.0423846506, -0.0230314787, 0.00261898921, 0.00292851985, -0.0318065211, 0.0132467058, -0.00653920881, 0.0276714321, 0.00500357663, -0.00656926027, 0.00301717175, 0.0174058359, 0.0125615317, -0.00226888899, -0.00424627867, -0.0226227771, -0.000329439703, -0.0167086404, 0.0126096141, 0.0357011966, -0.00917773135, -0.00735059939, -0.0422163643, -0.0117922127, -0.00475715427, 0.00422223751, 0.0367349684, -0.00649112649, 0.00192930701, 0.00537621556, -0.00846851617, 0.0199782439, 0.0272627305, 0.0111130485, 0.00766313542, -0.0126817375, 0.00952632912, -0.00957441144, -0.0135712624, 0.0164081249, -0.0183314215, -0.0104218638, 0.00286691426, 0.0113234092, 0.00345592387, -0.0323113836, 0.0182352569, 0.0227309633, 0.00519590639, 0.00923783425, 0.00020604067, -0.0109868329, 0.00597123522, 0.00213065208, -0.00937006157, 0.00416814443, -0.00464896858, -0.0291139036, 0.0262770411, 0.0115337698, -0.0125134494, -0.00160475064, -0.00860675238, 0.0183073804, -0.0237647351, 0.00836634077, -0.0219856855, -0.0149776731, 0.0105240392, -0.0205912963, -0.0125855729, 0.00912964903, -0.016263878, -0.032383509, -0.0204230063, 0.0121888928, 0.0205792747, 0.0255558044, -0.0236805901, 0.0209759548, 0.00377146457, -0.0134871183, -0.0405575186, -0.0180309061, 0.00733857881, 0.020230677, -0.00651516765, 0.00190526585, -0.00628076587, 0.0104699461, 0.0200263262, -0.00759101193, -0.00691184774, -0.0206634197, 0.000318546023, -0.0102054933, -0.0138717778, 0.0272627305, 0.0155666824, 0.00698998151, 0.00534616364, -0.005649684, 0.00405394891, 0.00566170458, -0.00824012421, 0.00940612331, 0.0231757257, -0.0201825947, -0.0325998776, 0.0115638217, -0.0254596397, 0.00458886568, 0.00930394791, 0.0194733795, 0.00774126919, 0.0135352006, 0.00358514534, -0.0321190543, -0.0157830529, 0.0167927835, 0.0367830507, -0.0101213492, 0.0257962178, 0.0139559219, 0.0217452738, 0.0015521606, 0.0259404648, 0.0259164236, 0.00501559721, 0.0197017714, 0.00404192833, -0.0113835121, 0.00961047318, 0.0104579255, -0.00502761779, -0.020170575, 0.00332069187, -0.0163119603, 0.00122459908, 0.00917172153, 0.00680967234, -0.00565569429, 0.0115938727, 0.00653920881, 0.00839639176, 0.0153623326, 0.0363022238, -0.0203749239, 0.00448969565, -0.00923182443, -0.0195214618, -0.00451373681, 0.00387965, -0.0107404096, -0.00172044896, -0.00239059771, -0.0290898625, 0.0100011425, 0.0206273571, 0.019088719, -0.0273108128, -0.00308629, 0.00314639322, -0.0104038334, -0.00896737073, -0.0115157394, 0.00539424643, 0.00742272334, -0.0338500217, 0.00741671305, 0.0159874037, 0.0183674842, -0.000447767525, 0.0145930136, 0.00598626118, 0.0149896936, -0.027190607, 0.037432164, -0.0149656525, 0.00486834487, 0.00144773151, 0.0104939872, -0.0239570644, 0.00843245443, -0.0041110469, 0.0307487063, 0.0131385205, 0.0293783564, -0.0133428713, 0.00407198, -0.0344029702, 0.0202186573, 0.0122249546, -0.0216731504, 0.0166244954, -0.011269317, -0.0291860271, 0.00452876277, -0.0143646225, 0.0211682841, 0.00275722612, 0.0147372615, 0.0185237508, 0.0188242663, -0.0239450447, -0.0173457321, -0.00470306166, 0.00410503661, -0.0176823083, -0.00995907094, -0.0241614152, 0.014352602, 0.00701402267, -0.00157169404, -0.0225626752, 0.00576688489, -0.0133669125, 0.0115157394, 0.0268780719, 0.00687578553, -0.0109267291, 0.0132346852, 0.0169730932, -0.00811991841, 0.00319447555, 0.00763909426, -0.0191608444, 0.034066394, -0.0174418967, 0.00297810487, -0.00581797259, 0.00261598406, -0.00726044504, -0.000266707153, 0.000134574424, 0.0271425247, 0.0206513982, 0.0178265572, 0.00925586559, -0.0153022297, -0.0163600426, -0.0328643322, -0.0205432121, 0.0233560354, -0.0157590117, -0.020999996, 0.00900944322, 0.0389227159, -0.00600429205, -0.0432741754, -0.013066397, 0.0166244954, 0.00872094836, 0.0216010269, 0.0114736669, -0.00516585493, 0.0144247254, -0.0372157916, 0.000265392417, 0.00146200601, 0.0294023976, 0.0114916982, -0.00248526, -0.00934001, 0.0263491645, -0.00162578677, -0.00311033148, 0.0162879191, -0.0235483646, -0.00220127311, 0.00558657572, -0.000736637681, -0.0091236392, -0.000578491599, -0.0366388038, 0.00444762362, -0.00508171041, -0.00498554576, -0.0185117312, 0.0160955898, -0.0156508274, 0.00694790948, 0.000720485, -0.0205912963, 0.00762707368, 0.0115397805, 0.0240892917, 0.00473311311, 0.00276323641, -0.00324856839, -0.00552647281, -0.00164682278, -0.0128860883, -0.00937006157, 0.00924384501, -0.00439353101, -0.00855867, 0.00590211665, 0.00912964903, -0.0093339989, -0.0220217481, 0.00356711447, 0.0173216909, 0.00739267189, 0.00567673054, -0.00140866463, -0.00432741782, 0.00953233894, 0.0132947881, -0.0200383477, 0.0360137299, 0.0065452191, -0.00582999317, -0.00664138375, 0.00611548265, 0.00646107504, 0.00897338148, 0.0293062329, -0.0129582118, 0.00573082315, -0.0180309061, -0.00144097, 0.00118928857, 0.0196897499, -0.0109507702, 0.00955638, 0.0384178534, -0.0172014851, -0.0172014851, 0.017489979, 0.00746479537, 0.0133548919, -0.0140400659, -0.00411405182, 8.5928541e-06, -0.000208670186, 0.0157349706, -0.0102956481, -0.0182112157, 0.00924384501, 0.00431840215, -0.0035821402, 0.0176943298, 0.00573082315, -0.0157830529, -0.00132151518, -0.00973067898, -0.00848053675, -0.0199542027, -0.0462072045, -0.00269411807, 0.0073866616, -0.0040599592, -0.00134931284, -0.023223808, -0.0257240944, -0.028392667, 0.0128860883, -0.0126096141, -0.00676159, 0.0352444127, 0.00607040524, 0.019461358, -0.0110108741, 0.00111641362, -0.0359896906, 0.00915970095, -0.00125990959, 0.0102836275, -0.0135592418, 0.0257481355, 0.0240412094, -0.0201104712, 0.0190286171, -0.0237166528, -0.0387303866, 0.00369032566, 0.0210601, 0.00517787552, 0.00940011255, 0.0269742366, 0.00231697154, 0.00756697031, 0.00712220836, 0.00408099499, 0.010728389, 0.0137996543, -0.0099831121, 0.0155907236, 0.00598626118, -0.0146290753, 0.0127658816, 0.0335134454, -0.00437249476, -0.0115518011, 0.00526201958, -0.000803126663, 0.0252913516, -0.00423425809, -0.0159633625, -0.00215319078, -0.0101273591, -0.020999996, 0.012982253, 0.0199662242, 0.00430037128, 0.0397160761, 0.0146891782, 0.0179708041, -0.00801173318, 0.0407258086, -0.00442959275, -0.0312054884, 0.0113955326, 0.0147132203, -0.0176943298, 0.000942114857, 0.0133669125, -0.0227069221, 0.0132226646, 0.0152421268, 0.00976674072, -0.0184275862, -0.00179557782, -0.00888923742, 0.0325517952, -0.00361820194, 0.0112633063, 0.0308689121, -0.00714624953, -0.0266376603, 0.030556377, 0.00252132188, 8.81824e-05, 0.0123030888, 0.00768116629, -0.00816800073, 0.0280080084, -0.0145569518, 0.00524098333, 0.00873898, -0.000524023199, -0.0162758976, 0.00821608305, -0.0157229509, -0.00305774133, 0.000339957711, 0.0234161373, -0.00961648393, -0.0137515711, 0.000360242499, -0.0286090393, 0.0180429276, -0.00270012836, -0.0150017142, -0.00189775298, 0.000567597919, 0.00621465268, 0.0385621, 0.0491642728, -0.0210120156, 0.0116720069, 0.00564667908, -0.000319860759, 0.0271184836, 0.000814395957, -0.0158431567, -0.0277675968, -0.0124052642, 0.0328402929, -0.0209038313, 0.00585403433, -0.0142924991, -0.0245340541, -0.0177424122, 0.0253634751, -0.0066113323, -0.000924084, -0.00233049458, 0.0215769857, -0.00222230935, 0.0107524311, 0.0231877454, 0.0222982205, 0.00344991358, 0.0251471046, 0.00909959711, -0.0310852826, -0.024365766, -0.00676760031, -0.00721837301, -0.0211682841, 0.0139078395, 0.00257541449, 0.0148334261, 0.0196056049, 0.00618460076, -0.0263491645, 0.0402209423, 0.000244356343, -0.00174148509, 0.00419819588, -0.00506969, -0.0085346289, 0.0207475629, 0.021625068, -0.00614853902, 0.0323354267, -0.0243777856, 0.0115217492, -0.000894783763, 0.00960446335, -0.014749282, -0.0287532862, -0.0225626752, -0.0263010822, 0.0210721195, -0.0127177993, -0.00310131605, -0.0332009085, 0.0196536891, -0.0188723486, -0.0151339406, -0.00784945488, 0.00447166478, 0.0124533465, -0.00250028563, 0.021913562, -0.0210120156, 0.00613651844, -0.00606439495, -0.0149536319, 0.0087990826, 0.0159152802, -0.00626874529, 0.000375643896, -0.00343188248, -0.00547238, 0.0110529456, 0.00633485848, -0.0185838547, 0.00750686741, -0.00367229455, 0.00281732925, -0.0359175652, -0.00103452324, 0.0124773877, 0.0259164236, 0.0265414938, -0.0180549473, 0.00834830943, -0.0276714321, -0.0257000532, 0.0131505411, 0.0145689724, 0.029931305, 0.00937607139, -0.0154224355, -0.00628677616, 0.00393674802, -0.00459187105, 0.013667427, 0.0157590117, 0.0065452191, 0.00985088572, 0.0125975935, -0.00267758965, 0.00793961, -0.00449570594, -0.00350100105, 0.00257240934, 0.032383509, 0.035292495, 0.0241493937, -0.0113835121, -0.00134405389, -0.0220217481, 0.038778469, -0.0369994193, -0.00700200209, -0.00915970095, 0.00418317039, -0.013210644, -0.0104759568, -0.00369633595, 0.0160595272, 0.00436047418, -0.0186679978, 0.0234281588, -0.0250268988, -0.00135081541, -0.0156147648, 0.0180309061, -0.020002285, 0.0156267863, -0.0130062941, 0.015891239, 0.00778334122, -0.00573983882, 0.016035486, -0.0251230635, -0.0271665659, 0.0152180856, -0.00510274665, -0.00156718632, 0.00990497787, -0.00469404599, -0.00911762845, 0.00104203611, -0.0121888928, 0.00126066094, -0.000525150157, 0.0143285608, 0.00518689072, 0.015975384, -0.00429135561, 0.00822209381, 0.00874498952, -0.010842585, -0.0193411522, -0.000321363361, 0.017634226, -0.00794561952, 0.0107103586, 0.00540326163, 0.00440555159, -0.00820406247, 0.00181060354, 0.0108485958, -0.0106562655, -0.0142564373, 0.0233199727, 0.0185237508, 0.0140160248, 0.00314939837, -0.0100973081, -0.020771604, 0.0156027442, -0.00140415691, 0.0064250133, -0.00601330725, 0.0143766431, 0.00421622721, 0.0072243833, 0.00676760031, -0.00102175144, -0.0110529456, -0.00466399454, -0.0150618171, 0.0149175702, 0.00756697031, 0.00466399454, -0.0101393797, 0.0305323359, 0.013979963, 0.00368431536, 0.000458661176, 0.00154615019, 0.00641299225, 0.00179708039, 0.0136193447, -0.0133548919, 0.0192810502, 0.0162758976, 0.00625672471, 0.0253153928, -0.000226325443, -0.0136554064, 0.00212614448, 0.00243717758, 0.0279839672, 0.0121768722, -0.0108005134, -0.0117982235, -0.00131325098, -0.00389167061, 0.031157406, -0.0130543765, 0.00310432119, 0.000209609294, -0.00675557973, 0.0128740678, 0.00921980385, -0.0193892345, -0.0353886597, -0.0164081249, 0.00454078335, 0.00420721155, -0.00609144149, 0.0250028577, -0.0204951297, 0.0166846, 0.00894934, 0.0114796776, -0.0172976498, -0.0480583757, -0.000336013472, 0.00210210332, -0.0138597572, -0.00335675385, 0.0128500266, -0.016179733, 0.00121858879, -0.00503062317, 0.00241914671, 0.0254836809, -0.020314822, -0.0233440138, -0.0115518011, -0.0206994805, -0.00280230353, 0.00401788717, -0.00356110418, -0.00833027903, -0.00450472161, -0.0104459049, 0.000997710158, -0.00808986649, 0.00624470413, -0.00184816797, 0.0149295907, -0.00526803, -0.0132467058, 0.0188362878, -0.013667427, 0.0118222646, 0.00363623281, 0.00293302746, 0.011870347, 0.0053672, 0.00695993, 0.0208677687, -0.0315901488, 0.00601631263, -0.00555051398, 0.0197498538, 0.011101028, 0.00863079354, -0.00622667326, -0.018547792, -0.0100912973, 0.00176702882, 0.00800572243, -0.00351903192, 0.000676159, -0.0152421268, 0.0124172848, -0.00440254621, -0.0139559219, 0.00846851617, 0.0153262708, 0.0212163664, 0.00104053353, 0.0141843129, -0.00367830507, 0.00108561083, 0.0161917545, 0.000117200892, -0.010271606, 0.0236926116, -0.00016425029, -0.0100973081, -0.0185598135, 0.0162758976, 0.0292341094, -0.0110469358, 0.00698397122, 0.0085767014, 0.0380812734, 0.00432441244, 0.0140400659, 0.0017790494, -0.0138477366, -0.0110289045, 0.0174539182, -0.0141963335, -0.00827618595, 0.00168889493, 0.00644304417, -0.0239089821, -0.00326058897, 0.0015093371, -0.000722738856, 0.0106742969, -0.00637092, -0.00488637574, -0.0110589564, 0.0170692578, 0.023223808, 0.0147613026, 0.0117501412, 0.0190406367, 0.015975384, -0.010728389, -0.0041260724, 0.000613426499, 0.007675156, 0.00790955778, 0.0157229509, 0.00915369, -0.00615454931, -0.0129702324, 0.0011179162, -0.0117321098, -0.0319267251, -0.0064851162, 0.0193411522, 0.00741671305, -0.00685174437, -0.0174418967, -0.00172946451, -0.0244859718, 0.0184516273, 0.0234522, -0.024197476, -0.0131745823, 0.00385861401, -0.0210360587, 0.0137756122, -0.013439036, -0.0107404096, 0.0167687424, 0.00792758819, 0.0069358889, -1.0881934e-05, -0.00404793862, 0.00421622721, -0.0280560907, -0.0113414405, 0.0224424694, -0.0128019433, -0.0365666784, 0.0157590117, 0.0157950744, -0.00174298766, -0.00239360286, -0.0141963335, 0.0100372043, -0.0128019433, -0.0124052642, 0.00392172206, 0.0221419539, -0.00927990675, 0.0147011988, -0.0279599261, 0.00860074256, -0.0236445293, 0.0104098432, 0.0146050341, 0.00826416537, 0.00342887733, -0.0197738949, 0.00529507641, -0.00571579719, 0.0051388084, 0.00546336453, 0.0185598135, 0.013667427, -0.000411330053, -0.0173817948, -0.00397882, 0.00457684509, 0.0172255263, 0.0080598155, -0.00362721737, -0.00203899504, -0.0108786467, -0.00374441827, 0.0102896374, 0.00520492159, -0.00236805901, 0.00163179706, -0.0168168265, 0.013439036, -0.00465197396, 0.0223342832, 0.00471808715, -0.00288945273, 0.0256038867, -0.007675156, -0.0131745823, 0.028104173, 0.0168769285, -0.00060628925, 0.0153983943, -0.0126817375, -0.00774727948, -0.00330867129, -0.0157109294, 0.000437625131, 0.0119124195, -0.0168408677, -0.00317043439, -0.0161436722, 0.00284137041, 0.0109447604, 0.00210961606, 0.0106923273, 0.00836634077, -0.0104459049, -0.0198460184, -0.0151098995, -0.00383457285, 0.00176552625, 0.002396608, -0.0323354267, 0.0285369158, -0.00212464179, -0.00146951887, 0.000419969874, 0.00811991841, 0.0332009085, 0.0016348022, 0.0116058933, 0.00564066879, 0.00602232292, 0.00812592823, -0.00944819488, 0.0060854312, 0.00585403433, -0.0060343435, -0.024738403, 0.00692386832, -0.00366027397, -0.00723039359, -0.00546637, 0.0455340482, 0.0301476754, -0.0214207172, -0.0034979959, 0.00356410933, 0.0269261543, 0.00202396931, -0.00813193899, -0.000598025043, 0.0165163111, -0.0128139639, -0.000342587213, -0.0107464204, -0.01252547, -0.0125134494, -0.0136433858, -0.0107824821, 0.0134149948, 0.018403545, 0.019401256, 0.0106262146, 0.00549642136, 0.0170572381, -0.00694790948, 0.00465197396, 0.00857069064, -0.0103196893, -0.0143285608, 0.0107344, -0.0244859718, -0.00150783453, -0.00455580931, -0.0117381206, -0.0323113836, -0.0060343435, 0.0110950181, 0.0266857427, 0.0110289045, -0.00427633, -0.00478119543, -0.000676910277, -0.017862618, -0.00509072607, 0.0240772702, -0.00360017107, -0.00068104238, 0.00689982716, -0.0043394384, -0.00461891713, -0.00419218559, -0.0223463029, 0.021228388, 0.0165283307, -0.0135712624, -0.0139198601, 0.0281522553, -0.00821007323, -0.010614194, 0.0196777303, 0.00838437118, 0.000882763125, 0.00930995774, 0.0105480803, 0.0131745823, 0.00604335871, -0.0278397202, -0.0122610163, -0.00177003397, 0.00628076587, -0.00317944982, -0.010385802, 0.017502, 0.017802516, -0.00400286121, -0.021540923, 0.0013793644, -0.00192329672, -0.0181991942, -0.0053010867, -0.0285849981, -0.00491342228, 0.00849255733, 0.0184516273, 0.00787950587, -0.00246272143, 0.0244979914, 0.00298411516, -0.022538634, 0.00367229455, -0.017489979, -0.00289696571, 0.021913562, 0.0187040605, 0.00690583745, 0.00939410273, -0.00103903096, 0.014436746, 0.00688179582, -0.00481425226, -0.00309530576, -0.00202697446, 0.000951130351, 0.00641900254, 0.00233199727, -0.0478179641, -0.00780738238, 0.0233199727, -0.000898540195, 0.0146170547, 0.000305022841, 0.00109162112, -0.0218414385, -0.0226468183, 0.0122189447, -0.0225506537, 0.0147613026, 0.0161436722, 0.0230795611, -0.0287532862, -0.00947824679, -0.00756697031, 0.0110890074, 0.00459187105, -0.0135592418, -0.0173817948, -0.00653920881, -0.016263878, 0.0213726349, 0.0229833964, -0.00192930701, 0.0114015434, 0.00327861984, 0.00866685621, 0.00772924861, -0.00295105833, 0.0109808221, -0.0257721767, 0.000462417636, 0.00727246562, -0.0188242663, -0.00310432119, -0.00124939159, -0.00840240251, -0.00165734079, -5.41396766e-05, 0.00452575739, -0.00792758819, -0.0121708624, 0.000188479316, -0.0147613026, 0.00881110318, -0.00417716, -0.0083423, -0.0068337135, 0.00362421223, -0.00247023418, 0.00139363878, -0.0135712624, 0.00819204189, -0.00551445223, 0.019317111, -0.00897939131, 0.0130062941, 0.0259404648, 0.0128380051, 0.00754893944, -0.0134510566, -0.0215048622, 0.0144968489, 0.00436648447, 0.00605838466, -0.0187521428, -0.00972466916, 0.00232899212, 0.0149896936, -0.00274370308, -0.0230915807, -0.0038646243, -0.0303880889, -0.000225761978, 0.0236685704, 0.00167386921, 0.00721236272, -0.0265174527, -0.0234642196, 0.00704407413, -0.00487736, 0.0183915254, 0.0113714915, 0.0125014288, -0.0105180293, 0.0116720069, 0.0129702324, -0.00211712904, 0.0189444721, 0.00724842446, -0.00798769202, 0.00807183608, -0.0146891782, 0.00338380015, 0.0137876337, 0.00884115417, -0.00632884819, -0.00144547771, -0.021769315, 0.00665340433, 0.000476316462, -0.0281522553, 0.00498254038, 0.0104579255, 0.0145689724, -0.00354307308, 0.00115172414, -0.00764510455, -0.00712220836, -0.00973669, 0.00822209381, -0.00358514534, -0.0123451604, 0.0155065795, 0.00181060354, 0.0261808764, 0.00594719406, -0.00509373099, -0.00883514434, -0.0141843129, -0.0115217492, -0.00177153654, -0.000426731451, -0.0125975935, 0.014436746, -0.0257000532, -0.0220337678, 0.0278878026, -0.0097787613, 0.00956239086, -0.00449270103, -0.0103737814, 0.00602532784, -0.00153037324, -0.0159393214, -0.0159393214, -0.0282965023, 0.0172255263, 5.67222269e-05, 0.00825214479, 0.00181360869, -0.0137515711, -0.0119124195, -0.0120746968, 0.0191368014, -0.0147613026, 0.00568875112, 0.00289696571, -0.0165403523, -0.0208797902, -0.0151579818, -0.0156267863, -0.0246903207, -0.0136794476, -0.00338079501, 0.0271665659, 0.0247143619, -0.00570377661, -0.0243176837, 0.0109086987, -0.00032249029, 0.019257009, -0.0101754414, -0.000736262, -0.0174659379, 0.0131745823, -0.000409451837, -0.00786147546, -0.000587882707, 0.00417415472, 0.0135832829, 0.00417415472, -0.0123451604, -0.000157488699, -0.0103256991, -0.0115758423, -0.0165523719, -0.0183073804, -0.00462492742, -0.0219496246, 0.0190526582, -0.0022583711, -0.00810188707, 0.00467902049, -0.00599828176, 0.0113113886, 0.00768116629, -0.0101814521, 0.00439653592, 0.00765712513, -0.0159032606, 0.0478179641, -0.00473311311, -0.0233440138, -0.00222681696, 0.0108786467, -0.00988694746, -0.00743474392, 8.59285428e-05, -0.0196657088, 0.0165643934, -8.0434751e-05, 0.0023740693, 0.000103959443, -0.0126456758, 0.019942183, 0.0171654224, -0.00116299349, 0.00363623281, 0.0333211161, -0.0165042896, -0.00347996503, 0.0187281016, -0.0134510566, -0.0202907808, 0.0113714915, 0.0131144794, -0.00702003296, -0.0123571809, 0.0112572964, 0.0151700024, 0.00507870549, -0.00742272334, -0.000129221502, 0.0140160248, -0.00815598, -0.00443860842, -1.70917974e-05, 0.00228241226, 0.0166966189, 0.00267308182, -0.0136914682, 0.00771121774, -0.00745277479, 0.00244018272, 0.00192479929, -0.00167086406, -0.00771121774, 0.0285849981, 0.00299914088, -0.0212043468, 0.00110589562, 0.00946021546, -0.00374742341, -0.0166605581, 0.00144998543, -0.0274550598, 0.0127298199, -0.00940011255, -0.000545059273, 0.0113294199, 0.00408099499, -0.013979963, 0.0121708624, 0.023139663, -0.00718231127, 0.0109147085, 0.00998912193, -0.0230314787, -0.00898540206, -0.0114255846, 0.0145088695, -0.00577890547, 0.0237166528, -0.012669717, -0.00494347373, 7.97304165e-05, 0.0118342852, 0.00133879483, 0.00555351935, -0.0159874037, 0.00985689554, 0.019942183, -0.0163720641, 0.00649713678, -0.00492544286, 0.0188963898, 0.0282243788, -0.00954435952, -0.0069959918, 0.00761505309, -0.00279028271, -0.00357011962, -0.0130543765, -0.00812592823, 0.0170211755, 0.00941213313, 0.00152811932, 0.00796365086, -2.10477974e-05, -0.00523196813, -0.0104038334, -0.0187761839, 0.0263972469, 0.0285128746, -0.00277074939, -0.00916571077, 0.00257691718, 0.0198219772, 0.00736262044, -0.0123090986, -0.0238007959, -0.00331768673, 0.0123090986, 0.024053229, 0.0141362306, 0.011155121, -0.0164321661, -0.0132467058, 0.00663537346, 0.0128139639, -0.00624470413, 0.0208677687, 0.015494559, -0.0136313653, 0.00581496721, 0.0152180856, -0.00793359894, -0.0252913516, 0.0150137348, 0.0248826519, -0.0174539182, 0.0149055496, -0.0237046313, -0.00911762845, -0.0300995931, -0.0124052642, -0.00492544286, -0.00509373099, -0.0235243235, 0.00224785297, -0.00676159, 0.00390669657, 0.0238368586, 0.00240562344, -0.010956781, -0.0137996543, 0.0273588952, -0.0230555199, 0.0315661058, 0.00962850451, 0.00537922047, -0.00867887679, -0.0202426985, -0.00751888799, -0.000205101562, 0.0108185438, -0.0178265572, 0.00283986772, 0.00384058314, 1.0653026e-05, -0.00474513369, 0.0300034285, 0.00741070276, 0.0196176264, 0.00440254621, -0.0132226646, -0.00672552828, -0.0112212347, 0.0248826519, -0.00439052563, -0.020771604, -0.0227550045, 0.000831675541, 0.0120206047, 0.0220818501, 0.0022628787, -0.0254596397, 0.0306525417, -0.0071642804, -0.0111310799, 0.0138477366, -0.011611904, 0.00361820194, -0.000161714692, 0.00484730862, 0.0265895762, -0.00978477206, -0.00804779492, 0.00954435952, 0.00664739404, -0.00109988532, -0.00987492688, -0.00344690843, -0.00288494513, 0.0134510566, -0.00644905446, 0.0135592418, 0.00468202541, -0.0183194019, -0.0089613609, -0.0178145356, 0.0192930698, 0.00294354558, 0.00510575157, -0.00413208269, 0.0127899228, -0.00193832244, -0.00163329963, 0.00777733093, 0.00532512786, -0.0286571216, 0.00884716492, 0.00223733508, -0.00886519533, 0.0020900825, 0.0100792767, 0.0346433818, -0.006049369, 0.0174659379, 0.0104519157, -0.00179407524, -0.0161076095, -0.00623869384, 0.00481725717, -0.0132226646, 0.000621315, -0.024738403, 0.00968259666, 0.0182112157, -0.00569776632, -0.00458886568, -0.0227309633, -0.0143285608, -0.0140881483, 0.00964653492, 0.000284550246, -0.00843245443, 0.0133789331, 0.00769318687, -0.0166244954, -0.0255798455, -0.0133308508, -0.020999996, 0.0206634197, -0.008751, 0.0215289034, 0.00157770433, 0.0348597541, -0.00819805264, 0.00774126919, 0.00320349098, -0.000292814424, -0.0140160248, 0.00190376327, 0.00493445806, -0.0152180856, 0.00438451534, 0.0029871203, -0.037432164, -0.0131505411, 0.00515082898, 0.00910560787, 0.0187882055, 0.00568574574, 0.015206065, 0.00724241417, 0.0351242051, 0.00762707368, 0.0212404076, -0.014352602, -0.00232598698, -7.10436507e-05, 0.000891778618, -0.00118327828, 0.023596447, -0.0280320495, -0.0209879745, -0.0222621597, -0.00918975193, 0.00158070948, 0.0062026321, 0.00121107593, 0.00343488762, 0.00996508077, 0.00212313933, 0.00555952964, 0.0090214638, -0.0175380614, -0.0257481355, 0.0091236392, 0.0228391476, -0.0110769868, 0.0193892345, -0.00393073773, -0.00986891612, -0.0323113836, 0.00590211665, -0.0202547181, 0.0261087529, -0.00554450369, -0.00569175603, -0.00405695383, -0.0279599261, 0.00825214479, -0.00261147623, -0.0199301615, 0.00323955296, 0.00789152645, -0.0273588952, -0.00326659926, -0.0170572381, -0.0279358849, -0.0216370877, -0.00792758819, 0.0149896936, -0.00764510455, 0.00438451534, 0.00103527459, 0.00552046252, -0.0515443534, 0.00291800173, 0.0298351403, 0.0193291325, 0.00808385666, -0.00394576322, 0.00656926027, 0.0362541415, -0.000275534781, -0.0129101295, -0.0275993086, 0.00841442309, 0.002396608, 0.017093299, -0.0190526582, -0.0145689724, -0.00708013587, 0.00385560887, 0.0178746395, 0.000951130351, 0.0126456758, 0.0176943298, -0.00380752655, -0.014352602, -0.0110349152, 0.00986891612, 0.0116179138, 0.019317111, 0.00570377661, 0.0266857427, 0.00715226, -0.0122069241, -0.00836634077, 0.028392667, -0.0129942736, -0.0133669125, -0.00384358829, 0.0192089267, 0.0172014851, 0.00856468081, -0.00404192833, 0.0277675968, 0.00249127019, 0.0141722923, -0.0073445891, -0.0163600426, -0.00313437264, 0.00652117794, -0.000649112626, 0.0293302741, 0.024137374, -0.00176552625, -0.00026633151, -0.0128019433, 0.0140280453, -0.00310432119, 0.00161827391, 0.0101814521, 0.0112933582, 0.000895535049, -0.0159513429, -0.0115758423, 0.00167236663, 0.0154464766, -0.0128740678, 0.00616657, 0.0049615046, 0.0109808221, -0.00265655364, -0.00274370308, -0.00556554, 0.028392667, -0.0317103527, 0.00600429205, 0.00148980366, -0.00776531035, 0.0078554647, -0.0109086987, 0.0132587263, 0.00387363974, 0.000583750603, -0.000278915599, -0.022454489, -0.00573983882, -0.0313016549, -0.0085767014, 0.00259494805, 0.0156027442, 0.0246061776, -0.0352444127, -0.0334172808, -0.00164982793, -0.0246903207, 0.0137635916, -0.0251230635, 0.0156748686, -0.013667427, -0.0197979361, -0.0109267291, -0.0107945027, 0.000898540195, 0.0155666824, 0.00638895109, -0.00133128196, 0.0241253525, -0.000122366, -0.0205311924, 0.020915851, -0.0050877207, 0.00586906029, 0.00408700574, 0.008751, -0.0223583244, 0.00591413723, 0.00390369119, 0.0248345695, -0.0232117865, -0.00383457285, 0.0175140202, 0.0354607813, -0.00816800073, -0.0146771576, -0.00047857032, 0.00230344827, -0.0115698315, -0.0103196893, -0.00857069064, 0.0118282745, -0.00165433565, 0.00646107504, 0.0206513982, -0.0236204881, -0.00529808132, -0.0261568353, 0.00110439304, 0.0101273591, -0.00660532201, -0.00535217393, 0.0157469921, -0.000171481443, -0.0114556365, -0.0205552336, 0.0205432121, 0.00751888799, -0.0185237508, -0.0089613609, 0.0170812793, 0.00624470413, 0.00493145315, -0.00294204289, -0.0282965023, -0.0171534028, 0.019629648, 0.0147973644, -0.00260246079, 0.00047256, -0.0150738377, 0.0115217492, 0.00920778327, -0.007675156, 0.0316622704, -0.000251305755, -0.00613651844, 0.0203268416, 0.0129221501, -0.0136193447, 0.00304421806, -0.00643102359, -0.00995907094, 0.00358514534, -0.0343308449, 0.0100552356, -0.00974871, -0.00898540206, 0.0155426413, -7.29570866e-06, 0.0161556918, -0.00494347373, 0.00736863073, -0.00921379309, -0.00117276027, 0.0028804373, -0.0148815084, 0.00273619, 0.00440555159, 0.0231877454, 0.00129822525, 0.0133548919, 0.00219526282, -0.019317111, 0.00042184809, -0.00462793279, 0.00833027903, 0.0125014288, -0.00223733508, -0.00854664948, -0.0118643362, -0.000174956134, 0.0285128746, -0.0123331398, -0.0191848855, 0.00289696571, -0.00281582656, 0.0162278153, -0.014580993, 0.00609745178, -0.0181751531, -0.0116299344, -0.00481725717, -0.00786147546, -0.0121768722, -0.00420120126, 0.00162278162, 0.00756096, 0.0275271833, -0.000171105785, 0.0127779022, -0.024281621, 0.00372939254, -0.0189564936, -0.0103377197, -0.0162999388, 0.0321190543, -0.00940011255, 0.00908757653, 0.006262735, -0.0269501954, -0.00248375745, -0.0149055496, 0.0335134454, -0.0029690892, 0.0190526582, -0.00255888607, 0.00129221496, -0.0328402929, 0.000484580611, -0.00539725134, -0.0134029742, -0.0105721215, -0.0131745823, 0.0103617609, -0.00818603206, 0.0128380051, -0.00151835266, -0.00372338225, -0.0113714915, -0.0226347987, -0.00787950587, -0.00831825845, -0.0332970731, 0.0218654796, -0.0064851162, -0.00720635243, -0.00140115176, -0.00739868218, -0.029931305, 0.0057007717, 0.00726645533, 0.012982253, -0.00742272334, -0.00375944399, -0.0105300499, -0.0148093849, 0.0011569832, -0.0136914682, -0.00810789783, 0.0273108128, 0.00468503078, 0.0140040042, 0.00869089738, 0.0265174527, -0.00738065131, 0.0211322233, -0.0153863737, -0.00449270103, -0.00901545305, -0.0317824781, 0.0118763568, -0.0151339406, 0.0072844862, -0.0146410959, 0.0113654817, 0.0061004567, -0.0059231529, -0.0114856875, -0.00246873172, -0.00318245497, -0.00573082315, -0.00146501116, -0.00830623787, 0.0169129912, 0.0100552356, 0.00745277479, 0.011413564, -0.0111190593, -0.0217332523, 0.0013402974, 0.019545503, 0.00372338225, 0.00717029069, 0.0127658816, -0.00981482398, -0.0110469358, 0.00077006995, -0.00973669, 0.0241253525, 2.46046748e-05, -0.0280560907, -0.00816199, -2.17051729e-05, -0.0188843701, -0.0122489957, 0.000860224478, 0.0189204309, 0.00488036545, -0.00525300391, 0.000789603451, -0.0174058359, -0.0162278153, 0.0239330232, 0.00182262412, -0.00941213313, -0.0303159636, 0.00999513268, 0.0284888335, -0.000882763125, 0.0125495112, -0.023368055, 0.00901545305, -0.00353706279, 0.00841442309, -0.00745277479, 0.00448969565, -0.00776531035, -0.00385861401, -0.00932798907, 0.0205191709, -0.00746479537, -0.000326246722, 0.00454679364, -0.00736262044, 0.0166244954, 0.000414710841, 0.0165884346, -0.0187401231, 0.021084141, -0.00342887733, -0.00804779492, -0.0527944937, -0.0116299344, 0.00535217393, 0.0164201465, 0.0263732057, 0.0327922106, -0.0073866616, 0.01252547, 0.0114736669, 0.00347395474, -0.00753090857, 0.000233274855, 0.0212884899, -0.0228752103, 0.000143589874, -0.00405695383, -0.00490140123, -0.0121588418, 0.00121558364, -0.0130183147, -0.00318846526, 0.0261568353, -0.0078975372, 0.0230314787, 0.0127658816, 0.025820259, 0.0310612414, -0.0203989651, -0.00322753238, 0.00190376327, 0.00466699945, 0.00886519533, -0.0261808764, -0.00350701134, 0.0056346585, -0.018403545, -0.0188963898, -0.00845048483, 0.00425529387, -0.00184516283, -0.0142083541, -0.0207836255, 0.00537621556, -0.0150257554, 0.0033537487, -0.0139559219, -0.000286052818, -0.00042898531, -0.00778935151, -0.0121107586, -0.0371917486, -0.0144127049, -0.0255558044, -0.0344991349, -0.00180158811, -0.00325457868, 0.0142323952, -0.00916571077, -0.011185172, 0.0132827675, -0.00545134395, 0.00890726782, 0.0237887762, -0.0111971926, 0.00331468158, 0.0150257554, -0.00398783572, -0.0100131631, -0.0139679424, -0.0085767014, -0.00493746344, -0.0010540568, -0.0131625617, -0.0180309061, -0.018631937, 0.00696594035, 0.0255317632, 0.0110589564, 0.00378949544, -0.0108966781, -0.0124293054, 0.0269501954, -0.0176101848, 0.00320649613, 0.00298561761, -0.0113775022, 0.0185718331, 0.0256760102, -0.00312535721, -0.00333872298, -0.0143405814, -0.00374441827, -0.0184275862, 0.00515082898, 0.00934001, -0.000776831585, -0.00166335108, -0.00961047318, 0.0260366295, 0.00160024292, 0.011870347, -0.000945871288, 0.0128500266, 0.0495248921, 0.010385802, -0.010956781, 0.00302318204, -0.00499756634, -0.00174749538, -0.00683972379, 0.000881260552, -0.0157830529, -0.00949026737, 0.000324368506, -0.00181360869, 0.00884716492, 0.0113354297, -0.0162879191, 0.0118463058, 0.0232117865, 0.0125735523, -0.00408099499, 0.0277435556, -0.00600729696, -0.000242665948, 0.00158822234, -0.00528005045, -0.00810188707, 0.0087990826, -0.0155426413, -0.000451148313, 0.00876903068, -0.00122384774, 0.0128259845, -0.0118583264, 0.0268299896, -0.000193644431, 0.0217092112, 2.49451034e-07, -0.0245580953, 0.0085346289, -0.00643703388, -0.00819204189, -0.0191247817, 0.00521093188, 0.00105856452, 0.0181871746, 0.00658128085, 0.00448068045, -0.0209879745, -0.0165643934, 0.0125975935, 0.0177544337, -0.0164922699, -0.00961648393, -0.0191608444, -0.0170211755, -0.000848203897, -0.00950829778, -0.0140520865, 0.0123571809, -0.000632208656, -0.0182953607, -0.0160114449, -0.010812534, -0.00765712513, 0.0140400659, 0.0158191156, -0.0252673104, -0.0257240944, -0.00131775881, 0.0130543765, -0.0264693704, -0.0227550045, -0.0250749812]
27 Jun, 2023
deque::emplace_front() and deque::emplace_back() in C++ STL 27 Jun, 2023 Deque or Double-ended queues are sequence containers with the feature of expansion and contraction on both the ends. They are similar to vectors, but are more efficient in case of insertion and deletion of elements at the end, and also the beginning. Unlike vectors, contiguous storage allocation may not be guaranteed. deque::emplace_front() This function is used to insert a new element into the deque container, the new element is added to the beginning of the deque. Syntax : dequename.emplace_front(value)Parameters :The element to be inserted into the dequeis passed as the parameter.Result :The parameter is added to thedeque at the beginning. Examples: Input : mydeque{1, 2, 3, 4, 5}; mydeque.emplace_front(6);Output : mydeque = 6, 1, 2, 3, 4, 5Input : mydeque{}; mydeque.emplace_front(4);Output : mydeque = 4 Errors and Exceptions 1. It has a strong exception guarantee, therefore, no changes are made if an exception is thrown. 2. The parameter should be of the same type as that of the container, otherwise, an error is thrown. CPP // INTEGER DEQUE EXAMPLE // CPP program to illustrate // Implementation of emplace_front() function #include <deque> #include <iostream> using namespace std; int main() { deque<int> mydeque; mydeque.emplace_front(1); mydeque.emplace_front(2); mydeque.emplace_front(3); mydeque.emplace_front(4); mydeque.emplace_front(5); mydeque.emplace_front(6); // deque becomes 6, 5, 4, 3, 2, 1 // printing the deque for (auto it = mydeque.begin(); it != mydeque.end(); ++it) cout << ' ' << *it; return 0; } Output: 6 5 4 3 2 1 CPP // STRING DEQUE EXAMPLE // CPP program to illustrate // Implementation of emplace_front() function #include <deque> #include <iostream> #include <string> using namespace std; int main() { deque<string> mydeque; mydeque.emplace_front("portal"); mydeque.emplace_front("science"); mydeque.emplace_front("computer"); mydeque.emplace_front("a"); mydeque.emplace_front("is"); mydeque.emplace_front("GEEKSFORGEEKS"); // deque becomes GEEKSFORGEEKS, is, a, // computer, science, portal // printing the deque for (auto it = mydeque.begin(); it != mydeque.end(); ++it) cout << ' ' << *it; return 0; } Output: GEEKSFORGEEKS is a computer science portal Time Complexity : O(1) Application Given an empty deque, add integers to it using emplace_front() function and then calculate its size without using size function(). Input : 1, 2, 3, 4, 5, 6Output : 6 Algorithm 1. Add elements to the deque using emplace_front() function 2. Check if the deque is empty, if not, increment the counter variable initialised as 0, and pop the back element. 3. Repeat this step until the deque becomes empty. 4. Print the final value of the variable. CPP // CPP program to illustrate // Application of emplace_front() function #include <deque> #include <iostream> using namespace std; int main() { // variable declaration int count = 0; // deque declaration deque<int> mydeque; // adding elements to deque mydeque.emplace_front(1); mydeque.emplace_front(2); mydeque.emplace_front(3); mydeque.emplace_front(4); mydeque.emplace_front(5); mydeque.emplace_front(6); // counting elements in deque while (!mydeque.empty()) { count++; mydeque.pop_back(); } cout << count; return 0; } Output : 6 deque::emplace_back() This function is used to insert a new element into the deque container, the new element is added to the end of the deque. Syntax : dequename.emplace_back(value)Parameters :The element to be inserted into the dequeis passed as the parameter.Result :The parameter is added to thedeque at the end. Examples: Input : mydeque{1, 2, 3, 4, 5}; mydeque.emplace_back(6);Output : mydeque = 1, 2, 3, 4, 5, 6Input : mydeque{}; mydeque.emplace_back(4);Output : mydeque = 4 Errors and Exceptions 1. It has a strong exception guarantee, therefore, no changes are made if an exception is thrown. 2. Parameter should be of same type as that of the container, otherwise an error is thrown. CPP // INTEGER DEQUE EXAMPLE // CPP program to illustrate // Implementation of emplace_back() function #include <deque> #include <iostream> using namespace std; int main() { deque<int> mydeque; mydeque.emplace_back(1); mydeque.emplace_back(2); mydeque.emplace_back(3); mydeque.emplace_back(4); mydeque.emplace_back(5); mydeque.emplace_back(6); // deque becomes 1, 2, 3, 4, 5, 6 // printing the deque for (auto it = mydeque.begin(); it != mydeque.end(); ++it) cout << ' ' << *it; return 0; } Output: 1 2 3 4 5 6 CPP // STRING DEQUE EXAMPLE // CPP program to illustrate // Implementation of emplace_back() function #include <deque> #include <iostream> using namespace std; int main() { deque<string> mydeque; mydeque.emplace_back("Hi"); mydeque.emplace_back("this"); mydeque.emplace_back("is"); mydeque.emplace_back("geeksforgeeks"); // deque becomes Hi this is geeksforgeeks // printing the deque for (auto it = mydeque.begin(); it != mydeque.end(); ++it) cout << ' ' << *it; return 0; } Output: Hi this is geeksforgeeks Time Complexity : O(1) Application Given an empty deque, add integers to it using emplace_front() function and then calculate the sum of the elements. Input : 4, 5, 9, 2, 6Output : 26 Algorithm 1. Add elements to the deque using emplace_back() function 2. Check if the deque is empty, if not, add the back value to the sum variable initialised as 0, and pop the back element. 3. Repeat this step until the deque becomes empty. 4. Print the final value of the variable. CPP // CPP program to illustrate // Application of emplace_back() function #include <deque> #include <iostream> using namespace std; int main() { // variable declaration int sum = 0; // deque declaration deque<int> mydeque; // adding elements to deque mydeque.emplace_back(4); mydeque.emplace_back(5); mydeque.emplace_back(9); mydeque.emplace_back(2); mydeque.emplace_back(6); // counting sum of elements in deque while (!mydeque.empty()) { sum = sum + mydeque.back(); mydeque.pop_back(); } cout << sum; return 0; } Output : 6 Time complexity: O(n), // n is the number of elements in the dequeue.Auxiliary Space: O(n). Let us see the differences in a tabular form -: deque::emplace_front() deque::emplace_back() 1. It is used to insert a new element at the beginning of the deque It is used to insert a new element at the end of the deque 2. Its syntax is -: emplace_front (Args&&… args); Its syntax is -: emplace_back (Args&&… args); 3. It does not have any return value. It does not have any return value. 4. Its complexity is constant. Its complexity is constant. 5. It is present in <deque> header file It is present in <deque> header file Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL
https://www.geeksforgeeks.org/deque-emplace_front-deque-emplace_back-cpp-stl?ref=asr10
PHP
deque::emplace_front() and deque::emplace_back() in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0352803282, 0.0128614148, -0.0111263171, 0.0282387231, 0.0282242633, -0.0212838706, -0.00990451872, 0.0153267, -0.00400518486, 0.00991897751, -0.015037518, 0.0429436788, 0.00785131939, -0.0130349249, -0.0122902784, -0.00767058, 0.012080621, 0.03730461, -0.0199247114, -0.0200259257, -0.0154568329, -0.00961533561, -0.0243202932, -0.0288460068, -0.0210091472, 0.0364659801, -0.00207850314, 0.00352261076, -0.00267675053, -0.00266590598, -0.00320993154, 0.0021941762, 0.00937676, -0.0151965683, -0.0182329901, 0.0380564854, 0.0429436788, -0.00414977642, -0.00526313111, 0.00339428592, 0.00571136503, 0.0417291112, -0.00137090834, 0.00832847133, 0.0010040073, 0.0260987692, 0.0193463452, -0.0438979827, 0.0124131814, -0.00664398028, 0.0334006399, 0.0188981108, 0.0582703799, 0.0257083718, -0.0182908271, 0.00466307625, 0.0176980011, -0.02829656, -0.0229177549, -0.0106997723, -0.034817636, 0.00012606573, -0.019115, -0.0188981108, -0.00615959847, 0.00109076221, -0.0224695206, 0.0205753725, 0.0465873852, -0.0198813342, -0.0470500775, 0.0387505256, -0.0279350802, 0.00292436336, -0.0123914927, -0.0274579283, -0.0199970063, -0.00939121936, -0.0145314476, 0.0205319952, 0.00415700627, -0.000608639908, -0.0250577088, -0.00425099069, 0.0568244644, -0.0144519219, -0.0130421547, -0.036292471, 0.045112554, 0.0174811147, -0.0187390596, -0.0305955652, 0.0459511839, -0.046009019, -0.0206187498, 0.0552917942, -0.00179203111, 0.0441293307, -0.0236551724, 0.0193029679, 0.00522336829, 0.0375070386, 0.022556277, -0.000947074441, 0.0022140576, 0.0478308722, 0.044881206, 0.019837955, -0.00720065739, -0.00269663171, 0.00265867659, -0.0198234972, -0.0251300056, 0.0552050397, -0.0250287913, -0.004706454, 0.0377094671, -0.0377673022, 0.0393867269, 0.0195487719, 0.0103672119, 0.0454884917, -0.00644155219, 0.0243058335, -0.0312317666, 0.0145314476, -0.008111584, -0.0257228296, 0.0187968966, -0.00479682349, -0.0184787959, 0.000875230529, -0.008111584, -0.000741935219, 0.00448595174, 0.0410929099, 0.0156881791, 0.0568533838, -0.00411724346, 0.0288460068, -0.0256360751, -0.0187535193, 0.0128397262, 0.0287592523, -0.023626253, -0.00314125069, 0.00805374701, 0.04973948, -0.0265759211, 0.00963702425, -0.0448522866, -0.0268072672, 0.0352514125, -0.00108172523, 0.0501732565, -0.0164545141, 0.0106419353, 0.0133024193, 0.00159863988, -0.0311739314, 0.0103816707, -0.0330825374, -0.0126879057, -0.0225996543, -0.0579811968, 0.0457776748, 0.0733946562, -0.02249844, -0.0550893657, 0.0457487553, 0.00447510742, 0.0554653034, 0.0227587037, 0.037535958, -0.018594468, -0.011487796, 0.0217321049, -0.0337476581, 0.0144374631, 0.00188872661, 0.0190571621, 0.00110522134, 0.0198813342, 0.0150519768, 0.0134108635, 0.00420399848, 0.0229900517, -0.0326487646, 0.0358876139, -0.0149652222, -0.00318282074, 0.041382093, 0.0354249217, 0.00354249217, 0.0143796261, -0.00241829315, -0.00534627121, 0.0234093666, -0.00851644, 0.0565642, -0.0215441361, -0.041150745, -0.00306353276, -0.0264024101, 0.0192162115, -0.0308269113, -0.0207922608, -0.0366973281, 0.0238142218, 0.0137723414, 0.006217435, -0.005299279, 0.0308847483, -0.000991355628, 0.0117914379, 0.00581619376, -0.0415556021, 0.0111335469, -0.0111624645, -0.0372756943, -0.021616431, -0.0139313927, 0.00675242394, -0.0500575826, -0.0417291112, -0.032677684, -0.00681749, 0.00821279828, 0.000235413056, -0.00931169372, 0.0246962309, 0.0174811147, 0.00440642657, -0.00340874493, 0.0153700784, -0.0117986677, -0.0403988697, 0.0053281975, -0.00293159299, 0.0255059432, 0.0141338203, 0.0366394892, -0.049855154, -0.00245082611, 0.0183342043, 0.0342103541, 0.0202717297, -0.00208031037, 0.0139675401, -0.0182474498, 0.0124637885, -0.0121673755, 0.00210380647, -0.031145012, 0.00847306289, 0.0294099133, 0.0177124608, -0.0228454601, -0.0194620173, -0.0352224931, -0.00597162964, 0.0279061627, -0.0354249217, 0.00531735318, -0.00442450028, -0.0031882429, 0.0446787775, 0.0182329901, -0.0144230034, -0.0395313203, 0.0478597917, -0.0114444187, -0.00730187166, -0.0344706178, 0.0140470657, 0.0329668671, -0.0156881791, 0.00786577817, 0.031434197, -0.00386059354, -0.00306534022, -0.0133313378, 0.0020007852, 0.00827063434, 0.0214573815, -0.00166460976, -0.0330536216, -0.00607645838, -0.00278519397, -0.00545833, -0.00708498433, 0.0126879057, 0.00257372903, 0.0105913281, 0.0652396902, 0.0306244828, -0.0329668671, -0.0193318855, -0.03256201, -0.0248263627, 0.0216019731, -0.0263445731, 0.0261855237, 0.000651565497, -0.0520818643, -0.0354538411, 0.0178570524, 0.00175588322, 0.00439558225, -0.00501371082, 0.0152688641, -0.0327066, -0.0277181938, -0.00313040637, -0.0358008593, 0.00520529458, 0.0290918127, 0.0114805661, -0.069635272, -0.0137000456, -0.00585234165, -0.0232503153, -0.022079125, 0.00253396621, 0.0529204942, -0.0159050673, 0.010952807, 0.00956472848, 0.0103093749, -0.0371021815, -0.059687376, 0.0154279144, -0.0196210686, -0.0170617979, -0.0269373991, -0.0289905984, -0.0117480606, 0.00386059354, 0.0243636705, -0.00618128711, -0.0174811147, -0.0032677683, -0.0141844274, -0.0171196349, 0.036292471, -0.0333717205, -0.0229611322, -0.0121529168, 0.0228454601, -0.0151531911, 0.0013763305, -0.0120661622, 0.0037593795, -0.0131361391, 0.0245227218, -0.0229755919, -0.00565714296, -0.0126300687, -0.001273309, -0.00581257883, 0.0135048479, 0.0342392698, 0.004381123, -0.00494864443, 0.00187246013, -0.0111407759, -0.033574149, -0.021558594, 0.00367623917, -0.00591017818, -0.00883454178, -0.0120517025, 0.0162520856, -0.0292653218, -0.000194520777, -0.0122830495, 0.037188936, 0.0164255966, 0.00517999101, 0.022556277, -0.0300461166, 0.0289472211, 0.011899882, -0.00238395249, 0.00160406216, -0.0270241536, -0.0291930269, 0.0346730463, 0.00392927462, 0.00412808778, -0.0210380647, -0.00386420824, -0.053585615, -0.0108154453, -0.00704522151, -0.00723319035, -0.00694762217, -0.0280507542, -0.0235828757, -0.0541061461, 0.0227008685, 0.0328222737, 0.027472388, 0.0202861894, 0.00657891389, 0.0195198543, 0.00980330445, 0.0240455698, 0.0322439075, 0.0130204661, 0.0243202932, -0.0156014245, -0.0225707348, -0.00936230086, 0.0165557284, 0.0312317666, -0.0481200553, 0.0199391693, 0.0151676498, -0.0198234972, -0.0461825281, -0.0191728342, -0.0221803375, 0.0283254776, 0.0369865112, 0.00510408031, -0.0112564499, -0.00353887724, 0.0434931293, -0.00431244215, 0.00520529458, 0.0183052849, 0.0164255966, 0.0322728269, -0.00362743973, -0.0416134372, 0.0565063655, 0.000881104555, -0.021081442, -0.0140759842, 0.0179871842, 0.0269518588, 0.0401096866, -0.0377673022, -0.0203440264, 0.0528626591, -0.0248263627, -0.00947074406, 0.0174811147, 0.0130927619, -0.0216019731, -0.00153989962, -0.0195343141, -0.00772841647, 0.0274579283, -0.00791638531, 0.0323885, -0.0327644385, 0.057663098, -0.0176835414, -0.00260445476, 0.0272555, 0.0271109082, 0.0238142218, 0.0467898138, -0.000835467828, 0.00568244653, 0.00647408515, -0.0212260336, -0.0145892836, -0.0231201835, -0.0138229486, 0.0186089277, 0.0102226203, 0.0236117952, -0.00444618892, -0.0388372801, -0.0249131173, -0.018594468, -0.0125794616, 0.00649215886, 0.00994066708, 0.000384297135, -0.0317522958, -0.0170184206, -0.0158906076, 0.0107286908, -0.0148350894, 0.00220863544, 0.0160785764, 0.0036238248, 0.0120733911, -0.00361298048, -0.0228743777, 0.0462692864, 0.0360322073, -0.0257951263, 0.0101069473, -0.00142513018, 0.00885623, 0.044765532, 0.00229177554, -0.0270675309, 0.0616538227, 0.0169172063, -0.0361478776, -0.0212404933, -0.00766335, -0.0173943602, -0.00875501614, -0.0158472303, 0.0380275697, -0.0108154453, 0.0363792256, 0.00295689655, -0.0367551632, -0.00774287572, 0.0305377282, -0.050982967, 0.0203295667, 0.0189270284, 0.0136132911, 0.0135337655, 0.0130638434, -0.00442088535, 0.0188113563, -0.00167455047, -0.0157315563, 0.0276458971, -0.0395602398, -0.0282387231, 0.00664036535, -0.0113721229, 0.0170473401, 0.0126879057, -0.0294677503, 0.0134759294, 0.0281808861, -0.0123191969, -0.00105822913, 0.00384974899, 0.0177992154, 0.00282676402, -0.0100274216, -0.0088996077, 0.00652107736, 0.0290918127, -0.0195343141, 0.0255926978, 0.0147627937, 0.0165991057, 0.0068391785, -0.00535711553, -0.0014359745, -0.0303931367, 0.000713920628, -0.0137000456, -0.000402822916, 0.00827063434, -0.00659698807, -0.00336536742, 0.0362635516, 0.0267638899, 0.0248408224, -0.0106853126, -0.05980305, 0.0119794067, 0.0020315107, -0.0121239983, 0.00284664542, 0.00254661799, 0.00341778202, 0.0393288918, -0.0125360843, 0.0080826655, 0.0317522958, 0.0478019565, -0.00342501141, -0.0336319879, 0.0119360294, 0.00448956667, -0.0094924327, -0.0111335469, -0.0364949, 0.0105840992, -0.0101503246, -0.0483514033, -0.015398996, -0.0240021907, 0.0107431496, 0.0234816615, 0.00450764038, -0.00534265628, 0.014921844, -0.00414254703, 0.0243925881, -0.0042220722, 0.0102081606, -0.0254481062, 0.0122107537, -0.016281005, 0.00937676, 0.0351068191, -0.0294099133, -0.0172063895, -0.0324752554, 0.0259252582, 0.0160641167, 0.00585234165, -0.00231707911, -0.0325909257, 0.0194620173, 0.0285568237, -0.0156737193, -0.0146760391, 0.0162087083, -0.00869718, 0.0182619076, -0.0485538319, 0.0202861894, -0.0175678693, -0.0275013056, -0.00809712522, 0.0076561207, 0.00856704731, 0.0294677503, -0.00387143786, -0.0213706251, 0.000274272024, -0.0578655228, 0.00554869929, -0.00570413517, -0.00881285314, -0.0251878425, 0.00597885903, 0.0202138945, -0.00830678269, 0.041150745, -0.0188836511, 0.00570052071, -0.000412763591, 0.00900082197, -0.015398996, 0.0716595575, -0.00738501176, 0.0126083801, -0.00863211323, 0.0268361848, -0.00206223642, 0.00742477411, -0.0201560576, 0.0106202466, 0.000623550906, 0.0104322778, -0.00779348286, -0.0217176452, 0.00574028306, -0.0209079329, -0.0185510907, 0.0330536216, -0.00285206758, 0.00330753089, 0.00398349622, 0.00209476962, -0.00597524457, -0.0256794523, -0.0213272478, 0.00773564586, -0.00622105, 0.0115673216, -0.0040088, -0.0434352905, 0.019895792, -0.00894298498, -0.00759828417, -0.0227297861, -0.0147772525, 0.0266915932, -0.0122252125, -0.0145097589, -0.0101792431, -0.0243925881, -0.00579811959, -0.0107503794, -0.0244215075, -0.00155887729, -0.0265614614, 0.00506431796, 0.0177413784, 0.0106997723, 0.0240889471, -0.0185366329, 0.0222526342, 0.0259830952, -0.00386420824, -0.0222670939, -0.00185619353, 0.00729464181, -0.00817665, 0.0105118034, 0.027833866, -0.0222381745, -0.0237274673, -0.0324174166, 0.021558594, 0.0413242541, -0.0051402282, 0.0156303421, -0.0133747151, 0.00251227757, 0.0254336484, -0.032446336, 0.00531012332, -0.00358767691, 0.026286738, 0.00819833856, -0.0107142311, -0.0182763673, 0.0116396174, -0.0496238098, 0.00198090379, 0.00439196732, 0.00467030611, -0.0130783021, 0.0277760308, 0.00644516665, -0.0176546238, -0.0201271381, -0.0337476581, -0.00991897751, -0.00658252882, 0.00252312189, 0.0206765868, 0.00827063434, -0.0438401476, -0.0126662171, 0.0430304334, -0.00176672754, -0.00457993615, 0.0117046833, 0.00527397543, 0.019115, -0.00581980869, 0.0016890096, 0.00847306289, -0.00812604278, 0.046240367, 0.0142278047, -0.000906859932, 0.0125505431, 0.0106202466, 0.00263337302, 0.0129554, -0.0094924327, -0.0158327706, -0.0263011958, 0.0208934732, 0.00908757653, 0.0172208492, 0.00554869929, 0.0268506445, 0.0117263719, 0.0257662088, -0.000685454172, -0.0249998737, 0.0107720681, -0.0150085995, 0.00510408031, 0.00358406221, 0.0148929264, 0.0308847483, 0.026113227, 0.0151821086, -0.0251300056, -0.0181462355, -0.0200403836, 0.00623189425, -0.00048167049, 0.0344706178, -0.00416785059, -0.0127023645, 0.0082489457, -0.0243347511, -0.00769949798, 0.00118836155, -0.0118781934, 0.0301907081, 0.0137289641, 0.00871163886, -0.0256505348, 0.00955027, 0.02131279, 0.0222960114, 0.00803928822, 0.0237130076, -0.0298147704, -0.00803205837, -0.0192740485, -0.0272699594, -0.0288604666, 0.0286724977, -0.0269807763, -0.0182040725, -0.00477152, 0.00237491564, -0.0238286816, 0.018825816, 0.0014594706, 0.0165412687, 0.0244215075, -0.00384613429, 0.0129987774, -0.0123914927, 0.000238576, -0.00540772267, -0.000207624384, 0.0144157745, -0.0179293472, 0.00673434976, -0.0144880693, 0.00619213143, 0.0080826655, 0.0316655412, -0.0487562604, -0.0359743685, 0.0205753725, 0.0320993178, 0.0312317666, 0.0311160944, 0.000852638099, 0.0171774719, -0.0174232777, -0.0179438069, 0.00158779556, 0.0076272022, 0.00811881386, 0.00970209111, 0.00768503919, -0.00044823371, 0.0276314393, -0.0229900517, 0.00369612058, -0.0561304279, -0.00634395285, 0.0235105809, -0.00626804214, -0.0175534096, 0.0174811147, -0.00686086761, -0.00481128274, 0.00382806035, -0.00814773142, -0.0127095943, 0.0164545141, 0.0135771437, 0.0241467822, -0.0388662, -0.0286146607, -0.0148061709, 0.00715005025, 0.0233515296, 0.0242913738, -0.000988644431, 0.0144591518, 0.019115, 0.0380275697, 0.0194186401, -0.0123770339, 0.0133964038, -0.0243202932, 0.013324108, 0.000265460985, 0.00807543565, 0.00225743512, -0.0197512, -0.0255637802, 0.0177558381, -0.00361298048, -0.00437750807, -0.00473537203, 0.0295978822, 0.00456186244, -0.0225996543, -0.0398205034, 0.0190282427, 0.0103961304, 0.0081405025, -0.0185221732, -0.012846956, -0.0320704, 0.0169461258, 0.0242913738, -0.037535958, -0.0277181938, 0.0210669842, -0.00717173936, -0.0152544044, -0.0189704075, -0.00349730719, 0.00839353725, 0.0082489457, -0.00278338674, 6.67606146e-05, 0.0150230583, 0.00399795547, -0.013085532, 0.00538603403, -0.00399434054, 0.0154279144, 0.0138157196, 0.00743923336, -0.00315209501, -0.0210669842, -0.0283543952, 0.00657891389, -0.0141121317, 0.0133168781, -0.0283688549, 0.041035071, -0.0105768694, -0.0164255966, 0.00963702425, 0.0242479965, 0.0102226203, -0.0161219537, 0.0210669842, -0.0442739204, 0.0152977826, -0.0239154361, 0.00266048382, -0.0109094298, 0.0179438069, 0.0057619717, -0.02249844, -0.0120950798, -0.00788746681, -0.0481778942, -0.00484743062, -0.06691695, -0.00314848032, 0.0184643362, 0.00912372489, -0.00727295317, 0.00259541767, -0.0143579375, -0.0287447926, -0.0352803282, -0.000925385684, 0.0248842, 0.0152977826, -0.0196789056, -0.0325909257, 0.0111624645, -0.0507227033, 0.0260843094, -0.00752598839, -0.022556277, -0.00567521714, -0.00225743512, -0.00341597456, 0.0124276411, -0.0157749336, 0.0173654407, 0.00210199924, 0.0386926904, -0.0111480057, 0.0192306712, -0.0327933542, -0.0321282335, -0.00755490642, 0.0353092477, -0.0256505348, -0.00314486539, 0.0033509084, -0.0189704075, 0.0088996077, -0.0342103541, -0.0490165241, -0.015398996, 0.00230984949, 0.019953629, 0.0116396174, -0.00892852619, 0.010656395, 0.0336030684, -0.019895792, 0.0376805477, -0.045893345, -0.0188981108, -0.00196825201, -0.0215152167, -0.0231057238, 0.0171485543, -0.0141699687, 0.0247251485, 0.0388662, 0.0118565038, -0.0273856334, -0.00387866748, -0.00505347364, -0.00541495206, -0.00367804663, -0.0288460068, 0.0213706251, 0.0189559478, -0.00872609764, 0.0154134557, 0.0149363037, -0.0313763581, 0.0295689646, -0.0329379477, -0.0214284621, 0.0285423659, -0.000502003648, -0.00291713374, 0.0176401641, -0.0144085446, -0.00625358289, 0.0150085995, 0.00535350107, -0.00379914208, 0.0121239983, -0.0164111368, 0.0288170893, 0.00507877674, 0.0265180841, 0.00506431796, 0.00576920155, -0.0126589872, -0.0313474387, -0.00499563664, -0.00483297138, -0.0126589872, 0.0328222737, -0.033805497, -0.00225382019, 0.000946170709, -0.0242913738, 0.021558594, 0.0106853126, 0.00785131939, 0.00401964411, -0.0110251028, -0.0108732823, -0.0011070288, -0.015572506, 0.0160641167, 0.0132590421, 0.0017287723, 0.0001500137, 0.0247974452, 0.0202428121, -0.0118492749, 0.00111696951, -0.000251001824, 0.0040847105, 0.0115022548, -0.0126372986, 0.0260553919, 0.0136132911, -0.032330662, -0.0117914379, 0.00685725268, -0.0160062816, -0.00650661811, 0.0418737, 0.00243275217, 0.0132879606, 0.00843691453, -0.00668374263, 0.0233659893, -0.0212115757, -0.00388228218, 0.003730461, -0.00677049765, 0.0159918219, 0.00447510742, -0.0130927619, -0.00650661811, -0.0291785672, -0.00325692398, -0.0099768145, 0.0285857432, 0.0233515296, 0.0170473401, -0.0218188595, 0.0115890102, -0.00431605661, -0.0335452296, -0.0509251319, -0.0067090462, 0.0250577088, 0.0128831044, 0.0149363037, 0.0168159939, 0.004973948, 0.0169895031, 0.0613068, 0.0129337106, 0.0112925973, -0.0244504251, 0.0283399373, -0.00931892358, -0.00110793253, 0.0195776913, 0.0230189692, -0.0101214061, 0.00645239651, -0.0104250479, 0.0180161037, 0.0129264817, -0.0265759211, 0.0200982206, 0.0219779108, -0.0205030777, -0.0145603651, -0.00737055251, -0.00728741242, 0.00553424, -0.00189957104, 0.016223168, 0.0291062724, -0.00900805183, 0.0168015342, -0.0259830952, -0.0250721686, 0.00503539946, 0.00869718, -0.027472388, 0.00823448692, 0.00268217269, -0.00344308536, 0.0243202932, 0.013085532, 0.0070271478, 0.00644155219, 0.0320993178, 0.00595355546, 0.00241829315, -0.000924030144, -0.00742477411, -0.0127818901, 0.00349188503, -0.0103166047, -0.00283218641, -0.0079742223, 0.00442450028, 0.000630328606, -0.0258529633, 0.0146688092, 0.0115528619, 0.011545632, 0.0201271381, -0.00816942099, -0.0229611322, 0.0129481703, -0.0145386765, -0.0117697492, 0.00105190324, 0.0105262622, -0.0136711281, 0.00857427716, -0.0125722326, -0.0175967868, 0.0145820547, -0.0306823198, 0.000498840702, -0.00106907357, 0.0175678693, 0.0102226203, -0.00416423567, -0.0148929264, 0.00502455514, 0.0180016439, 0.00242371531, -0.0125577729, -0.00719704246, 0.0320993178, 0.017582329, 0.00605476974, -0.00597162964, -0.000814231, 0.00142241898, 0.0132301236, 0.0362635516, -0.00410278421, -0.00463777268, 0.0103889005, -0.026590379, -0.0146471206, 0.00158779556, 0.0118203564, 0.0092466278, 0.00589571893, 0.0167726148, -0.0119288, 0.00122360571, -0.0325330906, 0.00959364697, -0.000736964867, -0.00627165707, 0.0269229393, -0.0297858529, -0.00515830237, 0.00155706983, 0.0026532542, 0.000995874, 0.0219200738, 0.0130276959, 0.0282676406, 0.0094635142, -0.0120589323, 0.00855981745, 0.00309968065, -0.00858873595, -0.0192451309, -0.00474621635, -0.0246383939, 0.012196294, 0.00465584686, -0.00657529896, -0.00956472848, 0.0081405025, -0.00669820188, 0.017105177, -0.00131397543, 0.0189704075, -0.0193029679, 0.00128776813, -0.00823448692, -0.0115673216, -0.0190571621, 0.00570413517, -0.0112058427, 0.0281808861, -0.00720788725, 0.00982499309, -0.0140253771, 0.0172931459, 0.0130783021, -0.00841522589, -0.00375576457, -0.0171196349, -0.0154857514, 0.0131939761, 0.021197116, -0.0061632134, 0.00829955284, -0.0247540679, -0.00734163402, 0.00436666375, 0.00090460066, -0.0162954628, 0.0130710732, 0.0167726148, -0.00136819726, -0.0205753725, -0.0177558381, -0.00584872672, 0.0159050673, 0.0231635608, -0.0229466725, -0.00232611597, 0.00728018256, -0.0373624489, -0.0140542956, -0.0164111368, 0.0179293472, -0.00257372903, 0.00950689241, -0.0172931459, 0.0410061553, -0.00845137425, 0.000680031953, -0.0142784119, -0.000538151537, 0.0249709543, -0.0140542956, -0.0192017537, -0.0022737016, -0.00378468283, -0.0109238885, 0.0280941315, -0.00960087683, -0.0156014245, -0.00362563226, 0.00322439079, -0.0125505431, -0.0183197446, 0.00702353287, -0.0194186401, 0.0275013056, 0.0140109174, -0.000283083064, 0.00620659068, -0.0151387313, 0.0177269205, -0.0277471114, 0.0140832132, -0.0163822193, -0.00221044268, 0.000512848, -0.023568416, -0.0205030777, 0.0126228388, 0.016281005, -0.017524492, 0.0158183109, 0.00369612058, -0.00427990872, -0.0112130716, -0.00790915545, 0.00610537687, 0.00973823853, -0.00282857148, 0.00554147, -0.000513299892, 0.0382878333, 0.0157460161, 0.00561738, -0.00477152, -0.0192885082, 0.0164834335, 0.0216598082, 0.00503539946, 0.0154279144, 0.00994066708, -0.0329668671, -0.00661867671, 0.0208500959, 0.00396180758, 0.0108299041, -0.0208067186, 0.0370154269, -0.0266771354, -0.0138735557, 0.0292653218, 0.0060041626, 0.0125433141, 0.00519083533, -0.00328764948, 0.017105177, -5.99758278e-06, 0.0171919316, -0.0233949069, -0.0158761479, 0.0269663166, -0.0131578278, -0.0131722866, 0.00934061222, 0.0193318855, -0.00623550918, 0.0227297861, -0.0166569427, 0.0128903333, -0.00767780934, -0.0336319879, -0.00831401255, 0.00160767685, -0.00743200397, 0.0170473401, -0.0173365232, 0.0137000456, -0.0330247022, -0.00461246911, -0.0172353089, 0.00549809216, 0.0154423742, 0.00122179824, -0.00227550906, 0.00480766781, 0.00290628942, -0.0335452296, 0.00223213155, 0.00561015075, 0.00663313596, -0.0104973437, 0.0259397179, 0.0143796261, -0.0247974452, -0.00684640836, -0.0080826655, -0.00840076711, 0.00267675053, 0.00717173936, 0.0227876231, 0.0249131173, 0.0273422562, 0.00523782754, -0.000133182344, 0.0185221732, 0.0108515928, 0.0272121225, 0.0182908271, -0.00930446386, 0.00247251499, 0.0488719307, 0.00223393901, -0.0110973986, 0.0205898322, 0.0180161037, -0.0149363037, -0.0127023645, 0.0169605855, 0.0293087009, -0.00647047, -0.0080031408, -0.00956472848, -0.040138606, -0.00275266101, -0.00651384797, 0.0294532925, -0.00155164767, 0.0351357386, -0.00279061613, 0.00139892288, -0.0137145054, 0.0208211783, -0.00025009815, -0.0271976646, 0.0166280251, -0.00676688273, -0.0102081606, -0.00374853495, 0.021616431, -0.00238214526, -0.00842245575, 0.0276025198, -0.0132084349, -0.0191728342, -0.000846312207, 0.00374130555, 0.01414828, -0.0162665453, 0.00748261111, 0.0147772525, 0.0109094298, -0.0180016439, 0.0190137848, -0.00670543173, 0.000480766786, 0.0124782473, 0.00214537652, -0.00227008667, 0.0275880601, -0.0106925424, 0.0149652222, -0.00949966256, -0.0175967868, -0.0107503794, 0.0108082155, -0.0154423742, -0.00118293928, -0.00231165695, -0.000271786877, -0.0112781385, -0.0142567232, -0.0098683713, -0.0184498765, 0.0278049484, -0.0176690836, 0.00391120045, -0.0122902784, 0.00989728887, 0.0145097589, 0.044765532, 0.0416423567, 0.00843691453, 0.0215152167, -0.00160677324, 0.0137795713, 0.0251010861, -0.0353092477, -0.0180450212, -0.0264602471, -0.00424737576, 0.0115311733, -0.0109672667, 0.000411408051, -0.0182619076, 0.00208211783, -0.0092466278, 0.000363963947, -0.0228454601, 0.0240166504, -0.00861042459, -0.000116012096, 0.00707052508, 0.02486974, 0.0403410308, 0.0160352, -0.00706691, 0.0130060064, -0.0160352, -0.018348664, -0.010952807, 0.0163533, 0.00239660428, -0.0257806666, 0.00919602066, 0.00840076711, 0.00682833418, 0.0105334921, 0.00957195833, -0.0263301153, 0.0256794523, -0.00106816983, 0.0126372986, -0.0100563401, 0.00322981295, -0.0100852577, 0.013381945, 0.0296990965, 0.0181028582, 0.0190282427, 0.00429436797, -0.00848752167, -0.00576558663, 0.00312679145, -0.0243347511, -0.0229755919, -0.0234238263, -0.0271542873, 0.0125143956, -0.0131216804, -0.0145603651, -0.0131650576, 0.0215296764, -0.00365455053, -0.00629696064, -0.00642347801, 0.0085959658, 0.0191728342, 0.034701962, 0.0153267, 0.00790915545, -0.00245805574, -0.0169461258, 0.00806820672, 0.00247251499, 0.00562099507, 0.00621382054, 0.00122902787, 0.0171774719, 0.0105624106, 0.00130313099, 0.000955207681, -0.0173654407, -0.00202970346, -0.0194041822, -0.00588848954, -0.0228165407, 0.012904793, 0.0104901148, 0.0209802296, 0.0250721686, -0.0116323875, 0.0184932556, -0.0362346321, -0.00595717039, 0.00748261111, 0.0177847557, 0.0275013056, 0.0157315563, 0.00197909633, 0.00356056611, 0.00396542251, -0.00858873595, -0.0165268108, 0.00706691, -0.0154279144, 0.00890683755, 0.0139024742, -0.0113576632, -0.00149832957, 0.0229900517, -0.0044353446, 0.000839986315, 0.0468765683, 0.0229322147, 0.0305955652, -0.00947797392, 0.0100924876, -0.0138301784, 0.0150085995, -0.00850921, -0.00132843456, -0.0102370791, 0.00181281613, -0.00506431796, 0.0011766135, -0.014921844, 0.00510769524, 0.00275266101, -0.0170617979, 0.0116902236, -0.0171485543, 0.00209115469, -0.0093261525, 0.00417508, -0.0145965135, 0.0128614148, -0.00317016896, 0.00922493823, 0.00814773142, 0.0158183109, -0.00985391159, 0.0116396174, -0.036813, 0.000312453223, -0.00636925641, 0.00571136503, 0.0101575535, 0.00341597456, -0.0312896036, 0.00045162256, -0.00293159299, 0.0147917122, 0.00510046585, 0.022859918, 0.00819833856, 0.00620659068, 0.0185510907, 0.0206187498, 0.00503901439, 0.00479682349, -0.0268072672, 0.0267928075, 0.0152544044, -0.0103672119, 0.0143651674, 0.0169027485, 0.0113359746, 0.00887791906, -0.000580625318, -0.00501009589, -0.00383529, -0.0130638434, 0.0388662, 0.0165123511, 0.00915987231, -0.0100491103, -0.0052161389, -0.00327319046, -0.000489351922, 0.0106780836, -0.00655361032, 0.00745369261, 0.0263590328, -0.0227731634, -0.00400518486, 0.00550532201, 0.00345031498, -0.0177558381, 0.0132228937, -0.0135988323, 0.00429436797, -0.00541495206, -0.00310329534, 0.000931711576, 0.0113793518, 0.00394011894, -0.00631864928, 0.0165991057, -0.0045184847, 0.0220212881, 0.0114733363, 0.00206223642, 0.00538603403, 0.0186812244, 0.0358008593, 0.0126156099, 0.0196789056, -0.00606199913, -0.0177558381, -0.000562099507, 0.00456909183, 0.00949966256, -0.00957918819, 0.0105913281, -0.00734886387, -0.00850198139, 0.0201560576, 0.0271398276, 0.0142928716, -0.0146904979, 0.0110973986, -0.00226647197, 0.0144230034, -0.0072476496, -0.013497618, -0.0321571529, -0.00874055736, -0.000671898713, 0.0205175355, 0.00341416709, 0.0114371888, -0.0225707348, -0.00471729832, 0.0225418173, 0.00359309907, -0.0141699687, -0.0384613425, 0.00137181196, -0.000576106831, -0.0238865186, 0.00423653144, 0.00458716601, -0.0244648848, 0.0088996077, -0.00926831644, -0.00404133275, 0.0227876231, -0.00555954361, -0.0203584861, -0.00549086276, -0.00994066708, 0.0122252125, 0.00541856699, -0.014329019, -0.0030852214, 0.0120878508, 0.00772118708, -0.00488357851, 0.00215983577, 0.00092719309, -0.0105479509, 0.00387866748, -0.00350634428, -0.00191403017, 0.0151387313, -0.0109166596, 0.0173076037, -0.0195053946, -0.00345573714, -0.00718981307, 0.000718439114, 0.0189270284, 0.00820556842, 0.00845860317, -0.0161219537, -0.0226430316, 0.0160352, 0.00212368788, -0.0291785672, 0.00289363763, -0.019953629, -0.0129626291, 0.0110251028, -0.00282314932, -0.0022140576, 0.0165991057, -0.0336030684, 0.0130060064, -0.00374853495, -0.00958641712, 0.0228020828, -0.0124637885, 0.00525951618, -0.00599693321, 0.0126445284, -0.00379191246, -0.00281953462, 0.01586169, -0.000737868599, -0.0113793518, 0.00874055736, 0.0130710732, -0.0106202466, 0.0016754542, 0.00898636226, -0.00825617556, 0.00256830687, 0.0291930269, 0.0126445284, 0.00685002282, 0.0192451309, -0.0155146699, -0.00299123698, 0.0191728342, -0.0113359746, 0.0083863074, -0.0388372801, -0.0130999908, -0.0141988872, -0.000359671394, -0.00557761779, -0.00406663632, 0.00332560483, -0.00333825662, 0.0129264817, -0.000876134203, -0.0163822193, -0.0120517025, 0.0144085446, -7.87346e-05, -0.00891406648, 0.00392927462, 0.0177558381, 0.00521252397, -0.00356598827, -0.0231635608, 0.00734524895, 0.00664398028, -0.000773564621, 0.00310691027, 0.00685725268, -0.0144013148, -0.00209476962, 0.0112925973, -0.0240455698, -0.0186233874, 0.000632136, 0.00434859, -0.00281411246, -0.00710667297, 0.00905865803, 0.0254047289, -0.0133602563, 0.0162087083, 0.0106491651, -0.0208500959, -0.00534627121, -0.0155869657, -0.0156737193, 0.0153122414, -0.0230189692, -0.00868995, 0.0231201835, 0.00612345058, -0.00922493823, -1.42826484e-05, 0.0216019731, 0.00649938872, -0.0132445823, -0.0137000456, 0.00615598354, -4.36316186e-05, -0.0318679698, -0.0115600917, 0.0232069381, -0.0110323327, -0.0146326609, -0.0139675401, -0.00320993154, -0.000162552489, 0.0270241536, 0.0119215706, -0.00430159736, -0.0170907173, -0.0215875134, -0.014921844, 0.0114010414, -0.00104286626, -0.00388951181, 1.8956456e-06, 0.0146398908, -0.000485285273, -0.0158906076, -0.0144952992, -0.0064777, 0.0111335469, 0.00697292574, -0.00913818367, 0.0134325521, -0.00308702886, -0.0266337562, 0.00310148811, -0.0102153905, 0.0307112373, 0.0238142218, 0.00972378, 0.000985029736, -0.00517999101, -0.00274362392, 0.0113215158, -0.00641624862, 0.0196355283, -0.00835739, -0.0162087083, 0.00789469667, -0.0019212598, 0.0105262622, 0.0102876863, 0.00070172071, 0.0147627937, 0.000459529896, -0.0117697492, 0.0579233617, 0.0243492108, -0.00507154735, 0.00639094505, 0.00487634866, -0.0086248843, 0.0117480606, -0.0213850848, -0.00196825201, 0.0144013148, -0.0168593712, 0.0146398908, -0.0300461166, 0.00699461438, 0.0140253771, 0.00287375646, -0.0072476496, 0.00764166145, -0.00081106805, -0.015572506, -0.00547640352, -0.00931892358, 0.00780794164, 0.0144880693, -0.00722596096, 0.0176401641, 0.0121890651, 0.0057619717, -0.0140759842, 0.00287917862, 0.0189125706, 0.000619484286, 0.00943459664, 0.00482212706, 0.00538964849, -0.00117119122, 0.00072566868, 0.0191728342, 0.00227189413, 0.0164255966, -0.0194186401, -0.000352667732, -0.00602223678, -0.0232792348, 0.0126589872, 0.020372944, 0.0235539582, -0.00943459664, -0.00311956182, 0.0124565586, 0.00500648143, -0.00330933835, -0.0104973437, 0.00217429502, 0.00680303061, 0.0131650576, -0.000100479803, -0.00126427202, -0.00613068044, -0.000904148794, -0.013678357, 0.0245516393, 0.03256201, 0.0192740485, 0.0144591518, 0.0047317571, -0.0130493846, -0.00270386133, -0.00273458706, -0.000286697876, -0.0235105809, -0.00898636226, -0.0115673216, -0.00428713858, 0.009947896, 0.016338842, 0.00555954361, -0.009412908, -0.0255059432, -0.0022971977, -0.00788746681, 0.00150013692, 0.00513661373, 0.00461608404, -0.00947797392, -0.0030255774, -0.00942013692, -0.0244070478, -0.00332199014, -0.00278700143, 0.00462692836, 0.0088706892, -0.0267060529, -0.0119866366, -0.00777902361, -0.0042979829, 0.0160352, -0.00286110467, -0.0321860723, 0.0127963489, 0.0460957736, 0.00511853956, 0.00110522134, 0.013381945, 0.0162087083, -0.0215296764, -0.00206042919, -0.000722505734, 0.0176112466, 0.0025936102, -0.0116396174, -0.00926108658, -0.00764166145, 0.00382083072, 0.0039726519, -0.00467392057, 0.0125577729, 0.0135048479, 0.0163966771, -0.0324752554, 0.00180558651, 0.00801037, -0.000529114564, -0.0105551807, -0.00674880901, -0.000283760834, 0.0193463452, 0.00993343722, 0.00734163402, -0.00362743973, 0.0324174166, 0.000490255596, -0.0168882888, 0.0166714024, 5.00704591e-05, -0.00436304882, 0.0215152167, 0.0288604666, -0.00421122788, 0.00769949798, 0.00709221372, -0.00222309446, 0.0081405025, 0.00461969897, -0.00541856699, 0.0051402282, 0.00261349161, 0.0215007588, -0.00695485203, -0.0210669842, -0.0125216255, 0.0254481062, 0.0222815517, 0.000657439523, 0.0071645095, 0.00254842546, -0.0137434239, -0.0171340946, 0.00248155184, -0.00274723885, 0.0102587678, -0.00619574636, 0.00232973089, -0.00523421261, -0.00643793726, 0.0153267, 0.0189270284, 0.0174377374, -0.00384974899, -0.0163243823, 0.00268940208, -0.00615959847, 0.0230623465, 0.0205030777, -0.0128758745, 0.0206910465, -0.00199536281, -0.00489442283, 0.0192451309, -0.0194041822, 0.00848029274, -0.0217754822, -0.0206332095, -0.00750429975, -0.0215296764, -0.0069512371, 0.00536073046, 0.0112347603, -0.00917433202, 0.0012064355, 0.0263445731, -0.0170328803, -0.00639817445, 0.00988283, 0.00808989536, 0.00568244653, -0.00459078047, -0.00296412595, -0.0024598632, -0.0176980011, -0.00758382492, -0.00509685092, -0.00383167504, 0.00144049292, 0.00968040153, 0.0205030777, -0.00337259704, 0.0258240439, 0.0389529541, 0.0207055043, 0.0173799, 0.0159050673, 0.0107214609, 0.0182908271, -0.00307618454, -0.0209223926, 0.00223936117, 0.00340693747, -0.0104395077, 0.0120155551, -0.000883815635, 0.00706329569, -0.00685725268, -0.00904419925, -0.000748261111, 0.0153556187, 0.000872067583, 0.0213995446, -0.0142205758, -0.0107865268, 0.0197367426, 0.0176112466, 0.014683268, -0.0152977826, 0.0160641167, 0.00116848014, 0.00384613429, 0.00537518971, -0.00438473746, -0.0023803378, 0.00111064361, -0.0184498765, 0.0110901687, 0.00211465079, 0.00296231871, 0.0106853126, 0.0114371888, -0.0188402738, 0.0169895031, -0.0103889005, -0.00199174811, -0.0034955, -0.0257806666, 0.00754767703, -0.00214899145, 0.0256794523, -0.00824171677, 0.016165331, -0.0069512371, -0.00554869929, 0.000587403, 0.0186089277, -0.00952858105, -0.00922493823, 0.0277471114, 0.00205862173, 0.00229539024, 0.0241612419, 0.00897913333, 0.00192848931, -0.0286435783, 0.00236407132, 0.00313582853, -8.08244e-05, -0.0219056141, 0.00183631224, -0.0196499862, -0.0327355191, 0.00411724346, 0.0104105892, 0.0192451309, 0.00497033354, 0.00218875404, 0.00803928822, 0.0104395077, -0.0146109723, 0.000168426515, 0.00234599737, 0.0115600917, -0.000144478559, 0.00782963075, 0.00685363775, -0.0140036885, -0.00896467362, -0.00309968065, -0.000649306283, -0.0047606756, 0.0269518588, -0.0316366218, 0.00461246911, -0.0085959658, 0.00343224104, -0.0295689646, -0.0246817712, -0.0111986129, -0.0193897225, 0.00684279343, 0.026113227, 0.00319727976, -0.0209513102, 0.00397626683, -7.15050192e-05, 0.00928277522, 0.0209946875, 0.000397400756, -0.0112130716, 0.0115817804, 0.00149471476, 0.0126445284, 0.0122035239, 0.00163298042, 0.0137795713, 0.0030816067, -0.0157604758, 0.0207778011, -0.00367081701, -0.00124619808, -0.0256360751, -0.00317559112, -0.00934784114, -0.00705606584, 0.033458475, -0.0189270284, 0.0200982206, 0.000291442266, -0.00368346879, -0.00379191246, 0.00243998179, -0.00853812881, 0.0149652222, -0.00290628942, -0.00908757653, 0.0391553827, -0.0305377282, -0.032330662, 0.00250685541, -0.0076272022, -0.0119577181, -0.00140073034, 0.00722957589, -0.00152001833, 0.0301328711, 0.00309606572, -0.00717173936, 0.0258240439, -0.00907311775, 0.0311739314, 0.0183342043, -0.000384974905, -0.00538964849, 0.0469344072, -0.0168882888, -0.0197656602, 0.00192668196, -0.00451125531, -0.0239009783, -0.00579450512, 0.0168015342, 0.00229539024, -0.0214140043, 0.0173076037, 0.0103382934, 0.00930446386, -0.000722505734, 0.0256216172, 0.0181173161, -0.0055956915, -0.0280507542, -1.86387497e-05, -0.00126879057, 0.0264891647, -0.00535350107, 0.0141410502, 0.00193571893, -0.00498840725, -0.0101937018, -0.0103455232, 0.00874055736, 0.00784408953, 0.00848029274, 0.014921844, -0.00538603403, 0.0128903333, 0.0032749977, -0.0103816707, -0.00897913333, 0.000774016429, -0.0168015342, -0.0064777, -0.00363466912, -0.0186667647, 0.0219489913, 0.0199680887, -0.0194186401, 0.00151911459, -0.00283760857, -0.00891406648, -0.000989548163, -0.0120300138, -0.011603469, -0.0301328711, -0.00185077137, 0.00360575086, -0.00522698322, 0.0268217269, -0.01124922, -0.0064668553, 0.0176980011, 0.00337621197, 0.00493057072, -0.0131650576, -0.00304365135, 0.0228454601, 0.0106780836, -0.00847306289, -0.000693135546, 0.0291641094, 0.0357430242, 0.0130060064, 0.00167635793, -0.0170039628, 0.01788597, -0.0139097041, -0.0108588226, -0.025043251, 0.00472091278, 0.00440281164, 0.00656084, -0.00272735744, -0.000953400275, 0.0110251028, 0.00234599737, 0.0030816067, -0.00290086726, 0.00985391159, 0.0150519768, -0.00247251499, 0.00532458257, -0.0145025291, 0.00359852123, -0.000388363784, -0.0153556187, -0.0176112466, 0.000549899589, -0.00302377, 0.00667289831, 0.00845137425, 0.00793084502, -0.0209079329, -0.0118565038, 0.00250866287, 0.00787300803, 0.0126662171, -0.00194837071, 0.0280652139, -0.000187743048, 0.0109022, -0.0104611963, 4.32927336e-05, -0.00156429945, 0.00999127328, 0.0201126803, -0.00130584207, 0.00225201296, -0.0287881698, -0.0254625659, -0.0206621271, 0.0100924876, -0.0103672119, -0.00954304, -0.0231924783, 0.00475706067, -0.0004529781, 0.0285423659, 5.41088557e-05, 0.00471006846, 0.0106636239, -0.00724042, 0.0361189619, -0.0230623465, 0.0144374631, 0.00583065301, -0.0191583764, 0.0282242633, 0.00193752628, -0.0171919316, -0.00498117786, -0.000846312207, -0.027053073, -0.00295147439, 0.017105177, 0.0103527522, -0.0199680887, 0.0409772359, -0.0206476692, 0.0198234972, 0.000365093583, -0.0239588134, -0.00171702425, -0.00532458257, -0.000486188976, 0.00447149249, -0.00991897751, -0.0241612419, 0.0114227301, -0.0234961212, 0.0171340946, -0.00268940208, -0.00231527165, 0.0174521953, 0.00543664116, -0.0122758197, 0.014741105, -0.0180161037, 0.00826340541, -0.00953581, 0.0164834335, 0.0273856334, -0.000576106831, -0.0118203564, -0.00379914208, 0.00169081707, 0.00577643095, -0.00151730725, 0.00231888634, 0.00589571893, 0.00338163413, -0.00330572343, -0.0028954451, -0.000736964867, -0.018594468, -0.0147772525, -0.0163243823, 0.0191005394, 0.00638010073, 0.0165412687, -0.0113142859, 0.0187246017, -0.0122975083, -0.000389041554, -0.000737416733, -0.000666928361, -0.0144230034, 0.0152688641, 0.00258999551, -0.00853089895, 0.00920325, -0.00189776358, 0.0214863, -0.0135409953, -0.0121529168, 0.0214140043, -0.0014594706, -0.00877670478, 0.00319547253, -0.000885623042, 0.00518722041, -0.00112962117, -0.0217465647, 0.00897190347, 0.0114155, -0.0208645556, -0.0070054587, -0.0174521953, -0.0271832049, -0.0140832132, -0.0140615245, 0.0132445823, -0.00131397543, -0.00270928349, 0.00253938837, -0.0321571529, 0.0126156099, -0.0098756, -0.00523059815, 0.00526674604, 0.00584511179, 0.0213995446, 0.0161797907, 0.0232503153, -0.0151676498, 0.0121167693, 0.0143507076, 0.00978161581, -0.0063005751, -0.00652107736, -0.00906588789, -0.0164978914, 0.0163533, 0.00943459664, -0.0718330666, -0.0261855237, 0.0215152167, 0.028773712, 0.0206621271, 0.00211284356, -0.00454017334, -0.00756936567, 0.00700184423, -0.00358767691, 0.0172497686, -0.00840076711, -0.00325150159, 0.0231924783, 0.0010374441, -0.0114733363, 0.0191583764, -0.0195053946, -0.0200403836, -0.0028394158, -0.0118492749, -0.0106780836, 0.00991897751, -0.0082778642, 0.00741754472, 0.0138952443, -0.000465855788, 0.0171774719, 0.00128867186, 0.00528481975, -0.00504985871, -0.00673073484, -0.00133385672, -0.00358225475, 0.012846956, -0.0206332095, -0.00371238706, -0.0281808861, 0.011661306, -0.0149363037, 0.00738501176, 0.000355152908, -0.0196066089, -0.0155291287, 0.00131759013, 0.00907311775, 0.00353164785, -0.00767058, -0.00949966256, 0.000463144708, -0.0204163212, 0.00679580122, -0.0238720588, -0.0140253771, 0.00344489282, 4.0214516e-05, -0.00966594275, -0.0165268108, 0.026590379, -0.000724764948, -0.00645239651, -0.0296123419, 0.0169461258, 0.0161942504, 0.000811971724, 0.010656395, -0.0145097589, -0.00296954834, 0.0184932556, 0.0174377374, -0.0092466278, -0.00403410336, 0.00339790061, -0.0150664356, 0.0113070561, -0.0111841541, -0.0126300687, -0.00730548613, 0.012846956, 0.0185221732, -0.0054113376, -0.0101647833, 0.00539326342, -0.00347019639, -0.0157315563, 0.00433413079, -0.00704160659, 0.0169461258, 0.0152833229, -0.0164978914, 0.0257951263, 0.00206042919, 0.00964425411, 0.00205681426, 0.0219779108, 0.0235105809, -0.0274000913, 0.0032948791, 0.0120083252, 0.0135916024, -0.0118565038, -0.00378829776, 0.0275013056, -0.007460922, 0.0291062724, -0.0151242726, -0.00835739, -0.0115239434, 0.0234238263, 0.00798145123, 0.025809586, -0.00102298497, -0.00679941615, -0.0131795164, 0.00225020549, 0.0101141762, -0.00684279343, -0.00447510742, -0.00286652683, -0.00459078047, -0.00100310368, -0.0235394984, -0.0087911645, 0.00132210867, -0.00387505256, -0.00270205387, 0.00156791427, -0.00203874032, 0.00714643579, 0.00385336392, -0.00220140582, 0.000657891389, 0.0171196349, -0.0248842, -0.00331837521, -0.0176980011, 0.00344308536, 0.00866826158, -0.0178570524, 0.00498840725, -0.00296593341, -0.00605476974, -0.00160948432, 0.00349369249, -0.0126445284, -0.0136277499, -0.00160044734, -0.00495587429, 0.0100491103, 0.0116468463, -0.0185366329, -0.0199391693, 0.00510769524, -0.0113793518, -0.0181317758, -0.0212694127, 0.0276025198, -0.0058668009, -0.00219236873, -0.00592825189, -0.00560653582, -0.0181173161, 0.00352080329, 0.0210380647, 0.00609814702, 0.00832847133, -0.00364189874, -0.0112925973, 0.00523059815, -0.0198090374, 0.00167816528, 0.004706454, -0.00726210885, -0.00978884567, 0.00757659553, 0.017350981, -0.00599331828, -0.00541856699, 0.00449318113, 0.00733801955, 0.0382878333, -0.0110178739, -0.0107286908, -0.0244793426, 0.0173654407, -0.0192740485, -9.71474219e-05, 0.00739947055, 0.00412808778, 0.0031647468, 0.0176980011, 0.0438401476, -0.00550170708, 0.00540410774, -0.0267494302, -0.0157026388, 0.00136729353, 0.00506431796, -0.00717173936, 0.00736693759, -0.0112130716, -0.00463415822, -0.0145025291, 0.0153700784, -0.000583336398, -0.0098394528, -0.00310148811, 0.0179871842, 0.00160315842, -0.0148350894, 0.00192848931, -0.032677684, -0.00373407593, 0.00156249211, -0.00232792343, -0.00648492947, -0.0103961304, -0.00537880417, 0.000638010039, -0.00980330445, 0.010302145, 0.0229322147, 0.0327355191, -0.00911649503, 0.0312317666, 0.00897913333, 0.00532458257, 0.00274904608, -0.0248842, 0.00144139666, -0.0163099226, -0.0232647751, 0.0104250479, 0.0048908079, 0.00288640801, 0.00835739, 0.00876947492, 0.0034575446, -0.00302196271, 0.0171774719, 0.014386856, 0.0063837152, 0.00265144696, -0.0107431496, 0.000559388427, 0.0112419901, 0.0163533, -0.00539326342, 0.0098683713, 0.0120661622, -0.00583426747, -0.0052161389, -0.0166280251, 0.00601862185, 0.00169804657, -0.0124854771, -0.0274868477, 0.0126806758, -0.0112853674, 0.0369575918, -0.00799591094, -0.000872067583, -0.00643070741, -0.0147194164, 0.0265325438, -0.020011466, 0.0177124608, -0.0156592615, 0.0100418804, -0.00104015518, 0.00399434054, -0.00399072561, -0.00739947055, -0.00441727089, -0.0139313927, 0.0020550068, -0.0083863074, 0.0210236069, -0.0390107892, -0.0013763305, -0.00783686, -0.0311739314, -0.00918879081, 0.0291207302, -0.00193029677, -0.00379914208, 0.00894298498, -0.0247974452, -0.0191439167, -0.00406302139, 0.0277760308, -0.0036238248, 0.0147700235, 0.00129409402, -0.0143434787, -0.0137868011, -0.00878393464, 0.0104250479, 0.00468838, -0.0135699138, -0.00424014637, -0.00325873122, 0.0143651674, 0.0120444736, -0.0234093666, -0.0135482252, -0.00612706551, -0.0344417, -0.010244309, -0.00759105431, -0.0407458879, 0.00283760857, -0.00592463743, -0.00703437719, -0.00546194427, 0.000909119146, -0.0164545141, 0.00809712522, 0.0157170985, -0.0102732275, 0.000590565964, -0.00756213628, -0.0207488816, 0.0184498765, 0.00720065739, -0.0212838706, 0.00831401255, 0.0283110179, 0.00052956643, 0.0216598082, -0.00222128723, -0.00132481975, -0.0136638982, 0.00966594275, -0.00908757653, -0.00617767265, -0.00854535867, -0.03823, 0.00476429053, -0.0351935737, -0.0052450574, -0.00908034667, 0.0152399456, -0.0168159939, 0.00944182556, -0.014567595, -0.0167870745, -0.0114733363, 0.0289038438, -0.00819111, -0.0104467366, -0.0112419901, -0.00632587867, 0.00643070741, 0.0167726148, 0.011429959, -0.0238142218, -0.00130584207, 0.0284845289, 0.00138898229, 0.0182474498, 0.000478507543, -0.0042690644, -0.0343260244, -0.00775010511, -0.0238720588, 0.0267638899, 0.00737055251, -0.0166280251, -0.00481128274, 0.010359982, -0.0233081523, -0.0117625194, 0.0661650747, 0.0365238152, 0.0412375, -0.0147049567, 0.0138374083, -0.0226719491, -0.0153700784, 0.0408037268, -0.00982499309, -0.00399434054, 0.00070714287, 0.00361298048, 0.0113432044, -0.00579089, -0.00114950258, -0.0184932556, 0.009355071, -0.01907162, 0.00395457773, -0.0184209589, -0.0128324972, -0.00957195833, 0.00181010505, -0.0064596259, 0.0137434239, -0.00828509405, 0.0124059524, -0.000976896379, -0.0381432399, 0.00923216809, -0.00399072561, 0.0248119049, 0.00499563664, 0.0268940218, -0.0329379477, 0.000659698795, -0.0287303347, -0.0284122322, -0.00155887729, 0.0189270284, 0.0199970063, 0.0247251485, 0.0165412687, 0.00460162479, 0.00625719782, -0.000813327264, -0.00381721603, -0.00744646322, 0.0205030777, -0.0247251485, -0.00477875, -0.0126011502, -0.00653915107, -0.0309136659, -0.012080621, -0.00562099507, 0.0250721686, 0.0108009866, -0.00718258368, 0.0162087083, -0.0049197264, 0.0229900517, 0.00666566892, -0.0193608031, -0.00120914658, -0.00350634428, 0.00292617083, 0.00600054767, -0.0259541776, 0.00507516228, 0.00146941131, -0.0127963489, 0.000155548842, -0.0179582667, 0.0221803375, 0.00788746681, -0.00768503919, 0.00393650401, 0.00905865803, -0.00831401255, 0.00633310853, 0.00311594713, 0.00478236424, 0.00147212239, -0.00632226421, -0.0127168242, -0.0208645556, -0.0200837608, -0.0304509737, -0.00950689241, 0.00812604278, 0.00398711115, -0.00290809688, -0.0107431496, -0.00179926062, -0.00208211783, -0.0111407759, -0.00163478777, 0.0335163139, 0.00502094, 0.00350272935, 0.0205753725, 0.00867549051, 0.0117697492, -0.00466307625, 0.0168882888, 0.0112998271, 0.00793084502, -0.000766786863, -0.01586169, 0.00447510742, -0.00585234165, 0.00985391159, 0.00945628528, -0.00749707, -0.0146904979, -0.00599331828, 0.0140759842, 0.0045184847, -0.00456909183, 0.0116685349, 0.00307437708, -0.0325909257, 0.0129554, 0.0109961843, -0.00805374701, 0.0155435875, -0.0107286908, 0.0058378824, 0.0182040725, -0.00504624378, -0.0233515296, -0.00963702425, -0.0030020813, 0.0263156556, -0.00673796469, -0.00630780496, 0.0114950258, -0.00734163402, 0.0308558289, -0.00366539485, 0.00882731192, 0.0118854223, 0.00741031533, 0.00511131, -0.00575474231, -0.00270386133, -0.0140976729, -0.00832847133, 0.00644878158, 0.00788023788, 0.0220068283, 0.0144880693, -0.0143073304, -0.000666476495, 0.0193463452, 0.00502455514, -0.0234382842, 0.0390397087, -0.00189776358, 0.0012995163, 0.00123445, -0.00971655, -0.0169895031, -0.000107314016, -0.00437027868, 0.00353707, 0.0018354085, 0.000818297616, 0.0282387231, -0.00502455514, 0.0152833229, 0.0114733363, 0.0188547336, -0.0110395625, 0.00820556842, 0.00292617083, 0.00771395722, -0.0288749263, -0.0197078232, -0.00169081707, 0.0171340946, 0.0108660525, 0.0430304334, 0.00196825201, -0.0106925424, -0.0146182021, 0.0115239434, 0.0208934732, 0.00874778628, -0.0151531911, -0.00689340057, -0.0110178739, -0.000271786877, -0.0267349705, -0.0159339849, 0.0168449115, 0.0212115757, -0.031145012, 0.00789469667, -0.00444257446, 0.0151387313, 0.0223683082, 0.0154423742, -0.00233876775, -0.00534627121, -0.00863934308, 0.000946170709, -0.0138374083, 0.000389267458, -0.0298726074]
27 Jun, 2023
deque::begin() and deque::end in C++ STL 27 Jun, 2023 Deque or Double ended queues are sequence containers with the feature of expansion and contraction on both the ends. They are similar to vectors, but are more efficient in case of insertion and deletion of elements at the end, and also the beginning. Unlike vectors, contiguous storage allocation may not be guaranteed. deque::begin() begin() function is used to return an iterator pointing to the first element of the deque container. begin() function returns a bidirectional iterator to the first element of the container. Syntax : dequename.begin()Parameters :No parameters are passed.Returns :This function returns a bidirectionaliterator pointing to the first element. Examples: Input : mydeque{1, 2, 3, 4, 5}; mydeque.begin();Output : returns an iterator to the element 1Input : mydeque{8, 7}; mydeque.begin();Output : returns an iterator to the element 8 Errors and Exceptions 1. It has a no exception throw guarantee. 2. Shows error when a parameter is passed. CPP // CPP program to illustrate // Implementation of begin() function #include <deque> #include <iostream> using namespace std; int main() { // declaration of deque container deque<int> mydeque{ 1, 2, 3, 4, 5 }; // using begin() to print deque for (auto it = mydeque.begin(); it != mydeque.end(); ++it) cout << ' ' << *it; return 0; } Output: 1 2 3 4 5 Time Complexity : O(1) deque::end() end() function is used to return an iterator pointing to the last element of the deque container. end() function returns a bidirectional iterator to the last element of the container. Note : The last element of any container is considered as the theoretical element next to the last value stored in the container. Syntax : dequename.end()Parameters :No parameters are passed.Returns :This function returns a bidirectionaliterator pointing to the last element. Examples: Input : mydeque{1, 2, 3, 4, 5}; mydeque.end();Output : returns an iterator to the element next to the element 5Input : mydeque{8, 7}; mydeque.end();Output : returns an iterator to the element next to the element 7 Errors and Exceptions 1. It has a no exception throw guarantee. 2. Shows error when a parameter is passed. CPP // CPP program to illustrate // Implementation of end() function #include <deque> #include <iostream> using namespace std; int main() { // declaration of deque container deque<int> mydeque{ 1, 2, 3, 4, 5 }; // using end() to print deque for (auto it = mydeque.begin(); it != mydeque.end(); ++it) cout << ' ' << *it; return 0; } Output: 1 2 3 4 5 Time Complexity : O(1) Let us see the differences in a tabular form -: deque::begin() deque::end 1. It is used to return an iterator pointing to the first element in the deque container. It is used to return an iterator referring to the past-the-end element in the deque container. 2. Its syntax is -: iterator begin(); Its syntax is -: iterator end(); 3. It does not takes any parameters. It does not take any parameters. 4. Its complexity is constant. Its time complexity is constant. 5. Its iterator validity does not changes. Its iterator validity does not changes. Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL
https://www.geeksforgeeks.org/dequebegin-dequeend-c-stl?ref=asr10
PHP
deque::begin() and deque::end in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0290416125, 0.0223436803, -0.00549864024, 0.017649956, -0.0197188146, -0.0454373211, -0.0291967764, 0.00737677654, 0.00640699873, -0.0152707677, -0.0284209549, 0.0194214173, -0.00408922974, -0.0110490015, 0.00497496, -0.00277679716, 0.0300760418, 0.0397738181, 0.00848232303, -0.0201972388, -0.0267658662, -0.0113464, -0.016460361, -0.0252788737, -0.00546308141, 0.0208178964, -0.0266365632, -0.0294036623, -0.0159819387, -0.0217230227, 0.0286795609, 0.00922581926, 0.0281106252, -0.00491354056, -0.0251107793, 0.0397479571, 0.0136674019, -0.00160013337, 0.00483272597, -0.00737677654, -0.00446097786, 0.0255892035, 0.00175529777, 0.0059027141, -0.0291450545, 0.0355067961, 0.00594150508, -0.0485406108, -0.00575401494, -0.0191369485, 0.0235332735, 0.0268175881, 0.0504801646, 0.0347568356, 0.0149604389, 0.0136286104, 0.0384290628, -0.00293196156, -0.0516439, -0.0334379375, -0.00890902523, -0.0120963613, -0.0181801, 0.00244545634, 0.00181025185, 0.0119411973, -0.0325328112, 0.0330758877, 0.0233134571, -0.0105188563, -0.0408858322, 0.0138872182, -0.0478682332, 0.0493422933, -0.014249268, -0.0451011322, 0.00124939706, 0.0100921541, -0.0119347321, 0.0315242447, -0.0246323552, 0.017093949, -0.0205075666, 0.00263779564, 0.0486699156, -0.00479070237, -0.00781640876, -0.0380670093, 0.0574108437, -0.0225505661, -0.0250073373, -0.0139518697, 0.0149604389, -0.0316276848, 0.0152190458, 0.0276192706, -0.0018991481, 0.0284468159, -0.0258866, 0.00056732, 6.83895341e-05, 0.0290416125, 0.00149911479, 0.00309844012, 0.0223048888, 0.0431357175, 0.0415064879, 0.013486376, -0.0419461206, -0.00623243861, 0.000424681843, 0.0194989983, -0.00611929782, 0.0498595089, -0.0409375541, -0.00158154592, 0.0217488836, -0.028472675, 0.0301019028, 0.00667207129, -0.0150121599, 0.0227186605, 0.0190852266, 0.0489543825, -0.0361791775, 0.00715049496, 0.0171327405, -0.0017213556, -0.0136674019, -0.00320511567, 0.0057895733, -0.022628149, -0.0140811736, -0.0167706907, 0.00277841324, 0.0314983837, 0.0218393952, 0.0318604335, -0.0124907382, 0.0386359468, -0.0262745135, -0.0240892805, 0.00144577702, 0.0199257, -0.0542041138, -0.0103701567, 0.0107451379, 0.0570487939, -0.0315759629, -0.0238565337, -0.0212963205, 0.000985132647, 0.0498853698, -0.0162664056, 0.031265635, -0.0178697724, 0.0209213402, 0.00759012764, 0.0141070345, -0.023520343, -0.0134217246, 0.00229675695, 0.00790692121, -0.00133263634, -0.0452304371, 0.0430581346, 0.052497305, -0.0226540081, -0.0595831461, 0.0376532376, -0.0218652561, 0.0583935529, 0.00326815108, -0.000553581514, -0.00713756448, -0.0412996039, 0.029713992, -0.0437305123, 0.000549540739, 0.00823018048, -0.00310975406, 0.0261969306, 0.026365025, 0.00349443266, 0.00745435851, -0.0016437734, 0.0323776491, -0.0236884393, 0.0138484268, 0.0057895733, -0.00627769483, 0.0277227145, 0.0405755043, 0.00707937777, 0.0333603546, 0.0010845348, -0.0124131553, 0.0114950994, 0.0137708448, 0.0357395448, -0.0223954022, -0.0140941041, 0.0168353431, -0.00678844471, 0.0250978488, -0.0217876751, -0.0281106252, -0.00891549047, 0.021257529, -0.00329724443, 0.00562794367, -0.0359205678, 0.0174301397, 0.0257443674, -0.000638841128, -0.000829968136, -0.0656862855, -0.00857283548, -0.0189947151, -0.0508163571, -0.0267658662, -0.0296105482, 0.021386832, -0.0399289839, -0.0459028147, -0.0408341102, 0.00280589028, -0.000391951849, -0.0204558466, 0.000584695197, 0.0187361073, 0.011404587, -0.00237757177, -0.0246323552, -0.0166025963, -0.00884437375, -0.039644517, 0.00518184574, -0.0222790278, 0.0145983882, 0.0257185064, 0.0161888245, -0.0546696074, 0.0169646461, 0.0240116976, 0.0661000535, 0.0167189687, -0.0201713778, -0.0305415355, -0.0294812452, 0.0322742052, -0.010693416, 0.0204429161, -0.00432520872, 0.0139001487, 0.0152836982, 0.0188524798, -0.00733798509, -0.0233393181, -0.000339826307, 0.00924521498, 0.0329207219, -0.0236755088, 0.0194731373, 0.013143722, 0.0173654873, 0.0473768786, 0.0127299493, -0.0232617371, -0.0400841497, 0.0160983112, 0.00124535628, 0.0208049659, -0.0417392366, 0.0193438344, 0.0234298315, 0.00577987544, 0.032687977, 0.048204422, 0.0211023651, -0.00794571266, -0.0288864467, -0.0021900814, -0.00371748139, 0.0112429569, -0.00481333025, -0.0200808644, 0.00010930204, 0.0132407, -0.00560208317, -0.0271020569, 0.00529498653, 0.00956847426, 0.00288993772, 0.0492129885, 0.0562212504, -0.0261193477, -0.0177146085, -0.022757452, -0.0285243969, 0.0150897419, -0.011378726, 0.00637790514, -0.0252530128, -0.0123097124, -0.0584452748, 0.00787459593, -0.0179732144, 0.0132407, -0.0128851142, -0.00161306374, -0.0372911878, 0.00884437375, 0.00569582824, -0.00883144327, -0.0131889777, 0.0472217128, 0.0111783054, -0.039670378, -0.0106029036, 0.0169258546, -0.0289381687, -0.00322936, -0.000147891114, 0.0555488728, -0.0394893512, 0.0202231, 0.0293778013, 0.00671732752, -0.0299208779, -0.0331017487, -0.00898014195, -0.0228221044, -0.0279554613, -0.0343689248, -0.0180120058, -0.0375497974, -0.0255633425, 0.0551868193, -0.010693416, -0.00881851278, 0.0158914253, -0.0221238639, -0.00272022677, 0.0150768124, -0.0278520174, -0.00208017323, -0.00189753191, -0.00411185762, 0.0116502633, 0.000829968136, -0.00931633171, -0.0201325864, -0.00715696, 0.0256021339, -0.0281364862, -0.025020266, -0.0273089428, -0.00304186973, 0.0344982296, 0.0281882081, 0.0231582932, -0.00258445786, 0.0254469682, 0.0117795672, -0.034912, -0.0224471223, -0.0278520174, 0.0161241721, -0.00764831435, -0.00167286664, -0.0289123077, 0.0346016698, -0.00927754119, 0.00184257783, -0.0125877159, -0.00892195571, 0.0190852266, 0.00662681507, 0.0215549283, -0.0253176652, 0.0348861404, -0.00466463109, -0.0288864467, 0.00570229348, -0.0277227145, -0.0081978552, 0.0441701449, 0.0133570731, -0.0131825125, -0.00413125334, 0.00378536596, -0.00420237053, -0.00817845948, -0.00626153173, 0.00311783561, -0.00521740457, -0.0265848413, -0.0280847643, -0.0459028147, 0.0346533917, 0.0314466618, 0.0155810965, -0.0219040476, -0.00784873497, 0.00320673198, 0.0112041663, -0.0314983837, 0.03982554, 0.0431098565, 0.0102537833, -0.00434137182, -0.00836595, 0.00112413405, 0.0411444381, 0.0293778013, -0.0184128471, 0.0462390035, 0.0122838523, 0.00337482663, -0.0259771142, -0.0219816305, -0.0297398511, 0.00910298061, 0.0447908044, 0.0228738245, 0.00501698395, -0.00351706077, 0.0297657121, 0.0221626554, -0.0380928703, 0.0225117747, 0.0348861404, 0.0393600464, -0.00750608, -0.0650656223, 0.0410409942, -0.00535963848, -0.0267917272, 0.00810087752, 0.0448166654, 0.0196800232, 0.0485923328, -0.0169387851, -0.0137579143, 0.0377049595, -0.0380411483, 0.0165896658, 0.0147664826, -0.00510426378, -0.0348344184, -0.0147794131, 0.00770003581, 0.00688542239, 0.0276192706, -0.00689835241, 0.00640699873, -0.0313690789, 0.077013284, -0.00623567123, 0.00813966803, 0.0210506432, 0.0138872182, 0.0290933345, 0.0574108437, -0.0141199641, 0.0156974699, 0.00193632301, -0.00509779854, -0.00475837616, -0.026946893, -0.008728, -0.00344917621, 0.0126265064, 0.039877262, 0.00923875, -0.00515598524, -0.0123937605, -0.0425150581, -0.00813320279, 0.0100662932, -0.0160853807, -0.0145208063, -0.0104412744, -0.0168741327, -0.00958140474, 0.0235720649, -0.0190981571, -0.0113464, 0.008165529, -0.0152190458, -0.0100081069, -0.00894781668, -0.0228350349, 0.0541006699, 0.0534800105, -0.0463165864, 0.0374722145, -0.00338129187, 0.00592857506, 0.0262874439, 0.0175206512, -0.0186197329, 0.051152546, -0.00689835241, -0.0240116976, -0.0164345, 0.00272345939, -0.0208954792, -0.0178827029, -0.0251366403, 0.0227186605, 0.00204461487, 0.0242185835, 0.00454179244, -0.028369233, 0.0275416896, 0.00375627261, -0.0487992167, 0.0175077207, 0.0250719879, 0.0190722961, 0.0216454398, 0.0371360257, -0.00868274365, 0.0544627197, 0.0013156652, -0.00718928594, -0.00958140474, -0.0121610137, -0.00578634068, -0.00643609185, -0.00749961473, 0.000345483335, 0.00503314659, -0.00915470254, -0.0063035558, 0.021942839, -0.018438708, 0.00543075567, -0.000977051095, 0.0208566878, -0.00808794703, -0.0188136883, -0.0172103234, 0.00225311704, 0.0168870632, -0.0124260858, 0.0126911588, 0.004364, 0.0258736722, 0.00656539574, -0.0130661391, -0.0115856119, -0.0341103189, 0.0253435262, -0.0182447527, 0.0098723378, 0.0192921124, -0.0235979259, -0.0120769665, 0.042540919, 0.0513852909, -0.0140294516, -0.00144577702, -0.0144044328, 0.00358171272, 0.0190852266, -0.0148052741, 0.0359722897, 0.00575724756, -0.00243737479, 0.0307742823, -0.000831584446, 0.0282916501, -0.00302085769, 0.0381445922, 0.0021852327, -0.00503637921, 0.0148052741, 0.00110716303, -0.0167060383, 0.00811380707, -0.0426702239, 0.00426379, 0.00147891114, -0.0113657955, -0.00533377798, -0.00625183433, 0.0172103234, 0.0229772683, -0.00766770961, 0.0182059612, 0.0348085575, -0.0143139204, -0.000129404725, 0.00979475584, 0.00439955853, -0.0352740511, 0.00242282823, -0.00742849801, 0.00161468, 0.0300501809, -0.0331534706, -0.00189268298, -0.032636255, 0.0279037394, 0.00918056257, 0.00337805925, -0.0131631168, -0.035351634, 0.0370843038, 0.0183094051, -0.0190464351, -0.00260870229, 0.0130467433, 0.00035518111, 0.00437693, -0.0479199514, 0.0384549201, -0.0187748987, -0.0163957104, -0.00169711118, 0.0079521779, 0.0182059612, 0.0431357175, -0.00898014195, -0.0385842249, -0.00703412155, -0.0503767245, -0.00290610082, -0.0174430702, 0.0116761243, 0.00120575703, 0.000648538873, 0.000624294451, -0.017753398, 0.0310846101, -0.00543722091, 0.0113593303, 0.00242606085, 0.0191369485, 0.00684663095, 0.0392307453, -0.00755780144, 0.0236367173, 0.0183611251, 0.045514904, -0.00479393499, 0.0134993065, 0.00206724298, 0.000430742977, -0.00532731274, -0.00353968889, -0.0146242492, -0.0310328882, 0.00355261937, -0.00211249921, -0.0121739442, 0.0126911588, 0.00344917621, -0.0147535531, -0.00452239718, 0.00646518543, 0.00652660429, -0.0264426079, -0.0397221, 0.0225247052, -0.0129950223, 0.00888316426, -0.0288864467, -0.0392307453, 0.0128204627, -0.017456, -0.00260223704, -0.00642962661, -0.0257702284, 0.0271020569, -0.0203136113, 0.00117747183, -0.000257395179, -0.028369233, -0.00517538097, -0.0159302168, -0.00907065533, 0.0091482373, -0.00811380707, -0.0119347321, 0.0223436803, -0.00963312574, 0.0235979259, -0.0316535458, 0.029817434, 0.0277485754, -0.00857930072, -0.0274899676, 0.00478746975, -0.0115468204, 0.00135041552, -0.00665914081, 0.0230160598, -0.0283175111, -0.00639406824, -0.00149830664, 0.0227057301, 0.0414806269, -0.00402457779, -0.00727979839, -0.00665267557, 0.020623941, 0.0094133094, -0.0332827717, -0.0250461269, -0.00839827582, 0.00629709056, -0.0014231489, 0.0102667138, -0.0185292214, 0.0113593303, -0.0453338772, -0.0130079528, -0.00086956739, 0.0116502633, 0.00155972596, 0.0378601253, -0.0058768536, -0.0338775702, -0.0284468159, -0.0181671698, -0.00775822205, -0.0338258483, -0.00233069924, 0.00113302376, 0.00790692121, -0.0441701449, 0.00684016617, 0.0399031229, -0.00484888908, 0.0197058842, 0.0173008349, 0.00723454216, 0.00257637631, -0.0384549201, -0.0105899731, 0.00935512315, -0.0258995313, 0.0242703054, 0.0251625013, -0.0103119705, 0.0163698494, 0.00877325609, 0.0155552356, 0.0159302168, -0.02059808, -0.00416357908, -0.00586715573, 0.0183481965, 0.000321642961, 0.0174689312, 0.00429288298, 0.0320155956, 0.0045514903, 0.0247099381, -0.000351140363, -0.0406789444, 0.00300954375, -0.00129626959, 0.0209730603, 0.0188136883, 0.0293002203, 0.0111330487, -0.0126135768, -0.00691128289, -0.0186455939, -0.0126846936, -0.0134734465, -0.00784227, 0.00458058389, 0.0234556925, 0.0165638048, -0.0335931033, 0.0230548512, 0.0140035916, -0.00361403846, 0.0046387706, -0.0204558466, 0.036696393, 0.0268434491, 0.0314725228, -0.0373946317, -0.0126071116, 0.000443269266, 0.0290157516, 0.0124454815, 0.00509456592, -0.0228738245, -0.0173396263, -0.0406789444, -0.0421530083, -0.0239858367, 0.0299208779, -0.0376273766, -0.00425085938, -0.011352865, 0.00435430231, -0.022098003, -0.00303055556, 0.0166155268, 0.00618718239, 0.0276192706, 0.011798963, 0.00306934677, -0.0229514074, -0.00553743122, 0.00317117339, -0.000352150557, -0.0105835078, -0.0104089482, -0.00750608, 0.00547601189, 0.00753194094, -0.00522710243, 0.00535317324, -0.0357654057, -0.0395152122, 0.0165250134, 0.0244513303, 0.00812673755, 0.024205653, 0.0258090198, -0.0208308268, 0.0110877929, 0.000529337034, 0.020623941, -0.00632295106, 0.0182188917, -0.0056732, 0.0128721837, 0.0203265417, 0.0251107793, 0.000777842593, 0.00766124437, -0.0332051925, 0.00617748452, 0.00372394663, -0.00988526829, -0.0118118934, 0.0338775702, -0.0247357991, 0.00304025342, -0.0138742877, -0.0059447377, -0.00442865212, 0.0157491919, 0.00907712, 0.0107968589, -0.0511784069, -0.013143722, -0.00494909938, 0.0160595197, 0.0237272289, 0.0170292985, -0.00969131291, 0.00620657764, 0.0378859863, 0.0172749758, 0.0028236697, 0.00518831098, 0.0261452086, -0.021942839, 0.0117019853, 0.00195895112, -0.0203136113, 0.00321966223, -0.00700826058, -0.0208566878, 0.0075254757, 0.0162405446, 0.0274382457, -0.022098003, 0.0408341102, -0.0209213402, -0.0209859908, -0.014275129, 0.00409246236, 0.00102311559, 0.00779054826, -0.0137967048, -0.0167836212, -0.00381769193, 0.0174301397, 0.0167965516, -0.0423857532, -0.0051236595, 0.022098003, 0.00254405034, 0.00526912604, -0.00471958518, -0.00618394976, -0.00673672324, 0.00265719113, 0.00634234678, 0.0272313599, -0.011798963, 0.0145725273, -0.0117407767, 0.0241668615, -0.00965252146, -0.00913530681, 0.00399225205, 0.013117861, -0.0293778013, -0.00876032561, -0.0173784178, 0.0147147616, -0.0266882852, 0.0113270041, -0.0366446711, 0.0472992957, -0.00219654664, -0.0126006464, 0.0236755088, -0.0010247319, 0.00324875559, 0.0193696953, -0.0224988442, -0.0139389392, 0.00131889782, -0.0145078758, 0.00474544615, -0.0203394722, 0.00114191335, 0.0142621985, -0.0131307915, -0.0157621223, 0.00619041501, -0.0346275307, -0.00890902523, -0.0456442088, -0.00871507, 0.0237401593, -0.0119929183, -0.00888316426, 0.0257185064, -0.00444804737, 0.00552773336, -0.024205653, 0.00847585779, -0.00353322364, 0.00114999479, -0.0208954792, -0.0207403135, 0.000462260738, -0.0399289839, -0.0029028682, -0.0233134571, -0.0173137654, -0.0102279233, -0.00829483289, -0.0015855867, 0.0289381687, -0.00874739606, 0.0208178964, 0.00289640296, 0.0440149829, -0.00507517, 0.010958489, -0.0210765041, -0.0389204137, 0.00325522083, 0.04119616, -0.0131307915, -0.0101244804, 0.0105447173, -0.0113851912, 0.0201843083, -0.035403356, -0.0401617289, -0.00753194094, 0.00382092455, 0.0295071062, 0.020727383, -0.00993052498, -0.00406983402, 0.0306708384, 0.0111524444, 0.0125618549, -0.0248392411, 0.00596736604, -0.0179214943, -0.0299984589, -0.0277227145, -0.0165379439, -0.00788106117, 0.0216454398, 0.0573074035, -0.00211249921, -0.0302312057, -0.0207015239, -0.00506870542, -0.0434201844, 0.0119218016, -0.0297915731, 0.0337999873, 0.0127687408, 0.0186714549, -0.0218523256, 0.0324552283, -0.031291496, 0.0217488836, 0.00531761488, -0.0339551531, 0.0118506849, -0.00948442705, 0.0134993065, 0.00893488619, -0.00448360574, 0.0100016417, 0.00700826058, 0.00467109634, -0.00512042688, -0.00963312574, -0.0159302168, 0.0162405446, -0.00246161921, 0.0155810965, 0.0266882852, -0.0194343459, -0.00475191092, -0.0293519404, -0.0048941453, -0.00988526829, 0.003365129, 0.0462907255, -0.019279182, -0.00781640876, -0.00905126, -0.0166413859, 0.0198869091, 0.0120511055, -0.00302893925, -0.00539842946, -0.00951028708, 0.00716342544, -0.00086956739, -0.0177275371, 0.01917574, -0.0128980447, -0.00274932012, -0.00733152, 0.0126200411, 0.00633264892, -0.0171715319, 0.00904479437, 0.00971717294, 0.0147923436, 0.0155552356, -0.0180507973, -0.00503961183, 0.00556652434, -0.008728, 0.0027299244, 0.00312591717, 0.012064036, -0.0209730603, 0.0370067209, 0.00447067572, -0.00897367671, 0.00687249191, -0.00569906086, 0.00290610082, -0.0304639526, 0.00192824146, -0.00249556149, -0.0179214943, 0.00881851278, -0.000201936025, -0.0109908152, 0.00315985922, -0.026895171, -0.017042229, -0.00874093082, 0.0200032834, 0.0155164441, 0.0271796379, -0.0184516385, 0.0127687408, -0.00508810068, -0.0305932574, -0.0484888889, -0.0256279949, 0.00539519684, 0.014197547, 0.00208825478, -0.00623567123, 0.000969777757, 0.0294812452, 0.0354809351, -0.00173428596, -0.00361727108, -0.0306967, 0.0226410795, -0.00135930523, -0.0139518697, 0.0363602, 0.0264814, -0.0115338909, 0.00994992, 0.00933572743, 0.00550833764, 0.0179990754, -0.00839181058, 0.0200550053, 0.0137061924, -0.014986299, -0.03561024, -0.000175671201, -0.0133829331, 0.00196703267, 0.0012308096, 0.0105705783, 0.026946893, -0.00428965036, 0.0159560777, -0.0357395448, -0.00749314949, 0.0152061153, 0.0303087886, -0.0198481195, 0.0123485038, 0.00666560605, 0.00445451261, 0.0117860325, 0.022046281, 0.023520343, 0.00270083104, 0.025020266, 0.000547116273, -0.00685956143, 0.0245289132, 0.0203524027, 0.012354969, -0.0282399282, -0.011456308, -0.0141070345, -0.0129368361, 0.00550833764, 0.00273477333, -0.0195636507, 0.00791338645, 0.0126071116, -0.00482626073, 0.0186068024, 0.0165120829, -0.0334379375, 0.000437612238, -0.0102279233, -0.0195636507, 0.0050913333, 0.0188136883, -0.013538098, 0.0151802553, -0.00161225558, -0.0254469682, 0.00771943107, 0.0146371797, 0.00154598744, -0.0184775, 0.0189042017, 0.013512237, 0.00125020521, -0.0167319, 0.0127170198, 0.0132019082, 0.00833362341, -0.0304639526, 0.000683693332, 0.0238823947, 0.0197317451, 0.0028366, 0.0197705366, 0.0108356504, 0.0131243262, -0.0174042787, 0.0361274555, 0.00105786591, -0.00212381338, -0.0098206168, 0.000922905165, -0.00760305766, 0.00504284445, 0.0100856889, 0.0316794068, 0.00379829621, 0.0237660203, 0.000322653155, 0.00674965326, -0.0224600527, 0.00406983402, 0.0184128471, -0.0123161776, 0.0173525568, -0.0130079528, -0.0169775765, 0.0158655643, -0.00280427421, 0.00695653912, 0.0114110522, 0.0152449068, 0.0257960893, 0.00423792889, -0.00673672324, -0.00951675232, 0.00417004433, -0.0120252445, -0.0189042017, -0.0193567649, -0.0327655599, 0.00733152, -0.00634234678, -0.00447714096, -0.0184128471, 0.0181154497, 0.00101099338, 0.0163181275, 0.0145725273, 0.00545338355, -0.0237013698, 0.00665267557, 0.0151931848, -0.0103636915, 0.00620657764, -1.35427956e-06, -0.0180507973, 0.0315501057, -0.0152449068, 0.014934578, 0.00490061054, 0.00866981316, 0.0159431472, -0.019809328, 0.00268628448, 0.0215419978, 0.0156069575, 0.00953614805, 0.00103362149, 0.00146759709, -0.0324552283, -0.0244901218, -0.0114498427, 0.0230677817, -0.0114757037, -0.025679715, 0.0274382457, 0.0368515551, -1.64786452e-05, -0.0449459665, -0.0115338909, -0.0126588326, 0.0170034375, 0.0100016417, -0.00838534534, 0.00404397352, 0.00315985922, -0.0307742823, -0.00642316137, -0.00148376, 0.0239341166, -0.00540166209, 0.0154130012, 0.00159043551, 0.0294036623, 0.00514952, -0.00684016617, 0.00854050927, -0.0195119288, 0.0285502579, 0.00170196, -0.00197834661, 0.000507921097, -0.0039276, -0.0253823176, 0.016990507, 0.00246808445, -0.00523033505, -0.0104283439, 0.00994992, -0.017701678, 0.00827543717, 0.00564733939, -0.0314208, 0.0107968589, 0.0129433, 0.0301019028, -0.00417327695, -0.0130984653, 0.0094456356, -0.0128592532, 0.01711981, -0.0255116206, -0.00895428192, 0.00629062532, -0.0146113187, -0.010221458, 0.00971070863, 0.0117666367, -0.00689835241, -0.00888962951, -0.000440844829, 0.0161629636, -0.000608535542, -0.00872153509, 0.0178439114, -0.00175044895, 0.00993052498, 0.0180378668, 0.00639406824, 0.0392566063, 0.011643799, -0.0139389392, -0.0246582162, -0.014908717, 0.0218652561, 0.00922581926, 0.00975596439, 0.00228059408, 0.00522710243, -0.0304380916, 0.00147891114, 0.00650720904, 0.022046281, 0.00718928594, 0.00281882077, 0.0305932574, -0.0482820049, -0.0100468975, 0.0286537018, -0.00471958518, 0.0057055261, -0.00483595859, -0.0251883622, 0.0135251675, -0.000157083792, 0.0103184357, -0.0216713, -0.00540489471, 0.00918702781, 0.00810734183, -0.0252271537, 0.0271537788, 0.00791338645, -0.00450300146, 0.00729272887, -0.0093939146, -0.00733798509, 0.00360757345, -0.0459286757, 0.0151414638, -0.00586715573, 0.00909651536, 0.00898014195, -0.00510426378, -0.0253435262, -0.0203653332, 0.00897367671, -0.017093949, 0.00684663095, 0.0358429886, 0.00561501319, 0.00336189638, -0.00774529204, 0.00809441227, -0.0217876751, -0.00106998812, 0.00270244735, 0.000605303, -0.0137837753, 0.0254986901, 0.0139260087, -0.0309553072, -5.63178255e-05, -0.0149604389, -0.0148699256, 0.00329077919, 0.0158138424, 0.0201196559, 0.00583159691, 0.0218006037, 0.00690481765, -3.46998604e-05, 0.00819139, 0.00511719426, 0.00340068736, 0.00989819877, -0.011061932, 0.0147794131, 0.0185809415, -0.0107451379, 0.0206368715, 0.0389462747, 0.010273179, -0.00439632591, -0.0053208475, -0.0111718401, 0.0209342707, -0.0173525568, -0.0266624242, 0.00130192668, -0.00900600292, -0.0196670927, 0.0114757037, 0.0324293673, -0.00630032318, 0.0277227145, 0.0100016417, 0.0193179734, -0.0106287645, 0.0311104711, -0.00507517, -0.00170842523, 0.0116308685, -0.00216098805, -0.010376622, 0.00314854528, 0.0137579143, -0.0245935638, -0.00039700279, 0.0331276096, 0.000439632597, -0.0158784948, 0.000737839262, -0.00149507413, 0.0352481902, 0.00834655389, 0.0246582162, 0.0231582932, 0.00845646206, -0.0189559236, 0.0366446711, -0.00512689166, -0.00446421048, 0.00388880889, -0.00808794703, -0.0206756629, 0.0235979259, -0.00382738956, 7.1117036e-05, 0.00326491846, 0.00684663095, -0.00462584, 0.0191369485, -0.0289123077, -0.0228350349, -0.011721381, 0.028472675, 0.00190076442, -0.0105770426, -0.00505577493, -0.0265848413, 0.0189429931, -0.00866334792, 0.000379829638, -0.0131501872, -0.00451269932, 0.00753194094, 0.0442477278, 0.0406530835, 0.00227574515, 0.0140423821, 0.00749314949, 0.00833362341, 0.0241410024, -0.0200808644, -0.00973010343, -0.0146242492, -0.0256926455, 0.0232488066, -0.00952968281, 0.0119605931, -0.0344982296, -0.0169646461, -0.011113653, 0.0192403905, -0.0108550461, -0.00134233409, -0.00688542239, 0.0113981217, 0.00106029038, 0.0212445986, 0.0300243199, 0.0156328175, -0.0059867613, 0.0215161368, 0.0154259317, -0.0419978425, -0.0280589033, -0.00196541636, -0.000717635558, -0.0203524027, 0.0150509514, -0.000586715585, 0.0119282668, 0.00200582366, 0.00819139, -0.0213997625, 0.0406789444, -0.0109649543, -0.00312914955, 0.00114757032, -0.0146501102, -0.00942624, 0.0156845395, 0.00659448886, 0.0114757037, 0.0233263876, -0.0265072603, 0.0178309809, -0.0125489244, 0.012354969, -0.0229255464, -0.01922746, -0.0114886342, -0.035403356, 0.00250525936, -0.00986587256, -0.00875386, -0.0228867549, 0.00949089229, -0.013040279, -0.0172879044, -0.0191628095, 0.00591564458, 0.0357395448, 0.00035679742, 0.00771296583, -0.0125618549, 0.00637144, -0.0036560623, -0.0110037457, 0.013486376, 0.0073121246, -0.0124390163, 0.00621950813, 0.0122967819, -0.00581220165, 0.0127428798, -0.00523356767, -0.0204429161, 0.00641669612, -0.0144432234, 0.0013544563, -0.0256538559, -0.00991759449, 0.0130014876, 0.014908717, 0.044144284, -0.00976889487, 0.0103184357, -0.0216842312, -0.0182188917, 0.0228479654, 0.0258736722, 0.0202748217, 0.00715696, -0.000612576318, 0.0084629273, 0.00323097641, -0.0114627732, 0.0147923436, 0.0117019853, 0.00684663095, 0.00877972133, 0.010273179, -0.00420883577, -0.00390173937, 0.00718928594, -0.000461452582, 0.00740910228, 0.0415582098, 0.0257960893, 0.0174947921, -0.0114304479, 0.0213221814, -0.0118183587, 0.0317828506, -0.0294295233, -0.0086439522, -0.0320414566, 0.00287862378, -0.0163181275, -0.00406983402, -0.0052368, 0.0157750528, 0.00987880304, -0.0242573749, 0.0153095583, -0.0143397804, -0.00982708111, -0.012852788, 0.0104218787, -0.0144302938, 0.0265848413, -0.0159690082, 0.014275129, 0.00946503133, 0.0146501102, 0.012510133, -0.0191628095, -0.0243996084, 0.0122321304, 0.00328916288, -0.00262163254, 0.00794571266, 0.00499758823, -0.0118248239, 0.00527559128, -0.000954423, 0.0111459792, 0.0143785719, 0.00933572743, 0.0128075322, 0.00522063719, -0.00605787849, 0.0107386727, 0.00390820438, -0.0159172863, -0.032662116, 0.00932279695, 0.01986105, -0.00775822205, 0.0098206168, 0.00552450074, 0.0115985423, 0.000232342587, 0.00502344873, 0.00781640876, 0.00146194, -0.00852758, 0.0341103189, 0.0109714195, 0.0134475855, -0.00650397642, 0.00258445786, -0.0107774641, 0.0122967819, -0.0059867613, -0.011643799, -0.00332957041, 0.0146630397, -0.00501051871, 0.00794571266, 0.0084629273, 6.84905535e-05, -0.0209730603, 0.0144302938, -0.0107322074, 0.0092322845, 0.014831135, 0.000467917795, -0.00749961473, 0.0218781866, 0.0100016417, 0.00457735127, -0.00815259852, -0.00208825478, 0.00770003581, -0.00131243258, 0.0116244033, -0.0115597509, 0.0263520945, 0.0171715319, 0.00654923264, 0.0122062694, 0.00173428596, -0.0133829331, -0.0017989378, -0.00945210084, 0.0227962434, 0.0016453896, -0.0175077207, -0.0115209604, -0.0195765812, -0.0023193853, 0.032687977, -0.0162146837, 0.00577987544, 0.00377243548, 0.00199935865, 0.0201843083, 0.000805723714, -0.0151673248, -0.0318604335, -0.0224600527, 0.00337482663, 0.0125877159, 0.00161952886, 0.0160336588, -0.017779259, 0.0187231768, 0.0196412336, 0.00814613327, -0.0197317451, -0.0331534706, -0.0040407409, -0.00925168, -0.0129950223, -0.0133700026, 0.00671732752, -0.00925814547, -0.00139082293, -0.0162664056, 0.0125812506, 0.0222273059, -0.0117601715, -0.0211540852, -0.0201713778, -0.0222273059, 0.003273, -0.00727979839, -0.00429934822, 0.00469049206, -0.00145385857, 0.0038338548, 0.0138613572, 0.000672783353, 0.00228544301, -0.00346210669, 0.0106610907, 0.00685309619, -0.00640053349, 0.00518831098, -0.0105253216, 0.01849043, -0.006546, 0.0014336548, 0.00558592, 0.0069694696, 0.00744789327, 0.00704705203, -0.0114821689, -0.00490384316, -0.0203524027, 0.0137191229, 0.0101309456, 0.003365129, -0.00166316889, -0.0148052741, -0.0132083734, 0.0120963613, 0.00874739606, 0.0018571245, -0.0140035916, -0.0251107793, 0.0274641067, -0.00373041187, -0.0175077207, 0.0167319, 0.000293761841, 0.0127105545, 0.0129885571, 0.0136803323, -0.0068143052, 0.00326330215, 0.00385971554, -0.00394699536, -0.0143656414, 0.0285761189, 0.0069824, -0.0130338138, 0.00501051871, 0.0194860678, 0.0184516385, 0.000980283716, 0.0221497249, 0.0145208063, 0.0287054218, 0.008165529, 0.00748668471, -0.0109455585, -0.00274770381, -0.028343372, 0.0119541278, -0.0145208063, -0.0163181275, -0.00423469627, 0.00503961183, -0.00504607707, 0.0103184357, 0.00145224226, 0.000108291853, 0.0225505661, 0.0049200058, -0.0170551594, -0.00711816875, 0.0117407767, 0.0150768124, -0.00343624596, 0.00720221642, 0.00263456302, 0.014882856, -0.0181801, -0.0193050429, 0.00426055724, 0.00578634068, 0.01098435, 0.00516568311, 0.0172491148, -0.0116114728, -0.0114821689, 0.00229029194, -0.0179990754, -0.0322224833, -0.00375950523, 0.0180895887, -0.00322936, 0.00780347874, -0.0113657955, 0.019124018, -0.00780347874, 0.0282916501, 0.0210247822, -0.0148440655, -0.0152190458, 0.0149733694, -0.0121222222, 0.00991759449, -0.0188266188, -0.00574108446, 0.0162276141, 0.00695653912, -0.00744789327, -1.63018631e-05, 0.00971717294, -0.00883790851, -0.0151802553, -0.0183869861, 0.0202877522, -0.0143009899, -0.0307742823, 0.00865688268, 0.0161629636, -0.00996285, -0.00922581926, -0.00365929492, -0.00837241486, -0.00905772485, -0.00337482663, 0.00899953768, 0.0227057301, -0.0138096353, -0.00346857193, -0.0252012927, 0.000763295917, -0.0108744418, -0.0024034325, 0.0147276921, 0.00738324132, -0.0109520238, -0.0126329716, -0.00181025185, -0.0103895525, 0.00998224597, -0.00180378673, 0.0267400052, 0.0144173633, -0.000428318512, -0.0165250134, 0.00331017491, -0.000221230555, 0.00568289775, 0.0187490378, 0.0128851142, 0.00876679085, -0.0168224126, -0.0110942582, 0.0086762784, -0.0159043558, -0.000296792423, -0.000638033, -0.00976889487, 0.010958489, -0.0048521217, 0.0195119288, 0.00711816875, -0.00394699536, 0.00781640876, -0.000101473102, -0.0124778077, 0.0270761959, 0.0118248239, -0.00839827582, 0.0128657185, 0.00338775711, -0.0102861095, 0.000381041842, -0.0231582932, -0.00553096598, 0.0156328175, -0.0284468159, 0.00230968744, -0.0122515261, -0.00124374, 0.0130661391, 0.0053370106, -0.0107516032, 0.00363343419, -0.0021900814, -0.0095749395, -0.0108938375, -0.0108550461, -0.00012021204, 0.00991759449, -0.0321707614, 0.0184775, 0.000385082589, -0.00535317324, -0.00032346131, -0.00963312574, 0.0352223292, -0.00228059408, 0.0120511055, 0.0128204627, 0.0024600029, 0.00400194945, 0.00119282666, 0.00614192616, 0.0165508743, 0.00323259272, -0.0292484984, 0.0148182046, 0.0110231405, -0.015645748, -0.00120252441, 0.024865102, 0.0290674735, -0.0132794902, 0.00166963413, -0.00103362149, 0.0130984653, -0.0029384268, -0.0222402364, 0.00180701923, 0.0212704595, 0.00713109924, -0.00168741331, -0.00527559128, -0.00524326507, -0.00226766383, -0.00293681049, 0.0153095583, 0.0211928766, 0.0230807122, 0.0198222585, 0.0165508743, 0.00534347538, 0.0139130782, -0.0143397804, 0.00468402682, -0.00515598524, -0.0110748624, -0.0117924977, 0.0044674431, -0.0240634196, 0.0113593303, 0.0149604389, -0.0294812452, -0.0106481602, -0.00237110676, 0.00159205182, 0.0238436032, 0.00150234741, 0.00903832912, 0.00209310371, -0.000625102606, -0.0105576478, -0.00952321757, 0.0237013698, 0.000454583351, 0.0032148133, 0.0309294462, -0.0133053511, -0.00751254521, 0.00173913478, -0.028498536, 0.0243608188, 0.0149475085, -0.0269727521, -0.00711170398, 0.0245289132, -0.00173913478, -0.0015395222, 0.0115662161, 0.00380152883, -0.00484242383, 0.00601262227, 0.00796510838, -0.00145789923, 0.0125553897, -0.0237143, -0.0147276921, 0.00158962747, -0.000581866654, 0.0125553897, -0.0124907382, 0.0262486525, 0.0215807874, 0.00180055411, -0.035403356, 0.00147082959, 0.00213512732, -0.0177663285, -0.0137320533, -0.0186973158, -0.0112235611, 0.0050654728, 0.0190464351, 0.00267173769, 0.00430258084, 0.039877262, 0.0162146837, -0.0100662932, 0.0185033605, -0.0105123911, -0.010615834, 0.0236884393, 0.0250073373, 0.00824311096, -0.00138759043, -0.00362373632, 0.0128721837, 0.0182188917, -0.0185421519, -0.0141328946, 0.00307096308, 0.0154388621, 0.0221755859, 0.00655569788, -0.0417909585, -0.00586392311, 0.0135639589, 0.0059447377, 0.0169258546, 0.0014336548, 0.00468725944, -0.0141587555, -0.0216713, 0.000826735573, -0.0339551531, 0.0118506849, 0.0129045099, 0.0225893576, -0.00965252146, 0.00319865043, 0.00550187286, 0.0162534751, 0.0158914253, -0.0322742052, -0.0261710696, 0.00799096934, -0.0118054282, 0.0275158286, 0.0126846936, -0.0120834308, 0.028472675, 0.013434655, 0.00636820728, -0.00280104158, -0.0151802553, 0.0214644149, -0.0327655599, -0.0147794131, 0.0140035916, -0.0245935638, -0.00621950813, 0.0123161776, 0.00506870542, -0.00051277, 0.00678844471, 0.0109649543, -0.0168353431, -0.0176111646, -0.00114595413, -0.0150638819, 0.00508810068, 0.00096008, -0.00318895257, -0.0047648414, -0.00258769048, -0.0065169069, -0.0210894346, 0.00629385794, 0.00118716969, -0.0111912359, 0.0215290673, -0.0118830102, 0.0185162909, 0.0403944775, 0.0147794131, 0.0158655643, 0.00346533931, -0.00433167396, 0.00820432, 0.00757073192, -0.00609666947, -0.0060902047, -0.00525942817, 0.00564087415, 0.00606434373, -0.00524326507, 0.00400518207, -0.00868920889, -0.0271020569, 0.00302409031, 0.0113981217, 0.00868274365, 0.0128398575, -0.0124972034, -0.013143722, 0.0129756266, -0.00373687712, 0.0112882135, 0.00084128225, 0.0342913419, 0.00327623263, 0.0096266605, 0.0174947921, -0.00367545779, 0.00277679716, 0.010221458, -0.0129109751, 0.0198869091, -0.0102085276, 0.00777761778, 0.0128139975, 0.0130984653, -0.00169872737, -0.000333967211, -0.0242185835, -0.0039534606, -8.47040283e-05, -0.0286019798, -0.00742203277, 0.00560854841, 0.0146501102, -0.0114304479, 0.0108356504, -0.00896721147, -0.00665267557, 0.0126911588, 0.0144302938, -0.00168741331, -0.010324901, 0.0243090969, 0.00603201799, 0.0182188917, -0.000622274063, 0.0157750528, -0.00639730087, -0.0188524798, -0.0131501872, 0.00148052745, -0.0132019082, -0.0271537788, 0.00269921473, -0.0188524798, -0.0317311287, 0.0136674019, -0.00257637631, 0.0186714549, 0.000221028517, -0.00235817628, 0.00852758, -0.0036205037, -0.0210635737, -0.0258607417, -0.0167836212, 0.00558268744, 0.00806208607, 0.0153095583, -0.00182803115, -0.0194860678, -0.0094133094, -0.0187361073, 0.0122579914, -0.0254728291, 0.0159431472, -0.00351059553, 0.000631971867, -0.0214902759, -0.000113948889, -0.0120575707, -0.0167060383, 0.00696300436, -0.00762245338, 0.0119929183, 0.01849043, -0.00488444744, -0.0120187793, 0.00834008865, -0.00452239718, 0.0144173633, 0.00579603855, 0.00347180455, -0.0258995313, 0.008728, 0.0133570731, -0.00163326738, 0.00706644729, 0.00862455741, 0.0142104775, -0.000784711854, -0.0131243262, 0.00568613037, -0.0149992295, -0.00482302811, -0.0128786489, -0.0122644566, -0.00373041187, -0.0090189334, 0.0211670157, -0.00989173353, -0.0124648772, 0.00131243258, -0.00560854841, -0.000178802773, -0.000501455914, -0.0015960926, 0.00073824334, 0.00861809216, -0.00565703725, 0.0456959307, -0.00185550819, -0.0273089428, -0.00110797107, -0.00255536451, -0.0151285334, -0.0169775765, -0.00607080897, -0.0127170198, 0.0266365632, 0.00142718968, -0.0053046844, 0.0080362251, -0.00954907853, 0.0320155956, 0.0137967048, 0.00280265789, -0.00951028708, 0.0372136049, -0.0185421519, -0.00368838827, 0.00115322741, -0.00293196156, -0.0331017487, 0.00230645481, 0.00265557482, 0.000634800352, -0.0144432234, 0.0217100922, 0.0150121599, 0.0091482373, -0.00318248733, 0.0128721837, 0.013486376, -0.0178827029, -0.011378726, -1.3953183e-05, -0.00682077045, 0.0211670157, 0.00650397642, -0.00953614805, 0.00855344, -0.0160724502, -0.00438339543, -0.00735738082, 0.00701472582, -0.00272507546, 0.021994561, 0.00130435114, -0.0178439114, 0.0151285334, 0.00203168439, -0.01238083, -0.0115209604, 0.00764184911, -0.0230548512, 0.0174430702, -0.00053337781, -0.0125165982, 0.0144949453, 0.00868920889, -0.00305964891, 0.00115484372, 0.0139777306, -0.0183869861, 0.00129222893, 0.0047228178, -0.0282399282, -0.0147276921, -0.019809328, 0.0186068024, 0.0102020623, 0.028343372, -0.0138613572, -0.0170551594, 0.0105253216, -0.00298368302, 0.00326330215, -0.00643285923, -0.0221885163, 0.0237918813, 0.0110813277, -0.00804915559, 0.0110942582, 0.0114433775, 0.0146113187, 0.0267400052, -0.0150638819, -0.0112558873, 0.0174301397, -0.00579603855, -0.00188460154, -0.0193826258, -0.014275129, 0.00868920889, 0.00712463399, -0.00791338645, -0.00901246816, -0.0032148133, 0.00225796597, -0.0176887475, -0.025524551, 0.0270761959, 0.0322742052, -0.00534347538, -0.0116244033, -0.0096589867, 0.0155293746, 0.0143139204, -0.0171715319, -0.0124972034, 0.0060902047, 0.0141587555, 0.00671732752, 0.0182706136, 0.0211928766, -0.0246582162, -0.0219687, 0.00829483289, 0.00855344, -0.012115757, 0.0139389392, 0.0218393952, -0.00845646206, 0.0125618549, 0.00979475584, -0.0097882906, -0.0342654809, 0.0173654873, 0.0177404676, -0.00719575118, 0.0132019082, -0.0199515615, -0.015619888, -0.0275675505, -0.00179085636, -0.00627446221, -0.00605464587, -0.0348602794, -0.00134637486, 0.00244060741, 0.00640699873, 0.0185680129, 0.00677551422, -0.0121998042, -0.0154388621, 0.0302312057, -0.0201325864, 0.0214514844, 0.00177954219, -0.00352029339, -0.00469049206, -0.0044674431, -0.0133441426, 0.00171004154, -0.000825927418, -0.0196800232, 0.00415711431, 0.00458381651, -0.00597706391, -0.0163698494, 0.026209861, 0.00522063719, 0.0276192706, 0.00522063719, -0.00368515565, -0.00306611415, -0.0185809415, 0.0258219503, 0.00981415156, -0.0230289903, -0.0267400052, -0.00139971264, -0.0133958636, 0.0163439885, 0.01169552, -0.0167060383, 0.0188007578, -0.0126006464, -0.0125359939, 0.0100081069, -0.0185162909, 0.0106998812, -0.00569259562, 0.0134087941, 0.0105899731, 0.00161144743, 0.00318087102, -0.00444804737, -0.000928562251, -0.0100210374, -0.00214320887, -0.000159306204, -0.00148699258, 0.00802329462, -0.0061096, 0.00687249191, -0.000838857784, -0.0213221814, -0.00215290673, -0.0168353431, 0.0135251675, 0.0137191229, 0.00759659242, -0.000947149645, 0.0141587555, -0.00819139, 0.00454825768, 0.00566673465, 0.00835301913, -0.0219557695, 0.00546954665, -0.000988365151, -0.00208178954, 0.00911591109, -0.00855990499, 0.0257960893, -0.00665914081, 0.00240828143, 0.0103119705, -0.00492647104, -0.00150153926, -0.00857283548, 0.0039534606, -0.0170034375, 0.00432844134, -0.0075836624, 0.0221367944, 0.0128786489, 0.000324875553, 0.00225311704, -0.0221755859, -0.0176628865, -0.00572492136, 0.00703412155, 0.0200808644, -0.0166931078, 0.00930986647, 0.0147276921, -0.017042229, -0.00899953768, -0.00646841805, -0.0109972805, 0.00609990209, -0.0104477396, 0.0304122306, -0.00219977926, 0.0329724438, -0.00841120631, 0.00289317034, 0.0174818616, 0.00518507836, -0.0188136883, -0.004254092, -0.00620657764, -0.00931633171, 0.0129368361, -0.00666560605, -0.032869, -0.034032736, 0.00377890072, 0.00884437375, 0.0241151415, 0.0095749395, -0.00197511399, 0.000568936288, 0.0196283031, 0.0171715319, 0.0182835441, -0.0152966287, -0.00733152, 0.0282657892, -0.0118636144, -0.00640699873, 0.0314983837, -0.0342654809, -0.0296622701, -0.00404397352, -0.000215573513, -0.00411509024, 0.00298206671, 0.000243656672, 0.00629385794, 0.013512237, 0.0104736, -5.45184321e-06, 0.0190335046, -0.0112688178, -0.0148440655, 0.00723454216, -0.00762891863, 0.00355261937, 0.0254857596, -0.0136674019, 0.00504930969, -0.0147664826, 0.0012275771, -0.0195895117, 0.0225376356, -0.00833362341, -0.00586715573, 0.00320511567, -0.0278520174, 0.010324901, 0.00671732752, -0.0317052677, 0.00436076755, 0.0109649543, -0.0302570667, 0.00127202517, -0.0212704595, -0.0261969306, -0.0151285334, -0.00604171539, -0.0117278462, -0.00412155548, 0.0280589033, 0.00841767155, 0.0044933036, -0.0395927951, 0.0131889777, 0.0182964746, 0.00996931549, 0.00435753493, -0.00932279695, 0.00756426668, 0.0161112417, 0.012697624, -0.0143268509, -0.0132536301, 0.00420560315, -0.00919349305, 0.0181413107, -0.0206368715, -0.0166284572, 0.00256991107, 0.0195507202, 0.01101021, -0.00794571266, -0.00740263704, 0.000579442247, 0.0112752831, -0.00336189638, 0.00228059408, -0.0146371797, 0.00905772485, 0.0226669386, 0.00700179581, 0.0214514844, 0.0029384268, -0.0109003019, 0.00417650957, 0.01917574, 0.00636497466, -0.0132924207, -0.0163439885, 0.00873446558, 0.0219687, 0.00435753493, -0.00232908293, 0.0320673175, 1.50012502e-05, 0.0278002974, -0.00971070863, -0.0228350349, -0.00746728899, 0.0183481965, -0.00578310806, 0.0380152874, 0.0148699256, -0.0101697361, -0.00556652434, -0.0157879815, 0.0106352298, -0.00366252754, -0.00749961473, 0.00658802362, 0.0136415409, -0.0088055823, -0.0138225658, -0.0163181275, 0.00853404496, -0.000695007388, 0.00332957041, 0.00293519418, -0.00051600259, -0.00068935036, 0.00473251566, 0.00298368302, -0.0135639589, 0.0121416179, -0.0226022881, -0.00286084437, -0.00653953478, 0.00117585552, 0.00390820438, -0.015671609, 0.0014829518, -0.00626153173, 0.0043381392, -0.00850818399, -0.00989173353, -0.0196283031, -0.028472675, -0.0127234841, 0.014882856, 0.00649427855, 0.0226410795, -0.0420754254, -0.0419719815, 0.00284791412, -0.027024474, 0.00770003581, -0.0179602839, 0.0346016698, -0.000319824641, -0.0200550053, -0.00375304, 0.00128091488, -0.000213553154, 0.00688542239, -0.0106998812, 0.0132794902, 0.0219299085, -0.0049781925, -0.0171068795, 0.0152061153, -0.0115662161, 0.00328916288, 0.00914177205, 0.00883144327, -0.0225376356, 0.00111039553, 0.0147018312, 0.0187619682, -0.0130014876, 0.00918056257, 0.0149733694, 0.0276192706, -0.00755780144, -0.00808794703, -0.0124778077, 0.0140035916, -0.0168741327, -0.00727979839, -0.00731859, 0.00612899568, -0.00865041744, 0.0196800232, 0.036696393, -0.0193050429, 0.00792631693, -0.0244642608, -0.00745435851, 0.00444158213, -0.00340068736, -0.001685797, 0.0257314369, -0.0183740556, -0.0176111646, -0.0140423821, 0.00641992874, 0.00419590529, -0.0175594427, 0.00645872, 0.0116567286, -0.00589948148, -0.00321642961, 0.0024551542, -0.0316018239, -0.0180637278, 0.0108809071, 0.00431551132, 0.001685797, -0.00374980737, -0.0162276141, 0.00982708111, 0.0106804864, -0.0051236595, 0.0257831588, 0.0113399345, -0.00231130375, 0.0190205742, 0.0093939146, -0.0163827799, -0.00795864314, -0.0208178964, -0.00549540762, 0.0152966287, -0.0432908796, 0.00700179581, 0.00211249921, -0.00593827246, 0.00845646206, 3.84375453e-05, 0.0158526339, -0.00340068736, 0.00629709056, -0.00828836765, 0.000670762965, 0.00442865212, -0.00877325609, 0.0105188563, 0.00199612603, 0.0196800232, -0.0125295287, 0.00661065197, 0.00645548757, -0.011456308, 0.00516891573, -0.0043122787, 0.00464200322, 0.0114304479, -0.00857930072, -0.0228738245, -0.0141458251, -0.00491354056, 0.0358429886, -0.0210765041, -0.00985294208, 0.00878618658, -0.0236237869, 0.0331017487, -0.0104089482, 0.0147535531, -0.00918702781, -0.00622920599, -0.000526912569, -0.00365929492, -0.0170810185, 0.00545338355, -0.0110877929, 0.00058792776, 0.0161758941, -0.0158267729, 0.00240666512, -0.0358947068, 0.0106546255, -0.00617101928, -0.0136544714, -0.00531114964, 0.0217230227, -0.0118700797, 0.00508486805, 0.00899953768, -0.0321707614, -0.0196929537, -0.0226669386, 0.0289123077, 0.00958787, 0.0217876751, -0.00110393041, -0.00362373632, -0.0279296, -0.00762245338, -0.00493940152, -0.00647165, -0.0115080299, -0.00765477913, -0.00494586676, -0.00857930072, 0.00242606085, -0.014249268, 2.28806948e-05, -0.027024474, -0.0242961664, -0.00664621033, -0.0077970135, -0.0463165864, 0.0104671353, -0.00715049496, 0.0023403971, 0.00661388459, -0.00482949335, -0.0266624242, 0.0107645337, 0.0156328175, -0.00115807634, 0.00221594214, -0.005346708, -0.016990507, 0.0139518697, 0.0100921541, -0.0213997625, 0.00796510838, 0.0339034311, 0.0111007234, 0.0152707677, 0.0158784948, 0.0226669386, -0.0224988442, 0.0134734465, -0.0102602486, -0.00757719716, -0.0198869091, -0.0282399282, -0.00178762374, -0.0213221814, -0.00369485328, -0.0133312121, 0.0134734465, 0.00894781668, 0.0112364916, -0.0082495762, -0.0025327364, 0.00594797032, -0.00106675562, 0.00819139, -0.014249268, -0.00359787559, 0.00559561793, 0.010641695, 0.0152449068, 0.00831422862, -0.0249038935, 0.00188298523, 0.014856996, -0.00929047074, 0.00441572163, 0.0151673248, -0.00942624, -0.0190593656, -0.0112364916, -0.0123937605, 0.0436270684, -0.00364313181, -0.0280589033, -0.00338775711, 0.00231615268, -0.026998613, -0.0233781096, 0.00585422525, 0.0156974699, 0.00707937777, -0.0176370256, 0.0124454815, -0.0159690082, -0.00580896903, 0.0314983837, -0.00641669612, -0.00195410219, -0.00894781668, 0.00214320887, 0.0280071832, -0.000911591109, 0.00824311096, -0.0119929183, -0.000339422229, -0.0225376356, 0.00919349305, -0.0113270041, -0.00990466401, -0.0128980447, -0.000236585372, -0.0113205398, 0.0106998812, -0.000843706657, 0.00349766528, -0.000621465908, -0.00256182975, 0.0203782637, 0.00586069049, 0.00392113486, -0.00925168, 0.0134475855, -0.0132924207, -0.00507193804, -0.0522904173, -0.022072142, 0.00753840618, 0.00840474106, 0.0310587492, 0.0240375586, -0.00184257783, 0.0292484984, 0.00893488619, 0.00101422588, -0.000421045203, 0.00460967701, 0.0182059612, -0.0133312121, 0.00632295106, -0.00746728899, -0.00796510838, -0.0124842729, -0.0107709989, -0.00969777815, 0.00795864314, 0.00560208317, -0.00745435851, 0.0168224126, 0.0105835078, 0.025550412, 0.0136415409, -0.0222790278, 0.00200097472, 0.0111524444, 0.00952968281, 0.0129239056, -0.0267400052, -0.00203976594, 0.0151026724, -0.00834655389, -0.0178180505, -0.00396639109, 0.0116761243, 0.00290771713, -0.0153354192, -0.00295458967, -0.00462907273, -0.0100662932, 0.00779054826, -0.0126782283, 0.00241474668, 0.00236787414, -0.00643932447, -0.0152578373, -0.0220850725, -0.0196800232, -0.0154259317, -0.00616778666, 0.00572815398, -0.00301116, 0.0107580684, -0.00504607707, -0.0111977011, 0.00525619555, -0.00171327405, -0.00112494221, 0.0254986901, -0.0028091229, 0.00499758823, 0.00771943107, 0.00571845612, -0.00284791412, -0.00813320279, -0.0026103186, 0.00711170398, -0.00190399704, -0.00875386, -0.0139906611, -0.0109326281, 0.0069694696, 0.013538098, -0.00318895257, -0.00328593049, -0.0170292985, -0.0024002, 0.0251625013, -0.00973010343, -0.00268628448, 0.00345564145, -0.00726686837, 0.012458412, 0.00977536, 0.00734445034, -0.00110312225, -0.0166025963, -0.0136415409, -0.0170551594, 0.00842413679, 0.00194278813, -0.00443834951, -0.00340068736, -0.0175077207, 0.0143915024, 5.99039813e-05, -0.0103313662, -0.00132778741, 0.00455795554, 0.0525231659, -0.00597706391, -0.00562147843, 0.0093939146, -0.000342048705, -0.008728, -0.00117828, 0.00125101337, -0.0194602069, -0.00593827246, -0.0077646873, 0.0131889777, 0.0126911588, 0.0127946017, -0.00521740457, 0.0186326634, 0.0314466618, 0.0112041663, -0.00649751117, 0.0320673175, 0.0121868737, 0.00831422862, -0.000781883311, -0.00569582824, -0.0107063465, 0.00958140474, -0.00687249191, -0.00231615268, -0.00421853317, 0.00293034525, 0.0221626554, -0.0094456356, 0.0237272289, 0.00818492472, 0.0271020569, -0.00890902523, -0.00766770961, 0.00341361784, 0.00195086969, -0.00912884157, -0.0267658662, 0.00477130665, 0.00394376321, 0.0149475085, 0.0215549283, 0.00639406824, -0.0297398511, -0.0171973929, 0.0263908859, 0.0151802553, -0.0139906611, -0.01101021, 0.00344917621, -0.0111847706, 0.00693067862, -0.0276968535, -0.0138742877, 0.017456, -0.0030548, -0.0190981571, -0.00769357057, -0.011456308, 0.00684016617, 0.0163957104, 0.0172879044, -0.0108291851, -0.0223824717, 0.0161629636, -0.000408316846, -0.00685956143, -0.00326168584, -0.0225764271]
17 Jun, 2022
multiset begin() and end() function in C++ STL 17 Jun, 2022 The multiset::begin() is a built-in function in C++ STL that returns an iterator pointing to the first element in the multiset container. Since multiset always contains elements in an ordered way, begin() always points to the first element according to the sorting criterion. Syntax: iterator multiset_name.begin() Parameters: The function does not accept any parameters. Return value: The function returns an iterator pointing to the first element in the container. Below program illustrate the above-mentioned function: CPP // CPP program to demonstrate the // multiset::begin() function #include <bits/stdc++.h> using namespace std; int main() { int arr[] = { 14, 10, 15, 11, 10 }; // initializes the set from an array multiset<int> s(arr, arr + 5); // Print the first element cout << "The first element is: " << *(s.begin()) << endl; // prints all elements in set for (auto it = s.begin(); it != s.end(); it++) cout << *it << " "; return 0; } Output: The first element is: 10 10 10 11 14 15 The multiset::end() is a built-in function in C++ STL that returns an iterator pointing to the position past the last element in the container. Syntax: iterator multiset_name.end() Parameters: The function does not accept any parameters. Return value: The function returns an iterator pointing to the position past the last element in the container in the multiset container. Below program illustrate the above-mentioned function: CPP // CPP program to demonstrate the // multiset::end() function #include <bits/stdc++.h> using namespace std; int main() { int arr[] = { 14, 10, 15, 11, 10, 12, 17, 12 }; // initializes the set from an array multiset<int> s(arr, arr + 8); // prints all elements in set for (auto it = s.begin(); it != s.end(); it++) cout << *it << " "; return 0; } Output: 10 10 11 12 12 14 15 17 Let  us see the differences in a tabular form as shown below as follows: multiset begin() multiset end() It is used to return an iterator referring to the first element in the multiset container. It is used to return an iterator referring to the past-the-end element in the multiset container. Its syntax is -: iterator begin(); Its syntax is -: iterator end(); It does not take any parameters. It does not take any parameters. Its complexity is constant. Its complexity is constant. Its iterator validity does not change. Its iterator validity does not change. Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL
https://www.geeksforgeeks.org/multiset-begin-and-end-function-in-c-stl?ref=asr10
PHP
multiset begin() and end() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[0.00462819403, 0.0086175669, -0.00379381562, 0.0183693673, -0.0053224233, -0.0444045924, -0.037807785, 0.0126916822, 0.0182520337, -0.00161905319, -0.0302201528, 0.0146277016, -0.0172220971, -0.00791356061, 0.0116095971, -0.014275698, 0.0372602232, 0.0139758429, 0.00733992504, -0.0290989559, -0.0143408841, -0.00320225419, -0.0146798501, -0.00167038699, -0.00263839657, 0.00529634906, -0.0291250311, -0.0035656651, 0.00266610063, -0.018591, 0.0236624572, 0.00636865618, 0.013258799, 0.00329677365, -0.0474292114, 0.0431530215, 0.0354610942, 0.0143278465, -0.0421882719, -0.0123983454, 0.00872186478, 0.00914557278, 0.0319671333, 0.00274921255, -0.0396069139, 0.0542867631, -0.0122158257, -0.0493847877, -0.0206769463, -0.00934113, 0.0342095271, 0.0325407684, 0.0553297363, 0.0229584519, 0.0281602815, 0.00973876379, 0.0136238392, 0.0236885324, -0.0535566807, -0.0518618487, -0.025161732, -0.0280299094, 0.0177696589, -0.0242882427, 0.00654791715, 0.0189169291, -0.0538174249, 0.0484721884, 0.00954320654, 0.00975832, -0.00489219697, 0.0152274109, -0.0038981128, 0.0147059243, -0.0159183815, -0.0273780506, 0.00023283565, 0.00501605, -0.0247575808, 0.0279777609, -0.0354610942, 0.0223848149, -0.00466078706, 0.00311099389, 0.051001396, -0.00914557278, -0.00107556628, -0.0341052301, 0.0590322912, 0.00858497433, -0.0429705, 0.00182520342, -0.00306536397, 0.00542998, -0.0135456165, 0.0185649265, 0.0430747978, 0.0137020629, -0.0362693965, 0.0188126322, 0.0166093502, 0.00860453, 0.00263513741, -0.0140149547, 0.0223196298, 0.033505518, 0.0330101065, 0.0182389971, -0.0132522797, -0.0204553157, 0.0268044155, 0.0283949487, -0.00802437589, 0.0647164956, -0.0230106, -0.0045369342, 0.00608835695, -0.0213418417, 0.0409888513, 0.0222283695, 0.00732688792, 0.0146537758, 0.0179782528, 0.0349917561, -0.0637256727, 0.001371347, 0.00855238177, 0.0255398098, -0.0254615862, 0.00556035154, 0.012476569, -0.022345705, 0.00508449506, -0.0519661456, 0.00618287642, 0.0150188161, 0.0132262055, 0.0113032237, -0.0169092063, -0.0200772379, -0.0584065095, -0.0199990142, -0.00356240594, 0.0303765982, -0.0506885052, -0.0485504083, 0.00112038152, 0.0382510461, -0.00307514169, -0.00579502061, -0.0229193401, 0.025057435, 0.026413301, -0.0153317079, -0.00120349345, -0.0260743331, 0.0202988684, -0.00134364306, 0.0122419, -0.0407541841, 0.0232974179, 0.0136890253, 0.00657073222, -0.0186301116, 0.0112836678, 0.0384074934, 0.0158531945, 0.00103645481, -0.0467773564, 0.0419275276, -0.0130762784, 0.0291771796, -0.00627413671, -0.0170786884, 0.00816778466, -0.0349135324, 0.0273259021, 0.0219937, 0.000409855944, 0.0204683524, 0.0105861798, 0.00944542699, 0.00957579911, 0.00141453266, -0.00775059592, 0.00123690127, 0.0424229428, -0.0304287467, 0.033401221, 0.00510405097, 0.00560924085, 0.0076462985, 0.0496716052, 0.00770496577, 0.0417710841, 0.0196470097, -0.048759006, 0.0104753636, 0.0105079561, 0.0491761938, -0.0107230702, -0.0118573029, 0.00936720427, 0.0240535736, 0.0287860651, -0.0261264816, -0.0236754958, 0.00109838136, 0.0136759877, -0.016648462, -0.00273780501, -0.021433102, 0.0251356587, 0.0124374572, 0.00848719571, -0.00184149982, -0.0619004704, 0.0332969241, 0.0114270765, -0.0444045924, -0.00266773021, -0.0425011627, 0.0354089439, -0.0522790402, -0.0398937315, -0.0306112673, 0.00893046, 0.0197904203, -0.00579176145, -0.018108625, 0.0107752187, 0.0331144035, -0.0344702676, -0.0106644025, 0.0204422772, -0.0125352358, -0.0240014251, 0.0018284627, -0.007137849, 0.0122940484, 0.0220719241, 0.0271433815, -0.0432573184, 0.0147971846, 0.0399458781, 0.0536609776, -0.00226031872, -0.0329579562, -0.030585194, -0.0322539508, 0.0325407684, 0.024718469, 0.0319671333, -0.021732958, 0.0155142285, 0.00739207352, 0.00705962582, -0.00600687461, -0.0182911456, 0.00609487575, 0.0138976201, 0.0486807823, -0.0181868486, 0.0161660872, 0.0064957682, 0.00977135636, 0.0400241, -0.00265958207, -0.0221892577, -0.035096053, 0.00406433688, -0.00211039139, 0.00748985261, -0.0359565057, 0.014106215, 0.0178739559, -0.0227759313, 0.0220849607, 0.0241187587, -0.0215113256, 0.00348418276, -0.0278213136, 0.00898912642, -0.00902823824, 0.0343659706, -0.0275866445, -0.00685755, -0.00462819403, -0.0128481276, -0.0234017149, -0.0174698029, -0.0125678293, 0.00650880579, 0.014549478, 0.0323843211, 0.0609096438, -0.0044098217, -0.0268044155, -0.0281863548, -0.0234929752, 0.00786793, -0.00784837455, 0.00422078278, -0.0483678877, -0.0162834208, -0.0330361798, 0.0179912895, -0.00827860087, 0.0347049385, -0.0462037213, -0.00425989414, -0.0583022088, -0.00770496577, 0.0154229682, 0.0131675387, -0.033635892, 0.0318628363, -0.00449130405, -0.0286556929, -0.00433485815, 0.000358318386, -0.0271173064, 0.0123983454, 0.0242360942, 0.0198816787, -0.0398937315, -0.013936731, 0.0492022671, -0.0136499135, -0.0506624319, -0.0167266857, 0.000814008119, -0.0116226347, 0.00756807532, -0.0100060254, -0.0394243933, -0.00451411912, -0.00681843841, 0.0310806055, 0.0293597, -0.017939141, 0.00940631609, -0.0181607734, 0.0150318537, 0.000952528033, 0.00092074991, 0.00627087709, -0.0107556628, -0.00978439394, 0.013174057, 0.000763896503, -0.0156837124, -0.0192037467, -0.0231931191, 0.0328015126, -0.0182650704, -0.0192428585, -0.0429444276, 0.00554079609, 0.0196079, 0.00126867928, 0.0358522087, 0.0220328122, 0.0359043591, 0.00866971631, -0.0342877507, -0.00953668728, -0.0515489578, 0.0346527882, -0.00170297991, 0.0105796605, -0.0324103981, 0.0439613275, 0.0155794146, -0.00810911786, -0.0205987245, 0.00259602582, 0.0229714885, 0.0210811, -0.000972898561, -0.0111011481, 0.0268826373, -0.0148754073, -0.0207551699, 0.0231409706, -0.0355653912, 0.000154714508, 0.00460212, -0.00169320207, -0.0138324341, -0.0159835666, 0.0129980557, -0.00378729706, -0.0129915364, -0.00853934418, 0.0251747686, -0.0525919311, -0.048524335, -0.0283428, -0.0432312451, 0.0380424522, 0.00328862527, 0.00990824681, -0.000576487218, -0.0262047052, -0.0250835083, 0.00142675499, -0.035982579, 0.0180304013, 0.0423707925, 0.0100060254, 0.00300017814, 0.0130110923, 0.0149145192, 0.0298811868, 0.0209768023, -0.0335837416, 0.04367451, 0.0208985787, 0.00432833936, -0.0114466324, -0.0388768315, -0.00223750388, 0.00797222741, 0.0241057221, 0.0275084227, 0.0174828414, 0.00815474801, 0.0039013722, 0.0255137365, -0.0114270765, 0.0151491882, 0.0349656828, 0.0324625447, -0.000862082641, -0.0507667288, 0.0288382135, -0.0152404485, -0.023127934, -0.0250052866, 0.0464644618, 0.0306112673, 0.0295682941, -0.0167657975, 0.00895653386, 0.0302723013, -0.0433355421, 0.00363736949, -0.00212831749, 0.00665547373, -0.0422664955, 0.00977135636, 0.00649250904, 0.0219154768, 0.0360347293, -0.00949105714, 0.0476638824, -0.0209637638, 0.0624219552, 0.0191385616, 0.00372862979, 0.0181998853, -0.00262372987, 0.0154099315, 0.0336619653, -0.0119485632, 0.000840897264, 0.0328015126, 0.00657399138, 0.00257484056, -0.00827208254, -0.0329840332, 0.00234017149, 0.0027247679, 0.0387464613, 0.00481723296, -0.0153577831, -0.0106774401, -0.0311066806, -0.0222153328, 0.0243534278, -0.00548864715, -0.0474031381, -0.0103515107, -0.0203640554, -0.00893697795, 0.00352981291, -0.0369473323, -0.0240014251, 0.00381663069, -0.0271433815, -0.00427293126, -0.0223196298, -0.0273780506, 0.0146928867, 0.0458386801, -0.0407281108, 0.0233756397, -0.00918468367, -0.00299691875, 0.0311066806, -0.0189169291, -0.033505518, 0.0332969241, 0.0157228224, -0.0162443109, -0.0406759605, -0.00656421343, -0.0320192836, -0.00135830988, -0.0236885324, 0.0272737537, 0.0301158559, -0.00382640841, -0.0124504948, 0.00866319705, 0.0498019792, -0.0070857, -0.0207682066, 0.00570050115, 0.0287078414, 0.00194742682, 0.00676628947, 0.0431008749, -0.0130306482, 0.0440656245, 0.00556361116, 0.00513990317, -0.0223587416, -0.0132848732, -0.00573635334, 0.00354610942, -0.00759414956, 0.0210811, 0.00201750151, -0.0149145192, -0.0191124864, 0.0163486078, -0.0246272087, 0.00696836552, -0.0246272087, 0.0059221331, 0.00836986117, -0.0139236944, -0.0106318099, 0.0111924075, 0.0133109475, 0.00155875622, -0.00198327913, -0.00192461174, 0.0149014816, 0.00999950711, -0.00784837455, -0.0153577831, -0.028551396, 0.0253572892, -0.00552775897, -0.00477486243, 0.00672717812, -0.00244772807, -0.0203510169, 0.0300637074, 0.0398937315, -0.00481071463, 0.00812215544, -0.00345159, -0.0253964011, 0.0117073758, -0.0034776642, 0.0407802574, 0.0165311284, 0.00455974927, 0.0340270065, -0.00160438637, 0.00932157412, 0.0212896932, 0.0297247414, 0.011629153, -0.015905343, -0.00601013377, 0.0183302574, -0.0228932649, 0.0146537758, -0.0481071472, -0.0130241299, 0.00793963484, -0.0222935546, -0.00858497433, -0.0125678293, 0.00239720917, 0.00743770367, -0.00623828452, 0.0278213136, -0.000872675388, 0.000736599904, -0.0170656517, 0.0178869925, -0.00709873717, -0.0302723013, 0.00485308561, 0.0145885898, 0.00433159852, 0.0101755084, -0.0247706175, -0.0051105693, -0.0189169291, 0.0170004666, 0.0308198631, 0.0120658977, -0.0234799385, -0.0463862382, 0.0143539207, 0.0134413186, 0.00283721345, 0.0129785, 0.00560272252, 0.00258787768, -0.0117008574, -0.0145364413, 0.017091725, -0.0231018607, 0.00500953151, 0.000331836636, 0.0213418417, 0.0156706739, 0.0237146057, -0.0107426252, -0.0185388513, -0.0060427268, -0.0234017149, 0.00171927642, -0.0119485632, 0.0229193401, -0.00136156916, 0.0191646349, -0.00536479428, -0.0177696589, 0.0326450653, -0.0130502041, 0.0275084227, -0.0118703404, 0.0194644909, 0.0153056337, 0.039372243, -0.00542998, 0.0177305471, 0.00342225633, 0.0482114442, 0.0102602504, 0.0069553284, -0.0147059243, 0.0160357151, -0.00651206495, -0.00648273109, -0.0146928867, -0.0415624864, 0.00220654043, 0.0234929752, 0.00218861434, -0.00547235087, 0.0131545011, -0.0264915228, -0.00479115872, 0.00525397807, 0.0122875301, -0.0162443109, -0.0554861836, 0.0115509303, 0.00921727717, -0.0038687794, -0.0348353088, -0.0141453259, -0.00275247195, 0.000323688408, -0.0019311303, -0.0126525704, -0.0343398973, 0.0272737537, -0.0139758429, -0.00805045, 0.0120202675, -0.0379903056, -0.0194905642, -0.0231018607, 0.000246891344, 0.00403500302, -0.00208431715, -0.00705310749, 0.0155403027, -0.0492544174, 0.00840897299, -0.00874793902, 0.0224500019, 0.00818082225, 0.00340595981, -0.00856541842, 0.0200902745, -0.00687058689, -0.00405129977, -0.0335837416, 0.0060492456, -0.0137020629, -0.0288642868, -0.0169222429, 0.00150579272, 0.0613268316, 0.000956602104, -0.0131936129, 0.0105275121, 0.0216156226, -0.00279321312, -0.0194775276, -0.0314717218, 0.003441812, -0.00250313594, -0.00912601687, 0.00190179667, -0.019125523, 0.0202727951, -0.0218502916, 0.00552124, 0.0112315193, 0.00566139, 0.004077374, 0.0548604, 0.00266936, -0.0174046177, -0.020924652, -0.0176392868, -0.0103189172, -0.0317324661, 0.00295291841, -0.00938676, 0.00527027482, -0.0231931191, 0.00587650295, 0.0235190485, -0.0286817681, -0.0117790801, 0.00697488431, 0.0116030788, 0.00869579054, -0.0167006105, -0.00794615317, -0.000384800136, -0.0219024401, 0.0082851192, 0.000376855605, -0.0229584519, 0.0410931483, 0.0246663205, 0.021837255, 0.0365562178, -0.0116682639, 0.00506493915, -0.0224891137, 0.0256180335, 0.0125547918, 0.0236103088, -0.0170004666, 0.0290468074, 0.0110685546, -0.0137802856, 0.0470380969, -0.0331144035, -0.000546746189, -0.0101820277, 0.024210019, 0.0157880094, 0.0276127197, 0.000139334719, -0.0203770921, 0.0246663205, 0.00210387283, 0.00353959086, -0.0127764232, -0.0121050095, -0.0014047547, 0.00193927856, 0.0322800241, -0.041041, 0.0429965779, 0.0225412622, 0.0132001312, 0.00807000604, 0.00274432357, 0.0177305471, 0.0115770046, 0.0383814201, -0.0464123152, -0.0186822601, 0.0109838136, 0.0255267732, 0.0281342063, 0.00286491751, -0.03092416, 0.00468034297, -0.0448478535, -0.0586151034, -0.020142423, 0.0404152162, -0.003653666, 0.00320551335, -0.0178087708, -0.00500953151, -0.0269608609, -0.0229845252, 0.016309496, 0.000858008571, 0.0235060118, 0.00208594673, 0.0159574915, -0.0247054305, 0.00729429489, 0.0197252333, 0.00844808389, -0.00207779859, 0.017665362, -0.00178772153, -0.000783859636, 0.0435962863, -0.0357479118, 0.0255789217, -0.00712481188, -0.0370777026, 0.0108534414, 0.0234277882, 0.00687710568, 0.0245229118, -0.000854749233, -0.0144842928, 0.0203901287, -0.00983002409, 0.0301419292, -0.0109838136, 0.00894349627, -0.00266284123, -0.00320225419, -0.00644036056, 0.0422664955, -0.00211853953, -0.00243795, -0.0376252644, 0.00267587858, -0.00309143821, -0.0114010023, -0.00538760936, 0.0450825244, -0.0170526151, 0.00484982599, 0.00642732345, 0.0155924512, 0.00482049258, 0.0135456165, -0.00403174385, 0.0100321, -0.0535045341, -0.0222153328, 0.0033570705, 0.0253442526, 0.0107035143, 0.0199859776, 0.00895653386, 0.0246272087, 0.0110164061, 0.0176914353, 0.00337988557, -0.00505190203, 0.0146016274, -0.0264654495, 0.00461841654, -0.0190603379, -0.0356696881, -0.00192461174, 0.00650880579, -0.00874793902, 0.00250965473, 0.0242230557, 0.0158792697, -0.0145103671, 0.0324364714, -0.0302723013, -0.032618992, -0.0424490161, -0.0149145192, 0.013936731, -0.00272802729, -0.0332708508, -0.0128090167, -0.018956041, 0.0237276442, -0.00885223597, -0.0127373124, -0.0077375588, 0.01546208, -0.00953668728, 0.0205465741, -0.0114466324, 0.00974528212, -0.0298029631, 0.00945846457, -0.0123983454, 0.00664895494, 0.00935416762, 0.0334533714, 0.00394048356, 0.0467773564, 0.0232322309, -0.00801133923, 0.00429574633, 0.0271694567, -0.0127047189, -0.0344441943, -0.0345484912, 0.00664895494, -0.00660332525, -0.00378403766, -0.0234929752, 0.0136759877, 0.0125091616, 0.0132001312, 0.0337401889, -0.000570376054, 0.00885223597, 0.0130502041, -0.0139236944, 0.014445181, -0.006714141, -0.00539738731, -0.00448152609, -0.0357739851, 0.00546583207, 0.00885875523, 0.00624480285, -0.00499323476, -0.0163225327, -0.0218242183, -0.00306373416, -0.0652379841, -0.0062545808, 0.00743118534, 0.0122744925, -0.00204520556, 0.0138585083, -0.0140149547, 0.000893860764, -0.0375470407, 0.00329188467, -0.011035962, -0.0135195423, -0.0244707614, 0.0046575279, -0.016309496, -0.0276648682, -0.0183302574, -0.00479115872, -0.010716551, -0.0118247103, -0.000965565152, -0.00957579911, 0.0253312159, -0.00195557508, 0.0096475035, -0.0104492893, 0.0254094377, 0.00826556422, -0.00263839657, -0.0115118185, -0.0283949487, 0.0014047547, 0.0200511627, -0.00932809338, 0.00127845723, 0.0330101065, -0.0144973295, 0.0317585394, -0.040962778, -0.013597765, -6.78849392e-05, 0.0153708197, 0.0339227095, 0.03418345, 0.00307351211, 0.0134804305, 0.0106187724, 0.0193210822, 0.00163942378, -0.0237146057, -0.0209637638, 0.00980395, -0.0171960238, -0.0213809535, -0.00314684608, -0.0345745683, 0.0122288624, 0.0529048219, 0.022176221, -0.00179912907, -0.0161660872, -0.0240926836, -0.045134671, -0.00223424449, -0.0283167269, 0.0219806638, 0.00448804488, -0.00678584538, -0.0342095271, 0.0301419292, -0.0222414061, -0.0137933223, 0.038485717, -0.0344702676, -0.0115900412, -0.0184867028, 0.0219024401, 0.00771800289, -0.00632628519, -0.0068901428, 0.0263611507, 0.00185616664, -0.0139628062, -0.033635892, -0.0298811868, 0.00550820306, -0.000147890358, 0.00588628091, 0.0192428585, -0.0196209364, 0.00211528037, -0.00674021523, 0.00743118534, -0.00534197921, 0.0161921605, 0.0521225929, -0.00123608636, -0.0226325225, -0.0123787904, -0.0219285153, 0.00839593541, -0.00948453881, 0.00631650724, -0.00288936216, -0.0128872395, -0.0020712798, -0.00249661738, -0.00199794583, 0.00678584538, -0.0325407684, -0.00831119437, 0.00299040019, 0.0073790364, 0.0165441651, 0.00204846496, 0.00864364207, 0.000278669439, -0.00350373867, 0.0076462985, -0.0236233473, -0.00812867377, -0.00664243661, -0.00874793902, -0.00537457224, 0.0107556628, 0.000121408615, -0.00234506046, 0.03939832, 0.0228411164, 0.00721607171, 0.0308980849, 0.00790052302, -0.000420041208, -0.031706389, -0.0125939036, -0.00464123162, 0.00316151301, 0.00495086424, -0.0160096418, -0.00396981742, 0.0320975035, -0.0258787759, 0.00707266293, -0.0103449924, 0.0192819703, 0.0306112673, 0.0334272943, -0.0155142285, -0.00511382893, -0.0102602504, -0.00968661532, -0.0305069704, -0.0161269754, 0.0202336833, 0.0188126322, 0.00862408616, 0.0104297334, -0.0045304154, 0.0391115025, 0.0473509915, -0.0161791239, -0.0120267868, -0.0333751477, 0.0302983765, 0.0116095971, -0.00973876379, 0.0164529048, 0.0103254365, -0.00161253463, 0.0180695131, 0.0201293863, -0.00951061305, 0.0325929187, -0.0102798063, 0.0184606276, 0.0293075517, -0.0105731422, -0.0294900723, -0.0165963136, -0.0207290947, -0.00462493487, 0.000723155332, -0.00375470403, 0.0185258146, -0.00225380016, 0.0204292405, -0.0206247978, -0.0126330145, 0.0119224889, 0.00469989888, -0.0233234912, 0.0226325225, -0.0151622249, -0.00222609635, 0.00603620848, 0.0153447455, 0.0343398973, -0.00624154368, 0.0198816787, -0.00449456321, 0.00268239714, 0.0224239267, 0.0198686421, -0.0252138805, -0.0244577248, -0.00597754121, -0.00622850657, -0.0108273672, 0.00492153037, 0.000717451621, -0.0344963446, 0.0271173064, -0.00692273583, 0.0104362518, -0.00587976212, 0.00684451265, -0.0450825244, -0.00816778466, -0.0035656651, -0.0136629511, 0.00176653615, 0.017495878, 0.00903475657, 0.0114205582, 0.0324625447, -0.0175349899, -0.010377585, 0.0164920166, -0.00472597312, -0.0353567973, 0.00397959538, 0.0307937879, -0.00385248289, -0.0124439755, -0.00691621704, -0.00155223766, 0.0119550824, -0.0358522087, 0.00723562762, -0.00532568246, 0.0260352232, -0.023362603, 0.0239883866, 0.00328536611, 0.0128416093, -0.0107295886, 0.0147450361, -0.00470967637, 0.00572983501, -0.0241448339, -0.00551472139, -0.00900216401, -0.00655117631, -0.00356240594, 0.00673369691, 0.00289262133, 0.0257092938, -0.015631564, -0.00531916413, -0.0109055899, 0.00149031112, 0.0178739559, -0.00391440932, 0.0178087708, -0.0305069704, -0.013323985, -0.00165246089, 0.0105666239, 0.00588628091, 0.0113162613, 0.0154360058, 0.0236233473, 0.00716392323, -0.00944542699, 0.00273780501, -0.00765281683, -3.94425224e-05, -0.00912601687, -0.015866233, -0.0113879656, 0.00891742203, -0.00450434117, -0.00162557175, -0.00145445892, 0.017495878, -0.00298225204, 0.0043185614, 0.0244186129, 0.0152795594, -0.0231800824, 0.00644361973, 0.00926942565, -0.00880660582, 0.00867623463, 0.00440330291, 0.00245587621, 0.0191124864, -0.00752244517, 0.00216905866, 0.0417710841, 0.0230757855, -0.00342877489, -0.0202727951, 0.00129719812, -0.00269869366, 0.022580374, 0.0128024975, 0.0150840022, 0.000240983878, -0.0273259021, -0.0130306482, -0.0227628928, 0.00765933562, -0.00950409472, -0.0261004083, 0.0314456448, 0.0353828706, -0.00382314925, -0.0342095271, -0.00863712281, -0.00686406856, 0.0347831622, -0.00414581923, 0.00319736521, -0.0202988684, -0.000217965135, -0.0426836833, -0.0194905642, 0.0108534414, 0.018108625, 0.0072877761, 0.0222153328, -0.00538109057, 0.0165963136, 0.0265436713, 0.0175219532, 0.0141714, -0.0140540656, 0.0307677146, -0.00612746831, 0.00630347, 0.00562879676, -0.00405129977, -0.0303505249, 0.0350699797, 0.00388833508, 0.00807652529, -0.0128742028, 0.0121701956, -0.0110555179, 0.0169483162, -0.00639798958, -0.0201293863, -0.00381663069, 0.0268044155, 0.0323321745, -0.00542672072, -0.0251747686, -0.00288773258, -0.0219024401, -0.00163779408, -0.0156054888, -0.005654871, 0.0174828414, -0.0287599899, -0.0194384158, 0.00921075884, 0.00748333381, -0.00770496577, 0.0127177564, -0.000773266947, 0.00974528212, 0.00748985261, -0.00201913132, -0.0016516461, 0.0140019171, 0.0422404222, 0.0197904203, 0.00978439394, 0.0372080728, 0.0157880094, -0.00784185622, -0.0273519754, -0.0162182357, 0.0403891429, 0.0120007126, 0.00835682359, 0.00499649439, 0.00383292697, -0.0437788069, 0.023362603, -0.00914557278, 0.0130502041, 0.0117204133, 0.0117138941, 0.0233756397, -0.0417710841, -0.0120854536, 0.000126603118, -0.0128546469, -0.00025850258, -0.00541694276, -0.0195948612, 0.0157619342, -0.000175085079, 0.0100907674, -0.00449456321, -0.00958231743, 0.00160520116, -0.00448804488, -0.0310023837, 0.0231931191, 0.00168016483, 0.00220654043, 0.00227172626, 0.0178348441, -0.0111728525, -0.0054071648, -0.0326711386, 0.0231148973, 0.00486612273, 0.0178609192, 0.0147580728, 0.00490523409, -0.00384270493, -0.0112380376, 0.00285351, -0.0194123425, -0.0045369342, 0.018851744, 0.00138438412, -0.00181542546, 0.00547235087, 0.00994083937, -0.0261264816, 0.00265958207, -0.00415885635, -0.00124260492, -0.01145967, 0.0147059243, 0.0140540656, 0.000770822517, 0.00587650295, -0.00359173957, -0.022684671, 0.0107947746, 0.00501930946, 0.00952365063, -0.00885875523, 0.00810259953, 0.0118898964, -0.011394484, 0.00266936, 0.0121180471, 0.0198425688, -0.0051724962, -0.0244055763, 0.0338184126, 0.000466078724, -0.0227498561, 0.0170395765, 0.0226977076, -0.000837638, 0.00353633147, -0.00319573563, -0.00529634906, 0.0179261044, -0.017156912, -0.0402066223, -0.00334077398, -0.0211853962, -0.0331665538, 0.0146928867, 0.0267783403, -0.00754200108, 0.00901520066, -0.00375144486, 0.0161400121, 0.00936720427, 0.0162051991, -0.0258005541, -0.00036442955, 0.0137933223, 0.00799830165, -0.0228150412, -0.00423056073, 0.0189951528, -0.0377295613, 0.0161660872, 0.0243925396, -0.00214135461, -0.015631564, 0.00523768179, -0.00235972716, 0.0224630386, -0.00505190203, 0.0237928294, 0.0178739559, 0.00845460314, -0.00839593541, 0.0130306482, -0.00178935111, -0.00476182532, 0.00947150216, -0.00111386296, -0.00774407713, 0.0180955883, 0.00577872433, 0.013174057, -0.00523768179, 0.000729266496, 0.00107719586, 0.000847415824, -0.0187995955, -0.0186431482, -0.00609487575, 0.037703488, 0.0054136836, 0.0272216052, -0.0188126322, -0.0308980849, 0.0124179013, -0.00646317564, -0.01973827, -0.0228150412, 0.0106904767, -0.00406433688, 0.019972939, 0.0498802, 0.00962794758, 0.00544953579, -0.00198816787, 0.0129719814, 0.01495363, -0.00701399567, -0.00358848018, -0.0157097857, -0.00494760508, -0.0103906216, -0.00691621704, -0.0100516556, -0.0195687879, -0.00198816787, -0.0138976201, 0.0234538633, -0.0036015173, 0.00631324807, -0.0270130094, 0.00190994493, -0.00590257719, 0.000591154036, 0.0409888513, 0.00492153037, -0.000961491081, 0.0141322892, 0.0182650704, -0.0423968658, -0.0210289508, -0.00712481188, 0.0051953108, 0.00702051446, 0.0136890253, -0.00177631399, 0.00322343945, -0.00526375603, 0.0261395201, -0.0108795157, 0.027638793, -0.025670182, 0.00741814775, 0.00599383749, -0.0289685857, 0.00545931375, 0.0359043591, 0.0324364714, -0.0205465741, 0.0160878636, -0.0075550382, 0.00981046818, -0.0307937879, -0.00149927416, 0.00242002402, -0.0107491445, 0.0181998853, -0.0434659161, 0.0177826956, 0.00146260718, -0.0108925533, -0.0210028756, 0.0132522797, -0.0105992164, -0.0213418417, -0.0135325789, 0.0304287467, 0.0249401, -0.00924335141, 0.00234343065, -0.0202206466, 0.00936068594, 0.0140540656, -0.0173655059, 0.00796570908, 0.00455648964, -0.0141714, 0.0136890253, 0.0111076664, 0.000343855267, 0.0266740434, 0.00557012949, -0.0199207906, -0.0135195423, -0.0149145192, -0.0086175669, -0.0135716908, -0.00936068594, -0.00425337581, 0.0346006416, 0.0525919311, -0.010292843, 0.00194253784, -0.0188778173, -0.00345810852, 0.0129263513, 0.0315238684, 0.0192037467, 0.00135586539, -0.00479115872, -0.00302625238, 0.000412707828, -0.0194905642, 0.0211332478, -0.0121180471, 0.00983654242, 0.0198425688, 0.0201163478, -0.00410996703, 0.000358114688, -0.0106839584, -0.0156706739, 0.0105992164, 0.0200250875, 0.00591561431, 0.0348874591, -0.0189821143, 0.0365301408, -0.0168309826, 0.0319149829, -0.0274302, 0.0080439318, -0.0166093502, 0.00085963821, -0.00775059592, -0.00158808986, 0.0109316641, 0.0158531945, 0.010377585, -0.0149275558, 0.0241709072, -0.0176523235, -0.0390072, -0.00564183388, -0.00324951392, 0.00163942378, 0.0185518879, -0.0136759877, 0.0123527152, -0.00975832, 0.00384596433, 0.00901520066, -0.0186561868, -0.0206378344, 0.0108273672, 0.0183302574, 0.0210680626, 0.00186594448, -0.010547068, -0.00327558815, 0.00952365063, 0.0183954425, 0.0105926981, -0.00300017814, -0.00198327913, 0.0402587727, -0.00113993732, 0.0139758429, -0.00114075211, -0.014445181, -0.00983654242, -0.0086175669, 0.00150660763, 0.0140279913, -0.00623828452, 0.00403174385, 0.00756155699, 0.0165441651, 0.00515619945, -0.00435767323, 0.0255398098, -0.00803741347, 0.0103449924, 0.0172090605, 0.00249009882, 0.0166614987, -0.00244935765, 0.00427293126, -0.00643058261, 0.0224891137, 0.000352614617, -0.0245098732, -0.00290728826, 0.00726170186, 0.00181705516, -0.0032152913, -2.36171331e-06, 0.0171829853, -0.00859801192, 0.0111076664, -0.00917164702, 0.0164659414, 0.00330492179, 0.0113684097, -0.00278343516, 0.0290207341, 0.00876097661, 0.0144191068, -0.00870230887, 0.0174698029, -0.00377426, -0.0018463888, 0.00506819878, -0.0261655934, 0.00508449506, -0.00840245374, -0.00056263525, 0.00907386839, 0.00887179188, -0.0127764232, -0.0123853087, -0.00585368788, 0.0154881543, 0.00273454585, 0.00312566082, 0.00224728161, -0.0210419875, -0.0102537321, 0.0307416394, -0.0283688754, 0.0224239267, 0.006714141, 0.00909994263, 0.00363411033, -0.00967357773, 0.000948453904, -0.0311588291, -0.0245620217, -0.00111304817, -0.000245872827, 0.00189690781, 0.00296758511, -0.00239883875, 0.0190864131, 0.0105861798, 0.0137802856, -0.00805045, -0.0310023837, -0.0193732306, -0.00743118534, -0.000273373094, -0.013597765, -0.0101494342, -0.00259276666, -0.00677932659, -0.00811563618, 0.00120349345, 0.00865016, -0.00353959086, -0.0151100764, -0.0256441068, -0.0222544447, -0.0059514665, -0.00250639534, 0.0024444689, 0.00529309, 0.000739044393, -0.000906083093, 0.0263872258, 0.0149666676, -0.0170004666, -0.00329351425, -0.0137542114, 0.0237276442, -0.0212896932, 0.0038687794, 0.00127764232, 0.0172351338, -0.0079526715, 0.000537375745, 0.0107230702, 0.000282743567, 0.00987565424, -0.00622850657, -0.0155142285, -0.00501930946, -0.0105796605, 0.00861104857, 0.0184606276, 0.00375470403, -0.0226977076, -0.00510079134, 0.00684451265, 0.0140540656, 0.000434300629, -0.00228150422, -0.00537131261, -0.0290728826, 0.0233756397, -0.0191776734, -0.0330101065, 0.0105209937, 0.00393722439, 0.0211723596, 0.00820037816, -0.00323484698, -0.0135586532, -0.0129719814, 0.000634747092, 0.0222674813, -0.0204683524, 0.0242752042, 0.00219024415, -0.0155924512, -0.0151752625, 0.00228802278, 0.0166875739, 0.0110685546, 0.0225934107, 0.0182389971, 0.0262959655, -0.00198979769, 0.0110620363, 0.00610791286, -0.00235320861, -0.0183041822, 0.00199631625, -0.00259439624, -0.0122549366, -0.00880660582, -0.00174698036, 0.00262210029, 0.00801133923, -0.00111223327, 0.0114531508, 0.0257223304, 0.00549516594, -0.00174535078, 0.0063458411, 0.0117660435, 0.00994083937, 0.0112510752, 0.0186822601, -0.0137933223, 0.0245880969, -0.0186040364, -0.0269869361, 0.00224402244, 0.00737251807, 0.00544953579, -0.00658051, -0.00401544757, -0.00847415812, -1.48832505e-05, -0.00410018908, -0.0186040364, -0.00595472613, -0.0176132116, 0.0189690776, 0.00989521, 0.018851744, -0.00797874574, 0.00783533696, -0.00776363304, 0.00692925416, 0.00897609, 0.0100777298, -0.0151882991, 0.010462326, -0.0364779942, 0.000992454356, -0.0224760752, -0.00921727717, 0.00701399567, 0.0131284269, -0.00975832, -1.89828279e-05, 0.00850675162, -0.00547235087, -0.00169646135, -0.0124830874, 0.0057167979, -0.00712481188, -0.00550820306, 0.00445219269, -0.00137786556, -0.0137802856, -0.0132327247, 0.0230497103, -0.0048335297, -0.0140410289, 0.000555709237, -0.00133305031, 0.00992780272, 0.000959046592, 0.00640776753, -0.00735948095, 0.000963935512, -0.0296465177, 0.0184867028, 0.0330622569, -0.00848067738, -0.014549478, -0.0127047189, 0.00458908267, -0.0066228807, 0.0101624718, 0.0177957322, 0.0043185614, -0.00232387497, -0.00842852797, -0.0219285153, 0.0104492893, -0.000196779743, 0.00366344396, 0.00468360214, 0.00668806676, 0.0206378344, -0.020885542, -0.0155794146, -0.00752896396, 0.00981698651, 0.015631564, 0.00222120737, -0.0249661747, 0.0109055899, 0.00462819403, 0.0152274109, 0.00384922349, -0.0176132116, 0.019295007, -0.00538434973, 0.00696836552, 0.0150709646, 0.0146798501, 0.018591, 0.0287078414, -0.00352329435, -0.00620243233, 0.0260873716, -0.00992128439, 0.00555709237, 0.022684671, -0.0191646349, 0.00415559718, -0.0301419292, 0.0105731422, 0.0199599024, -0.0152404485, -0.0138193965, -0.00748985261, 0.00846764, -0.00162964582, -0.0101103233, 0.00035322574, 0.00259602582, -0.00630672928, -0.0200511627, 0.0108469231, 0.00358196162, 0.0140149547, 0.0121180471, -0.0213548802, 0.0315499455, 0.013936731, -0.00169320207, 0.0010177138, 0.0116226347, -0.00915209111, -0.00244609849, -0.0127959792, 0.00932157412, -0.0115313744, -0.0337141119, 0.00481071463, 0.00124097534, -0.00887179188, -0.00449130405, 0.00908038672, 0.0144060692, -0.0265958197, -0.0245489851, 0.00328210671, 0.012411383, 0.0257223304, -0.00225705956, 0.00961491093, 0.0286556929, -0.0133044291, 0.0203640554, -0.00206802064, -0.0250965469, 0.00782881863, 0.0067988825, -0.00642406382, 0.0181738101, 0.0199990142, 0.013767248, -0.00548212882, 0.00467708381, -0.000897120044, -0.00283558387, 0.00153594126, -0.00887831, -0.0154099315, -0.00623176573, 0.015123114, -0.0267261919, 0.000357096142, 0.00715740444, -0.0220979974, -0.0124439755, 0.0070465887, 0.00375470403, 0.0245489851, 0.00416537467, 0.00294965901, 0.0191646349, 0.00544953579, -0.0122614559, 0.00233039353, 0.00238091266, 0.00766585395, 0.00367322168, -4.38985844e-05, -0.0141714, -0.005443017, -0.0088913478, -0.03194106, 0.0140931774, 0.00548538798, 0.00108778861, -0.0217981432, 0.0381989, 0.0264393743, -0.00146912574, 0.0214591771, 0.0225673355, 0.000965565152, 0.0142105119, -0.0183693673, -0.00754852, 0.00675977115, -0.0210550241, -0.0160487518, 0.00842201, -0.0103906216, 0.00836986117, -0.0103189172, 0.0072877761, 0.0110555179, 0.00915209111, -0.00290239928, 0.00186594448, 0.00438374747, 0.00644361973, 0.00150497793, -0.0143017722, -0.00357544306, -0.00893697795, 0.007137849, 0.00868275296, 0.0077962256, 0.0336880386, 0.0255398098, -0.0109838136, 0.0194775276, -0.0271173064, -0.0241709072, 0.0165963136, 0.00419144938, 0.00421426399, 0.0078027444, 0.00516271824, -0.00329514383, 0.012580866, 0.00102097308, -0.00396981742, 0.0108925533, 0.0124374572, 0.020585686, 0.0173915811, -0.0267261919, -0.00741814775, 0.0164920166, 0.00772452122, 0.0140279913, -0.0162051991, 0.000953342824, -0.00877401326, -0.0298029631, 0.017600175, -0.0183563307, -0.00503560575, 0.0280559827, 0.0235581603, -0.00570050115, -0.013428282, 0.0203379802, 0.0196730848, 0.00354610942, -0.0276648682, -0.0145885898, 0.00878705084, -0.00470315805, 0.0254094377, 0.0038687794, -0.0032690696, 0.020820355, 0.016752759, 0.0194775276, -0.0038687794, -0.0102798063, 0.010019063, -0.0166875739, -0.00865016, 0.0104036592, -0.0130958343, 0.00801785756, 0.0201945715, -0.00107149221, -0.0131349461, 0.0198164936, -0.00672717812, -0.00254387711, -0.01173345, -0.0178478807, -0.0162312724, -0.00597428158, 0.0191385616, 0.00253898837, -0.0120463418, -0.0127177564, -0.000221631839, -0.0132327247, -0.00167201669, 0.0116421897, -0.0093150558, 0.0155403027, -0.0261395201, 0.00218698476, 0.0194775276, 0.00470315805, 0.0327754393, 0.0150840022, -0.00863712281, 0.0140931774, 0.0158401579, 0.00797874574, -0.0184084792, -0.00835682359, -0.00612095, 0.0072225905, -0.00140719919, -0.0181998853, 0.00745074078, -0.025670182, -0.0148623707, -0.0106644025, 0.000580561347, 0.0110294428, 0.00824600831, 0.0113227796, 0.0146016274, -0.00123201229, 0.00352003518, 0.000682414218, 0.0156446, 0.00330003281, -0.00387203856, 0.0262568537, -0.00385574205, 0.0235451236, 0.0201815348, -0.00805696938, 0.0220458489, 0.00705962582, -0.00435115444, 0.012919832, 0.0129719814, 0.0132327247, 7.17553412e-05, 0.00051293103, -0.00941283442, 0.00312240142, -0.0131349461, -0.00495738257, 0.0221110359, 0.00895001553, -0.0184997395, 0.0244316515, -0.0087088272, -0.00361455441, -0.0110164061, 0.0194123425, 0.0215895493, 0.00112608529, 0.0402066223, 0.0107752187, 0.0355393179, 0.00111386296, 0.0178218074, -0.0127242748, -0.00683799386, -0.0143017722, 0.0213548802, -0.00774407713, -0.0242491309, 0.00421752362, 0.000479115872, -0.0332187, 0.00753548229, -0.0164398681, 0.00527353399, 0.00485308561, -0.00410996703, 0.00484656682, 0.00835030526, -0.0130502041, -0.0359565057, -0.0190212261, -0.00845460314, 0.00787444878, 0.00895653386, 0.00600687461, -0.0106839584, -0.00849371403, -0.0105209937, 0.01012336, -0.00719651626, 0.0200772379, -0.000329392176, -0.00368299964, -0.0197643451, 0.0045304154, -0.0168570559, 0.000298836298, -0.00726822065, 0.00272965687, 0.0250835083, 0.0252008438, -0.0125287175, -0.00676628947, -0.00118801184, -0.00698792143, 0.0142496238, -0.00285188016, -0.00193764898, -0.0090412749, 0.0166093502, 0.000956602104, 0.0128481276, 0.0065935473, 0.0158140827, 0.0053224233, -0.00165653497, -0.00539086852, -0.00683799386, -0.00271173078, -0.00443589594, -0.0187213719, -0.0154360058, -0.00608835695, -0.0190603379, 0.0123592345, 0.00705310749, 0.00491501205, -0.00233365293, -0.00541042443, -0.00171764672, 0.0273259021, 0.00243958, 0.0175871383, 0.0155794146, 0.0270390846, 0.0327493623, 0.0115118185, -0.0197643451, 0.0123527152, -0.0074637779, -0.0125221992, -0.0192689318, -0.00704007037, -0.00959535502, 0.0099799512, -0.000324706925, -0.000721118296, 0.00185127766, 0.00790052302, 0.0125939036, 0.0131805753, 0.00529634906, -0.00987565424, 0.018591, -0.0163746811, -0.00298062223, 0.0141714, 0.0171960238, -0.0206769463, -0.0150057795, 0.00678584538, -0.00896305218, 0.00962794758, 0.0441177711, 0.00999950711, 0.00132897624, 0.00588302175, 0.00872838311, 0.0269608609, 0.00177957327, -0.0253572892, -1.23241971e-05, -0.00448152609, 0.0203770921, 0.00146342197, -0.0136368768, 0.0122484183, 0.00175186933, 0.00953668728, -0.00480093667, 0.00203053886, -0.00943239, 0.0172872841, 0.00285676913, -0.020650873, 0.00648599071, 0.0219676271, -0.011309742, -0.00338640413, 0.0211593211, -0.0190212261, 0.0475074351, -0.00176490645, -0.0250183232, 0.0201945715, 0.00709873717, 0.00324136554, 0.00371885183, 0.0107947746, -0.00197513076, 0.0161530506, -0.0194905642, -0.0165180899, 0.000500708702, -0.0125613101, 0.00861104857, -0.00711829308, 0.00973224547, 0.00442611799, -0.0156446, 0.0222022962, 0.00139334716, -0.0106448466, 0.00943239, -0.0172742456, 0.0255398098, 0.00772452122, 0.00858497433, 0.0104558077, 0.0160748269, 0.0046575279, 0.0290207341, -0.0248488393, -0.00906083081, 0.0223587416, -0.00799830165, -0.0176783986, -0.0161791239, -0.00562879676, -0.000156038586, 0.00489219697, -0.00691621704, -0.0144842928, 0.00974528212, 0.0140931774, -0.0144582177, -0.0244446881, 0.00660332525, 0.0214200653, -0.0077114841, 0.00853934418, -0.00504212454, 0.0204031654, 0.0154360058, -0.00667502964, -0.00327069918, -0.00801133923, 0.00467382418, 0.00925638806, 0.0133630959, 0.0207812432, -0.0167006105, -0.00148297776, 0.0102276579, 0.0110620363, -0.0180564765, 0.0348092355, 0.00537457224, 0.00718347915, 0.0305069704, -0.00570376031, -0.0227237828, -0.0261134449, 0.0238449778, 0.00610139407, 0.00285676913, 0.0173915811, -0.0170265399, -0.0104558077, -0.0093150558, 0.0145103671, -0.00720303459, -0.00232550455, -0.00513338437, 0.00824600831, 0.0060427268, -0.0120463418, 0.0059579853, 0.014549478, -0.00307677151, -0.0300637074, 0.0207030214, -0.0141192516, 0.0249401, 0.00769844698, 0.00984958, -0.00896305218, -0.00996039528, -0.0284731723, 0.00455648964, 0.0124570131, -0.0122093065, -0.018851744, 0.00730081368, -0.00313543854, -0.00904779416, 0.0242882427, -0.00308654923, 0.010377585, -0.0190603379, -0.00893046, 0.00681191962, -0.0217851065, 0.0160357151, 0.00275736069, -0.021837255, -0.00592865143, -0.01546208, 0.00436093239, 0.0189821143, -0.000879193947, -0.0153577831, 0.0291511044, -0.00905431248, -0.00536805345, 0.00288121379, -0.0182781089, -0.00381663069, -0.0093150558, -0.00153349678, 0.00493782712, -0.000131084642, -0.0126916822, -0.000615191297, 0.0150970398, 0.00877401326, -0.0175219532, -0.0119290082, 0.00263187801, 0.0247054305, -0.0117725618, 0.00423056073, -0.0146537758, -0.0178478807, 0.00655443547, -0.00948453881, 0.00130942045, 0.0169483162, 0.0116421897, 0.01173345, 0.00159623811, -0.00460212, 0.000195761211, 0.0213548802, 0.0151491882, -0.0218242183, 0.00141616224, -0.00114645588, 0.00497693848, 0.0112184817, -0.00543649867, 0.00567442691, 0.0177696589, 0.00321040233, 0.025604995, 0.0169874281, -0.0123853087, -0.00992780272, 0.00720303459, -0.0179521795, 0.00773104, -0.0182781089, 0.0175480265, 0.0194253791, 0.00532568246, 0.0100646932, -0.0106709208, -0.00690318, -0.00737251807, -0.00542020192, 0.0179000311, -0.0142365862, 0.0192167833, -0.00223587407, -0.0256310701, -0.00919772126, -0.0102211386, 0.00419144938, 0.0229975618, -0.0082264524, 0.0179261044, 0.0115835229, 0.0341313034, -0.0112575935, -0.000643302687, 0.00498671643, 0.00304580806, -0.00661962153, 0.0138454717, -0.00494108628, -0.00610465324, 0.00245098746, -0.00298225204, -0.041041, -0.0150188161, 0.00313869794, 0.018447591, 0.00823297072, -0.0043804883, 0.00301158545, -0.0155533403, -0.00301321526, 0.00363411033, 0.00730081368, -0.015801046, 0.0123592345, 0.00544953579, -0.00655117631, -0.00618939521, 0.0252790675, -0.0277170166, -0.0282385033, 0.0024949878, -0.00718347915, 0.00623828452, 0.00298062223, -0.000196066772, 0.0206247978, -0.00598405953, 0.0156446, -0.00508775422, 0.0114987809, -0.0163616445, -0.014784147, 0.0106383283, -0.0171829853, 0.015123114, -0.0119811567, -0.0115574487, -0.00045833789, -0.0165572017, -0.000123954946, -0.017600175, 0.0161791239, -0.0068901428, -0.000376651908, -0.00392744644, -0.0206899848, 0.0109903319, 0.00183498126, -0.0308720116, -0.00179749937, 0.0072877761, -0.0171699487, 0.00776363304, -0.0123657528, -0.0147450361, -0.0283949487, 0.0102211386, -0.00415885635, -0.0197252333, -0.00726822065, 0.0167788342, 0.00456300844, -0.0491501205, 0.00458256435, 0.0136368768, 0.0176523235, 0.0142626604, -0.0206899848, 0.0159574915, -0.00644687889, 0.00452389708, -0.00315173506, -0.0182129219, -0.015292597, -0.00450760033, 0.0033538111, -0.0161009, -0.0114727067, -0.00165327569, 0.0155142285, 0.0050747171, 0.0145625155, 0.0055896854, -0.00711177476, 0.000890601485, -0.00303603034, 0.00691621704, -0.00973876379, -0.00139253237, 0.0255267732, -0.0148493331, 0.0150057795, 0.00146342197, -0.00702703279, 0.0118898964, 0.0237667561, 0.014784147, -0.00835030526, -0.0202858318, 0.00975832, 0.0235581603, 0.00628065504, 0.00593517, 0.0359304324, -0.00352655374, 0.0203640554, -0.00830467511, 0.00498019764, -0.00412626332, 0.0145103671, 0.00227987464, 0.0186301116, -0.00547235087, 0.00654465798, -0.00236298656, -0.00445545185, 0.0179130677, -0.0014063844, 0.00273291604, -0.00190016709, 0.0331144035, -0.0103906216, -0.000411689281, -0.0216547344, 0.00184801838, 0.00729429489, 0.00032592917, 0.00655443547, 0.000368503679, -0.0113618914, -0.00451737829, 0.0311066806, -0.00982350484, 0.00939327851, 0.00426641293, 0.00392744644, -0.00520508876, -0.00875445735, -0.00842852797, -0.000537375745, -0.00548864715, 0.00208105776, 0.0124896057, -0.00785489287, -0.00798526499, -0.00442285882, -0.0113032237, -0.0226716325, 0.0184084792, -0.00639473042, 0.0185649265, -0.0394765399, -0.0160487518, -0.00851978827, -0.00646969397, 0.0103710666, -0.00943890866, 0.00614376506, 0.00410018908, -0.0220458489, -0.0187083352, -0.00633280398, 0.00603946764, 0.00243795, -0.00189853739, 0.000945194624, 0.0274562743, -0.0190603379, -0.017665362, 0.00162720145, -0.0163616445, 0.0120202675, 0.0133109475, 0.0204292405, -0.00106660323, -0.0178609192, -0.00634910027, 0.0230888221, -0.00635887822, -0.00020268721, -0.00570050115, 0.01145967, -0.00541042443, -0.00494760508, -0.00132245757, 0.0127959792, -0.00881312508, 0.0078614112, 0.000679969729, 0.00478138076, -0.00881312508, 0.0171438754, 0.0160226785, -0.00983002409, 0.00665221456, -0.0156967491, -0.0093150558, 0.00594820734, 0.00754852, -0.0106774401, 0.0153447455, -0.0248879511, -0.0172351338, 0.0037807785, 0.00534197921, 0.0119290082, -0.0180955883, 0.00400566962, 0.0170135032, 0.0123918271, -0.00567768607, -0.0133305034, -0.0249792114, -0.0226977076, 0.0317846127, 0.00669458508, 0.00663917745, -0.0003868372, -0.0107491445, 0.00276550907, 0.0162703842, 0.0144191068, 0.0324625447, 0.000311466079, -0.00164594234, 0.0121245654, 0.00893046, -0.0149666676, -0.00173231354, -0.0186561868, -0.00781578198, 0.00461189775, -0.0272216052, 0.0180825498, -0.0166354254, -0.0159183815, 0.00859149266, -0.00892394, 0.0223848149, 0.000190770414, 0.0150188161, -0.00688362401, -0.00024037277, -0.015292597, 0.00485634478, -0.0100842491, -3.00975225e-05, 0.018851744, -0.0130371666, -0.00045833789, 0.00506819878, -0.0128742028, 0.00087104569, 0.0102146203, 0.0143539207, 0.010781737, -0.00603620848, -0.0273259021, -0.00322180986, 0.000551227713, 0.0171308368, -0.00178935111, -0.0105992164, -0.00646317564, -0.0159966033, 0.010547068, -0.0150579279, 0.00113993732, -0.0309763085, -0.00601013377, -0.00273291604, 0.00221142941, -0.0113618914, 0.0030946976, -0.00572983501, 0.0231409706, -0.0121897515, -0.0069553284, 0.0052865711, 0.0012124565, -0.00855238177, -0.0286035445, -0.00648273109, -0.00499649439, 0.0304026734, -0.0192167833, 0.0166875739, 0.0112184817, -0.0359565057, 0.000601746724, -0.0312370528, 0.01145967, -0.00387203856, -0.0047422694, -0.00426315377, -0.00573961297, -0.0261916686, -0.0123853087, 0.016413793, 0.00115297444, -0.0199859776, 0.00345810852, 0.0161530506, -0.0117595242, 0.00035485538, -0.00999298878, 0.00693577295, -0.0240144618, -0.0120398235, 0.000124158643, 0.00262861885, -0.0472988412, 0.00704007037, -0.00478464039, -0.00170297991, -0.00352655374, -0.0196600482, -0.00932157412, 0.00643058261, -0.00264654495, 0.00690969825, -0.00793963484, -0.00829163846, -0.00259113684, 0.00455323048, 0.000716636772, -0.0133761335, -0.0180173647, 0.00685103144, 0.0163746811, 0.0104558077, 0.0140801407, 0.0189430043, -0.0230627488, 0.0177957322, -0.0291511044, -0.0103449924, -0.0251878072, -0.0185388513, 0.00131675391, 0.00911949854, 0.00553753646, 0.00548538798, -0.0261004083, 0.00967357773, 0.0131023526, 0.000654710224, -0.00500627188, 0.0180173647, 0.00862408616, 0.0117725618, -0.00173231354, -0.0133891702, 0.00457604555, 0.0121441213, 0.00314032752, -0.00635561906, -0.0112380376, -8.86629205e-05, 0.00141942152, -0.00586020667, 0.00540064648, 0.00627413671, -0.015905343, -0.00244120951, -0.0036569254, -0.0148493331, 0.0391897224, 0.00137705076, -0.0271694567, -0.00236950512, 0.0148884449, -0.018851744, -0.0251486953, 0.00234831963, 0.00747681502, -0.00445871102, -0.00485308561, 0.026348114, -0.00888482947, 0.010019063, 0.0288642868, -0.0220979974, -0.0093737226, -0.00736599928, -0.00257484056, 0.0220588855, 0.00485960394, 0.00903475657, -0.00621221, -0.0159444548, -0.0175349899, 0.00054267206, -0.0131349461, -0.00110245543, 0.00112282601, -0.00973224547, -0.005866725, 0.0198556054, -0.00154979317, -0.00228802278, -0.00462493487, -0.00192787102, 0.0193993039, 0.00464449078, -0.00218535517, -0.0131479828, -0.0113032237, -0.0116878198, -0.0314977951, -0.0603360087, 0.000149520012, 0.0122484183, -0.00148786663, 0.0310023837, 0.00635887822, 0.0128611652, 0.0203249436, 0.0145885898, -0.0105535863, -0.00687058689, 0.00917816535, 0.00472597312, 0.00707266293, 0.00316477218, -0.0152013367, -0.00778970728, -0.0161791239, -0.00651532412, 0.0154099315, 0.00989521, -0.0019506861, -0.01334354, 0.0399198048, -0.00118393777, 0.00435767323, -0.00409367029, -0.0251226202, 0.00272313831, 0.00815474801, 0.00338314474, 0.0184736662, -0.0298551116, -0.01012336, 0.025839664, -0.00938024186, -0.0122093065, -0.0188387055, 0.00334729254, 0.013597765, -0.00812867377, 2.63035035e-05, -0.0199468657, 0.00302625238, -0.00215602154, -0.00623176573, 0.00391766848, -0.0113488538, 0.00276876823, -0.00124179013, -0.00898912642, -0.0251356587, -0.000360966573, -0.00291054742, 0.0062545808, 0.00096719485, 0.0182129219, 0.0356436148, -0.00518879248, -0.00596776325, -0.0254876614, -0.00521486672, 0.00649250904, -0.00281439838, 0.0233365279, -0.0133305034, -0.00553753646, -0.0127307931, -0.0160226785, -0.00154816359, 0.00559294457, -0.00735948095, -0.00299691875, -0.010801293, 0.00380685274, -0.0127047189, 0.0148623707, 0.00754852, -0.00352003518, -0.00162394205, -0.0020533537, 0.00740511063, -0.0082264524, -0.0022326149, 0.0057167979, -0.00267424877, -0.000746377802, 0.0260352232, 0.0041425596, -0.0100972857, 0.0031272904, -0.0106774401, 0.00696184719, -0.00501930946, -0.00364062889, 0.0159574915, 0.000753711211, -0.0451607481, 0.0069814031, 0.0111272223, -0.0124700498, 0.00635887822, -0.00378729706, 0.039372243, -0.0064664348, -0.000497041969, -0.0157358609, 0.00701399567, -0.0069814031, -0.00668154797, 0.00306536397, -0.0261004083, 0.00541042443, -0.0164920166, 0.00877401326, 0.00717696035, 0.00539738731, -0.00363085093, 0.0200772379, 0.0147711104, 0.0268826373, -0.000605413457, 0.0166223887, 0.0123592345, 0.00936068594, -0.00152127445, -0.00570050115, -0.0103384731, 0.00973224547, -0.0045662676, 0.0153838573, 0.00439352542, 0.0144191068, 0.0305330455, -0.00989521, 0.0162834208, -0.000908527581, 0.0354610942, -0.00179912907, -0.00740511063, 0.0108143296, 0.00529634906, 0.00101852871, -0.039502617, 0.006078579, 0.00891742203, -0.0102537321, 0.0128546469, 0.0115248552, -0.0348353088, -0.00856541842, 0.0162834208, 0.0159444548, 0.00409041112, 0.00308817881, 0.0107426252, -0.00482375175, -0.00941935275, -0.0214852504, -0.00992128439, 0.0246402454, -0.00111549255, -0.0183041822, -0.012665608, 0.0155533403, -0.000403744751, 0.0147319986, 0.0157880094, -0.013597765, -0.0080439318, 0.0165441651, -0.00799830165, -0.00848067738, -0.0121767139, -0.0102146203]
17 Jun, 2022
match_results begin() and end() function in C++ STL 17 Jun, 2022 match_results::cbegin() is an inbuilt function in C++ STL that returns an iterator that points to the first match in the match_results object. Syntax: smatch_name.begin() Parameters: This function does not accept any parameters. Return value: This function returns an iterator pointing to the first match in the match_results object. The matches contained in the match_results object are always constant. Note: The first element always contains the whole regex match while the others contain the particular Capturing Group. Below program illustrate the above function: CPP // C++ program to illustrate the // match_results begin() function #include <bits/stdc++.h> using namespace std; int main() { string sp("geeksforgeeks"); regex re("(geeks)(.*)"); smatch match; // we can use member function on match // to extract the matched pattern. std::regex_match(sp, match, re); // The size() member function indicates the // number of capturing groups plus one for the overall match // match size = Number of capturing group + 1 // (.*) which "forgeeks" ). cout << "Match size = " << match.size() << endl; cout << "matches:" << endl; for (smatch::iterator it = match.begin(); it != match.end(); ++it) cout << *it << endl; return 0; } Output: Match size = 3 matches: geeksforgeeks geeks forgeeks match_results::end() is an inbuilt function in C++ STL that returns an iterator that points to the past-the-end match in the match_results object. Syntax: smatch_name.end() Parameters: This function does not accept any parameters. Return value: This function returns an iterator pointing to the past-the-end match in the match_results object. The matches contained in the match_results object are always constant. Note: First element always contains the whole regex match while the others contain the particular Capturing Group. Below program illustrate the above function CPP // C++ program to illustrate the // match_results end() function #include <bits/stdc++.h> using namespace std; int main() { string sp("matchresult"); regex re("(match)(.*)"); smatch match; // we can use member function on match // to extract the matched pattern. std::regex_match(sp, match, re); // The size() member function indicates the // number of capturing groups plus one for the overall match // match size = Number of capturing group + 1 // (.*) which "results" ). cout << "Match size = " << match.size() << endl; cout << "matches:" << endl; for (smatch::iterator it = match.begin(); it != match.end(); ++it) cout << *it << endl; return 0; } Output: Match size = 3 matches: matchresult match result Let us see the differences in a tabular form as follows: match_results begin() match_results end() It is used to return an iterator pointing to the first match in the match_results object. It is used to return an iterator pointing to the past-the-end match in the match_results object. Its syntax is -: const_iterator begin() const; Its syntax is -: const_iterator end() const; It does not take any parameters. It does not take any parameters. Its complexity is constant. Its complexity is constant. Its iterator validity does not change. Its iterator validity does not change. Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL
https://www.geeksforgeeks.org/match_results-begin-and-end-function-in-c-stl?ref=asr4
PHP
match_results begin() and end() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[0.0131119806, -0.0171200745, -0.0101245344, 0.0273116585, -0.0226181652, -0.00997553486, -0.0299340542, 0.0286228564, -0.0201745704, 0.00481269276, -0.0281758569, 0.020085169, 0.00380508183, -0.0274457578, 0.00182338478, 0.00390751893, 0.0450277328, 0.0140730292, 0.00458919303, -0.0365347452, -0.0334951505, 0.00382929412, -0.00142853532, 0.0124265812, -0.000878167397, 0.0121285813, -0.0392167419, -0.0127022304, -0.00153469772, -0.0161515754, 0.0529247187, 0.0291890558, 0.0183269717, -0.0247935634, -0.0282801576, 0.0258812606, 0.0265517607, 0.0139016788, -0.038978342, -0.0284142569, 0.0225585662, 0.0222605672, 0.0435377359, 0.00145367905, -0.0407067388, 0.0531333201, -0.0202788692, -0.048216328, 0.0100276852, -0.0139910793, 0.0195338707, 0.00462271785, 0.0384121425, 0.0115251327, 0.0442529321, 0.00359834451, 0.0176713727, 0.00677948957, -0.0270136595, -0.0178203732, -0.0026149461, -0.00397084421, 0.00460781809, -0.0270136595, 0.0189676713, -0.000452121196, -0.0384121425, 0.0336441509, 0.0149372276, 0.00599724101, -0.0367731452, 0.0143635785, 0.0191762708, 0.00695083942, -0.0429417342, -0.0266262591, 0.0250915624, 0.0354023464, 0.00665656477, 0.0249127615, -0.0180140734, 0.0210536681, -6.23354499e-05, -0.00534909172, 0.014870178, -0.0140879285, -0.000300094864, -0.0428225361, 0.0439847335, 0.000679811463, -0.0339421481, -0.00352570717, 0.0120466314, 0.00523361703, -0.0286377575, 0.0302767549, 0.044133734, 0.0232886653, -0.0491103269, 0.0514347218, 0.0100872852, 0.00647404045, 0.0229310654, 0.0094391359, 0.0507195219, 0.0292039551, 0.0370115452, -0.00291667064, 0.000572717865, -0.00311968289, 0.0213963669, 0.043299336, -0.00188577839, 0.0287122559, -0.0577523112, 0.0140804788, -0.0211579688, 0.00140991039, 0.0240634643, 0.0265368596, -0.0139091294, 0.0460111313, 0.0372201428, 0.0249276627, -0.0703278929, 0.0314389542, 0.0201447699, 0.00976693537, -0.0162856746, -0.00118547946, 0.0252852626, -0.0557557158, 0.0200255699, -0.0120317321, 0.0214410685, 0.0380545408, -0.0109887337, -0.000649545866, -0.0226032659, -0.0260302611, -0.0363559462, -0.0219625663, 0.0354619473, 0.0268497597, -0.0463985316, -0.0339719504, 0.0054384917, 0.0410047397, -0.0039037941, -0.0373393446, -0.0531333201, -0.0419285372, 0.00738293864, -0.0367135443, 0.0465475284, -0.0294572562, 0.0292486567, -0.00216608425, 0.0141922282, -0.0328693502, 0.0156896766, -0.000992711, 0.0147435274, 0.0458323322, 0.00117709825, 0.045146931, 0.0258663613, 0.0116815828, -0.0557855144, 0.0538485199, -0.00668264, 0.0346871465, -0.00225362158, -0.0209344681, -0.0151458271, -0.00867178664, 0.0188484713, -0.0122179817, -0.000341535429, 0.024346564, 0.00465251785, 0.00726373913, -0.0010970108, -0.0181034729, 0.0172988735, -0.0226479657, 0.0329289511, 0.00990103465, 0.0521201231, -0.0148031274, 0.0117560821, 0.0143337781, 0.0314985514, 0.0267156605, 0.0511367209, 0.0306343529, -0.0480971262, -0.0171647742, 0.0159429759, 0.0349553488, 0.00382929412, -0.0183120724, 0.0260451604, -0.00659696525, 0.0720562935, 0.0105938837, -0.013938929, -0.00449979305, 0.0057811914, -0.0187441725, -0.0309919529, -0.0127767306, 0.0122179817, -0.000703558326, 0.00663421489, 0.00400064373, -0.0510771237, -0.0174627732, -0.0247190632, -0.0295913555, -0.0145647284, -0.0159727763, 0.0450575314, -0.0404683389, -0.0123744309, -0.00349776982, -0.0335249491, -0.0342103466, 0.0136632798, -0.0362963453, 0.012650081, 0.0312601514, -0.0156449769, 0.00291108317, -0.00259445864, -0.0114133824, -0.0366539434, -0.023988964, -0.0259855613, 0.0379353426, 0.0347765461, 0.0196381696, -0.0427033342, 0.0320349522, 0.0280417576, 0.0416007377, -0.00235419651, -0.0132684298, -0.0290996563, -0.0222307667, 0.0157343764, 0.0275053587, 0.0124563808, 0.0214708671, -0.0228565652, 0.0333163515, 0.00500639249, -0.0176564734, 0.0251064617, -0.00050473673, 0.0413921364, 0.0270583592, -0.0294721555, 0.0182822719, 0.0144157279, 0.0190272704, 0.0197573695, 0.02692426, -0.0497957245, -0.0420775376, 0.0323031507, -0.00488719251, -0.00966263562, 0.000844176859, 0.0125979306, 0.0118082324, -0.0270285588, 0.0536399186, 0.0526863188, 0.00204315945, 0.012411681, 0.010646034, 0.0281162579, 0.00569179142, 0.017030675, -0.0185206719, -0.0351639464, 0.0103480341, -0.023690965, -0.00928268582, -0.0289357565, -0.00200590957, 0.0141400788, 0.0394551419, 0.0355811454, 0.0417199358, 0.000112448266, -0.0404385403, -0.0120913321, -0.0120168319, -0.0260749608, 0.0140283285, -0.00497659249, -0.0363261439, -0.0118156821, -0.027281858, 0.0375479423, -0.00604939088, 0.0413027368, -0.0241379645, -0.0206811689, -0.058705911, 0.0188931711, 0.0178501736, -0.00260563358, -0.00777778821, 0.0322435498, -0.0112569332, -0.020085169, -0.0181779731, 0.00335435732, -0.0164048746, 0.00312154531, 0.0284440573, 0.054206118, -0.0174180735, 0.0131045301, 0.0264623594, -0.0115698325, -0.0326309502, -0.0177160725, 0.00165855372, -0.000454216497, -0.017090274, -0.0234823637, -0.0316475518, 0.000641164661, 0.00324447, 0.0385015421, 0.0102660842, -0.0343593471, -0.000884220528, 0.0156598762, 0.00986378547, 0.00224803411, -0.00852278713, 0.00499521755, -0.0137824789, -0.00596744101, 0.0313793533, 0.00133541052, -0.026149461, -0.0199957695, -0.00121155439, 0.0119199818, -0.00954343565, -0.0180587731, -0.0360579453, 0.00865688734, 0.01954877, 0.00997553486, 0.0343295485, 0.00977438502, 0.0399617404, 0.0159429759, -0.0678842962, -0.0441933349, -0.0196977705, 0.0206513684, -0.000501011731, -0.0140506784, -0.00689123943, 0.0298893545, 0.0148925278, -0.0613879077, -0.0141326282, 0.0112271328, 0.0219327677, 0.00386654423, -0.000909364258, -0.0264921598, 0.0156002762, -0.0187441725, -0.0212920681, 0.010072385, -0.00754683837, 0.00508461753, 0.0153916767, 0.0293082558, -0.000778989459, -0.0418391377, -0.0172690731, 0.00228155917, -0.0144604286, -0.017030675, -0.00289804558, -0.0403193384, -0.0262537599, -0.0131194303, -0.0298744552, 0.049825523, 0.0112494826, -0.00385909411, 0.0282205567, -0.028965557, 0.00136800413, -0.027520258, -0.0422265381, 0.00278815837, 0.0239740629, 0.0231694654, 0.0143859284, -0.0364453457, -0.00990103465, 0.0373691432, 0.0248084627, -0.0111526335, 0.0327799506, 0.00856003724, -0.0301724542, 0.0110557834, -0.038322743, -0.010429984, 0.00480151782, 0.0249723624, 0.0297850557, -0.0105417343, 0.0181332733, -0.00852278713, -0.0228118654, -0.0473521277, -0.00195562211, 0.022901265, 0.0407067388, 0.00615741592, -0.0528651215, 0.0283844564, 0.00762133859, -0.0243167635, -0.0195040703, 0.0171647742, 0.0672287, 0.0435079336, -0.0363857448, -0.00672361488, 0.0476501286, -0.034597747, 0.0139240287, 3.73954499e-05, 0.011182433, -0.0261196606, 0.00503991731, -0.00378645677, -0.0105268341, 0.0410941392, -0.0126724308, 0.0171051733, -0.0131417802, 0.0519115217, 0.0142220287, -0.0253895614, 0.00224244664, -0.00445136847, 0.0158684757, 0.0345381461, 0.0167028755, 0.008247138, -0.00506226718, -0.00741646392, -0.0130523806, -0.0180885736, -0.0452661328, 0.0277586579, 0.0107950335, 0.0397233404, 0.0285483561, -0.0155555764, -0.00386654423, -0.0232588649, 0.00768838823, 0.0465177298, 0.00153190398, -0.0644275, 0.00217353413, -0.00736803887, -0.014989377, 0.0192656703, -0.0157343764, -0.00308429543, 0.00438059354, -0.0289506558, 0.0145423785, -0.0451767333, -0.0118380319, 0.00818753801, 0.0259259604, -0.0353427455, 0.00445136847, -0.0102213845, -0.0328395516, 0.050481122, -0.0188484713, -0.0250021629, 0.0494083241, 0.0485143252, -0.0266560595, -0.0444019325, 0.0177756734, 0.0168965738, -0.0247339625, -0.0290698558, 0.00937953591, 0.00692103943, 0.020204369, 0.000293110497, -0.00786718819, -0.00123856065, 0.0123073813, -0.0236313641, -0.000999229727, 0.0225734655, -0.00952853542, -0.00893998612, 0.0539975166, 0.0161068756, 0.0184461717, 0.0261941608, 0.00946893543, -0.0153022772, -0.0115847327, 0.027281858, -0.0128214303, 0.00932738557, 0.0265517607, -0.0141624287, -0.0145498281, -0.0102511849, 0.0270136595, -0.0228714664, 0.00830673706, -0.0393061414, 0.0159727763, -0.00733451406, -0.00709238928, -0.0222605672, 0.00501011731, 0.000306846399, 0.00810558815, 0.0093422858, 0.0257620607, 0.0168667752, 0.00892508682, 0.0106311338, -0.0152501268, -0.00802363828, 0.0154512767, -0.0337931477, 0.00548691675, -0.000151444299, 0.00739038875, -0.0188484713, 0.00625054073, 0.0458919294, 0.00572531624, 0.00341768237, -0.0217837673, -0.00365608209, 0.0202490687, -0.022245666, 0.0135440798, -0.00537144206, 0.000895861129, 0.0502129234, -0.0130002303, 0.0312005524, 0.00110632333, 0.0209642686, 0.00455939304, -0.00263915863, 0.0241826642, -0.00201708451, -0.0353725478, -0.00880588684, -0.0288016573, -0.013819729, 0.00246222131, -0.00613134075, -0.00727118924, -0.0237058643, 0.00388144422, 0.0218582675, -0.00804598816, -0.00353874476, -0.00334132, 0.016971074, -0.0117933322, 0.00885803625, 0.00960303564, -0.0141847786, -0.0106609343, 0.0136483796, 0.00718923938, 0.0181928724, -0.0156151764, -0.00587431621, -0.00893253647, 0.0276096575, 0.0118976319, 0.0044252933, -0.00774798822, -0.0369221456, 0.0280864574, 0.0273861587, -0.00660069, -0.0124191316, -0.0051665674, 0.0131268799, 0.00641071517, -0.0285036564, 0.0236462634, -0.0125457812, 0.00555024156, -0.0204874687, 0.0233184639, 0.0217092671, 0.0415411368, -0.0247190632, -0.0287867561, 0.00105324213, -0.00977438502, 0.00691359, -0.0230651647, 0.00920073595, 0.0149148777, 0.0194295701, 0.00708866445, -0.0237803645, 0.0157194771, -0.0245849621, 0.0144753279, -0.0132982302, 0.0261345599, 0.012866131, 0.0447893329, -0.00955833588, -0.00558376638, 0.0210387688, 0.0359685458, 0.00169673492, 0.00236723386, -0.0169263743, 0.00622446556, -0.00617604051, 0.00812048744, -0.0122477813, -0.0202192701, 0.0108993333, 0.0475607291, 0.0140432287, -0.00506226718, 0.00626916531, -0.0277884584, 0.0267752595, 0.00908153597, 0.0273563582, -0.0114878826, -0.029501956, 0.0220221672, 0.0107801333, -0.0219923668, -0.0313793533, -0.034240149, 0.00717061432, -0.0104746837, -0.0168071743, -0.00835143775, -0.0275649577, 0.0343295485, 0.0123744309, -0.0143412286, -0.00458546821, -0.00102064852, 0.00192023464, -0.0089474367, 0.0202341694, -0.0145200277, 0.00170977239, -0.00853023678, -0.00146112905, -0.0181332733, 0.0252554622, 0.0103778346, 0.0382929407, 0.0207407679, 0.00296882051, 0.0219625663, -0.00715571409, -0.0529843196, -0.00338974479, -0.00564336637, 0.00376224425, -0.0183865726, -0.0558451153, -0.0147658773, -0.00235792133, 0.00421669381, 0.00190254091, -0.0203980692, 0.0190868713, 0.00740156369, -0.00474564265, 0.0153469769, -0.00230577146, -0.0140730292, -0.00290922052, -0.0172243733, 0.0158982761, 0.0147360777, -0.0140357791, -0.0333163515, 0.0106311338, -0.00132144173, 0.020621568, -0.011934882, 0.0168667752, 0.0172988735, -0.0126202805, -0.0146019775, -0.0253895614, 0.00245663384, -0.0298744552, -0.00355736958, 0.00950618554, 0.0100351349, -0.0109663839, 0.0114580831, 0.0129331807, -0.0297105554, 0.00510696741, 0.0254789609, -0.0132162804, -0.000239563698, -0.00263915863, -0.0103256842, 0.0255981609, -0.0276990589, 0.0195636712, -0.0111004831, -0.0333461501, 0.00673851464, 0.0173733737, 0.0203682687, 0.0422861353, -0.00961048529, -0.00379763171, -0.0357003473, 0.0410643369, 0.0152128767, 0.00972223561, -0.0158982761, 0.0250319615, 0.0136930794, -0.00526341703, 0.0235866643, -0.0270434599, -0.0160472766, -0.0223350655, 0.038143944, 0.0232439656, 0.0136260297, -0.00881333649, -0.00891763624, 0.0218731668, 0.000688658329, -0.0174180735, -0.0141847786, -0.0034120949, -0.000936836062, 0.00679811463, 0.000407886895, -0.0340911485, 0.0368327461, 0.00862708688, 0.0174180735, 0.020621568, -0.0202490687, 0.00926778559, 0.0203831699, 0.0185802728, -0.0316773504, -0.0377267413, -0.00837378763, 0.0191464704, 0.017745873, -0.0219625663, -0.0285930559, -0.0236462634, -0.0349255465, -0.0369519442, -0.0158833768, 0.0279970579, 0.00798638817, -0.0218135677, -0.00460781809, -0.00248084636, -0.0255534612, -0.0337931477, 0.0109738335, -0.0214708671, 0.0257173609, 0.00440294342, 0.00701788953, -0.0160621759, -0.00270062103, 0.00189415959, 0.000948942325, -0.00150396652, 0.0259855613, 0.00778523833, -0.00576256635, 0.0222903658, -0.00459664315, 0.0204427689, -0.0481567271, -0.0158833768, 0.01322373, -0.00283099571, 0.0184610728, 0.0184759721, 0.0101468842, -0.00965518504, 0.0181630719, -0.00108862959, 0.0312601514, -0.00202639704, 0.0174925737, 0.00720413914, 0.00195748452, 0.00326123252, 0.027639458, 0.000971292262, -0.00159709132, -0.0259408616, 0.00656716526, 0.00722648902, -0.00579236634, -0.00107186718, 0.0132460799, -0.0184610728, -0.0201447699, -0.00742018875, 0.0268348586, -0.0228416659, 0.0172839742, -0.0240485631, 0.00187367212, -0.043060936, -0.0101021845, 0.0142369289, 0.021530468, 0.0135366293, 0.0302767549, 0.00572531624, 0.00086745806, 0.0156449769, -0.00205992186, -0.00154866639, -0.0165389758, 0.00295019546, -0.0308429543, 0.0066044149, -0.011875282, -0.0331077501, 0.0283099581, -0.000324772933, 0.00391496904, -0.00233184639, 0.0074686138, 0.0211579688, -0.0320647508, 0.039157141, 0.00546084158, -0.0528949201, -0.0386207402, -0.00547946664, 0.0147956777, -0.000618814665, -0.017030675, -0.0142071284, -0.0213814676, 0.0294274557, -0.0100947348, -0.00548691675, 0.00103275466, 0.0104150847, 0.0161366761, -0.00172839744, -0.00240820879, -0.00888783671, 0.00369146932, 0.000655599, 0.0167624746, 0.00607919088, 0.00152166025, 0.0399617404, -0.020204369, 0.0198020693, 0.0096849855, -0.00368215702, 0.0241677631, 0.0268497597, -0.00618349062, -0.0164346751, 0.00220333412, 0.00476054288, 0.0205619689, -0.0124489311, -0.00574021647, 0.00821733754, 0.010824834, 0.0158237759, 0.0220817663, -0.0298297554, 0.0229310654, 0.026983859, -0.0155406762, 0.00174329733, -0.00644051516, -0.0201000702, -0.00785228796, -0.0354023464, -8.96908823e-05, 0.00409004372, -0.00902193598, -0.00484994287, -0.00258887117, -0.0248382632, -0.0105417343, -0.0305449534, 0.000826017524, 0.0156896766, 0.012352081, 0.00749841379, -0.00787463784, -0.000824620656, -0.00881333649, -0.0302320551, 0.00239889626, -0.0192060713, -0.0178203732, -0.00920818653, -0.00672361488, -0.0164346751, -0.0295168553, -0.0245700628, -0.00419434346, -0.0369817428, -0.0277586579, -0.010944033, 0.00617231568, 0.0191613715, 0.00160454132, -0.0200702697, -0.01954877, 0.0406173393, -0.0235270653, -0.00438431837, -0.00999043509, -0.0523287207, 0.00189788465, 0.0302022547, 0.00614251569, 0.00409376901, 0.0462495312, -0.009535986, 0.0320945531, -0.0335249491, -0.0176862739, -0.0352831483, 0.034418948, 0.0230949651, 0.0238101631, 0.00812048744, 0.0082620373, 0.0292784553, 0.004767993, -0.0123222815, -0.00462644314, -0.023988964, 0.00882823672, 0.00838868693, -0.00522244209, -0.0193848703, -0.00806088746, -0.00651501538, 0.0406471379, 0.0320051499, -0.00416826876, 0.00576629117, -0.0234078653, -0.00976693537, 0.00137359172, -0.0368029438, 0.00535281701, 0.00107093586, 0.00375106931, -0.00178985985, 0.00533419196, -0.0130672799, -0.0277139582, 0.00693966448, -0.0134248799, -0.00245849625, -0.00991593488, -0.000785508193, 0.00895488635, -0.0103405844, -0.00410866877, 0.0360281467, 0.00673851464, -0.00518891728, -0.0235270653, -0.0145945279, 0.0381737426, -0.002255484, 0.0137526793, 0.0139910793, -0.0161366761, 0.00520754233, 0.00402299408, 0.0214708671, -0.0147956777, 0.00512186717, 0.0249872617, 0.00686516473, 0.00483876746, 0.00757663837, -0.0144902281, 0.000929386122, 0.00386654423, 0.00340092, -0.00754683837, -0.0136185791, 0.00509579247, 0.0161962751, 0.00562846661, 0.000408119697, -0.0119721321, -0.00997553486, -0.0107354335, 0.0260004606, 0.0296509545, 0.0162409749, 0.0271775592, 0.00730098877, -0.00803853758, 0.00767348846, -0.00755801378, -0.0081502879, 0.00592274126, 0.00809813756, -0.0312005524, 0.0102958847, -0.0373393446, 0.00800128747, 0.0492593274, 0.0347169489, -0.00584824104, 0.0258365609, 0.0177160725, 0.00749841379, -0.021113269, -0.0242422633, -0.0266560595, -0.000500080467, -0.00882823672, -0.00908153597, -0.0189229716, 0.0272073597, -0.021947667, -0.0191613715, -0.012650081, 0.023690965, 0.0154363764, 0.0104821343, -0.0290996563, 0.0223499667, -0.0026298461, -0.00952853542, -0.00876863673, -0.0113984831, 0.00689123943, -0.00210089679, -0.0121285813, -0.00689868955, 0.0104001844, 0.00964028575, 0.0544445179, -0.0118603818, -0.00812793802, -0.0212473683, 0.0161068756, -0.00673851464, 0.00271552079, -0.00138197292, 0.0155406762, -0.00269689597, 0.02680506, -0.012806531, 0.00159150385, 0.0143188788, -0.0140432287, 0.029859554, 0.0200702697, -0.00870903675, -0.0106832841, 0.00767348846, -0.0254342612, 0.00898468681, 0.0122775817, -0.0131119806, 4.85413329e-05, 0.00640699035, 0.0177309737, -0.00981908478, -0.00688751461, 0.0050697173, 0.0163899753, -0.0140208788, 0.0137824789, 3.87341206e-05, -0.00422786875, 0.0240485631, 0.00357599463, 0.0260153599, -0.00400809385, 0.00364118209, 0.00357040716, 0.0135142794, 0.0230204649, 0.0112122335, -0.00509206718, -0.0273712594, -0.000492630526, -0.0231396649, -0.0179693736, 0.00422041863, 0.00430981861, -0.0339123495, 0.00740156369, 0.00859728735, 0.0184461717, 0.00996063463, 0.0234674644, -0.0451767333, 0.0216645673, -0.0171647742, -0.01334293, -0.000921936124, 0.0281609576, -0.00352570717, 0.0306641534, 0.00975203514, -0.0131194303, -0.0148180276, -0.00187646586, 0.00311968289, -0.0147360777, -0.000981536, 0.0298893545, -0.00394476904, 0.00267640851, 0.00368588185, 0.0255832616, -0.00517029222, -0.0187143721, -0.000150862266, -0.0169561747, 0.019071972, -0.0116070826, 0.0145274783, -0.0150564276, 0.0250170622, -0.0192209706, -0.00149931025, -0.00965518504, -0.00181314105, -0.0291592553, -0.0190570708, -0.0165240746, 0.0138644287, 0.00718923938, 0.000291015196, -0.00566944154, 0.0247339625, -0.0151234772, 0.00712218927, -0.00201894692, 0.00992338546, 0.0147286281, -0.00555396639, -0.000524292933, -0.0309323538, 0.00957323518, -0.0150042772, 0.0101021845, 0.0256130621, 0.000285660499, 0.0126426313, 0.0222307667, -0.00495796744, -0.00554651674, 0.00124787306, 0.0105044842, -0.0100053353, -0.00178985985, -0.0177756734, -0.0368327461, -0.00626171567, -0.00114357332, 0.00030707923, 0.012054082, 0.0218731668, 0.00717061432, -0.00812793802, 0.0189825706, -0.00129350426, -0.0269093588, -0.010072385, 0.0140730292, -0.000643492793, 0.00682791462, 0.00319418265, -0.0184014719, 0.0207556691, 0.00607919088, 0.000611830328, 0.0069173146, 0.0267454591, 0.00565454131, -0.0190570708, -0.00563219143, -0.00268944586, 0.00503619248, 0.0101096351, 0.0275798589, -0.0245998632, -0.0238846634, -0.0314985514, -0.000450258696, 0.00627661543, 0.00847808737, -0.0158684757, -0.0101692351, 0.0254789609, -0.00132516678, -0.0581993125, -0.00112681079, 0.0291294567, 0.0322733521, 0.00878353696, -0.00506599247, -0.0172243733, 0.0206364691, -0.0343593471, -0.0241975635, 0.0203831699, 0.00698063942, 7.74100408e-05, 0.0158833768, -0.0256726611, 0.0232737642, 0.00364490692, 0.00776288845, 0.0286228564, -0.00304145785, 0.0211430676, 0.00643679034, -0.00349218212, -0.00598979089, 0.0146019775, -0.0139314793, 0.0093422858, -0.0188931711, -0.000992711, 0.00323888264, 0.0106683839, -0.0104672341, 0.0304853544, 0.00440294342, -0.0105119338, 0.00610154076, 0.0198318698, 0.019965969, -0.00275835837, -0.0178501736, -0.00992338546, -0.0173584744, -0.00343816984, -0.0150340777, -0.0250766613, 0.0137154292, -0.0274606589, -0.00951363519, 0.0205023699, 0.00858238712, -0.0129033802, -0.00935718603, 0.0116219828, 0.00421296852, 0.0221562665, 0.00647031516, -0.00781503785, 0.0182077717, 0.00958068576, 0.00147696026, 0.00748351356, 0.0153767765, -0.0256428607, -0.00768838823, -0.0109216832, -0.0108993333, 0.0201298688, 0.0292039551, -0.00206737197, -0.00436196849, 0.0195934698, -0.052775722, 0.00125904812, -0.00504736742, 0.00361324451, 0.00961048529, 0.0142220287, 0.0173137747, -0.0350745469, -0.0262984596, -0.00386654423, -0.00507344212, -0.00469349278, -0.0129704308, 0.00476054288, 0.0106609343, -0.000175540365, 0.0162409749, 0.00225362158, 0.0155853769, 0.00809813756, 0.00117616693, -0.0309621524, 0.0187590718, -0.0144008286, 0.00438059354, 0.000153190398, 0.00530439196, -0.0105789844, 0.00771818822, -0.0223946664, 0.0164793748, 0.0100351349, -0.0107205343, 0.0108099338, 0.00125252933, -0.0160770752, -0.0115847327, 0.00844828691, -0.0291890558, -0.0252852626, 0.0146392277, 0.00964028575, -0.0197126698, 0.00972223561, -0.00334504503, -0.0130151305, -0.00354805705, 0.00260935863, 0.0177607723, -0.00905173644, 0.0136632798, 0.0114357332, -0.0132311797, -0.00130374799, -0.00865688734, -0.0276841577, -0.0038106693, -0.00173491612, 0.0139538292, -0.000701230194, 0.0048238677, 0.00496541755, 0.00283658318, -0.0213367678, 0.0214857683, 0.0216794666, 0.0126202805, -0.0267603602, 0.0192656703, 0.0043023685, -0.0146168778, 0.0317965522, 0.0087388372, 0.0203086697, -0.00759526342, -0.0135515295, -0.0109887337, -0.00112867332, -0.019250771, -0.0184312724, -0.0202788692, -0.0322733521, -0.0359089449, 0.000571786659, 0.0208450686, -0.00202453439, 0.0148552777, 0.0187590718, 0.0154363764, 0.00266895839, 0.011182433, -0.010824834, -0.0440443344, 0.0243763626, 0.0183418728, -0.022066867, -0.0137228789, 0.0072488389, -0.00671989, 0.00149186025, 0.0401405394, -0.0181183722, -0.00161851011, 0.017507473, -0.000840451859, 0.0019798344, -0.0129629802, 0.0309025533, 0.0279821586, -0.0130449301, -0.0246296637, 0.0192656703, -0.0154363764, 0.00147696026, 0.000170651299, 0.000172863016, 0.000555024133, 0.0114431828, -0.00549436687, 0.00767348846, -0.0154959764, -0.0236462634, 0.0181630719, 0.0195189714, -0.0194444712, -0.0100872852, -0.00178147852, 0.0380545408, 0.00274345838, 0.0400511399, -0.0241975635, -0.0229757652, -0.000139221665, -0.0077405381, -0.0152873769, -0.0133578302, 0.0192656703, -0.00226665917, 0.0177607723, 0.029561555, 0.017030675, -0.00222940906, 0.0045482181, -0.00202639704, -0.00173025986, -0.0102660842, 0.00896978658, -0.0102809845, -0.027103059, -0.00535281701, -0.0225883666, -0.0339123495, 0.0148776276, -0.0240783636, -0.016911475, -0.000774333195, -0.0111675328, -0.000416035298, -0.0308429543, 0.0031047829, 0.0132535296, -0.00264288345, 0.0496169254, 0.00597489113, 0.00847808737, 0.0162856746, 0.00800873805, -0.0381737426, -0.00560611673, -0.00385536929, -0.00378459436, -0.00740156369, 0.00889528636, 0.0105715338, 0.0116741322, 0.014393378, 0.00981163513, -0.00990848523, 0.0425543375, -0.0290698558, -0.00655226503, 0.0201596692, -0.0296658557, 0.00566944154, 0.0216943678, 0.0186100714, -0.00666401489, 0.000981536, 0.00506226718, 0.0215006676, 0.000602052198, -0.00999788474, -0.0125010815, -0.00215118425, 0.00792678818, -0.0213665683, 0.000165529433, -0.00362441945, -0.0209642686, 0.0115549322, 0.00638464047, 0.00227410905, -0.0226926655, -0.00496169273, 0.0280566569, 0.0369817428, 0.00708866445, 0.0114729824, -0.0235866643, -0.0105640842, -0.00582961598, -0.0373691432, -0.0124787316, 0.00239889626, -0.0111675328, 0.0171796735, 0.0155555764, -0.000580167864, 0.0185802728, 0.00193140958, -0.00060438033, -0.0145572778, -0.0123818815, -0.00720786396, -0.00645541539, -0.011718832, -0.0112643829, 0.0206513684, 0.0387697406, 0.00404906878, -0.00347169465, -0.0109216832, -0.0260898601, 0.00876118708, 0.00749841379, 0.0442529321, -0.00284217065, 0.00398574397, -0.0106385844, -0.0151756275, -0.0150638772, 0.00365235703, 0.00482014287, 0.0125383306, 0.024704162, 0.013760129, 0.00844828691, 0.00964028575, -0.0206811689, 0.00248084636, 0.00796403829, 0.0260302611, -0.00260749599, 0.0253895614, -0.00182059105, 0.0167326741, -0.0139016788, 0.0191613715, -0.0225585662, -0.00309174531, -0.0204874687, 0.00626544049, 0.00128046679, -0.00291667064, 0.00304518291, -0.00929758605, 0.024942562, 0.00669009, 0.00886548683, -0.0027062085, -0.0209046677, -0.0126649812, 0.00897723623, -0.0157939754, 0.00884313695, -0.0116368821, 0.00903683621, -0.00825458765, 0.00328172, 0.0163005758, -0.0283546578, -0.0079044383, 0.00268013356, 0.00958068576, -0.00574021647, 0.0123073813, -0.0112345833, 8.46854164e-06, -0.00481641758, -0.0063585653, 0.0247488618, -0.0153469769, 0.0137154292, 0.00115195452, 0.00320349517, 0.0141326282, 0.0177756734, 0.000403696264, -0.00539379194, -0.00396711892, -0.00371009437, 0.00832908787, -0.00812793802, 0.00492816744, 0.00384419411, 0.000462830561, 0.00101506093, -0.0026298461, 0.0233035646, -0.0175968725, -0.000819033128, 0.0158237759, -0.0114953322, 0.0306939539, -0.0169561747, -0.0039335941, -0.0160919763, 0.0158833768, 0.00646659033, -0.0143039785, -0.00199659704, -0.000323841698, 0.0176564734, 0.00806833804, -0.00222568423, 0.00512186717, -0.013938929, -0.0071929642, -0.0274159592, 0.0156002762, 0.0176117737, 0.0158088766, -0.00747233862, 0.0132609801, 0.00752448849, 0.0109067839, -0.000402066595, 0.017209474, -0.00475681759, -0.014631778, 0.00990848523, -0.00656716526, 0.0198020693, 0.00127301679, 0.00363745703, 0.000657461525, 0.00880588684, -0.00658579, -0.00838868693, -0.0202788692, 0.0140208788, 0.00546084158, -0.00911133643, -0.0128959306, -0.0285632573, -0.00138662918, 0.0208301693, -0.00103461719, 0.00271365838, -0.0213516671, 0.0109738335, -0.00961793587, -0.0107354335, -0.00435079355, -0.043299336, -0.00222382159, 0.00758408848, -0.00133913546, -0.00881333649, 0.0144082783, -0.00788953807, 0.00762506342, 0.0102139348, 0.00414219359, -0.0120093822, -0.0265815593, -0.0114059327, -0.00249760877, -0.00498031732, -0.0143039785, -0.012352081, -0.0230949651, -0.00708866445, -0.0121807316, 0.00325192, 0.0158833768, -0.00154028519, -0.0262835603, -0.00549064158, -0.00911133643, -0.00439921813, 0.00284589571, -0.00359461969, -0.00696946448, 0.00349590718, -0.0226181652, 0.0248531625, 0.00416826876, -0.00789698772, -0.00993828475, 0.00515539199, 0.0168518741, -0.0141102783, 0.00318859518, 0.00415709382, 0.0201447699, -0.0116666825, 0.00149186025, 0.0101468842, 0.00533791678, 0.013700529, 0.00387399411, -0.0100798346, -0.0112718334, -0.0114208329, -0.00229459652, -0.00560984155, -0.00650011515, -0.00451841811, 0.0128735807, 0.0265368596, 0.00153097266, 0.000935904856, -0.00558749167, -0.0238250643, -0.0276096575, 0.0203980692, -0.0115772821, -0.0188186709, 0.0116666825, 0.0186696723, 0.0174776744, 0.0107950335, 0.0146094281, -0.00607919088, -0.0107279839, 0.0138718793, 0.0239442643, -0.0207407679, 0.0185802728, 0.0121583818, 0.000456311798, -0.00435079355, -0.00289245811, 0.0185057726, 0.0130300308, 0.0193252712, -0.00428374344, 0.0314091519, 0.00165669119, 0.00345120719, 0.00731216418, -0.0141922282, -0.0282056574, -0.000360393198, -0.0192358717, -0.00546084158, 0.0145945279, -0.0107354335, -0.0156300757, 0.0119497823, -0.00517774234, 0.0130374804, 0.0168667752, -0.00656344, 0.00136427919, -0.00626916531, 0.0217390675, 0.0113388831, 0.00231508398, 0.0245551635, 0.00321839517, 0.0113314325, -0.0143486783, -0.0219178665, -0.0110110836, -0.00334876985, 0.00855258666, -0.00273228344, -0.00829928741, -0.0201149695, -0.00434706826, -0.00956578553, -0.00710728904, -0.0179842729, -0.0328693502, 0.0144157279, -0.010012785, 0.0175819732, -0.000659324, -0.00103834213, 0.002255484, 0.0113314325, 0.0203831699, 0.000329662, -0.00677948957, 0.000222684816, -0.0184610728, 0.017447874, -0.0127245812, -0.022662865, 0.0295466557, 0.0079044383, 0.00273787091, -8.06112075e-06, 0.0223052669, -0.0131864799, -0.00408259407, -0.00937953591, 0.00446999306, 0.00527086714, -0.0173137747, -0.00296137063, -0.000273088663, -0.0112941833, -0.0178799722, 0.022186067, 0.0125457812, -0.0184610728, 0.0105715338, -0.0072190389, 0.0192358717, 0.00152166025, -0.009893585, -0.00799383782, -0.0024454589, -0.022245666, 0.0151756275, 0.0129927807, 0.0011659232, -0.0118156821, -0.0226777662, 0.00949128531, 0.0034437573, 0.00799383782, -0.00409376901, 0.00812793802, -0.00673851464, -0.000309640163, -0.0168518741, 0.00360020716, -0.0115996329, 0.03933594, 0.00257955864, 0.0058109914, 0.0192209706, -0.00974458549, -0.00438059354, -0.0104597844, 0.0157045759, 0.0077405381, 0.00392241916, -0.0293231551, 0.0209642686, 0.017328674, 0.0197722707, -0.00547574181, -0.0145870782, 0.0114282826, -0.0206066687, -0.00518891728, 0.0204874687, 0.0045482181, 0.0033655325, 0.024406163, -0.0182077717, -0.00402299408, 0.00847063679, 0.00187739718, 7.56057416e-05, 0.00586314127, -0.0317071527, 0.000422554062, -0.00889528636, 0.0179246739, -0.00529321702, -0.00107466092, -0.0070700394, 0.00364676956, 0.000763158198, 0.0192209706, 0.00410866877, -0.00981908478, 0.00438804319, -0.00888038613, -0.006056841, 0.0254342612, 0.00851533748, -0.000615555327, 0.00283285812, -0.0118305823, 0.0225585662, 0.016255876, 0.00993083511, 0.0204576682, 0.0174925737, -0.00717806397, -0.0209493674, -0.0114878826, 0.0013577604, 0.0112494826, -0.0320945531, 0.00143691653, 0.000713336398, -0.0178948734, -0.0104895839, 0.011934882, -0.00027634803, -0.0152054271, -0.000438152463, 0.00484249275, 0.013760129, 0.0106087839, -0.00508834235, -0.0142890783, 0.0166283753, -0.00563219143, -0.00298372051, -0.0201000702, -0.0249574631, 0.000607174064, 0.0137079796, 0.00124694186, 0.0159727763, 0.0116890324, 0.0167177748, -0.0161217749, 0.000760830124, -0.00229087146, -0.0148329278, 0.00327985757, -0.016911475, -0.0157194771, -0.0102437343, 8.01455826e-05, -0.023690965, -0.00311595784, 0.02656666, -0.0123818815, -0.0151234772, 0.000666308391, 0.00325378263, 0.0127841802, 0.0119497823, 0.0119125322, 0.0215900671, 0.0042353184, -0.0195785705, -0.0148254773, -0.00245663384, 0.00927523617, 0.00765113859, -0.00314948265, -0.000844642462, -0.00585196633, 0.00244359626, -0.0207705684, 0.0151011273, 0.0198765695, 0.00682419, -0.0181481726, 0.0493189245, 0.0119646816, -0.0176117737, 0.00517774234, 0.0173733737, -0.00257955864, 0.0247786622, -0.0165389758, 0.001288848, 0.0024305589, -0.0141326282, -0.00918583572, 0.0175372735, -0.00947638601, 0.00815773755, -0.020323569, 0.0091932863, 0.0142592788, 0.00785973854, 0.0143561279, -0.00138104171, 0.00985633489, -0.00215304666, -0.00398946879, -0.00714453915, -0.0139463786, -0.00727863889, 0.0230800658, -0.00450351834, 0.00999043509, 0.038143944, 0.0103182346, -0.00975948572, -0.00025725743, -0.0381737426, 0.00629896531, 0.019608371, 0.0177160725, 0.00301910797, 0.00287197065, 0.0132535296, 0.0220221672, 0.01334293, -0.0197126698, 0.011242033, -0.00360579463, 0.0130002303, 0.0188633706, 0.0089474367, -0.0262835603, -0.0105566345, -0.00661931513, 0.0110557834, 0.0143188788, -0.0226926655, 0.00639209, -0.0106013343, -0.0267156605, 0.0101543348, 0.00137917919, 0.0230353661, 0.0227522664, 0.00733451406, -0.0171349738, -0.00222940906, 0.0204427689, 0.000216049681, 0.00748351356, 0.00133354799, -0.0061499658, 0.0046450682, 0.00636601541, 0.0274904594, -0.0127394805, 0.0124042314, 0.0160621759, 0.0279672574, 0.00460409326, -0.00200963439, -0.00205247197, 0.0131566804, -0.00840358716, -0.0264474601, 0.016255876, -0.00847063679, -0.0142741781, 0.00506599247, 0.0143859284, -0.00993828475, 0.0202788692, -0.0229906645, -0.00158871012, -0.002577696, -0.0285185575, -0.0126351807, -0.011361233, 0.010884434, 0.00736803887, -0.0093050357, 0.00330965756, 0.00142946665, -0.0217092671, 0.0208301693, -0.00935718603, 0.00829928741, 0.0040267189, -0.0274457578, 0.000108432258, 0.0185504723, 0.0223499667, 0.024823362, 0.00898468681, -0.00699553965, 0.00226293411, 0.00515166717, 0.0118156821, -0.0130449301, -0.0199212693, -0.0029520581, 0.0235419646, 0.00624681544, -0.0161068756, 0.0140506784, -0.0150415273, -0.00600096583, 0.00630641542, -0.0083588874, 0.025061762, 0.00803108793, -0.0107428841, -0.00822478719, -0.00728981383, -0.00520009222, -0.00448861811, 0.00496541755, -0.00926778559, -0.0136856297, 0.0211430676, -0.00936463568, 0.0132460799, 0.00407141866, -0.014989377, 0.00266337092, 0.0254640616, 0.0251809619, 0.00784483831, -0.00436196849, 0.0133280298, 0.00429864367, -0.00451469328, -0.0185951721, -0.0132684298, -0.0293380562, -0.0101841344, 0.0181034729, -0.00137917919, -0.0150042772, 0.0147658773, 0.00951363519, -0.008247138, -0.0188633706, 0.0170753747, -0.00616859086, 0.00858238712, 0.0335547477, 0.00918583572, 0.0301724542, 0.0186249726, 0.0157790761, -0.00483131781, -0.0141251786, -0.0179246739, 0.00572904153, 0.00207668426, -0.0250915624, -0.00524851726, -0.010765234, -0.0337037481, 0.0204278696, -0.00363373198, -0.00601214077, -0.00443646824, 0.00201894692, -0.000165645848, -0.010765234, -0.00978928525, -0.0280417576, 0.00497659249, -0.00893998612, 0.0143635785, 0.0140655786, 0.0111898826, 0.00615369063, -0.0202788692, -0.0214559678, -0.00140432292, -0.0197126698, 0.00961793587, -0.000613227196, -0.00747978874, 0.00422786875, 0.00772563834, -0.0322137512, -0.00765113859, -0.0200106706, 0.00931248628, 0.0216943678, 0.0398425385, 0.00406024372, -0.00647776527, -0.0162409749, -0.00461899303, 0.0277586579, -0.00240448397, -0.0156151764, -0.0219178665, 0.0160621759, -0.0147360777, 0.0341507494, 0.0104374345, 0.0241677631, 0.00418689381, 0.0113463327, -0.00682791462, 0.00310850772, 0.00422786875, -0.0020617845, -0.00231322157, 0.0101990346, -0.0145796277, -0.00811303779, 0.0125979306, -0.00663794, 0.0205023699, -0.00522989221, -0.0324521512, -0.00256465864, 0.0179544725, 0.0176564734, 0.00631759036, 0.0132088298, 0.018833572, 0.03382295, 0.00268199597, -0.0396935418, 0.00583334127, -0.0181183722, -0.0198467709, -0.0159876756, 0.00598979089, -0.0078075882, -0.0142443785, -0.0080161877, 0.00056806166, 0.00632131565, -0.022066867, 0.0273861587, 0.0133652799, 0.00431354344, -0.00695083942, 0.0325713493, -0.020085169, 0.0117933322, 0.0097818356, 0.0167475753, -0.0365049466, -0.00256093359, 0.00935718603, -0.0141400788, -0.024644563, 0.0206811689, 0.0132907797, -0.00379204424, 0.0148776276, -0.00388144422, 0.0217986666, -0.00334876985, -0.0161217749, -2.02401061e-05, -0.0044923434, 0.0200702697, 0.0201447699, -0.0130747305, 0.006671465, -0.0271328595, 0.0030433205, 0.00426511839, -0.00619094074, 0.0141475284, 0.0116070826, 0.0122626815, -0.0205917694, 0.00668264, 0.0142816287, 0.000287057366, -0.00265219598, 0.0271179583, -0.0150936767, 0.0334653482, -0.000646752131, -0.0160621759, 0.00520754233, -0.00559866661, -0.0037343069, 0.00810558815, -0.00239703385, -0.0116517823, 0.00927523617, -0.0157641768, -0.0187888723, 0.0167177748, -0.0206513684, 0.00889528636, 0.00408259407, 0.0196828712, -0.00904428679, 0.0197722707, 0.0152203273, -0.00555396639, -0.00663794, 0.0181183722, -0.0192060713, 0.0241230633, 7.73518332e-05, 0.00200404692, 0.00452586822, 0.0125085311, 0.0260004606, 0.00726373913, -0.0247935634, -0.0145870782, 0.0138271796, -0.0161813758, -0.00139407918, -0.021411268, -0.0110706836, -0.0135068297, 0.00208599679, 0.00895488635, 0.00462644314, 0.00160919758, 0.00173119118, -0.00818753801, -0.0343891494, 0.0147956777, 0.0102660842, -0.00185039092, 0.00803853758, -0.0055614165, 0.00470839301, 0.0141922282, -0.0150340777, -0.0169263743, -0.0101096351, 0.0144678783, -0.00379763171, 0.00496914238, 0.00761016365, -0.0024603589, -0.00762506342, 0.00765113859, 0.00406024372, -0.0130002303, 0.0191464704, 0.00867178664, 0.00296137063, 0.0295913555, -0.00765858823, -0.0236462634, -0.0287122559, 0.0352235474, 0.0184759721, -0.0204278696, 0.0189080723, -0.0108769834, -0.0200404692, -0.0175223742, -0.00346983224, -0.0149148777, -0.0117262825, -0.0265517607, -0.0039037941, 0.00191650959, 0.00293343305, 0.000476333662, 0.0140879285, 0.000835795596, -0.0261941608, 0.0155108767, -0.010370384, 0.0116294324, -0.00553906662, 0.000773401931, -0.00884313695, -0.0147956777, -0.0172392745, -0.0184610728, 0.0142816287, -0.0167773739, -0.00171629118, 0.00994573534, 0.00722648902, -0.0282503571, 0.0196232703, -0.00168276625, 0.0140059786, 0.00622074073, 0.00920073595, 0.010586434, -0.00358530716, -0.00553906662, -0.0127022304, 0.00921563618, -0.0147882281, 0.00534909172, 0.00337856985, 0.00748723885, -0.00689868955, -0.0019798344, 0.0318263508, 0.000423019665, -0.0112196831, -0.00420924369, -0.0236015636, 0.0097967349, -0.00555024156, 0.00305449544, 3.14878416e-05, 0.0027825709, 0.00406024372, 0.00943168532, 0.0124489311, 0.0250021629, -0.00431354344, -0.0087388372, -0.00993083511, 0.0116368821, -0.00846318714, -0.00262239599, 0.0066044149, -0.0155853769, -0.000992711, -0.00497659249, 0.00150210399, -0.00606056582, 0.00571786659, 0.00159895385, 0.0141251786, 0.00147975399, 0.00243614637, 0.0179246739, 0.0146168778, -0.0153618772, -0.00957323518, 0.012352081, 0.00592274126, 0.0161813758, 0.000132237299, 0.0210983679, 0.000452121196, 0.00640326552, -0.0040267189, 0.00995318498, -0.00547574181, -0.000430236862, 0.00655599032, -0.0239442643, 0.0188633706, -0.0176862739, -0.0111973332, 0.00782248843, 0.0154959764, -0.00808323734, -0.0145796277, -0.0265368596, 0.0140581289, 0.0148403775, 0.00883568637, -0.0235717651, 0.0231098644, -0.0117411818, -0.0275947582, -0.0108322836, -0.0101990346, 0.00527459197, 0.0116294324, -0.0101021845, 0.00347541971, -0.00375293172, 0.0222158656, -0.0150862271, -0.00922308583, -0.00806088746, 0.0116070826, 0.00616486557, 0.00026680273, -0.00378831918, -0.012292481, 0.00444391835, -0.00792678818, -0.0714006945, -0.0233631656, 0.00490581756, 0.00625799038, 0.0156598762, 0.0131119806, -0.0150638772, 0.00509951729, 0.0106907338, -0.00299489545, 0.00163806626, -0.0124861812, -0.00469349278, -0.00568061648, -0.0147807775, 0.00928268582, 0.0205768682, -0.0168965738, -0.0261196606, -0.0089474367, -0.017745873, -0.014810578, -0.00349031971, -3.34376455e-05, -0.000907036127, 0.00118734199, 0.000566664792, -0.00905918609, -0.000104823666, -0.0143188788, -0.0130523806, 0.00908153597, 0.0118231317, 0.00401926879, -0.000621142797, -0.026864659, -0.00596744101, -0.0161366761, 0.00817263778, -0.0186249726, 0.0136483796, -0.00151793519, 0.00352198211, -0.00841103774, -0.0156896766, 0.00331897, 0.0034437573, -0.0132907797, -0.00279560825, 0.00171349745, -0.0245402623, 0.0184908714, -0.0111600831, -0.00715198927, -0.00981908478, 0.00170046, -0.0135887796, -0.000461433665, -0.00324447, 0.00838868693, -0.000382510363, -0.0409451388, -0.00335435732, 0.000374594732, 0.0141028287, 0.0195785705, -0.0125830313, 0.00196120958, -0.00353129464, 0.00347914477, -0.00555024156, -0.0183865726, -0.0201745704, -0.0063026906, -0.000469814928, 0.000173212233, -0.00617231568, 0.00398574397, 0.0152501268, 0.00932738557, 0.0128288809, -0.000130025583, -0.00529694185, -0.00561356638, 0.001142642, -0.0090964362, -0.0107801333, 0.00977438502, 0.013879329, 0.0167773739, 0.0123669812, -0.00126649812, 0.00238958397, 0.0124861812, 0.0247488618, -0.000242590264, -0.0116294324, 0.00154587266, 0.0276692584, 0.0273861587, 0.00946148578, 0.0115400329, 0.020621568, 0.00897723623, 0.00897723623, -0.00737548899, -0.0112345833, -0.0110259829, -0.00108024839, -0.00666773971, 0.0115325823, -0.00384419411, -0.00369519438, -0.00273414585, 0.008247138, 0.0207109693, -3.71917413e-05, -0.00501011731, 0.00432844367, 0.0303214546, 0.00142760412, -0.0236015636, -0.0101617845, 0.00521499198, 0.0160025749, -0.00284775812, 0.00117430452, -0.00936463568, -0.00618349062, 0.00102623599, 0.0154959764, -0.00560611673, 0.0168369748, -0.0133578302, -0.0152426772, -0.0100574847, 0.00531929219, 0.000717992662, -0.00389261916, -0.00298372051, 0.0126351807, -0.00467486773, -0.00925288629, -0.0264176596, -0.00471956795, -0.0157939754, -0.0168667752, 0.00952853542, -0.0125383306, 0.00523361703, -0.0141922282, -0.0185355712, -0.00964773539, 0.00880588684, 0.0167773739, -0.029084757, 0.0197573695, 0.00637346553, -0.00873138662, -0.0114282826, 0.0153022772, -0.00914858654, -0.00141829159, -0.00417199358, 0.00958813541, 0.0250468627, -0.00939443614, -0.018952772, 0.011122833, -0.0167475753, -0.00338043249, 0.0180885736, 0.00460781809, 0.00396711892, 0.00461154291, 0.00543104159, -0.00748351356, -0.0115474826, 0.00606056582, 0.00923798606, 0.0254044607, -0.00113332958, 0.000890739262, -0.0182375722, -0.00676831463, -0.00902938657, -0.00983398501, 0.00947638601, 0.00498031732, 0.00435451837, 0.0238101631, 0.00761388848, 0.0070961141, 0.00155797892, -0.00775543833, 0.000558283529, -0.00098432973, 0.0167028755, -0.0254938621, 0.0149968276, -0.0293976553, 0.00406769384, -0.0212175678, 0.00640699035, -0.0024454589, -0.0113910325, -0.0116294324, 0.0248531625, 0.000634180265, -0.0201596692, 0.00130095426, -0.0193103701, -0.0244657639, 0.0144827785, 0.0045221434, 0.00841848738, -0.0157790761, -0.00735313911, -0.00342885731, 0.0290400553, -0.00372871943, 0.0129331807, 0.0244359635, -0.000522896065, 0.0151234772, 0.00263915863, -0.00529321702, 0.0259557609, -0.00203570933, 0.00233929651, 0.00477544265, -0.00937953591, 0.0184610728, -0.0112792831, -0.0212324671, 0.0162111763, -0.00558376638, 0.0309323538, -0.012352081, 0.017626673, -0.00795658771, 0.0119721321, -0.0115623828, 0.00796403829, -0.0047009429, -0.00501011731, -0.00596744101, -0.000724511396, -0.00132423546, -0.00696201436, -0.00837378763, 0.00622446556, -0.00585569115, -0.00751331355, 0.0101021845, -0.00993083511, -0.0156896766, -0.00516284211, -0.00507716741, 0.0283993576, -0.00698063942, 0.0106087839, 0.00114822946, 0.000998298521, 0.0146392277, 0.00121900439, 0.0123371817, -0.0157492757, -0.00142574159, 0.0225138664, 0.00314762024, -0.00534909172, 0.00906663667, -0.00771073857, 0.00879843626, -0.00546084158, 0.00880588684, 0.00650011515, -0.0137526793, -0.000436522765, -0.0130449301, -0.0372201428, -0.00377528183, 0.017209474, -0.010646034, 0.00150303519, 0.00583334127, -0.0248680618, -0.0153916767, -0.0371307433, 0.0157492757, 0.00407141866, 0.012590481, -0.0208301693, 0.000196726265, -0.0243614633, 0.00454076799, 0.0114729824, 0.0082620373, -0.0203682687, 0.0109738335, -0.00926033594, -0.0145796277, 0.000171233332, -0.0268348586, -0.0127692809, -0.0151234772, -0.00181220972, -0.00170139119, 0.00197610958, -0.0319157504, 0.00293343305, -0.00890273694, 0.010705634, -0.00328917, -0.0106385844, -0.0248531625, -0.00631386554, 0.00861218665, 0.00639954, -0.0179693736, -0.0322137512, -0.00397084421, 0.0306045543, -0.00379763171, -0.0020468845, -0.00762133859, 0.017030675, 0.0149968276, -0.000362022896, 0.0111451829, 0.0256577618, -0.024227364, 0.00566199142, -0.00649639033, 0.000495424261, -0.0168369748, -0.0399021395, -0.000420458731, -0.00853768736, -0.0215751678, -0.00476054288, -0.00616859086, 0.00870903675, 0.0147584276, -0.00928268582, 0.0172839742, 0.0121881813, 0.00574021647, -0.00574766612, -0.00692476472, 0.00388516905, 0.000790164457, 0.0220966674, -0.00624681544, 0.0021325592, -0.0294870548, -0.00726746395, 0.0100500351, -0.00555024156, 0.0101990346, 0.00647031516, -0.00961793587, -0.0234823637, -0.00315507012, -0.00765113859, 0.0355513468, -0.00207854691, -0.0208152682, 0.00377528183, -0.006056841, -0.019250771, -0.0343295485, 0.0597489104, 0.0140655786, 0.00467859302, -0.0062356405, 0.0156598762, -0.0182971731, -0.00538634183, 0.0359387472, -0.0146764778, -0.0111004831, -0.0135887796, 0.0115698325, 0.0105566345, 0.0109514836, 0.00818753801, -0.00774798822, -0.0114059327, -0.0133503797, -0.00952108577, -0.0208301693, 0.00144809159, -0.00732706394, -0.00492444262, -0.00629151566, -0.00115381705, 0.00620956579, -0.0117784319, -0.00686516473, -0.00490581756, 0.0132535296, 0.00332828239, 0.000717992662, -0.0214410685, -0.00470839301, -0.00168276625, -0.0160025749, -0.0461303294, 0.00710356422, 0.00377155677, 0.00601586606, 0.0228714664, 0.00906663667, 0.00704396423, 0.00673851464, 0.0197275709, 0.0109514836, -0.00401181914, 0.00599724101, 0.017209474, -0.0129033802, -0.00429119356, -0.0349851474, 0.00668264, -0.0128959306, -0.00779268844, 0.00155984145, 0.0117933322, 0.0139836287, -0.00771818822, 0.0183418728, 0.0155108767, 0.0108546335, 0.0199808702, -0.0278033577, 0.00224058423, 0.00629896531, -0.0159876756, 0.0204427689, -0.0257620607, -0.00461899303, 0.0332269482, -0.0117709823, -0.00754683837, -0.0114655327, 0.0217539668, -0.00472701807, -0.023690965, 0.00248084636, 0.00773308845, -5.57294079e-05, -0.00815773755, -0.00764368847, -0.0150713269, -0.0153320767, 0.00190719718, -0.00586686609, -0.027639458, -0.0164644755, -0.00183362851, 0.0103629343, 0.00883568637, 0.00228900905, 0.0077405381, 0.0207109693, -0.0108695338, -0.00294088316, -0.0181928724, 0.00949873589, 0.00855258666, -0.0196232703, 0.00207109679, -0.00198914693, -0.0118380319, -0.00328917, -0.00924543571, 0.0191315711, -0.011875282, 0.0121434815, 0.010586434, -0.0134323295, 0.0052894922, -0.00368215702, 0.00308615784, 0.0102511849, 0.00739038875, 0.000520568, 0.00879843626, -0.0122105312, -0.000332455762, 0.00313085783, 0.00933483616, 0.00929758605, 0.0053453669, 0.0343295485, 0.00345120719, 0.0148031274, 0.00483876746, -0.00688751461, -0.00445881812, -0.00523734186, -0.00117057946, 0.0105640842, 0.000401600963, -0.0157045759, -0.00433589332, 0.0230055656, -0.0295317546, 0.0172690731, 0.00972968526, 0.0302916542, -0.00902938657, -0.0129406303, 0.00683164, -0.00432844367, 0.00835143775, -0.0177756734, 0.000326402631, -0.0411537364, 0.0129853301, -0.00788953807, 0.00689868955, 0.0110408831, 0.0150862271, -0.00521871727, 0.0172243733, 0.00503246719, 0.015168177, -0.00954343565, 0.0211281683, 0.00828438718, -0.00999043509, -0.00314762024, -0.0073717637, 0.0106683839, 0.0115251327, -0.0378459431, 0.0162409749, 0.0117635326, 0.0186249726, 0.00822478719, 0.00653736526, 0.0102437343, 0.00439549331, 0.0237505641, 0.00517029222, 0.0120391818, -0.00131957931, 0.000808789395, 0.0115102325, -0.0264027603, 0.0138495294, 0.016792275, 0.00897723623, 0.054623317, 0.0114357332, -0.0278033577, 0.0030749829, 0.0223052669, 0.0158386752, 0.0120838815, 0.000266569899, -0.000580167864, -0.00477544265, 0.00527459197, -0.0268497597, -0.00997553486, 0.0147584276, -0.0131119806, -0.00195934693, -0.0101915849, 0.0139463786, -0.00428746874, 0.0116070826, 0.00864198711, -0.0164048746, 0.00648894, 0.0125532309, -0.0036113821, -0.0056582666, -0.00660069, -0.00135962293]
09 Aug, 2021
match_results prefix() and suffix() in C++ 09 Aug, 2021 The match_results::prefix() is an inbuilt function in C++ which is used to get the string which is preceding the matched string in the input target string.Syntax: smatch_name.prefix() Note: smatch_name is an object of match_results class. Parameters: This function accept no parameters.Return Value: This function returns the sequence preceding the matched sequence in the target string.Note: First element always contains the whole regex match while the others contain the particular Capturing Group.Below program illustrate the above function: CPP // CPP program to illustrate // match_results prefix() function #include <bits/stdc++.h> using namespace std; int main() { string s("Geeksforgeeks is a computer science portal"); regex re("computer"); smatch match; regex_search(s, match, re); cout << "Prefix is: ["; if (!match.empty()) { cout << match.prefix() << "]" << endl; } return 0; } Output: Prefix is: [Geeksforgeeks is a ] The match_results::suffix() is an inbuilt function in C++ which is used to get the string which is succeeding the matched string in the input target string.Syntax: smatch_name.suffix() Note: smatch_name is an object of match_results class. Parameters: This function accepts no parameters.Return Value:T his function returns the sequence succeeding the matched sequence in the target string.Note: First element always contains the whole regex match while the others contain the particular Capturing Group.Below program illustrate the above function: CPP // CPP program to illustrate // match_results suffix() function #include <bits/stdc++.h> using namespace std; int main() { string s("Geeksforgeeks is a computer science portal"); regex re("computer"); smatch match; regex_search(s, match, re); cout << "Suffix is: ["; if (!match.empty()) { cout << match.suffix() << "]" << endl; } return 0; } Output: Suffix is: [ science portal] Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++
https://www.geeksforgeeks.org/match_results-prefix-and-suffix-in-cpp?ref=asr10
PHP
match_results prefix() and suffix() in C++
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[0.0332826, 0.0306232814, -0.0148455752, 0.0341324843, -0.00492110942, 0.00700127194, -0.0271003712, 0.0257295892, -0.0310071018, -0.0131526589, -0.0510753579, 0.00409521302, 0.00506161433, -0.0342421494, -0.000909856928, -0.0146947885, 0.00283580646, 0.0278680082, 0.00778604485, -0.00419802172, -0.0399720185, -0.00205274695, 0.00867705327, 0.00162951776, 0.00834806543, 0.0117133372, -0.0396978632, 0.000209579797, -0.0294992402, -0.0146125415, 0.035229113, 0.0180943292, 0.00785458367, -0.0139202969, -0.0301298, 0.0279502552, 0.00538032129, 0.0284026135, 0.000835320621, -0.0285122767, -0.0129470415, 0.0217269026, 0.0252635218, -0.0390947163, -0.0368192196, 0.0323778838, -0.0260174535, -0.0312264264, 0.011096485, -0.0426039211, 0.0321311429, 0.0218776893, 0.017491186, 0.00998615101, 0.0222340934, 0.0304587875, 0.0336664207, 0.017477477, 0.00110690692, -0.00499650231, -0.0254828483, 0.00925963651, 0.0142424302, -0.0346259661, 0.028018795, -0.0104796328, -0.0730901286, 0.00367712416, 0.0292250831, 0.0271826182, -0.0386560671, 0.0226590354, -0.009725702, -0.00851941388, -0.0277172234, -0.0308974385, 0.00957491621, 0.000328345253, -0.0125837838, 0.0161204021, -0.0259489138, 0.0219873525, 0.00416717911, 0.00672368845, 0.0159559082, -0.00214698818, 0.0150923161, -0.0471823364, 0.0198215153, 0.00710750744, -0.0345711373, -0.00433852663, 0.0191361234, 0.00607599365, -0.0284026135, 0.0615755506, 0.0521719828, 0.0179298352, -0.0408219025, 0.0358596705, -0.00617537554, -0.00753245, 0.0143658007, -0.0106578339, 0.0706775486, 0.00111376087, 0.0160107408, -0.00851941388, 0.0266891364, 0.00544200651, 0.0165590532, 0.00409521302, 0.00789570715, 0.0203561205, -0.0205480307, 0.00485257, -0.0105276098, -0.0137832183, 0.026908461, 0.0336664207, -0.022028476, 0.0424394272, 0.0450713299, -0.000456213573, -0.0496497452, 0.0166413, 0.0167098399, 0.0174500626, -0.00228406652, -0.0045475713, 0.0107469354, -0.0386286527, -0.0073199789, 0.00801907759, 0.0245644227, 0.0414524637, -0.00989019591, 0.0251538604, -0.0303217098, 0.0120903021, -0.00785458367, -0.00274327863, 0.0605337583, 0.021000389, -0.0149826529, -0.0326520391, 0.00152585236, 0.0257844198, -0.00731312484, -0.0325972103, -0.0523638949, -0.0270181242, 0.00271072239, -0.0452358238, 0.0462227874, -0.0139956893, 0.0395881981, -0.0188345518, 0.0386286527, -0.0394511223, 0.0324601308, -0.0249619503, 0.0345163047, 0.0453454852, 0.0159559082, 0.0300475527, 0.00254622847, -0.0095200846, -0.0357500091, 0.0420281924, 0.00906772632, 0.025880374, 0.0237419531, -0.00801907759, -0.0400542654, -0.0146947885, 0.0219873525, 0.00335670379, -0.00928705186, 0.0281832889, -0.0110416533, 0.0378884301, -0.00189510686, -0.0599854439, -0.00452015549, -0.0183959026, 0.0424942598, -0.00125340931, 0.0619045384, -0.0406574085, -0.015599505, 0.0132623212, 0.0267987978, 0.025112737, 0.0314183347, 0.0148592824, -0.0185329802, -0.000115981056, 0.0252635218, 0.0458115526, 0.0086907614, -0.056805227, -0.0135570392, -0.000680679223, 0.0437279642, 0.00136392866, -0.0235774592, 0.0140916444, 0.00659689121, -0.0125906374, -0.00423229113, -0.0164768063, -0.025880374, -0.00643239729, 0.00112575514, -0.00925278198, -0.0485531166, -0.0193417408, -0.0276761, -0.0107263736, 0.0153527642, -0.01525681, 0.0258529596, -0.0316102467, -0.00736110238, 0.0121656954, -0.0373127, -0.0222615078, 0.0258118361, -0.0327068716, 0.0181765761, 0.00247940281, -0.0223163404, 0.00885525532, 0.0117407525, 0.00248111645, -0.0115488432, 0.00908143446, -0.00415004417, 0.0596016236, 0.0149415294, 0.0157914143, -9.64366918e-05, 0.0202464573, 0.0294992402, 0.0338857435, 0.00567161292, -0.0164905135, -0.0293347463, -0.00282209856, -0.00103065709, 0.00216755, -0.00019115991, 0.0382996649, -0.0212608371, -0.00176659599, -0.011994347, -0.0296363179, -0.00364628155, -0.0177790504, 0.00468464941, -0.0156269204, -0.00471206522, 0.027251156, 0.0181217454, 0.00263361586, 0.0112541243, 0.00460925652, -0.0398075245, -0.0219873525, 0.0309522692, -0.00537689449, -0.0233033039, 0.0213019606, -0.00204932, -0.0160107408, -0.0189305078, 0.0450713299, 0.0155446744, 0.00514728855, -0.0191087089, 0.0123987282, -0.00697042933, -0.0162437726, 0.0349549539, -0.0268536303, -0.0415347107, 0.0443311073, -0.0109731145, -0.00332414755, 0.0068847551, 0.0092048049, 0.000639984093, 0.0352016948, 0.0335841738, 0.00774492137, 0.00509245694, -0.0393962897, -0.0424394272, 0.0304862037, -0.008485144, 0.0271414947, -0.00696700206, -0.0360515825, -0.0140025439, -0.00814930256, 0.0377239361, 0.00731312484, -0.0292525, -0.0137215331, -0.0199174695, -0.0414524637, 0.0153801804, 0.0278954245, -0.0151608549, -0.0245781317, 0.0297733974, -0.00847829, -0.0317199081, -0.0375868566, 0.0106372721, -0.0183547791, 0.00106492674, -0.00248111645, 0.0525558032, -0.00862222258, -0.0175323095, 0.00588065712, -0.0384367406, 0.0155446744, -0.0412605554, 0.00969828665, -0.0153938876, -0.0243588053, 0.0157228764, -0.0164356828, 0.00166550081, 0.0144343404, 0.0453454852, 0.00318878284, -0.0422749333, -0.0332003534, -0.00788885355, 0.00937615242, 0.0134199606, -0.0127071543, 0.0225082487, -0.0339954086, -0.0225493722, 0.0507189557, 0.000920137798, -0.0330632739, 0.0231251, -0.0135090621, 0.00818357151, -0.02741565, -0.0421104394, -0.0228098221, 0.00641868915, 0.00819728, 0.00458869478, 0.0190812927, 0.0261134077, 0.00251367246, 0.0247289166, -0.0410138145, -0.0490740165, 0.00439678505, 0.0319118164, 0.0134062534, -0.0096297469, 0.00272271689, 0.0254417248, -0.0258118361, -0.0514043458, -0.00955435447, 0.0324053, 0.0245781317, 0.00706638396, 0.00285294116, -0.0423571803, 0.0386286527, -0.0208084788, -0.0190538764, 0.0120149087, -0.00505476072, -0.00458869478, -0.00396156171, 0.0036120119, -0.00302771595, -0.0613562278, 0.0160518643, -0.00684363162, -0.00974626373, 0.00788885355, -0.0106989574, -0.103960149, -0.0201505031, 0.0176008474, -0.0211922973, 0.0514043458, -0.00196193252, 0.00254280167, 0.0336664207, -0.0211922973, -0.000803621253, -0.00812188629, -0.0384915732, -0.0191635396, 0.0220970139, 0.0088963788, 0.0201367959, -0.0416992046, -0.0300475527, 0.0555989407, 0.0155172581, -0.00435908837, 0.0227275752, -0.00501706405, -0.0043351, -0.0241120644, -0.024934534, -0.0122753577, -0.0026524642, 0.0201093797, 0.0030791203, -0.0275801439, 0.0290331747, -0.00986278057, -0.0356403477, -0.0675521642, 0.0146399578, 0.0413976312, 0.0381351709, 0.000251024554, -0.0294169933, 0.0280736256, -0.02193252, -0.012337043, -0.00936244521, -0.0140916444, 0.0249756575, 0.0285945237, -0.0459212139, -0.00252738036, 0.0619045384, -0.0368192196, -0.00940356869, 0.00212642644, 0.0184781495, -0.0162986051, 0.0283477828, -0.010459071, 0.0193280336, 0.0503077209, -0.0388479754, 0.00873188488, -0.0087593, 0.0501980558, -0.00966401678, -0.0300201382, -0.00525352405, 0.00236974028, -0.0195336509, 0.00621992582, 0.0188345518, 0.0318021551, -0.0152293937, -0.00249482412, 0.009938173, -0.00486970507, -0.0309796855, -0.0150511926, 0.0054077371, 0.0250853207, 0.0154075958, -0.00335670379, -0.0285945237, -0.00306883943, 0.0189853385, 0.0543926507, 0.00605543191, -0.0227138661, -0.00392386504, -0.00262676203, -0.0207536481, 0.00594576914, -0.0110759232, 0.0253457688, 0.0332003534, -0.034872707, -0.00717604673, -0.00739537179, -0.0129470415, 0.00838918891, 0.017998375, -0.0326246247, 0.000800194335, 0.0196021907, -0.0319118164, 0.0421104394, -0.00110262318, 0.000366041786, 0.0461953729, 0.0375046097, -0.0323504694, -0.059053313, 0.0156406295, -0.000800622685, 0.011014238, -0.00553110754, -0.0015755432, -0.00421172939, -0.00136564206, -0.0252361074, 0.0172581524, -0.00779975252, 0.0183547791, -0.0296911504, -0.0202327501, -0.0157091673, 0.00118315674, -0.017998375, 0.0426861681, -0.0266343039, -0.00524324318, 0.0264423955, 0.0057161632, -6.57614191e-06, -0.00904716458, -0.0180532057, 0.00654205959, 0.0190127529, 0.0148866987, 0.000934702344, -0.0182314087, -0.0187111814, 0.0134610841, -0.00970514, 0.00785458367, -0.026990708, 0.00994502753, 0.00569902826, -0.0131937824, -0.0364628173, 0.0225082487, 0.00134936406, -0.00107178057, -0.0200408399, 0.035064619, -0.00879357, 0.00816301, -0.000664829509, 0.0141601833, 0.0191909559, -0.00254622847, -0.0116790673, 0.0027689808, 0.000990390428, 0.0113226641, -0.0328713655, 0.0172992758, 0.0430151559, 0.0188071374, -0.00140590884, 0.0123164812, 0.0106030032, -0.00308426074, -0.0129676033, 0.02597633, -0.0191909559, -0.000914140604, 0.0102054756, 0.00861536805, 0.0243450981, 0.0223026313, 0.01143918, -0.00365998945, 0.0180669148, -0.00342181581, 0.000961261278, -0.0241943114, -0.00483886246, -0.0207947716, 0.000677252247, -0.00477717724, -0.0219736435, -0.0173129831, -0.0333648473, -0.00500335637, 0.019095, 0.00946525391, -0.00817671791, 0.0120354705, -0.00808761735, 0.00916368142, -0.00610683626, -0.0211237594, -0.0016509362, 0.0207125247, 0.038052924, 0.039670445, -0.0176145565, 1.23624777e-05, 0.0151882702, 0.000721374294, 0.0312264264, -0.0325972103, 0.0150511926, 0.000559450651, -0.0267987978, 0.00852626748, 0.0406848267, 0.00336698466, -0.00350063597, -0.0101300832, -0.0122616496, 0.00650436338, -0.0111307539, 0.0178064648, 0.00841660518, -0.0287041869, -0.0145302946, 0.0159010775, 0.0358048417, 0.0621786974, -0.0257707126, -0.014228723, 0.0072925631, -0.0335841738, -0.000905573193, -0.00558936596, 0.0116790673, 0.0170799512, -0.00117030565, 0.0319118164, -0.0107949125, 0.0067750928, -0.00394785358, 0.0270729549, -0.0287590176, 0.0270044152, 0.00457156, 0.0478403121, 0.000920137798, -0.0116927754, 0.00956120808, 0.00441049272, 0.0113774948, -0.0129059181, -0.0143795088, 0.0206439849, -0.00571959, 0.0147633282, -0.00307569327, -0.023481505, 0.0107674971, 0.0226590354, 0.0217817351, 0.0130018722, -0.0153116407, -0.040958982, -0.0170799512, 0.0124878287, -0.00522268144, -0.000514043437, -0.0384915732, 0.00336698466, -0.0153253488, -0.00567161292, -0.0151608549, -0.0394511223, -0.0103699695, -0.00271586282, 0.00511644594, 0.00558251189, -0.00743649527, 0.0383270793, -0.00984221883, 0.00254108803, -0.0192732029, -0.00318878284, -0.00489712041, 0.00339954067, 0.00995873474, -0.00298487907, -0.00705953, -0.00697385613, -0.0228372365, -0.0342421494, -0.0172170289, 0.00871132314, 0.0158462469, 0.0248659961, 0.00305855856, 0.00733368658, 0.01834107, -0.0137146795, -0.000974969065, -0.00231662253, -0.00272785733, -0.0196981449, -0.0409863964, 0.00285465457, -0.00664829509, 0.00750503456, -0.00549683813, 0.00913626608, 0.00500335637, 0.00366684329, -0.0101369368, 0.017052535, -0.00578812929, 0.0206714012, 0.0245918389, -0.0299378913, 0.0327891186, -0.00756672, -0.00678537367, -0.0192594938, 0.0185466874, 0.00147444801, 0.00235089217, 0.00946525391, 0.00680936221, 0.00852626748, -0.0176968034, -0.0122136725, -0.0106167104, -0.00348692806, -0.0038142025, 0.022028476, 0.00573672494, 0.00352976494, -0.0231799334, 0.0145028792, -0.00209901086, -0.0298556443, 0.00357088842, -0.0108908676, 0.00586352218, 0.00332243415, -0.00370796677, -0.0113637876, 0.00511987275, -0.0253183544, 0.0254965555, -0.0205480307, -0.0252361074, 0.0472097509, -0.00215898245, 0.0185603965, 0.0197392683, -0.000583010959, -0.0109114293, -0.0133719835, 0.0242902674, -0.00700127194, 0.0232484713, -0.0277857613, 0.00713492325, -0.0112404171, 0.0172444452, 0.0396156162, -0.0271003712, -0.0310893487, -0.03720304, 0.0255513862, 0.000564591086, 0.0161066949, -0.00592863467, 0.00472577289, 0.0225904956, -0.0220970139, -0.0209318493, 0.0136187244, 0.00501706405, 0.0237145387, 0.0103425542, 0.00821784139, -0.0285671074, 0.0417540371, 0.00215898245, 0.0114597417, 0.0151471468, -0.0126249073, 0.0202327501, -0.00558251189, 0.0035948772, -0.0186974742, -0.0627818406, 0.012809963, 0.0278954245, 0.00891008694, 0.0174637698, -0.0253183544, -0.00787514541, -0.0576276965, -0.0227824058, -0.0265520569, 0.0282655358, 0.00015560523, 0.0136050163, -0.000310353731, 0.0216172412, -0.0196158979, 0.00751188817, 0.00332928798, -0.0363257378, 0.0109594064, 0.000765924749, 0.0355855152, 0.00400611199, 0.0266343039, -0.00531178247, -0.00497251377, 0.019369157, 0.0434812233, 0.0170936584, 0.00814244803, 0.0142424302, 0.00480802, 0.0277857613, -0.02287836, 0.0152842253, 0.0105824415, 0.0263464414, 0.0242628511, 0.0211785901, 0.010753789, 0.00478060404, 0.010884013, -0.000855882361, 0.0122753577, -0.00577784842, -0.00973941, 0.00697728293, 0.0297733974, -0.0244958848, 0.0339679904, -0.0159970317, -0.00706638396, -0.0537072606, -0.0124809751, -0.0184781495, 0.0216857791, -0.0232895948, 0.00617194828, 0.0141327679, 0.00061299681, 0.00360515807, 0.0132143442, 0.00619593728, 0.0192594938, -0.0275390204, 0.00169034617, -0.0328713655, -0.014914114, -0.0221929699, -0.0086907614, 0.0280462112, 0.0332003534, -0.0102671608, 0.00608970132, 0.0179572515, -0.00634672306, 0.0103494078, 0.00802593213, -0.0193143263, -0.0272237416, 0.00662087975, -0.00111804449, -0.012337043, -0.0301023852, 0.0143795088, 0.0132623212, 0.0135364775, 0.011356933, 0.0269358773, -0.0148181589, 0.0147222048, -0.0073199789, -0.0378061831, -0.0181902852, 0.0293621626, -0.00431111129, -0.00459554838, -0.011226709, 0.00158411055, -0.0296911504, 0.0295266565, 0.032734286, -0.0108565977, 0.00154213037, 0.0224122945, -0.0077312137, -0.00949952286, -0.0134679386, -0.0235226285, -0.0180669148, 0.00300372718, 0.00466751447, -0.0189579222, -0.00291805342, 0.0381077528, -0.0162026491, 0.0106030032, 0.0153664723, -0.016367143, 0.0330632739, 0.0138449036, 0.031884402, -0.036846634, -0.000827609969, -0.00614110567, 0.0391495489, -0.00580869103, -0.00995873474, 0.0106441267, 0.00393414591, 0.0294992402, 0.00855368283, -0.0444133542, 0.0256336331, -0.00242457166, -0.000368397799, 0.0356951766, -0.0206165686, 0.00481144665, -0.0168606248, -0.0197666846, -0.00956806168, -0.0100958133, -0.0234677978, -0.00888267066, -0.0160518643, -0.0410960615, -0.0338583291, -0.0329261981, -0.00973941, 0.00615138654, 0.038820561, 0.00370453973, -0.0072925631, -0.0124878287, 0.0212745443, -0.017477477, -0.0248934105, -0.00787514541, -0.000129260516, -0.0286493544, 0.00897177216, -0.0198489316, -0.0340502374, -0.00240229629, -0.00429740315, -0.0318021551, -0.018080622, 0.00146159693, -0.0232895948, 0.0347356312, 0.0224260017, -0.00587037625, -0.00785458367, 0.0220558904, 0.00215041521, -0.00328816473, -0.0211100504, -0.0411234759, -0.00830008835, 0.035229113, 0.000982679776, 0.00559621956, 0.0262230709, -0.00155583816, 0.00385532598, 0.00917053502, -0.0223300476, -0.0285671074, 0.0194376968, 0.0211785901, 0.0362160765, 0.00162866106, 0.0117407525, 0.0199174695, -0.0421652719, -0.0363805704, 0.00504105259, -0.0429877415, 0.0090951426, 0.0283477828, -0.000404595048, -0.0180120822, -0.0255239718, -0.00417746, 0.0302942935, 0.0289235115, -0.0130772656, -0.00433852663, -0.029389577, -0.0174089391, -0.00544543378, -0.0254828483, -0.00744334934, -0.0227412824, 0.010411093, 0.019026462, 0.015942201, -0.0402461737, -0.0113158096, 0.0223574638, -0.0201642103, 0.014653665, -0.0150649, -0.0101574985, 0.00906087272, 0.00167578168, -0.0201230869, 0.0318569876, 0.0287316013, -0.0169428717, -0.0374771953, 0.00816301, 0.0253183544, -0.00929390546, 0.00724458555, 0.00058172585, 0.00804649387, 0.0118709765, 0.012645469, -0.00525695086, -0.0369014665, -0.00153698993, 0.0124809751, -0.00748447282, 0.000492625, 0.00984221883, -0.0268399213, 0.010753789, 0.0241531879, 0.00835492, -0.00660717208, -0.0184370261, 0.00239886949, 0.0178750046, -0.01143918, 0.015942201, -0.00988334231, 9.72934358e-05, -0.00841660518, 0.0142150149, 0.0239612795, 0.0161204021, 0.0296363179, -0.0167235471, -0.00713492325, 0.0209866799, 0.0212334208, -0.019972302, -0.00525695086, -0.00515071535, -0.0250716135, 0.0190812927, -0.0211648829, 0.00991761126, 0.0336390026, 0.0188208446, 0.00166635751, 0.0275253132, 0.00703211455, 0.0177379269, 0.00595262321, -0.0182725322, -0.00276726717, -0.0133856917, -0.000889295188, -0.00898547936, -0.0102123301, 0.0229469, -0.0041363365, -0.00653520599, -0.000992960646, 0.00379021373, -0.0124055818, -0.0215624087, -0.00721031614, 0.0176968034, -0.0332277678, -0.000194051405, -0.000216112428, -0.0236322917, 0.0154624274, 0.002978025, -0.00558593869, 0.0251264442, 0.0183547791, 0.00782031473, 0.0614658892, -0.00766952848, -0.00462296419, -0.0273059886, 0.0257158801, 0.000233461396, 0.0179435443, -0.00384161808, 0.0276349764, 0.00165264972, -0.00566133205, -0.0262093619, 0.0182451159, 0.0255925097, -0.0181765761, 0.0464421138, -4.84593038e-05, -0.0122410879, -0.00553453434, 0.00579155609, -0.0262504853, 0.0188756753, -0.00203903904, -0.0170251187, -0.00394442677, -0.00959547795, 0.00267473934, 0.00764896674, -0.0106441267, 0.00967087, 0.0208358951, -0.00226007774, 0.00112832536, -0.000511044869, -0.0117201908, -0.00722402381, -0.0110759232, 0.00654548686, -0.0203698277, 0.0193554498, -0.00726514729, 0.00754615804, 0.0146947885, -0.0146262497, -0.0117887296, -0.0228098221, 0.00470178435, -0.00873188488, -0.022535665, -0.00895806402, 0.0357774235, -0.0301572159, -0.00845087413, -0.000157318718, 0.0189167988, -0.010459071, -0.0130635574, -0.0520623215, 0.0167235471, -1.58229e-05, -0.00938986056, 0.00945839938, 0.00013215201, 0.00661745295, 0.0179709587, 0.0188482609, -0.00108291826, 0.00169291638, 0.018080622, 0.0158051234, -0.00676823873, 0.00934873708, 0.0192594938, 0.00951323099, 0.00415004417, 0.0163397286, 0.0155583816, -0.0195062347, -0.0134268152, -0.0174500626, -0.00806020107, 0.00523296231, -0.00435908837, 0.0198215153, -0.0143932169, 0.00537689449, 0.000979252742, -0.00205103331, -0.0112952478, -0.0159284938, -0.0313086733, -0.0206576921, 0.0142835537, -0.00221552723, 0.000715805509, -0.00103494083, -0.0114117647, 0.0105001945, -0.00206302782, -0.000889295188, 0.0128373783, 0.0114734499, 0.0154213039, -0.00331215328, 0.0117476061, -0.0313086733, 0.0199311785, -0.0255513862, -0.0011780163, -0.000226821678, -0.0326794572, 0.0324053, -0.00257193064, -0.003181929, -0.00595262321, 0.021000389, 0.00410892069, 0.00754615804, -0.00779289892, -0.0163260195, -0.0172307361, -0.0318021551, 0.0119669316, -0.0131869279, 0.0142698465, 0.00472919969, 0.00812874082, -0.0123576047, 0.0241120644, -0.0153527642, 0.00262504863, 0.00877986196, 0.023906447, 0.00149072602, -0.00391358417, -0.0108908676, -0.0103631159, 0.00307397987, 0.0162711889, -0.00823840313, -0.00153356302, 0.0217131954, 0.00149329624, -0.0155309662, -0.000865306472, -0.0101369368, -0.00438307738, 0.0125083905, 0.0244684685, -0.00298830587, -0.0143520935, -0.0269495845, 0.00355375372, -0.000738080707, -0.00997929648, -0.00277069421, -0.0013699258, -0.0101232287, -0.00169805682, -0.0422201, -0.0163123123, 0.0149552375, -0.00258563855, 0.014050521, -0.0166550074, -0.016888041, 0.0217954423, -0.0134268152, -0.0182451159, 0.00891008694, 0.00843716692, 0.00618565641, 0.00847829, -0.0112678325, -0.0106098568, -0.0211100504, 0.00409521302, 0.0307877753, 0.0116927754, 0.0177105106, 0.0110073835, -0.00445504347, 0.0187934283, -0.00790256169, -0.0239475705, 0.000352976494, -0.0217954423, -0.0184781495, 0.00391701097, -0.0124467053, -0.0110896304, 0.00495537883, 0.0138311954, -0.011487158, -0.0237967856, 0.0232621804, -0.0166687164, -2.26366537e-05, -0.00700469874, -0.00437965, -0.0171073657, -0.0384915732, -0.0116447974, -0.00723773194, 0.0108223278, -0.00141790323, -0.000634843658, 0.0109388446, -0.0130429957, 0.00316993473, -0.00106749695, 0.0120971557, 0.00364628155, 0.0339679904, 0.0197392683, -0.00462639099, 0.0197666846, 0.0124124363, 0.00786829181, -0.0152431019, 0.00250167819, -0.00515071535, -0.0123096276, -0.00792312343, 0.00755301164, 0.0115762586, 0.0104042394, 0.00832065, 0.0154350111, -0.00188653951, -0.0344340578, -0.0039033033, -0.0132143442, -0.0163123123, 0.00792312343, 0.00657632947, 0.0303491261, -0.0207810625, -0.0024468468, -0.00477717724, -0.00501706405, 0.0141327679, 0.00138106337, 0.00315279979, 0.00836177357, -0.000276298349, 0.0050958842, 0.0207262319, 0.0201505031, 0.0117887296, -0.0132417595, -0.0117338989, -0.0141464761, -0.010068398, 0.00800537, -0.00808076281, -0.00469150348, -0.0158736613, 0.0311167631, -0.012940187, 0.0203835368, -0.0152156865, -0.0108428895, 0.00388274156, -0.00559621956, -0.00723773194, -0.0222615078, -0.00734739425, -0.0138106337, -0.0373401158, -0.0118709765, -0.0113432258, -0.0104522165, 0.0248934105, 0.0254006013, 0.000409735483, -0.00199106173, 0.0190675855, -0.0130087268, -0.00519183883, 0.00284951413, 0.00975311734, -0.00552082667, -0.00908143446, -0.019451404, -0.0324053, -0.017477477, -0.00594576914, 0.0205480307, 0.0063604312, 0.0151471468, 0.0315554142, -0.00130395684, -0.00871132314, 0.0259489138, 0.0342421494, -0.00707323803, -0.00174346403, -0.0173404, 0.0244958848, -0.011699629, 0.0204520747, 0.012645469, 0.0280599184, 0.00471206522, -0.01383805, -0.0376691036, 0.00991075765, 0.0253594778, 0.0227001589, -0.0263190251, -0.0169154573, -0.0284300297, -0.0108223278, 0.00742964121, -0.00869761501, 0.0310071018, 0.00766267441, 0.0192594938, -0.00249139732, 0.0208496023, -0.0026507508, -0.0297459811, 0.00993131939, 0.00147787493, -0.0336115882, -0.0110827768, 0.00175203138, 0.0105070481, 0.00906087272, 0.0107332272, 0.0106441267, 0.00550026493, 0.0318295695, 0.0021229994, 0.00620621815, -0.0108703058, 0.0267576743, 0.02287836, -0.0297733974, -0.019972302, -0.0026524642, -0.0237145387, 0.00993131939, 0.0124192899, -0.00739537179, 0.00202875817, 0.0251812749, -0.00189682038, 0.0135090621, -0.017916128, -0.0365450643, 0.0301298, -0.0132965902, -0.0124946833, 0.0148318671, 0.0196296051, 0.0230017304, 0.00185398338, 0.0358322561, -0.0192183703, -0.0130978273, -0.00055174, -0.00251367246, -0.00497251377, -0.0325149633, -0.00217954419, -0.00417060591, -0.00352291111, 0.03599675, 0.0121245719, -0.00314765936, 0.0199174695, -0.0208496023, -0.00115231413, 0.0177242178, -0.00820413325, -0.0140025439, -0.0261956546, 0.00177344994, -0.0122410879, -0.0136804096, 0.0196844377, -0.019026462, -0.0292525, 0.00297117117, -0.01383805, 0.039944604, -0.0129813105, 0.00648722844, 0.0142835537, 0.0123507511, 0.0439472869, 0.0197666846, -0.0102191838, 0.0130292885, -0.0161478184, -0.040876735, -0.00206302782, -0.00293518812, 0.0100958133, 0.00152842258, 0.0014444621, 0.00546942232, 0.00669627264, -0.00733368658, 0.021850273, -0.0208084788, 0.0196021907, -0.00246398151, -0.0090060411, -0.00184712943, -0.0115077198, -0.0168332104, 0.0178201739, 0.00473605376, -0.00126454688, -0.00370111293, 4.85396231e-05, 0.0243450981, 0.00199791556, 0.00570245553, -0.0158325378, 0.0145577108, 0.0108154742, -0.00759413512, -0.00278954254, -0.00405408954, -0.0200819634, 0.0281558726, 0.00187111821, -0.00795739237, -0.0390398875, -0.00425970694, 0.0168606248, 0.020479491, 0.00180943299, 0.00317164813, -0.0188756753, -0.0101232287, -0.00798480865, -0.0212745443, -0.00674082292, -0.0101917684, -0.00949952286, -0.0150100691, 0.0153801804, 0.0016954866, 0.00139305776, 0.00543172564, 0.0109731145, -0.016367143, -0.0166413, 0.0020047694, -0.00369083206, -0.00166207377, -0.000110840621, 0.00799166225, 0.0248797033, -0.0159147847, 0.00316308066, -0.0103494078, -0.015599505, 0.00153870345, -0.0056167813, 0.0274019428, 0.00096982863, -0.000845173083, -0.0110416533, 0.000895292324, -0.0183684863, -0.00334642292, 0.00592863467, -0.00747761875, 0.0160107408, 0.00152242533, 0.0217954423, 0.00585324131, -0.0178201739, 0.0238790326, 0.0194102805, -0.00467436854, 0.0175048932, 0.0258118361, -0.0200134255, 0.0301572159, -0.0145577108, -0.0101232287, -0.0180943292, -0.0189716294, -0.0280462112, -0.000973255606, -0.00513358042, 0.00819042604, 0.00104350818, -0.00506161433, 0.0157914143, -0.0168469176, -0.00246912194, 0.00869761501, -0.0107400808, 0.00987648778, -0.0166413, -0.0146673732, -0.00463324506, -0.023988694, 0.0127482777, -0.0210278034, 0.0296363179, 0.0129333334, -0.0125083905, -0.00346807973, 0.0128168166, 0.0134473769, -0.0182039924, 0.00775177544, -0.00772435963, 0.0150237763, -0.0211511739, -0.010068398, 0.0200134255, -0.0130841192, 0.00696357526, 0.027854301, 0.00300715421, 0.00548655726, 0.0150237763, 0.0102877226, -0.00404723547, -0.00821784139, 0.00141276279, 0.0130567038, -0.00410206662, 0.0122205261, 0.00487313187, 0.0137695102, 0.0163808521, -0.00519526564, 0.0240709409, -0.0152705172, -0.00136821228, 0.0263327323, -0.0104316548, 0.0397252776, -0.020054549, -0.0116790673, -0.0205206145, 0.0187797211, 0.0208633095, -0.00284780073, 0.011521427, -0.0206165686, 0.0101849139, 0.0145714181, -0.00583267957, -0.0052775126, -0.0075255963, -0.0145714181, -0.0341324843, -0.00282209856, 0.00902660284, 0.0350097865, 0.0194788203, -0.00580183696, -0.0138791734, -0.00894435588, 0.0101643521, 0.0172033217, -0.0159559082, 0.0132143442, -0.00876615476, 0.00346807973, 0.0307877753, 0.0113295177, -0.00843716692, -0.00327617023, 0.0154898427, 0.002121286, 0.0111924391, -0.0165590532, 0.00272614369, -0.000575300306, -0.0259489138, -0.0184370261, 0.00361543894, 0.00313395169, 0.0313635059, -0.0180532057, -0.0132623212, -0.0217131954, -0.00445847027, -0.00376622495, -0.0142150149, -0.0122273806, -0.0296911504, 0.00932132173, -0.00761469686, -0.011144462, 0.000510616519, 0.00481144665, -0.0046538068, -0.00225322391, 0.0191909559, -0.0147770355, -0.000992960646, -0.0226590354, 0.00541801797, -0.00819042604, -0.0153801804, -0.00955435447, -0.000137935, -0.0294169933, 0.00458526751, -0.00457156, 0.00184884295, 0.00348692806, -0.0189716294, -0.0135501856, 0.00214013434, 0.00148387207, -0.00589779206, 0.0142424302, -0.0289783422, -0.0204383675, 0.018505564, -0.000142861245, 0.0333648473, 0.014914114, 0.0141601833, -0.0113980565, 0.0187385976, 0.0120217633, -0.0135433311, 0.00913626608, 0.00927334372, 0.0311441794, 0.00335841719, -0.0148866987, 0.014653665, 0.0285671074, -0.00538032129, -0.000922708, -0.00912255794, 0.00902660284, -0.00792312343, -0.0206988156, -0.00285465457, 0.00792997703, 0.00855368283, -0.00928019825, 0.0312812589, 0.00748447282, 0.0036085851, 0.00912255794, -0.00401639286, -0.0173266921, -0.00308768777, -0.0193143263, -0.00710065337, -0.0142424302, 0.0157777071, 0.003941, 0.00825211126, -0.00251024542, -0.00214527478, -0.0042391452, -0.000865306472, 0.0329261981, -0.0337486677, 0.0152293937, 0.00133908319, -0.0109525528, -0.00851941388, -0.0127825476, 0.0213705, -0.00405751634, 0.0263875648, -0.0164905135, 0.034022823, 0.0100889597, -0.0225082487, 0.00307397987, -0.0249619503, 0.00314937299, -0.0158051234, -0.0110005299, -0.0140916444, 0.0152293937, 0.00516785029, -0.0170251187, 0.0159147847, -0.0044447626, 0.0062336335, 0.00988334231, 0.00772435963, -0.0117613142, -0.00267645298, 0.0131595125, 0.00702526048, -0.0175460167, 0.0338034965, 0.0114665963, 0.00276555377, -0.00699784467, -0.0192732029, 0.00819728, -0.00159439142, -0.00847143587, -0.0034783606, -0.0137352413, -0.0174226463, -0.0110348, 0.0123507511, -0.0205343217, -0.00891694054, -0.0356677622, 0.0112678325, 0.00674425, 0.00676138466, -0.0142972618, 0.00809447095, 0.00555509608, 0.0150786079, -0.0115351351, 0.000681107573, -0.00596633088, -0.0272374488, -0.0216994882, 0.000328773633, -0.000288078532, -0.0124467053, 0.0325697921, 0.010068398, 0.00626447611, -1.09234234e-05, 0.0343243964, -0.0233307183, 0.0112952478, -0.0109525528, -0.0161615256, -0.00416032504, -0.00650436338, 0.00241771759, -0.00953379273, -0.0129196253, -0.0129538951, 0.0239338633, -0.0123713128, 0.00703896815, 0.0242902674, -0.0168606248, 0.00510273781, 0.000374823343, 0.0125563685, -0.0176145565, 0.00510273781, -0.0157914143, 0.010753789, 0.0229194835, 0.0049656597, -0.00359830423, -0.0202738736, -0.00757357338, 0.00807390921, 0.0268673375, -0.0205480307, -0.0038004946, -0.0217269026, -0.000807048229, -0.0171073657, 0.0038004946, -0.00786829181, 0.0467162691, 0.0086839078, -0.0155172581, 0.0195610672, -0.00544200651, -0.000796339, -0.0026541776, 0.0205480307, 0.00847829, 0.0140779363, -0.0132417595, 0.0241257735, -0.0165316369, 0.0154624274, -0.00162266381, -0.0137283867, 0.00895121, -0.00743649527, -0.0089923339, 0.0174637698, 0.0146262497, 0.0036085851, -0.0043351, -0.0152431019, 0.00314251892, -0.00121057231, -0.0116173821, -0.00600745436, -0.00231490913, -0.0101163751, -0.0104453629, -0.0183821935, 0.0182314087, -0.00440706592, -0.0109525528, -0.00563048944, 0.00606913958, 0.00223094854, 0.00236459984, 0.00425627967, 0.0065729022, -0.0178064648, -0.00150272041, 0.00984221883, 0.0227001589, 0.00565447798, 0.0176419709, 0.00395470764, -0.0235911682, 0.0141327679, 0.0229331926, -0.000922708, 0.0294718239, 0.0167372543, -0.0337760821, -0.0244821757, 0.00835492, 0.0104179475, 0.0181902852, -0.0358596705, -0.00689160917, 0.00464695273, -0.0184096098, 0.0196570214, 0.000223823081, 0.00401639286, -0.010931991, -0.0054111639, 0.0133171519, 0.0219188128, 0.01860152, -0.00519183883, -0.001060643, 0.00988334231, -0.00775862904, -0.0178750046, 0.00172375899, -0.00758042745, 0.00123456097, -0.000786058139, 0.0245644227, 0.0161341112, 0.0185329802, 0.0175597239, -0.00919795129, -0.014050521, -0.0287041869, 0.00120457518, 0.0135296239, -0.0131458044, -0.0169977043, 0.00759413512, 0.00342866988, -0.00744334934, 0.00477717724, 0.0290331747, -0.00875244662, -0.0102534536, 0.00494852476, 0.0301846322, 0.00670312671, 0.0219873525, 0.0108428895, 0.0149415294, -0.00341496198, -0.0197529756, -0.013707825, 0.0105755869, 0.0101574985, -0.014228723, -0.0127962548, -0.0203012899, -0.00853312109, 0.0128373783, -0.00722402381, 0.033940576, 0.000261519599, 0.0155583816, 1.0167083e-05, 0.0408493206, 0.00755301164, -0.000674253679, 0.0168743338, 0.0223848782, 0.00430768402, 0.0240572337, 0.00130652706, 0.0217131954, -0.0128785018, -0.000908143411, -0.00516785029, 0.0089923339, 0.00558251189, 0.00395128084, -0.00940356869, 0.00548655726, 0.0172170289, 0.00583267957, -0.00229606079, -0.00492453622, -0.00691902498, 0.0236185826, -6.43223666e-06, -0.0145028792, -0.014228723, 0.0216172412, 0.0209455565, 0.00958177, 0.0133514218, 0.0463050343, 0.00943783764, -0.0198078081, -0.00458526751, -0.0252772309, 0.00186769117, 0.0106921038, 0.0161889419, -0.0135090621, -0.00155669497, 0.0186289344, 0.0221244302, 0.00642211642, -0.0088963788, 0.0156817529, -0.0101849139, 0.0088895252, 0.0129538951, -0.00290434551, -0.014735912, -0.00469835708, 0.0093144672, 0.0145440027, -0.00340125407, -0.0279913787, 0.0105550252, 0.0239749867, -0.0247974563, 0.00268330681, 0.00631245365, 0.025455432, 0.0360515825, 0.00361543894, -0.00321962545, 0.00370453973, 0.0179298352, -0.0201093797, 0.0094172759, 0.0139477123, -0.00356746162, -0.0155720897, 0.00395813445, 0.0144480476, -0.00103151391, 0.0052775126, 0.0182588231, 0.0138174882, -0.00497251377, -0.00504448, -0.00938986056, -0.00508560333, 0.0015763999, -0.00595262321, 0.0158051234, 0.00169805682, -0.0176145565, 0.00799851585, -0.00783402193, -0.00747076469, -0.00794368517, -0.00741593353, -0.0266205966, -0.00187968556, -0.0215761177, 0.00674082292, -0.0088004237, 0.00803963933, 0.00921851303, -0.0179572515, 0.0144891711, 0.0161615256, -0.0346808, 0.00276555377, -0.00331215328, 0.016367143, 0.0135776009, -0.0197666846, 0.00295746326, -0.00728570903, 0.0182314087, 0.0185741037, -0.00641526235, -0.000588151393, 0.00843716692, 0.0180257913, 0.0160107408, -0.00464352593, -0.0133445682, -0.0160792787, 0.0182039924, 0.00499650231, -0.0077312137, 0.0143658007, 0.000293861522, -0.0163397286, -0.00237830775, 0.0179024208, 0.00840975065, 0.00999300461, -0.0121999644, -0.00504448, 0.0135227693, -0.00143675145, -0.00312709762, 0.0181080382, -0.000208187601, -0.0392866284, 0.0101437904, -0.0112541243, 0.00808761735, -0.00108891539, -0.0135433311, -0.00129538949, 0.0233033039, 0.0359693356, -0.0165590532, -0.00220524636, 0.0169839952, 0.00364285451, -0.000189018057, -0.0148455752, -0.0150511926, -0.0169839952, 0.0025479421, -0.0034920685, 0.00746391108, -0.0123233348, 0.0116653591, 0.0181765761, 0.00309625501, -0.0170388278, -0.0112609789, -0.00416375184, -0.0132691748, 0.0155857978, 0.00191909552, 0.0204520747, 0.0293621626, -0.0100341281, -0.00157725671, 0.00471206522, -0.00500678318, 0.00996558927, -0.011144462, -0.00880727824, -0.0186426435, 0.00856053736, -0.0450439155, 0.00618908321, 0.0131046809, 0.016463099, 0.00373538234, 0.0115488432, 0.0104453629, -0.00422201026, -0.01644939, -0.0232621804, 0.00883469358, -0.000392172311, 0.0227824058, 0.0125769302, 0.0190401692, 0.00297973864, -0.013022434, -0.0151197314, 0.00583953364, -0.00999300461, 0.0254417248, -0.0164768063, 0.000182699616, 0.00237830775, 0.0276898071, -0.0284300297, -0.0106167104, -0.0217543188, 0.0157091673, 0.0193143263, 0.0271689091, 0.00784773, -0.00700469874, -0.0240709409, -0.0156954601, 0.013968274, -0.0022240947, -0.00907458086, -0.0248248726, 0.00381077547, -0.0297185648, 0.0227001589, 0.0128922099, 0.0209592655, 4.06147883e-05, 0.0158736613, -0.00498279463, 0.00633301539, 0.0053015016, 0.0156954601, -0.00224808347, 0.000463924225, 3.70271919e-05, -0.0010006713, 0.0248248726, -0.00637756567, 0.0122890659, -0.00734739425, -0.0243039746, -0.00777233718, -0.00656262133, 0.020822186, -0.00888267066, -0.00181114639, -0.00359830423, 0.01765568, 0.00815615617, -0.0189853385, -0.00156097859, -0.00411920156, 0.00683677802, 0.00513700768, 0.0315554142, -0.00988334231, -0.0356129296, -0.00560307363, 0.00386903365, -0.0132211978, -0.0122410879, 0.0149689456, -0.00182142726, 0.0195610672, -0.00506161433, 0.0429054946, -0.0126728844, 0.00587380305, 0.00809447095, 0.0262230709, -0.0253320616, -0.0279502552, 0.00719660847, 0.0166413, 0.0111787319, 0.0270729549, 0.0118298531, -0.000497765432, 0.00633301539, -0.00783402193, 0.0133171519, 0.00649065524, -0.0105276098, -1.80986135e-05, -0.015599505, 0.0290880054, 0.000691388443, -0.0058155451, 0.00601773523, -0.0111855855, -0.00235260557, -0.00658318307, 0.0140779363, 0.0122205261, -0.00805334747, 0.0101369368, -0.018423317, -0.000998101081, 0.0218228586, 0.00906087272, 0.0113912029, 0.0236459989, -0.0296363179, 0.0131869279, 0.0159010775, -0.0100067127, 0.000329416187, 0.00880727824, -0.0314731672, 0.0212471299, -0.00736795599, -0.0319118164, 0.00628161104, -0.0126043456, -0.0155446744, 0.0196570214, -0.0129744569, 0.019972302, -0.00045878379, 0.0204109512, 0.0129196253, 0.0294169933, 0.00810132455, 1.70812364e-05, -0.0191909559, 0.00792312343, 0.000216540808, 0.0274841897, -0.00681278901, -0.00230291463, -0.00589779206, 0.00849885214, 0.0234403815, 0.0017537449, -0.0291428361, -0.0239338633, 0.0236459989, -0.00705953, 0.00559964683, 0.00150700402, -0.00493481709, 0.00352291111, -0.0087867165, 0.00452015549, -0.000368397799, 0.0164905135, 0.00153356302, -0.000472491607, -0.0226179119, 0.0125632221, 0.00632273452, -0.00538374856, -0.0256884657, 0.00718290033, -0.00274327863, -0.00925278198, 0.00627818424, 0.00113260909, -0.00799851585, 0.0186152272, 0.012432998, -0.0161478184, -0.0191087089, -0.000218789748, 0.00505476072, 0.0180120822, -0.00753930397, 0.00871817674, 0.0132760284, 0.00673739612, 0.0199448857, 0.0111855855, -0.00272785733, 0.0065694754, -0.0173815228, 0.0119874934, 0.0167783778, -0.0221792608, 0.0086702, -0.00751874223, -0.00508903, -0.0156269204, -0.00750503456, 0.00497251377, 0.000843888, -0.00840289705, 0.013413107, 0.0106098568, -0.000726086379, -0.01739523, 0.0120560322, -0.0072925631, 0.00105550257, 0.0201505031, -0.0158736613, 0.00650436338, 0.000765068, 0.00139734149, 0.00189339335, -0.0144754639, -0.0140916444, -0.0142150149, 0.00556537695, -0.0277583469, -0.00794368517, 0.000876444101, 0.015174563, -0.0183684863, 0.0415347107, -0.00311339, 0.0155309662, 0.000511901628, -0.00655919453, 0.00308597414, -0.00539745623, -0.0138517572, -0.00601430843, 0.00473948056, -0.00840289705, -0.00230805506, 0.00199106173, 0.000466922793, -0.0141327679, 0.00619936408, 0.0195336509, 0.00906087272, -0.0320763104, -0.00470863795, -0.0317747407, -9.95959199e-05, 0.00708009163, 0.00231490913, 0.00115060061, 0.00412605563, 0.00504448, 0.0181217454, -0.00584638771, 0.0323230512, 0.00750503456, -0.00466066087, 0.0105207562, 0.0101574985, -0.0264972262, -0.00445504347, -0.0155309662, -0.00747761875, -0.00947896112, 0.0118298531, 0.00168948947, 0.0089991875, -0.0187660139, -0.00162694755, 0.0336664207, -0.00187968556, -0.00640498148, -0.00220696, -0.00158068363, -0.00733368658, -0.0116927754, 0.00358459633, 0.00428369548, 0.00334984972, -0.00981480256, 0.0307055283, -0.0131800743, -0.0199174695, -0.00143075432, 0.00109234231, 0.00423571793, 0.0110073835, 0.0310345162, -0.0200956725, 0.0101095214, -0.0161341112, -0.00604515104, 0.0089991875, 0.024852287, -0.0107606426, -0.0319392346, -0.0345711373, 0.0161615256, -0.0037113938, 0.0229880232, -0.0129470415, 0.0367918052, -0.0111101922, -0.0182039924, 0.000109555513, -0.0147770355, 0.031884402, 0.0013699258, -0.00100838195, 0.00137335272, 0.00782716833, 0.00792312343, -0.009938173, 0.00234746514, -0.00210243766, 0.0122342343, -0.00212471304, 0.00170319725, -0.00565447798, -0.00303799682, 0.00178373081, 0.0003165651, -0.0333374329, -0.0311441794, 0.00783402193, 0.00344580458, 0.00550369173, -0.0223437548, -0.0181765761, 0.00198592129, -0.0188893843, -0.00735424832, -0.0208633095, -0.0231251, -0.0197392683, 0.00240058289, -0.00622335263, 0.000144039266, 0.0102328919, -0.0192869101, -0.00226350478, -0.0120012015, -0.00369425886, 0.0137146795, 0.00611026306, 0.00443105446, -0.00535975955, 0.00245370064, 0.0133925453, -0.00682992395, -0.00421515619, -0.0295540709, -0.0180669148, 0.0178475883, 0.0244136378, -0.00715548499, 0.0145577108, -0.00781346, -0.00375594408, -0.00305513153, -0.000920137798, -0.00734739425, 0.0204383675, 0.00440363912, 0.0135707473, 0.00140248192, 0.00967772491, -0.00314937299, -0.00226350478, -0.00747761875, -0.00616852148, 0.00320934458, 0.0046538068, 0.0250716135, -0.0150923161, 0.000980966259, -0.0116790673, 0.0107812043, 0.00293004769, 0.00943783764, 0.00556537695, 0.0105961487, -0.000237316723, -0.0283751991, 0.0224945415, -0.00205446035, 0.015339057, 0.00226864521, -0.000406522711, 0.0253594778, -0.0141738914, 0.00944469217, 0.00980109535, -0.00995873474, -0.020054549, 0.00830008835, 0.00526037812, 0.00713492325, 0.00209901086, -0.00127311423, 0.00289235124, 0.00303456979, -0.00830694195, -0.00543857971, -0.00413290923, -0.0135296239, 0.0179709587, 0.00363600068, -0.00680936221, 0.0181217454, 0.0101506449, -0.00710065337, -9.65437866e-05, -0.0123027731, 0.0114528881, 0.0193143263, 0.020822186, -0.0107606426, 0.0107469354, -0.00193108991, 0.0134816458, 0.0434812233, 0.00508560333, 0.00401639286, 0.0118229995, -0.0137489485, 0.0233444273, 0.00300201378, 0.00462639099, -0.0106098568, 0.0052021197, -0.00110690692, -0.00384161808, -0.00194308429, 0.000687961467, -0.00715548499, 0.00529807433, 0.0161066949, 0.0125015369, -0.000153677567, -0.00363257364, 0.00782716833, -0.00126968732, -0.0171484891, -0.00328131067, -0.00694644032, 0.0219599362, 0.0152979335, -0.000684962899, -0.0195336509, -0.00085759582, 0.00613425206, 0.0114665963, -0.000366041786, -0.00324361422, 0.00430425722, -0.00819042604, -0.0301846322, -0.00748447282, 0.0109251365, 0.00124312844, -0.0113226641, 0.00267131254, -0.0325972103, -0.0110553615, -0.0289235115, 0.0026353295, -0.00563048944, -0.0152979335, -0.00685048569, -0.016627593, 0.0237145387, -0.0214801617, 0.00563048944, -0.0265794732, 0.0158462469, 0.0197529756, -0.016545346, 0.00996558927, -0.00219839253, 0.0073199789, -0.00884840172, -0.00428369548, -0.00658318307, 0.00196535955, -0.00382448337, 0.0129333334, 0.0249208268, -0.00713492325, -0.0305684507, -0.00485599693, -0.0176145565, -0.0192869101, 0.00923222, -0.00999300461, 0.00604515104, 0.00315794023, 0.0159559082, -0.0198626388, -0.022974316, 0.0394511223, -0.0109799681, 0.0208496023, 0.0216720719, -0.0215487015, -0.0323504694, -0.00687104743, -0.025962621, -0.0158873703, 0.00577442162, -0.00182656769, -0.00619593728, 0.0206714012, 0.00786143821, 0.00545571465, -0.00751874223, -0.0243588053, -0.00402324693, -0.0050684684, 0.0208907258, -0.0206028614, 0.0140231056, -0.0212471299, 0.00684363162, -0.00172975624, -0.00431453809, -0.0096297469, 0.0132074896, -0.00542487204, 0.0161204021, -0.00100409822, -0.0093076136, 0.0117613142, 0.00294718239, 0.014735912, 0.00797110051, -0.0117544606, 0.00650436338, 0.00220353296, 0.00560650043, 0.007882, 0.0152156865, -0.0041363365, -8.92615062e-05, 0.0361612439, -0.0127071543, 0.0073199789, 0.0032830243, -0.0261134077, 0.0125015369, -0.00897862576, 0.00347493379, -0.0122959195, -0.0246192552, 0.0236459989, -0.0156406295, 0.00504790666, -0.00183342164, -0.00600745436, 0.031966649, -0.00801907759, 0.0182999466, 0.00377993286, 0.00742964121, -0.0108771594, 0.0154761346, -0.00166892773, -0.000280582055, -0.00522610825, -0.0203424133, 0.00291462638, -0.011487158, -0.00728570903, 0.0145302946, -0.0193965733, 0.0102328919, -0.000408878725, 0.0122890659, -0.00616509467, -0.0219873525, -0.0103631159, 0.0141053526, 0.0042459988, 0.014735912, -0.0122959195, 0.00389644946, 0.0169977043, -0.00689846324, 0.0219736435, -0.0157914143, -0.0103973858, 0.0253731851, 0.00568189379, -0.0153527642, -0.00844402052, -0.00989019591, -0.00142218685, -0.0212745443, 0.00337041146, 0.00240058289, -0.0119737852, 0.010068398, 0.00510959188, -0.0275664367, -0.00254622847, 0.016970288, 0.00463324506, -0.0139065888, 0.0237145387, -0.0167783778, -0.00226521818, -0.0284300297, 0.0102397455, -0.00621307176, 0.000928705151, -0.0247426257, -0.0118161459, -0.0139271505, -0.0050684684, 0.00949952286, -0.0197803918, -0.0177242178, 0.0211511739, -0.000157747083, -0.00568189379, 0.0108291823, -0.0344888903, -0.00912255794, -0.00358802336, -0.00704582222, -0.00475318823, 0.00829323474, -0.0232895948, 0.0045475713, -0.0331181064, 0.0172718596, -0.00552082667, -0.00583267957, -0.0243999287, -0.0111787319, -0.00567161292, -0.0285122767, -0.0106098568, -0.0147770355, 0.0164356828, 0.0106783956, 0.0219873525, -0.00953379273, -0.0055105458, 0.00111718778, -0.00539060216, -0.0123438966, 0.015339057, 0.00718290033, -0.0215761177, 0.01002042, -0.00914997328, 0.00138706062, -0.00290434551, -0.0300475527, 0.0105687333, -0.011487158, -0.0220970139, -0.0117681678, -0.0307877753, -0.00220524636, 0.0141875995, -0.016463099, -0.00533577101, 0.00970514, 0.0194102805, -0.00334299589, -0.00788885355, -0.0201505031, -0.00943783764, 0.0187385976, -0.00739537179, -0.00412605563, -0.0137009714, 0.0194651112, 0.00468122261, -0.00193794386, -0.00207330869, 0.0120903021, 0.0101437904, -0.0093076136, 0.0213430841, -0.001017806, 0.0216720719, -0.00241943123, -0.0259352066, 0.0197392683, -0.00806705561, -0.0211374667, -0.02741565, 0.00137163932, 0.00723773194, 0.0184781495, 0.0322682224, 0.0177516341, -0.0312812589, -0.00437622331, 0.034872707, 0.000183663447, -0.0192183703, -0.0227824058, -0.000204760639, 0.0103288461, 0.0170662422, 0.00233375723, -0.0162026491, -0.0123781664, -0.00172632921, -0.00332072075, -0.0129676033, -0.00675795786, -0.0148455752, -0.0100546898, -0.00374909025, 0.0160381552, -0.00947896112, 0.0023440381, -0.000104254439, -0.0051747039, 0.00782716833, -0.0015763999, 0.00901289564, 0.00118487014, -0.0177516341, -0.0199860092, -0.0226590354, -0.0443311073, 0.0116585055, -0.00907458086, 0.0206165686, -0.01860152, 0.000372253126, -0.0130841192, 0.00789570715, 0.0144069241, 0.0139477123, -0.0101849139, 0.0221792608, 0.0154213039, -0.0180943292, -0.0178475883, -0.0389576405, 0.00204246608, -0.00221381383, -0.00337041146, 0.0166550074, 0.0160655715, 0.0189853385, -0.0125426603, 0.0141327679, 0.00804649387, 0.0150923161, 0.00839604344, -0.0308426078, 0.00838233531, 0.0259900372, -0.00925278198, 0.0024468468, -0.0265520569, 0.0228235293, 0.0160107408, -0.0129196253, -0.00231833593, -0.0118846847, 0.00828638, -0.0219599362, -0.00854682922, 0.00668599177, -0.0104522165, -0.00531863607, -0.0127551313, -0.0160655715, -0.0233718418, 0.00242457166, -0.00416717911, -0.00514386129, -0.00973941, 0.0013108108, -0.00975997187, 0.0100409817, -0.00264218333, -0.00710065337, 0.00617537554, 0.016627593, -0.0157365836, 0.00475318823, -0.0147084966, 0.00433167303, 0.021082636, -0.0177927576, -0.0189579222, -0.00932132173, 0.0147222048, 0.0178338811, -0.0119189546, 0.00162866106, -0.00991761126, 0.0209318493, 0.00397184258, 0.0133651299, 0.00100324152, 0.00328131067, 0.0118367076, 0.0100615434, 0.0111170467, 0.0166550074, 0.0233855508, -0.010411093, -0.00671683438, 0.0102191838, 0.00901289564, 0.0119806398, -0.00616166741, 0.0145440027, 0.0156954601, 0.0107126655, 0.010459071, -0.00771065196, -0.0111787319, 0.0182314087, 0.0113500794, -0.00635357713, -0.00904716458, -0.00170319725, 0.0226042047, 0.00965030864, -0.0330358595, 0.0023406113, -0.0108771594, 0.00903345738, -0.0257158801, 0.00391701097, -0.00725829368, -0.00929390546, 0.00136821228, -0.0288686808, -0.0108086206, -0.0100135664, 0.0101163751, 0.00263190246, -0.00457156, 0.0124467053, 0.0142972618, -0.003267603, 0.00449273968, -0.00635015033, 0.0228920691, -0.00490397448, -0.00556537695, 0.0165727604, 0.00740907947, -0.000820756075, -0.00468122261, 0.00631588046, 0.0189305078, -0.00565105118, 0.0077312137, 0.00577784842, 0.0244958848, 0.0314183347, 0.00411920156, 0.00606571278, -0.0115488432, 0.00491425535, 0.00887581706, 0.00563048944, -0.00946525391, 0.001001528, 0.00811503269, -0.016545346, 0.00579498336, -0.00689846324, 0.000378464494, 0.00364970858, 0.00925278198, -0.0205617379, -0.0107812043, 0.00315622683, 0.0256884657, 0.0109388446, -0.00728570903, -0.00426313374, -0.00622335263, 0.000207759222, -0.0376691036, -0.0083754817, 0.0223848782, -0.00245884107, -0.00396841532, -0.00721717, 0.0167646706, -0.0136461398, 0.0209866799, 0.0324053, -0.0112541243, -0.0198900551, 0.0167920869, -0.00938986056, -0.0150786079, -0.0158188306, -0.00898547936]
30 Sep, 2024
C++ Program to Implement Suffix Array 30 Sep, 2024 A suffix array is a data structure which can be used to store all possible suffixes of a given string in the sorted order. It stores the starting indices of the suffixes in lexicographical order. It is similar to trie data structure but is more space efficient then tries.ExampleLet the given string be "banana".0 banana 5 a1 anana Sort the Suffixes 3 ana2 nana ----------------> 1 anana 3 ana alphabetically 0 banana 4 na 4 na 5 a 2 nanaSo the suffix array for "banana" is {5, 3, 1, 0, 4, 2}In this article, we will learn how to implement a suffix array for a given string in C++.How to Create Suffix Array?Following are the steps involved in creating the suffix array:Create the vector of string where we will store all the suffixes and also create the vector of integer where we will store staring position of all suffixes.Now generate all the suffixes simply using the loop and store all the suffixes in the vector of string.Sort all the suffixes alphabetically.Now according to the alphabetically sorted suffixes we have to create suffix array using the staring position of all the suffixes.Code ImplementationBelow is the program for creating the suffix array: C++ // C++ Program to illustrate how to create the // suffix array #include <bits/stdc++.h> using namespace std; vector<int> buildSufArr(string &s) { int n = s.length(); vector<int> sufArr(n); vector<string> suf(n); // Generating all the suffixes for (int i = 0; i < n; i++) suf[i] = s.substr(i); // Sort all suffixes alphabetically sort(suf.begin(), suf.end()); // Create the suffix array using the // starting position of all the suffixes // by subtracting it from the length of // the original string for (int i = 0; i < n; i++) sufArr[i] = n - suf[i].length(); return sufArr; } int main() { string s = "banana"; vector<int> sufArr = buildSufArr(s); for (int i : sufArr) cout << i << " "; return 0; } Output5 3 1 0 4 2 Time Complexity: O(k * n log n), where n is the length of string and k is the maximum length of suffixes.Auxiliary Space: O(n), where n is the length of the string. Applications of Suffix ArraysSuffix Arrays can be used in various problems some of which are given below:Pattern Matching: It Quickly finds a substring within a larger string.Data Compression: It helps in algorithms that reduce the size of data.Bioinformatics: This algorithm is used in analysing DNA sequences.AdvantagesAfter it is built it allows for quick substring searches.It uses less space compared to other structures like suffix trees. Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array
https://www.geeksforgeeks.org/cpp-program-to-implement-suffix-array?ref=asr10
PHP
C++ Program to Implement Suffix Array
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[0.0173044968, 0.0334976949, -0.00801060628, 0.0134083387, 0.0447165146, -0.0209955927, -0.00719697727, 0.0200430527, -0.0309575852, 0.00192327308, -0.0315396935, -0.0239987448, 0.0218422972, -0.0284174755, -0.00294692395, -0.0237606093, -0.0132760415, 0.0259302855, -0.0233901758, -0.00435258355, -0.0241971891, 0.00522905355, -0.0421234854, 0.00709113944, -0.00388623541, 0.0180189032, -0.00730281509, -0.00223086448, -0.0451663248, -0.0124690281, 0.035667371, -0.00427651266, -0.00711759878, -0.0373343192, -0.0183761064, 0.00707790954, 0.0201885793, 0.0295816939, -0.0152671169, -0.0188920647, -0.00391269475, 0.00481893169, -0.00416075252, -0.00154705241, 0.0113577293, -0.0129056089, -0.00732927443, -0.0141029, -0.00281628035, -0.00454772217, 0.0189317539, 0.034265019, 0.00215810095, -0.0327303708, 0.0168679152, 0.0314073972, -0.0132429674, 0.0114040338, 0.0121713588, 0.00209691352, 0.00764678838, -0.0160476714, 0.0105639454, 0.00257649133, 0.0504053, -0.0438698083, -0.0382604, 0.0168679152, 0.015333266, 0.0383397788, -0.0229139049, 0.0158889145, -0.00251365, 0.00467340462, -0.0378635079, -0.0140367514, 0.021868756, -0.0145130223, -0.0146056302, 0.0801192895, -0.0234034061, -0.00988261402, -0.0166033208, -0.0060856794, -0.000236688269, 0.011986142, -0.0145659409, -0.0393717, 0.05852836, 0.0100612156, -0.0256392322, -0.0146056302, 0.0149628334, -0.0283116382, -0.0131768184, 0.0316719934, 0.0346089937, 0.0090756, -0.0172383487, 0.0423087, 0.0245808531, -0.01058379, -0.0112122027, -0.0278089084, -0.0475741364, -0.00270878873, 0.0166165512, 0.0184951723, 0.0090756, 0.00936004, -0.000219530964, -0.0271738805, 0.00706468, 0.0290525034, 0.0110071413, -0.03270391, 0.0119993724, -0.074139446, 0.0145130223, 0.0178469159, 0.00801060628, 0.044213783, -0.0123168854, 0.0228345264, -0.068477124, 0.0341856405, 0.00871839747, 0.0033487773, 0.0204134844, -0.0240119733, -0.0178469159, -0.0107623916, 0.0147379274, 0.0363553204, 0.0172912665, 0.0319895037, 0.00255664671, 0.0556707345, -0.00600960851, 0.00980323553, -0.0474418402, 0.00576816546, 0.0168414563, -0.0287085306, 0.0150289815, -0.00849349145, -0.00375063065, 0.0295287743, -0.0241575018, -0.0208765268, -0.0234034061, -0.00823551137, 0.0239193663, -0.0155581711, 0.0285497736, -0.0188391469, -0.00228212983, -0.02116758, 0.0485002175, -0.0245411638, 0.0252555683, -0.0135141769, -0.010041371, -0.0109872967, -0.0251100417, -0.0142087378, -0.0186539292, -0.0298198294, -0.0241575018, 0.0126211699, 0.0193683356, 0.0502994619, 0.0144204143, 0.00855302531, -0.0421499424, -0.0544006824, 0.0231520403, 0.04437254, -0.00442534732, -0.00364148524, -0.051199086, 0.0204002559, 0.00445511425, -0.00784523413, 0.0416472144, 0.00675378088, 0.0459601097, -0.00553333759, 0.0504053, -0.0180982817, 0.00352903246, -0.0223979466, 0.0114701828, 0.0444519185, 0.0243030284, 0.0036150259, -0.061491821, 0.0187068488, 0.00154209125, 0.0163651854, -0.0200430527, -0.0238267574, -0.0153464954, 0.000644536281, 0.0306929909, 0.0173309557, -0.0343443975, -0.016510712, 0.032518696, 0.00200926629, -0.00200430513, 0.06101555, -0.0413297, -0.0196990799, 0.038789589, 0.00263106404, -0.0491352454, 0.00130974397, -0.0171986595, -0.000752854743, -0.0201092, -0.0157301575, 0.0193286464, -0.0295287743, 0.00444519194, -0.0524691381, 0.00487185083, 0.0459865667, 0.0423880778, -0.0176220108, 0.0232181903, -0.0180982817, -0.0252026506, 0.013262812, 0.0217761472, -0.0422822423, 0.0143807251, -0.017913064, -0.00953202602, 0.0378105901, 0.00273028715, 0.0202414989, -0.0248851366, 0.00231024297, 0.0324128568, 0.0161667392, 0.0148305362, -0.0221068915, 0.0315396935, 0.024038434, 0.0198181476, 0.00995537732, 0.0331008025, 0.0169869829, -0.019923985, 0.00270217401, 0.00226393878, -0.0275707729, 0.0253084879, 0.00875808671, -0.0110005271, -0.0205060933, 0.00912851933, 0.0452457033, -0.00562263839, -0.0214586351, 0.0309046675, -0.00995537732, -0.00338019803, -0.0446371362, 0.0119596832, 0.00312552555, 0.045616135, -0.0048420839, 0.0336299911, -0.0394510776, 0.0144997928, 0.0136001706, 0.0366728343, -0.0181644298, 0.0217893776, 0.0239061359, 0.0123830345, -0.00280139688, 0.00370432646, -0.0264462456, -0.0249777455, 0.0158227663, -0.040191941, -0.00358856632, -0.00208037626, -0.0131702041, -0.00556310453, -0.00343311694, 0.0185745507, -0.00860594399, -0.00602945313, -0.0390277244, -0.0439227298, 0.0190243628, 0.00100463314, -0.025149731, 0.00322474865, -0.0147246979, -0.0418324284, -0.0164577942, -0.0225831624, 0.00660825381, -0.0202547275, -0.0120853651, 0.0266579203, -0.0385514535, 0.000222218252, 0.0202018097, -0.0162064284, 0.00828843098, 0.0551944636, -0.0080304509, -0.0234034061, -0.00887715351, -0.0212734174, -0.0223582573, -0.00267736823, 0.0286820717, 0.0251894202, 0.00587069616, -0.0289731249, 0.0273590982, 0.00888376869, -0.000442369346, -0.041409079, 0.0188391469, -0.054189004, 0.00705145, -0.000653218303, -0.0265653133, -0.0178998355, 0.0618093349, -0.00346619124, 0.0191302, 0.00768647762, -0.00637673354, -0.0106565533, 0.0122904265, 0.0222788788, 0.0107293176, -0.0181247406, 0.0060592196, -0.00516952, 0.00528528029, 0.000847530086, -0.0030296098, 0.0582637638, -0.00793784298, 0.0187200792, -0.0243427176, -0.016418105, -0.0271738805, -0.0269886646, 0.0427055918, 0.0365669951, 0.0210485123, -0.0231520403, -0.0326245315, 0.00517282728, -0.0405888334, -0.0138118463, -0.0105044115, 0.028655611, -0.0142748868, -0.0140367514, 0.00565240532, 0.0303754769, -0.0312221814, -0.0180453621, -0.0176484697, 0.0187333077, -0.00756079517, 0.0575229, 0.00559948664, -0.0345296152, 0.0587400347, -0.017053131, -0.00990907382, -0.0253217183, -0.019222809, -0.00344634661, 0.0126410145, -0.016894374, 0.0394246168, -0.0387366712, 0.0141955083, -0.00480570225, -0.044055026, 0.0114172632, -0.00500084087, -0.0215115529, 0.000721434131, 0.0253217183, -0.0205590129, 0.0160212126, -0.0234695543, 0.0379428864, -0.0134744877, -0.00183727976, 0.0191302, 0.00204399438, -0.0532364659, 0.00929389056, 0.0266843811, 0.0331008025, 0.0352440216, -0.0265653133, 0.0122507373, 0.0289731249, 0.0103721144, -0.0218290668, 0.0151877385, -0.00230528181, 0.0229271352, -0.048235625, -0.025599543, -0.0219481345, 0.0280999634, 0.0129783722, -0.0211543497, 0.0020754151, 0.0222127289, -0.0302696396, -0.0375724547, -0.0393452384, 0.0434464589, 0.0207971483, 0.0223979466, -0.0418588892, -0.0418324284, -0.001075743, -0.0288408287, -0.0205060933, -0.018521633, -0.0472037047, 0.0293964762, 0.0100149112, -0.0166165512, 0.00205887784, 0.0082818158, -0.0279147457, 0.0298992079, -0.00577808777, 0.0065255682, -0.0140102925, 0.0317778289, -0.00515629025, 0.0141029, 0.0633439869, -0.032862667, 0.0136001706, 0.004478266, 0.0231785011, -0.0254937038, 0.0151215903, -0.0162858069, 0.00468663452, -0.0224508643, 0.0293700173, 0.0402448624, 0.0315926149, -0.0152274277, -0.0128394607, -0.0196593907, -0.023972284, -0.0257053804, -0.00145444425, 0.00826197118, -0.00426328275, -0.0241839606, 0.0269622058, -0.0228477567, 0.00379362726, -0.035667371, 0.0137853865, -0.00161485479, -0.016960524, -0.0141955083, -0.0181776602, -0.027094502, -0.0391864814, -0.00967093837, 0.0067868554, 0.017820457, -0.0386572927, 0.00436912104, -0.00479908753, -0.00909544434, 0.00220275135, 0.0139044542, -0.0465951376, -0.0095651, -0.0145659409, 0.0462247021, -0.0162461177, 0.0109476075, -0.0286026932, 0.00189681363, -0.0110666752, -0.0544536, -0.0396627523, 0.0291583408, 0.00999506656, -0.00370432646, 0.00650241598, -0.00942618772, -0.00540104043, -0.00848026201, -0.0448752716, -0.000833473459, -0.0318042897, 0.0103125805, -0.00117331231, -0.0139706032, 0.00680008531, 0.00943941809, -0.0256656911, 0.0541096255, -0.0260228943, -0.00865224842, 0.0349265076, -0.010550716, 0.00248388317, -0.00311560323, -0.0357202925, 0.0258376766, 0.00271375, 0.00728958519, -0.0250968114, 0.0178601462, 0.00594015233, -0.00852656551, -0.0214454047, 0.0172515772, -0.00309906597, 0.0096841678, -0.00963124912, 0.00368448184, -0.0664662048, 0.000560196699, 0.0229403656, -0.0169472937, -0.00241111964, -0.0153597258, -0.00703160558, 0.0325451531, -0.0120985946, 0.000118137425, 0.00934019499, 0.0283645578, -0.0117149325, -0.0208368376, -0.0269092862, 0.00333885499, -0.0235224739, 0.00758725451, 0.00922774151, 0.0181247406, -0.00326939882, 0.000595338177, 0.025533393, 0.0107822362, -0.032994967, 0.0236283112, -0.014473333, -0.0549298711, 0.00656195, 0.0193947945, -0.00157681934, 0.0201356597, -0.0206780806, -0.000742932432, 0.00630066264, -0.037202023, 0.0264859349, 0.00202745735, -0.0323599391, 0.00492807711, -0.00347280619, -0.0107623916, -0.0209162142, -0.0128394607, -0.0323599391, 0.00797091704, -0.00436250586, 0.0367786698, -0.00846703164, 0.0218819864, -0.037043266, -0.00688607851, -0.0115297167, -0.0194874033, 0.000463454257, 0.0182834975, 0.0376518331, 0.0286820717, -0.00353895477, -0.0131635889, 0.00866547786, 0.0240781233, 0.0348206684, -0.0264991652, -0.00556971971, 0.015492023, -0.0336299911, -0.015650779, 0.0311428029, -0.0160344411, -0.00398215093, -0.0108880736, 0.0193286464, 0.00378701231, -0.0179924425, -0.0191037413, -0.0309840459, -0.0192757268, -0.0298992079, -0.0078253895, 0.0113908043, 0.00568878697, -0.0313809365, -0.0256524608, -0.00470647914, -0.0326245315, 0.0265917722, 0.00567225, 0.0211411212, -0.019064052, -0.0191037413, 0.0308517478, -0.0141293602, 0.01510836, -0.0124161085, 0.0193947945, -0.0345296152, -0.00948572159, 0.000857452396, 0.0508551113, -0.00564248301, -0.0209162142, -0.0454838388, -0.0151215903, 0.00257483777, 0.000134261165, 0.0105441008, 0.0276501514, -0.0100612156, 0.0195403229, -0.0136927785, -0.0185084026, 0.0225170143, 0.0174235646, -0.0124359531, 0.027001895, -0.0317778289, -0.0220539719, 0.00798414648, 0.0191831198, -0.00871839747, 0.0170002133, -0.0200298224, 0.0112585071, -0.00329255103, -0.0138250757, -0.0310898833, -0.0481297858, -0.0113180401, 0.0274120159, 0.0100016817, -0.00733588962, 0.00170002133, 0.0605392791, 0.0111394394, -0.00264264015, 0.019923985, 0.00326939882, -0.000790476799, -0.0016586784, 0.000665621192, -0.0055597974, 0.0123631898, -0.00615513558, -0.0158492252, -0.0478651896, -0.0225434732, 0.0386837535, 0.0273855571, 0.0216835402, 0.0120059866, 0.00900283642, 0.0198313762, 0.0192889571, -0.0312486403, 0.0351911038, 0.00517282728, -0.0151877385, -0.00661486899, -0.0169869829, -0.00343311694, 0.0183364172, -0.00377378264, -0.00873162691, -0.0298462883, 0.012846075, -0.0159418341, -0.0140235219, -0.00964447856, 0.0129585275, 0.0212866478, -0.00422028638, 0.0160476714, -0.0101207495, 0.00144700252, -0.0212205, 0.00226724637, -0.0149628334, -0.0264330152, -0.0266050026, 0.0142219681, 0.0054275, -0.0420705639, -0.0103522697, -0.0175161734, -0.0111791287, -0.0162858069, 0.0312751, 0.0127005484, 0.00379032, -0.0358525887, 0.00859933, -0.00506368186, -0.00922112726, -0.0417001322, -0.0139044542, 0.0126939332, 0.0201092, -0.0454309173, -0.000978173688, 0.0131768184, 0.015650779, 0.0191302, 0.000924427935, -0.0120522911, 0.0388954282, -0.0228477567, 0.0214718636, 0.00649910839, -0.0113908043, 0.0138647649, -0.0159418341, 0.0273590982, -0.0169208348, 0.00137423899, 0.00961802, 0.0104448777, 0.0129188383, 0.0202282686, 0.045616135, -0.0134678725, -0.0228345264, -0.0104316482, 0.0356938317, 0.00116008264, 0.00233339495, 0.010808696, -0.002151486, -0.0216570813, -0.0153994141, -0.00452457042, -0.00567555754, 0.0241178125, 0.00244915509, 0.0180585925, -0.00836119428, 0.014790847, 0.0239590555, 0.011794311, 0.015174509, 0.0222921073, -0.00809659902, 0.0173044968, -0.0131239, 0.0190111324, -0.00490492536, -0.0071242135, -0.0033372012, 0.0154523337, 0.0333124809, -0.00272697955, -0.0195800122, -0.00742188282, -0.0334976949, -0.0268828273, -0.0457219742, 0.0311692618, -0.0139176836, 0.00175624772, 0.023337258, 0.014248427, -0.00340996496, -0.00575493602, 0.0357202925, 0.00522574643, 0.0154655632, -0.0058971555, -0.00178270717, 0.0186010115, 0.0350323468, 0.0277559888, 0.0245940816, 0.00919466745, 0.00193981023, -0.0018124741, 0.0403242409, 0.0179527532, 0.0080304509, 0.0125814807, -0.012687318, -0.0107160872, 0.0293170977, 0.0516224355, 0.0174103342, 0.0187597685, 0.0117149325, 0.0121250544, -0.0417795107, -0.00933358, 0.00230197445, -0.0126608592, 0.00939311367, 0.0229932833, 0.0151877385, 0.00626758812, 0.0414884575, 0.00616836501, 0.0202944167, -0.0240913518, -0.0236283112, -0.00935342442, 0.0167091582, -0.048738353, 0.0102265868, 0.000445676793, -0.0246999208, 0.0206516199, 0.0302696396, -0.00917482283, 0.00477262773, 0.0243294872, 0.0417530537, -0.0192757268, -0.0256656911, -0.00097652, -0.023747379, 0.0448223501, 0.00772616686, -0.0170266721, 0.00345957628, 0.0210352819, -0.00222921069, 0.0194874033, -0.00911528897, -0.0180189032, -0.0284174755, 0.0183761064, 0.00666778767, -0.0198049173, -0.0177939963, 0.00245080888, 0.00248553697, 0.0025467244, 0.0265388545, 0.011159284, 0.0232843384, 0.0202414989, -0.038445618, -0.0381016433, 0.00703160558, 0.0106631685, -0.010041371, -0.0355879925, -0.0166827, 0.0252952576, -0.0671012327, 0.0359319672, 0.00766001828, -0.028496854, -0.0289202072, 0.0257186107, 0.00647595664, 0.00513644563, 0.0112915812, -0.0282058, -0.00773278158, 0.0054440368, 0.000152555411, -0.0261287317, -0.0192360394, 0.00204564817, -0.0175029431, 0.0219745934, 0.026552083, -0.0110203717, 0.0301108826, 0.0177013893, 0.0223185681, -0.0165371727, -0.0271209627, -0.0235489327, 0.0317249112, -0.0306136124, -0.0233769454, 0.0196990799, 0.0194212552, 0.0238267574, -0.00518605718, -0.0258641373, 0.0196990799, 0.00197453843, 0.00624443637, -0.0348206684, -0.00314537017, 0.023972284, -0.0311692618, 0.00692576775, 0.00154953299, 0.0117876958, -0.00703160558, -0.0122705819, -0.0129056089, -0.0261551905, -0.00102778524, -0.0502200834, -0.0289995857, -0.0145659409, 0.0166033208, 0.0215115529, -0.0133752646, -0.0203208774, 0.030666532, -0.00194146403, -0.00250868895, -0.0124756424, 0.0249380562, 0.00351249543, 0.0353763178, -0.0154126445, -0.0350588039, -0.0074152681, -0.00861255918, -0.00901606586, -0.00860594399, -0.031619072, -0.0142881162, 0.0135737108, 0.00970401242, 0.00713082869, 0.00211841171, 0.0182702672, -0.00657848688, 0.0106234793, -0.0309311263, -0.0129188383, -0.00176120887, 0.0233769454, -0.029105423, 0.0318572074, 0.0157566182, -0.0151877385, -0.00191500457, -0.00156772393, -0.0143145761, -0.00817597751, 0.0127137778, -0.0252952576, 0.0277824495, 0.00343311694, -0.00284604728, 0.0355615355, -0.0265653133, -0.00837442372, 0.0146453194, -0.0181908887, 0.00779231545, -0.0163387265, 0.0188920647, 0.0141822789, -0.0355879925, 0.00884407945, 0.0143145761, -0.00355218444, 0.00143129227, -0.00770632224, -0.0204928629, -0.0254804753, -0.0251894202, -0.0233901758, 0.00553664519, 0.0275972318, 0.0260758121, -0.0030428397, 0.0135737108, -0.0187068488, 0.0246602315, 0.0105308713, -0.0148437656, 0.0150686707, 0.0169869829, 0.00655202754, 0.0163254961, -0.00113941112, 0.0217364579, 0.0343443975, 0.020783918, -0.00352903246, -0.0562528446, 0.010934378, 0.0112915812, -0.0104581071, -0.00387962046, -0.00360841095, 0.015492023, 0.00904252566, -0.00222755712, 0.00656195, -0.00701176096, 6.22211082e-05, -0.00428312737, -0.00979000609, 0.00676039606, -0.0110997502, -0.0454309173, 0.0127799269, 0.0151348198, -0.00162808457, 0.0126410145, -0.0230858922, 0.00493469229, 0.00799076166, -0.0383927, 0.022569932, -0.00583100691, -0.0305342339, 0.0182702672, -0.00154622563, 0.0106300944, 0.00113610376, 0.0156904683, -0.0119596832, -0.0285497736, 0.0112254322, 0.00506698946, -0.00478255, 0.017754307, 0.00196792348, -0.0104911821, 0.0167091582, -0.0290525034, -0.00445180666, 0.0322541, 0.0201092, 0.00861255918, 0.00928066112, 0.0275972318, 0.0168282259, -0.0156904683, -0.0107028577, -0.0120985946, -0.0209294446, 0.00253018737, -0.01868039, 0.00797091704, 0.0131635889, -0.0351911038, -0.0144204143, -0.00762694376, -0.0125153316, -0.00416736724, -0.0106499391, 0.0102265868, -0.00339012034, -0.0168811455, 0.00327932113, -0.0327832885, -0.0237870682, 0.000543659553, 0.0183364172, -0.0123565746, 0.00576816546, 0.00822889712, 0.0202414989, 0.0332595594, -0.0220672023, 0.0131702041, -0.027861828, 0.017119281, 0.0144601036, -0.00027410363, 0.00330247334, 0.0187200792, 0.0067008622, -0.0166827, -0.00176120887, 0.0174235646, 0.0166562404, -0.00182074262, 0.0101472083, 0.00980323553, -0.0119795278, 0.0208765268, -0.0077526262, -0.0171854291, 0.000408881577, -0.0104647223, -0.0113643445, -0.0033934277, 0.0106896283, 0.00850010663, 0.00721682189, -0.033021424, -0.0165504012, 0.0141425896, 0.00220109755, 0.00747480197, -0.0109674521, -0.0100678299, -0.00505706714, -0.0023846603, 0.00779893, -0.0320424251, 0.0393981598, -0.0271474216, 0.00151149754, -0.00241773459, 0.0106367087, -0.0186274704, -0.0100546, 0.030666532, 0.013930914, -0.00562594598, 0.000827272, -0.00664794305, -0.0215512421, -0.00798414648, 0.0193286464, 0.026234569, -0.000929389091, 0.0209955927, -0.00540765515, -0.0107954657, 0.000998845208, 0.0160609018, -0.000419837452, 0.0131768184, -0.00531173963, 0.0224508643, 0.00245742383, -0.0298727471, -0.00142633112, 0.0372549407, 0.00472632376, -0.0382604, 0.00913513359, 0.045378, 0.0221068915, -0.0106367087, -0.0103125805, -0.00982969534, -0.0157036986, -0.0290789641, -0.0237870682, 0.0143013466, 0.00515298266, 0.0278089084, 0.0147379274, 0.00831489, -0.0176617, 0.00409460394, 0.00143873401, -0.0132098934, -0.0136398599, -0.0218026079, -0.0174632538, 0.0208103769, -0.00230362802, 0.000891353586, 0.00128493831, -0.012211048, 0.0140102925, 0.00218125293, 0.0107359318, -0.00784523413, 0.00639657816, 0.0202811882, 0.00233339495, 0.0241045821, -0.00936665386, 0.00307922135, -0.00859271456, -0.00473293848, 0.0239325948, 0.000838021166, 0.0333918594, -0.00148669176, -0.00133124238, 0.0157830771, -0.0205987021, 0.00735573424, 0.0052092094, -0.0306929909, -0.00750787603, -0.00813628826, -0.0138515355, 0.0163916443, -0.0447429717, -0.0192095786, -0.00612867577, 0.0176617, 0.00728958519, 0.0344502367, 0.010550716, 0.00288408273, -0.0118538449, 0.0183364172, -0.0298992079, 0.00596330408, -0.00744172744, 0.0112915812, 0.0340268835, -0.0182173494, 0.0175426323, 0.0317778289, 0.0233240277, -0.0100215264, -0.00350918784, -0.00182405009, 0.00433935411, -0.00424674572, 0.0141690485, 0.000565984694, 0.010041371, -0.00708452426, -0.0199901331, -0.00769309234, -0.0131371291, 0.00173309562, -0.027861828, 0.0300315041, 0.00107078184, -0.0213131066, -0.00584423635, 0.0139176836, 0.000689186621, 0.022345027, -0.00917482283, -0.0089829918, 0.00416406, 0.0227154586, -0.00349926553, 0.00657517975, -0.0100281416, 0.00204730197, -0.0165371727, 0.0106300944, -0.00589054078, 0.0165504012, 0.00797753222, 0.0212998781, 0.00518605718, 0.0133488048, 0.0345560759, -0.00713082869, 0.0234960131, 0.0124491835, -0.00543742208, -0.00749464612, -0.0300844237, -0.0273326375, -0.0090756, 0.0229139049, 0.00525882049, 0.00577808777, -0.00727635575, 0.00555649, 0.000548620708, 0.00601953082, -0.00252191862, -0.00212668022, -0.00857948512, -0.0192095786, 0.00687946333, -0.0162461177, -0.00737557886, -0.0166430101, -0.0215512421, 0.00558294915, 0.0212205, -0.0150289815, -0.00225567026, -0.0209162142, 0.00311394944, -0.0188788362, -0.0320159644, 0.0102133574, 0.0175426323, 0.0237076897, 0.0120456759, -0.0295287743, 0.000401646568, 0.015716929, -0.0127865411, -0.00583431451, 0.012495487, -0.0168811455, -0.0276501514, -0.0184687134, -0.0080767544, 0.0194080248, 0.00553995278, -0.00977677573, 0.0166827, -0.0376782939, 0.00984954, 0.0183099564, -0.00297338353, -0.00308749, -0.00509014167, 0.0334976949, -0.0509344898, -0.0258905962, -0.0110402163, 0.00543411449, 0.0147511577, -0.0152009688, -0.00724989641, 0.0260625836, -0.000227386117, -0.00597653398, 0.0232446492, -0.0204531737, 0.0273590982, -0.0129916025, -0.00548041891, 0.0143145761, -0.00665125065, 0.0166165512, 0.00516290497, 0.0150157521, 0.00610883115, 0.00196626969, -0.0082090525, 0.00916820858, -0.000604020199, -0.0155714015, 0.0131305149, 0.0138118463, 0.014790847, -0.0112981955, -0.0273855571, -0.015174509, 0.000972385693, -0.00170994364, -0.00387300574, -0.00937326904, 0.0115892505, 0.0115826353, -0.00511660101, 0.0161270499, -0.00375063065, -0.0263139475, -0.00302464864, -0.00393915456, 0.0187597685, -0.0176484697, -0.00618159492, -0.0110269859, -0.00524889817, -0.0225170143, 0.00432612421, -0.0116620138, -0.0172648076, -0.00482554687, 0.0336299911, 0.00917482283, 0.00947910734, 0.000897141581, 0.0321482606, -0.0200298224, 0.0306136124, 0.00734911906, 0.032518696, -0.0251894202, 0.0147246979, 0.0104779517, 0.013547251, 0.000719367, -0.0156375505, -0.0131371291, 0.00600299332, 0.0379958078, -0.0114304936, 0.00410783337, -0.00284935464, -0.0211808104, -0.010233202, -0.000224492105, 0.00258145249, 0.00244584773, -0.0205060933, 0.00627420284, -0.0324128568, 0.0052092094, -0.00653549051, 0.0107822362, 0.0379958078, -0.010391959, -0.0139838327, -0.0237076897, 0.0211543497, -0.00460064132, 0.0101472083, 0.0154655632, 0.0231652707, 0.0286291521, -0.00426659035, 0.0167620778, -0.0181379709, -0.00584754394, -0.000545726682, 0.0178072266, -0.00886392407, -0.0140632112, 0.0198313762, -0.0241575018, 0.00959817506, 0.0160609018, -0.0185348615, -0.0029866132, 0.0296081528, 0.0132495826, 0.0324393176, -0.0287614502, -0.0178733747, -0.0183496457, -0.00982308, 0.0335241556, 0.00418390473, 0.0209559035, 0.00824212655, -0.00394907687, 0.00136514357, -0.0184157956, 0.0158624556, 0.00943280291, 0.00271044252, -0.00456756679, -0.0452457033, -0.00662148371, -0.00651564589, 0.0245676227, 0.0464893, -0.00723666651, -0.00982308, 0.00838765409, -0.0157433879, -0.00727635575, -0.0139838327, -0.0241971891, 0.00989584345, -0.00401853258, -0.0302696396, -0.00975031685, 0.00683977455, -0.0221465807, 0.00194973254, 0.00242434931, 0.0205987021, -0.0183761064, 0.0438433513, 0.00364148524, -0.0180189032, -0.0138118463, 0.00720359199, 0.0333389379, 0.0189317539, 0.0205590129, 0.0322011821, -0.00565571291, -0.0217232294, 0.00762032904, -0.0136001706, -0.000937657664, 0.0212734174, 0.0113180401, 0.00857948512, 0.012912224, -0.0132958861, -0.022728689, -0.0202547275, 0.0111328242, -0.0103721144, 0.00116587058, -0.00549034122, -0.012019217, -0.0112188179, 0.00311229588, 0.0273061786, -0.00852656551, 0.015650779, 0.00924758613, -0.0066876323, -0.0058971555, -0.00911528897, 0.0181908887, -0.00932696462, 0.0234827846, -0.0033934277, 0.0113974186, 0.0122308927, -0.00115594827, -0.0082818158, 0.0157433879, -0.0169208348, -0.0127336225, 0.00165950519, 0.00634696661, -0.0129056089, 0.0193947945, 0.00697868643, 0.00957833, 0.00999506656, 0.0225963909, -0.00578801, -0.00902929623, -0.0197784584, 0.00185050955, 0.00604599, 0.0215644725, -0.00160493259, -0.00368778943, 0.00510006398, 0.0162196588, -0.0122705819, 0.000552754966, -0.0102728913, 0.013229738, 0.00366463722, -0.00171986583, -0.000281958783, 0.00965109374, -0.0179527532, 0.00853979588, -0.0309311263, 0.0145262517, -0.0135274064, 0.0155846309, -0.0287614502, 0.0100281416, -0.000917813042, 0.00549695594, 0.0123168854, -0.00994214788, -0.00331074186, -0.00818259269, -0.0245543923, 0.000810734869, 0.0174632538, -0.00303622475, -0.00282124151, -0.00922112726, 0.000254465733, 0.00271540368, 0.0106962426, 0.0159286037, 0.0202944167, -0.0156243201, 0.0463570021, -0.00587400328, 0.0166959297, 0.0173971057, -0.00432281662, 0.010868229, -0.020466404, -0.00808337, -0.0204531737, -0.00233670231, -0.00936004, -0.0223979466, 0.0037010191, -0.00589384791, 0.00065859285, 0.00372086372, 0.00466348231, -0.0281528812, 0.0217496883, -0.00154539873, 0.00746818678, 0.000398545846, 0.0164445639, 0.0240648929, 0.00321482634, 0.0226757694, -0.027094502, 0.00595338177, -0.00625435822, 0.00150901696, -0.0104845669, -0.000793370826, 0.00812967401, 0.0128659196, 0.000257773179, 0.00805691, -0.0114767971, -0.00061311567, 0.00295188511, 0.0200695116, 0.0053845034, 0.0202018097, 0.0245676227, 0.00240450492, 0.00118158094, 0.00522243883, -0.0056457906, 0.00204399438, 0.00205887784, -0.00232181884, -0.0131503595, 0.0238796771, 0.00279147457, 0.0160609018, -0.0195535515, -0.00233174115, 0.0282058, -0.0260625836, 0.0227683783, -0.0056457906, 0.0178072266, 0.0250835828, 0.00266083097, 0.0160344411, -0.00711759878, 0.0114635676, -0.0100479852, -0.00679347, 0.0120059866, 0.0147114685, -0.0194212552, 0.0254937038, 0.00425666803, -0.0157301575, 0.00593023, -0.0199901331, 0.00772616686, 0.00817597751, -0.0173044968, -0.0085596405, -0.0141293602, -0.0106168641, -0.000138395451, -0.0134744877, 0.0106300944, -0.012303656, 0.0122904265, 0.00378701231, 0.00210022088, 0.0078253895, 0.0134480279, -0.00971062761, -0.00261452678, 0.0124888727, -0.014790847, 0.0135604814, 0.00349595817, -0.013004832, 0.00297669088, 0.00793784298, -0.00239292881, 0.0320424251, 0.00305110822, 0.00691253785, 0.0191169716, -0.0135869402, 0.0158624556, -0.0258112177, -0.00651895301, -0.0277824495, -0.00829504523, -0.00981646497, -0.0145527115, -0.0225567017, -0.00530843204, -0.00543742208, -0.00226724637, 0.0244750138, -0.00270217401, 0.00407145172, -0.0173309557, -0.00730943, -0.0193683356, -0.0335770734, -0.0208236072, -0.01058379, -0.00390608, 0.0131900487, -0.000242476279, -0.0001036674, 0.00824212655, -0.00832812, -0.00224244059, 0.000860759814, -0.0135075618, -0.00772616686, 0.00885069463, -0.0063502742, -0.0208500661, 0.0321747214, 0.00154705241, -0.00793784298, 0.00466679, 0.00695884181, 0.00375393801, 0.00545065198, 0.00547380373, -0.0206913091, 0.0167620778, 0.00896314718, 0.0141558191, -0.0221201219, 0.00878454559, -0.00654210523, 0.00625105109, 0.0107227024, -0.00410452625, 0.0056457906, -0.00495784404, -0.0196726192, 0.0138383051, -0.0100149112, -0.00567886466, 0.00998845231, 0.00962463394, 0.0170928203, 0.0180189032, 0.0175426323, -0.0149099147, 0.0159815233, -0.012912224, 0.00995537732, -0.019222809, -0.00640980806, -0.0057350914, 0.0174897127, 0.0016586784, 0.00829504523, 0.0137986159, -0.011986142, 0.00119811809, -0.0064494973, 0.0354027785, -0.00021932424, 0.00218456052, -0.0230329726, -0.0243427176, -0.0272003412, 0.00700514624, 0.00605591247, -0.00725651113, 0.0152141983, 0.0101273637, 0.0162725765, -0.00433604652, -0.00779893, -0.0313809365, 0.0150157521, 0.0228742156, -0.011284966, -0.0341327228, -0.0199107546, -0.0162196588, 0.00151232432, 0.000391310838, 0.0231785011, -0.0104514929, 0.0292112604, 0.00865224842, 0.0108417701, -0.00910867471, -0.000833886908, 0.0151877385, -0.0220142826, -0.0143807251, 0.0158624556, 0.0135075618, 0.000708204403, -0.00808998477, -0.0211278908, 0.0133620352, -0.00674716616, -0.000778900809, 0.00841411296, -0.0187465381, -0.00175128656, -0.0041409079, -0.000135604816, -0.00784523413, -4.12137342e-05, -0.0121912034, 0.0123301158, 0.0134017244, 0.0158492252, -0.00590377, 0.00642634509, -0.0111195948, -0.0166033208, -0.0161402803, -0.00466017518, 0.00326939882, -0.0259964336, -0.0225170143, -0.00897637662, -0.0114304936, 0.0207442287, 0.0244088657, 0.0115561755, -0.0189185254, -1.49351335e-05, 0.00959817506, -0.02569215, 0.0134414136, -0.0222788788, -0.0067008622, -0.00467671221, 0.0028543158, -0.0227154586, -0.0109872967, -0.00875808671, -0.0125285611, 0.0214189459, -0.0139573729, -0.00842072815, 0.0290789641, 0.0128923794, -0.0263139475, 0.00669424701, -0.00615182798, -0.00139821786, 0.0120721357, -0.00635358132, 0.00383662386, 0.00410121866, 0.0116620138, -0.0116223246, 0.00829504523, -0.0122705819, -0.0189317539, 0.0256656911, -0.0150819011, 0.00662479131, -0.0181379709, -0.00464363769, -0.0175690912, 0.0144865625, -0.0209823642, -0.000983961741, -0.00340996496, -0.0241575018, 0.013196663, 0.00990907382, -0.00575493602, 0.00490492536, -0.00709775416, 0.0160212126, 0.0129585275, -0.0135406367, 0.00914836396, -0.0129717579, -0.00812967401, 0.0209294446, 0.0168811455, -0.00928066112, 0.00847364683, 0.00685300399, 0.0173838753, 0.0203208774, 0.0109740673, -0.00679347, -0.0123301158, 0.0010112481, 0.0184422545, -0.0210882016, -0.00206880015, -0.00541757746, -0.0142748868, -0.0123764193, -0.0114238784, -0.00107243564, -0.00540765515, 0.00834135, 0.00512321573, -0.00125765195, -0.0136663187, -0.0133091165, 0.00393584697, 0.00516621256, -0.0213395674, -0.00462048594, 0.00587400328, -0.0158227663, 0.00517944247, 0.0152935768, -0.0228080675, -0.00290558115, 0.0168546848, 0.00137671956, -0.0191302, 0.0185084026, 0.00428312737, 0.00371094141, -0.00739542348, 0.00676701078, -0.00014780098, -0.00372086372, -0.000239788991, -0.015492023, -0.00475939829, -0.035482157, 0.0122838113, 0.0121052098, -0.0117546218, -0.00768647762, -0.000147697618, 0.0155978603, 0.0232181903, 0.00920128264, 0.00774601148, 0.0303754769, -0.00515629025, -0.00884407945, 0.00135026011, 0.00298495963, -0.00596661167, 0.000101135141, 0.00910205953, -0.0207309984, 0.00217463821, 0.0471243262, 0.0124227237, 0.0204399452, -0.0261684209, -0.0266579203, 0.00527205039, -0.0162990373, -0.00240615848, -0.0022837834, 0.0121912034, 0.000752854743, 0.000158963565, 0.00785184931, 0.00742188282, -0.0268695969, 0.014089671, 2.23833217e-06, 0.0235621631, -0.00784523413, 0.0115826353, -0.0123301158, 0.0265123937, -0.0310105048, 0.00148917234, -0.0191566609, -0.0156640094, 0.00239458261, 0.0172648076, 0.0150157521, -0.0161402803, -0.00834135, -0.00122127018, 0.00318340561, 0.0094063431, 0.0126740886, 0.012720393, 0.0144601036, 0.00859271456, -0.00327601377, 0.004302972, 0.0159153752, 0.0132694272, 0.012687318, 0.00947249215, 0.002063839, 0.0163784157, -0.000292294513, 0.0045378, -0.028338097, 0.00998845231, 0.00316025363, -0.00543742208, -0.00215975475, -0.025533393, 0.00881100539, -0.0100016817, -0.00095254113, 0.0155317122, 0.00203076471, 0.014473333, -0.0014064865, -0.00595668936, -0.000583762187, 0.00305441557, 0.00288242917, -0.000205681077, 0.0103522697, 0.0298198294, 0.00697868643, -0.0210220534, 0.0187068488, -0.00507360417, 0.00609229412, 0.00522905355, 0.0033504311, -0.0033057807, -0.00413429318, 0.00924758613, 0.0180585925, 0.0132892719, -0.00566894235, 0.0353763178, 0.00693899719, -0.00221267366, -0.00270382757, -0.00506698946, 0.0177807678, 0.00685961917, 0.0241575018, 0.0139838327, -0.00875808671, -0.0239590555, 0.016100591, -0.0158889145, -0.0351381823, -0.00190838962, 0.00901606586, 0.00527205039, 0.0438698083, -0.00023503456, -0.0125682503, 0.00296346121, 0.00971062761, -0.00027451705, 0.00671409164, 0.0135869402, -0.0192624982, -0.00613198336, 0.00606252719, 0.0244617853, 0.0234960131, -0.010074445, 0.0106631685, 0.0201885793, 0.0111195948, 0.00166033208, -0.00194477139, -0.0202414989, -0.0186407, -0.0198446065, -0.000811975158, -0.00242269575, -0.00522905355, -0.0123235006, -0.0132958861, -0.00861255918, -0.00606914191, 0.00486523611, -0.0212205, -0.0161138196, -0.0288408287, -0.00845380221, -0.00515298266, -0.013930914, 0.017211888, -0.00365471491, 0.0177939963, 0.00693899719, 0.0111658983, 0.0221465807, -0.0172515772, -0.00305772317, 0.0241045821, -0.0139838327, 0.011668629, -0.0106102498, 0.0343443975, -0.00129734119, -0.00258806744, 0.00757402461, 0.0243030284, 0.0139706032, -0.00435258355, -0.00172813446, -0.0078253895, -0.0288408287, 0.0264859349, -0.00585746625, 0.000425005332, 0.0140632112, -0.00317182951, -0.00499753328, 0.00181412778, 0.0137192383, 0.0249777455, 0.000396478688, -0.00793784298, -0.00221763481, 0.0265653133, -0.0102993511, 0.00738219358, -0.000346453744, 0.00418390473, -0.00990907382, 0.00750126131, -0.017754307, 7.42105622e-05, 0.0019894219, -0.0122904265, 0.0106763979, 0.00590046309, 0.0173044968, -0.00153547642, -0.00733588962, 0.00727635575, 0.00841411296, 0.00118736899, -0.0135737108, -0.0274913944, -0.00697207171, 0.00657187216, 0.00520590181, 0.00319663528, -0.0051066787, 0.00992230326, 0.0106168641, -0.018521633, 0.00510006398, 0.000897141581, -0.00279312837, 0.00188523764, 0.0154787926, 0.0132826567, 0.0120589063, -0.00377378264, -0.0155449416, -0.0179527532, -0.00210187444, -0.0106036346, 0.0221995, 0.0180189032, -0.0104118036, 0.00893668737, 0.0160476714, -0.0355350748, 0.0232049599, 0.00596991926, 0.00523236115, -0.0283645578, 0.00616175029, 0.00578470295, 0.00981646497, 0.00223086448, -0.00161733537, -0.00625766581, 0.00445180666, -0.0177410785, 0.00557964202, 1.98575253e-05, 0.0103390403, 0.0104118036, 0.0123168854, 0.00178601453, 0.00863901898, 0.0354556963, -0.0222788788, 0.00705145, 0.00606914191, 0.0225434732, -0.0178336855, -0.0251232721, -0.0138515355, 0.0126674734, 0.00164627552, -0.00112618145, -0.0408005118, -0.00814290345, -0.0182967279, -0.0215909313, 0.00384323881, -0.00407806644, -0.00567555754, -0.0177013893, 0.00788492337, -0.0134480279, -0.00550026353, -0.000253225444, 0.00293700164, -0.0115231015, 0.0116752433, -0.00459071901, 0.00317182951, 0.00916820858, 0.00191169709, -0.000527122349, -0.0236018524, -0.00280966563, -0.0235489327, 0.0121912034, -0.027861828, -0.00105176412, -0.00181743526, -0.00290227379, -0.0033372012, -0.0226625409, 0.0138118463, -0.0146982381, 0.0030428397, -0.00947910734, 0.0266843811, 0.0074152681, -0.011443723, -0.0160476714, -0.00992891844, -0.0038763131, 0.00409129634, 0.0362494811, -0.0188259166, 0.00444849906, 0.0110203717, -0.00235158578, -0.00242434931, 0.0152274277, -0.000389657129, -0.00473955367, 0.00312221819, 0.00315859984, 0.0247925278, -0.0074152681, -0.0289731249, 0.00850010663, -0.00659502437, -0.0141161298, -0.035508614, 0.0180585925, -0.00128493831, -0.000765257631, 0.0166430101, 0.0187465381, -0.00274020946, 0.0151877385, 0.00193650287, 0.0191169716, -0.0054572667, -0.0246734601, -1.6873084e-05, 0.013388494, 0.00219944399, 0.00577808777, 0.00483877631, -0.0225831624, -0.0115826353, -0.00813628826, 0.000187593541, 0.028020585, 0.00125103712, -0.00616505789, 0.0101207495, -0.00408137403, -0.00418059714, 0.0347148329, -0.0176220108, -0.0175955519, 0.00096411712, -0.0111195948, -0.000445676793, 0.0086588636, -0.0182834975, 0.00585746625, 0.0141425896, 0.00152968836, -0.00436581345, -0.0183893349, 0.00559617905, 0.0166430101, -0.0126939332, -0.00885730889, 0.00959817506, 0.00826858636, 0.00293865544, 0.00385977584, 0.00513975322, 0.00637673354, 0.0248586778, 0.00386639079, 0.00690592313, 0.0106631685, 0.000135604816, -0.0029551927, 0.0135075618, 0.0179659836, -0.00953202602, -0.013930914, 0.0140235219, 0.00583762163, 0.0186671596, -0.0260361228, -0.0237209201, 0.0264065564, 0.000970732, -0.0198181476, -0.0118538449, -0.0147114685, -0.00105755217, -0.000242476279, 0.0112386625, -0.00470978674, 0.0221333504, -0.0148437656, -0.0211146604, -0.0253614075, 0.0166959297, 0.0146982381, 0.0157963075, -0.0149628334, -0.00927404594, 0.000341079169, 0.00799737591, -0.0133620352, 0.00618820963, -0.0269754343, 0.00851995125, 0.0156640094, -0.0135141769, 0.00338515919, -0.00858609937, -0.00466017518, -0.0182305779, -0.0119398385, 0.000353688753, 0.0294758547, -0.0113577293, 0.0431289449, 0.0219613649, 0.0223979466, 0.0132495826, -0.0094063431, 0.0120456759, 0.00717051793, -0.0209691338, -0.00146932772, -0.0110997502, 0.00930050574, -0.00254176324, -0.0205722414, -0.00719697727, -0.00219448283, -0.0208765268, 0.0219349042, -0.0188126862, 0.00774601148, -0.0146850087, -0.000252605299, 0.00737557886, 0.0207574591, 0.0306929909, -0.00197784579, -0.00562925357, 0.000357823068, -0.00770632224, 0.00789815374, -0.0136927785, -0.00951218139, -0.0151612796, 0.00533819897, -0.0107293176, 5.08259654e-05, 0.0174103342, 0.0132495826, 0.00563917542, 0.00842072815, -0.00858609937, 0.00271871104, 0.00417398242, -0.0140632112, 0.0261155013, -0.00569209456, 0.0106499391, -0.0180982817, 0.00037291323, 0.0234430954, -0.00537788821, 0.0184290241, -0.00751449075, -0.00912851933, -0.0035687217, -0.00619813194, 0.00515629025, -0.0160212126, -0.00513313804, -0.0292112604, -0.0059831487, 0.00590707781, 0.00303126359, 0.0186539292, 0.000574253325, -0.00283281761, 0.00348603586, -0.00553995278, 0.03021672, 0.00926743075, -0.0134480279, 0.010517641, 0.00644288212, -0.0354556963, 0.00920128264, -0.00641311519, -0.00124607596, 0.012654244, 0.00620474713, -0.00916159339, 0.00764678838, -0.00941957347, 0.0066876323, 0.0377312116, -0.00064660341, -0.0207177699, 0.00143211905, 0.0156375505, -0.00730943, -0.0082818158, -0.00961802, 0.00220936607, -0.000879777537, 0.00920128264, 0.0155714015, -0.0167488474, -0.0206648502, 0.0167885367, -0.0045378, 0.00600299332, 0.0102596618, 0.0282851793, -0.0189979039, -0.00277328375, -0.00710436888, -0.00554326, 0.027094502, 0.00319828908, 0.00311229588, -0.030507775, -0.0133951092, -0.0079312278, 0.00160824, 0.0202150382, -0.0102530466, 0.0138515355, -0.0168679152, -0.000138395451, -0.010391959, -0.00885730889, 0.0248454474, -0.0154787926, -0.00390608, -0.0170399025, 0.00863901898, -0.0017463254, -0.0109740673, 0.0102464315, 0.00939972885, -0.0098627694, 0.0317249112, -0.00338681275, 0.00613198336, 0.00252522621, 0.0031304867, 0.00452787755, -0.0393717, 0.020466404, 0.0201488901, 0.00978339091, 0.0390806459, 0.0114040338, -0.00447165128, -0.0283910166, -0.00392261706, 0.03283621, -0.00527866511, -0.0105044115, -0.0224773251, 4.3125845e-05, 0.00699853105, -0.0156640094, 0.0336829126, -0.00563917542, -0.00333389384, -0.0083082756, 0.0108483853, 0.00311229588, 0.0104977963, 0.00436581345, 0.000249918, 0.00294527039, 0.00513644563, 0.0135009475, 0.00263106404, -0.0140102925, 0.00620143954, 0.0374136977, 0.0255598538, -0.0122308927, 0.00170663616, 0.0113180401, -0.0300844237, -0.0136663187, 0.00532496953, -0.00857287, -0.00371755636, -0.0118141556, 0.00281628035, -0.0167753082, -0.00154457183, 0.0140102925, 0.00644618971, 0.00407806644, 0.0066115614, 0.0246470012, -0.0024723073, 0.028338097, -0.0127005484, 0.000409708446, 0.00376716768, 0.0241442714, 0.00742188282, 0.00697868643, 0.0149496039, 0.00899622124, 0.00766001828, -0.0459601097, 0.0219878238, -0.0159418341, 0.00265917717, 0.0014279848, -0.00616505789, 0.00683315936, 0.00026335445, -0.000930215931, -0.00152307353, -0.013229738, -0.00285927695, 0.00487846555, 0.0117083173, -0.0018223963, -0.0206119306, 0.0025467244, -0.0122838113, -0.01463209, 0.00523236115, -0.0013180126, -0.0036447926, -0.0148305362, 0.00638665585, -0.00410783337, 0.0177675374, 0.0243294872, 0.0159418341, -0.0128262304, 0.00420044176, 0.00121961639, 0.0208897553, 0.0106234793, -0.00699853105, -0.0166959297, -0.00162312342, -0.0143278055, 0.00246073119, 0.0146850087, 0.0124293389, -0.0191963501, 0.00626758812, -0.0149231441, 0.0282322597, -0.00942618772, -0.0202282686, 0.00505375955, 0.0117810816, 0.0134414136, 0.0222524181, -0.00236646924, 0.0136663187, -0.0134347985, 0.0111394394, 0.0175161734, 0.00231851148, -0.0142351976, 0.00916159339, -0.0152141983, 0.000452291657, -0.0186010115, 0.000983961741, 0.00909544434, 0.0164577942, 0.00454441505, 0.00130643661, -0.000463040808, -0.0128593054, -0.00298330584, -0.00454772217, 0.00439888798, 0.00901606586, -0.00157516566, 0.0131569738, -0.0238267574, -0.00474286079, 0.0247528385, -0.0144336438, 0.0106300944, -0.0074020382, -0.0134811029, 0.000133641021, -0.0212205, -0.0158624556, -0.0115760202, -0.0089102285, -0.00460725604, -0.0113312704, -0.000682985177, -0.0195006337, -0.00681993, -0.00561271608, 0.00681993, -0.0174103342, -0.00156855071, 0.0262213405, -0.00161072053, 0.0168546848, -0.00626428053, 0.0108946888, 0.0192360394, 0.00824212655, 0.00948572159, -0.00187366153, 0.013004832, -0.0293700173, -0.00936665386, 0.024131041, -0.0270680431, 0.0105970195, 0.0309311263, -0.00663471362, -0.00530843204, -0.00259964354, -0.000120204568, -0.0108946888, -0.0349794254, 0.00801060628, 0.00888376869, 0.0241575018, -0.000566398143, -0.0265785437, -0.0195800122, 0.00263602519, -0.0189052951, 0.00884407945, -0.0291583408, -0.0114503382, -0.00708452426, 0.0126807038, 0.0122441221, -0.0377841294, 0.019765228, -0.00799076166, -0.00484539149, -0.00263271783, 0.0115495613, -0.00806352496, 0.011986142, -0.00824212655, -0.0045378, 0.0107160872, -0.00123284617, 0.00503722252, 0.0120324465, -0.00934680924, 0.0118075404, 0.0254275557, -0.00556310453, 0.00857287, 0.0275178533, 0.0188523754, -0.00218290673, -0.0194212552, 0.00758064, -0.0192360394, 0.0226228517, -0.0164048746, 0.0235092435, 0.0183496457, -0.00303953211, 0.026393326, -0.00540765515, 0.0218422972, -0.00470317155, 0.0102993511, 0.0254275557, -0.00230528181, 0.0241045821, -0.0154391034, -0.00607906422, 0.00652887532, -0.0282058, 0.0104779517, 0.00328593608, -0.00218125293, 0.0167753082, -0.0152935768, 0.00883085, -0.0123301158, 0.0332066417, -0.0188656058, 0.0111923581, 0.0100876745, -0.014473333, 0.0337622911, -0.0218819864, 0.0150951305, -0.00256491546, -0.000212916086, -0.00209525973, 0.0111262091, 0.00434596883, -0.00118158094, 0.0102398172, -0.0107160872, 0.0131635889, 0.0116223246, 0.00342650199, -0.00472963136, -0.00181578146, -0.000160307216, 0.000418183743, 0.00416406, 0.0105242562, -0.00606914191, -0.028020585, -0.00444188435, 0.00859933, -0.0025583005, -0.00818920787, -0.0261551905, -0.00898960698, -0.00472301617, -0.00210518204, -0.0104581071, -0.00533819897, -0.0192095786, -0.00169340638, -0.015174509, -0.0156904683, 0.00690592313, -0.00114519917, -0.0221333504, -0.0130775953, -0.00691253785, -0.00755418, 0.0122308927, 0.000781794777, 0.0280999634, -0.0151480492, 0.00398545852, -0.0039656139, -0.0213660263, -0.00738219358, -0.00324459304, -0.0119067635, -0.01058379, -0.0324922353, 0.000726395287, 0.0043162019, -0.0107160872, 0.0122044329, -0.00953202602, 0.0043162019, 0.00433273893, -0.0275178533, -0.0183099564, -0.00482223928, -0.0176087804, 0.0422028638, -0.0233240277, 0.0146056302, 0.00744172744, -0.00386639079, -0.0193286464, -0.00382339419, -0.00317679066, -0.0382074825, -0.0112055875, 0.0293700173, 0.0100479852, -0.0059831487, 0.00353234, 0.00486523611, 0.00223582564, 0.0140499817, 0.00549364835, -0.00532496953, 0.0116553986, -0.00410783337, -0.0173177272, 0.0369638875, -0.00408798875, 0.00268398295, 0.00855302531, -0.0141161298, 0.00966432318, 0.0149628334, -0.00136597035, -0.00168348406, -0.0183496457, 0.00559617905, 0.017278038, -0.0111394394, 0.00179428316, 0.0132165076, 0.0242501087, -0.00261121942, -0.0320688821, -0.00524889817, 0.013037906, 0.00368448184, 0.0107690068, -0.0100546, 0.00563586829, -0.00379693462, -0.00758725451, 0.00423351582, 0.0177278481, -0.0193683356, -0.00851995125, 0.0110997502, 0.0266843811, 0.00321648, 0.00212337286, -0.00524889817, -0.0266446918, 0.0193947945, -0.000733423571, -0.0180189032, -0.011986142, 0.00516952, 0.025149731, 0.0135869402, 0.0228212979, -0.00547711132, -0.0301902611, -0.00275840028, 0.0382074825, 0.00726312585, -0.0041409079, -0.0369903445, 0.000353482057, 0.0153729552, 0.00110964419, -0.0122308927, -0.0112717366, -0.0278882869, 0.0110005271, 0.0107888514, 0.0126939332, -0.00625766581, -0.0029105423, 0.00604599, -0.0107160872, 0.00685300399, -0.00092029362, 0.0126343993, 0.000254052313, -0.0110865198, 0.0221201219, -0.0133157307, 0.0211411212, 0.00431950949, -0.00593023, -0.0178072266, 0.00312056439, -0.0265123937, -0.0060856794, -0.0127666965, -0.0175426323, 0.00587069616, -0.00837442372, -0.0104448777, 0.0124756424, 0.0128593054, -0.0077526262, -0.0255730823, 0.0113775739, 0.0205325522, -0.0275178533, -0.00632712198, -0.00434596883, -0.00168431096, 0.000305317546, 0.0275178533, 0.0229403656, 0.0221730396, 0.0252687987, 0.0097569311, 0.0172648076, 0.00241111964, 0.00843395758, -0.0119464528, -0.015809536, 0.00314371637, -0.0113114258, -0.00249711308, -0.0010988951, -0.00540104043, 0.0177807678, 0.00145692483, -0.016960524, -0.0171854291, -0.0082090525, 0.0077393963, -0.0200959705, 0.00922774151, 0.00349926553, -0.0086588636, -0.0211543497, -0.00256822282, 0.00320325023, -0.0207706876, -0.000850837503, -0.00301307277, 0.0105308713, -0.0175426323, -0.00593023, -0.00786507875, -0.0166827, -0.000642882544, 0.017211888, -0.0147379274, 0.0210220534, -0.00641642278, -0.0116289398, 0.00817597751, 0.0255863126, 0.0229271352, -0.0155714015, 0.00158839533, 0.00159170281, -0.0122573515, -0.00654541282, -0.0238267574, -0.00172648078, -0.00814951863, 0.00625105109, 0.0106300944, -0.0149363736, 0.0131437443, 0.0229403656, 0.00623120647, 0.0163916443, 0.00909544434, 0.0155978603, 0.00776585611, 0.00383662386, -0.0108285407, -0.00459733373, 0.00866547786, 0.0028675457, -0.00220440491, -0.0158359967, -0.00620143954, 0.00642634509, 0.00300480425, 0.0100612156, -0.00894330256, 0.00406814413, 0.0191566609, -0.000759056187, 0.00850010663, -0.00675708847, 0.0332331024, 0.00717713265, -0.0260228943, 0.0146850087, -0.016576862, 0.0095386412, -0.023271108, 0.0105771748, -0.00532496953, 0.0156243201, 0.0242104195, -0.0169472937, 0.00535473647, 0.00217959937, 0.00647926377, 0.0150686707, -0.00496445922, -0.0159418341, 0.0172515772, 0.00503722252, -0.00732265972, -0.00300149666, 0.00409460394, -0.00299488194, 0.0181512, 0.00644618971, -0.0050273, 0.00298992079, -0.01160248, 0.0159153752, 0.025850907, -0.0074152681, -0.00383000914, 0.037202023, 0.0155581711, 0.0342121, 0.0194874033, 0.0110468306, 0.00549695594, 0.0195006337, 0.0211014319, 0.00283777877, -0.00606252719, 0.000592444208, -0.000825618336, -0.0060592196, 0.000238755427, -0.00663802074, -0.00333224, 0.0190111324, 0.0125285611, -0.00783862, -0.000206094512, -0.00095254113, 0.0116620138, 0.027001895, -0.0100678299, 0.0077526262, -0.0251232721, -0.025850907, 0.0022689, -0.0139706032, 0.0131437443, -0.00518605718, -0.0118273851, -0.00423020869, 0.00695222709, -0.0103258099, 0.00739542348, 0.0187597685, -0.00383993145, 0.013930914, 0.0181379709, 0.00104762986, -0.0146850087, -0.0190111324, -0.00335208466]
21 Jul, 2021
C/C++ program to implement the cricket game 21 Jul, 2021 In this article, the task is to create a 2- player cricket game where Player 1 is the user operating the program and Player 2 is the computer. In this game, the following series of steps are followed: First, the program will generate a random number between 0 and 25. That number will be the score that Player 1 needs to make to win this match. Suppose the program-generated random number is 15, then this number will be the score that Player 1 needs to achieve. The second step is a real match between Player 1(User) and Player 2(Computer). The user will give input from numbers 1 to 6 using the keyboard. The system will then again generate a random number between 1 and 6. If the input of the user differs from the random number generated by the system, then it is a hit and the user will get the score as the same number that was given as input by the user. If the two numbers match, the user will be out and the final total score will be printed. The total score scored by the user is the sum of all the numbers entered by the user. The score is calculated after each input by the user. Previous Input + Current Input of the user. Example: Random Number generated by System is 15. This is the winning score. Now Player will enter number between 1 and 6.Player: 2System will now generate a random number between 1 and 6.System: 1The player is safe he can play further as both numbers are different. Player will input a random number between 1 and 6.Player: 3System will now generate a random number between 1 and 6.System: 4 This process keeps ongoing till same number is chosen by Player and System Player: 6 System: 6 Now, as both numbers are same(player’s and system’s) then player is out. Result: You lose, your total score is 5. GAME OVER. Below is the C++ program to implement the above approach: C++ // C++ program for the above approach #include <cstdlib> #include <ctime> #include <iostream> using namespace std; // Driver Code int main() { int totalrun = 0; srand(time(0)); int i; // Generate a random number // and store in variable i = (rand() % 25) + 1; cout << "~~~~~~~~ CRICKET GAME ~~~" << "~~~~~~~" << endl; // Displaying the winning score cout << "Your winning score " << i << "\n"; // while loop for true condition while (1) { int player = 0; int a; if (totalrun > i) { cout << "you won your score=" << totalrun << "\n"; // To exit loop exit(0); } else { // Generate random no. and // store in a variable a = (rand() % 6) + 1; cout << "Enter no. between " << "1 to 6" << endl; // Taking input from user // to score runs cin >> player; // Checking if user's score // exceeds the winning score // Displaying random number // taken by system on screen cout << "System: " << a << endl; // Check if number inserted // by user is the same random // number generated by system // inside loop if (player == a) { cout << "OUT your score =" << totalrun << endl; // To exit loop exit(0); } // Storing total runs scored // by user else { totalrun = totalrun + player; } } } return 0; } Output: Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game
https://www.geeksforgeeks.org/c-cpp-program-to-implement-the-cricket-game?ref=asr10
PHP
C++ program to implement the cricket game
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.00629494805, -0.0315719433, -0.00974375475, 0.0265017692, -0.00419922406, 0.00636493508, -0.026875034, 0.0384773351, -0.00263034715, 0.0688050613, -0.00120144465, -0.036331065, 0.0260351896, -0.0531279594, 0.00545899104, 0.000968154403, -0.00589835458, 0.0251331329, -0.0215093587, -0.0565806553, 0.0224425197, 0.0232668109, -0.0257241353, 0.0447606184, -0.0102569936, 0.0170457382, -0.00581281492, 0.00922274, -0.00201990455, -0.00308720721, 0.0527858026, 0.0109102065, 0.0163925271, -0.0431120321, -0.00114506623, 0.00362571888, 0.0117422743, -0.0152105223, -0.0278859586, -0.00386289717, 0.0100237029, 0.0222092289, 0.0302499663, -0.0179011356, -0.00600333512, 0.0216493327, -0.025008712, -0.0448850393, -0.00499629881, -0.0378552265, 0.0280881431, 0.0137952287, 0.0627084151, 0.0341225825, 0.0355845354, -0.0028364202, -0.00726699037, -0.0113145756, -0.0101014664, -0.000970584515, -0.00653601438, 0.0223180987, 0.0076013729, -0.0330027901, 0.0178855844, -0.0331583172, -0.0366732217, 0.0628639385, 0.0327228419, 0.0162836574, -0.0160970259, 0.0252264496, -0.0129476078, -0.0166880265, 0.0038842822, -0.00869394932, 0.0366421193, -0.00229985267, -0.0289746448, 0.0629261509, -0.0164858419, 0.0114156678, -0.0165325012, 0.0162214469, 0.0176211875, 0.00781911053, 0.0037151468, -0.0769546703, 0.00933160912, 0.0277615357, 0.0162525531, 0.0160348155, 0.0186321121, -0.00238733669, -0.0417122915, 0.018756533, 0.0149150221, 0.0004153052, -0.0352112725, 0.037233118, 0.0133753065, -0.00333799422, 0.0113923391, -0.0443251431, 0.000830610399, -0.000190034334, -0.00905943662, 0.0125510143, 0.0546521246, -0.0313542075, -0.0170457382, 0.0130253704, 0.0157082081, 0.0111590493, -0.0324428938, -0.0172479246, 0.00267311721, -0.0167968962, -0.0197052471, -0.00586336106, 0.0025175903, 0.0201096181, -0.00470079808, 0.025273107, -0.0351490602, 0.0101870066, 0.0210738834, -0.00338076404, 0.0316341557, 0.00622884883, 0.00771801826, -0.0326606296, -0.00216182275, 0.00847621169, 0.034993533, 0.0245732367, -0.0222869925, -0.0370153822, 0.023546759, -0.00438585598, -0.0137952287, 0.0133753065, -0.00224541849, 0.0134219639, -0.0232201535, 0.0376374908, 0.00839844812, -0.00116645114, -0.0059139072, 0.00852286909, -0.0657567382, 0.00730198389, 0.00778800528, -0.0304521509, 0.0136008197, -0.0139585314, -0.00372486725, 0.0347757973, -0.00224347436, -0.0271705352, -0.0167813431, 0.0189431664, -0.0388817042, -0.0292079356, -0.0104202963, 0.00699870661, -0.0344025306, 0.0112756938, -0.0500174239, 0.0262373742, 0.0207161717, 0.000838386768, 0.0283680912, 0.047777839, -0.00370737049, 0.018896509, 0.00337493187, 0.00313775358, 0.0176056363, 0.0172168184, -0.0406236053, -0.00036184286, -0.0137330182, -0.0293790158, 0.0372953303, -0.0207161717, 0.0327539481, -0.0165791586, -0.00179244659, 0.0152260754, 0.0225513875, -0.0320074186, -0.00812627655, 0.0145028755, 0.0063066124, 0.0240133405, -0.0321940519, 0.0302188601, -0.024091104, 0.0405613929, -0.00846843515, -0.030203307, -0.0190209299, -0.0307943095, 0.034340322, 0.0296278577, -0.011571195, -0.0244332626, 0.030187754, -0.0172012653, -0.0250709224, 0.0484932624, -0.0291457251, -0.0306232292, -0.0106535871, -0.00888058078, -0.0038104069, 0.0634860471, -0.0251331329, -0.0279170629, 0.00843733, 0.00678874552, 0.0412146077, -0.0288035665, -0.0545588061, -0.0242932886, -0.000831582467, 0.0392238647, -0.0135697145, -0.0554297566, 0.0246354472, 0.0444806702, -0.00277615362, 0.000373750372, 0.0483688414, 0.0155915637, 0.0170146339, 0.0150472196, -0.0202962495, 0.0424277149, 0.0556474961, -0.0116567351, -0.0200629588, -0.0123799341, -0.000119743498, -0.0109413117, 0.0152649572, 0.0294412263, 0.0232979171, -0.00254091946, -0.0181810856, 0.00143570686, -0.0220537018, 0.040841341, 0.00017448164, 0.0089505678, 0.0247287638, -0.010249217, 0.0511994287, -0.00122671772, -0.00624828972, 0.0150705483, 0.000383956823, 0.0205917507, 0.0213382784, 0.0180100054, 0.0344958492, -0.0293479096, -0.00127629191, -0.0422410816, 0.0274504833, -0.0548076481, -0.00634549418, 0.00229402049, 0.0164702889, -0.0164080784, -0.000135599941, -0.0100159273, 0.00489909481, 0.0338115282, 0.00480189035, 0.0353979021, 0.0586958192, 0.00369181787, -0.0202029329, -0.058011502, -0.0198296681, -0.0189431664, -0.0613708831, 0.00117811561, -0.0182588473, 0.000638632, -0.00783855189, 0.0147128366, 0.0354601145, 0.0491153672, -0.0283525381, -0.0507950597, -0.0128776208, 0.011975565, -0.00215599057, -0.0432986654, -0.0026459, 0.0103580859, -0.0168124493, -0.00675375201, 0.055367548, 0.00190034322, -0.000827694254, -0.042956505, 0.0155526819, -0.0544654913, -0.0590690859, 0.00176231319, -0.0304054916, 0.0139507549, 0.0447295122, -0.00946380664, -0.0231112856, 0.00891946256, -0.00916053, -0.0199229848, 0.0122166313, 0.0527235903, 0.0786965713, -0.00600333512, -0.0339981616, 0.0372642241, -0.00676152809, -0.0130720288, -0.0126598831, -0.0143473484, -0.049893003, -0.0361755379, -0.00811072346, -0.0317741297, 0.00244565913, 0.00450638961, 0.00320968474, 0.0246821065, -0.0425521359, 0.0223025456, 0.0123954872, -0.0121544208, -0.0212605149, -0.0462536737, 0.00943270139, -0.00933160912, 0.0193786416, -0.0070337, 0.00150180585, 0.0159570519, 0.0254908446, -0.00838289503, 0.0162525531, -0.00294528902, -0.00668765325, -0.0449161455, -0.00502740452, -0.00881837, 0.0347446911, 0.0299078058, 0.0117189456, 0.00894279219, 0.0018245239, -0.00898945, 0.00864729099, -0.0557097048, 0.0267972704, -0.0133986352, 0.0118200378, -0.0239666831, -0.0164858419, -0.0029841708, -0.0332827382, 0.0155371288, -0.0307943095, 0.0045686, -0.042054452, 0.00339437276, -0.0161747895, 0.032598421, 0.0300944392, 0.00484854868, -0.0131186871, -0.0290835146, 0.0135541623, -0.0390683375, 0.0273882728, 0.0246976577, 0.0207161717, 0.000241917107, -0.030996494, 0.0147672715, -0.00238733669, 0.0119211301, 0.0325051062, -0.0198452212, -0.00177786592, -0.0508572683, 0.0137796756, -0.0167657901, 0.00162719935, 0.00168454985, -0.0227069147, 0.0123721585, -0.0349313244, -0.0275593512, -0.0353045873, 0.0249620546, 0.033127211, 0.0026925581, -0.0671875849, 0.0140207428, 0.0210583303, 0.0198296681, -0.031509731, 0.0366732217, -0.0125898961, -0.0211360939, -0.0136241494, 0.032474, 0.00236206362, 0.0167346857, -0.00660211314, 0.0180566628, -0.00902833138, 0.0250398181, 0.0120144468, -0.0455382504, -0.040312551, -0.00317469123, -0.00440529687, 0.0348069, 0.0109490883, -0.038321808, 0.0112212598, 0.0330338962, 0.0206384081, -0.0278393, 0.014635073, 0.0271238759, 0.00407091435, -0.0210427772, 0.0157781951, 0.0272327457, -0.0406858139, 0.00163594773, -0.0112601416, 0.022893548, -0.0140207428, -0.0478089415, 0.027948169, -0.00285197305, 0.0369531699, 0.0502351597, -0.00664877146, -0.0158015247, 0.0153116146, -0.000511294405, -0.0281503536, 0.0225202832, 0.00025929237, -0.0193319824, -0.00910609495, 0.0268128235, 0.00699870661, 0.00271977508, -0.0169990808, -0.0371709093, -0.0257241353, -0.0436097197, 0.00255063968, -0.0162214469, 0.0231734961, 0.0204362236, 0.00697148964, -0.0108791, -0.0197830107, -0.0349002182, 0.0357711688, -0.00461137, -0.0181810856, -0.0244177096, 0.0264084525, 0.0158870649, 0.0220225975, -0.0423966087, 0.0134452935, 0.019425299, -0.0249620546, 0.0229246523, 0.0171546079, -0.018103322, -0.0103814146, 0.0265173223, -0.0302188601, -0.0284769591, -0.00210155617, 0.0260351896, 0.0165325012, -0.0743418187, -0.0248687379, 0.0598156117, 0.00426921109, -0.0306387823, -0.00389205851, 0.0490531586, 0.0182588473, 0.0149072455, 0.0312297847, 0.0611220375, -0.0110890623, 0.0154049313, -0.0103192041, -0.0413390286, 0.00785410404, 0.0134997275, 0.0195341688, 0.00264978805, 0.00521014817, 0.0114001157, -0.0060849865, 0.0429876111, 0.00966599118, 0.0210427772, 0.017434556, -0.0406236053, 0.00180411106, -0.000153825735, 0.00446750782, 0.0269061383, 0.0192386676, -0.0045452714, -0.0160192624, -0.0523814298, 0.00984484702, 0.00181869173, 0.0108479951, 0.00706869364, -0.0104825078, 0.011236812, -0.0461603589, 0.00571561046, -0.00715034548, 0.0218359642, -0.00382790365, 0.012045552, 0.0137874521, 0.017419003, 0.00265756436, 0.0522259064, 0.0245576836, -0.016501395, 0.00870172493, 0.0066993176, -0.0124265924, -0.032349579, -0.00996149238, -0.00209961203, 0.013561938, -0.00280337082, 0.0149383508, 0.0409968682, -0.000444709498, -0.00540844491, 0.018896509, 0.0172168184, -0.00515182596, -0.0211360939, 0.00538511621, -0.00561451819, 0.0197985638, -0.00545121497, 0.000763053424, 0.0136085963, 0.00603832863, 0.00127920811, 0.00343131041, 0.00998482201, -0.00936271437, -0.00920718722, -0.0132664377, -0.000501088, -0.0202806965, -0.0262995847, 0.000548718031, 0.000250300975, -0.0244177096, 0.011236812, -0.0240288936, 0.0148605872, -0.0116334055, 0.0246821065, -0.0276993252, -0.02726385, 0.00999259762, -0.00867062, -0.00678874552, -0.0265484266, 0.0203118026, 0.0144873224, 0.0112134833, 0.00271783117, 0.00102647697, 0.000112453177, -0.00663710665, 0.0287724603, -0.0329094753, -0.0079707494, -0.0144873224, -0.0196430366, 0.0374197513, 0.000225756899, -0.00441307342, -0.0237489454, -0.014565086, -0.0217115432, 0.00259729777, 0.00567672867, 0.0039367727, -0.0146272974, -0.0234378912, -0.00922274, 0.0343092158, 0.0161747895, -0.0530657507, -0.0201251693, -0.00980596617, -0.0222558882, 0.0203118026, -0.0114312209, 0.0149227977, 0.0217893068, 0.00246315589, 0.0201718286, 0.0283058807, 0.0153816016, 0.0098759532, 0.00528791174, -0.0101325717, -0.0132042263, 0.0157470908, 0.100532532, -0.0113301286, -0.00631438848, 0.019036483, 0.0516037978, 0.0168435536, 0.00591779547, 0.0265328754, 0.00983707141, 0.0221159123, 0.000799019, -0.017434556, -0.0168902129, 0.010708021, -0.00253508706, -0.0229246523, -0.0163458679, -0.000668279303, -0.0282281172, 0.0401570238, -0.0223336499, 0.00832068454, -0.00769857736, 0.00683540339, -0.0132431081, 0.00962711, 0.0126598831, -0.036206644, -0.0393482856, 0.0144328885, 0.0054278858, 0.015039443, -0.0189898238, -0.0444806702, 0.0300477799, 0.00785021577, -0.00736030657, -0.0402814448, 0.00700259488, 0.0185387973, -0.0132975429, 0.00881837, -0.0137485703, -0.00295112142, 0.0308254156, -0.0104125207, -0.00526069431, -0.0209339093, 0.0352112725, 0.0234689973, 0.0404680781, -0.0103347572, 0.0255219508, -0.0310898107, -0.0163458679, -0.0048641013, 0.0177922677, -0.00657489616, -0.0189898238, -0.0344958492, -0.0177145042, -0.0171546079, 0.026206268, -0.0123799341, 0.0170146339, -0.0248376317, -0.0224425197, 0.0273882728, 0.0367354341, -0.0063804877, -0.0318829976, 0.01017923, -0.0132353324, -0.00263229129, -0.0286946967, -0.000967668428, 0.00804851297, 0.0184610337, -0.010708021, -0.00726699037, -0.0101247961, 0.0154904705, 0.00059440406, -0.00870950148, -0.0206695143, -0.0138185574, -0.0119522354, 0.00138224452, 0.00975930784, 0.00980596617, -0.00873283111, 0.0113534573, 0.00875616, 0.0550564937, -0.0259263199, -0.00870172493, 0.0193475354, 0.0137563469, -0.0212138575, -0.00909054279, 0.0338426344, 0.0105524948, -0.0266417433, -0.00238344842, 0.00701037142, -0.0179322418, 3.84868108e-05, 0.0117889326, 0.0319763124, 0.0603444055, -0.0327850543, -0.0152494041, 0.0016145627, 0.00706480537, -0.00926939864, -0.00618219096, 0.00426532282, 0.0274815876, 0.0304677039, 0.00995371584, 0.011446774, -0.00504295714, 0.0017866143, -0.0368909612, 0.0177611616, 0.0109024299, -0.0181655325, 0.021027226, -0.00504684495, 0.042054452, -0.0010663307, -0.0151016535, -0.046035938, -0.00346824806, -0.0198296681, 0.0124654742, -0.0153349442, -0.0237800498, 0.0204051174, -0.00436252728, 0.0188031923, -0.0190986935, -0.0158559587, 0.00937049091, 0.0057661566, 0.0151249832, -0.0225358363, -0.00381818321, 0.00687428517, 0.00847621169, 0.0390372314, -0.0162525531, -0.0216959901, -0.00364515977, -0.00337104383, -0.0265795328, -0.058135923, 0.0222869925, -0.00272949552, -0.0112134833, -0.00601499947, 0.0247909743, -0.0141762691, -0.0473112576, 0.00996149238, -0.0267195068, 0.0340914764, 0.0251331329, -0.0103503093, -0.0158326291, 0.00424588192, 0.0156304445, -0.0106846923, 0.0232201535, 0.00313775358, 0.0114778792, 0.0513860583, -0.010513613, -0.00412923703, 0.0300011225, -0.0111590493, -0.0124888029, 0.0458182, 0.0354290083, -0.00270227832, 0.0220381506, -0.0339670554, 0.0184610337, -0.00583225535, -0.00147361658, 0.00290446333, 0.00459581753, 0.0383840166, 0.034589164, -0.0202340391, 0.0154904705, -0.00394843705, 0.000385657913, -0.00100995228, 0.017558977, -0.00755471503, -0.00317663513, 0.00807961822, -0.018103322, -0.00702203577, -0.0191142447, -0.00278198603, 0.000449326704, 0.033127211, -0.0123566054, 0.0124810273, -0.0289746448, 0.0366732217, 0.0182744, -0.0194564052, 0.026081847, 0.00524514169, 0.0108479951, 0.0240599979, -0.0334693715, -0.030872073, 0.0246976577, -0.00803296, 0.011571195, -0.00881059375, -0.00421866495, -0.0366421193, -0.0465958342, -0.00417589489, 0.00680041, 0.0170457382, -0.00872505456, -0.0170146339, 0.00155429612, -0.0169990808, 0.00309303962, 0.0195808262, 0.0255686082, -0.0179166887, -0.0804384723, -0.0298455954, -0.046564728, 0.019285325, -0.0265639797, -0.0293945689, 0.023546759, -0.0357089564, 0.0271705352, 0.00876393635, -0.00842955336, -0.0104825078, 0.0242621824, 0.005723387, -0.0316652581, 0.0117344987, -0.013173121, 0.00279559451, 0.00595278898, -0.00861618575, 0.00488743, 0.0215560161, 0.0295034368, -0.0238578133, 0.00766358385, 0.0389128104, 0.0297056213, 0.0159414988, 0.00890391, 0.00565728778, -0.0386328623, 0.00121894141, 0.0300166756, 0.00584780844, 0.00817293394, -0.0109801935, 0.00631438848, -0.00926939864, -0.00346435979, -0.00118492, -0.00428476371, 0.0269683506, 0.00435475074, 0.00165247242, -0.0390683375, -0.0202340391, -0.0172634758, -0.0159726031, -0.0213227272, -0.00304249325, 0.0141840456, -0.00125879515, -0.0147439418, 0.00948713534, -0.00970487297, -0.0176367406, -0.0442318246, -0.0187720861, -0.0147672715, 0.024075551, 0.0159103926, -0.00996149238, 0.00485243648, 0.00810294691, 0.00893501565, 0.0254441872, -0.0153504964, -0.0135308327, 0.00175259286, -0.00461914623, 0.0218204129, -0.0269994549, -0.00629106, -0.0135463858, -0.0244954731, -0.00540844491, -0.0138652157, 0.0426765569, -0.00168941007, -0.023282364, -0.0165169481, 0.00612775655, -0.00919163506, -0.0061355331, -0.0261285044, 0.00566117605, -0.015692655, -0.00539678056, 0.0307009928, -0.0232979171, 0.0280103795, 0.0230024159, -0.037108697, 3.73325092e-05, -0.0193164311, -0.051759325, -0.00355184358, 0.0320385247, -0.00873283111, -0.00570783392, -0.0171857122, 0.00959600415, 0.00916830543, -0.0137330182, -0.00171857129, -0.023282364, -0.00495741703, 0.0123255, -0.0161747895, 0.0133753065, -0.00690539042, -0.036455486, -0.017030187, 0.018103322, 0.0364865921, -0.0442318246, -0.0161436833, -0.0395660214, -0.0117967092, -0.00812627655, -0.0142851379, 0.0221314654, 0.0177922677, 0.0126054483, 0.0103269806, 0.0209650155, -0.0190831404, 0.0258641094, -0.021151647, -0.0213227272, -0.0166724753, -0.00564562343, 0.000400967576, 0.00184104871, -0.00904388446, 0.0274815876, 0.0444806702, 0.00361599843, -0.00165247242, -0.0130564766, 0.00850731693, 0.00200046366, 0.00458415272, 0.0130175948, 0.00202768086, 0.000756735157, 0.0101481248, 0.0075041689, 0.00838289503, 0.00636882288, 0.00183327228, 0.0337182134, -0.00296278577, -0.0149772326, 0.0285080653, 0.0044752839, -0.00529568829, -0.0078463275, 0.0105524948, -0.0077569, -0.0117344987, 0.00236984, 0.0105447182, -0.0099226106, -0.0315563902, 0.0102569936, -0.00306582241, 0.0183210596, -0.00898167398, 0.0155837871, 0.0263151377, 0.00391733181, -0.0128620677, -0.0151483119, 0.00719700335, 0.00979819, 0.0334071591, -0.00877171196, -0.00977486, -0.0286324862, 0.00744973449, -0.0081185, 0.0187409818, 0.0124110403, 0.0260662939, -0.00744195795, -0.0118278144, 0.0138185574, 0.0166724753, -0.0164080784, -0.000695010473, -0.0180255584, -0.00366654457, 0.00483688386, -0.0145106521, -4.38634233e-05, 0.017294582, -0.00175842503, -0.00634160591, -0.0275126938, 0.0168124493, 0.0114545496, -0.0418056063, -0.0273571666, -0.0111279441, 0.00561063, 0.0153504964, -0.0017730057, 0.000889419, -0.000907401787, 0.0169368703, 0.00155332405, 0.0181966368, -0.00102453295, -0.00524125388, 0.0751505569, -0.0168435536, -0.000705216895, -0.0114856549, 0.00641548121, -0.0104902834, -0.00895834435, -0.011182378, -0.00191006367, 0.0086317379, 0.0072086677, 0.00983707141, 0.00134822307, 0.00846843515, -0.00902833138, 0.0123410532, 0.0263929013, -0.00607721042, 0.00373264356, -0.00463469932, 0.0104902834, 0.0156693272, 0.0144095598, -0.0074108527, 0.0178078208, -0.00989150535, 0.00422644103, -0.0231890474, -0.0316497087, -0.00209377985, 0.0336249, -0.0173256882, 0.00766747212, -0.00891168695, -0.00575060397, 0.0197519064, 0.0137330182, 0.00334771466, 0.010249217, 0.0129864886, -0.00454138312, 0.0216182265, -0.013966308, -0.00293751271, 0.00172051543, -0.0150472196, 0.00139099301, 0.00674208766, 0.00961933378, 0.00181869173, 0.0126598831, -0.0137174651, 0.0185699016, -0.0171235017, -0.0196741428, 0.0138263339, 0.0106535871, -0.00767136039, -0.00193922501, 0.00202573673, 0.00930050388, 0.0105602704, 0.0101170195, 0.00698704226, 0.0313075483, 0.0124654742, -0.0221003611, -0.0154360365, -0.0265173223, 0.0216648858, -0.00358489319, 0.011641182, -0.0141451638, -0.000629883609, 0.00267700525, -0.0147206131, 0.0209183563, -0.0270305611, 0.00503129233, -0.0223958623, -0.0243243948, -0.0033496588, 0.0131808976, 0.0179789, -0.0276993252, -0.00695982482, -0.00183230033, -0.00591001892, -0.00392121961, 0.00603832863, -0.017434556, 0.00746139884, 0.00555619551, 0.0298922546, 0.00754305068, 0.00717756245, -0.0123099471, -0.00740696443, -0.00835179, 0.00195769384, -0.000639118, 3.39607395e-05, -0.000553092221, -0.0199540909, -0.00316302665, -0.0144639937, 0.0063804877, -0.00420311233, 0.00999259762, 0.00131225749, -0.0221625715, 0.0143940067, -0.0097282026, -0.0180722158, -0.00943270139, 0.00242038607, 0.00878726505, 0.0194564052, -0.00948713534, -0.00459970534, -0.0184454806, 0.0114545496, 0.0058944663, -0.0178855844, 0.0026925581, -0.0051090559, 0.0204517767, 0.0162836574, -0.0150472196, 0.0226447042, -0.0148372585, 0.0106613636, -0.000339242863, 0.00932383258, -0.0201562755, -0.0198918805, -0.0238578133, 0.0286946967, -0.0283214338, -0.00231734966, -0.00421088841, 0.0105369417, -0.0177767146, 0.0280881431, -0.0120533286, 0.0132431081, -0.0292234886, -0.00824292097, 0.00366071239, -0.00519848382, -0.00683540339, 0.0102336649, 0.00979819, 0.0132897664, 0.0183832701, -0.010708021, 0.0213538315, -0.0250864755, 0.0172790289, -0.012628777, -0.00553675462, 1.80739171e-05, 0.029130172, -0.00370931462, -0.0126210013, 0.0078463275, 0.0154049313, -0.0153816016, -0.0183210596, 0.00220848084, 0.00498463446, 0.00807961822, -0.0166724753, 0.00280142669, 0.013701912, -0.011236812, 0.0459737256, 0.0179944523, 0.0196585897, 0.0217426494, -0.0113534573, -0.00241260976, -0.0245576836, -0.00540455664, -0.00740696443, 0.0106846923, -0.0305454656, 0.00348574482, -0.00611220393, 0.0100237029, -0.00883392338, -0.000348234258, 0.0131886741, -0.00774134742, 0.0157548655, 0.0286946967, -0.0104825078, -0.00580503838, -0.01017923, 0.037233118, -0.00171662727, -0.0232201535, -0.0173412394, -0.00660600141, 0.0111046145, -0.0241844207, -0.0212294105, 0.00510127936, 0.0124576977, -0.00815738179, -0.0124888029, 0.00579726184, 0.0105680469, 0.00748861628, 0.000472655724, -0.0138030052, -0.0231268369, 0.011641182, 0.00466191629, 0.00392899616, -0.0122088548, 0.0218826234, -0.0107002445, -0.0129553834, -0.00404369738, -0.0169679765, 0.0381662808, 0.00529568829, -0.019969644, 0.0217737537, -0.050546214, 1.59931387e-05, 0.0255219508, 0.000477515918, 0.00113437371, -0.00430031633, 0.0169057641, -0.0240444448, -0.0270461123, 0.0122632897, -0.0034449189, 0.0044519552, -0.0164236315, -0.00184785295, 0.0326295272, -0.000124360697, 0.0081418287, -0.0108713247, -0.0229402054, 0.00359461363, -0.0157470908, -0.0318518914, 0.0250242651, -0.0144873224, 0.0144017832, 0.0154360365, -0.0020762831, 0.0152260754, -0.00779966963, -0.0313697569, 0.0102181118, -0.000409715954, -0.0293012522, 0.0111512728, -0.000460991199, -0.0149539029, 0.00984484702, 0.00494575268, -0.0117422743, -0.0103269806, 0.00530735264, 0.0106302574, -0.0121855261, 0.000720769574, -0.011166825, -0.00818848703, -0.00541622145, 0.034464743, 0.0117033925, -0.00484466041, 0.00700259488, 0.0115323132, 0.0156148924, 0.0288346708, -0.0121544208, 0.0110657327, -0.00407869089, 0.00426921109, 0.026875034, -0.0223180987, 0.00426532282, 0.00622107275, -0.0242932886, -0.00335354707, -0.00354795554, 0.0170457382, -0.0117267221, 0.0216182265, 0.00874838326, 0.0142773613, -0.00688206172, -0.0254286341, -0.00184202078, 0.0112990234, -0.00965821557, -0.011711169, 0.00516737858, -0.0303899404, -0.0085850805, -0.0110112987, -0.00389789091, -0.0377930179, -0.0146972844, 0.0224269666, -0.00999259762, 0.0147750471, 0.0181655325, 0.00456082402, 0.00109160389, 0.0224580728, 0.0188031923, -0.00898167398, -0.0129864886, 0.0119133545, 0.014036295, -0.0189742707, -0.00767913647, -0.00107507908, 0.0049613053, 0.0190520342, 0.0276060104, -0.0176056363, -0.000772287836, 0.0295345429, 0.0113379052, -0.0208405927, 0.0127376458, 0.00889613386, -0.00318635558, -0.0209494624, -0.00966599118, -0.000776662, -0.00319607602, 0.00246704416, 0.0145495338, 0.00875616, 0.0107002445, 0.0121777495, 0.00686650909, 0.0131264636, -0.0160659198, 0.0140596237, -0.00676152809, 0.000810197496, -0.0286013819, 0.00990705844, 0.0147128366, 0.000998287695, -0.0136941364, 0.00292196, -0.00878726505, 0.00499629881, -0.0017730057, -0.021027226, 0.00263617956, -0.0124732507, -0.0070337, -0.019036483, 0.0415567644, 0.0309342835, 0.00277226558, 0.00281697954, -0.0336871073, 0.0114001157, 0.00259340974, 0.00301916432, 0.023406785, 0.010638034, -0.0258330032, -0.00016925692, -0.0305454656, 0.0190675873, -0.00721255597, -0.0203895662, -0.00801740773, -0.0036198867, -0.0361755379, 0.00916053, -0.0175434239, -0.00803296, 0.032349579, 0.0170768443, 0.0431431383, 0.0269372445, 0.000611414784, -0.00101967272, -0.0124654742, -0.0159026161, -0.0128231859, 0.0088417, -0.00921496376, 0.0261285044, 0.00543566234, 0.0121777495, 0.00238539255, 0.0344958492, -0.0102725457, -0.00713868067, 0.00552509027, -0.0458804108, 3.60870799e-05, 0.0142618092, 0.0146117443, -0.0307476521, -0.000863659836, -0.00558730075, -0.000424539612, 0.0159726031, -0.00287530199, -0.019425299, 0.0088417, -0.0106846923, -0.0366421193, -0.00627550716, 0.00566506432, -0.0156848785, 0.0172479246, 0.0123643819, 0.0130953575, 0.00383373606, -0.00676541636, -0.00463858712, -0.00872505456, 0.0072592143, 0.018616559, 0.0227224678, 0.0198296681, 0.00988372881, -0.0056495117, -0.000872894248, -0.0208250415, -0.0130720288, -0.0195963793, 0.00823514443, 0.00206267438, -0.016361421, -0.000261479465, -0.0120299989, -0.00587502541, -0.0118589196, -0.00390955526, -0.00465025194, -0.00658656051, -0.0160503667, 0.00517904293, -0.0154593652, -0.0154438131, 0.00433142204, 0.00335743511, 0.00216182275, 0.00386289717, -0.0221314654, 0.00550564937, -0.000877268438, 0.0247132108, 0.0280103795, -0.00820403919, -0.0198141169, -0.02314239, 0.0103658624, 0.00403980911, -0.0107391262, -0.0028364202, -0.00500407536, 0.0208094884, 0.00412923703, 0.0178233739, -0.00399703905, -0.00354795554, -0.00624440145, -0.00721644424, 0.0237022862, 0.00909054279, 0.0072592143, 0.00759359682, 0.0189120602, 0.00451027742, 0.0129009495, -0.0101014664, 0.0156459976, -0.00171371107, -0.000307408482, -0.0151560884, -0.000206923563, 6.70101872e-05, -0.00252925488, 0.00617830269, 0.010513613, -0.0102025587, -0.00681985077, -0.00472023897, -0.0170457382, 0.00369765, 0.00305610197, 0.0258485563, 0.00510516763, -0.0231734961, 0.0201718286, 0.0197208, -0.000359412748, -0.00678874552, -0.0281192474, -0.0133908587, -0.00470857415, 0.000356982637, -0.00183327228, -0.0136241494, -0.0136630312, 0.00131128542, -0.00547843194, 0.0228468888, -0.00236984, 0.0168124493, 0.00893501565, -0.00898945, 0.0177145042, 0.00919941068, 0.00532290526, -0.0124654742, 0.00541233318, 0.00785021577, 0.00597611768, -0.00329911266, 0.0213849377, -0.0118900249, -0.0173101351, 0.0261440575, -0.00317274709, 0.017170161, -0.00505073322, 0.0117033925, 0.0307787564, -0.0206073038, 0.0189898238, 0.00106244255, -0.0219914913, 0.00835956633, -0.000593432, -0.00942492485, -0.00312803313, -0.00274699228, 0.00691316696, -0.013033147, 0.00144153915, 0.000341916, 0.0142929144, -0.0161903407, -0.000699384662, -0.0129553834, 0.018227743, -0.0024651, 0.00299194711, 0.014370678, 0.00388817047, -0.000689664215, -0.0128620677, 0.00857730396, 0.00125976722, -0.0134297404, -0.0154360365, -0.00986817665, 0.0341847949, 0.00596056506, -0.00651268521, -0.00150472193, 0.0111201676, -0.0234223381, 0.0116878403, -0.00937826652, -0.00125490699, -0.0102880988, -0.0115945237, 0.0111279441, -0.0109257586, 1.8878889e-05, -0.0128465146, 0.00351101789, 0.0104125207, -0.00783855189, -0.00890391, -0.00997704547, -0.0158948414, -0.00628717151, 0.00508183893, -0.0414945558, 0.0108791, -0.00491075916, 0.0081651574, -0.0021987604, 0.0233912338, -0.00901277922, -0.0140829533, 0.0056689526, 0.0207628291, -0.00561451819, -0.0392549671, 0.00686650909, 0.00113048556, -0.0238578133, -0.0136630312, 0.00186243362, -0.0129942652, 0.00126948766, -0.0226136, -0.027932616, 0.00510516763, 0.00309303962, 0.00656711962, -0.020482881, 0.00999259762, 0.00101675652, 0.00867062, -0.0348069, -0.0110112987, 0.0109568639, 0.00306387828, -0.0121466443, 0.0123954872, -0.0145184286, 0.00264784414, 0.0042303293, -0.00541622145, -0.00328744808, 0.0167035796, -0.0224580728, 0.0132197794, -0.0273882728, -0.0175434239, -0.00424588192, 0.0102803223, 0.00825069752, 0.00819626357, -0.00327772764, -0.0173101351, -0.00307554286, 0.00204712176, -0.0299078058, 0.00240094517, 0.00530346436, 0.0138030052, 0.0172012653, 0.00964266248, 0.00557174813, -0.00550953764, 0.000776662, -0.0387883894, 0.0175434239, 0.0017457885, -0.0269061383, 0.00119561236, 0.0194719564, -0.00343325455, -0.0107702324, 0.00515960203, -0.0227691252, 0.00968154427, -0.0126832118, 0.0249620546, 0.022893548, 0.00712312805, 0.00152902305, -0.0292390417, -0.0185387973, -0.0157082081, -0.0165636055, 0.00918385852, 0.0226447042, 0.00766747212, -0.0114623262, -0.00428087544, -0.00575449225, 0.00526847085, 0.00864729099, -0.0213071741, 0.00708035845, -0.00989150535, -0.00736808311, -0.0138107808, 0.0194564052, 0.0109102065, -0.00752749806, 0.00318829971, -0.005820591, -0.00354017923, 9.20402817e-05, -0.0311675742, -0.00336909969, 0.015692655, 0.00380651886, 0.0171079505, 0.00757415593, 0.00710757542, 0.0133519769, 0.00373653183, -0.00231540552, -0.0026867257, -0.0115945237, -0.0123721585, 0.00491464743, -0.009580452, 0.01954972, -0.0102647701, -0.0127609754, -0.0122710662, -0.0234378912, -0.0111279441, 0.0191453509, 0.00888058078, 0.0276371147, -0.00260118605, -0.0116489585, -0.0122010782, -0.0142229274, 0.0326295272, -0.00954934675, -0.00465025194, -0.0255686082, 0.0037151468, 0.0024962055, -0.0263773482, -0.00627939496, 0.0256463718, -0.0132664377, 0.0241533145, -9.58373221e-06, 0.0104280729, 0.011182378, 0.0232201535, 0.00951046497, -0.0109102065, 0.00835956633, -0.0048641013, -0.00368792959, 0.0112212598, -0.0173256882, -0.0272949561, 0.0295189898, -0.00137349614, -0.0216959901, 0.0190675873, 0.00483688386, -0.0280259326, -0.000714451307, 0.00188381854, 0.00248259678, 0.00469302153, -0.0131186871, 0.0207939353, 0.00740307663, -0.00140071334, -0.00228818832, -0.0222403351, -0.00648546824, 0.0187098756, -0.0019586659, -0.0249620546, 0.00414867792, -0.0185854547, 0.00659433706, 0.00106535864, 0.00361405429, 0.00898167398, 0.0248687379, 0.000548718031, 0.00627550716, 0.00912942365, -0.0098992819, -0.00963488594, 0.00145028753, 0.00416034227, 0.0126987649, -0.0381351747, -0.00592557155, -0.000612386852, -0.0105913766, 0.0189898238, -0.00473968, 0.00355184358, 0.0166724753, -0.0128853964, 0.0033030007, 0.0488665253, 0.0101636779, -0.0063804877, 0.0117189456, -0.0226758104, 0.0051829312, 0.0164702889, -0.00201212824, 0.0122010782, -0.00541622145, -0.022349203, -0.00612386828, -0.0200163014, 0.0135230562, 0.00509350328, 0.00392316375, -0.00874060672, 0.0149072455, -0.0120533286, -0.0253819767, 0.00504295714, -0.0070337, 0.0156071158, -0.00903610792, 0.00583225535, 0.0158792883, -0.00552509027, 0.00365099194, 0.00720089162, 0.00708813453, -0.00449083699, 0.00649324432, -0.000975930772, 0.00399703905, 0.0014454273, 0.00514793769, -0.0160814729, -0.000373264367, 0.00511294417, -0.0121155391, -0.0123877106, -0.0179477949, -0.00946380664, -0.0260662939, 0.00639604032, 0.0335626863, -0.00772968261, 0.00188187452, 0.025008712, 0.0304988082, 0.00963488594, -0.0049302, 0.00778411701, 0.018492138, 0.0070337, -0.00317080296, 0.00405147346, -0.00713868067, -0.0248065274, -0.00330688898, 0.0215093587, -0.00881837, -0.0072086677, 0.0110268509, 0.00549398456, -0.00266922894, 0.00573505135, -0.0153504964, -0.00632994156, -0.00441307342, -0.00404369738, -0.00754305068, 0.0135697145, 0.00177981, -0.000476786896, -0.00916830543, 0.0131186871, -0.0321318395, -0.020094065, 0.0117889326, -0.0104358494, 0.019425299, 0.0132975429, 0.0137096886, 0.00532290526, -0.00152513478, -0.00778022874, -0.0377930179, 0.00112465327, 0.0309498366, -0.00563395908, 0.00504295714, -0.00679263379, -0.00794353243, 0.0100470325, 0.00136474776, 0.0137796756, 0.0145806391, -0.0110657327, -0.00183132826, 0.0372642241, 0.0172790289, 0.0060655456, 0.0226136, 0.0196430366, 0.0078735454, -0.00227652374, -0.020482881, -0.0057467157, 0.00551731372, 0.017558977, 0.00870172493, 0.00682762731, -0.00919163506, -0.017419003, 0.00584392, 0.0148528107, 0.0169057641, 0.00767136039, 0.0139740845, 0.01954972, 0.00445584347, 0.0185854547, -0.0121777495, -0.00740307663, -0.0275749043, -0.0105836, -0.0102414405, 0.00530346436, 0.0279637221, 0.0160814729, 0.00699870661, -0.00874060672, 0.0164236315, -0.0115867481, -0.017434556, -0.0152416276, 0.00779966963, 0.00530735264, -0.0101870066, 0.0112212598, -0.00546676759, 0.00427309936, -0.0172790289, 0.00546287932, -0.00429642806, -0.0143940067, 0.00527624739, -0.00943270139, 0.0125976717, -0.00451416569, -0.0124654742, -0.00196352601, 0.000141675206, -0.0147983767, -0.00429254025, -0.0104125207, -0.013033147, 0.00922274, 0.0240599979, -0.00821181573, 0.00964266248, 0.0114389975, -0.0062327371, -0.0288502239, 0.0070375884, 0.00498852273, -0.00483688386, -0.0114389975, -0.0201251693, -0.0143162431, -0.00627939496, 0.0107313506, 0.0193164311, -0.00734475395, 0.00829735585, 0.0116800638, 0.00671875849, -0.00912942365, -0.0234223381, 0.00378707796, -0.0148061533, -0.0281503536, -0.0130253704, -0.00658656051, -0.0120688807, 0.00592168327, 0.00491464743, -0.00496519357, -0.0122244079, 0.0167346857, -0.0181188732, -0.00184104871, -0.00348963286, -0.017434556, -0.00906721316, -0.00468913326, 0.00789298583, -0.0159570519, 0.0121155391, 0.00526847085, 0.0124810273, 0.0101403482, -0.0114312209, -0.00532679353, 0.00625217799, -0.00928495079, 0.0159414988, -0.00851509348, 0.0076752482, 0.004156454, -0.0045686, -0.0136552546, 0.0116956169, 0.00193533686, -0.0248531848, 0.00107410701, -0.00461525843, -0.0250553694, 0.0147828236, 0.00792797934, -0.00432364549, 0.0214938056, -0.00092441251, -0.00206850655, 0.0128542911, 0.0262840316, 0.0152416276, 0.0148061533, -0.00131711771, -0.0108246664, 0.00587502541, 0.0151560884, -0.00782688707, -0.0132819898, -0.0122943949, -0.0349313244, 0.00116159092, -0.00184493687, 0.00912942365, -0.005723387, -0.0142462561, 0.0106535871, 0.0113534573, -0.0151949702, 0.0192075614, 0.00674986374, -0.00883392338, 0.0136085963, -0.00954157, 0.00260896236, -0.0213227272, -0.0214938056, -0.00359072536, -0.00847621169, 0.00382012734, 0.0163925271, 0.0139352027, 0.0202340391, -0.00628328323, 0.00410590786, -0.00702203577, -0.0197519064, 0.00341381365, 0.0424899273, 0.0317430235, 0.0196274836, 0.022224782, 0.00892723911, 0.00531124091, -0.0037151468, -0.0111590493, 0.000887960894, 0.0252420027, -0.019425299, -0.00355378771, -0.0007581932, -0.019285325, 0.0191297978, 0.00927717425, -0.00404758519, -0.0307009928, -0.00208017114, -0.00375402858, -0.00371125853, -0.0125276847, -0.0178700313, 0.00203351304, -0.0192697719, 0.00532290526, 0.00338270818, -0.00714645721, -0.0178700313, -0.0101170195, -0.00783077534, 0.0269061383, -0.0134841753, 0.0248998441, -0.0244021565, -0.0098759532, 0.0123877106, 0.00552897807, -0.0184765849, 0.00704536494, -0.00536956312, 0.00934716128, 0.0305299144, 0.00212099706, -0.0127609754, -0.00161359075, -0.00196547015, 0.0030794309, 0.0313542075, -0.00252342247, -0.00846843515, -0.00340992538, 0.0145728625, -0.00519848382, 0.0178700313, -0.0103969676, -0.000806795375, 0.00883392338, 0.00625217799, 0.00939382, -0.0068470682, 0.00101870066, -0.00958822854, -0.00300749973, 0.00132100587, -0.026206268, -0.0198607743, 0.0326917358, 0.00980596617, 0.0253197663, -0.0102647701, -0.00340409321, 0.000993427588, 0.0191297978, 0.0253042132, 0.0309809409, 0.00156984874, 0.0178233739, 0.0140518481, 0.00805628859, -0.0108479951, 0.00671487, -0.0196119323, -0.0265795328, -0.0190986935, 0.0191142447, 0.000925870554, 0.001096464, -0.0208094884, 0.0191920083, -0.00167288526, -0.00548232, 0.0136708068, -0.00821959227, -0.0273571666, 0.00710368715, 0.0158559587, -0.0286791455, -0.00912942365, -5.61962115e-05, -0.00758970855, -0.0259885304, 0.000494526699, 0.0178389251, 0.00833623763, -0.000956975913, -0.000255647203, 0.00211905292, -0.00682373904, -0.00435086247, 0.0197830107, 0.0283525381, 0.00526458258, -0.0040825787, -1.98053676e-05, -0.0017263476, 0.00824292097, 0.0133830821, 0.00313192117, -0.0117344987, -0.0200785119, 0.00257008057, 0.0131342392, -0.00942492485, 0.00532290526, 0.0064038164, -0.00715812156, -0.0112134833, -0.00968154427, 0.0275126938, -0.0108557716, -0.00302305259, -0.0028344763, 0.000796588894, 0.0128309624, 0.00813405216, -0.00762859033, -0.0109646404, 0.0111201676, -0.0123021714, -0.00498463446, -0.00352657051, 0.00893501565, 0.0292234886, -0.0289124344, 0.0019781068, 0.00207239483, 0.00627161888, -0.00387650589, 0.011236812, -0.00494964095, 0.00101578457, 0.0296278577, 0.000746528734, -0.00502740452, -0.0013200338, 0.00745751103, -0.0280881431, 0.0159726031, -0.0019800507, 0.0123643819, -0.00298222667, -0.00976708438, 0.0352734812, 0.00382790365, -0.0161436833, -0.00867839623, 0.0142695857, -0.0021035, -0.016361421, -0.00809517, -0.0162836574, -0.0159103926, -0.00146584027, 0.0125898961, 0.0132275559, 0.0190831404, -0.00134530698, -0.00548620848, -0.020482881, 0.00740307663, -0.00171954336, -0.000561354624, 0.0209183563, -0.0220381506, -0.00372097897, -0.0108246664, -0.00774523523, -0.0133364247, -0.0190053768, -0.0114234444, 0.0124732507, 0.000797074928, 0.00727476692, -0.0153582729, -0.00514404941, -0.00418755971, 0.00134141883, 0.0296434108, -0.00802518334, -0.0103891911, -0.00413701311, 0.0122321844, -0.0235778652, 0.0108091133, -0.0265173223, 0.00944825448, -0.0103036519, -0.00513238506, 0.00789298583, -0.0339359529, -0.00924606901, 0.0269372445, -0.00916830543, -0.0132586611, 0.0160037093, -0.0308876261, 0.0200785119, 0.00444029039, -0.00712312805, -0.00428476371, 0.0229713097, -0.00179244659, -0.00548620848, -0.00370153831, 0.0122244079, 0.00914497674, -0.00132683816, -0.00902833138, 0.00686650909, -0.0185232442, -0.006551567, -0.00671875849, 0.0127843041, -0.00412534876, 0.0100003742, -0.00328744808, 0.00563395908, -0.00171468314, 0.00473190332, -0.0254752915, 0.0207783822, -0.00280337082, -0.0130253704, -0.00908276625, -0.038072966, -0.0211049896, -0.00742251705, -0.0190209299, 0.00133267045, 0.0146272974, 0.00390372309, 0.00543177407, 0.00618607923, -0.0121388678, 0.000332438562, 0.0156615507, -0.0176211875, 0.00251564616, -0.0332205296, -0.00926939864, -0.0100625847, 0.0285236184, 0.00972042605, -0.0201873798, 0.00651268521, -0.00982151832, 0.00839844812, -0.00272949552, 0.00215793448, -0.0216182265, 0.00577004487, -0.0107313506, -0.0183988214, -0.0039853747, -0.00272171921, 0.00627161888, 0.0211983044, -0.0171235017, -0.0274660364, 0.00893501565, -0.00583225535, 0.00328939222, 0.0124810273, 0.0111279441, -0.00828180276, 0.00260896236, -0.0140596237, -0.0197052471, -0.0236245226, 0.0025914656, -0.00305221369, -0.0117889326, -0.00222403347, 0.00455693575, 0.0134141883, -0.00685484428, 0.00638437597, -0.000683345948, -0.00977486, 0.0174812134, 0.0107857846, -0.00666821236, -0.00275088055, -0.00887280516, -0.0108013377, 0.0229713097, -0.00595667725, 0.00440140907, -0.0112523651, -0.00977486, 0.00241066562, -0.0144873224, 0.0231268369, 0.000843732967, 0.00264395587, -0.00785799231, -0.0235001016, -0.00307359872, -0.0181810856, -0.0111434963, 0.0230646264, -0.0102181118, 0.00706869364, -0.00483688386, 0.0181810856, -0.0112990234, -0.0104125207, 0.0154749183, 0.0233290214, 0.0151094301, 0.0141373873, -0.00970487297, -0.00793575589, -0.000975444738, -6.2636e-05, -0.0608731955, -0.0131808976, 0.0119988937, 0.00474356767, -0.00856175087, 0.00836734287, -0.0051090559, 0.0132586611, 0.0173567925, -0.0131575689, 0.00983707141, 0.00234456663, -0.00136571983, 0.0207006186, -0.0066993176, 0.0143629014, 0.0103114275, -0.0107391262, -0.000668765279, -0.00870172493, -0.0114156678, -0.00553675462, 0.00286558154, -0.0120299989, -0.0213382784, 0.013437517, -0.00502740452, 0.0186321121, -0.000554550323, -0.00681985077, -0.0144095598, 0.0249309484, 0.0171079505, -0.0193164311, -0.00924606901, -0.00284614065, -0.0104358494, -0.0207472779, 0.00883392338, -0.0124965794, 0.012504356, 0.0107235741, -0.000363300933, -0.0120533286, 0.000116098337, 0.0157859717, 0.0078735454, 0.0140674, -0.0127687519, 0.00946380664, -0.00804851297, 0.00902833138, -0.00410201959, -0.000521500828, 0.00694038393, 0.00611998, -0.00267117308, -0.017434556, 0.0198918805, 0.0114701027, -0.0140285185, -0.0288502239, 0.000742154545, -0.00622884883, -0.00228624418, 0.0248220805, -0.0024223302, 0.0131653445, 0.0195808262, -0.000846163079, 0.00743807, -0.0159414988, 0.0035460114, -0.00389205851, 0.00233095814, 0.00724366121, 0.00365488022, 2.35112802e-05, 0.00280142669, -0.00781133445, 0.0182121899, 0.00602277601, 0.0174656622, -0.0198296681, 0.00051858474, 0.00102258881, -0.00919941068, 0.00898167398, 0.0158093013, 0.00345852762, 0.0169368703, -0.00734475395, 0.00377735752, 0.0207006186, -0.0145806391, 0.00729420781, -0.00861618575, -0.012045552, -0.000158199939, 0.00103716948, 0.0185387973, -0.00996926893, 0.0258641094, -0.00903610792, 0.0107235741, -0.00540455664, 0.00849176385, -0.00751194498, 0.00421866495, 0.0103192041, 0.0311520211, 0.0209650155, -0.00368404156, -0.0175434239, 0.0115400897, 0.0159570519, -0.0059877825, -0.00198588311, 0.005820591, 0.0178544782, 0.00559118902, -0.0288968831, -0.00339437276, -0.0175434239, 0.0162681043, 0.0157937482, 0.00183230033, -0.0187098756, -0.0232046, -0.000846163079, 0.00155138, 0.0269527975, 0.0218981765, -0.00715423329, 0.00362377474, -0.02447992, 0.000462692289, 0.0302966237, 0.0106224818, -0.0112212598, -0.0022259776, 0.00786965713, 0.00521792471, -0.0218048599, -0.0140907299, -0.000171079504, -0.00373847573, 0.0151483119, -0.0259107668, 0.0128231859, -0.00246704416, -0.00818848703, -0.0110890623, 0.0102880988, 0.00719311507, -0.0186787713, 0.0128542911, -0.0068703969, 0.0117656039, 0.0139585314, 0.0152727328, -0.0283836443, -0.00930827949, 0.00864729099, 0.00619774358, -0.00325051043, 0.000338270824, -0.015373826, -0.0131964507, -0.000328064372, 0.0104747312, 0.0114778792, 0.0108635481, 0.012978713, 0.0372642241, 0.01502389, -0.0111979311, 0.00606943388, -0.00282475585, 0.00475523248, 0.0258796625, 0.0141918221, 0.00960378069, 0.00834401324, -0.00311442441, -0.0180100054, 0.0155060235, 0.00724366121, -0.0100470325, -0.00376569293, 0.0110112987, 0.0135697145, -0.0144717703, 0.00435863901, -0.0126598831, -0.019036483, 0.00230179681, 0.00422255322, -0.0193475354, 0.0044752839, 0.0136008197, -0.00329716853, 0.00275088055, -0.0034721361, 0.0106769158, 0.00213266141, -0.0209494624, 0.0125821196, 0.0113456808, -0.0186321121, 0.00610442739, 0.0112134833, -0.00854619872, -0.00214043772, -0.0015193026, 0.0307787564, 0.0108091133, -0.0125665665, 0.013701912, 0.00916053, 0.000341429957, -0.000931702845, 0.0161903407, 0.00340409321, 0.0221470185, 0.00797852594, 0.00250398181, -0.00255063968, -0.0193786416, -0.0125510143, -0.00542010972, -0.0108868768, 0.00396787794, -0.0114701027, -0.0122477366, 0.00153679936, 0.00230568508, 0.0185076911, -0.0145262042, 0.0123177236, 0.00957267545, 0.0273571666, -0.00739141181, -0.0102025587, 0.00978263654, 0.000517126638, -0.000669737346, -0.0174656622, -0.00457637664, 0.0181344263, -0.00461525843, 0.0167657901, -0.00240483345, 0.00233873446, 0.0170612913, -0.0167035796, 0.00267311721, 0.0284614079, -0.00331660942, -0.00215404644, 0.0115556428, -0.000941423234, -0.0109024299, -0.00163011544, 0.00369570591, 0.00118589192, -0.00531124091, -0.00673819939, -0.00845288206, 0.0177145042, 0.00804851297, -0.0115789715, -0.00783077534, -0.0033224416, 0.00729031954, 0.00113826187, -0.0067731929, -0.00309109548, -0.0210116729, -0.0169679765, -0.0116256298, 0.00432364549, -0.00689761434, 0.00195477763, 0.00892723911, -0.00401259167, -0.00404369738, -0.00440918515, -0.0139818611, -0.0174967665, 0.0181188732, -0.00916053, 0.00353240268, 0.00741862925, -0.00491464743, -0.0207317248, 0.0103347572, 0.00536567532, 0.00299000298, -0.00234067859, 0.00674208766, 0.00587502541, -0.0198918805, 0.00940159615, -0.00628717151, -0.0166569222, -0.0126754353, -0.00497297, -0.00137738441, -0.00201990455, -0.0105058365, 0.0131186871, -0.00644658646, -0.0025175903, -0.0163458679, 0.0156771038, -0.0145106521, -0.0171546079, 0.0276060104, -0.0180100054, -0.0098604, 0.00421088841, 0.00243010651, -0.0196430366, 0.013437517, -0.00867839623, -0.00161553477, 0.0129242782, 0.00910609495, 0.0009287867, -0.000836928666, -0.00328744808, -0.000317128899, 0.00630272413, -0.0140596237, -0.00578170922, -0.000298660074, -0.003126089, -0.0241999719, 0.0104902834, -0.0213382784, 0.0150472196, -0.00955712236, -0.02035846, 0.00412923703, -0.00671875849, 0.013911874, 0.00135211123, 0.0178544782, 0.000134020374, -0.0064038164, 0.00691316696, 0.0107935611, 0.0131653445, -0.00615108572, -0.00962711, 0.00231346139, 0.00779966963, 0.00953379367, 0.00290057505, 0.00148333702, -0.0174967665, -0.0117967092, -0.0252575539, -0.00797852594, -0.0171857122, 0.00626384234, -0.00742251705, -0.000203156902, 0.00138127257, -0.0143317962, -0.0160503667, 0.00790076237, 0.0673742145, 0.013103134, 0.00285391696, -0.0039114994, 0.00912942365, -0.0155138, 0.00278198603, 0.0438585617, -0.000869006093, 0.0126676587, -0.0139507549, -0.00912164804, 0.00791242719, -0.0139040975, 0.00762081379, 0.00757026765, -0.0350868478, -0.008414, -0.0131264636, -0.00225319481, 0.0182121899, -0.00802518334, 0.00664488319, 0.00946380664, 0.00706869364, -0.00542399753, -0.0201096181, -0.00554841897, 0.00306971045, 0.0195808262, -0.028336985, 0.00788132101, 0.00110618444, -0.00174967665, -0.0132819898, 0.0146428496, 0.0200629588, 0.00712312805, 0.0161436833, -0.00589835458, 0.0254752915, 0.00465413975, -0.00437030336, -0.0163925271, 0.0219448339, -0.00676930463, 0.0161125772, 0.00226097112, 0.0039853747, -0.0200163014, -0.000367432105, -0.0113145756, -0.0132275559, 0.0147594949, 0.0108246664, 0.00350129744, 0.0150083378, -0.00624440145, 0.00902055483, 0.0375441723, 0.00221625715, 0.00109257584, 0.00629106, 0.0185699016, -0.0158326291, -0.00488743, -0.0175123196, 0.0176367406, -0.0270772185, -0.0166102648, 0.000657586788, -0.0164547376, -0.00795519631, -0.00960378069, 0.01223996, 0.00546287932, -0.00183521642, 0.00838289503, 0.00815738179, -0.00588668976, -0.00802518334, 0.0126987649, 0.000468038517, -0.0213538315, -0.0130487, -0.00305415783, -0.00344880717, -0.00119075214, -0.00617441442, 0.0126987649, 0.000567672891, 0.00766747212, -0.00901277922, 0.00917608198, 0.0230801795, -0.0173101351, -7.86747e-05, 0.0123099471, 0.0207628291, -0.00625606626, 0.0140829533, 0.00503906887, -0.00944825448, -0.000863173802, 0.00112173718, 0.0247443169, -0.00106049853, 0.0147983767, 0.00271588704, 0.0106613636, -0.0154904705, -0.00957267545, 0.0202962495, -0.00237761624, -0.0101559013, -0.00233290228, -0.00245537958, -0.00787743274, -0.00164566806, -0.0100859143, 0.0210427772, 0.0141140586, -0.0156304445, 0.00764803123, -0.00179827877, 0.0103658624, 0.006551567, -0.0185543485, -0.0030794309, 0.0117656039, 8.66484879e-06, -0.0261129532, 0.026330689, -0.0025448075, -0.02447992, 0.0172168184, -0.0153349442, -0.00726699037, -0.00965043902, 0.0132353324, 0.0125976717, 0.000551148143, 0.013437517, 0.00460359361, 0.0280881431, 0.00504684495, 0.0198141169, -0.00781522226, 0.0109490883, 0.0102025587, 0.00398926297, -0.00821959227, 0.0234689973, 0.00586724933, 0.0153816016, 0.0134608457, 0.0114701027, -0.0127376458, 0.0276993252, -0.00541622145, -0.0295500942, 0.0107002445, 0.026206268, 0.00924606901, 0.00321551692, -0.00305610197, -0.00402814429, 0.0135697145, 0.0137330182, 0.00588280195, 0.0269839019, -0.01502389, -0.0166880265, 0.0197519064, -0.00149305747, 0.00934716128, 0.011112391, 0.0215093587, -0.0118589196, -0.0203429069, 0.00682762731, 0.00510127936, -0.00825069752, 0.0540922247, 0.0100470325, -0.0275282469, -0.00184104871, -0.00595667725, 0.0105991522, 0.0192231145, 0.0136863599, -0.00402036821, 0.00611609221, -0.00549787283, -0.0182588473, -0.0033963169, 0.00961155724, -0.0036684887, -0.00617052661, -0.0123799341, 0.0158715118, -0.00596056506, -0.00115478656, 0.0175434239, -0.0119366832, 0.0280259326, 0.00118686398, 0.00247870851, -0.0181966368, -0.0033030007, 0.000504976138]
24 May, 2024
C++ Program to Implement Circular Queue 24 May, 2024 In C++, Queues are a fundamental data structure in computer science which works on the principle of FIFO (First In, First Out). They can be implemented using both array and linked list. A circular queue is a type of queue in which the last element is connected to the first element, forming a circular structure. In this article, we'll learn about circular queue, how to implement it in C++, and analyze its complexity. What is Circular Queue in C++?In a circular queue is a queue where the last element of the queue is connected to the first element of the queue. As it is a queue, it follows the FIFO (First-In-First-Out) order of operation. It is also known as "Ring buffer" as the resulted data structure is logically circular. Consider a scenario where you're simulating a printer queue. New documents are constantly being added to the queue, and as they are printed, they are removed. In a circular queue, if the queue becomes full and documents are printed, new documents can still be added at the beginning of the queue, as it is circular in nature. Why we need Circular Queue in C++?Circular queue concept is especially helpful when the queue is implemented using an array. In linear implementation, when the rear pointer reaches the end of the queue, we cannot insert new elements even if there are empty locations in the queue. Circular queues address this limitation by connecting the front and rear ends, allowing the rear to go back to the start in when the rear reaches the end of the queue. Concept Behind Circular QueueThere are two different concepts behind circular queue depending upon which data structure it is using in its implementation: For Linked List Implementation, we can directly use the circular linked list where the last element of the list points to the head of the list. For Array ImplementationFor array implementation for circular queue, we use the mathematical concept of modular (or circular) increment. In this concept, a value that is being incremented will wrap around a particular threshold value. It can be achieved using the formula. value = (value + 1) % threshold_value;For Example, if value is 9, and threshold is 10. Incrementing the value by 1 will make it 10 and dividing it with 10 will yield the remainder 0. Basic Operations on Circular Queue in C++The basic operations of the circular queue are same as that of normal queue but the implementation is different. The following table list the basic operations in circular queue: Operation Description Time Complexity Space Complexity Enqueue This function is used to insert an element into the circular queue. O(1) O(1) Dequeue This function is used to delete an element from the circular queue. O(1) O(1) Peek Returns the front element of the queue. O(1) O(1) IsFull Returns true is the queue is full otherwise returns false. O(1) O(1) IsEmpty Returns true is the queue is empty otherwise returns false.O(1) O(1)Representation of Circular Queue in C++The circular queue in C++ can be represented as a class which contains the rear and front index pointers, array to store queue elements, and the member functions to provide the basic operations. class Queue {private: int front, rear; int arr[MAX_SIZE];public ........}Implementation of isEmpty for Circular QueueThe queue is only empty when the front == rear pointer Algorithm of isEmpty if front is equal to rear return trueelse return falseImplementation of isFull for Circular QueueThe queue will be full when the incremented rear pointer is equal to the front pointer. Algorithm of isFull if (rear + 1) % size is equal to front return true;else return false;Implementation of Enqueue for Circular QueueWe insert the new elements at the end of the queue using rear pointer. We first check if the queue is full or not. Algorithm of Enqueue if (isFull(queue)) { print "Queue Overflow" returnelse rear = (rear + 1) % size arr[rear] = new_elementImplementation of Dequeue for Circular QueueThe elements are removed from the queue at the front of the queue. We first need to check whether queue is empty or not. Algorithm of Enqueue if (isEmpty(queue)) { print "Queue Underflow" returnelse front = (front + 1) % sizeC++ Program to Implement Circular Queue Using Array C++ // C++ program to implement the circular queue using array #include <bits/stdc++.h> // defining the max size of the queue #define MAX_SIZE 5 using namespace std; // class that represents queue class Queue { public: // index pointers and data array int front, rear; int arr[MAX_SIZE]; // constructor to initialize the index pointers Queue() { front = rear = 0; } // checking if queue is empty bool isEmpty() { if (front == rear) return true; return false; } // checking if the queue is full bool isFull() { if ((rear + 1) % MAX_SIZE == front) return true; return false; } // enqueue operation void enqueue(int val) { if (this->isFull()) { printf("Queue Overflow!\n"); return; } rear = (rear + 1) % MAX_SIZE; arr[rear] = val; } // dequeue operation void dequeue() { if (this->isEmpty()) { printf("Queue Underflow!\n"); return; } front = (front + 1) % MAX_SIZE; } // peek function int peek() { if (this->isEmpty()) { printf("Queue is Empty!\n"); return -1; } return arr[(front + 1) % MAX_SIZE]; } // utility to print queue void print() { if (this->isEmpty()) return; for (int i = (front + 1) % MAX_SIZE; i < rear; i = (i + 1) % MAX_SIZE) { printf("%d ", arr[i]); } cout << arr[rear]; } }; // driver code int main() { Queue q; q.enqueue(11); q.enqueue(11); q.enqueue(11); q.enqueue(11); q.enqueue(11); q.enqueue(11); q.dequeue(); q.dequeue(); q.enqueue(123); q.print(); return 0; } OutputQueue Overflow! Queue Overflow! 123C++ Program for Circular Linked List Queue ImplementationThis C++ program demonstrates the implementation of a queue using a circular linked list. It includes operations to enqueue (add) and dequeue (remove) elements, as well as check if the queue is empty or full. The circular nature of the linked list ensures efficient use of memory by reusing nodes, without the use of any extra concept like in the array implementation C++ // C++ Program to Implement the circular queue using // circular linked list #include <bits/stdc++.h> using namespace std; // linked list node class Node { public: int val; Node* next; Node(int v) { val = v; next = nullptr; } }; // class representing circular queue class Queue { private: // pointer to the end of the linked list. Node* rear; public: // constructors Queue() { rear = nullptr; } // checking if the queue is empty bool isEmpty() { if (!rear) return true; return false; } // enqueueing data in ciruclar linked list queue void enqueue(int val) { // creating new node Node* newNode = new Node(val); // only condition for the queue overflow // is when the dynamic memory allocation fails if (!newNode) { cout << "Queue Overflow!\n"; return; } // inserting depending on the multiple cases if (this->isEmpty()) { newNode->next = newNode; rear = newNode; } else { newNode->next = rear->next; rear->next = newNode; rear = newNode; } } // dequeing data void dequeue() { if (this->isEmpty()) { cout << "Queue Underflow\n"; return; } // code for different cases if (rear->next == rear) { delete rear; rear = nullptr; } else { Node* temp = rear->next; rear->next = temp->next; delete temp; } } // returning the first element in the queue int peek() { if (this->isEmpty()) { cout << "Queue is Empty!" << endl; return -1; } return rear->next->val; } // utility function to print the queue void print() { if (!rear) { cout << "Queue is Empty!" << endl; return; } Node* temp = rear->next; do { cout << temp->val << " "; temp = temp->next; } while (temp != rear->next); cout << endl; } }; // driver code int main() { Queue q; q.enqueue(2); q.enqueue(4); q.enqueue(3); q.enqueue(6); q.enqueue(5); cout << "Queue after all enqueue: "; q.print(); q.dequeue(); cout << "Queue after one dequeue: "; q.print(); return 0; } OutputQueue after all enqueue: 2 4 3 6 5 Queue after one dequeue: 4 3 6 5 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue
https://www.geeksforgeeks.org/cpp-program-to-implement-circular-queue?ref=asr10
PHP
C++ Program to Implement Circular Queue
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0489476286, -0.00237171934, -0.0133354645, 0.0494423434, 0.0354448333, -0.0106290849, 0.0146086263, 0.0203269441, -0.0193084143, 0.00987246353, -0.0258561056, -0.013015355, 0.0171258505, -0.0420798287, -0.020850759, 0.000270546967, 0.00317563023, 0.0265399758, 0.00709696952, -0.0178970229, 0.0113493316, 0.00119768188, -0.00723883649, 0.00838832, -0.0423999391, 0.0119167976, 0.0155253028, 0.00351938396, -0.0427200459, -0.0139538571, 0.023149725, 0.019104708, -0.00240627653, -0.0340770967, 0.00498715788, -0.0106145348, 0.0194975697, -0.0197158251, -0.0240227506, 0.00311197201, 0.0212581698, 0.00533636846, 0.0080463849, -0.0206907038, 0.0161218699, 0.0328548588, 0.0083373934, -0.0309342034, 0.0149723869, -0.0098433625, 0.0123387603, 0.00523815304, 0.0782230869, 0.0246193185, -0.0204433464, -0.00279913796, -0.0137065006, -0.00605297694, 0.0131826848, -0.0308178, -0.0100543434, -0.0314580202, -0.0236153398, -0.0343681052, 0.026612727, -0.015670808, -0.0693182275, 0.0316035226, 0.0460957475, -0.0164274294, -0.0512756966, 0.00207889196, -0.0176642165, 0.013611922, -0.00691872695, -0.00217710738, 0.0075225695, 0.020836208, -0.0151615422, 0.0376856, -0.0296683162, 0.0206325017, -0.0264526717, -0.00373945921, 0.0112111019, -0.0250267312, -0.00390678924, -0.0490640327, 0.0632652491, 0.0400718711, -0.00312106614, -0.0056492025, 0.0222039483, -0.0192793123, -0.00504172221, 0.0103235263, 0.0194830187, 0.0104908561, -0.014492223, 0.0466195606, 0.0175478123, 0.00910856575, 0.0256232973, -0.00734432694, 0.00452881958, -0.00388860097, 0.0117058167, 0.00894123595, 0.0207052547, 0.0105927093, 0.0154671017, -0.00412868289, -0.0348628163, 0.0660007298, -0.0406829864, -0.0359977521, 0.0129426029, -0.0513921, 0.00923952, 0.00732250139, 0.0177078675, 0.0216801334, -0.0124042369, 0.0274130013, -0.0557863303, 0.038180314, 0.0185517911, -0.00378311053, 0.0229896717, 0.00408139406, -0.0111747263, -0.00670047058, -0.0157435592, -0.0253031887, 0.00906491466, -0.00749346893, 0.0236589909, 0.0592784323, 0.0168930441, 0.0254195929, -0.0100252423, -0.0523233265, 0.000792088744, 0.0121714305, -0.0277040098, 0.0243719611, -0.013299088, 0.0337278843, -0.00364124379, -0.0142448656, -0.0453391224, 0.000918495585, 0.0280823205, -0.00443424191, 0.0184353888, -0.019119259, 0.00885393377, -0.00291917892, -0.004776177, -0.0449608117, -0.00586745888, -0.0384131223, -0.00969785824, -0.0350956246, -0.0504317731, 0.0118440455, 0.0653605089, -0.00683142431, -0.0764188319, 0.0382967182, -0.0232661292, 0.0388205349, 0.0192502122, 0.0299738757, -0.0130808316, -0.00719154766, 0.045222722, -0.0245174654, 0.0125351911, 0.0233679824, -0.0184644889, 0.0247066207, 0.00953052845, 0.0355321392, 0.0433020629, -0.0128553007, 0.0326511525, -0.0170530975, 0.00668955781, -0.00409958232, -0.0038776882, -0.00100125116, 0.0319527313, 0.00476162648, 0.0028755276, -0.00472888816, -0.0437094755, 0.0223785527, -0.0278204121, 0.0284460802, -0.0163837783, -0.0279077142, -0.00917404331, 0.00806821, 0.0166747868, -0.0233388823, -0.0289698951, -0.0131899603, 0.0315162204, -0.0100979945, -0.0332040712, 0.0125497412, 0.00675867219, -0.0417888202, 0.0285042822, 0.00390315149, -0.0347464159, 0.0132772624, -0.00421598554, -0.0250412803, 0.00763169769, 0.0126224933, 0.0435057692, -0.0331458673, -0.0575614795, -0.0519159175, 0.0130881071, 0.0264235716, -0.00199886458, -0.0241973568, 0.0226550121, 0.0142303156, -0.0111747263, -0.00106399984, -0.0119531741, 0.0114802849, -0.0180570781, -0.00922496896, -0.00602751365, 0.0134518677, 0.0273111481, 0.0378020033, -0.0604133643, 0.00413232064, -0.0104690306, 0.0433311649, 0.0146959294, -0.00772627536, 0.00346481986, -0.00330476533, 0.013910206, 0.0119895497, 0.0101125455, -0.022582259, -0.0262344163, 0.0131463092, -0.012178706, -0.0189301036, -0.0281259716, -0.00636944827, -0.0209235102, 0.0198467802, -0.00388132571, 0.0363469608, 0.00910129119, -0.00370308314, 0.0325929523, -0.000365806773, 0.0205743015, -0.0647784919, 0.0466777645, -0.0197594762, 0.0186681952, -0.0210108142, 0.00842469558, 0.0100106923, -0.0394898541, 0.00399409141, 0.00624577, 0.00471797539, 0.0222330485, -0.0308760013, 0.0230915248, 2.88450815e-06, -0.0110583231, -0.0183771867, -0.0437676795, 0.00441241637, -0.0423708372, 0.0125133656, -0.0244301632, -0.00382676162, -0.016834842, 0.000886211812, 0.0699002445, 0.0373945907, -0.0137501517, -0.0452809222, -0.0263653696, 0.0131463092, 0.0184353888, -0.048132807, 0.027209295, -0.00779902749, -0.0253468398, -0.0195703208, 0.0178824719, -0.0334368758, 0.0274857525, -0.0279804673, 0.0089630615, -0.0445243, -0.0352993309, -0.0050853733, -0.0247502718, 0.0162382741, 0.0559609346, 0.000602933229, -0.0462412499, -0.0262635164, 0.00274275499, 0.00463794777, -0.0299447738, 0.0402464755, 0.0251285844, -0.0158017613, 0.0418761224, 0.0324765481, -0.00882483274, -0.00136319292, -0.0215346292, -0.0133718401, -0.0438258797, -0.00677686045, 0.0223058015, -0.0676885769, -0.0532545559, 0.0048343786, -0.00454700785, -0.0266418271, -0.02395, 0.017373208, 0.00238445099, -0.0102798752, 0.0299156737, -0.0413232073, -0.0217383355, -0.0184790399, 0.0303521864, 0.0190028548, 0.00140411605, 0.0318363309, 0.0105563328, 0.00966148172, 0.03937345, 0.00585290836, 0.00291372254, -0.00798090827, 0.0113347806, -0.00812641252, 0.0180861782, -0.000896215206, -0.0422253311, 0.0223931037, -0.007529845, -0.00856292527, -0.0365506671, -0.0230624229, -0.000674776, -0.00319927465, -0.0232370291, 0.0206470527, 0.0031374353, -0.027209295, -0.0419052243, -0.00974878483, 0.012462439, -0.016762089, 0.0238772463, -0.0116839912, -0.0116694411, 0.0446698032, 0.00524542807, 0.021432776, 0.00894851144, -0.0134591432, -0.0442041904, 0.00645675091, -0.0302066822, -0.000638399913, -0.0108182412, 0.0534291603, -0.0138883805, 0.00532909296, 0.0181589294, 0.00119950064, 0.0233243313, -0.0118076699, -0.0111674508, -0.0654769093, 0.0171258505, 0.0263362695, 0.0375692, 0.0310797077, -0.03011938, 0.0148414336, -0.0113857072, 0.0218256377, 0.0192938633, 0.0219274908, 0.0246629696, -0.0504026711, -0.0244883653, 0.0117640188, 0.0155689549, 0.0295519121, -0.0296101142, 0.0445534, -0.00658406736, -0.0303812865, -0.0222767, 0.00443787966, -0.0137137752, 0.0248375759, 0.00159054331, 0.00230806111, -0.00391406426, -0.00468159933, 0.0210399143, -0.0278786141, -0.0154962027, 0.0335532799, 0.0025954321, 0.0391406417, -0.00688962638, -0.0377147, 0.0387041308, -0.00615119189, -0.0461830497, -0.00322291907, 0.0144121954, 0.0410904, 0.0139902337, -0.0256232973, -0.0185808931, 0.0109346444, -0.0451354161, -0.00383403688, 0.00132408866, -0.00276094303, -0.0115093859, -0.0119022476, -0.00471433764, -0.000334205077, 0.0430110544, -0.00166966126, 0.0208944101, -0.0279659163, 0.0155253028, 0.010163472, -0.00959600508, 0.0232224781, -0.000192452106, -0.00847562216, 0.0186099932, -0.0058165323, 0.00119404425, 0.0057328674, -0.0176060144, -0.0225095078, 0.013328189, 0.00587473391, 0.0359977521, 0.00799545832, 0.014463122, -0.0107818646, 0.0122369071, -0.0197594762, -0.0544476882, -0.0636144578, 0.0221457463, 0.0100907199, -0.000244174327, 0.00256087468, 0.0120986784, 0.0131608592, 0.0120477518, -0.000123223916, -0.00866477843, -0.00801728386, 0.00744254235, 0.007380703, -0.0055837254, -0.0260743611, 0.0320691355, 0.0293773077, 0.00189519278, 0.00960328057, -0.0143976454, 0.0371617861, 0.0165729336, -0.0169512443, -0.0160927698, 0.0604715645, -0.0148705337, -0.0353284329, 0.000210526458, 0.00911584124, -0.0294937119, -0.032942161, 0.0106800115, 0.0473179817, -0.0177660696, 0.0261907652, 0.00117403746, -0.0123387603, -0.0190756079, 0.00554734934, -0.0330876671, 0.000966693857, 0.0418761224, 0.00472888816, 0.0228732675, 0.00755894557, -0.00982881244, 0.0211417675, 0.0219711419, -0.00683142431, 0.00499807112, -0.0269473866, -0.0346300118, -0.000614755438, -0.00966148172, 0.00227714144, -0.00975606, -0.0359104499, -0.00224076537, 0.00949415192, 8.70752e-05, 0.0148050571, -0.0170676485, 0.0442041904, -0.00566375302, -0.00342662516, 0.000940321188, 0.0313707143, 0.0141721135, -0.00476890197, 0.0151615422, -0.022524057, 0.00300284382, 0.0113711571, 0.0199195314, 0.0145940762, -0.0114730103, 0.00221712096, 0.00534728123, -0.0324765481, -0.00790815614, -0.021985691, 0.0114657348, 0.00632943492, 0.0224804059, 0.0410322, 0.00327202678, -0.0340188928, 0.0296828672, 0.0142230401, -0.0246629696, -0.00832284335, 0.00349028315, -0.0180716272, 0.0198467802, -0.0201668888, 0.022611361, 0.0246920716, 0.0294355098, -0.0131099327, -0.0196285229, 0.00960328057, 0.0142375911, -0.00143230741, 0.0196576249, -0.00418688497, 0.000496078574, -0.0193520654, 0.00262817042, 0.001408663, -0.0218692888, 0.0207489058, -0.00485620415, 0.0285042822, -0.00735160196, 0.0358231477, -0.00240445766, -0.0054600467, -0.00806093495, -0.019701276, -0.0155689549, -0.00792270619, 0.00288098422, 0.0119822752, 0.0329130627, -0.026612727, -0.0290572, 0.00567830307, 0.00668955781, 0.0112547539, -0.00838104449, -0.0218547378, -0.0345427096, 0.00130771939, 0.032360144, 0.0190174058, 0.0189010017, -0.00444151741, 0.0117712934, 0.00668592, -0.0224513058, -0.0119022476, -0.0314871185, -0.019119259, -0.0135246199, -0.0134809688, 0.0193811655, 0.0327093564, -0.0271365419, -0.0142666912, -0.00456155837, -0.0203851443, 0.0129426029, -0.0333495736, 0.0302939843, -0.029508261, -0.0120477518, 0.0384713225, -0.00546732219, 0.00777720194, -0.00899943803, 0.00851927418, -0.00874480512, 0.0296974164, -0.0166311357, 0.102900602, -0.0123387603, -0.00295191747, -0.0368998758, 0.0136701241, 0.00144412962, -0.0163837783, -0.000248266617, 0.0150887901, 0.0083446689, 0.0216219313, -0.0184935909, -0.0225386079, 0.00137592456, -0.0368416756, -0.00417597173, 0.0139975091, -0.0172422528, -0.0034575446, 0.0262198653, 0.00465249829, -0.0117130922, -0.0175332613, -0.00945777632, 0.00268637226, 0.0185663421, 0.0157290101, -0.0383258201, -0.0288825929, 0.0122223571, 0.00517995143, -0.0262489673, -0.0178824719, -0.019672174, 0.0148850847, 0.00119222549, 0.00513993762, -0.00698056631, -0.0316617228, 0.00990883913, -0.0157581102, -0.00776265142, 0.00857747532, -0.0105636083, -0.00167602708, -0.0135755464, -0.0269037355, 0.0117712934, -0.0132117858, 0.0172131527, 0.00831556786, -0.0282132737, -0.0232952293, -0.0133645656, 0.0258270036, -0.00734068919, -0.00738434074, 0.00119040662, -0.0257979035, -0.0141866645, -0.0170530975, -0.00435785204, 0.042283535, -0.00147050235, -2.28345052e-05, -0.039344348, -0.0177515186, 0.0219129398, -0.0212581698, 0.00501625892, 0.0193375144, 0.0143321687, -0.0100616189, -0.0113129551, -0.0143321687, -0.00762442267, -0.0448735096, -0.0158599634, -0.00146322709, -0.00643492537, -0.0129135018, 0.00432147598, -0.0050853733, -0.0123169348, -0.0307887, -0.00819188915, -0.00483801635, -0.0128625752, 0.00502717169, 0.02668548, -0.00565284025, -0.0280968696, 0.0120186508, 0.0421671309, 0.000190064922, 0.0109200934, 0.0119022476, 0.00636944827, -0.00423053605, -0.0296974164, 0.00760259712, 0.0291008502, -0.0111747263, 0.00502717169, -0.00198249542, 0.00508173602, -0.001736957, -0.0235280376, 0.0239209, 0.00735160196, -0.0238481462, -0.013881105, -0.00483801635, 0.0188137, 0.00154507323, 0.0302648842, 0.0190028548, 0.00742071681, 0.0152924964, 0.0103817284, 0.0075880466, -0.0155544039, -0.0251576845, -0.0280241184, 0.00636217324, 0.0020134151, -0.026670929, 0.00287007121, 0.0211999696, 0.0117130922, -0.0228878185, 0.00949415192, -0.0250703823, 0.0016996715, -0.0115894135, 0.0515667051, -0.00327930204, -0.0167329889, 0.0304394886, 0.0245029163, -0.00115494, 0.027180193, -0.0134009412, 0.0096760327, -0.00944322534, 0.0152342943, -0.00881028268, -0.0132117858, 0.0126661444, 0.0278204121, 0.00836649444, 0.0252013355, -0.0364924669, -0.0252740886, -0.0258852057, -0.0153361475, -0.0410322, 0.0265108738, -0.00525634084, -0.00708605675, 0.00944322534, 0.00302648847, -0.00206252281, -0.00529635465, 0.00901398808, -0.0119531741, 0.0217383355, 0.00742799183, 0.00192065607, 0.00691145193, 0.00838104449, 0.0187846, -0.013924757, 0.0153361475, -0.0113347806, 0.00658770464, 0.0395480543, -0.00269728503, -0.0339315906, 0.0345136076, -0.0230478738, -0.0484820157, 0.0112911295, 0.0108546168, 0.00675139716, 0.0287225395, 0.0085702, 0.00036671618, -0.0125642922, -0.0128334751, 0.0209089611, 0.028373329, 0.0160927698, 0.0152779464, 0.0183917377, 0.010745489, 0.0230915248, -0.0079154307, 0.00623121951, -0.0108327912, -0.00354666612, -0.0178970229, 0.00824281573, -0.0322146416, 0.011582138, -0.00104672124, -0.0106509114, 0.000951234, 0.00100670755, -0.00993794, 0.0268746354, 0.012447888, 0.0294646099, -0.029522812, -0.0035775858, -0.00188064238, 0.000431056338, 0.0250703823, 0.00964693166, -0.0202978421, 0.000824827235, 0.0461830497, 0.0193811655, 0.0138520049, -0.0240955036, -0.0228441674, -0.00894851144, 0.024866676, 0.0195412207, 0.00707514398, 0.00988701358, -0.022029344, -0.0282423738, 0.00280641322, 0.0116330646, 0.01011982, 0.0256960504, 0.0335532799, -0.0186099932, -0.0561937392, -0.0269910377, -0.0228732675, 0.00574741792, -0.0117058167, -0.0307887, 0.00149596552, -0.0383258201, 0.0120404763, 0.0195703208, -0.0326220542, -0.0192356613, 0.011909523, -0.0190174058, -0.0223494526, 0.000392634131, -0.0111892764, 0.00787178, 0.00576560572, 0.00299193105, -0.0299156737, 0.00408139406, 0.0217965357, -0.0207634568, 0.0113347806, 0.0194248166, 0.0125642922, 0.0205161, 0.010745489, 0.0282860268, -0.00964693166, -0.0350374244, 0.0128189242, 0.00549278548, -0.0205452, -0.0113711571, 0.0251431335, -0.000255996536, 0.00479800254, 0.00513266213, 0.0111019742, 0.0268746354, -0.00517631369, 0.00295373634, -0.0433893651, -0.0116548901, -0.028926244, -0.0288971439, -0.00129953481, 0.00910129119, 0.00501989666, 0.0166893378, -0.0322146416, 0.0118440455, -0.0179843251, -0.0404210798, -0.0656515136, -0.00849017315, -0.000913948577, 0.00517631369, -0.0137719773, 0.00203705952, -0.012717071, 0.00197340129, -0.0570376664, 0.0111092497, 0.0197885782, -0.00269182865, -0.0182462335, -0.0132045103, 0.018537242, -0.0414687097, 0.00876663066, -0.0146304518, -0.0307595972, -0.00485984189, -0.0318945311, 0.0173877571, 0.0102434987, -0.0191629101, 0.0113420561, -0.000584290479, 0.022567708, -0.000977606629, 0.0169075932, -0.0512465946, -0.0163110271, 0.0103962785, 0.0204578973, -0.00734432694, 0.00199340819, 0.0241246037, -0.00637308601, 0.0470269732, -0.0429528542, -0.0526434369, -0.0223494526, 0.0132190613, -0.0065658791, -0.0072970381, 0.00644220039, 0.00585290836, 0.0388496332, -0.00689326366, 0.0230042208, -0.0281696226, 0.0216219313, -0.00795180723, -0.00306832092, -0.00815551355, 0.0138738304, -0.00137956219, 0.00123496726, 0.0318363309, 0.01420849, -0.0201086868, -0.0291154, 0.000851654564, -0.0111456253, -0.00512902485, 0.00369944563, 0.0161218699, 0.0314580202, -0.000182448683, -0.013910206, 0.0224076547, -0.0239063483, 0.0215928312, -0.0265690759, -0.0319527313, -0.00957418, -0.00882483274, 0.0178679209, 0.0121932561, -0.0125206402, 0.0152779464, 0.0453391224, -0.00684961258, 0.00217892602, -0.0140848113, 0.0131390337, -0.000138229036, 0.014193939, 0.0211854186, -0.00461976, -0.00815551355, -0.0245320164, -0.00560918869, -0.000839377637, 0.00186791073, -0.0125060901, 0.00382312411, -0.0140629858, -0.0187846, 0.0132408869, -0.0420507267, 0.0212581698, 0.00158963387, -0.00848289765, -0.00483074086, 0.00329203368, 0.0330003649, -8.74730613e-05, -0.0183917377, -0.0151324421, 0.0217092335, 0.000194384585, 0.0113857072, 0.0210399143, -0.00872298, -0.0132045103, 0.0209235102, 0.00913039129, -0.00325565762, -0.00094214, -0.00115130236, 0.0224222038, -0.00530726742, -0.0214618761, -0.017373208, 0.024939429, -0.0140484348, -0.0037940233, 0.0238626972, 0.0044196914, 0.000868023781, -0.00213709357, -0.0123023838, -7.61055417e-05, -0.00873025507, 0.00942867529, -0.0076898993, -0.0262053143, 0.0140920868, -0.0352993309, -0.015016038, 0.0118949721, -0.0320109352, -0.0334659778, -0.0163401272, 0.0275439546, 0.00347573264, -0.0124042369, 0.00326657039, 0.010447205, -0.00674048439, -0.0232079271, -0.0271656439, -0.0054418589, 0.0116621656, 0.0329130627, 0.00323383184, 0.00100852631, 0.012746172, -0.00893396, 0.0900380313, -0.00248084753, -0.0137210507, -0.021418225, 0.0225386079, -0.0170385484, -0.0176642165, 0.0165438335, 0.0223203525, -0.00304831401, 0.0180279762, -0.00809003599, 0.0144340219, 0.0123169348, -0.00592929823, 0.00204979116, 0.0168057401, -0.0209526122, -0.0103380764, -0.00263544568, -0.0199049804, 0.0122587327, 0.0153361475, -0.00740252854, 0.0327675566, 0.0241973568, 0.00556917489, -0.0234989356, -0.0211854186, -0.00529635465, 0.0188864507, -0.0127243465, 0.0136337485, -0.0192647632, 0.00648948969, 0.0228150655, 0.010403554, 0.00773355085, -0.00518358871, 0.0170967486, 0.0107600391, 0.0080463849, -0.00514721265, 0.00101489213, 0.00197340129, 0.00459065894, 0.0113493316, 0.00197522016, 0.00155052962, -0.0157726612, 0.0143830953, -0.00357212941, 0.0048343786, -0.0147832315, 0.00937774871, 0.0108837178, -0.00397590362, -0.00800273381, 0.00504899723, -0.0229169186, -0.00982881244, -0.000608844333, -0.0228296164, -0.000892122916, 0.00534000574, -0.0268600844, -0.0279950183, 0.013597372, -0.025434142, 0.00493259402, -0.016194623, 0.0239936505, 0.0100325178, -0.00981426146, -0.0162964761, 0.0121205039, -0.00323928823, -0.00611845357, 0.00867932849, -0.0245611165, 0.0101707466, 0.0126443189, 0.00214800658, 0.0220584441, 0.00493623177, -0.0119604496, -0.00566375302, 0.00238445099, -0.00345208822, 0.00923224445, 0.00744981738, -0.00556553761, -0.00572195463, 0.0321855396, -0.0112256529, 0.0111965518, 0.0184935909, 0.00267364061, -0.004627035, -0.00218802015, -0.015045139, 0.0175623633, -0.0075225695, -0.00323019433, 0.0178970229, -0.0136337485, -0.000333295669, 0.0235280376, 0.0154671017, 0.0201814398, 0.0369871818, 0.00402683, 0.0207052547, 0.0137938028, 0.0235280376, -0.00718063489, 0.00563465199, 0.00172604411, -0.0203560442, -0.0031665361, -0.0226550121, 0.00183335354, 0.026612727, -0.00527816638, -0.00715880888, -0.0109419199, -0.00037421874, 0.0229023695, 0.00346118235, 0.00759532163, -0.00851199869, 0.0174605101, -0.012149605, -0.0159763657, -0.0302939843, -0.00215164409, -0.0073625152, 0.0260598101, 0.0284460802, -0.0216510314, -0.00785723, 0.0205888506, -0.017416859, 0.000878936611, 0.00235171244, -0.0030737773, 0.00925407, -0.00655132858, 0.00519813923, -0.000918495585, -0.0239791, -0.0305558927, 0.0030446765, 0.00645311363, 0.00472888816, -0.012731622, 0.0140411602, 0.00531818, 0.00970513374, -0.0257542524, -0.0155398538, 0.00140320661, 0.016762089, 0.0198613293, -0.023164276, -0.00229714834, -0.00663499394, -0.0153652485, -0.0348919183, -0.00898488704, 0.0197885782, -0.0116039636, 0.0033447789, 0.010432655, 0.0245756675, -0.0101852976, 0.0200068336, -0.00384131214, 0.00391042652, -0.000191201674, -0.0070242174, -0.00551097328, 0.00811913703, -0.0160927698, -0.012433338, 0.00849017315, -0.0555826239, -0.0129862539, 0.0123314848, 0.0116185145, 0.00760259712, -0.00777720194, 0.00040400165, -0.017416859, 0.00764624821, 0.0143467188, 0.0182607826, -0.00478709, -0.0295810141, -0.00267727813, -0.00964693166, -0.00257724407, -0.017940674, -0.0042523616, -0.00283187651, -0.0135537209, -0.0164565314, -0.00402319245, -0.012149605, -0.00401227968, -0.00935592316, -0.00567102805, 0.0148705337, -0.00516176317, 0.0030337635, -0.00542367063, -0.0233534314, 0.00568921631, 0.00656951685, -0.0081773391, 0.0152488453, 0.0256524, -0.00801728386, 0.015598055, 0.0244156122, 0.0111674508, 0.0384422243, 0.0146086263, -0.00297738076, 0.00369398901, -0.0479291, 0.00784267858, 0.023775395, 0.00609299028, -0.00272274832, -0.0160345677, 0.0234552845, -0.0297119673, -0.0262198653, 0.0176205654, 0.0250994824, -0.00456883339, -0.00840287, -0.00416142168, 0.0241100546, 1.80317274e-05, 0.00307741482, 0.00735523971, -0.0227859654, 0.023775395, -0.00405229349, -0.00970513374, 0.0218692888, 0.00634398544, 0.00652586576, 0.0205597505, 0.00799545832, 0.0296537653, -0.010389003, -0.0326220542, 0.0112329284, 0.00902126357, -0.00443060417, 0.0223931037, -0.0161655229, 0.00592202274, -0.0303812865, -0.0270201396, -0.0222185, -0.0210981164, 0.0128043741, 0.0246629696, 0.020254191, 0.0134882443, -0.000562919537, -0.0259870589, 0.011029222, 0.000655678508, 0.00271547306, -0.0127898231, 0.0136701241, 0.0348337181, -0.00421234779, -0.00128589384, 0.000480618706, 0.00508173602, 0.0137865273, 0.0113493316, 0.0191483591, 0.005358194, 0.0137428762, 0.0187991485, 0.0120841274, 0.00613664184, 0.0038776882, 0.0253322888, 0.0304394886, 0.0253759418, 0.0175478123, 0.0546804965, -0.0170967486, 0.00668955781, -0.00950142741, 0.014448572, -0.0156417061, -0.0085047232, 0.0207925569, -0.000458111026, 0.00891941, -0.00029555551, -0.00501262117, -0.0315744206, -0.00246447814, 0.0174896102, -0.00072934007, 0.0100397933, 0.0312543139, 0.00309378398, 0.00689326366, -0.0156417061, 0.0144558474, -0.012731622, 0.00272638584, -0.00673684664, -0.00238263211, 0.00332295336, -0.0305558927, 0.00997431576, -0.0323892459, -0.00172786298, 0.0105199572, 0.00257906271, -0.0018551792, -0.000804820389, 0.00926862098, 0.0134373177, 0.00293191057, -0.00114129891, 0.00476890197, -0.000869842595, -0.02776221, 0.00942867529, -0.00670047058, -0.00707514398, 0.0187263973, -0.0097124083, 0.00284460816, 0.0327093564, -0.0116403401, 0.0170822, -0.0200795867, -0.0142812422, -0.0039613531, -0.0076898993, 0.0123678613, -0.0075225695, 0.0146231772, 0.0246193185, -0.0126152188, 0.0112329284, 0.013597372, -0.00362669351, 0.00723883649, -0.00783540402, 0.018522691, -0.00651131524, 0.00447789347, -0.0032320132, 0.0437094755, 0.0324183479, -0.00490713073, 0.00403774297, -0.0030446765, 0.00381948659, 0.00578015624, -0.00567830307, -0.00736615248, 0.020268742, 0.011865871, -0.00912311673, -0.0119386232, -0.0152779464, -0.0152051942, -0.00559827592, -0.0123605859, 0.0340479948, -0.0212290697, 0.0295519121, 0.00867205299, 0.00642401259, 0.0130008049, 0.0225095078, 0.0474634841, 0.0251431335, -0.0151906433, 0.0311670098, -0.0300320759, -0.0236444399, -0.0145577, -0.0232224781, -0.00653314078, -0.00271365419, 0.00646038866, 0.0071478961, 0.00599113759, 0.0124915401, -0.00462339772, -0.0214618761, 0.0480746031, -0.0282132737, 0.0134518677, -0.0200213846, -0.00629669614, -0.017358657, -0.00312288501, 0.0342808, -0.00410685735, 0.0275148526, -0.023164276, 0.0241828058, -0.0162964761, -0.0203269441, -0.0299156737, -0.0184208378, -0.0254195929, -0.00819188915, 0.0174023081, 0.0103017008, -0.0116112391, -0.019090157, -0.00824281573, -0.00136228348, -0.0235134866, 0.0101125455, 0.0169075932, 0.0128407497, 0.0282860268, 0.00303012598, 0.0147395805, 0.00214982522, -0.00513993762, 0.00404865574, 0.00310651562, -0.0034284438, 0.00740980403, -0.00858475082, 0.0120041007, 0.0163692273, 0.016834842, -0.00718791, 0.00646766368, -0.000289871736, 0.00144140143, 0.0052163275, -0.00860657636, -0.000949415204, -0.0124769891, -0.000437422161, 0.0103380764, 0.001958851, 0.00534364348, -0.028344227, 0.00293191057, 0.00216619461, 0.0158454124, 0.0208071079, 0.015598055, -0.00709696952, -0.0170676485, 0.00635853549, -0.00858475082, 0.00493623177, 0.00127134332, -0.0205888506, 0.00811913703, 0.00424508657, -0.00192975008, 0.00329930894, -0.010687287, 0.00123951433, -0.019672174, 0.0379475094, 0.00929044653, 0.0238772463, -1.77759593e-05, 0.027776761, -0.00494714454, 0.0289116949, 0.00709696952, 0.0152924964, -0.00155234849, 0.000112993141, -0.007529845, -0.0112038273, -0.0198176783, 0.0198613293, -0.0030446765, -0.0163546782, -0.00609299028, -0.0111165242, 0.00886120833, -0.0252013355, 0.00330294645, 0.00932682212, 0.00603478868, 0.010745489, -0.0092176944, 0.00972695928, 0.0261325631, 0.00266454648, 0.00392133929, -0.0288680438, -0.0212581698, -0.00311379088, -0.000685234088, -0.00337569858, 0.00955235399, -0.00342116854, 0.011596689, 0.0109782955, 0.00631488441, 0.0149432858, 0.0146159017, -0.00380857359, 0.00573650515, 0.0195994228, 0.0350956246, 0.0157144591, -0.00733705191, -0.0189883038, 0.00618756795, 0.0190174058, -0.00760987215, 0.00496897, -0.00228623557, -0.0104617551, 0.0128771262, 0.0232952293, 0.0221893974, -0.00338843022, -0.00598022481, 0.015030589, -0.00832284335, 0.0135609964, -0.0167184379, -0.0241100546, -0.00307741482, 0.00413595838, -0.0062748706, 0.0136555741, 0.0087957317, 0.000786177639, -0.0124260625, -0.00735887745, -0.000179947834, 0.0116767157, 0.00458702166, -0.0111892764, -0.0105417827, -0.00612209132, 0.0122296317, -0.00493986905, 0.00122951088, -0.00173331937, 0.00806093495, 0.000745709287, -0.0017806082, -0.00551461102, 0.00992339, -0.00193702534, -0.00106672803, 0.0120186508, 0.0216946825, 0.00652222801, 0.0304103885, 0.0225095078, -0.0013195416, 0.00652950304, 0.00336842332, 0.00477981474, 0.0171549506, 0.00985063799, 0.00104308361, -0.026670929, -0.0036812576, 0.0111456253, 0.03011938, 0.00915949233, -0.0284751821, 0.0158890635, -0.00718791, 0.0258270036, -0.0184935909, -0.00957418, -0.0138229039, 0.00048652984, 0.00796635728, 0.0102071231, -0.0083373934, 0.0102726, -0.000668410154, -0.012717071, 0.0147177549, -0.00154871086, -0.000257360633, -0.0387041308, -0.00245538424, 0.00171967829, -0.0400718711, -0.013611922, 0.00103580835, -0.0151324421, 0.00383403688, -0.00838104449, -0.00575833069, 0.00628942112, 0.000157326474, -0.0263944715, 0.00607480248, -0.00528180413, 0.00374309672, 0.0123387603, -0.0200068336, -0.0145940762, 0.0145504251, 0.000423326419, -0.00842469558, -0.0127388965, -0.00413959567, -0.0152779464, 0.00897761248, -0.00963238161, -0.0182898846, 0.0209235102, -0.0320982374, 0.00716244662, -0.00961783063, -0.0129426029, -0.00695146527, 0.00111765449, 0.0225531589, 0.00429601315, 0.00281005073, 0.00262817042, -0.0346591137, 0.0192938633, 0.000201432442, -0.0268891845, -0.00174423214, -0.013881105, 0.0212872718, 0.028344227, 0.00450699404, -0.011298405, 0.0221893974, -0.02194204, 0.00642401259, -0.00402683, 0.0145649752, 0.00300102518, 0.00441605411, 0.00276094303, -0.00259179436, 0.00849744771, 0.00485256687, 0.00377219752, 0.00310651562, 0.00296464912, 0.00707878172, 0.0165147316, -0.00355394138, -0.011298405, -0.0193375144, 0.0108473413, -0.00883210823, 0.00179515872, 0.0210835654, 0.00192793133, 0.00767534925, 0.0186827462, -0.00661680568, -0.0237899441, 0.00766079873, -0.0107309381, -0.00868660398, -0.0384131223, -0.0122587327, 0.000471524691, 0.0247066207, 0.0123605859, 0.00523815304, 0.011596689, 0.000266454648, -0.000821644324, -0.00405956851, -0.0119822752, -0.0120041007, 0.0101125455, 0.0187118463, 0.00547823496, 0.0254923441, 0.0253613908, -0.0024626595, -0.0215928312, -0.0163401272, 0.0112329284, -0.00220802706, 0.00236080633, 0.00852654874, 2.41559792e-06, -0.000161191419, 0.0157435592, -0.00388132571, -0.010687287, -0.0333495736, -0.0075880466, 0.00754439505, -0.00507082324, 0.0210399143, -0.00351938396, 0.0102726, 0.00145231432, 0.0105126817, 0.00210253638, -0.0234116334, 0.00226440979, -0.0193084143, -0.0397808626, -0.00390315149, -0.0213309228, 0.00149687496, 0.0119458986, 0.00374673447, -0.022582259, -1.39110016e-05, 0.00199340819, 0.000237353801, 0.00104126474, -0.0140775358, 0.00316107972, 0.0102289487, -0.0132481614, -0.0174459592, 0.00873025507, -0.00722792372, -0.0204578973, 0.00230624224, -0.000941230624, -0.00558008812, 0.0210399143, 0.00186154502, -0.00974150933, 0.00244447147, -0.00897761248, -0.00987973809, -0.00383403688, -0.00557281263, 0.0171986017, -0.00750074396, 0.00631852215, 0.00563828973, -0.0141139124, -0.0054600467, -0.00724611152, -0.00794453174, 0.00287007121, 0.00291190366, 0.00704968069, 0.0142448656, 0.00415778393, 0.0202105399, -0.0241246037, 0.00667500729, 0.00977788586, 0.00325747626, 0.00679868599, 0.000966693857, -0.00810458697, 0.0113638816, 0.00352120283, -7.54803259e-05, 0.0089630615, -0.0175187122, 0.00313561666, -0.0176642165, -0.0137137752, -0.00222257734, 0.00944322534, 0.017940674, -0.00116039638, -0.0043360265, 0.0591329262, 0.0172859039, -0.00248994143, 0.0218547378, -0.0302066822, -0.0176933166, 0.0144849475, -0.00654405355, -0.00975606, 0.00889758486, -0.0151033411, -0.0250703823, -0.0393152498, -0.0127243465, 0.00940685, 0.0193084143, -0.00691145193, -0.00758077111, -0.00223894673, -0.0254777931, -0.0110073965, -0.0332040712, -0.00535091851, 0.0140338847, 0.00282460125, 0.0196430739, -0.00170058093, 0.0141430134, -0.0104617551, 0.0250558313, -0.00390315149, 0.00833011791, -0.00948687736, 0.0105345072, 0.00112220156, 0.00525634084, 0.00448153075, 0.0132117858, -0.00344299432, 0.00703149289, -0.0218110867, -0.00350483367, -0.0133791156, -0.0323892459, 0.0128043741, 0.0362596586, 0.00338297384, -0.00706786895, 0.00829374231, 0.00109491951, 0.0214909781, -0.0128116487, -0.0357358418, 0.00139775022, 0.00180061511, -0.00714425882, 0.000304422167, 0.00968330819, 0.000619757164, 0.000317835831, -0.00244810898, -0.0114075327, -0.00805366, 0.0262926184, 0.0136701241, 0.0144340219, -0.0183044337, -0.00837377, -0.00611845357, 0.0151324421, -0.0146668283, 0.0109564699, -0.00589292217, 0.000501080242, 0.00761714717, -0.0029791994, -0.00779175246, -0.00549642276, -0.0171840526, -0.0135900965, -0.0204869974, 0.00611481583, 0.0101416465, 0.00543094613, 0.0204869974, -0.0219274908, -0.00708605675, -0.0230187718, 0.010163472, -0.00386313768, 0.00108673482, -0.00534000574, -0.00254450552, -0.0083446689, 0.00951597746, 0.0116330646, 0.0187409464, -0.0160927698, -0.0202978421, 0.00935592316, 0.0207780059, 0.0119895497, 0.00868660398, 0.0303230844, 0.0143103432, 0.00304103876, 0.0262198653, -0.00866477843, 0.011553037, 0.00391770201, -0.0148996348, 0.00180516206, 0.00286097731, -0.0165438335, -0.00851199869, 0.0065658791, 0.0206761528, 0.0172131527, 0.0218547378, -0.00485984189, 0.0195848718, 0.0119167976, -0.00119677244, -0.013328189, -0.00462339772, -0.0107673146, 0.00164328865, 0.00982881244, 0.00103580835, 0.0126879709, 0.0503153689, 0.00402319245, -0.00776265142, 0.0210690144, -0.0109564699, 0.00489258, 0.0251722354, 0.0199340824, 0.0101416465, -0.0036812576, -0.00744618, 0.0015414356, 0.00570376636, -0.00826464128, 0.000746618665, 0.00540548284, -0.00597658707, 0.00576560572, -0.00650767749, -0.0175914634, 0.0101125455, 0.0252304375, 0.0194975697, 0.00654041581, -0.0162819251, -0.0032320132, -0.00608207751, -0.0134809688, 0.00572922966, 0.0136337485, -0.000961237412, 0.0103526274, 0.0151906433, -0.0126879709, -0.0279077142, 0.00205706642, 0.0185954422, 0.00735523971, -0.0172568038, -0.0137137752, 0.0213163719, -0.00166056724, 0.0121932561, 0.0261325631, 0.00880300719, -0.00258633797, 0.000833921251, -0.0122078061, 0.00756622106, -0.0256524, -0.0165729336, -0.0105563328, -0.0293045565, -0.00392861478, -0.0302939843, 0.0129280528, -0.00558008812, 0.014150288, -0.00189883041, -0.0119386232, 0.0218547378, -0.00609299028, -0.017358657, -0.0143394433, -0.00613300409, 0.00312470365, -0.00659861788, -0.00499443337, -0.00393225253, 0.00844652206, 0.000424008467, 0.0123896869, 0.013611922, -0.0202105399, -0.0124260625, 0.0179697741, -0.0235862378, 0.0176060144, 0.0189155526, 0.014761406, -0.00431420095, 0.00453609508, 0.00143048866, 0.0253322888, -0.0114220837, -0.0173877571, -0.000680232362, 0.0178242698, -0.0226550121, 0.00515448814, 0.00108764425, -0.00431056321, 0.00100034173, 0.00393589, 0.0114948358, 0.0111529008, 0.0136046475, 0.0419925265, -0.0107818646, -0.00424872385, 0.00485256687, 0.00747891841, -0.00166602363, 0.00773355085, 0.00720973546, 0.0191920102, -0.0139829582, 0.0160782188, -0.0195121206, -0.0125933923, 0.0021552816, -0.0210690144, 0.00641673757, -0.0019242937, -0.00613664184, 0.0104108285, 0.00886120833, -0.00680959877, 0.0209962633, -0.0100397933, -0.00871570408, -0.00261362013, -0.0161218699, -0.00386677543, 0.0140848113, 0.00946505181, -0.00330112758, 0.00420143502, 0.00883938279, -0.00545640942, 0.00855565, 0.0102580497, -0.0287516396, -0.00224258425, 0.0176933166, -0.00499807112, 0.0203123931, -0.00720609771, 0.00102216739, 0.00119768188, -0.00141411938, -0.00037035378, 0.0110437721, 0.0247211717, -0.018537242, -0.00269182865, -0.0221020952, -0.023106074, 0.0187263973, 0.000518358895, 0.0122296317, -0.0142666912, -0.00420143502, -0.0131535837, 0.0178679209, -0.00742071681, 0.00468523661, -0.00198977068, 0.0168202911, -0.00749346893, -0.000248493976, 0.00279550045, -0.0198904313, -0.0165729336, -0.00533273071, 0.015656257, -0.00548914773, 0.0261616632, -0.00631124666, 0.00727521256, -0.00330294645, 0.0102434987, -0.0104763061, -0.0152488453, -0.00841014553, -0.019090157, 0.0165292826, 0.0270346887, -0.00786450505, -0.0113929827, 0.0081773391, -0.000913948577, -0.00121223228, 0.0101561965, -0.0148196081, -0.0170676485, 0.0140775358, 2.70689052e-05, -0.000605661422, 0.00226259115, 0.00133318268, -0.00395407807, 0.013626473, -0.0262780674, 0.0244301632, 0.00765352324, -0.00760259712, -0.0188428, -0.00979971141, -0.00632579718, 0.00626032, 0.0181880314, -0.0270928908, 0.000431965746, -0.00975606, 0.00696965354, -0.000975787872, -0.0016823929, 0.0263362695, -0.013313639, 0.00734432694, 0.00210253638, 0.0320109352, -0.00792998169, -0.0391115434, 0.0281405225, 0.0048343786, -0.0188137, -0.000421052915, 0.0130008049, 0.00691508921, 0.0305267908, 0.00778447744, 0.0104835806, 0.00913766678, -0.00279913796, 0.0199049804, 0.00722792372, 0.0128771262, 0.00397954136, 0.0342808, -0.013881105, -0.021418225, -0.00814096257, -0.0183189847, -0.0232952293, -0.0116694411, 0.0131390337, -0.000788451172, -0.0188573506, 0.00743526686, 0.007380703, -0.000173695691, -0.00170694676, 0.0049835206, 0.013313639, 0.00900671259, -0.0276458077, -1.62697615e-05, 0.014506774, 0.00809003599, 0.0177660696, 0.00838832, -0.00533273071, -0.00259361323, -0.00881755725, 0.00384494965, -0.0102944253, -0.00838832, 0.00807548594, 0.0186827462, -0.00160691258, -0.0082137147, 0.00783540402, 0.00605297694, 0.00905036461, -0.00915949233, -0.00232261163, -0.00466704881, -0.0154089, -0.00238263211, 0.00186791073, 0.002753668, -0.0286788866, 0.0174314082, -0.00669683283, 0.00127134332, 0.000195862362, -0.0103017008, -0.00855565, 0.00332659087, 0.0178242698, 0.0184062868, -0.010447205, 0.0217092335, -0.0131463092, -0.00476890197, 0.00499079563, -0.000153347835, 0.0113056805, -0.00910129119, -0.00489258, 0.0329712629, 0.00580198178, -0.00650403975, -0.0155835049, 0.00652222801, 0.0158454124, -0.00636581099, 0.00267000287, -0.0178533718, 0.00910856575, 0.000757531496, -0.021403674, -0.0188282505, 0.00599113759, -0.0358231477, -0.00825736579, 0.00986518804, 0.00680959877, 0.00963238161, -6.55905897e-05, -0.00524542807, -0.0170094464, 0.00308650895, 0.0202250909, -0.00794453174, 0.0123096593, -0.0171404, 0.00162782881, 0.0100397933, -0.0209089611, -0.0142375911, -0.00182335009, -0.00143503561, 0.0319236331, 0.00955235399, 0.0117858443, -0.0204287972, -0.00406684354, -0.0135027943, 0.00473616319, -0.0011694904, 0.0289116949, 0.0082137147, 0.00589655945, 0.0161073208, -0.00234443718, -0.00476162648, -0.0155689549, 0.000406047795, -2.55342911e-05, -0.0164274294, -0.00163965102, -0.0142375911, -0.03119611, -0.00732613914, -0.00147868693, -0.00370126427, -0.00586018339, -0.0176933166, 0.0102580497, 0.000972150243, 0.0128189242, -0.0116257891, 0.0105636083, -0.00305558927, -0.0139465826, 0.0215491783, -0.020850759, 0.00469978712, 0.0117349178, -0.0175623633, -0.00176787667, -0.0125206402, -0.0154962027, -0.0114584593, 0.0112911295, -0.0111092497, 0.000778902438, 0.013299088, -0.00408139406, 0.00123860489, 0.01505969, -0.0320109352, 0.0132263359, -0.0104544805, -0.0272965971, -0.00566011528, -0.0186245441, 0.00660589291, 0.00854837429, -0.0229314696, -0.0063985493, 0.00425963709, -0.00724611152, 0.0104253795, -0.00562737696, 0.0143467188, 0.0119022476, -0.00044447, 0.00485984189, 0.0186390951, -0.026627278, 0.00567466579, 0.00516540091, 0.0182171315, 0.0159472656, -0.00882483274, -0.00837377, 0.00912311673, -0.00465977378, 0.00443787966, 0.00593293551, 0.00167329889, -0.0055837254, -0.0085047232, -0.0154234506, -0.0124187879, -0.00361396186, -0.0107236635, 0.00779175246, -0.0275876056, 0.0147395805, -0.0145940762, 0.00448880624, 0.00534000574, 0.0143176178, 0.0210108142, -0.0132263359, -0.00597658707, -0.00676231, -0.0100688944, -0.0253031887, 0.00288280286, 0.00358304218, 0.00101943919, 0.00957418, 0.024270108, -0.00929772109, -0.0284169801, 0.0101125455, 4.51290507e-05, -0.0174459592, 0.0292754546, 0.0210835654, -0.00450335629, -0.00381948659, -0.0292609036, 0.013626473, 0.0220438931, -0.0169221442, -0.0146813784, -0.0250849333, -0.00884665828, -0.0160927698, -0.0267291311, 0.0183626357, 0.00532545568, -0.00148596219, 0.00397226587, -0.0235571377, -0.0193520654, -0.0122514581, -0.00966148172, 0.0131535837, -0.00618029293, 0.00886848383, 0.0188282505, 0.0165874846, -0.0122587327, 0.00048289221, 0.0189155526, 0.00813368708, 0.00533273071, 0.00549278548, 0.000429464882, -0.0114584593, 0.017940674, 0.0206470527, -0.0554662198, -0.000414687122, 0.0155689549, 0.0113857072, 0.00774082588, 0.0144267464, 0.00230806111, -0.00084619812, 0.0292900056, 0.0117203668, 0.0138520049, -0.00346300122, -0.00813368708, 0.00910129119, -0.00397590362, -0.00436512753, 0.0304685887, -0.00158144929, 0.00380129856, -0.0175623633, -0.00838104449, -0.0213745739, 0.00541275786, -0.00941412523, 0.0337569863, 0.0125206402, 0.00815551355, 0.000932136609, -0.0146813784, -0.0115312114, 0.00191701844, 0.00805366, 0.041701518, -0.0264963228, 0.00160327496, 0.0122660082, -0.0180861782, -0.0275003035, -0.00515448814, -0.0213309228, -0.00241537043, -0.0125715667, -0.0146231772, -0.0163692273, -0.0168930441, 0.0205452, -0.00475798873, -0.000412186258, -0.0108109657, 0.0236735418, 0.00284278928, -0.00823554, -0.0242555588, -0.0303812865, -0.00503444718, 0.000719336618, -0.00451790681, -0.0208798591, 0.0149141857, 0.00152415701, -0.000934864802, -0.0205452, 0.0156417061, -0.00273366109, 0.0104399296, 0.00295373634, -0.00894123595, 0.0237317421, 0.0187263973, 0.00261180126, -0.00319199939, 0.00130044424, -0.00696965354, -0.00597294932, 0.0120404763, 0.0243137591, -0.011553037, -0.0133354645, -0.005507336, 0.0102798752, 0.0121423295, -0.00393952755, 0.0151760932, -0.00848289765, -0.00563101424, -0.0079154307, -0.0114875603, 0.00206252281, -0.000177560651, -0.0165874846, 0.0217819866, -0.00549642276, 0.0229605697, 0.0152779464, 0.00677686045, 0.0221020952, -0.00501262117, -0.00579470675, 0.0125060901, 0.0176933166, 0.00159963733, -0.0215637293, 0.00763169769, 0.0163692273, 0.0234989356, -0.0200504847, -0.0020425159, 0.0117276423, 0.00343208155, 0.0258561056, 0.0373654924, -0.00576196844, 0.00902853906, 0.00507809827, 0.00885393377, 0.0183189847, -0.011014672, -0.00317199272, 0.00839559548, 0.00393225253, 0.000299875159, -0.0343681052, -0.0114220837, -0.0196430739, 0.0222621504, 0.002753668, 0.000388769171, -0.00522724027, -0.0074643679, -0.00639127428, 0.0106363604, 0.0114802849, 0.0129062273, -0.0180134252, -0.00927589554, -0.00625304505, -0.0135755464, 0.0221311953, -0.00867932849, 0.0181734804, -0.00696237851, 0.0140993614, 0.0170239974, -0.019090157, -0.0180716272, -0.00883210823, -0.0081773391, -0.00138229039, -0.00860657636, 0.00619848119, -0.00668228278, -0.0291154, -0.00675139716, -0.00360850547, -0.0013249981, -0.0222621504, 0.00511447433, 0.0087957317, 0.0145940762, -0.0169948954, 0.00072934007, -0.0144994985, -0.0109564699, 0.00922496896, 0.00101307337, 0.0134955188, 0.00763169769, -0.0174459592, -0.0042851, -0.00725702429, 0.00286825257, 0.0210544653, 0.0175041612, -0.0166020356, 0.0184935909, 0.014150288, -0.00749346893, -0.0270346887, 0.00279368157, 0.0157290101, 0.0164274294, -0.00789360516, -0.00948687736, -0.0189737547, 0.00935592316, -0.0110219466, 0.00409958232, -0.0105054071, 0.00985063799, -0.00340479938, 0.0205306485, 0.0273548, -0.0184644889, 0.00277731242, -0.0222767, -0.00405593077, 0.00159145275, 0.00114129891, -0.00857747532, 0.00259179436, -0.00147413986, -0.00647130143, -0.00748619344, 0.000971240865, -0.00687507587, -0.0113129551, -0.0267727822, 0.0113420561, -8.61658e-05, -0.00852654874, 0.0205597505, -0.0134518677, -0.00126134, 0.00595476152, -0.0111456253, -0.00507809827, -0.00305922679, -0.010447205, 0.00698056631, 0.0120477518, 0.014193939, 0.019104708, 0.023178827, -0.00246993452, 0.040537484, 0.00302103185, 0.0130953826, 0.0159909166, -0.0125642922, -0.000908037473, 0.00180152443, -0.028955346, -0.000680687081, -0.016834842, 0.0052927169, -0.00614391686, 0.00555826211, 0.00245356536, -0.016791191, 0.0323310457, 0.00847562216, 0.0252158865, -0.0228732675, -0.0146959294, 0.0110219466, 0.0085702, 0.0256960504, -0.0239209, 0.00182971591, -0.02023964, -0.0126297688, 0.0122296317, 0.0107236635, 0.0108182412, 0.0183189847, -0.00454700785, -0.0204869974, 0.0149869379, -0.0160927698, 0.0118585965, 0.00544913393, -0.00997431576, 0.0010858255, -0.00129771605, 0.0184353888, -0.000996704097, -0.000675230636, -0.0127025209, -0.00914494228, 0.0151324421, 0.0120186508, 0.00445606746, -0.0213600229, 0.00477253925, -0.00420143502, -0.000769353705, -0.0256087482, 0.0145649752, -0.0238044951, 0.00329749, 0.00378311053, -0.0120550273, -0.00814096257, -0.00532909296, 0.010701837, -0.00216983212, -0.0223203525, -0.0159181654, -0.00921041891, 0.00811186153, 0.0211854186, 0.00651131524, 0.014150288, 0.00691872695, -0.00528907962, -0.0224658567, 0.001736957, -0.0124115124, -0.00774810137, -0.00687143812, -0.01011982, -0.0104981316, 0.0125279156, 0.0139829582, -0.0148705337, -0.0227423143, -0.0207198057, -0.0379184075, -0.0085411, -0.0179988761, -0.0179115739, 0.022611361, -0.0122732837, 0.00068387, -0.0149141857, 0.0199486315, -0.00992339, 0.0097124083, 0.00113129558, -0.0171258505, 0.00524906581, 0.00472888816, -0.0195266698, -0.00953052845, 0.00134409545, -0.00346663874, 0.0139756827, 0.0350665227, -0.00842469558, 0.0218401868, 0.00398681639, -0.000602478511, -0.00374673447, 0.0147104794, -0.00197522016, 0.00341025577, -0.0104253795, -0.0239209, 0.0199631825, -0.00214073132, -0.00528544188, 0.00638399879, -0.0115021104, -0.0194539186, 0.0124842646, -0.0176787656, -0.0102798752, 0.00370490202, 0.0338151865, -0.00903581362, -0.0192502122, -0.0100179678, 0.00951597746, 0.0135173444, 0.00766807375, -0.0171695016, -0.023760844, 0.00701694237, 0.00881028268, -0.00319745578, 0.0111747263, -0.023688091, -0.00528544188, -0.0357358418, 0.00177606125, -0.00882483274, 0.0022207587, 0.0136992252, -0.0348919183, -0.00736615248, 0.0134082166, 0.00108218787, -0.00465977378, 0.0675139725, 0.0318072289, 0.00948687736, -0.0171549506, -0.00418324722, -0.0420216285, -0.0187263973, 0.043418467, -0.00780630298, 0.00719882268, -0.0159327146, 0.0119022476, 0.00390678924, -0.00780630298, -0.00356485415, -0.00307741482, -0.0115384869, 5.22621704e-05, 0.00247720978, 0.0071478961, 0.0202250909, -0.0184935909, -0.00123405794, -0.00627850834, -0.00799545832, 0.00093577418, 0.0104108285, 0.0169512443, -0.00853382424, 0.0137574263, -0.0066313562, 0.0252449866, 0.00563828973, 0.00134500489, -0.0252013355, 0.0154380007, -0.00842469558, 0.000663863146, -0.000466068304, 0.00936319865, 0.0300029758, 0.0181298293, 0.0134736933, -0.011014672, 0.0166893378, -0.0120113753, -0.0143321687, 0.00700966734, 0.0186536442, -0.0319236331, 0.0117494678, -0.00273911748, -7.89332171e-06, -0.0262344163, 0.00947232638, 0.0116912667, 0.0171258505, 0.0146522783, -0.00702058, 0.0221020952, -0.00946505181, 0.0228878185, -0.00654041581, -0.000792088744, -0.00787178, 0.00297738076, -0.000829374243, 0.0144412965, -0.00552188605, 0.00758077111, 0.0199340824, -0.0125206402, -0.0120841274, -0.0116039636, 0.0124406135, -0.0107818646, -0.00814823806, -5.30863144e-05, 0.0123387603, -0.0295810141, 0.00739889126, 0.00531090517, -0.0244592633, 0.001408663, 0.000967603235, -0.00189883041, -0.0134009412, -0.0151033411, -0.0186972953, -0.00628578337, 0.00244265259, 0.00779902749, -0.00839559548, -0.00168330222, 0.0227132123, 0.0148050571, 0.00321746268, 0.00684233708, 0.0129280528, -0.000245083706, 0.0207198057, 0.0184644889, 0.00475435145, -0.00193520647, 0.000244856376, 0.023688091, -0.00224804063, 0.0180570781, 0.0120914029, -0.0184935909, 0.0264526717, -0.0038776882, 0.0316908248, 0.0302066822, 0.00891941, -0.019686725, -0.00886848383, 0.0160491187, 0.00658770464, -0.0122951092, 0.0159327146, -0.00126952457, -0.0109128188, 0.00124588015, 0.010701837, -0.0105126817, 0.0104399296, -0.0223203525, -0.00564556476, -0.00647857646, -0.00519450149, -0.0135828219, 0.00600205036, -0.00668592, 0.00659861788, 0.0119895497, -0.0213163719, 0.00223349, -0.00586745888, 0.028940795, 0.00308650895, 0.0170530975, 0.0143685443, 0.0128189242, 0.023164276, -0.013015355, 0.00722792372, -0.0128189242, -0.0175769124, -0.0123896869, -0.0126588698, 0.00528180413, 0.0229023695, -0.0067732227, -0.00586018339, 0.00533636846, 0.00561282644, -0.0113857072, 0.0260743611, 0.000513357169, 0.00165420142, 0.00644220039, 0.010985571, -0.00890486, -0.00192247482, -0.018522691, -0.0131972358, 0.00814096257, 0.00964693166, 0.0227859654, 0.0016478356, 0.0297410674, -0.00329385232, 0.0272383951, -0.0234989356, -0.00771172531, -0.00767534925, -0.00421234779, -0.0138738304, -0.0184208378, -0.00427782489, 0.00795908272, 0.0100543434, 0.0499952585, 0.00695146527, -0.0102507742, -0.0187991485, 0.00224076537, 0.0303812865, 0.021403674, -0.0147468559, -0.0104617551, -0.0119313486, -0.00388496346, -0.0250121802, -0.00824281573, 0.019672174, -0.0109782955, -0.00814823806, 0.00447789347, -0.00361759937, 0.0057983445, 0.00503080944, 0.0262198653, -0.00760259712, 0.00152415701, -0.0077553764, -0.00554371206, -0.0213454738, 0.00211344915, -0.0315453224]
18 Aug, 2023
C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts 18 Aug, 2023 Given an integer X and two strings S1 and S2, the task is to check that string S1 can be converted to the string S2 by shifting characters circular clockwise atmost X times. Input: S1 = “abcd”, S2 = “dddd”, X = 3 Output: Yes Explanation: Given string S1 can be converted to string S2 as- Character “a” – Shift 3 times – “d” Character “b” – Shift 2 times – “d” Character “c” – Shift 1 times – “d” Character “d” – Shift 0 times – “d” Input: S1 = “you”, S2 = “ara”, X = 6 Output: Yes Explanation: Given string S1 can be converted to string S2 as – Character “y” – Circular Shift 2 times – “a” Character “o” – Shift 3 times – “r” Character “u” – Circular Shift 6 times – “a” Approach: The idea is to traverse the string and for each index and find the difference between the ASCII values of the character at the respective indices of the two strings. If the difference is less than 0, then for a circular shift, add 26 to get the actual difference. If for any index, the difference exceeds X, then S2 can’t be formed from S1, otherwise possible. Below is the implementation of the above approach: C++ // C++ implementation to check // that a given string can be // converted to another string // by circular clockwise shift // of each character by atmost // X times #include <bits/stdc++.h> using namespace std; // Function to check that all // characters of s1 can be // converted to s2 by circular // clockwise shift atmost X times void isConversionPossible(string s1, string s2, int x) { int diff, n; n = s1.length(); // Check for all characters of // the strings whether the // difference between their // ascii values is less than // X or not for (int i = 0; i < n; i++) { // If both the characters // are same if (s1[i] == s2[i]) continue; // Calculate the difference // between the ASCII values // of the characters diff = (int(s2[i] - s1[i]) + 26) % 26; // If difference exceeds X if (diff > x) { cout << "NO" << endl; return; } } cout << "YES" << endl; } // Driver Code int main() { string s1 = "you"; string s2 = "ara"; int x = 6; // Function call isConversionPossible(s1, s2, x); return 0; } Output: YES Time Complexity:O(N),N=Length(S1) Auxiliary Space:O(1) Please refer complete article on Check if a string can be formed from another string by at most X circular clockwise shifts for more details! Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts
https://www.geeksforgeeks.org/cpp-program-to-check-if-a-string-can-be-formed-from-another-string-by-at-most-x-circular-clockwise-shifts?ref=asr10
PHP
C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0151202921, 0.045871947, -0.0145468926, 0.0361989513, 0.0271492135, -0.00299476506, -0.00261301827, 0.0113495672, -0.034054935, -0.0403374, -0.0390160866, 0.0369219333, -0.0211160537, -0.0384177566, -0.0218888968, 0.00211908459, -0.00625441596, 0.0227614604, -0.013624467, -0.00507645402, -0.00559376, 0.0147588011, -0.0263763703, 0.026102135, -0.00254913419, 0.00949225202, 0.00029254274, -0.00919932, -0.00159009255, -0.00341858203, 0.0281713586, -0.00979764946, -0.00213778228, -0.0176507272, -0.0260772053, -0.0560435541, 0.0124901338, -0.00316460361, -0.0627249, 0.00624195067, -0.0483899191, 0.041583918, -0.00973532349, -0.031337522, 0.00180901261, 0.0139360977, -0.0221631322, -0.0393651128, -0.00688702473, 0.0264013, -0.00400133, 0.00802759081, 0.0188349225, 0.0153945265, 0.00746042421, 0.0222254582, -0.015369596, -0.0180994757, 0.0462708361, -0.020492794, 0.0135870716, -0.0378194265, 0.0128516247, -0.00973532349, -0.0111563569, -0.0209041461, -0.0539992601, 0.0242074244, 0.00229983, 0.0219512228, -0.072198458, 0.0268749781, 0.0204554, -0.023559235, -0.00783438049, -0.0296422541, 0.0270494912, -0.00556259695, -0.0324344598, 0.0351768024, -0.0233722571, 0.014160471, -0.0401878171, -0.02699963, 0.0265010223, -0.0229858346, -0.0168529544, -0.0501101166, 0.0573399365, 0.0271741431, -0.0112747764, -0.0236589555, 0.00628557894, -0.0217642449, -0.0242572855, 0.0371213742, 0.0433789082, 0.00578073785, -0.0290937852, 0.0358748548, 0.0447999425, 0.00459031109, 0.0190343652, -0.00186666416, 0.0020879216, 0.0109008206, 0.00517305918, 0.0276478212, -0.00189159461, 0.0296422541, 0.0323845968, -0.0145967528, 0.0219761543, 0.0745419189, -0.0378692895, -0.0268749781, -0.0145468926, -0.0489383899, 0.0510574728, 0.0081647085, 0.00196638587, 0.0269497689, 0.0117920823, 0.0175260752, -0.0203307457, 0.0150579652, 0.0343042389, -0.00207545632, -0.0114742201, -0.00961690396, -0.00597706484, 0.00589292496, 0.00360556017, 0.00767233269, 0.0560934134, 0.0180122182, -0.0146590788, 0.0184858963, -0.0289691333, 0.00709270081, -0.0154443868, 0.00739809824, 0.0200939085, 0.0324344598, 0.00822703447, -0.00511696609, -0.0148709873, 0.0285453163, -0.0172019806, -0.0206174459, -0.0434536971, -0.0135995364, -0.0387418531, -0.0125462273, 0.0152324783, 0.00922425091, 0.0339053534, -0.0311380774, 0.00540054915, -0.0491129, -0.00441579847, -0.0342045166, 0.0252918974, -0.0136493975, -0.0200814418, -0.0537998192, 0.0100594191, 0.0112560783, -0.0227489956, 0.0304649565, -0.0131881852, 0.00830805767, 0.00594901852, -0.0235093739, 0.00743549364, -0.0106515158, 0.0267253965, -0.0137865152, 0.00146777765, -0.0161549039, -0.0537000969, -0.000758429698, -0.01238418, -0.0133751631, 0.058885619, -0.0204803292, 0.00482091727, -0.00170617469, 0.00161424384, -0.00840154663, -0.00410105195, 0.0145967528, 0.0537499562, 0.007292144, -0.0210412629, 0.00957327615, -0.03809366, 0.017114725, 0.000976960291, 0.0318610594, -0.0247932896, -0.0149582438, -0.0194457173, -0.0119665954, 0.0265758131, -0.00704283966, -0.0456475765, 0.00837038364, 0.0241450984, -0.0283209421, 0.00259899488, 0.0664146, 0.000717138755, -0.0016890351, 0.0149333132, 0.00231541158, -0.044475846, 0.0245813802, 0.00237617944, -0.011362033, 0.0106639815, -0.0137865152, 0.0175634716, -0.0237711426, -0.0410853103, -0.0162047651, -0.0311380774, 0.0394399, 0.00134780013, -0.0628246218, 0.0351518728, 0.00696181599, -0.00155737135, 0.0139984237, -0.00133143947, 0.00468068384, 0.000765830919, 0.010184071, -0.0253916197, -0.0168404896, 0.0199443251, 0.0223625749, 0.0163418818, -0.0345286131, 0.02055512, 0.0188473873, 0.0290937852, 0.0227240659, 0.0168778859, 0.0434786305, 0.0230730921, 0.0177504495, 0.0233348608, 0.00828312803, -0.0118357101, -0.00691818772, -0.0278971251, 0.00159476697, -0.0179000311, 0.0373457484, -0.0159803908, -0.0121598057, -0.0138363754, 0.0674118176, 0.00548157329, 0.013923632, -0.0158183426, -0.000502503535, 0.0100905821, -0.0544978678, 0.00882536359, -0.0281215, 0.000320784224, -0.0289940629, 0.0317364074, -0.00743549364, -0.029891558, -0.0169651415, 0.0660157204, -0.034653265, 0.00533510698, 0.0387418531, 0.0344288908, -0.0336809792, 0.0262267869, -0.0299414191, -0.067212373, 0.0409357287, -0.0440769605, 0.00227957405, -0.00606432138, -0.0241450984, -0.0161549039, -0.00637283502, -0.0211908463, -0.00244941236, 0.0166784413, -0.0286699682, -0.0429550894, 0.00535068847, -0.0188349225, -0.0276727509, -0.0302156527, 0.023322396, -0.0225744825, -0.0304150954, 0.0200565122, 0.00629492756, -0.0141729359, -0.0321602263, 0.0756887123, -0.0275480989, -0.000813354505, 0.0527527407, -0.0123343188, -0.0192961339, 0.0496364385, -0.0150828958, -0.00895624887, -0.00259587867, -0.00705530494, -0.0248680804, 0.0217019189, 0.00350272213, 0.0263514407, -0.030489888, -0.0289691333, 0.0155441081, -0.0144097749, 0.00295736943, -0.0420077369, 0.0195080433, -0.0212407056, -0.0011452405, -0.0162546244, -0.018809991, -0.0255785976, 0.0131632546, -0.00615157792, -0.00160956942, 0.0107574705, 0.0216894541, -0.0201063734, 0.0305646788, -0.00470561441, -0.012776833, 0.0200066511, -0.00908713322, 0.00400756299, -0.0223127138, 0.000654423202, 0.00323472032, 0.0475422852, -0.0139485626, -0.0150330355, -0.0410603806, -0.0128640896, -0.0520546883, 0.0144596361, 0.0185980834, 0.0278223343, 0.00899987668, -0.0252046417, -0.0141729359, -0.00667511625, -0.030489888, -0.0446503572, 0.00156749936, 0.00837661698, -0.00462459028, -0.027847264, 0.027124282, 0.0104333749, -0.0149333132, -0.046594929, 0.0178127754, 0.0308887735, -0.0432293266, 0.0200565122, 0.00775335636, -0.0123654818, 0.0315369628, -0.0067436751, -0.000373761344, -0.0182365924, 0.016267091, -0.0105268639, 0.0270494912, -0.00815224275, 0.0317114778, -0.0269747, 0.035376247, -0.0168030933, 0.0182490572, -0.0341546573, 0.00483961497, -0.0440520272, -0.00769726327, 0.00969792809, -0.0177005883, 0.0414841957, -0.0199941862, 0.00259276223, 0.0146092186, 0.00883782934, 0.0169776063, -0.0408360064, -0.0260522757, -0.00978518464, 0.060381446, -0.00709270081, 0.0162172299, -0.0197822768, -0.0129264155, -0.0151202921, 0.0151701523, -0.0510574728, 0.0557443909, 0.0377695672, -0.0130884638, 0.0154069914, -0.0215024762, 0.0209540073, 0.0217891745, 0.00157295284, -0.00812108, 0.0595338121, 0.0602318607, 0.0299164876, -0.0253168289, -0.0107637029, -0.00427244836, -0.0043939841, 0.0516558029, -0.0300162099, -0.0297669061, 0.00289036892, -0.0327086933, 0.00817094091, -0.00344351237, -0.012776833, 0.0447999425, -0.0128017636, -0.0367224887, 0.025678318, 0.0432293266, -0.034054935, 0.0204678643, -0.00210194499, 0.00495491829, -0.0123467837, -0.0276228897, -0.0182116628, 0.0154568525, 0.0184111055, -0.00159398792, -0.0344039612, -0.0264760926, 0.0398886502, -0.00725474814, 0.021091124, 0.0483899191, 0.00494868588, -0.0275231693, 0.0608800538, 0.0283708032, 0.0148086613, -0.0140482839, -0.0178626366, -0.0300411396, 0.0145468926, -0.0187850613, -0.0278721955, -0.0369468629, -0.010907053, -0.0228861142, 0.0243320763, -0.0315618962, -0.020131303, -0.00406365609, 0.0145593574, -0.0234719776, -0.00604250748, 0.00169994205, 0.0148959178, -0.00224373653, -0.000824261573, -0.0199193954, -0.0285951756, -0.014160471, -0.00561557431, 0.0343541019, 0.00784684531, 0.00112108921, -0.0089749461, 0.00437840261, -0.0451240353, -0.0114991497, 0.00386109669, 0.0079528, 0.043154534, 0.0102339322, 0.00924918056, 0.0176881235, 0.0204803292, -0.0460963212, -0.0495117866, 0.0120974798, 0.0321103632, -0.0281713586, 0.00024482439, 0.00459342729, -0.00344974501, 0.0196950212, -0.0161175076, -0.00433789054, -0.0405617729, 0.00793410186, -0.0235467684, 0.00886276, 0.0120974798, -0.019769812, 0.0349524319, 0.0178127754, -0.0126334839, 0.0450492464, 0.0249179415, -0.00830805767, 0.00517929206, 0.0286699682, -0.0315868258, 0.00574957486, 0.00193522277, -0.00274234475, 0.000420311088, -0.00506087253, -0.0034653265, -0.00206922367, -0.039539624, 0.0280716382, -0.0193833914, 0.00553455, -0.0141355405, 0.0191340875, 0.0152698737, 0.00158775528, -0.00913076103, 0.00522603653, 0.00849503651, 0.0263015795, -0.0453484096, 0.0202559549, -0.00749781961, -0.00870694499, 0.0142103322, 0.00100033253, -0.0169651415, -0.0277724732, -0.0160551816, 0.0207047034, -0.0152075477, 0.00949225202, 0.00361179258, 0.0254788753, 0.0251921751, -0.0100781173, 0.00444696145, 0.0176756587, -0.00181680336, 0.00096293696, -0.0256284587, 0.00648813834, 0.0140358191, -0.00686832704, 0.0114368238, 0.0216146633, 0.0188349225, 0.000382525934, -0.0232351385, -0.00190250168, 0.0149831744, -0.0305397473, -0.0216146633, -0.00752898259, -0.0295176022, -0.0080587538, -0.037420541, -0.0162920207, -0.0221506655, 0.00397328334, -0.00092476228, 0.0356255509, 0.0219886191, 0.0647691935, -0.0101155126, 0.0011265428, -0.00985374302, 0.00579008693, -0.0213154983, -0.0265508834, 0.0157560166, 0.0191340875, 0.0092554139, 0.00602380931, 0.00510761701, 0.00083361048, 0.0113184042, 0.0160676464, 0.00315058022, -0.0243819375, -0.0327086933, 0.0114430571, 0.013562141, -0.00246187765, 0.00689949, -0.0124527384, 0.0162047651, 0.025678318, -0.00434412342, -0.000561713241, -0.0338056311, 0.011630035, 0.00540989824, 0.00598018151, 0.00651306892, 0.0279469863, -0.0102588627, 0.00531640928, -0.00611106586, -0.0179623589, 0.0266256742, -0.0050858031, -0.00307423086, 0.00198975811, 0.0241201688, 0.0297419745, -0.00529459491, -0.00371774682, -0.0205925163, 0.0134250242, -0.00969169568, -0.00822703447, -0.00913699437, 0.0655669719, -0.0153945265, -0.0219138283, -0.0188723169, 0.00329393, 0.0178626366, 0.0244442634, 0.0196451601, 0.00499543035, 0.0301657915, 0.00592097174, 0.0158432741, -0.00175136107, 0.0160551816, -0.00543171214, 0.0204055384, 0.0162047651, -0.0186978057, -0.0122408299, -0.00777205406, -0.018685339, -0.00486454554, 0.00663148798, -0.0144471703, 0.000513410545, -0.0164166726, 0.0167407673, -0.0149083836, -0.014222797, 0.0103897471, 0.0134000937, -0.00545352651, -0.0122221317, -0.0129139507, 0.0218016412, 0.0354011767, -0.031935852, 0.0321851559, -0.000684028, 0.0176133327, -0.00415402884, 0.0230730921, 0.00991606899, 0.020131303, -0.00491440622, -0.0174263548, -0.0337557718, 0.00876303762, 0.0244816598, 0.0272738654, 0.0403623283, -0.0363485329, 0.000914634322, -0.00771596096, 0.0329081379, -0.0203681421, 0.0401130244, 0.0049393368, -0.0148086613, -0.0104146777, -0.012022689, -0.0412099622, 0.0384676158, 0.00683716405, 0.00926787872, -0.0524535738, -0.00535380468, 0.0178377051, -0.00837661698, 0.00424751826, 0.0190717615, 0.021215776, -0.00258808793, 0.00581813371, -0.016628582, -0.00961690396, -0.0237711426, -0.0302156527, 0.00102837931, 0.00935513526, -0.0193210654, 0.0107948659, -0.00829559285, -0.000950471731, -0.0408110768, 0.00489259232, -0.0130261378, 0.010938216, 0.0157560166, 0.0226866696, -0.00182926864, 0.012776833, 0.00249148253, 0.008345454, -0.0204429328, -0.0137740495, -0.00709893322, -0.0305397473, -0.00827689469, -0.0387169197, 0.0310632866, 0.0180371497, -0.0297419745, 0.00904973783, -0.0112186829, -0.00830182526, 0.0453982688, 0.00555324787, 0.0400382318, 0.0119416649, -0.00486142933, -0.0172269102, -0.00608613575, 0.000350389077, -0.0148211271, -0.000185322511, 0.0027329959, -0.00203650258, 0.000945018255, 0.0358499251, 0.0352266654, -0.00245720311, -0.0197573472, -0.0335064679, 0.0146341491, 0.0178252403, -0.0130884638, -0.0189471096, -0.0258528311, 0.00327834836, -0.0264511611, 0.0162795559, -0.00328769744, -0.0143474489, -0.0143599147, 0.00977272, 0.028021777, 0.0419578739, -0.0144845666, 0.0380687304, 0.00276104244, 0.0363983922, -0.0134125585, 0.00130806724, 0.00475547509, 0.0415340587, -0.0174014233, -0.0196825564, -0.00440021697, 0.0119042695, 0.0189221781, 0.0124028772, -0.0375950523, -0.00369593268, -0.0136992587, -0.0159554612, -0.045148965, 0.00602692598, -0.0127892988, -0.00624195067, -0.00398574863, 0.0229858346, 0.000208207843, -0.00843271, 0.0177005883, -0.00655669672, 0.00826443, -0.0156562962, -0.00788424071, 0.00698674656, 0.0392903201, 0.0230730921, 0.0167781636, 0.0123405512, -0.00368658383, -0.00953588076, 0.0222254582, 0.00811484735, -0.0242448207, 0.00478663808, 0.0264511611, 0.000662993, -0.00703037484, 0.0109880771, -0.0400382318, 0.0424814112, -0.0273735859, 0.0229110438, 0.0104146777, -0.0109195178, 0.0318610594, 0.00777828693, 0.0247932896, 0.000477573107, -0.00948602, 0.0271492135, 0.00545352651, 0.00805252139, 0.0328832082, -0.0193709265, -0.00507022161, -0.00262859976, 0.00747912191, -0.033930283, 0.0108509595, 0.0121909687, -0.0225246232, 0.00704283966, 0.020916611, 0.0353014544, 0.0463456251, -0.0116175693, 0.0376698449, -0.039764, -0.0212656371, 0.00445942627, -0.0217767097, 0.0211160537, 0.0173889585, 0.00208168896, -0.0086072227, 0.0211409852, -0.0272987951, 0.0120725492, -0.0104458407, 0.0247434285, -0.0310383569, -0.00561557431, 0.0179249626, -0.014222797, -0.00592408795, 0.0216395929, -0.0086072227, 0.00218296866, -0.0158308074, 0.0103710489, 0.00863838568, 0.00379877072, -0.0137740495, -0.0499356054, -0.0387667827, -0.0176756587, -0.0173141677, 0.00853866432, -0.048639223, 0.00845140778, -0.0314372443, 0.0355756916, 0.00111329847, -0.0210412629, -0.0221132711, 0.0387418531, -0.018809991, -0.013985958, -0.0204678643, -0.0147961965, -0.0189471096, 0.000997995376, -0.00805252139, -0.0145593574, 0.0134499548, 0.026102135, -0.0241201688, 0.0205675848, 0.0337059088, 0.0141729359, -0.00107122841, -0.00741679594, -0.0183363147, -0.0132879065, -0.0110067744, 0.0298416968, -0.0043752864, -0.031885989, -0.0145593574, 0.00931774, 0.011991526, -0.00974155683, 0.0175634716, -0.022175597, 0.0310632866, 0.00365230464, 0.000682859449, -0.0295425318, -0.0046838, -0.00552831776, -0.0315369628, -0.00697428128, 0.00790917128, -0.000237228407, -0.00759130903, 0.00262236712, -0.0212033112, 0.00326276687, -0.0134748844, -0.0396144167, -0.0167906284, -0.021215776, 0.00860099, 0.013562141, -0.0291436445, -0.030315375, 0.0281962901, -0.0159803908, 0.0153197348, 0.0185108278, -0.010514399, -0.00737316767, -0.0108197965, 0.000412909867, -0.0452736169, 0.00360867637, 0.0170897935, -0.0228487179, -0.0122969234, -0.038218312, 0.0208168887, 0.0123280864, 0.0180371497, -0.0307890531, 0.0196451601, -0.00267534424, -0.0346283354, -0.00535692135, -0.0211285204, -0.00613911264, 0.016690908, 0.00616715942, -0.014160471, 0.0293680187, 0.0454979911, -0.0380438, 0.0364233255, -0.040262606, -0.0314621739, -0.0119167343, 0.0180496145, -0.00507333782, -0.00132988137, -0.00648190593, -0.00653176662, 0.0134873502, -0.013923632, -0.00312720798, 0.0187102705, 0.0141230756, -0.0227739271, -0.0169776063, 0.0200191159, 0.0125088319, -0.0108384946, 0.0158557389, 0.0161050428, 0.0212531723, -0.0210661944, -0.0411102399, 0.0012932648, -0.0401628837, -0.0132131157, -0.0089313183, -0.0140607497, 0.00307734706, 0.00371774682, 0.0056716674, 0.0149083836, -0.00633232342, -0.0149956392, -0.00224996917, -0.00395770185, 0.00282960106, 0.00997839496, -0.023621561, 0.00165008125, -0.0164914634, 0.0245689154, 0.0369468629, 0.0386421308, -0.0215523373, -0.0118544083, 0.0164291374, -0.00172175618, -0.00349648949, -0.00194301351, 0.0096543, -0.00179810554, 0.00722981803, -0.00353076891, 0.0286699682, 0.00247434294, -0.0112498458, 0.0176631939, 0.0317364074, -0.0189097133, 0.00562803913, -0.0201811641, -0.0171396546, 0.0200565122, -0.00732330699, -0.00870694499, -0.0150704309, -0.00307734706, 0.0137865152, -0.0138987014, -0.0180246849, 0.00266132085, -0.0202434901, -0.0195080433, 0.0254539456, 0.0139610274, -0.0313873813, -0.00906220265, -0.0140607497, -0.00416026171, -0.0127643682, -0.00721112033, -0.01530727, 0.00128625322, 0.00547534041, 0.00541613065, -0.0268999096, -0.0221631322, 0.0365729071, -0.00079387764, -0.00621702, -0.00378318923, 0.00802759081, 0.00722981803, 0.00449682213, 0.0101778386, 0.00201001414, -0.0299414191, -0.0320106409, 0.0123592494, 0.008345454, 0.00576827303, 0.00048809062, -0.0165787209, -0.0454232022, -0.0143100535, -0.00199131621, 0.00547534041, -0.0197199509, 0.00891885255, 0.0115926387, -0.0249179415, 0.021215776, -0.000772063504, -0.0177255198, -0.000238981316, -0.0119852927, -0.0191964135, 0.0246063117, -0.00129014859, 0.0153820608, 0.0572402142, -0.0153446654, -0.0170274675, -0.0323347375, 0.0248556156, -0.00877550337, -0.00470561441, 0.0202933513, -0.0139734931, 0.0283957329, -0.0063821841, -0.0324344598, 0.0192213431, 0.00586487819, -0.00299476506, 0.00411040103, 0.0146964751, -0.00956704374, -0.00872564223, -0.0349025689, 0.00204896787, -0.00340923318, 0.00895001553, -0.00661902316, -0.0058337152, -0.00604874, -0.00213466608, 0.0087505728, -0.0382931046, 0.00016321626, 0.0191590171, -0.0174263548, -0.00162359269, -0.000857761828, -0.0329579972, 0.026276648, -0.00129170669, -0.00153010373, 0.00155892945, 0.0161050428, -0.00597394863, -0.00629181135, 0.0129014859, 0.0140482839, 0.0113184042, 0.00616404321, 0.0131133934, -0.000604562345, 0.000440567033, -0.00240578433, 0.00106655399, -0.0096231373, -0.00174824474, 0.00606743759, 0.0170150027, -0.0100220237, -0.0224622972, -0.0175759364, 0.00705530494, -0.0186105482, 0.0160177872, -0.0247434285, -0.0045560319, 0.011000542, 0.0301159304, -0.000867110735, -0.0129264155, -0.0051231985, 0.0133377677, 0.00749781961, -0.000395185896, -0.0024727846, 0.0371463075, -0.00460900879, -0.00452798512, 0.0192961339, -0.0114866849, -0.00238552829, -0.028744759, -0.00146076607, -0.0163169503, 0.0274483785, 0.0284954552, 0.0316616148, 0.00885029417, -0.00533510698, -0.0114243589, -0.0357003435, -0.00908090081, 6.28616326e-05, 0.0101279775, -0.0162047651, 0.0071113985, 0.0100656515, 0.0111937523, 0.00306488178, 0.00246187765, 0.021215776, 0.00562180672, -0.0200191159, 0.000636893965, -0.00153789448, 0.00556571316, 0.00343416352, 0.0183612444, 0.0139360977, -0.00119588047, -0.000353310606, 0.00277039153, 0.00148725463, 0.00865708385, 0.0115240803, 0.000788424106, -0.00539431674, -0.0050858031, 0.00935513526, 0.00435035583, -0.0185108278, 0.016391743, 0.00245408691, -0.0295674615, -0.0122532947, 0.0124340402, -0.0289192721, -0.0357751325, -0.0305646788, 0.00630739285, 0.0135870716, 0.00312409154, -0.00580566842, -0.0176257975, -0.00135091646, 0.0253791548, -0.0195952989, 0.0173017029, 0.0148460576, -0.00769726327, 0.0152823394, 0.0160427168, 0.00870694499, 0.0124589708, 0.0217268486, -0.0201063734, -0.00394523703, -0.00973532349, -0.000796993962, 0.00612041494, 0.00743549364, 0.0165537894, 0.010246397, -0.0527028814, -0.01274567, 0.00574022625, -0.000291958422, 0.0143474489, -0.00972909108, 0.0151202921, 0.0100469543, -0.0201063734, -0.0144471703, -0.00162203459, -0.00160956942, 0.00509203551, -0.0113558006, -0.0156313647, -0.0127892988, 0.00631050905, 0.000917750585, -0.0185856186, -0.0143100535, -0.0196077656, -0.0249428712, -0.00179810554, -0.0012278225, 0.0109569142, 0.00566543499, 0.0287696887, 0.0074728895, 0.00505152345, -0.00161736016, -0.0104894685, 0.000684417551, 0.0233099312, -0.00379565451, -0.0087505728, 0.000722981815, -0.00880666636, -0.00271897251, 0.0197947435, -0.0382931046, 0.00993476715, 0.0180994757, 0.00440021697, 0.00579008693, 0.00309604499, 0.0238833297, 0.0180371497, -0.0217767097, -0.0131881852, -0.00673744222, -0.00500789564, -0.00375514245, -0.0179872885, 0.0138987014, -0.0207670294, -0.0254913401, -0.029467741, -0.0209789369, 0.0262018573, 0.00868201442, 0.0133876288, -0.00858852547, 0.00827689469, 0.00959197432, -0.0176008679, 0.00368658383, -0.0161798336, 0.00737316767, -0.0263763703, -0.0268251169, 0.000741679571, 0.00335937226, -0.00996593, -0.0115116155, -0.00412286585, 0.0128890201, 0.0429301597, -0.00483961497, -0.0309884958, 0.022836253, -0.0266256742, 0.0252669677, 0.0166659765, 0.000284557231, 0.00825196505, -0.00613599643, 0.0339053534, -0.0536502339, -0.00716749206, 0.0188473873, -0.0303652361, 0.0355258286, 0.0115178479, -0.00181680336, 0.0345535427, -0.000153185669, 0.0261769276, 0.00116627559, -0.0246063117, 0.00064390566, -0.0164914634, 0.00574957486, 0.010308723, 0.0131632546, 0.0173390973, 0.01530727, -0.00217206171, 0.01904683, 0.00597394863, -0.00983504578, 0.0335812569, -0.0283209421, -0.0140856793, 0.0116674304, 0.0188473873, -0.00158931338, -0.00690572243, 0.00534134, -0.0141480062, -0.0263763703, 0.00559687614, 0.0182241276, 0.000444072881, -0.00333132548, 0.0311879385, -0.0136120021, 0.00253822701, 0.0160801131, 0.00026391173, 0.0023886445, -0.0233099312, 0.0140482839, 0.00305241672, 0.0124776689, 0.00544106122, 0.00434723962, -0.0225495528, -0.00130261376, -0.0105954232, 0.0149956392, -0.000864773465, -0.0199318603, -0.00885029417, 0.0159429945, -0.0121972011, 0.026276648, -0.00481780106, 0.0244816598, 0.00701790955, 0.0265259519, -0.0091556916, 0.0157186221, -0.0123467837, 0.00813354552, -0.00613911264, -0.0141854016, -0.0111189615, -0.00554078305, 0.038218312, -0.0117546869, -0.0144222407, -0.0370715149, -0.0288195498, 0.0054504103, 0.00322537147, 0.0104707712, 0.0269747, -0.0115116155, 0.00239799358, 0.0148211271, -0.0127892988, 0.010938216, -0.0141854016, -0.00808991678, -0.0310632866, 0.010639051, -0.0136992587, 0.0177878458, 0.00751651777, 0.00736693526, 0.000990204629, 0.00364918821, 0.00956704374, -0.00189626904, -0.0159554612, -0.00140389358, -0.00696804887, 0.0108945873, 0.0228487179, 0.00846387353, -0.0233722571, 0.00775958924, -0.0212407056, -0.00268001878, 0.0031007193, -0.0295176022, 0.00827689469, 0.0253542233, 0.0212905668, 0.0107574705, -0.00712386379, -0.0113558006, 0.0149208484, -0.015668761, 0.00721112033, 0.0137366541, 0.0195828341, -0.0241326336, 0.00254134322, 0.00857606, -0.0209664721, -0.0272987951, -0.00315681263, 0.0136618633, 0.000486922, -0.0244816598, 0.0145094963, 0.00195859512, -0.00700544426, 0.0232351385, -0.00289348536, -0.0099223014, -0.0157186221, 0.00702414196, -0.0154194562, -0.0017233144, -0.0105954232, 0.016030252, 0.019769812, -0.0147089399, -0.0167906284, -0.00553766638, -0.00296516018, -0.00544106122, 0.0083828494, 0.0294428095, -0.0294926707, -0.00201780489, 0.016628582, -0.0156562962, -0.0134873502, 0.0256035272, 0.0384426862, 0.0219636876, 0.0237960741, 0.0115614757, -0.0198196732, -0.00812108, -0.0104084443, -0.0259276237, 0.00851373374, 0.00563738821, 0.0261270665, 0.000757650647, 0.0213030316, 0.00278597302, -0.0308887735, -0.01320065, 0.0415340587, -0.000338702957, 0.0043971003, -0.00877550337, 0.00722981803, -0.0181991961, -0.0245315209, 0.0411850326, -0.00721735274, 0.0123343188, -0.00567478361, 0.0207794942, 0.00537561905, -0.0164914634, -0.0330327898, -0.00019807987, 0.0214650799, 0.0120164556, -0.00340300053, 0.00160956942, -0.00590539025, -0.0118606407, -0.010576725, 0.00249771518, -0.0172269102, 0.00778451934, 0.0379690081, -0.0024712265, 0.0294178799, -0.00854489673, -0.00312720798, 0.00371463061, 0.00668758154, -0.0170897935, 0.000709347951, -0.00471496303, 0.0151950829, -0.0135372104, 0.00643827766, -0.0079528, -0.015731087, -0.0123218531, 0.0135372104, 0.0184734315, 0.0080587538, -0.00744172651, 0.00288257818, -0.00301190466, -0.0127269728, 0.0139734931, 0.01741389, -0.00125197391, 0.0323098078, 0.0102401646, 0.0197324175, -0.0191839486, 0.0350770839, 0.000899052771, 0.0135247456, 0.00106343767, -0.00128936942, 0.0158557389, -0.00472431211, -0.0202933513, -0.0171645842, -0.021215776, 0.012085015, -0.00813977793, 0.0148959178, -0.00434723962, -0.0134624196, -0.000675068644, -0.00801512599, 0.010545562, -0.00707400311, 0.00860099, 0.00636037, 0.064669475, -0.00588980876, 0.0204554, 0.0124402726, 0.00543794502, 0.016030252, 0.0222503878, -0.00341546582, 0.00957950857, -0.00894378312, -0.0125524597, -0.00521980412, 0.00222971314, -0.0049019414, -0.00198664167, -0.00579008693, -0.00430672755, -0.0116487322, -0.0238210037, 0.011692361, 0.00177005888, 0.0135995364, 0.026102135, 0.018386174, 0.0123530161, -0.00683093164, -0.00648813834, -0.0153945265, -0.0120413862, -0.00575269153, -0.0161299724, 0.0127207404, 0.0169776063, -0.0037489098, 0.028570246, 0.0209789369, -0.00289348536, 0.00472431211, 0.00132364873, 0.00993476715, 0.0144471703, 0.0192836691, 0.00865708385, -0.0368720703, -0.0113558006, 0.00246499386, 0.0169152804, -0.00903104, -0.0339801461, 0.014285123, 0.00613288, 0.03061454, -0.000452253153, 0.0234595127, -0.0111563569, -0.0194457173, 0.0372210965, -0.017052399, 0.0136867929, 0.005830599, -0.0162296947, 2.27270848e-05, 0.0161050428, -0.0137366541, -0.0221008062, 0.0136618633, 0.00373644475, 0.0169776063, -0.00336560491, -0.0123779466, 0.00229203934, 0.00200222339, 0.00217050361, 0.0103024906, 0.00411351724, -0.0127394376, 0.0181991961, 0.0105642602, 0.00133143947, -0.015967926, -0.00995346531, -0.0112249153, -0.0134499548, -0.0171895158, 0.00271585607, -0.00698674656, 0.00800889358, 0.0109569142, -0.0220010839, -0.00987244118, -0.0164042078, -0.0248431507, 0.00348714064, 0.00121457828, -0.00931150652, -0.00803382322, -0.00259743677, -0.0233971868, -0.0134125585, -0.0155316433, -0.0176631939, 0.0461960435, 0.0148086613, -0.0114866849, 0.000484974327, -0.01238418, 0.00526966481, -0.0345036834, -0.0178127754, -0.0251173843, -0.0225121565, 0.00193678099, 0.00290439231, -0.0110566355, 0.00509826839, -0.0214775447, 0.0170648638, 0.0246312413, -0.000294879952, -0.00173577957, -0.0141978664, 0.0229983, 0.0098038828, -0.0185980834, -0.0131881852, -0.00142337044, 3.54722688e-05, 0.00520733884, 0.00188224565, -0.00106499577, 0.0038455152, 0.0108634243, 0.00665641855, -0.00415714551, -0.00156827841, -0.00828312803, 0.0126708793, 0.00506087253, -0.00914945919, 0.00762870442, 0.0142975878, 0.00403872598, -0.00448747305, -0.0100781173, 0.00314902188, -0.000998774427, 0.00192743202, 0.000336755271, 0.000398107426, -0.0119977584, -0.0184609666, -0.0246437062, 0.00224996917, -0.0071487939, 0.028744759, -0.0133502325, -0.00184173381, 0.0198570695, -0.0106639815, -0.0130884638, 0.0099846283, 0.0148211271, -0.0104770036, -0.0169526767, 0.0117484545, 0.0103648165, 0.0239955168, -0.00586176198, 0.00764116971, 0.033331953, 0.00930527411, 0.0110877985, -0.0107138427, -0.00250706403, -0.0207670294, 0.00908713322, -0.000856203667, 0.00326276687, 0.0296422541, -0.0235467684, -0.000813354505, -0.00514501287, 0.0125275292, 0.00452486891, 0.0228611827, 0.00541924732, 0.014222797, -0.00903727207, 0.00390472496, 0.00717995735, 0.00403561, 0.0262517184, 0.0109880771, 0.0133751631, 0.00736070238, -0.00698674656, -0.0193709265, 0.0120600844, -0.00719865505, -0.00405119127, -0.011723524, -0.00521045504, -0.0103024906, 0.00825196505, 0.00239799358, 0.0256533884, 0.0209415425, -0.00598953, 0.00142960297, -0.00287011312, -0.0132380463, 0.0016905932, 0.00383616635, -0.0103897471, -0.0102962581, 0.0218888968, 0.0155441081, -0.0250176638, 0.0107076094, 0.00651930133, 0.0052665486, -0.0143474489, 0.00289348536, 0.000408624939, -0.00167189538, 0.00607055426, -0.015244944, -0.00237617944, -0.00807745196, -0.00812108, -0.0392653905, -0.000842180278, 0.00044251472, -0.00185887341, 0.0217767097, 0.0190219, -0.00884406175, 0.0022686671, -0.00131663715, -0.00853243191, 1.44250644e-05, -0.0306394696, -0.0172269102, -0.015244944, -0.023683887, 0.0179374274, 0.0176008679, 0.00799019542, -0.00959197432, -2.23862389e-05, -0.00370216533, -0.0265758131, 0.0159305297, 0.00660655787, -0.0123530161, 0.0245689154, 0.0020037815, -0.00335625606, 0.0071487939, -0.0233597904, -0.0187352, 0.00906843506, -0.0108073317, 0.00632297434, 0.0135995364, -0.0058711106, -0.00451552, -0.0187850613, -0.00129716017, 0.0035619319, -0.0023715049, 0.0020879216, 0.020430468, 0.011362033, -0.00571529567, -0.00478975428, -0.0169776063, -0.00485831313, 0.0164166726, -0.00648190593, -0.0401878171, 0.00301034655, -0.00309137045, -0.00296048587, -0.024282217, 0.0154817821, 0.010152908, 0.00675614038, 0.0249553379, 0.0102339322, 0.017052399, -0.0165413246, -0.0164042078, 0.00910583138, 0.00444384478, 0.00601134449, 0.0067249774, -0.0122158993, 0.00506087253, -0.00828312803, -0.000945018255, 0.00227645785, -0.00868824683, 0.0144596361, 0.001740454, 0.0192712042, 0.0199443251, 0.0118170129, -0.000691039721, 0.00622325297, 0.0120787816, -0.00995969772, 0.0157061554, 0.0149083836, -0.00924294814, -0.00996593, -0.0126895774, 0.00288881082, -0.0302156527, 0.0101778386, 0.0151327569, 0.0111625893, -0.0104770036, 0.0133253019, -0.00294334604, -0.0195454396, -0.0292184372, -0.0098412782, -0.0124963662, 0.00337495375, -0.00340300053, 0.0220758747, -0.0100407209, -0.00830182526, -0.0176382624, 0.00601134449, -0.00361490902, -0.0124278078, 0.00262704166, 0.0180870108, 0.00275013549, -0.00242604013, -0.00158619718, -0.00257406454, 0.0130261378, 0.00378007302, -0.0107824011, -0.0167283025, -0.0189346448, -0.0168280248, -0.00803382322, 0.0120600844, 0.0244941246, 0.000886587601, 0.00665641855, 0.00698051369, 0.0120974798, -0.00688702473, -0.0142726582, 0.023322396, -0.00739186537, 0.000998774427, -0.00588357588, -0.0110815661, -0.0101653729, 0.019171482, 0.011206218, -0.0195703693, 0.00883782934, 0.0340798646, -0.0122844577, 0.00847010594, -0.0166659765, -0.0188723169, 0.00693688588, 0.00044835778, -0.0170648638, -0.0113682654, 0.0245813802, -0.0244941246, 0.00887522474, -0.034777917, 0.00600822782, -0.0343790315, -0.0023699468, -0.0194955785, -0.0252420362, -0.000801668386, 9.66053267e-05, 0.0159305297, 0.0236090943, -0.00196794397, -0.019171482, 0.00115614757, 0.00430672755, 0.00402626069, 0.01741389, -0.00220945734, -0.00126366, -0.0162421595, 0.00130027649, -0.00306955632, 0.0246561728, 0.0142975878, 0.00434723962, 0.0102588627, 0.0111189615, 0.0208418202, 0.0125836227, 0.0350770839, -0.0114056608, -0.0172518417, 0.0125711579, -0.00769103039, -0.00722358515, -0.0236340258, -0.000402002799, -0.0043752864, 0.00896248128, 0.0010026698, -0.0262517184, 0.00186354795, -0.0127581358, 0.0140856793, -0.00107824011, -0.0100157913, 0.0104333749, 0.0056498535, -0.000835168641, -0.00487389462, -0.00094969268, -0.0098412782, -0.00211908459, -0.0166036505, -0.00693065301, 0.00956704374, 0.0138737718, 0.00408235425, -0.0214900114, 0.000184348668, 0.0037644913, -0.00815224275, 0.00491129, 0.0145094963, 0.00779075222, -0.0155316433, 0.0109008206, 0.0118170129, 0.00959820673, 3.64461121e-05, -0.00127534615, 0.0115178479, 0.00522603653, -0.0106203528, -0.00569348177, -0.0328084156, 0.0144222407, -0.00235436531, 0.0320355743, 0.00776582165, -0.0226492751, 0.0147837307, -0.00815847516, -0.00906843506, -0.00147790567, -0.0111002633, 0.0187227353, 0.0147463353, -0.0108135641, -0.00150595233, 0.00145764975, 0.0121411085, -0.00436593732, 0.000867110735, 0.00544417743, 0.0164665338, 0.00651930133, 0.00557817845, 0.00431296043, 0.00473054452, -0.00650060363, -0.0105891898, -0.00144128909, -0.0023699468, -0.0116113368, -0.00679353578, -0.0152823394, -0.000673900067, -0.00893755071, 0.023559235, -0.0157809481, -0.0121909687, 0.0169526767, 0.00262704166, 0.0129264155, 0.00831429102, -0.00050717796, -0.0246063117, -0.0211409852, 0.00236371416, -0.0134499548, -0.00142337044, -0.0191216227, 0.0043565887, -0.00625129929, 0.00570906326, 0.00392030645, 0.00595213473, -0.00187601312, -0.015369596, -0.00819587149, 0.0267253965, -0.0227739271, 0.0118357101, -0.00208013086, 0.00655669672, 0.0154568525, 0.00949848536, -0.00901234243, 0.0223999713, -0.00324718538, 0.0124278078, 0.0101030469, 0.00326588331, -0.0154693173, 0.0347031243, 0.00203961879, -0.00655046431, 0.013562141, -0.00139610283, -0.00786554348, -0.00322537147, 0.0141480062, 0.0186728742, -0.00528213, -0.0102650952, 0.00934266951, -0.00891885255, 0.0126272505, -0.00293867174, 0.023621561, 0.000677405915, -0.0323596671, 0.000534835155, -0.000308903313, -0.00318797585, 0.00124028767, 0.00242448202, -0.00625753216, 0.0074915872, -0.00542547973, 0.00303216069, -0.0033843026, 0.0112249153, 0.0341795869, -0.001905618, 0.0122096669, -0.026102135, -0.0260024145, -0.00214245683, 0.0114929173, -0.00900610909, -0.0104957009, 0.0340798646, 0.000130202941, -0.00640711468, 0.00272208871, 0.00208324706, -0.00671874452, 0.0332571641, 0.00578073785, 0.0205675848, 0.000727656239, -0.00434723962, 0.000611184514, -0.0120289214, 0.00412909873, 0.00389537611, 0.018323848, 0.000469782361, -0.0135372104, -0.0088939229, 0.00131118356, -0.0375701226, 0.0127892988, 0.02055512, -0.0045560319, 0.0099846283, 0.00811484735, 0.0217891745, 0.0217019189, -0.0192213431, -0.00656916201, -0.00556882937, 0.0130136721, -0.0164789986, 0.000239760397, 0.00111875194, -0.0173017029, 0.00717372447, -0.0100843497, 0.0156438295, -0.0232102089, 0.0421323888, -0.00792163704, -0.00531952549, 0.00473366119, 2.06698387e-05, -0.0175136104, 0.00764740212, -0.00431296043, -0.0183363147, 0.0018744549, 0.0110130068, -0.0277974028, 0.00634167204, 0.00532887457, -0.0067249774, 0.018747665, 0.0101653729, -0.0108384946, -0.00902480725, 0.0099846283, -0.0106452834, 0.021814106, -0.0143599147, 0.00438775169, -0.00260990206, 0.000620922947, -0.0155316433, -0.00933020469, 0.0065816273, -8.8985e-06, -0.0142726582, -0.0212282408, 0.00371463061, -0.000772842614, 0.0178377051, 0.00212999154, 0.0126646468, -0.0283957329, 0.00454356661, 0.00754768075, 0.00267534424, 0.0116861286, 0.008345454, 0.00113589165, 0.00287790387, 0.0142477276, 0.0201687, -0.0189969707, 0.00395458564, -0.0304150954, -0.0181618016, 0.0194332525, 0.00797149725, -0.00499543035, 0.022237923, -0.0198072083, 0.00726098102, 0.00337807019, 0.00997839496, 0.00863215327, -0.0011834153, 0.00748535478, -0.00533822319, 0.043029882, -0.00406988896, -0.0240952373, 0.00186978048, -0.0047585913, -0.0240952373, -0.00665018614, 0.0210038684, 0.00464952085, 0.00265820464, 0.0116175693, -0.00124262495, -0.0194332525, -0.00985997543, -0.0149831744, 0.0173390973, 0.0023699468, -0.00269560027, -1.16070032e-05, 0.00688079232, 0.00215180567, 0.0238210037, 0.00734823756, 0.0184609666, -0.010152908, 0.00964183453, -0.0168280248, 0.0119665954, 0.0117671518, -3.12603916e-05, -0.00319109205, -0.012053852, -0.0150953615, 0.00940499548, -0.0113744978, -1.50337173e-05, -0.00645074295, -0.0132255806, -0.0121161779, 0.0261270665, -0.0218265709, 0.00344974501, 0.0255785976, -0.0146840094, -0.0126833441, 0.00530706, -0.00542859593, 0.0107574705, -0.0287946202, -0.005469108, 0.00506087253, -0.00945485663, 0.0119790602, 0.0167906284, 0.00194145541, -0.0159429945, 0.0136743281, 0.00823326688, 0.00345909386, 0.00759130903, -0.00189003651, -0.0213279631, 0.000487311539, 0.00211908459, 0.000681690814, 0.00586487819, -0.0110877985, -0.00158074358, -0.00203806069, -0.0279469863, 0.00337183755, 0.0165662561, -0.00718618976, -0.00862592086, -0.00880043395, -0.0203432124, -0.00811484735, 0.00601134449, 0.0178127754, 0.0139485626, 0.00910583138, -0.00126054371, -0.00634478871, -0.00188224565, 0.0142726582, 0.0119665954, 0.0268001873, 0.00795903243, -0.011898037, -0.00874434, 0.0137491189, -0.0195703693, -0.00011335544, 0.00570594706, -0.0110192401, 0.0102401646, -0.0138987014, 0.0208168887, -0.00174512842, 0.00363360671, 0.00981011521, -0.0162546244, -0.000433555368, 0.00734823756, -0.0067436751, 0.0141480062, 0.0223376453, -0.0140732145, 0.0173266325, -0.00916192401, 0.0116798952, 0.00397328334, -0.022175597, -0.0101591405, -0.00529771158, 0.00837038364, 0.00130183471, -0.0302156527, -0.0135746067, -0.00972909108, -0.0264760926, -0.00134078844, -0.0204554, -0.0154693173, -0.00903104, 0.00696181599, -0.0253666881, 0.00304930029, -0.00680600107, -0.0109506808, 0.00611729873, -0.00944862422, 0.0103336535, 0.0125025986, -0.00813354552, 0.00175136107, -0.0155191785, 0.00952964835, -0.0124839013, 0.00339365168, 0.0253292937, 0.00805252139, -0.0162920207, 0.0217268486, -0.00345597765, 0.0279719159, -0.00619209, -0.0159180649, 0.00325030182, -0.0203182809, -0.0131757203, -0.00817094091, -0.00413533114, 0.00481780106, -0.00612353114, 0.0154194562, -0.0161050428, 0.00846387353, -0.00242448202, -0.00922425091, -0.00903104, 0.000784918258, 0.0260273442, -0.0274982378, 0.00317395246, -0.00957950857, 0.00408547046, -0.0124652032, 0.0175260752, 0.00863838568, 0.0116175693, 0.00289192726, 0.00832675584, 0.0118793389, -0.00610483345, 0.0212656371, -0.00092476228, -0.0171396546, 0.00348714064, 0.00808991678, -0.0153571302, -0.0107013769, -0.0029152995, 0.00555636454, -0.00968546327, 0.0104770036, -0.0168030933, 0.0185980834, 0.0144721009, -0.00463705556, 0.00879420061, -0.00920555275, -0.0221631322, -0.00962937, -0.00876927096, 0.0252420362, 0.00265353, -0.000846075651, 0.0119167343, 0.0043971003, -0.0268749781, 0.023621561, -0.00979764946, -0.0278223343, 0.00884406175, 0.0221132711, -0.00315525453, 0.00342169823, -0.0283957329, -0.00362425786, 0.0162172299, 0.00140233536, 0.0040480746, -0.0150455, -0.00982881244, -0.0083828494, -0.0146964751, 0.0226368085, -0.00205052597, 0.0180246849, 0.0178252403, 0.00215180567, 0.000667667482, 0.00432854192, 0.0178501718, -0.0091556916, -0.0188972484, -0.0200315826, -0.00784684531, 0.0154069914, -0.00351830362, -0.00251018023, 0.00280934526, -0.00759754144, 0.00729837641, -0.0141978664, -0.0131133934, -0.00566231878, 0.00806498621, 0.00935513526, -0.0153446654, 0.0110441698, 0.0311630089, 0.01904683, 0.0172767714, -0.0137117235, -0.0160053205, 0.00151062687, 0.0141729359, 0.0136992587, -0.010639051, -0.0216271281, -0.00974778924, 0.00983504578, 0.0124465059, -0.00518240826, 0.0214900114, -0.00158385991, 0.00888145715, -0.0109756114, -0.00193366467, -0.0129762767, -0.00555324787, -0.00093800656, -0.0180122182, -0.00232320232, 0.0121099446, 0.0128142294, 0.00223906222, -0.00371774682, -0.0126833441, 0.0258528311, 0.0374704, -0.0132879065, 0.00844517536, 0.0186978057, -0.0145593574, 0.00833298825, 0.00137039332, 0.0221132711, -0.00874434, -0.00935513526, 0.0159554612, -0.0184485018, 0.00785931107, 0.00700544426, 0.0193086, 0.0267503262, 0.000588980853, 0.0124652032, -0.0132879065, 0.00804005656, 0.00454668282, 0.00188224565, -0.00742302882, 0.0125088319, 0.0196451601, 0.00508891931, 0.0265010223, 0.0150579652, -0.00415402884, -0.0358000621, 0.0319857113, -0.0236090943, 0.00779698463, 0.023197744, -0.0134000937, 0.00681223348, -0.0187601317, 0.00498296507, 0.0149956392, 0.018323848, 0.00198975811, 0.0218515024, 0.00540054915, -0.000189899583, -0.0102962581, -0.00164384872, -0.00978518464, 0.0121161779, 0.00520422217, -0.0142103322, -0.00189003651, -0.0031163008, -0.00362737407, -0.0164914634, -0.0220010839, 0.000952809, -0.0152200134, -0.00766610028, -0.000438229792, -0.00422258768, -0.0089313183, 0.0156438295, -0.00459342729, -0.00411974965, 0.00660655787, -0.0224747621, -0.0164789986, 0.00741679594, 0.0184858963, -0.0144097749, 0.02326007, -0.00261769281, 0.021814106, 0.00592408795, -0.0245689154, -0.0113246376, -0.00480533578, 0.00125976466, 0.0310882162, -0.00226555066, 0.00799019542, 0.00277818227, 0.0110940309, 0.0157684814, 0.00764740212, 0.00157373189, 0.00416337792, 0.00347467535, -0.00463082315, -0.0227489956, -0.0051013846, -0.0033843026, -0.000597161124, 0.0357003435, -0.0105642602, -0.0106141204, -0.00477417279, -0.000181427138, 0.00179966376, 0.0187975261, 0.0135995364, -0.0248680804, -0.00534445606, 0.00725474814, -0.0096231373, 0.00176226813, -0.0089749461, -0.0130884638, -0.0129513461, -0.00333755813, 0.00535380468, -0.0195952989, 0.0045560319, -0.0164540689, 0.00389537611, -0.00772219338, -0.00756014604, 0.010514399, -0.0147588011, -0.023023231, -0.0197448824, -0.0189346448, 0.00523850182, -0.0101279775, 0.0313624516, 0.0184111055, 0.00236215605, -0.0247060321, -0.0243944023, 0.00976025406, 0.0104894685, 0.00634478871, -0.00765986741, -0.00337183755, -0.00903104, -0.0165413246, 0.00909959804, -0.00362425786, 0.00425998308, 0.0140358191, -0.00178252405, 0.0248930119, 0.00501412805, -0.00185108266, -0.0156936906, -0.000427712279, 0.0162421595, 0.00108057726, 0.0253666881, -0.0115116155, -0.0153446654, -0.0104957009, 0.00113978703, -0.00303371879, 0.00416961033, -0.00266132085, 0.0112560783, 0.00230762083, 0.00831429102, 0.00756014604, -0.0231852774, 0.00199443265, 0.0205675848, -0.0196202304, 0.00368970027, -0.0098412782, -0.00693065301, -0.0140981451, -0.00683093164, -0.011991526, -0.00694311829, -0.019345995, 0.00484584784, -0.00227645785, -0.0163044855, -0.00868201442, 0.0128765553, -0.017052399, 0.00130495103, 0.0255287364, 0.0181493368, -0.00117172906, -0.0168155599, 0.0218265709, -0.0225495528, 0.00643827766, 0.000945797306, 0.00939876307, 0.0338804238, -0.00814601, 0.0386172, -0.00267846067, 0.0200939085, -5.55091101e-05, 0.0362737402, 0.00128936942, 0.00342793087, -0.00469626533, 0.00506710494, 0.000257484353, 0.00641334709, -0.016267091, 0.029467741, -0.0141230756, -0.0114368238, 0.0295176022, -0.000697272306, 0.0145967528, 0.0242198892, 0.0108135641, -0.0422819704, 0.0193584599, -0.00451863604, -0.0282960124, 0.0367972814, -0.0213653594, 0.0116487322, -0.000637283549, -0.0041914247, 0.0316865481, 0.0132255806, 0.0179374274, 0.00935513526, -0.00696804887, 0.00989737175, 0.00573711, 0.012085015, 0.0487888046, 0.0173390973, -0.00468068384, -0.00472742831, 0.00272832136, 0.00236371416, -0.00452175271, -0.000391680049, -0.0299164876, -0.00475547509, 0.0219262931, -0.000960599747, 0.000607678667, -0.0232974645, 0.0156313647, -0.00146076607, -0.0132505111, -0.00397328334, 0.0179872885, -0.00667511625, -0.00251173857, 0.022960905, -0.0217767097, -0.0285203848, -0.00470249774, -0.0217393152, -0.00033811864, 0.00521668745, -0.00616092654, 0.00817094091, -0.0082021039, 0.0122096669, -0.00422570389, 0.00648190593, 0.00987244118, -0.0117609194, -0.0237711426, 0.00251173857, -0.00758507615, -0.0260772053, -0.0141729359, -0.00657539489, 0.00870071165, 0.00110784499, -0.00137428869, -0.00651306892, -0.0085261995, 0.00683093164, -0.0137491189, -0.0184235703, 0.00427868124, -0.0156812258, 0.0236589555, -0.0312378, 0.0231603477, -0.00146232417, 0.0073295394, -0.013138324, -0.0135122808, -0.0173017029, -0.00215959642, -0.00479287049, -3.31837364e-05, -0.00645697536, -0.011630035, -0.00130339281, 0.00645697536, 0.0288943406, 0.014883453, 0.0282212198, -0.0168529544, 0.018685339, 0.00554389926, -0.00793410186, 0.008345454, -0.0121972011, 0.00130962546, 0.0105704926, 0.00951095, -0.00560934143, -0.00115069409, -0.00282336865, -0.00944239181, -0.0187352, 0.00454668282, 0.0168654192, 0.00525408331, 0.00316304527, 0.0146590788, 0.00308669591, 0.00683716405, 0.00151140592, -0.00211908459, -0.00923048332, 0.00454356661, 0.00189782726, -0.0324095301, -0.0349773616, 0.0101092802, -0.000570283039, -0.00574022625, 0.0027532517, -0.0189969707, -0.0174014233, -0.0152698737, 0.00890015531, 0.0054878057, 0.00743549364, 0.00398263242, 0.00165943021, -0.00873187464, 0.00529459491, 0.00381123601, -0.00555948075, 0.00242604013, 0.00103305373, -0.00375825888, -0.0071113985, 0.0145718222, -0.0164416041, -0.00145219616, 0.0363734625, 0.00924294814, 0.0160801131, -0.0124776689, 0.00861968845, 0.0100095579, 0.00338741904, 0.000928657653, 0.00823326688, -0.0299663488, 0.0141978664, 0.00646944065, -0.00466198614, 0.0297170449, -0.0150704309, 0.0029339972, -0.00997216254, -0.0137117235, -0.0180496145, 0.00147634756, 0.0174512845, 0.00298074167, 0.0155316433, -0.00501724426, 0.00224373653, 0.0171770509, -0.0163792763, -0.0219761543, 0.00800266, -0.0214650799, 0.00289815967, -0.00661902316, -0.00160022045, 0.0280716382, 0.0250425935, 0.000237228407, -0.00332820928, 0.0204180032, 0.00987867359, -0.0121224103, -0.00474612601, 0.00415714551, -0.0106328186, 0.00480221957, 0.00517305918, -0.0012363923, -0.0107450057, 0.000113063288, 0.0197573472, 0.0136493975, 0.0034653265, -0.010607888, 0.00668758154, -0.0167033728, 0.0156936906, 0.0297170449, -0.00446254294, 0.000938785612, 0.00563738821, 4.21796176e-06, -0.00196015323, -0.00698051369, 0.0178252403, 0.0161299724, -0.0170274675, 0.00067039422, -0.0310383569, 0.00341858203, -0.00425063446, -0.0299164876, 0.0188723169, 0.00545975892, -0.0226742048, -0.00572464475, -0.024344543, -0.00418207562, 0.0136743281, -0.0169776063, 0.0018245941, -0.00561869051, -0.0107076094, 0.0121722715, -0.0146341491, -0.00128313689, -0.000636114914, -0.0219138283, -0.00917439, -0.0164291374, 0.00097851851, 0.0116487322, -0.00553766638, 0.0143474489, -0.00567790028, 0.00170150027, 0.0179623589, 0.007292144, 0.00375202624, 0.0050858031, 0.00158074358, -0.0153322006, 0.00734823756, 0.0114181265, 0.00417895941, 0.00224685296, 0.00130495103, -0.00352453627, -0.000335781428, 0.0139610274, 0.0227365308, 0.00721112033, 0.0139734931, -0.0250301287, -0.00301190466, -0.0157186221, -0.0103149554, -0.0295674615, -6.41763181e-05, -0.0250924546, 0.00134078844, 0.0166535117, -0.0073295394, 0.00590539025, 0.0231603477, 0.0138239106, 0.00614846172, 0.0166784413, -0.00494556921, 0.0189221781, 0.0100781173, -0.00164852315, -0.0119292, 0.0154942479, 0.0293181576, -0.0210287981, 0.00420389, 0.00693688588, 0.0161424391, 0.00214868947, -0.00663772086, 0.013985958, -0.0160551816, 0.00885652658, 0.00785307772, -0.00529771158, -0.0415589884, 0.0249428712, 0.00153477816, -0.00442826329, 0.0106328186, -0.00659409259, -0.00534445606, 0.0117671518, 0.00515747769, -0.0253417585, 0.00205675862, -0.0158183426, 0.0050858031, 0.00560310902, 0.00808368437, 0.0176881235, 0.0176631939, -0.00110317045, 0.0144471703, 0.028146429, 0.0127643682, 0.0192836691, -0.00107512379, 0.00727967871, -0.0111064957, -0.0118170129, 0.00108213548, 0.0271492135, -0.0113495672, 0.00856359489, -0.00931150652, -0.00730460929, 0.00559999282, -0.00173110515, -0.0329330675, 0.0108696576, -0.012839159, 0.0308638439, 0.0237960741, -0.0109943096, 0.00615469413, 0.00155659229, -0.00891262, -0.0190717615, -0.023983052, -0.00813354552, -0.022237923, 0.00630427664, -0.0167283025, 0.00144674268, -0.00669381442, 0.00315213832, 0.0109569142, -0.0324593894, 0.0373956114, 0.0191465523, -0.0131881852, -0.0179000311, 0.0101155126, 0.00372086326]
31 Mar, 2022
Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts 31 Mar, 2022 Given an array A[] of length N, where N is an even number, the task is to answer Q independent queries where each query consists of a positive integer K representing the number of circular shifts performed on the array and find the sum of elements by performing Bitwise OR operation on the divided array.Note: Each query begins with the original array.Examples: Input: A[] = {12, 23, 4, 21, 22, 76}, Q = 1, K = 2 Output: 117 Explanation: Since K is 2, modified array A[]={22, 76, 12, 23, 4, 21}. Bitwise OR of first half of array = (22 | 76 | 12) = 94 Bitwise OR of second half of array = (21 | 23 | 4) = 23 Sum of OR values is 94 + 23 = 117Input: A[] = {7, 44, 19, 86, 65, 39, 75, 101}, Q = 1, K = 4 Output: 238 Since K is 4, modified array A[]={65, 39, 75, 101, 7, 44, 19, 86}. Bitwise OR of first half of array = 111 Bitwise OR of second half of array = 127 Sum of OR values is 111 + 127 = 238 Naive Approach: To solve the problem mentioned above the simplest approach is to shift each element of the array by K % (N / 2) and then traverse the array to calculate the OR of the two halves for every query. But this method is not efficient and hence can be optimized further.Efficient Approach: To optimize the above mentioned approach we can take the help of Segment Tree data structure. Observation: We can observe that after exactly N / 2 right circular shifts the two halves of the array become the same as in the original array. This effectively reduces the number of rotations to K % (N / 2). Performing a right circular shift is basically shifting the last element of the array to the front. So for any positive integer X performing X right circular shifts is equal to shifting the last X elements of the array to the front. Following are the steps to solve the problem : Construct a segment tree for the original array A[] and assign a variable let’s say i = K % (N / 2). Then for each query we use the segment tree of find the bitwise OR; that is Bitwise OR of i elements from the end OR bitwise OR of the first (N / 2) – i – 1 elements. Then calculate the bitwise OR of elements in range [(N / 2) – i, N – i – 1]. Add the two results to get the answer for the ith query.Below is the implementation of the above approach: C++ // C++ Program to find Bitwise OR of two // equal halves of an array after performing // K right circular shifts #include <bits/stdc++.h> const int MAX = 100005; using namespace std; // Array for storing // the segment tree int seg[4 * MAX]; // Function to build the segment tree void build(int node, int l, int r, int a[]) { if (l == r) seg[node] = a[l]; else { int mid = (l + r) / 2; build(2 * node, l, mid, a); build(2 * node + 1, mid + 1, r, a); seg[node] = (seg[2 * node] | seg[2 * node + 1]); } } // Function to return the OR // of elements in the range [l, r] int query(int node, int l, int r, int start, int end, int a[]) { // Check for out of bound condition if (l > end or r < start) return 0; if (start <= l and r <= end) return seg[node]; // Find middle of the range int mid = (l + r) / 2; // Recurse for all the elements in array return ((query(2 * node, l, mid, start, end, a)) | (query(2 * node + 1, mid + 1, r, start, end, a))); } // Function to find the OR sum void orsum(int a[], int n, int q, int k[]) { // Function to build the segment Tree build(1, 0, n - 1, a); // Loop to handle q queries for (int j = 0; j < q; j++) { // Effective number of // right circular shifts int i = k[j] % (n / 2); // Calculating the OR of // the two halves of the // array from the segment tree // OR of second half of the // array [n/2-i, n-1-i] int sec = query(1, 0, n - 1, n / 2 - i, n - i - 1, a); // OR of first half of the array // [n-i, n-1]OR[0, n/2-1-i] int first = (query(1, 0, n - 1, 0, n / 2 - 1 - i, a) | query(1, 0, n - 1, n - i, n - 1, a)); int temp = sec + first; // Print final answer to the query cout << temp << endl; } } // Driver Code int main() { int a[] = { 7, 44, 19, 86, 65, 39, 75, 101 }; int n = sizeof(a) / sizeof(a[0]); int q = 2; int k[q] = { 4, 2 }; orsum(a, n, q, k); return 0; } Java // Java program to find Bitwise OR of two // equal halves of an array after performing // K right circular shifts import java.util.*; class GFG{ static int MAX = 100005; // Array for storing // the segment tree static int []seg = new int[4 * MAX]; // Function to build the segment tree static void build(int node, int l, int r, int a[]) { if (l == r) seg[node] = a[l]; else { int mid = (l + r) / 2; build(2 * node, l, mid, a); build(2 * node + 1, mid + 1, r, a); seg[node] = (seg[2 * node] | seg[2 * node + 1]); } } // Function to return the OR // of elements in the range [l, r] static int query(int node, int l, int r, int start, int end, int a[]) { // Check for out of bound condition if (l > end || r < start) return 0; if (start <= l && r <= end) return seg[node]; // Find middle of the range int mid = (l + r) / 2; // Recurse for all the elements in array return ((query(2 * node, l, mid, start, end, a)) | (query(2 * node + 1, mid + 1, r, start, end, a))); } // Function to find the OR sum static void orsum(int a[], int n, int q, int k[]) { // Function to build the segment Tree build(1, 0, n - 1, a); // Loop to handle q queries for(int j = 0; j < q; j++) { // Effective number of // right circular shifts int i = k[j] % (n / 2); // Calculating the OR of // the two halves of the // array from the segment tree // OR of second half of the // array [n/2-i, n-1-i] int sec = query(1, 0, n - 1, n / 2 - i, n - i - 1, a); // OR of first half of the array // [n-i, n-1]OR[0, n/2-1-i] int first = (query(1, 0, n - 1, 0, n / 2 - 1 - i, a) | query(1, 0, n - 1, n - i, n - 1, a)); int temp = sec + first; // Print final answer to the query System.out.print(temp + "\n"); } } // Driver Code public static void main(String[] args) { int a[] = { 7, 44, 19, 86, 65, 39, 75, 101 }; int n = a.length; int q = 2; int k[] = { 4, 2 }; orsum(a, n, q, k); } } // This code is contributed by 29AjayKumar Python3 # Python3 program to find Bitwise OR of two # equal halves of an array after performing # K right circular shifts MAX = 100005 # Array for storing # the segment tree seg = [0] * (4 * MAX) # Function to build the segment tree def build(node, l, r, a): if (l == r): seg[node] = a[l] else: mid = (l + r) // 2 build(2 * node, l, mid, a) build(2 * node + 1, mid + 1, r, a) seg[node] = (seg[2 * node] | seg[2 * node + 1]) # Function to return the OR # of elements in the range [l, r] def query(node, l, r, start, end, a): # Check for out of bound condition if (l > end or r < start): return 0 if (start <= l and r <= end): return seg[node] # Find middle of the range mid = (l + r) // 2 # Recurse for all the elements in array return ((query(2 * node, l, mid, start, end, a)) | (query(2 * node + 1, mid + 1, r, start, end, a))) # Function to find the OR sum def orsum(a, n, q, k): # Function to build the segment Tree build(1, 0, n - 1, a) # Loop to handle q queries for j in range(q): # Effective number of # right circular shifts i = k[j] % (n // 2) # Calculating the OR of # the two halves of the # array from the segment tree # OR of second half of the # array [n/2-i, n-1-i] sec = query(1, 0, n - 1, n // 2 - i, n - i - 1, a) # OR of first half of the array # [n-i, n-1]OR[0, n/2-1-i] first = (query(1, 0, n - 1, 0, n // 2 - 1 - i, a) | query(1, 0, n - 1, n - i, n - 1, a)) temp = sec + first # Print final answer to the query print(temp) # Driver Code if __name__ == "__main__": a = [ 7, 44, 19, 86, 65, 39, 75, 101 ] n = len(a) q = 2 k = [ 4, 2 ] orsum(a, n, q, k) # This code is contributed by chitranayal C# // C# program to find Bitwise OR of two // equal halves of an array after performing // K right circular shifts using System; class GFG{ static int MAX = 100005; // Array for storing // the segment tree static int []seg = new int[4 * MAX]; // Function to build the segment tree static void build(int node, int l, int r, int []a) { if (l == r) seg[node] = a[l]; else { int mid = (l + r) / 2; build(2 * node, l, mid, a); build(2 * node + 1, mid + 1, r, a); seg[node] = (seg[2 * node] | seg[2 * node + 1]); } } // Function to return the OR // of elements in the range [l, r] static int query(int node, int l, int r, int start, int end, int []a) { // Check for out of bound condition if (l > end || r < start) return 0; if (start <= l && r <= end) return seg[node]; // Find middle of the range int mid = (l + r) / 2; // Recurse for all the elements in array return ((query(2 * node, l, mid, start, end, a)) | (query(2 * node + 1, mid + 1, r, start, end, a))); } // Function to find the OR sum static void orsum(int []a, int n, int q, int []k) { // Function to build the segment Tree build(1, 0, n - 1, a); // Loop to handle q queries for(int j = 0; j < q; j++) { // Effective number of // right circular shifts int i = k[j] % (n / 2); // Calculating the OR of // the two halves of the // array from the segment tree // OR of second half of the // array [n/2-i, n-1-i] int sec = query(1, 0, n - 1, n / 2 - i, n - i - 1, a); // OR of first half of the array // [n-i, n-1]OR[0, n/2-1-i] int first = (query(1, 0, n - 1, 0, n / 2 - 1 - i, a) | query(1, 0, n - 1, n - i, n - 1, a)); int temp = sec + first; // Print readonly answer to the query Console.Write(temp + "\n"); } } // Driver Code public static void Main(String[] args) { int []a = { 7, 44, 19, 86, 65, 39, 75, 101 }; int n = a.Length; int q = 2; int []k = { 4, 2 }; orsum(a, n, q, k); } } // This code is contributed by 29AjayKumar Javascript <script> // javascript program to find Bitwise OR of two // equal halves of an array after performing // K right circular shifts const MAX = 100005; // Array for storing // the segment tree var seg = Array(4 * MAX).fill(0); // Function to build the segment tree function build(node , l , r , a) { if (l == r) seg[node] = a[l]; else { var mid = parseInt((l + r) / 2); build(2 * node, l, mid, a); build(2 * node + 1, mid + 1, r, a); seg[node] = (seg[2 * node] | seg[2 * node + 1]); } } // Function to return the OR // of elements in the range [l, r] function query(node , l , r , start , end , a) { // Check for out of bound condition if (l > end || r < start) return 0; if (start <= l && r <= end) return seg[node]; // Find middle of the range var mid = parseInt((l + r) / 2); // Recurse for all the elements in array return ((query(2 * node, l, mid, start, end, a)) | (query(2 * node + 1, mid + 1, r, start, end, a))); } // Function to find the OR sum function orsum(a , n , q , k) { // Function to build the segment Tree build(1, 0, n - 1, a); // Loop to handle q queries for (j = 0; j < q; j++) { // Effective number of // right circular shifts var i = k[j] % (n / 2); // Calculating the OR of // the two halves of the // array from the segment tree // OR of second half of the // array [n/2-i, n-1-i] var sec = query(1, 0, n - 1, n / 2 - i, n - i - 1, a); // OR of first half of the array // [n-i, n-1]OR[0, n/2-1-i] var first = (query(1, 0, n - 1, 0, n / 2 - 1 - i, a) | query(1, 0, n - 1, n - i, n - 1, a)); var temp = sec + first; // Print final answer to the query document.write(temp + "<br/>"); } } // Driver Code var a = [ 7, 44, 19, 86, 65, 39, 75, 101 ]; var n = a.length; var q = 2; var k = [ 4, 2 ]; orsum(a, n, q, k); // This code is contributed by Rajput-Ji. </script> Output: 238 230 Time Complexity: O(N + Q*log(N)) Auxiliary Space: O(4*MAX) Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts
https://www.geeksforgeeks.org/find-array-sum-using-bitwise-or-after-splitting-given-array-in-two-halves-after-k-circular-shifts?ref=asr10
PHP
Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0160646122, -0.000153802306, -0.0192003977, 0.0221684929, 0.0126689086, 0.00167374639, 0.011478316, 0.0457791127, -0.0285071395, 0.0552032366, -0.0189488642, -0.0240130723, 0.0326490588, -0.0289263632, -0.0328502879, 0.0165173728, -0.0360531472, 0.00276058121, -0.0318944603, -0.030083416, 0.0152261667, -0.0204077587, -0.0364220627, 0.0340073407, -0.0266960971, 0.021162359, -0.000394855335, 0.0145470258, -0.0254048929, -0.00401824899, -0.00315045821, 0.0104973353, 0.0222355686, -0.029848652, 0.0065817954, 0.00903844, -0.00822934, 0.0126186013, -0.0518159196, 0.00980981, -0.0346780978, -0.00454018125, -0.025757039, -0.000454332534, 0.00421109144, 0.0180936493, 0.0474895425, -0.0261259545, -0.00443537533, -0.0129791331, -0.00578527246, 0.014362568, 0.0627827793, 0.0308547858, 0.00417336123, 0.0086276019, -0.023342317, 0.00960858259, 0.0162406843, 0.0268805567, 0.0466175564, -0.0196196195, -0.0121323029, -0.00165697746, 0.0549349338, -0.0220175739, -0.0448735915, 0.0426600948, 0.00308128633, 0.000573286961, -0.0353153162, 0.0241807625, 0.00425720587, -0.00618772628, -0.0087366, 0.00409370894, 0.0181439556, -0.00959181413, 0.00350679737, 0.0594960786, -0.0080239214, 0.0278531518, -0.0123251453, -0.023929229, 0.0416204222, -0.0372940451, -0.0458461866, -0.074856393, 0.0484956764, 0.0187979434, -0.00753762294, -0.00567627465, 0.00254048919, -0.00991880801, -0.0101116505, 0.029815115, 0.0196028501, -0.00917259138, -0.0434314646, 0.053425733, 0.00483782915, 0.0303852577, -0.00393230841, -0.0120149208, 0.0210952833, -0.00622126414, 0.0055630845, 0.0202568378, 0.0349464, 0.0228560176, 0.0195525438, -0.000827964745, -0.0192674734, 0.0260253418, -0.0219504982, -0.0015637005, 0.0195860825, -0.033470735, 0.012920442, 0.00176283123, 0.000950063288, 0.023929229, 0.00506840181, 0.0160478428, -0.0240130723, 0.0188147128, 0.026226569, 0.00160247856, 0.0029743847, 0.0232081655, 0.00574754225, -0.0261091869, -0.0175905824, -0.0143877212, 0.0154357776, 0.00579784904, 0.029848652, 0.0671091601, 0.00537862629, 0.028641291, -0.00787719339, -0.0147566367, 0.0215648133, -0.00247550965, 0.0166766774, 0.0506756343, 0.0094744321, 0.0550020114, 0.0053450889, 0.0170204397, -0.0181942619, 0.0310392436, -0.010950095, -0.0014285011, 0.0234764684, -0.0116795432, -0.0109417113, -0.00695071137, -0.0159639977, -0.0556056909, 0.0106147174, -0.00917259138, 0.00698424922, 0.00529058976, -0.0294461977, 0.016072996, 0.0233255476, -0.0283562187, -0.0393063165, 0.0496359617, 0.00132159935, 0.0360196084, 0.0152345505, 0.052486673, -0.0323639885, -0.012392221, 0.0206257533, -0.00890428852, -0.0158298463, -0.0194519311, -0.0240969174, -0.0189153254, 0.00308128633, 0.0334036611, 0.0674780756, -0.0194351617, 0.0486633629, -0.0118975388, -0.0080239214, 0.00316932308, 0.000558090163, -0.0222020317, 0.0217492711, 0.0286245216, 0.0195860825, -0.0108243283, -0.0492335074, -0.00547924, -0.013540891, 0.0140523426, -0.0173390489, -0.0255558118, -0.00822514854, 0.0127527528, 0.0320789181, -0.0276854634, -0.0512457751, -0.0611058921, 0.015041708, -0.0125179878, -0.0217995774, 0.0583557934, -0.0440351479, -0.0220175739, 0.0256564263, 0.0129959015, -0.0370928198, 0.0105141038, -0.0247173663, -0.0010381001, -0.00386732887, 0.0265619457, 0.0259582661, 0.0294126607, -0.0417881124, -0.0690878928, -0.0189320948, 0.0130965151, 0.0195190068, -0.0358519219, 0.00796523, 0.0254552, -0.0134067405, -0.0094576627, 0.00797780696, -0.000313892961, -0.0115789296, 0.017808577, 0.000664991909, 0.0212629717, -0.00039930956, 0.0128198285, -0.0213468168, 0.016366452, 0.0111597069, 0.0161316879, -0.00747893192, 0.0471877, 0.0422241054, 0.0395746157, 0.00409790128, -0.0138091939, -0.00429074373, -0.0115789296, -0.0234429296, -0.0125263724, -0.000647699, 0.000868838921, -0.00407484407, 0.0225206409, -0.0129372105, -0.00372898532, -0.0258241147, 0.00529478211, 0.0237447713, 0.0279202275, 0.0131803602, -0.0282388367, -0.017691195, -0.041150894, 0.0343427174, -0.00466594798, -0.000700101838, -0.0256899633, -0.00265158317, -0.00978465658, -0.0190830138, 0.00292198174, 0.0306032524, 0.0198543835, 0.0107488688, -0.035348855, 0.0433979295, -0.0057601193, -0.00681236805, -0.024080148, 0.0074118562, -0.0164502971, -0.0778077245, 0.0214641988, -0.0246502906, -0.00865275506, -0.00478333049, -0.00490909722, 0.0327496715, -0.0064727976, 0.0169198252, -0.0294797365, -0.013540891, -0.00367658259, -0.0386691, -0.0571484305, 0.00610807398, 0.0293288156, -0.030905094, 0.0109417113, -0.000336426165, -0.0134989694, -0.010597948, -0.0243316814, 0.0045359889, -0.0561422966, -0.0168108288, -0.024046611, -0.0350470133, 0.0199214593, 0.025723502, 0.0109836329, -0.0265954845, -0.0138427317, 0.0254719686, -0.0221014172, -0.02466706, 0.0429283977, 0.0336384252, 0.00782688707, 0.00260127638, 0.0620784871, -0.0193010103, -0.0208102111, -0.0336216576, 0.00301630702, -0.0083215693, -0.0201226864, 0.0168527495, -0.0271991659, -0.0221852623, 0.0446388274, -0.00440603, -0.00883721374, -0.00673271576, 0.0113190114, 0.00848925859, 0.0349799357, 0.00500971079, -0.0195190068, -0.0294629671, -0.0018623966, 0.0362543724, 0.00520674512, 0.00169470755, 0.0359189957, 0.0158885382, -0.00229105167, 0.0317267701, -0.00692975, -0.031022476, -0.0186973307, 0.0326658301, 0.0350805521, 0.0261762626, 0.00691717351, -0.0474224649, 0.0388703234, -0.00804069, -0.0115453918, 0.0220511109, -0.0224535652, -0.012626986, -0.0242646057, -0.028171761, 0.00458629569, 0.0104973353, -0.00624222495, -0.0527885146, -0.00169261137, 0.00659856433, -0.0180098042, 0.0123502994, 0.00235603121, -0.0167605206, 0.0587917827, 0.0134570468, 0.00881206, -0.000170440209, -0.0042006108, -0.0175402761, 0.0173055101, -0.0249185935, 0.0192674734, -0.0490993559, 0.0354494676, -0.00048236805, 0.0178924222, 0.0448400527, 0.00387152121, 0.0108410977, 0.0150333242, 0.00691717351, -0.0596302301, 0.0308715552, 0.00933189597, 0.0256228875, 0.0264277961, -0.0130462088, 0.0113777025, -0.00543731777, -0.0104973353, 0.00877013803, 0.0287754424, -0.0123838373, 0.0248682871, -0.0619443394, 0.00110255554, 0.00675367657, 0.0326322913, 0.00261594937, 0.0488645919, -0.00405807514, 0.00136247359, -0.0407819785, 0.0132809728, -0.019954998, 0.0392057, -0.0497365743, -0.000690145302, 0.0233087782, 0.0133815864, 0.0311063193, -0.0324478336, -0.0113441646, 0.000104543644, 0.0205419101, 0.0297480393, -0.0222691074, -0.0114028556, 0.010774022, -0.00113294914, -0.035583619, -0.000792854815, 0.000815912092, 0.0323975272, -0.0409832038, -0.0628498569, -0.0184457954, 0.000896612415, -0.0591607, -0.00123251462, -0.00382540654, 0.00645602867, -0.0481267609, -0.00614999607, -0.00787719339, -0.00480009941, 0.0326993652, -0.0432302393, 0.00720224483, -0.0190494768, 0.0339234956, 0.0239963047, 0.0391386263, 0.00172824529, 0.0253042784, 0.00221349555, 0.052687902, 0.0132558197, 0.00254468154, -0.0088623669, -0.0235603116, -0.00708067045, 0.0328167491, -0.0332192034, 0.0186134856, 0.0134318937, 0.0179427285, -0.00889590476, 0.0124089904, -0.0120233055, -0.0298318826, -0.0258576535, 0.0545995571, 0.0145721789, -0.00723997504, -0.00722320611, -0.0125179878, -0.00395326968, 0.0224871021, 0.0108662508, -0.0121574569, -0.00324059092, -0.0136498893, -0.0155447759, -0.0121071497, 0.00277106161, 0.0136415046, 0.009449278, -0.0760637596, -0.0230069384, 0.0194183923, 0.00884559751, 0.0165257566, -0.0295803491, -0.0274171606, 0.0338228829, 0.00986011699, -0.0593619272, 0.011243551, 0.0522854477, 0.0257738084, -0.031995073, 0.0174899679, -0.00759631442, 0.000198082693, -0.00502228737, -0.0413856581, 0.00547924, -0.0317435376, -0.00620868756, -0.0168862883, -0.00186030043, 0.0278699212, -0.0193010103, 0.0197034646, 0.00967565831, 0.00326784048, 0.025991803, 0.0322969109, -0.0205251407, 0.0236441568, -0.0170204397, -0.0190327074, 0.0418551899, 0.00248389412, 0.0286748279, -0.00726932054, -0.0148740197, 0.0287419036, 0.00648118183, 0.00484621385, 0.0217157323, -0.00654825754, 0.0253881235, -0.0475901552, 0.00391973183, -0.0290269759, 0.0343762562, 0.0139852669, -0.0134905847, 0.0266457908, 0.00879529119, -0.0120819965, 0.00812453497, 0.00747473957, 0.018630255, -2.7462358e-05, -0.00995234586, -0.00181418599, -0.0225374084, -0.0179259609, -0.0140271895, 0.0094660474, -0.0105727948, 0.0360196084, 0.00770112, 0.0104051055, -0.0333365835, -0.0331353582, 0.044504676, -0.0100278053, 0.000123670674, -0.00544989435, -0.00954150688, -0.000312844903, 0.00180160929, -0.000546037511, 0.0376965, 0.0306870975, -0.0212462042, -0.0114699313, -0.00285281, 0.0111932447, -0.0208772868, 0.00282975286, -0.00117801561, 0.00421318738, -0.036120221, 0.00156684464, -0.0118975388, -0.00510193966, 0.00506840181, -0.00465756375, 0.0508433208, 0.00231410889, 0.0144547969, 0.00847668201, 0.013658274, 0.0022721868, -0.0100026522, 0.00111303607, -0.00101661496, 0.00532832, -0.00851441175, 0.0304523334, 0.00352775864, 0.00532412762, 0.00202903757, 0.0102458009, 0.021162359, -0.00756696891, 0.00106377748, -0.0136834271, 0.00906359311, 0.02283925, -0.00756277656, 0.0207599048, 0.00691298116, -0.0169282109, 0.00750408508, -0.0269979388, -0.0260085724, -0.0240130723, -0.0303517189, -0.0169282109, 0.00585234817, 0.00191060721, 0.0262768753, -0.0271153208, -0.0136918118, -0.00604519062, -0.0209108256, -0.000911809271, -0.0170372073, 0.0201394558, -0.0146727925, -0.00140544388, 0.0121323029, 0.000228869365, 0.0111177843, -0.0187140983, 0.0200891495, -0.0277022328, 0.00831737742, -0.0174564309, 0.107388072, -0.0109165572, -0.0171881281, -0.0237112325, -0.00149138458, 0.010597948, -0.00499713374, -0.00692555821, -0.0194016248, 0.037998341, 0.0272327028, 0.0101200342, -0.0178924222, -0.00229734019, -0.00975111872, -0.0285406783, 0.00169365946, -0.00472044712, -0.0294126607, 0.0263271816, -0.00293246238, 0.00186763692, -0.0212629717, -0.00537024206, 0.0222020317, 0.0122832237, 0.0169282109, -0.0315087736, -0.0142200319, -0.000803859439, 0.0318106152, -0.00312530482, -0.0289431307, -0.0292114336, 0.0123251453, -0.00672852341, -0.00453179656, 0.0144883348, -0.00752504636, -0.00102761947, -0.0351140872, -0.0151758594, -0.010212264, -0.00594457705, 0.00687944377, -0.0225374084, -0.0180601105, -0.011360934, 0.0155950822, 4.6311e-05, 0.0323472172, -0.00578527246, -0.00277315779, -0.0203742199, 0.00646441337, -0.0251701269, -0.00348583632, 0.000218388799, -0.0258911904, -0.0224200264, 0.00467014033, -0.00140544388, 0.0325652137, -0.000530840654, 0.0382666439, -0.00604099827, -0.0195190068, 0.0223194137, -0.0182613377, -0.0107991751, 0.00925643556, 0.0156956948, -0.0220511109, 0.00102395134, -0.0185967162, -0.00691298116, -0.00358016137, -0.00183514715, 0.0299995728, -0.00705132494, -0.0359189957, 0.00144422206, -0.00030341238, 0.0246167537, -0.0288089793, -0.00314836204, -0.00903005525, 0.0174396615, -0.000458262744, 0.0117633874, -0.0222355686, -0.0155363912, -0.0180265736, 0.00570142781, -0.00547924, -0.033470735, -0.0251533594, 0.0048504062, -0.0185631793, -0.0172552038, 0.0104470281, 0.0161736086, 0.0121406876, 0.0170959, 0.0080323061, 0.0104721813, -0.00919774454, -0.0120652281, -0.0065105278, 0.0119478451, -0.0234429296, -0.00406226749, -0.0063554151, -0.0137337334, -0.0200723801, 0.0333030485, 0.0214641988, 0.0371934325, 0.0348793231, -0.00970919617, 0.0022533217, 0.0419558026, -0.000648223038, -0.0716367662, -0.00758792972, 0.0160981491, -0.0180265736, 0.0233926233, 0.018278107, 0.00807422772, -0.00376671553, -0.0121239191, -0.00587330898, 0.0310895517, -0.0246335231, -0.0121742254, 0.00739927962, -0.0151674747, 0.0478249192, 0.0120903812, 0.0272494722, 0.0221181866, 0.00138238666, 0.0431967, 0.00566789, 0.0518494546, 0.00687944377, -0.00689202035, 0.0144967185, 0.00742443278, 0.0192339346, -5.46299489e-05, -0.00022690426, -0.0237783082, -0.024080148, -0.0269644, -0.0626151, 0.0355500802, -0.0134151243, 0.0185464099, 0.0292114336, -0.00665306346, -0.0341918, -0.00644345209, -0.00929835811, 0.0111764753, 0.00754600763, -0.0175905824, 0.00459048804, 0.00187811744, 0.0267967116, 0.0307709426, -0.0175402761, -0.00269979378, 0.000743072131, -0.00913066883, 0.0230907835, -0.00369335152, 0.0173725858, 0.0205083713, -0.0234429296, -0.00215270836, 0.0457120351, -0.000135330309, -0.0262433365, 0.0173893552, -0.000717394752, 0.0154106244, 0.0125766797, -0.0299157277, 0.0338731892, 0.00202694139, 0.0117046963, 0.00847248919, -0.0025886998, 0.0271656271, 0.0189320948, -0.00449825916, -0.0105057191, 0.0127611374, 0.0117214648, -0.00540378, 0.00625060964, -0.03538239, 0.00513128517, 0.0170791298, 0.0258073453, 0.0327161364, 0.0091139, 0.0130965151, 0.00726093631, -0.0188147128, 0.0152261667, -0.00298905745, -0.0254384298, 0.0170204397, -0.00627157092, 0.00884559751, -0.0116124675, -0.0378977284, -0.0166431386, 0.0220008045, 0.00896298047, -0.0258241147, -0.0515140779, -0.0108746355, -0.0337055, 0.0206425227, -0.0119646145, 0.00890428852, -0.01395173, 0.000994081725, 0.000636170385, -0.0235603116, 0.0212797411, -0.00209401711, -0.00889590476, 0.0259750355, -0.00564692914, -0.0440016091, -0.0255222749, -0.00980142504, -5.58417669e-05, -0.0116795432, -0.0379312634, 0.0252707414, -0.0428948626, -0.00177750399, 0.00109312299, -0.0217325017, -0.0364556, 0.0273836236, 0.0271320902, -0.0144883348, -0.00359902647, 0.00781431049, 0.0245832149, 0.0178253464, 0.0174396615, -0.00640991423, 0.0101535721, 0.0167185981, -0.0427271724, 0.0170791298, 0.02790346, 0.0148740197, 0.00248389412, 0.0152848577, 0.0378977284, 0.00943251, -0.0306367911, 0.00328041706, -0.00594876939, -0.0401783, -0.0120736118, 0.0167437531, 0.00381492614, 0.00438506901, 0.0123502994, 0.0241472237, 0.0337725766, 0.0101368036, -0.00366400578, -0.0508768596, 0.00777658, -0.0130042862, -0.000630930066, 0.0147985592, 0.0183954891, -0.00216528494, 0.00221559172, -0.0276854634, 0.00347745186, 0.00967565831, 0.0277525391, -0.0600662194, -0.0352147035, -0.0133732026, 0.0133815864, 0.0113525493, -0.00952473842, -0.00743701, -0.00515224645, -0.0040475945, -0.00980142504, -0.00144002982, 0.0158298463, 0.00295761577, -0.00162867992, 0.00939897168, -0.0240130723, -0.00303307571, -0.00130587851, -0.0234764684, -0.00460306462, -0.0220175739, -0.0200388432, -0.00174920645, 0.00208353647, -0.00741604855, 0.00160981494, -0.00288844411, -0.0114615466, -0.00139496336, -0.0401783, -0.0193010103, -0.0183787216, 0.0365226753, -0.00527801318, 0.0230740141, 0.0106231021, -0.00761308335, 0.0229566321, 0.00413563149, -0.0253042784, -0.00267044827, 0.0113441646, 0.000670756213, -0.00252791261, 0.019954998, -0.00241891458, 0.0370257422, -0.0357177705, 0.00855214149, -0.00502228737, 0.0056427368, -0.00467014033, -0.00843056757, 0.0184290279, 0.0051480541, -0.0153183956, -0.0147398682, 0.0159472302, 0.00610807398, -0.0373946615, -0.00588169368, -0.0229734015, -0.0253378171, -0.0121323029, 0.00539539522, 0.0118220784, 0.0238956902, 0.00177016761, 0.00913905352, 0.0042362446, -0.0024252031, -0.00994396117, -0.0373611227, -0.0287754424, 0.0116208512, -0.00822514854, -6.59620637e-05, 0.0136918118, 0.0144464122, 0.0188650191, 0.0235938504, 0.00144107779, -0.0147398682, -0.0539623387, 0.00610388163, -0.0143038761, 0.0139936516, 0.0132055134, -0.0187308677, -0.00814549625, 0.00121784175, 0.0144464122, 0.00438087666, -0.00900490209, -0.0124592967, -0.00189803052, -0.00433476223, -0.0302343369, 0.000361317507, -0.0234429296, 0.0042006108, 0.013658274, 0.0368580557, 0.0199214593, 0.0126018329, 0.00705132494, -0.0246838294, 0.00214537187, -0.00602003699, 0.0048420215, -0.0133899711, -0.00736993412, -0.0053450889, 0.000897136459, -0.0194351617, 0.00231410889, -0.0037751, -0.00889590476, 0.0010265715, -0.0209946707, 0.0256899633, 0.0235603116, -0.00461144885, -0.0122999921, -0.0101368036, -0.000126552841, -0.00370383193, 0.0188817885, -0.00696748029, 0.00274590822, 0.00494682696, 0.00881206, -0.00735316519, 0.0122832237, 0.00590265496, -0.00745797064, 0.00615838077, 0.00781850237, 0.0088539822, 0.00264319871, 0.00111198809, -0.00222188, -0.0201729927, -0.0306032524, 0.036086686, 0.0322633758, -0.0156118516, 0.00731543498, 0.00926482, -0.0177079644, 0.00314626587, -0.0230907835, -0.00598230725, -0.032967668, -0.00822095573, 0.00339151127, 0.0143038761, -0.00523189874, 0.00500132609, 0.075996682, -0.00549600879, 0.0206425227, -0.0230069384, 0.00415030401, -0.02236972, 0.00554631557, 0.0159388445, 0.0134151243, 0.00694651902, 0.0216821954, -0.00511451624, 0.0343427174, 0.0112687042, -0.0138175786, -0.0113022421, -0.0140188048, -0.000811195816, 0.0087366, -0.0157208499, 0.0111764753, -0.00837606844, 0.00424462929, -0.00144946226, 0.0315423124, -0.00140544388, 0.0175235067, -0.00777238794, -0.0415198095, -0.0190159399, 0.00943251, -0.00991880801, -0.00866114, -0.0151087837, 0.00494263507, 0.034644559, -0.00880367588, -0.00438506901, -0.00363885262, 0.020424528, 0.010212264, 0.0137337334, -0.0201729927, 0.0277693085, -0.0195693132, -0.0170036703, -0.00332233938, 0.014689561, -0.00348374015, 0.00805745926, -0.000115810253, 0.00930674281, -0.0172719732, 0.00403292198, 0.0031567465, 0.0182278, -0.00654825754, 0.00859406404, 0.0106650237, -0.000493372674, 0.0029492313, 0.00445633661, 0.0131049, -0.000730495434, 0.0104470281, -0.0174228922, -0.0506420955, -0.00721482188, -0.0129539799, -0.00262014149, -0.0345774852, 0.0341247246, 0.0129623637, 0.00358435349, 0.00489232829, 0.00502228737, -0.0230740141, -0.00876175333, 0.00532412762, -0.0189488642, -0.00871983077, 0.011126169, -0.0159136914, -0.00910551567, -0.014362568, -0.00762985228, -0.0205922164, -0.0259582661, -0.00644764444, 0.00171671668, -0.00279411883, -0.0237783082, -0.0312237032, -0.0183284134, 0.0115873134, -0.00543312542, 0.00939058699, 0.00607453613, -0.012626986, -0.0208437499, -0.00349631673, -0.00562596787, 0.0251198206, 0.000351098948, 0.00795684569, 0.0121490723, 0.0256564263, 0.00743701, 0.00837606844, 0.0288089793, 0.0221852623, 0.0215983503, 0.0352147035, 0.00656502647, 0.0178421158, -0.00572238909, 0.00163706439, 0.000935914577, -0.0256731939, 0.0258911904, 0.00887913536, 0.0129288267, 0.0224703327, -0.0180098042, 0.00334120449, -0.0172719732, -0.00112456479, 0.0174899679, 0.0126689086, 0.0279202275, -0.019954998, 0.0325316787, 0.00754181528, -0.0205251407, -0.0278028455, -0.0303684883, -0.00341666443, 0.0305026397, -0.00797361508, 0.00856052618, 0.0112267826, 0.00796103757, -0.00905520935, 0.00990203861, 0.0183954891, -0.0136834271, -0.0259750355, 0.00809938181, 0.00144212588, 0.0221517235, -0.0198040772, -0.0182948764, 0.00201226864, -0.0013740022, 0.027081782, -0.026461333, -0.00686686672, 0.0204748344, 0.0160981491, 0.0144380275, 0.0200220738, 0.0168611351, 0.0202903766, 0.0042362446, -0.0067411, 0.0203742199, 0.00386523269, -0.00491748145, -0.00733220391, 0.0042823595, 0.0102961082, -0.025253972, 0.016366452, 0.00423414866, -0.00305613317, 0.0167353675, 0.0414862745, 0.000941678882, 0.0371263586, -0.0104470281, -0.0321627595, 0.00423205271, 0.00824611, -0.00343343336, -0.0232920107, -0.00343133742, -0.0231075529, -0.00363046816, 0.0202233, 0.0183619522, -0.00361369923, 0.0177750401, -0.00169889978, -0.0321627595, 0.0110590933, 0.0132809728, 0.00345858675, 0.00643506739, -0.0157963093, -0.0127946753, -0.0128282132, -0.010212264, 0.00129749405, -0.00343972188, 0.00612484291, -0.021631889, -0.0100948811, -0.00168632308, -0.00771369645, 0.010480566, 0.0233758539, -0.0138511164, 0.0052654366, -0.00809099711, 0.00866114, -0.00331395492, -0.0121993786, -0.001685275, 0.00887075067, 0.0122413011, 0.000366557797, 0.0113273961, -0.00300582638, -0.0207263678, -0.0143961059, -0.0116963116, 0.0100864964, 0.0157963093, 0.0179259609, 0.017129438, -0.0369586684, 0.027081782, 0.0432973132, -0.00715613039, 0.000623593689, -0.017573813, 0.0162826069, -0.0276016183, -0.0542977154, 0.013834347, 0.0190494768, 0.00748312427, -0.0160478428, 0.00773046538, 0.0287419036, 1.92089119e-05, 0.00508936308, -0.0057601193, -0.0214474313, 0.0268973242, -0.00887075067, 0.00384427165, 0.00591103919, -0.0199717674, 0.00298696128, 0.0337222703, 0.0106901778, 0.0116292359, -0.0252204333, -0.0396416932, 0.0173893552, 0.00403921027, -0.0178588852, 0.0349464, -0.00760469865, 0.00506840181, -0.0430290103, -0.0136750424, -0.00761308335, 0.0133480486, -0.0160981491, 0.0117046963, 0.014865635, -0.0187979434, -0.00724416738, -0.0195357744, 0.00614580372, 0.00976788718, -0.0114950845, -0.00743701, -0.0115453918, 0.0338564217, 0.0153183956, -0.0113273961, -0.00421947567, 0.0245329086, -0.0140774967, 0.0121826101, -0.00671175448, -0.0109668644, -0.00377300382, -0.00470787, 0.000826392614, -0.0120065361, -0.020458065, 0.0163832214, 0.00121888984, -0.00258450769, -0.0036954477, 0.0228057113, 9.6486714e-05, 0.000497564848, -0.0120316902, 0.00683332887, -0.00660275668, -0.0083131846, -0.00194728922, -0.0177582707, 0.0265619457, 0.00268931314, 0.0152680883, -0.0358854569, -0.015855, 0.0167940594, -0.00589427026, -0.0160813797, 0.0196363889, -0.0103883371, 0.00715613039, 0.00495521165, -0.000482892094, -0.0154022397, -0.0174396615, -0.0205083713, 0.0107488688, 0.0131719755, -0.0147650214, -0.0107572526, -0.00124299515, 0.000640886603, 0.00477913814, -0.0253881235, 0.00893782638, -0.0146644078, -0.00328251324, 0.0156956948, -0.0133396648, -0.014865635, 0.00889590476, 0.00504324818, -0.0256228875, 0.0131635908, -0.0235435441, 0.0163832214, 0.00913066883, -0.0286580604, -0.000926482, 0.0194351617, -0.00663210219, 0.0391050875, -0.0148404818, -0.0164167583, -0.00436410774, 0.00518159196, 0.0206760615, 0.00843895134, 0.0123083768, 0.0272662397, -0.0103799524, 0.018781174, -0.00680817571, 0.00155950827, -0.00193471252, 0.0109584797, 0.0148069439, 0.00109102693, -0.00429703202, 0.0126605239, 0.0587582439, 0.0248012114, -0.00416288106, -0.00218834216, 0.0123586832, -0.020575447, -0.0160897654, 0.00703455601, -0.00497198058, 0.0101284189, -0.0170036703, -0.00908036251, -0.0276519246, -0.0207263678, -0.00467852456, -0.00307919038, -0.00573915802, 0.00426768651, -0.0321459919, 0.0146979457, 0.00561758317, 0.0103631839, -0.00859406404, -0.00807003584, 0.0349464, 0.025991803, -0.00346906739, 0.0337558053, -0.00859406404, 0.00825449359, -0.0111094, -0.018898556, 0.0190830138, 0.0077178888, 0.000669184141, 0.0108578661, 0.0206257533, 0.0348793231, -0.0321627595, -0.0209946707, 0.0400776863, 0.00108054641, 0.0240633804, -0.0147230988, -0.00364933303, -0.0284736026, 0.0162574537, 0.0408825912, 0.00416078465, 0.027668694, 0.00854795, 0.00786042493, -0.0111345537, -0.0400106087, -0.0163916051, -0.0245161392, 0.00207934435, -0.0104554128, 0.0141445715, 0.0205586776, -0.0104973353, -0.0151758594, -0.00241262629, 0.0098349629, -0.00639733765, -0.0129623637, 0.0278028455, -0.000627261878, 0.00684590591, 0.00649795076, -0.0196531583, 0.015855, -0.0193010103, -0.00485879043, -0.00765500544, 0.000307080598, 0.000971548492, -0.00892944261, 0.0223864894, -0.0179091915, -0.00168213085, 0.00635960745, 0.0108746355, -0.00511870859, -0.000891896198, 6.0165e-05, 0.0032552639, 0.00061835337, -0.0128030591, 0.00105801318, 0.00697167264, 0.00823772512, 0.00839703, -0.0109165572, -0.0145470258, 0.00960858259, 0.0114699313, 0.00866114, 0.0123419147, 0.00592780812, 0.0101787262, 0.0060954974, 0.0194016248, -0.0239795353, -0.0209946707, -0.00604519062, 0.016601216, -0.0123586832, -0.0120736118, 0.0074118562, -0.00136771391, -0.00163601642, -0.00608292036, 0.0256899633, 0.00152177818, 0.0108746355, -0.00618353393, 0.0299828034, -0.00313578546, 0.023577081, 0.0073112431, 0.0348793231, 0.0045359889, 0.016039459, -0.00711001595, -0.0129791331, -0.00778915687, -0.0148488656, -0.00360321859, 0.00146413513, 0.00861083344, 0.00207724818, 0.0105476417, -0.0110758618, -0.00800715201, 0.00580623373, 0.0114867007, 0.00882882904, -0.00199864386, 0.037763577, 0.00316722714, 0.00325107155, 0.010597948, -0.0229734015, -0.01630776, 0.00243568351, 0.0203909893, -0.00473721605, -0.00212755497, -0.0305697154, 0.0121490723, 0.0122999921, 0.0104721813, 0.0189320948, 0.0031819, -0.00598649913, -0.0102206478, 0.00129749405, 0.0184290279, 0.0349799357, -0.0110423248, -0.00934866536, 0.012509604, 0.0214809682, -0.0055547, -0.0285742152, 0.000688049186, -0.01233353, 0.00278783054, 0.00389667437, 0.019485468, -0.00890428852, -0.00833414588, 0.0143961059, -0.0389709361, 0.0244490653, 0.000199916802, -0.00242101075, 0.00425301353, -0.00678721443, -0.00744120171, -0.00131111883, 0.0171210524, 0.0118388478, -0.0111932447, 0.00813711155, 0.0053367042, 0.00790653937, 0.00512290047, 0.00201960513, 0.0158046931, 0.00323430263, 0.00345858675, 0.00523189874, 0.0150584774, 0.0158717688, 0.00537024206, -0.0191165525, -0.0127946753, 0.00116543891, 0.00407274812, -0.038501408, -0.00744539406, 0.0116711585, 0.00637218403, 0.0202736072, 0.0173222795, 0.0123670679, -0.00394698139, 0.02419753, -0.0141026499, -0.000413196307, 0.00878690649, -0.0116292359, -0.0198543835, -0.0142200319, 0.0127359843, -0.00531574292, 0.0215983503, 0.0179762673, -0.019485468, 0.0141110346, -0.00277315779, 0.00867790915, -0.0281885304, 0.00889590476, -0.0103715686, -0.0117885405, -0.0358519219, -0.00189069414, -0.000816436077, -0.0040559792, -0.00721482188, -0.0053367042, 0.0129455952, -0.00298696128, -0.0123251453, -0.0450077429, 0.0150920153, 0.0140774967, -0.0437333062, -0.0255390424, -0.0104554128, -0.0120819965, -0.00242729904, 0.0063931453, -0.00261594937, -0.0143961059, 0.00359902647, 0.0124089904, -0.0167018306, -0.0167605206, 0.0100110369, 0.0101787262, 0.0156202354, -0.016483834, 0.0129455952, -0.00271656271, -0.0151842441, -0.0120484587, -0.00255516195, -0.00232039741, 0.0112603204, 0.00971758086, -0.00489652064, 0.00610807398, -0.0110590933, -0.00195252942, -0.0183284134, -0.0298654214, 0.00323011051, 0.00806165114, 0.0106734084, 0.0101954946, -0.00438506901, -0.0148740197, -0.00729447417, 0.00762146758, -0.00296390406, 0.0177582707, -0.0175905824, -0.00424882164, 0.0263607204, 0.0161652248, 0.0100948811, -0.00871983077, 0.0230907835, -0.00782269426, -0.00517320726, 0.0195190068, -0.00607034378, 0.00467433268, 0.0186637919, -0.00343972188, -0.000471101434, 0.029345585, 0.00784365553, -0.00778077217, 0.0102961082, 0.00841379818, -0.00716451509, 0.0122496858, 0.0028758673, -0.0319783, -0.00249437476, 0.00130273437, -0.00191794359, 0.00810357369, 0.0259079598, -0.00328041706, 4.0710449e-05, 0.0195357744, -0.0024419718, -0.00571819674, 0.00274800439, -0.0101116505, 0.00684590591, -0.0139768831, -0.0247173663, -0.00774304243, -0.00334330066, 0.00882044435, 0.0187979434, 0.00511451624, -0.00389667437, -0.0157543868, 0.013658274, -0.0197034646, -0.0101284189, 0.0120652281, -0.0043892609, 0.00397003861, 0.0285239089, 0.00918097608, -0.025287509, -0.00075460074, 0.0102458009, 0.00937381852, -0.00305613317, -0.00406855578, 0.00644345209, 0.0131468223, 0.0196028501, 0.0066991779, 0.0113525493, -0.00816226471, -0.00615838077, -0.0146644078, -0.0115621602, 0.0114531629, 0.01003619, 0.00237280014, -0.00133732019, -0.0190662462, 0.00398890348, 0.0103631839, -0.0162071474, -0.00997749902, -0.0105141038, -0.0222691074, 0.0155866975, -0.0110926311, -0.0116879269, 0.0288592875, 0.00154902763, -0.0252707414, -1.8209983e-05, -0.00821676385, -0.0174061246, -0.00876175333, 0.00022690426, 0.0067704455, -0.00228895573, -0.00524447532, 0.000627261878, 0.000642458675, -0.0238621533, 0.000783422322, 0.0201394558, -0.00749570085, -0.0140858805, 0.036120221, 0.000277997024, -0.00781850237, 0.00397213455, -0.00186134852, 0.00890428852, 0.00622964837, -0.00023528871, 0.0116460053, -0.0103044929, -0.0015637005, 0.00192842411, -0.00902167149, -0.0243149139, -0.0238956902, -0.0090887472, -0.00594876939, -0.0180601105, 0.00703874836, -0.0108578661, 0.0153603172, 0.000853642123, -0.003127401, 0.0265116394, -0.00748312427, -0.0129288267, 0.030083416, -0.00249018241, -0.0198879223, -0.000705866143, -0.0013436086, 0.00678721443, 0.000748836435, -0.00882882904, -0.00486298278, 0.00158990186, 0.0050390563, -0.0020091245, 0.0190159399, 0.0260756481, 0.00619191863, -0.0116795432, 0.0255222749, -0.00166116969, -0.00540378, 0.0129120573, 0.0163245294, -0.0176408887, 0.0153687019, 0.0147398682, -0.00761727523, -0.0254384298, -0.00953312311, -0.00933189597, -0.0214474313, 0.000626737834, -0.0161233023, 0.019954998, -0.000314679, -0.00791073125, -0.00718128402, 0.000431013264, -0.0281046852, -0.0203574523, -0.0108243283, 0.0033894151, 0.00336845382, -0.0162909925, 0.00686686672, 0.0171881281, -0.0150249396, 0.00467852456, -0.0200220738, 0.00834672246, 0.0142284166, -0.00140963611, -0.0123670679, -0.00726093631, -0.00419013, 0.00424043695, 0.00574754225, 0.00116229476, -0.00897136424, -0.0176744275, -0.02283925, -0.0248179808, 0.0132306665, 0.0183116458, 0.0203909893, 0.0180936493, 0.0192339346, -0.00477494579, 0.00236651185, -0.00171671668, -0.0317435376, 0.000386470871, 0.000495206739, -0.00612065056, -0.00794007722, -0.00381073379, 0.0010139948, 0.0266457908, 0.00977627188, 0.000622021616, -0.00669079321, 0.0109836329, 0.00346906739, 0.00480848365, -0.0123670679, -0.0142535698, 0.00342085678, -0.0257905778, -0.0039385967, 0.0272494722, 0.0150836306, -0.00752504636, 0.00632606959, -0.0138511164, -0.00620030286, -0.0128952889, -0.0227386355, -0.00179846515, -0.018781174, -0.00962535199, -0.0100194216, 0.0124928346, 0.00684590591, -0.0304691, -0.0111932447, -0.0232752413, 0.00131531106, 0.00952473842, -0.00977627188, 0.0274171606, -0.000704294, -0.00209820922, 0.0148572503, 0.0184457954, 0.00172510114, 0.00434314646, 0.00907197781, 0.00557985343, 0.0172216669, -0.0185464099, 0.00181418599, 0.00804488268, 0.0148153277, 0.0138175786, 0.00807842053, 0.00573496567, 0.00750408508, 0.0086359866, -0.0130713619, 8.39100321e-05, -0.00289263623, -0.00735316519, -0.00526962848, 0.011419625, 0.0109333266, 0.0288928244, 0.0237280019, 0.00508517073, 0.0199717674, -0.000201750896, -0.00708905468, -0.028289143, -0.00351308566, -0.0213132799, -0.0115621602, -0.00818322599, -0.0162071474, 0.00659856433, 0.0101200342, -0.0098349629, -0.0170372073, 0.0125431418, -0.0028402335, -0.0011413336, 0.0051396694, 0.0172384344, 0.00316303479, -0.00339360721, 0.00643925974, 0.0166096017, 0.00369963981, -0.0094576627, -0.00488394359, 0.00240424182, -0.00212755497, 0.0236273874, -0.00975950342, -0.00826287828, 0.0223529506, 0.00569723593, 0.00620868756, 0.0116040828, -0.0102625703, 0.00743281748, -0.00826707, -0.0157040805, 0.00212126668, 0.0330515131, -0.0194351617, -0.00282556051, 0.00308547867, -0.00425930182, -0.0194183923, -0.00461144885, -0.00718128402, 0.014069112, 0.00411047786, 0.00650633546, 0.0173222795, 0.00783107895, 0.00672433106, 0.00775981089, -0.0113944719, -0.00223236065, 0.00144107779, -0.00402244134, -0.0108662508, -0.0139936516, -0.019368086, 0.00112666085, -0.017808577, 0.0360196084, -0.0256564263, -0.00753762294, -0.0152010126, 0.00085049792, -0.00868629292, -0.00364304474, -0.00350470119, -0.00169680361, -0.0157208499, 0.0147147151, -0.0204748344, 0.00329299388, -0.00339151127, 0.00897974893, -0.00651471969, 0.000269874581, 0.0106985616, 0.0158046931, -0.00882044435, -0.0107991751, -0.0291275885, 0.016483834, 0.00506420946, 0.0239124596, 0.00176178315, 0.0194686987, -0.00845572073, 0.0237615388, 0.0180265736, 0.0149914017, -0.0146644078, -0.0243484508, -0.0123419147, 0.00778496452, -0.0155280065, 0.0140523426, 0.00522351405, -0.00496778823, -0.0019734907, 0.0103044929, -0.00984334759, 0.00852279644, 0.00547085563, 0.0267296359, -0.00646860525, -0.00118640007, 0.00782688707, 0.00893782638, 0.00117696752, -0.0182948764, 0.0130210556, 0.0210952833, -0.0210114382, 0.000185113, -0.0135660451, -0.0197034646, -0.00210240157, 0.00717709167, -0.0183284134, -0.00678721443, 0.000484726188, 0.0241639931, 0.00706809387, -0.0134570468, 0.0372940451, -0.000805955555, 0.0109081734, -0.0172048975, 0.000478699862, -0.0226547923, 0.0118388478, -0.00309595931, 0.00583557924, -0.00280459947, 0.0106314858, -0.0196363889, 0.00441441452, 0.0230069384, -0.00481267599, 0.0106650237, 0.00644764444, 0.0110590933, 0.010950095, -0.00391553948, -0.0141781094, -0.000615733268, -0.013658274, -0.0190830138, 0.0135576604, 0.00448149024, -0.0185128711, 0.00129225384, -0.0130545935, -0.0279873032, 0.0235267747, 0.0160478428, 0.0128869042, 0.00205733511, 0.0112938583, -0.00145784672, 0.0116124675, -0.0126940617, 0.00185715628, -0.00353823905, 0.00845991261, -0.0144967185, -0.00361369923, -0.00173977402, -0.0210952833, 0.00903844, 0.0141781094, 0.0104721813, 0.0105727948, 0.037763577, 0.0021013536, -0.00167165033, 0.0105476417, -0.00592780812, -0.00690878928, -0.00506001711, -0.00144527, -0.00819999445, 0.0401783, 0.0201897621, -0.0228895564, 0.0117550027, -0.00986011699, -0.00422995631, 0.00228266721, -0.0131049, -0.0118136937, -0.0033349162, 0.00788557809, 0.0291778967, 0.00210868986, 0.0116292359, 0.0100026522, -0.011126169, -0.00402244134, -0.0118053099, 0.0171462055, 0.0162826069, -0.0057517346, -0.00457791146, 0.00488813594, 0.00250904751, 0.014362568, 0.00757116079, -0.0250527449, 0.00647699, 0.00198711525, -0.0083215693, -0.00574754225, -0.00453179656, 0.0221852623, -0.0117633874, 0.00557146873, -0.00850183517, 0.0142200319, -0.00979304127, -0.00868629292, 0.0122580696, -0.00935704913, -0.000848925847, -0.0149494791, 0.0241472237, -0.00894621108, 0.0200053044, -0.00397423049, 0.0160226896, -0.0115705449, 0.00513128517, -0.000463765056, -0.00314417, -0.00668240897, -0.00108264247, 0.0134067405, 0.00421318738, -0.0258408841, -0.0117382342, 0.00966727454, -0.0243316814, -0.0110004023, 0.0354159288, 0.00917259138, -0.0249521323, 0.000632502139, 0.0075292387, 0.000414768409, -0.00666564, 0.0181942619, 0.0248347502, -0.0071938606, -0.0164335277, -1.44435298e-05, -0.0113525493, 0.019837616, 0.0376629606, 0.0210952833, -0.0102290325, 0.00772208115, 0.0150584774, 0.000103888611, -0.00583138689, 0.0116292359, -0.00934028067, 0.00502228737, 0.000571190845, -0.00653148862, 0.0109752491, 0.00623384072, 0.00518578431, 0.0031819, -0.000549181656, -0.00184143544, 0.00152492232, -0.0233590864, -0.0134654315, 0.013540891, -0.0111094, -0.018043343, -0.027081782, 0.00956666097, -0.0134738153, -0.0173390489, -0.00929835811, -0.0129623637, 0.0118304631, 0.00555050792, -0.001556364, 0.0195525438, -0.0423582569, 0.0292449724, 0.00670756213, -0.0111429375, 0.00146937533, -0.00342295296, -0.0153770866, 0.0401783, -0.0154190091, 0.00174606231, 0.00811195839, -0.0151171684, 0.00025284366, 0.00267254445, 0.0030288836, -0.022252338, 0.00414401572, -0.00281717605, -0.00739927962, 0.00157627708, 0.00300163403, 0.00223655277, -0.0174396615, 0.00644345209, -0.0110004023, 0.00122517813, -0.0188817885, -0.0174732, -0.0197034646, -0.000521408161, 0.00708486279, -0.00204895064, 0.0214641988, -0.0333533548, -0.0101451883, 0.0103296461, -0.00655664224, 0.0080323061, 9.2491e-05, -0.000127142368, 0.0207599048, 0.00858148746, 0.0175570436, -0.00916420668, -0.00307290186, -0.00978465658, 0.00281927222, 0.00155007571, 0.0173558183, 0.0193177797, 0.0127359843, 0.0201729927, 0.00855214149, 0.00452760467, -0.0188817885, -0.0121239191, 0.00339989574, -0.000843161542, 0.00571819674, -0.0146476394, -0.000804383424, -0.0165006034, 0.00280459947, -3.30629118e-05, -0.0108159445, -0.0240298416, 0.0118472315, 0.00968404301, 0.0220846497, 0.00254468154, -0.0156621579, -0.0104218749, 0.00280040735, 0.0106398705, 0.001648593, 0.0163580682, 0.0129707484, -0.0132138981, 0.0214641988, -0.00223026448, -0.00121679367, 0.0015637005, 0.00737412646, 0.00115705444, 0.0278363843, 0.0187140983, 0.00433057, 0.0176073518, 0.0192003977, -0.0163580682, 0.021044977, -0.00528639741, 0.00555889215, 0.000794426887, -0.0292114336, -0.00955827627, -0.00234345463, -0.00347325951, 0.00513547752, 0.0018257146, 0.0302846432, 0.00948281586, -0.0194519311, -0.000707438216, 0.0164502971, -0.00516901538, 0.00866952445, -0.00874498393, -0.0391721651, -0.00746216299, -0.0160226896, 0.0139181921, 0.00133417605, -0.00719805295, -0.0147985592, -0.00385684823, 0.00939058699, 0.00276477332, 0.025757039, 0.00713097723, -0.00414611213, -0.00206886372, -0.00386523269, -0.0157879256, 0.00837606844, 0.00391553948, 0.0121490723, -0.0168946721, -0.00116963114, -0.00214117975, -0.00364304474, -0.00997749902, 0.00660275668, 0.0162574537, -0.0037751, -0.0160897654, -0.000265158335, 0.00055494596, -0.00397842284, 0.00614580372, 0.00455275783, -0.00755858421, 0.0137337334, 0.0295803491, 0.00548343221, -0.0146141015, 0.0118723856, -0.00374575425, -0.0122413011, 0.0251198206, 0.0115453918, 0.000901852734, -0.0143290302, -0.00878690649, 0.00367239024, -0.000808051671, -0.00696328795, 0.0198879223, -0.0297648069, -0.0259247273, 0.000980980927, -0.00493844273, 0.0090887472, 0.0288425181, 0.0134486621, -0.0139181921, -0.030552946, -0.00164230471, -0.00291150133, 0.0115873134, -0.0054540867, -0.0105811795, -0.0193177797, -0.00108473864, -0.00166850607, 0.0091139, 0.0196531583, 0.00265367934, -0.00145365449, 0.0100026522, 0.0050306716, 0.00903005525, -0.00189803052, -0.00371431257, 0.000397475465, -0.0782772526, 0.000363151601, 0.0277693085, 0.0204077587, -0.0118388478, 0.00920612924, 0.0208940562, -8.65465518e-06, 0.00485459808, 0.0171210524, -0.00208982476, -0.00778915687, -0.0159723833, 0.0178421158, 0.0146224862, -0.00248179794, 0.0236776955, 0.0130629772, 0.0202736072, -0.0103547992, 0.0171378218, -0.0102038793, -0.00596553832, 0.0094576627, -0.00199445174, -0.00489652064, 0.00277735, 0.0180936493, -0.0144380275, -0.00927320495, -0.0154944686, 0.0114867007, 0.0115370071, -0.018043343, -0.014689561, -0.0104637975, -0.0208940562, -0.018781174, 0.0051396694, 7.5853095e-05, 0.0106650237, -0.0228895564, -0.00833414588, -0.0176744275, -0.0148488656, 0.00998588372, 0.00555889215, -0.00996073, 0.014010421, 0.0397087671, 0.0037855804, 0.00259918044, -0.0188482497, -0.0103631839, 0.00729447417, 0.0087366, -0.00145051035, -0.000722111, 0.0263774879, 0.0124341436, -0.00535347313, -0.0261930302, -0.0196196195, -0.00995234586, 0.00949120056, -0.00550858537, -0.00859406404, 0.0119059235, -0.00561339129, -0.00887075067, -0.00232458953, -0.00182361854, 0.0073028584, -0.000184457967, 0.00228685956, 0.00641410658, -0.0102458009, -0.000689097214, -0.00763404416, 0.00206886372, -0.00141802058, 0.0100697279, 0.0186973307, -0.00389248226, -0.00794846099, -0.00480848365, -0.000996701885, 0.000780802162, -0.00823772512, -0.00296809641, 0.00986850075, 0.00586492475, 0.00591942389, 0.00896298047, -0.00242310693, 0.0196363889, -0.0179762673, -0.0117717721, -0.0225206409, 0.0106398705, 0.0359860733, -0.0101954946, 0.00339360721, -0.00812872685, 0.0206089858, -0.00272913929, -0.0167521369, 0.0181271862, 0.00790234655, 0.00925643556, 0.0226380229, -0.0104051055, 0.00368706323, -0.00913905352, 0.0260924175, 0.0139768831, 0.00425720587, -0.0137337334, -0.00468271691, 0.000134413262, -0.00498874951, -0.0192842409, -0.011008787, -0.0159388445, 0.00239795353, -0.0100194216, -0.00211393018, 0.00833414588, -0.0299324971, 0.000646650908, 0.0251533594, 0.0108997887, 0.0109333266, -0.0250527449, -0.00765500544, -0.0214306619, 0.00363466027, 0.00490490487, -0.0171881281, -0.00540378, -0.00222816831, -0.0018749733, -0.0014106842, -0.02466706, -0.0230069384, -0.00264529488, -0.0119646145, 0.00616257265, -0.0115873134, -0.0096924277, -0.00258660363, 0.00692555821, 0.00322801434, 0.00798619166, -0.0058691171, -0.0252707414, -0.0148572503, -0.00829641614, 0.0228895564, -0.0086359866, 0.00276896544, 0.00576850353, -0.012216148, -0.00560081471, 0.00904682465, 0.00949120056, 0.0132138981, -0.0179091915, 0.000486560282, -0.00521093747, 0.00488813594, 0.0126102166, -0.00843056757, 0.0159136914, 0.00540378, -0.00679140678, -0.00424672524, -0.0226044841, -0.0137924245, 0.00813292, 0.00677883, 0.00085835834, -0.0101787262, 0.00191375136, -0.00226170616, -0.0153519334, 0.000778706046, -0.00432637753, 0.00980142504, -0.001166487, 0.00967565831, 0.00112875691, -0.0108159445, 0.00990203861, 0.00747054769, -0.00984334759, -0.0102290325, 0.0233087782, 0.00653987331, 0.0116795432, 0.0092396671, -0.00217995769, 0.00013939153, -0.00929835811, -0.00482525257, 0.00955827627, -0.0246335231, 0.00224284106, -0.00495521165, 0.00477494579, 0.0280711483, 0.00767596671, -0.015569929, -0.0160226896, -0.0184625648, -0.00298905745, -0.0269979388, 0.0136666577, 0.00294084684, 0.011008787, 0.0221852623, 0.00105906115, 0.0151926288, 0.000821152353, 0.00579365669, -0.00952473842, 0.0227721743, 0.00991880801, -0.0307541732, 0.00729028182, -0.00263691042, 0.0260588787, -0.00769273564, -0.00705551729, -0.00248179794, 0.0102961082, 0.00044725815, 0.0115789296, -0.0145721789, 0.000200571827, 0.0227050986, 0.0295635816, -0.0224200264, 0.00204371032, 0.00180160929, 0.00826707, 0.018160725, -0.00185086799, 0.0053450889, -0.0177247338, -0.00539539522, 0.00676625362, 0.00625480199, 0.018278107, 0.000446472113, -0.00331395492, -0.00901328679, -0.00214117975, 0.00366400578, 0.00674529234, -0.00818322599, -0.000987793319, 0.0161149185, -5.01429568e-05, 0.011746618, 0.0201897621, -0.000712678477, -0.0133648179, -0.000551801815, 0.00835929904, 0.00208458467, -0.0115537765, -0.0206257533, -0.0166179854, -0.0128282132, -0.0146644078, -0.0315926187, 0.0201394558, -0.0150668621, -0.0125347571, -0.00294084684, -0.013716965, -0.00757954549, -0.0229398627, 0.00058743573, -0.0256061181, -0.0107488688, -0.0215815809, 0.00568885123, 0.0294126607, 0.00879529119, -0.0115705449, 0.0050390563, 0.00949958526, -0.0257067326, -0.0133732026, 0.00211497815, -0.0180768799, -0.00678302255, -0.0131803602, 0.00914743822, -0.0172384344, -0.00418384187, -0.00669498555, -0.0179762673, -0.0176744275, -0.00958342943, -0.0391386263, 0.00482525257, -0.00864437129, 0.00143164536, 0.00112142053, -0.0114867007, -0.0155028533, -0.0105644101, 0.00932351127, -0.00819999445, -0.00232039741, -0.000714774593, -0.00729866605, -0.0142954923, 0.0205083713, 0.00258660363, -0.0273333155, 0.0185799468, -0.00681236805, 0.0197705403, 0.011008787, 0.0137588875, 0.00313997758, -8.96088386e-05, -0.00539958756, -0.0211120527, -0.0129288267, -0.0052654366, 0.0181104187, -0.0188482497, -0.0122413011, 0.0176408887, -0.000567522657, -0.00222607213, 0.00666564, -0.0354159288, -0.00408322876, 0.0197705403, -0.0223529506, -0.0104218749, -0.00838864502, 0.00710163172, -0.00278783054, -0.0131468223, 0.00990203861, 0.017691195, 0.0144464122, 0.00656921882, -0.0120149208, -0.0145218726, -0.00306870975, 0.0247676745, -0.0150165549, 0.0275177751, -0.0311063193, -0.0158801544, -0.00368287088, -0.0053744344, 0.0122916074, -0.0165509097, 0.0105727948, -0.0050306716, -0.0231410898, -0.000699577795, -0.00572238909, 0.0138846543, 0.0844482109, 0.00672013918, 0.00477913814, -0.0320789181, -0.0185464099, -0.00980981, -0.0148907881, 0.0529562049, 0.00406017108, 0.0149075575, -0.0104051055, -0.00679140678, 0.0144715654, -0.0107572526, -0.0207599048, 0.0062757628, -0.0123419147, -0.00410418957, 0.00603261404, 0.01003619, 0.00427607074, 0.0030645174, 0.00288215559, -0.0143122608, 0.000476865767, -0.00882044435, -0.0130629772, 0.0127611374, -0.0109584797, -0.00184667576, -0.00641829846, 0.0256228875, 0.00798199885, -0.0141948787, -0.036086686, 0.00927320495, 0.0217995774, 0.0189320948, 0.000129238484, -0.00486298278, 0.00970919617, 0.00333910831, -0.00530735869, -0.00166955416, 0.0149662485, -0.0144296438, -0.0259414967, -0.0103631839, 0.00427816715, -0.000322015403, 0.00157313293, -0.0106314858, -0.00091547746, -0.0105644101, -0.0060954974, 0.00897974893, 0.0185296405, -0.0130210556, 0.0159053076, 0.00369754364, 0.0105644101, 0.00837606844, 1.68999122e-05, 0.00278992672, -0.01463087, -0.000967880304, -0.0121993786, -0.000682284823, -0.0026138532, 0.000936438562, -0.00644345209, -0.014010421, -0.00452341232, 0.00291778962, 0.00828803144, -0.00625060964, 0.0123754526, 0.000820628309, 0.00197034632, -0.0211791284, -0.00188440573, 0.0226044841, -0.0213300474, -0.0153687019, -0.000394855335, -0.011478316, -0.00997749902, -0.0181942619, -0.00578946481, -0.0177582707, 0.0105057191, 0.0406478271, -0.0137421181, 0.00690459693, 0.0140607273, 0.0151926288, -0.00933189597, 0.00786461681, 0.0241807625, -0.0228560176, 0.0222858749, -0.0021191705, -0.00649375888, 0.00669079321, -0.00171881285, 0.022721868, -0.00391344354, -0.00614999607, 0.00736993412, 0.00291778962, 0.00551697, -0.00971758086, -0.000967880304, 0.0324478336, 0.00101871102, 0.00506001711, 0.0159136914, 0.00965889, -0.00141592452, -0.0103380308, 0.020458065, 0.00965889, -0.0217325017, -0.00789815467, -0.0177918095, 0.0080323061, 0.0123083768, -0.0208269805, 0.0150920153, -0.0110590933, 0.0156705417, -0.0119310766, 0.00614580372, 0.00698005687, 0.00723578269, 0.0316261575, -0.0311398581, -0.00324268709, -0.0185296405, 0.0166179854, 0.0200388432, 0.00929835811, -0.00256354641, 0.0223864894, 0.0100948811, 0.00331605109, 0.0151926288, -0.00700940238, 0.00794007722, -0.0165509097, -0.0195525438, 0.00524866767, 0.00470787, -0.00363675645, -0.0177750401, 0.00666564, -0.00487555936, -0.0164251439, 0.0114280088, -0.0077975411, -0.0251533594, 0.00228685956, 0.0185128711, -0.00416288106, 0.0236441568, -0.00884559751, 0.0176073518, 0.0142284166, 0.00797361508, 0.0139936516, 0.0256396569, -0.00273752376, -0.00975111872, 0.0168779027, -0.0142032634, -0.00980142504, -0.00223236065, -0.00913905352, 0.00823772512, -0.0114112403, -0.00552954664, 0.0115453918, -0.0018990786, 0.038501408, -0.0131552061, -0.0142619545, 0.00323430263, 0.000997749856, 0.0502396412, 0.0216151197, -0.0138511164, 0.023342317, -0.0244490653, -0.00167584256, -0.0210952833, 0.000840541383, 0.00121155346, 0.00273123547, 0.000236991793, -0.00202274928, 0.00429074373, 0.0111345537, 0.0189656317, 0.0163245294, 0.00388619397, 0.0162323, 0.0223361831, 0.00208668062, 0.00464917906, 0.0115034692, -0.000585863658]
14 Mar, 2023
Check if a string can be formed from another string by at most X circular clockwise shifts 14 Mar, 2023 Given an integer X and two strings S1 and S2, the task is to check that string S1 can be converted to the string S2 by shifting characters circular clockwise atmost X times. Input: S1 = “abcd”, S2 = “dddd”, X = 3 Output: Yes Explanation: Given string S1 can be converted to string S2 as- Character “a” – Shift 3 times – “d” Character “b” – Shift 2 times – “d” Character “c” – Shift 1 times – “d” Character “d” – Shift 0 times – “d” Input: S1 = “you”, S2 = “ara”, X = 6 Output: Yes Explanation: Given string S1 can be converted to string S2 as – Character “y” – Circular Shift 2 times – “a” Character “o” – Shift 3 times – “r” Character “u” – Circular Shift 6 times – “a” Approach: The idea is to traverse the string and for each index and find the difference between the ASCII values of the character at the respective indices of the two strings. If the difference is less than 0, then for a circular shift, add 26 to get the actual difference. If for any index, the difference exceeds X, then S2 can’t be formed from S1, otherwise possible. Follow the below steps to implement the above idea: Declare integer variables diff and n. Assign the length of string s1 to variable n. Iterate over each character of the strings. If the characters at the current index are the same, continue to the next iteration of the loop. Calculate the difference between the ASCII values of the characters at the current index of both strings. To handle the circular shift, add 26 to the difference and then take the result modulo 26. Check if the resulting difference is greater than x. If yes, output “NO” and return from the function. If the loop completes without returning, output “YES” to indicate that the conversion is possible. Below is the implementation of the above approach: C++ // C++ implementation to check // that a given string can be // converted to another string // by circular clockwise shift // of each character by atmost // X times #include <bits/stdc++.h> using namespace std; // Function to check that all // characters of s1 can be // converted to s2 by circular // clockwise shift atmost X times void isConversionPossible(string s1, string s2, int x) { int diff, n; n = s1.length(); // Check for all characters of // the strings whether the // difference between their // ascii values is less than // X or not for (int i = 0; i < n; i++) { // If both the characters // are same if (s1[i] == s2[i]) continue; // Calculate the difference // between the ASCII values // of the characters diff = (int(s2[i] - s1[i]) + 26) % 26; // If difference exceeds X if (diff > x) { cout << "NO" << endl; return; } } cout << "YES" << endl; } // Driver Code int main() { string s1 = "you"; string s2 = "ara"; int x = 6; // Function call isConversionPossible(s1, s2, x); return 0; } Java // Java implementation to check // that a given string can be // converted to another string // by circular clockwise shift // of each character by atmost // X times import java.io.*; import java.util.*; class GFG{ // Function to check that all // characters of s1 can be // converted to s2 by circular // clockwise shift atmost X times static void isConversionPossible(String s1, String s2, int x) { int diff = 0, n; n = s1.length(); // Check for all characters of // the strings whether the // difference between their // ascii values is less than // X or not for(int i = 0; i < n; i++) { // If both the characters // are same if (s1.charAt(i) == s2.charAt(i)) continue; // Calculate the difference // between the ASCII values // of the characters diff = ((int)(s2.charAt(i) - s1.charAt(i)) + 26) % 26; // If difference exceeds X if (diff > x) { System.out.println("NO"); return; } } System.out.println("YES"); } // Driver Code public static void main (String[] args) { String s1 = "you"; String s2 = "ara"; int x = 6; // Function call isConversionPossible(s1, s2, x); } } // This code is contributed by Ganeshchowdharysadanala Python3 # Python3 implementation to check # that the given string can be # converted to another string # by circular clockwise shift # Function to check that the # string s1 can be converted # to s2 by clockwise circular # shift of all characters of # str1 atmost X times def isConversionPossible(s1, s2, x): n = len(s1) s1 = list(s1) s2 = list(s2) for i in range(n): # Difference between the # ASCII numbers of characters diff = ord(s2[i]) - ord(s1[i]) # If both characters # are the same if diff == 0: continue # Condition to check if the # difference less than 0 then # find the circular shift by # adding 26 to it if diff < 0: diff = diff + 26 # If difference between # their ASCII values # exceeds X if diff > x: return False return True # Driver Code if __name__ == "__main__": s1 = "you" s2 = "ara" x = 6 # Function Call result = isConversionPossible(s1, s2, x) if result: print("YES") else: print("NO") C# // C# implementation to check // that a given string can be // converted to another string // by circular clockwise shift // of each character by atmost // X times using System; class GFG{ // Function to check that all // characters of s1 can be // converted to s2 by circular // clockwise shift atmost X times static void isConversionPossible(String s1, String s2, int x) { int diff = 0, n; n = s1.Length; // Check for all characters of // the strings whether the // difference between their // ascii values is less than // X or not for(int i = 0; i < n; i++) { // If both the characters // are same if (s1[i] == s2[i]) continue; // Calculate the difference // between the ASCII values // of the characters diff = ((int)(s2[i] - s1[i]) + 26) % 26; // If difference exceeds X if (diff > x) { Console.Write("NO"); return; } } Console.Write("YES"); } // Driver Code public static void Main () { String s1 = "you"; String s2 = "ara"; int x = 6; // Function call isConversionPossible(s1, s2, x); } } // This code is contributed by chitranayal Javascript <script> // Javascript implementation to check // that a given string can be // converted to another string // by circular clockwise shift // of each character by atmost // X times // Function to check that all // characters of s1 can be // converted to s2 by circular // clockwise shift atmost X times function isConversionPossible(s1,s2,x) { let diff = 0, n; n = s1.length; // Check for all characters of // the strings whether the // difference between their // ascii values is less than // X or not for(let i = 0; i < n; i++) { // If both the characters // are same if (s1[i] == s2[i]) continue; // Calculate the difference // between the ASCII values // of the characters diff = ((s2[i].charCodeAt(0) - s1[i].charCodeAt(0)) + 26) % 26; // If difference exceeds X if (diff > x) { document.write("NO<br>"); return; } } document.write("YES<br>"); } // Driver Code let s1 = "you"; let s2 = "ara"; let x = 6; // Function call isConversionPossible(s1, s2, x); // This code is contributed by avanitrachhadiya2155 </script> Output: YES Time Complexity:O(N),N=Length(S1)Auxiliary Space:O(1) Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts
https://www.geeksforgeeks.org/check-if-a-string-can-be-formed-from-another-string-by-at-most-x-circular-clockwise-shifts-of-its-characters?ref=asr10
PHP
Check if a string can be formed from another string by at most X circular clockwise shifts
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0115460642, 0.0350427702, -0.0166655444, 0.0334866978, 0.0104801534, 0.0113826767, 0.0233722217, 0.0121607129, -0.0307324473, -0.0373768806, -0.0282894131, 0.0190307759, 0.0117950356, -0.0346381925, -0.00604534475, 0.0187662449, 0.00534511171, 0.0272312835, -0.0202445146, -0.0121918349, -0.00672612712, -0.000239489411, -0.0389640741, 0.00130710157, -0.0175058246, 0.0132966461, -0.00513504213, 0.00673001725, -0.0130787957, 0.0012254077, 0.018112693, -0.0104801534, 0.00584305543, -0.0254884809, -0.0254573599, -0.0314015597, 0.00127695268, -0.00145979133, -0.0825963691, 0.0147671355, -0.0501989238, 0.0108380504, -0.0176769923, -0.0163854528, -0.000318995037, 0.01951316, -0.015677439, -0.0299544111, -0.0170856845, 0.00617372105, -0.0164943766, 0.0145726269, 0.0394931398, 0.0394931398, 0.0205868501, 0.0241035763, -0.0303589907, -0.0216138586, 0.0472423844, 0.0104179112, 0.0301100183, -0.0430409871, 0.00156482623, -0.00755862612, 0.00453984411, -0.00393686537, -0.0436945371, 0.0334866978, 0.0019110525, 0.00892408, -0.0662264824, 0.0269356295, 0.0231543705, -0.0259397421, -0.00239051762, -0.0289429631, 0.0232477356, 0.00968655664, -0.0296431966, 0.0354473516, -0.0197154488, -0.00314715831, -0.0291296933, -0.0312770754, 0.0233410988, -0.0229987632, -0.0258930605, -0.0623051748, 0.0729487166, 0.0334866978, -0.0116160875, -0.0224697, 0.00790096261, -0.031821698, -0.0267800223, 0.0282894131, 0.0451261252, 0.00771423336, -0.0273246467, 0.0458108, 0.0340468846, 0.0229520816, 0.0111726066, -0.00697509851, -0.00573024, 0.00961653329, -0.00412748428, 0.0240102112, 0.0203689989, 0.0317594558, 0.0391819254, -0.0054190252, 0.0162920877, 0.0593797565, -0.0256596487, -0.031526044, -0.0239012856, -0.036225386, 0.0431032293, 0.0204001218, -0.00883849617, 0.0364121161, 0.00684672268, 0.0384972543, -0.0326464176, 0.0319928676, 0.0209914297, -0.00473435316, -0.0141058043, 0.00606479589, 0.000971087, 0.00815382414, 0.00491719181, 0.00924307574, 0.0488607027, 0.00932866, -0.0150627894, 0.0286628697, -0.0305301584, 0.0259708632, -0.0236367527, 0.00247610174, 0.0222829692, 0.0308880545, 0.0112659708, -0.000817424734, -0.011748354, 0.0457796752, -0.0201978311, -0.0117172319, -0.0473668724, -0.0131877214, -0.0265621711, 0.00620484212, 0.0169300772, 0.00522451615, 0.0113359941, -0.017163489, -0.000959416444, -0.029207496, -0.00371123478, -0.0271690395, 0.0246637613, -0.0106591024, -0.0219561942, -0.0340780057, 0.0152339581, 0.00234772568, -0.0350116491, 0.0446593054, -0.0230921283, 0.0119817648, 0.0104490323, -0.0227186698, 0.00868288893, -0.0129776513, 0.0288962815, -0.0274646934, 0.00105618476, -0.024181379, -0.0540268645, -0.0190930199, -0.00282038283, -0.000573315774, 0.0567344315, -0.00783482939, 0.00651605707, 0.00585472584, -0.0231232494, -0.0190774594, -0.0039349203, 0.00485105859, 0.0529687367, 0.0266555361, -0.0122385165, 0.00386489718, -0.046308741, 0.0344514623, -0.00648104539, 0.0306857657, -0.0148215983, -0.0307480078, -0.00777647644, 0.0160742365, 0.0237768, -0.0040691318, -0.0649193823, -0.00681560114, 0.0256285276, -0.0206024107, -0.0280093197, 0.0433522, -0.0128453849, -0.00457485532, 0.0335178189, 0.0123396618, -0.0382171609, 0.000256995234, -0.0157941449, -0.0102700843, -0.0151328128, -0.00170195522, 0.00919639319, -0.0100288922, -0.0454373397, -0.0392441675, -0.0363809951, 0.0367544517, -0.0027095126, -0.0535911657, 0.0356652, 0.00860508531, 0.00667555444, 0.0117172319, -0.00527119823, -0.00538012339, 0.00466433, 0.0149772055, -0.0306235235, -0.00087383244, 0.00276008504, 0.00927419681, 0.0126275346, -0.0343892202, 0.0193108693, 0.00381237967, 0.0213648863, 0.0339846425, 0.0293631032, 0.0538712591, 0.0128064835, 0.00725908205, 0.0115771852, 0.0136778848, -0.0228898376, 0.00942202378, -0.00385711668, 0.00646937499, -0.00955429, 0.0332688466, -0.0073135444, -0.0209914297, -0.0257530138, 0.0589129366, 0.0151328128, 0.0248193685, -0.00765977101, -0.00881515536, 0.00510003045, -0.0454062186, 0.0392441675, -0.0349182859, -0.0164632555, -0.017785918, 0.0133122075, -0.021115914, -0.0344203413, -0.00886961818, 0.0855840296, -0.012759801, 0.00440757768, 0.0279159546, 0.0548671447, -0.0223607738, 0.0252239481, -0.0376880951, -0.0534666777, 0.0288651604, -0.0644836798, 0.00445425976, -0.00883849617, -0.011273751, -0.00577303208, -0.00364510179, -0.0101689389, 0.00885405671, 0.00900188368, -0.0183305442, -0.0445348173, -0.0127053382, -0.0172412917, -0.0302811861, -0.0301567, 0.0266866572, -0.0329887532, -0.0135767395, 0.0184239075, -0.00567577733, -0.0077453549, -0.0200733449, 0.0713304, -0.0354784727, -0.00629820675, 0.0233410988, -0.00886183791, -0.00812270306, 0.0458108, -0.0173502173, -0.0171790496, -0.0114682605, 0.00368983881, -0.0244614724, 0.0148838414, 0.0089474218, 0.0187195614, -0.0102078412, -0.0427608937, 0.0169923212, -0.0103556681, -0.00667944457, -0.0420762226, 0.0193264298, -0.00540346466, -0.00162415148, -0.00561353471, -0.00949204713, -0.0295498315, 0.0124485865, -0.00861286558, 0.00754695572, 0.0055863033, 0.0104879346, -0.00418972736, 0.0159497522, 0.00896298233, -0.0151561545, 0.0153817851, 0.0109858774, 0.0237923618, -0.0285383854, 0.00154634786, 0.0162298456, 0.0555206947, -0.0192797482, -0.00538012339, -0.0179570857, -0.00455540465, -0.0515993908, 0.00505334791, 0.0245237146, 0.0221584849, 0.00144714816, -0.0179259647, 0.000694397721, 0.00556296203, -0.0366610885, -0.0384972543, 0.00372485048, 0.0131254783, -0.0079982169, -0.0243992303, 0.0320239887, 0.0101300376, -0.0173657779, -0.0577303208, -0.00269589713, 0.03057684, -0.0451261252, 0.0239790902, 0.00118942349, -0.0112659708, 0.0452194922, -0.00788929127, 0.0147126736, -0.0174435824, 0.0111025833, -0.00609591743, 0.022189606, -0.00443480909, 0.0394931398, -0.0322107188, 0.029207496, -0.0103634484, 0.0157241207, -0.0168678351, 0.0100989155, -0.0161831621, -0.0103478879, 0.0175369456, -0.0246637613, 0.0359452926, -0.023169931, 0.0093597807, 0.0279470775, -0.00170681789, 0.00688562449, -0.0434144437, -0.0165721811, -0.00104743184, 0.0365988426, -0.0169923212, 0.014782696, -0.0487362146, -0.00282621826, -0.0114060175, 0.0227809139, -0.0587573275, 0.0487050936, 0.030218944, -0.0149694253, 0.00984994415, -0.0163854528, 0.0182216186, 0.0276358612, 0.000967683096, -0.0113437744, 0.0483005159, 0.0532177091, 0.0312148314, -0.0202911962, -0.0142069496, -0.00926641654, -0.00291180215, 0.0206024107, -0.0265932921, -0.0341402479, 0.00588973751, -0.0244925935, 0.0100133317, -0.00581193389, -0.0107524665, 0.0289274026, -0.00483160745, -0.0415782779, 0.0012195725, 0.0257530138, -0.0403645411, 0.0282427315, 0.0044853813, 0.0093597807, -0.0208980646, -0.0286628697, -0.0360075347, 0.0150238881, 0.0188129265, -0.0323352031, -0.0334866978, -0.0269511901, 0.0283360947, 0.00291763735, 0.0315104835, 0.0520350933, 0.0122696385, -0.016447695, 0.055116117, 0.026920069, 0.0130943572, -0.01293875, -0.0311837085, -0.011748354, 0.0239635296, -0.0256129671, 0.0181904975, -0.0123241, 0.00524007669, -0.0263910033, 0.015693, -0.0139035154, -0.0163543299, 0.00288457097, 0.0373146385, -0.00760919834, -0.00648493553, -0.00411192374, 0.0108769527, 0.000592766679, 0.0170545634, -0.000359841943, -0.0168055911, -0.0185483936, 0.000772201398, 0.0421695858, -0.0266555361, 0.00946870632, -0.0182060581, -0.0239012856, -0.043009866, -0.0343892202, 0.0139112957, 0.0158486068, 0.016836714, 0.0134055717, -0.00495998375, 0.0220184382, 0.0129854316, -0.041080337, -0.0317905769, 0.0295031499, 0.037408, -0.0390885621, -0.00260642287, 0.00145687361, 0.00495998375, 0.0388707109, -0.0183616653, -0.00301489211, -0.0455929488, 0.0301255789, -0.0268422645, 0.00640713191, 0.0193419922, -0.0277447868, 0.0267177783, 0.00397576718, -0.0182060581, 0.0424808, 0.0266710967, -0.0198243745, 0.00786595, 0.00590918818, -0.031386, 0.0067728092, 0.0101455981, 0.0182994213, -0.00303045288, -0.0112815313, 0.00820050668, 0.0181593765, -0.0249127336, 0.031852819, -0.0341091268, 0.0320551097, -0.0378748253, 0.00332805188, 0.00508057931, -0.00222129468, -0.00334944786, -0.00480437651, 0.0261109099, 0.029238617, -0.0283049736, 0.0251461454, 0.0140746832, 0.00909524877, -0.00136350922, -0.00559019344, -0.0121918349, -0.0134366928, -0.0236989968, 0.0131955016, -0.00604923489, 0.0097488, 0.00823162775, 0.0192019455, 0.0371590294, -0.0229987632, 0.00076977, 0.0207268968, -0.0101144761, -0.00933644, -0.0150939114, -0.00236912165, 0.00701011, -0.0142614115, 0.0229832027, 0.0349805281, 0.0317438953, -0.0197621305, 0.00411581388, -0.00662498223, 0.00680782087, -0.023527829, -0.0194664765, -0.00953094941, -0.0277603474, -0.00377736799, -0.0364121161, -0.0112815313, -0.0332066044, -0.00814604387, 0.0130710155, 0.0276047401, 0.0106124198, 0.0422629528, -0.00218433794, 0.0096398741, -0.00422862917, 0.00866732839, -0.0235745106, -0.0260797888, 0.0150005464, 0.0231854916, 0.0244303513, 0.0113671152, 0.00399132818, -0.011063681, 0.0112581905, 0.0157785825, 0.00671445625, -0.0287562348, -0.038403891, 0.0144792618, 0.00845725834, -0.0158097055, -0.00125069392, -0.0144092385, 0.0139035154, 0.017163489, -0.0115149422, -0.00351089053, -0.0305301584, 0.00325608347, 0.0160586759, 0.0122385165, -0.0112659708, 0.0272001624, -0.00200927956, -0.0110559007, -0.0165255, -0.0270756762, 0.0194976, -0.00126236444, -0.0169611983, 0.00127889775, 0.0273868907, 0.0201044679, -0.00700622, 0.00140824635, -0.0238234829, 0.00745748123, -0.00245470577, 0.00385711668, -0.0189840943, 0.098655045, -0.0167589094, -0.0213648863, -0.0236834362, -0.00106299261, 0.0122618573, 0.015646318, 0.0108847329, -0.00236328645, 0.036878936, 0.021178158, 0.0236211922, -0.00156288117, 0.009219734, -0.0323663242, 0.00753917499, 0.0220651198, -0.0164632555, -0.0250839014, 0.00434144447, 0.00131488196, 0.00700233, -0.0193419922, -0.0111570461, 0.010915854, -0.00602978421, 0.011421578, -0.0125730727, -0.011748354, -0.00242163916, 0.0207424574, -0.0141602671, -0.0202445146, -0.0219561942, 0.0382171609, 0.0317594558, -0.0361631438, 0.0203223173, -0.00218433794, 0.0192953087, -0.00876069255, 0.0195598416, -0.00141408166, 0.00119525881, 0.000548029551, -0.0426675305, -0.00690118503, -0.00343503174, 0.0365054794, 0.0415471569, 0.0468066856, -0.0177081134, 0.00475380383, -0.0113748964, 0.0218783915, -0.0185172725, 0.0199799817, 0.0141991694, -0.0186728798, -0.0209447462, -0.010946976, -0.0365054794, 0.0347315557, 0.0067728092, 0.015109472, -0.033673428, 0.00246054097, 0.0253484342, 0.00768311182, 0.00545014674, 0.0263754427, 0.0278537124, 0.00363732129, 0.0127987033, -0.0130632352, -0.00165138277, -0.0189996548, -0.0189529732, -0.00344086718, 0.00966321491, -0.0280560013, 0.000492837571, -0.0144948233, 0.00530232, -0.026857825, 0.0100288922, -0.0166344233, 0.0124719273, -0.00822384749, 0.0312770754, -0.00301878224, 0.00343892211, -0.00492108194, 0.00364121166, -0.0283672158, -0.0133355483, -0.0106435418, -0.0297521222, -0.00821606722, -0.0333310887, 0.0212559607, 0.0351361372, -0.0346381925, 0.0249749776, 0.00498332456, -0.00014782697, 0.0302811861, -0.00090155, 0.0253484342, 0.00957763102, -0.00847281888, -0.0162920877, -0.00256946613, 0.00142575218, -0.00965543464, 0.00120498426, 0.00341363577, 0.00644214358, 0.0132344039, 0.0124563668, 0.0148371588, 0.010589079, -0.00545792701, -0.0501366816, 0.00296042953, 0.015693, -0.0213648863, -4.09988861e-05, -0.00776869617, 0.0250216592, -0.0224541388, 0.00765588088, 0.00038172424, 0.00832499191, -0.0289896466, -0.00453984411, 0.0220495593, 0.0250060987, 0.0184705909, 0.03354894, -0.00232827477, 0.0344203413, -0.0109858774, 0.00335722812, 0.0146348691, 0.0370345451, -0.000369324262, -0.0121996151, 0.0153740039, 0.00633710856, 0.015910849, 0.018174937, -0.0310125407, -0.0207424574, -0.0118572786, -0.0158097055, -0.0542758368, 0.0035322865, -0.0130243339, -0.00992774777, -0.0125108296, 0.0260331072, -0.00535678258, -0.0143469963, 0.00659775082, -0.0174747035, 0.0107135652, -0.00547348801, -0.00569522846, 0.00406135153, 0.0354473516, 0.0206490923, 0.0115927458, 0.0192641877, -0.00138879544, -0.022189606, 0.0195754021, 0.02016671, -0.013117698, 0.00264337962, 0.00177975884, -0.000743997574, 0.0216605403, 0.00496387389, -0.0435700528, 0.0338912755, -0.0177236758, 0.0173190963, 0.012643096, -0.0307791308, 0.0416405201, 0.00317633455, 0.0250060987, -0.00620095199, 0.000738648523, 0.0339846425, 0.0142536312, 0.00960097276, 0.0342336111, -0.00147340691, 0.00383766578, -0.00122151757, 0.0146815516, -0.0288496, 0.0105268359, 0.0257685743, -0.0175058246, 0.0183772258, 0.0206646528, 0.0374391228, 0.0383105241, -0.0177703574, 0.0477714501, -0.0365677215, -0.014487043, 0.0199799817, -0.018828487, 0.0124797076, 0.0134055717, 9.47016524e-05, -0.0186261982, 0.0223918948, -0.0202133916, -0.00203845603, -0.0239635296, 0.0168833956, -0.0286317486, -0.011094803, 0.000123817241, -0.013265525, 0.0154907098, 0.0252861921, -0.0120595684, -0.0172101706, -0.013771249, 0.00530621, 0.00321912672, -0.00391157949, -0.0116083072, -0.0522218198, -0.0345448293, -0.0117016714, -0.0110403402, 0.010441252, -0.0469000489, 0.0143858977, -0.0293008611, 0.02016671, -0.00722018024, -0.0198866166, -0.033673428, 0.0332999676, 0.00542680547, -0.00449316157, -0.0162609667, -0.0192641877, -0.00592085905, 0.00520895561, -0.00309464079, -0.00917305239, 0.0117639145, 0.0121840537, -0.0232477356, 0.0063799005, 0.0313548781, 0.011569405, 0.000365677231, 0.00262392871, 0.00397382211, -0.0182994213, -0.023169931, 0.0301100183, 0.0040574614, -0.0510080829, -0.0074535911, 0.0209136251, 0.00350311, -0.00272701844, 0.00451650284, -0.0240413323, 0.0387773477, 0.016447695, 0.00504945777, -0.0328331478, 0.00387851265, -0.0201511495, -0.0259397421, 0.00112231786, 0.0245548375, -0.000356194912, -0.01612092, -0.0126041938, -0.0213804469, -0.00293903355, 0.0116938911, -0.0391508043, -0.0154907098, -0.0140435621, 0.0156696588, 0.0130476747, -0.0304212328, -0.0328953899, 0.00754306559, -0.00983438361, 0.0150705697, 0.0153506631, -0.00567966746, -0.00650049606, 0.00210847938, 0.00823940802, -0.0327086598, 0.0122929793, 0.00237106672, -0.0339535214, -0.00790485274, -0.0310747847, 0.023201054, -0.00248582708, 0.021893952, -0.030607963, 0.0182060581, 0.00930531882, -0.0353851058, 0.00753917499, -0.0118961809, -0.00971767772, 0.00699844, 0.0162609667, -0.00473046303, 0.0339535214, 0.0299855322, -0.0307635702, 0.0341091268, -0.041702766, -0.0405512713, -0.0103401076, 0.00742635969, -0.00529842963, -0.0232788566, -0.00574969081, -0.00974101853, 0.0200266633, -0.0200733449, -0.00115246675, 0.00633321842, 0.00110286695, -0.0194197949, -0.00649660593, 0.0214115679, -0.00124291354, -0.0112581905, 0.00485883886, 0.00549293868, 0.0137090059, -0.00912637, -0.0288029164, -0.00282621826, -0.0274646934, -0.0210069902, -0.00883849617, -0.0118417181, 0.0242747441, 0.00453206338, 0.0106746629, -0.00704123173, 0.0089474218, -0.0261887144, -0.0171168055, -0.00994330831, -0.0128687266, 0.00117483537, -0.0166344233, 0.00422473904, -0.0255974066, 0.015467369, 0.0240724534, 0.019124141, -0.0173190963, -0.0212092791, 0.0209447462, -0.0086906692, 0.00444647949, 0.00899410341, 0.00102311815, -0.00530621, 0.00831721164, -0.00154829293, 0.0191085804, -0.00318217, -0.0178014785, 0.00546181714, 0.0312148314, -0.0157474615, 0.0078698406, -0.0294875894, -0.0196687672, 0.0160119943, 0.0122462967, 0.00603756448, -0.00411970401, -0.0120051056, 0.00193633873, -0.0200422239, -0.00910302904, 0.0140591227, -0.0167122278, -0.0105501767, 0.0317127742, 0.00978770107, -0.0284605809, -0.00944536459, -0.0319617465, 0.00341947121, -0.0139268562, -0.0194664765, 0.00124291354, -6.30331269e-05, 0.0047499137, -0.00294486876, -0.0420762226, -0.0300322156, 0.0260642283, 0.00141894433, -0.00687784422, -0.00472268229, 0.0138957351, 0.0136156417, 0.0076481, 0.007064573, 0.00510392059, -0.0170856845, -0.00717349816, 0.000160834767, 0.0121295918, 0.00837167446, -0.000648688059, -0.00376958749, -0.0354473516, -0.0144248, 0.0203223173, 0.020462364, -0.0253173131, 0.00311020156, 0.00765588088, -0.0244614724, 0.0148527194, -0.00333194202, -0.00419750763, -0.00371317985, -0.0282271691, -0.00541124493, 0.0152650792, 8.57056e-05, 0.0074535911, 0.0858330056, -0.00981104188, -0.0133666694, -0.0421384647, 0.0142614115, -0.0114137977, -0.000952122384, 0.0281182453, -0.0135067161, 0.00794375408, 0.00594030973, -0.0287095532, 0.0245237146, -0.00685450295, -0.0242591836, -0.00267061079, 0.00118650589, -0.0103401076, -0.00697898865, -0.0228898376, 0.000191348387, -0.0089474218, 0.0173502173, -0.000154756359, 0.00334361242, 0.0030012764, -0.00305768405, 0.00426364085, -0.0454062186, 0.000845142291, 0.0109625366, -0.0167277884, 0.00403801026, 0.0101767192, -0.0180504508, 0.0354784727, -0.00291374722, -0.00869844947, -0.0126586566, 0.0127442405, 0.00552017, -0.00608035643, -0.00582749443, 0.0301722623, 0.0119195217, -0.00240996853, 0.0128376046, 0.0020209502, 0.000267936382, -0.00626708521, -0.00249944278, -0.00620484212, -0.0215516146, -0.00609202683, 0.00776869617, -0.00180407253, -0.0259864237, 0.00169514737, 0.0162920877, -0.0294875894, 0.0076208692, -0.0166966673, 0.0117327925, -0.00280093192, 0.0182527397, -0.00569522846, -0.0194976, -0.00316660921, 0.000802350289, 0.00147243438, -0.00196454255, 0.000951149792, 0.0290207677, 0.000111113361, -0.0104801534, 0.0243058652, -0.0120051056, -0.00958541129, -0.0250839014, -0.00511559099, -0.011211508, 0.0301567, 0.0192330666, 0.0145181641, 0.0041936175, -0.00431810366, -0.0176769923, -0.0258775, -0.0134366928, -0.0105346162, 0.0150394486, -0.0177081134, -0.0135456184, 0.00569133833, 0.00862842612, -0.0126041938, 0.0170545634, 0.0100288922, 0.0133199878, -0.00645381398, 0.00457096519, 0.00485494873, 0.0141058043, 0.00638768077, 0.00612314837, 0.0254418, 0.00587417698, 0.00295070396, 0.00503778737, 0.0150861312, 0.0296431966, 0.021567177, 0.00560575398, 0.00943758432, 0.000822773785, 0.00368011347, 0.00175252755, -0.00357313338, 0.00392519496, 0.0101922806, -0.0248193685, -0.00249166228, 0.0173813384, -0.0410180911, -0.0235589501, -0.0375324897, 0.0119195217, 0.0101922806, -0.0142147299, 0.00794375408, -0.0304367933, 0.00639157137, 0.0153662236, -0.0050027757, 0.0157319, 0.0230765678, -0.0122618573, 0.0156074157, 0.0217072219, 0.00973323826, 0.00344475731, 0.0178637225, -0.0238234829, -0.00566799706, -0.00763253961, -0.00289040618, -0.0061153681, 0.00178559416, 0.00669500558, 0.0155607332, -0.0440991186, -0.0102545228, 0.0154284667, 0.00954651, 0.0304834768, -0.00940646324, 0.00496387389, 0.0110403402, -0.0220184382, -0.0025830816, 0.00522062602, 0.0108147096, 0.0145959677, -0.0114993816, -0.0121762734, -0.0133355483, 0.000761017087, 0.00174669235, 0.000251403108, -0.0126897776, -0.0319617465, -0.0270756762, 0.0148838414, -0.00634488882, 0.00927419681, 0.00800599717, 0.0364121161, 0.0137945898, 0.0252395086, -0.0118339378, -0.00776869617, -0.0055590719, 0.0109703168, 0.0130243339, 0.00427531125, 0.013950197, -0.0107524665, -0.00619317172, 0.0255974066, -0.0169456378, 0.00302656251, 0.024803808, -0.00248388201, 0.00850394089, 0.0115382839, 0.00799043663, 0.0268889461, -0.0115538444, -0.0116938911, -0.00616594031, -0.0103867892, -0.00543847634, -0.0176925529, 0.0108536109, -0.0141680473, -0.0228898376, -0.0388084687, -0.0207735784, 0.0232477356, 0.0116316481, 0.00941424351, -0.0101222573, 0.00224658079, 0.0176147502, -0.0136623234, 0.0135456184, -0.000993941794, -0.000803809147, -0.0261109099, -0.00472268229, -0.00244887033, 0.00786206, 0.00125847431, -0.0122073954, -0.00876069255, 0.011094803, 0.0412359424, -4.34302492e-05, -0.00884627644, 0.0331132412, -0.0294720288, 0.0322107188, 0.0281026848, -0.00532566104, 0.00535289198, -0.00829387084, 0.0321173519, -0.0487673394, -0.026235396, 0.0222051665, -0.0205868501, 0.0314171202, 0.00195967988, -0.000771715131, 0.0252395086, 4.53449502e-05, 0.0299544111, 0.0101066958, -0.0276358612, 0.00803711824, -0.0226719882, -0.00644992385, 0.0286161881, 0.00522840628, 0.0189218521, 0.0267644618, 0.000878208899, 0.0123707829, -0.00590140792, -0.0138801737, 0.030872494, -0.0163387693, -0.0194042344, 0.0121762734, 0.00404968066, 0.010768027, -0.0173035357, 0.00662109209, -0.0103245461, -0.0113282138, -0.00117386284, 0.0200266633, -0.0111803869, -0.00772201363, 0.0108769527, -0.0209603067, 0.00825496856, 0.00783093926, -0.0108458307, -0.00195967988, -0.0348871648, 0.0152806398, 0.00773757463, 0.00893964153, -0.00716571743, 0.0098888455, -0.0230610073, -0.000603950932, -0.00635655969, 0.0149460845, 0.00848059915, -0.0283827782, -0.0129543105, 0.00956207048, -0.0100989155, 0.0334555767, 0.0012390234, 0.0114838211, 0.000273285375, 0.0216294192, -0.00875291228, 0.0136467628, -0.0108224899, 0.00598699227, 0.00349727483, -0.0185950752, 0.0048899604, -0.0206335317, 0.0353851058, -0.00680393074, -0.00827831, -0.0554273315, -0.0171479285, -0.0100288922, -0.00335722812, -0.000225995333, 0.0227031093, -0.0104879346, -0.0062554148, 0.014276973, 0.000257967768, 0.0122307362, -0.0283205342, -0.0142925335, -0.0284605809, 0.0196532067, -0.00658219028, 0.0133977914, -0.00432588393, -0.0113359941, -0.00453984411, -0.018704, 0.00943758432, -0.00126722723, -0.0173813384, 0.00496776402, -0.00335528306, 0.0048899604, 0.0335178189, 0.00625930494, -0.0353539847, 0.000415033923, -0.0230921283, 0.00360814505, -0.00453984411, -0.0339846425, -0.000629237154, 0.0268733855, 0.0218783915, 0.0111570461, -0.0209447462, -0.00923529547, 0.00808380079, 0.0069361967, 0.0168211535, 0.0151794953, 0.0192641877, -0.0107991491, -0.0061153681, 0.0117950356, -0.0337979123, -0.00793986395, -0.00761308847, 0.00481993705, 0.00402244972, -0.0250839014, 0.0153662236, -0.00158719474, 0.00928975735, 0.0317127742, -0.00564854592, -0.011063681, -0.00511948112, 0.00227381219, -0.016447695, -0.000721142744, -0.0063954615, 0.0189529732, 0.0198243745, -0.0240102112, -0.0147360144, -0.00911859, -0.0117250122, -0.00769478269, 0.00294292369, 0.00887739845, -0.0203689989, 0.0029954412, 0.0251305848, -0.0184705909, -0.0188440476, 0.0122307362, 0.0305924, 0.0243058652, 0.00790874287, 0.0111570461, -0.0288651604, 0.00587028638, -0.00702956133, -0.017101245, 0.0174747035, -0.00913415, 0.0149460845, 0.00821606722, 0.031386, 0.0164632555, -0.0192019455, -0.018439468, 0.0406446345, -0.00323468749, 0.000956012518, 0.000996859511, -0.00131488196, -0.0314949229, -0.0250216592, 0.0272157229, 0.00858952478, 0.015646318, 0.0098888455, 0.0186106376, 0.0147437947, -0.00907190703, -0.0226719882, 0.00393103, 0.00176711578, 0.00580415362, 0.00320162089, -0.00382988551, -0.00995108858, -0.0220028758, -0.00851172116, 0.00321718166, -0.0285383854, 0.00730576413, 0.0351672582, -0.0140591227, 0.0260175467, -0.00276008504, -0.021504933, -0.0052828691, 0.0105657382, 0.00113496103, -0.0178326, -0.00723185064, 0.00744581083, -0.019450916, 0.0134055717, -0.00834833365, -0.00575358095, -0.00864398759, 0.0111648263, 0.0171168055, 0.00100074965, -0.00581193389, -0.00660553109, -0.00233216491, -0.0151717151, -0.00128084281, 0.0236211922, 0.0047654747, 0.0280404408, 0.00925863627, -0.00026623442, -0.0182527397, 0.0261264704, 0.00440368755, 0.0162609667, 0.0122929793, 0.00192272314, 0.0151250325, 0.00581193389, -0.0254106764, -0.0202911962, -0.0155062703, 0.0145648466, -0.007881511, 0.00749249291, -0.00251500355, -0.0118417181, 0.00344670238, -0.0189374126, 0.0163232088, -0.00777258631, 0.0172879752, 0.0129543105, 0.046308741, -0.00375013659, 0.0230298843, 0.0167433489, 0.0180504508, 0.0310903452, 0.0199177377, -0.00368011347, 0.00350116496, -0.0077181235, -0.0163232088, -0.00474213343, 0.00655884901, -0.0133122075, -0.0138490526, -0.00146270893, -0.0035322865, -0.0017817039, -0.0213960074, 0.0199955422, 0.0073407758, 0.0131410388, 0.0308102518, 0.012433026, 0.0141447065, 0.00132849754, -0.0202445146, -0.0290985703, 0.000530523772, 0.00345448265, -0.0135611789, 0.00810714159, 0.00609591743, 0.00747304223, 0.0250060987, 0.0310125407, -0.00548126828, 0.0110792425, -0.00326191867, 0.00138393266, 0.00632154802, 0.0168522745, 0.0154518085, -0.0305924, -0.0187973659, 0.00350700016, 0.0154595887, -0.0105190556, -0.0333622135, 0.00920417346, -0.000368594861, 0.0227031093, -0.00174669235, 0.0145415049, 0.00377736799, -0.0137012256, 0.0261887144, -0.0279159546, 0.00736800721, 0.0033786241, -0.00866732839, 0.00390963443, -0.00592863932, -0.00314715831, -0.017785918, 0.024570398, 0.00386684225, 0.01293875, 0.00293903355, -0.00939090271, 0.0104568126, -0.000189646438, 0.00252278382, 0.0133666694, 0.0125030493, -0.0127442405, 0.0127286799, 0.0133122075, 0.00575747108, -0.0115305036, -0.0135611789, -0.0033922398, -0.0120362267, -0.00685839308, -0.0202600751, -0.00366649777, 0.000743511308, 0.00550071895, -0.0106824432, -0.00789707247, -0.00703345146, -0.026920069, 0.0162454061, -0.0062437444, -0.00982660335, -0.0127831427, -0.0108613921, -0.017490264, -0.0159808733, 0.00486661913, -0.0123785632, 0.0432277173, 0.026142031, -0.0208669435, 0.00683894241, -0.0105501767, 0.0059908824, -0.0241969395, -0.0144325802, -0.0253017526, -0.0229209606, -0.0177236758, 0.00865176786, -0.00454762438, 0.0051661632, -0.0143547766, 0.00326386373, 0.0219717547, -0.0165255, -0.00895520207, -0.0291608144, 0.0138101503, 0.0243525468, -0.0172257312, -0.0191085804, -0.0101611586, 0.00353617663, 0.00394853624, 0.00366649777, -0.00366066257, -0.00311798183, 0.0147749158, 0.00508446945, -0.0142925335, -0.0109858774, -0.0072124, 0.00924307574, 0.0114293583, -0.00525952782, 0.00574969081, 0.0112815313, 0.00145006587, -0.010589079, -0.0162298456, 0.00660942122, -0.00161637121, 0.0105346162, 0.0079982169, -0.00593252946, -0.0131877214, -0.0127053382, -0.0344825834, -0.00454373425, -0.00184978219, 0.0228587165, -0.00349143939, 0.0025714112, 0.0312770754, -0.0207735784, -0.00904078595, 0.000120534896, 0.00361787039, -0.00726686232, -0.00895520207, 0.0189685337, 0.0133433286, 0.0232477356, 0.00855840277, 0.00559019344, 0.0192953087, 0.00734466594, 0.00372679555, -0.00159303, -0.00227964739, -0.0284605809, 0.0100366725, -0.000950177258, 0.0143236546, 0.0280871242, -0.0113593349, 0.00288457097, 0.00150550099, 0.00978770107, -0.000406281, 0.0107135652, 0.00269978726, 0.00692063617, -0.00420528837, 0.00553573063, 0.00205207174, 0.0153117618, 0.0364121161, -0.00214738119, -8.96565689e-05, 0.0174280219, -0.0138490526, -0.00489385054, 0.00964765437, -0.00206179707, -0.00303823315, -0.0301567, -0.00371123478, -0.018439468, 0.000108195723, 0.00609980756, 0.0243681073, 0.00838723499, -0.0121918349, -0.00610758783, 0.00409636321, -0.0158019252, -0.00456707506, 0.00928975735, -0.00749638304, -0.00280482206, 0.0270601157, 0.00419750763, -0.0353851058, 0.0164943766, 0.00199955422, 0.000888906885, -0.0180815719, -0.00185756257, 0.00260642287, 0.000771228864, -0.000667652697, -0.012401904, 0.00355368247, -0.00723574078, -0.0071890587, -0.0347626768, -0.000917597, 0.0101922806, 0.00323468749, 0.0266555361, -0.00183713902, 0.00245665084, -0.000136764254, 0.00862064585, -0.0163543299, 0.0142614115, -0.0234189034, -0.0326152965, -0.00498721516, -0.0157785825, -0.00373263075, 0.0276669841, 0.0136000812, -0.0104179112, -1.84783712e-05, -0.00895520207, -0.0177392364, 0.00946092606, 0.00556296203, -0.00695564784, 0.0300477762, 0.00765588088, -0.00418194709, -0.000728923071, -0.0219406337, -0.0128142638, 0.0183305442, -0.00633321842, 0.0120128859, 0.0190152153, -0.00566410692, -0.00622429326, -0.00776091544, -0.00611925824, 0.00580804376, 0.00492497208, -0.00522451615, 0.0243525468, 0.00585472584, -0.00995108858, 0.00168055913, -0.00907968823, -0.0126819974, 0.0183461048, 0.00950760767, -0.0474291146, -0.00783482939, 0.00105034944, -0.00132849754, 0.00170487282, 0.0211314764, -0.0031199269, 0.00842613727, 0.0227497928, 0.00534900185, 0.0202911962, -0.0140902437, -0.0187351219, 0.0144170197, 0.0042208489, 0.00197135028, -0.00128765067, -0.0153039815, 0.0138568329, -0.00736411707, 0.0026978422, 0.00107952591, 0.00148896768, 0.0178792831, -0.00320356595, 0.0130165536, 0.0295498315, 0.0088073751, 0.00057234324, 0.00977214053, 0.00555518176, -0.0137479082, 0.00747693237, 0.0241035763, -0.00168055913, -0.0122929793, -0.0236989968, -0.00105521223, -0.0196532067, 0.0263598822, -0.00789318234, 0.00957763102, -0.00884627644, 0.0089474218, -0.0092275152, -0.0131021375, -0.0276203, -0.00550460955, -0.00893186126, -0.00747304223, -0.0102934251, 0.013444473, -0.00701789046, -0.000661331171, -0.0142925335, 0.0138179306, -0.00541513506, -0.00332221645, -0.000729895663, 0.0104723731, 0.000943855732, -0.00609202683, -0.000288116687, -0.00745748123, 0.0103401076, 0.00199371902, -0.0109002935, -0.0225319415, -0.015763022, -0.0183927864, -0.00144423055, 0.00657051941, 0.0274180118, 0.00643825345, 0.0203378778, 0.0101844994, 0.0194664765, -0.00233216491, -0.018501712, 0.0170545634, -0.0028690102, 0.0180660114, -0.00158233207, -0.0199955422, 0.0032463579, 0.0303434301, 0.0152806398, -0.0088307159, 0.0122385165, 0.0269511901, -0.014308094, -0.00155704585, -0.0235122684, -0.0229987632, 0.0141913891, 0.00652772747, -0.0142302904, -0.015763022, 0.0186728798, -0.0328953899, 0.0193419922, -0.0406446345, -0.000185148412, -0.0252395086, 0.00893964153, -0.0148527194, -0.0339846425, -1.05384461e-05, -0.0117327925, 0.011211508, 0.0098966267, -0.0192797482, -0.0277603474, -0.011569405, 0.000156215174, 0.00373457605, 0.0182838608, 0.00574969081, 0.00264726975, -0.00533733144, 0.00927419681, -0.00588584738, 0.0188751686, 0.0193731133, 0.00318800518, 0.00721629, 0.0171790496, 0.0153584434, 0.0112659708, 0.0188129265, -0.000474359229, -0.0165255, 0.00427920138, -0.00862064585, -0.00964765437, -0.0171323679, 0.00553184049, 0.00247610174, -0.00589751778, -0.00243525463, -0.0186884403, 0.00540735479, -0.00590140792, 0.0122618573, 0.00872957148, -0.0143547766, 0.0137790293, 0.0172724146, -0.00872957148, -0.0150316684, 0.00553962123, 0.00193828379, -0.0141524868, -0.00521284575, -0.0128376046, 0.00100950256, 0.00680393074, -0.00588973751, -0.0274180118, 0.00635655969, 0.00530232, -0.0039349203, -0.00588195724, 0.0290363282, 0.0065783, -0.0150472289, 0.00671056611, 0.0159030687, 0.00210458925, -0.0108224899, 0.0012915408, 0.00628653634, 0.00411970401, 0.00377736799, -0.0140280006, -0.0421384647, -0.000396069285, -0.00668722484, 0.0285539459, 0.00316855428, -0.0166655444, 0.0117094517, -0.0130787957, -0.0128376046, 0.00233994517, 0.00576136122, 0.0123085398, 0.0167433489, -0.00912637, 0.000439347583, -0.00069877418, 0.01124263, -0.00520895561, 0.00495220348, 0.00741468929, 0.00824718829, 0.0143547766, 0.00535678258, -0.000867997122, 0.00291569228, -0.00826275, -0.0228120349, 0.00305573898, -0.00372874062, -0.0147593552, -0.00469156122, -0.00564854592, 0.00672612712, -0.0212715231, 0.0239324067, -0.019839935, -0.0116705494, 0.00129445852, 0.0103478879, 0.00254612486, 0.000584986294, 0.00179920974, -0.0246015191, -0.0158563871, 0.0104334718, -0.0123163201, 0.0103323264, -0.0181593765, 0.00841057673, -0.0133433286, -0.000481896452, -0.00350505509, 0.00836389419, -0.00357896858, -0.0243058652, -0.00266866572, 0.0204312429, -0.0171323679, 0.0210069902, -0.000791166036, 0.00212209509, 0.0143547766, 0.0209291857, -0.00331249111, 0.0200733449, -0.0249905381, 0.00494831335, 0.00995886885, 0.0108613921, -0.0150939114, 0.025192827, 0.00628653634, 0.00365288206, 0.00548126828, 0.00970211718, -0.0140902437, 0.00218433794, 0.0040808022, 0.0231388099, 0.00082082866, -0.00171848852, 0.0149849858, -0.0025966973, 0.0199332982, -0.0160586759, 0.00893186126, 0.00708791381, -0.0148605006, 0.0112037277, 0.000899604871, -0.0115382839, -0.00643825345, 0.00656273915, -0.0138023701, 0.0199332982, -0.000249458, 0.0139424168, 0.00186534284, 0.00930531882, 0.0392441675, 0.00391352456, 0.0175213851, -0.0257218927, -0.0183927864, -0.0124485865, 0.0100366725, -0.00797487609, -0.00407302193, 0.0209447462, 0.00578081235, -0.0127286799, 0.0080215577, 0.00172335119, -0.0144014582, 0.0333622135, 0.0133977914, 0.00783871952, 0.00956207048, 0.0125419507, 0.00109703164, -0.004609867, -0.0131254783, -0.0122307362, 0.0161676016, -0.00137031707, -0.0178014785, -0.00769089255, 0.00094142434, -0.0468689278, 0.0234033428, 0.0190774594, 0.0100133317, 0.0149227427, 0.0125419507, 0.00666388404, 0.0180504508, -0.0194820371, -0.000811589474, 0.00422862917, 0.00956985075, -0.0181904975, -0.00468767108, 0.00772590423, -0.0161831621, 0.00539179426, -0.00573413027, 0.00952316914, -0.0184705909, 0.0421695858, -0.00090252253, -0.0125575112, 0.00522840628, -0.0101378178, -0.0115071619, 0.00448149117, -0.00112037279, -0.0103401076, -0.000441292679, 0.0139112957, -0.0218472686, 0.00509224972, 0.000189889572, 0.00375402695, 0.0123318806, 0.00439979741, -0.0114682605, -0.00710736495, 0.00350700016, 0.0121295918, 0.0237301178, -0.00173599424, 0.00506890891, -0.000914679316, -0.00890851952, -0.016478816, -0.00774146477, 0.00780759798, -0.000846114883, -0.0261109099, -0.00609202683, 4.85665078e-05, 0.00229520816, 0.0149538647, -0.00707235327, 0.00876069255, -0.0135300579, -0.0120051056, 0.00158622221, -0.00446204, 0.0127131194, 0.0203689989, 0.00424029958, -0.00472268229, 0.0143781174, 0.0140513424, -0.0105657382, 0.00542291533, -0.0324596912, -0.0188596081, 0.00464487867, 0.00429476239, -0.00480826665, 0.00575747108, -0.020493485, 0.0141524868, 0.00811492279, 0.00442702835, 0.0153973456, 0.00750805391, -0.00350505509, 0.00442702835, 0.0317283347, 0.00679226, -0.0222985297, 0.0067844796, -0.0110092191, -0.0205246061, -0.0137945898, 0.0205246061, 0.0050300071, 0.00200733449, 0.00934422, -0.00294486876, -0.0166344233, -0.00955429, -0.00540346466, 0.0188596081, 0.00430643279, -0.000512531667, -1.65788679e-05, 0.00479659578, 0.0159497522, 0.0322418399, 0.0213648863, 0.0124874888, -0.0027095126, 0.00872179121, -0.00223491038, 0.0103323264, 0.019155262, -0.0094998274, 0.00164457504, -0.00462153787, -0.00775313517, -0.00185464486, -0.0128765069, 0.00543847634, -0.00491719181, -0.0146893319, -0.0191708226, 0.0146348691, -0.0151250325, -0.00365288206, 0.0183461048, -0.0168989561, -0.0137556884, 0.00456318492, -0.000199250324, 0.00813048333, -0.0226253066, 0.00204234617, -0.00515060266, 0.00151619897, 0.00524785742, 0.0292230565, 0.00440757768, -0.0300166551, 0.0110714613, 0.0114760408, -0.0176925529, 0.00860508531, -0.00822384749, -0.0192486271, 0.0109391958, 0.00315493857, 0.000503778749, 0.0117094517, -0.0177236758, -0.00627097534, -0.0107524665, -0.0126975579, -0.000726978, 0.00161442603, -0.0121684931, -0.00255585043, -0.0221584849, -0.0145181641, -0.0203534383, 0.000377834047, 0.0183305442, 0.0151328128, 0.00423640944, -0.0159264095, -0.0212092791, -0.00328720477, 0.0242591836, 0.00713070575, 0.023232175, 0.014455921, -0.0185172725, -0.0222362876, 0.0180193298, -0.0103167659, 0.00401855912, 0.0101300376, -0.0116549889, 0.0103790089, -0.00996664912, 0.0200111028, 0.00522840628, 0.0106202, 0.000868483447, -0.019155262, 0.000750805368, 0.0126975579, 0.00660942122, 0.00921195373, 0.0173813384, -0.00435311487, 0.013413352, -0.00755084585, 0.0131643806, -0.00267255586, -0.0191397015, -0.00593641959, -0.00700622, 0.00815382414, -9.93212452e-05, -0.0182994213, -0.0077336845, -0.00877625309, -0.0296276361, 0.0133433286, -0.00805268, 0.00626319507, -0.00757029653, 0.00814604387, -0.0133199878, 0.0021804478, -0.0121918349, -0.0132110622, -0.00162804173, -0.0131254783, -0.00185658992, 0.0179104041, 0.00177489617, 0.0103167659, -0.00739523862, 0.0094998274, -0.00399132818, 0.0121918349, 0.0209603067, 0.0120984698, -0.00957763102, 0.0187662449, -0.00975658, 0.0305924, -0.00831721164, -0.0123630026, 0.0139424168, -0.0283360947, -0.0073291054, -0.00238273735, 0.00244887033, 0.000713362359, -0.00669889571, 0.0163076483, -0.008418357, -0.00521284575, 0.00200927956, -0.0073291054, 0.00290791201, 0.010589079, 0.0239946507, -0.0408313647, -0.00209875382, -0.0153817851, 0.0102778645, -0.0168055911, 0.00960875303, 0.00277953595, -0.00630598702, 0.0101066958, -0.000997832, 0.0249127336, -0.00354590197, 0.0145959677, -0.0044970517, -0.0156074157, -0.00758974766, 0.0102700843, -0.00920417346, 0.00987328496, -0.0178948436, -0.0047382433, -0.0161676016, 0.0180193298, -0.0293008611, 0.0100755747, 0.00764421, -0.00607646629, -0.00716182729, -0.00988106523, -0.012790923, -0.0112270694, -0.000326046, 0.0300010927, 0.000617566577, 0.0153740039, 0.0216138586, 0.000151230881, -0.0235745106, 0.0186728798, -0.00645381398, -0.0292230565, 0.00564854592, 0.0102856448, -0.00348754926, 0.00432588393, -0.0196220838, -0.00623596366, 0.0124874888, 0.00783482939, 0.00298377057, -0.00741079915, -0.0106435418, -0.0138723934, -0.00600644294, 0.00607646629, 0.00387267745, 0.0174124595, -0.00122151757, -0.0134911556, 0.0100444537, 0.00969433691, 0.0140513424, -0.0207735784, -0.0159497522, -0.0191085804, 0.00426364085, 0.00534900185, -0.000359355676, 0.00255974056, -0.0119739845, -0.0103167659, 0.0113126533, -0.0120984698, -0.0132110622, 0.00291374722, 0.00651216693, -0.00147729705, -0.0636433959, 0.0103712287, 0.0268422645, 0.023201054, 0.0157007799, -0.00491719181, -0.00188187615, 0.00686228322, 0.0118806195, 0.00962431356, 0.000747401442, -0.0162454061, -0.010736906, 0.00356729818, 0.0193886738, 0.00335528306, 0.020851383, 0.00301683717, 0.0175836291, -0.0147282341, 0.0050144461, -0.012907628, -0.00309853093, 0.0101689389, -0.0145026036, -0.00754695572, -0.00275035948, 0.00806046, 0.00187020563, -0.00985772442, -0.00985772442, 0.0159030687, 0.027246844, -0.0221584849, 0.00487050926, 0.00853506196, -0.0155140506, -0.000124729, 0.00180018228, 0.0155762937, -0.00587806711, -0.00990440696, 0.00897854287, -0.03057684, 0.00971767772, 0.0126664368, 0.0204779245, 0.0282427315, 0.00491330167, 0.00905634649, -0.00629042648, 0.0140202204, -0.0020209502, 0.0147904772, -0.00120498426, 0.00968655664, 0.0110325599, -0.00984994415, 0.0223140921, 0.0120051056, -0.0138490526, -0.0196687672, 0.0187662449, -0.0226253066, 0.0150394486, 0.017459143, -0.0178948436, 0.0133355483, -0.00759752793, 0.000480680785, 0.0159653127, 0.0154518085, 0.00212014979, 0.0189374126, 0.000911275449, -0.00155121053, -0.00434922474, -0.00430643279, -0.0102156214, 0.0194976, 0.00734466594, -0.00395242637, 0.00645381398, -0.00368789374, 0.00483160745, -0.015436247, -0.0209758691, -0.00710347481, -0.0212559607, -0.00651605707, 0.00830165111, -0.00566021679, -0.00658997055, 0.0201355889, -0.00664832303, 0.0132966461, -0.00295653939, -0.0212092791, -0.0118183764, 0.00761697907, 0.0239946507, -0.0125108296, 0.0158875082, -0.00680393074, 0.0225941837, -0.00792430341, -0.0260019843, -0.00950760767, -0.0073291054, 0.0103089856, 0.031323757, -0.0135456184, 0.00378514826, -0.00267644599, 0.0238857251, 0.018112693, 0.00519339461, 0.00292152772, -0.000496241497, -0.00417805696, -0.0138490526, -0.0181904975, -0.00179823721, 0.0110559007, 0.00633710856, 0.0232944172, -0.00636823, -0.00577692222, -0.0078698406, -0.00592085905, 0.00223685545, 0.0269978717, 0.0086906692, -0.0317438953, 0.00193731126, 0.0051661632, -0.00478492538, -0.000516908127, -0.0132032819, -0.0128220441, -0.0172568522, 0.00369567401, 0.0149772055, -0.00310631143, 0.000997832, -0.0243681073, -0.00756251626, 0.00178753922, -0.0129698711, 0.00614648964, -0.00782704912, -0.0132810855, -0.0119739845, -0.0193731133, -0.00614259951, -0.00553184049, 0.0167277884, 0.0117172319, 0.00521284575, -0.0203223173, -0.0115149422, 0.00261420314, 0.0018254685, 0.0077181235, -0.00806046, -0.0078698406, -0.0102078412, -0.0125497309, -0.00091419305, -0.0129465302, 0.00290207681, 0.0137245664, -0.0111881671, 0.030545719, 0.012790923, 0.00629431661, -0.0163387693, 0.00221545948, 0.015693, 0.00153467734, 0.0187818054, -0.00844169781, -0.00862064585, 0.00211431459, 0.000504751282, -0.00732132513, 0.00436867587, 0.0100989155, 0.0151405931, 0.00229520816, 0.0126897776, 0.00819272641, -0.0152572989, -0.00704512186, 0.0162609667, -0.0207268968, -0.00480437651, -0.0031140917, -0.00106882781, -0.0129231885, 0.00831721164, -0.00197718572, -0.000522743387, -0.0167900305, 0.00635266909, -0.0040535708, -0.0147671355, 0.00180504506, 0.00656273915, -0.0175836291, -0.00505334791, 0.0250527803, 0.00730965426, -0.0207113363, -0.0119428625, 0.0101144761, -0.0404579043, 0.00537623325, -0.00469545135, 0.00424419, 0.0403956622, -0.0250060987, 0.0424808, -0.00511170086, 0.0216138586, -0.00742635969, 0.0409869701, 0.0103478879, 0.00330665568, -0.00297404523, 0.00425975071, 0.0173813384, 0.0111648263, -0.0129465302, 0.0211003534, 0.000922945968, -0.00519728474, 0.0252861921, -0.00426753098, 0.012433026, 0.032272961, 0.00725519191, -0.0347626768, 0.00998999085, -0.00377736799, -0.00981104188, 0.0249438547, -0.0173968989, 0.00982660335, -0.0136856651, -0.0076208692, 0.0306857657, 0.0138879539, 0.00807602052, 0.014751575, -0.00967877638, -0.00285928464, 0.00552406, 0.00856618397, 0.041702766, 0.00900188368, -0.00631765788, 0.00473435316, 0.00851172116, 0.00114663155, -0.00634488882, 0.00342919654, -0.0267955828, -0.000393881055, 0.0085506225, 0.00246637617, -0.00378903863, -0.02082026, 0.00905634649, -0.0027231283, -0.0119117415, -0.00261225807, 0.0252083875, -0.00823162775, -0.00552795036, 0.0192019455, -0.0355718359, -0.0280560013, -0.00571467914, -0.0176925529, -0.010915854, 0.00171070814, -0.0169456378, 0.00354979234, 0.00748860277, 0.0113515547, -0.00129640359, 0.00497554429, 0.0143781174, -0.0220339987, -0.0139268562, 0.00525174756, -0.0133588891, -0.0201822706, -0.0127753615, -0.00194217404, -0.0166966673, -0.00263948925, 0.00159594766, -0.00920417346, -0.0200889073, 0.00845725834, -0.0241969395, -0.0130321141, 0.00702567119, -0.0112815313, 0.0175991897, -0.0208669435, 0.0118105961, -0.00600644294, 0.0154907098, -0.0188907292, -0.0106046395, -0.00767533155, -0.00710347481, -0.0151483733, 0.00208513835, -0.0157552417, -0.00701789046, -0.00201511499, 0.00807602052, 0.0327397808, 0.0104645928, 0.0249127336, -0.018439468, 0.0156696588, 0.00238079228, -0.0147593552, 0.0123941237, 0.00187409576, -0.000120352546, -0.00585861597, 0.00850394089, -0.00174377463, -0.0184239075, -0.00959319156, -0.011927302, -0.00571467914, -0.00998999085, 0.0190463383, -0.00273868907, 0.00160372804, 0.0106202, 0.0120051056, -0.00488607027, -2.67754021e-05, -0.00427142112, -0.0102234017, 0.00661331136, 0.00339613, -0.021115914, -0.0352917425, -0.00566799706, 0.0165255, -0.00887739845, 0.0028495593, -0.0234811455, -0.0259708632, -0.0240880158, 0.00924307574, 0.00631765788, -0.00767533155, -0.0102389622, -0.00642658258, -0.0173190963, 0.0108847329, 0.00948426686, -0.000597143138, 0.0783638507, 0.00510781072, 0.00105229462, -0.0133199878, 0.0192330666, -0.0121684931, -0.0113126533, 0.046339862, 0.00239635282, 0.0202756356, -0.000647229259, 0.00530621, 0.00724352151, 0.00546959788, -0.00327164424, 0.0117872553, -0.0133355483, 0.0151328128, 0.0010270084, -0.0028437241, 0.0251305848, -0.0132032819, 0.00455540465, -0.0173035357, -0.00915749185, -0.0257996954, -0.014276973, 0.0132577447, -0.00926641654, 0.00736800721, -0.0136545431, -0.00123221555, 0.0131254783, -0.00442313822, -0.0184861515, 0.0103945695, -0.00194022886, 0.0111181438, 0.000788734644, -0.00769867282, 0.018112693, 0.0310281012, 0.0159653127, -0.00312381727, 0.0140435621, 0.00318800518, -0.0194976, -0.00569133833, 0.00725908205, -0.0127987033, -0.000831040379, 0.00167277886, 0.0128531652, -0.0159264095, -0.00659775082, 0.0128609464, 0.0227031093, -0.00316855428, -0.00439201714, 0.00977214053, -0.00653939787, 0.009250856, 0.0245859586, 0.000305136258, 0.0151483733, -0.00653550774, -0.0028690102, 0.00208124798, -0.00683116168, 0.01507835, 0.0161831621, -0.0168055911, 0.0104179112, -0.0270289928, 0.0128842872, 0.00872179121, -0.0216138586, 0.0213337652, -0.000430351531, -0.0258308165, -0.0080215577, -0.0211625975, -0.00360036455, 0.0020462363, -0.00882293563, 0.00851172116, -0.0103945695, -0.0115227224, 0.0168211535, -0.00962431356, 0.000757613219, 0.020462364, -0.0290052071, -0.000682727143, -0.0093597807, 0.00972545799, 0.000547543284, -0.000783871918, 0.0137167862, -0.0115071619, 0.000261371693, 0.0107991491, 0.000252132508, 0.0047654747, 0.0014345051, 0.0251150224, -0.0134522542, 0.00578470249, 0.0171168055, 0.00541513506, 0.00473046303, -0.00953094941, -0.00428698212, 0.00355562754, 0.0147282341, 0.0254573599, 0.0127286799, 0.0214426909, -0.0143469963, -0.0108380504, 0.00150841859, 0.001676669, -0.0302811861, -0.00642658258, -0.0161053594, 0.0101222573, 0.0132888658, 0.0080215577, 0.0193575528, 0.00526341796, 0.0268889461, 0.0145881874, 0.014129146, 0.000605896057, 0.0180037674, 0.0166811068, -0.00857396424, -0.00650438666, 0.0169145167, 0.0154440273, -0.0032735893, 0.00318217, 0.00226408662, 0.0270134322, -0.00134114071, -0.00221156911, 0.022516381, -0.0157007799, -0.0177392364, 0.0103089856, -0.0106591024, -0.0172257312, 0.0183149837, 0.00118747842, -0.0109625366, 0.00921195373, -0.00813048333, -0.0165099371, 0.016836714, -0.00827831, -0.0193731133, 0.00274841441, -0.000454422028, 0.00383572071, 0.00911859, -0.00340196537, 0.0221118014, 0.0213182047, -0.00101533788, 0.0165410601, 0.0326775387, 0.00571856927, 0.0110325599, 0.00978770107, -0.000500374823, -0.00678836973, -0.0129465302, 0.0047654747, 0.0160897989, -0.00865176786, 0.00834833365, -0.00352645107, -0.0145648466, 0.0426675305, -0.016152041, -0.0159964338, 0.00170487282, -0.00796709582, 0.0311837085, 0.0185172725, -0.0159186292, 0.0061270385, -0.00616983091, -0.00822384749, -0.0243214257, -0.0242280606, -0.00886961818, -0.0239168461, 0.0158330463, -0.0170078818, 0.00321912672, 0.00438034628, 0.00166986114, 0.000455394591, -0.0175525062, 0.036878936, 0.0185639542, -0.00695175771, -0.0153506631, 0.00617372105, -0.00302072731]
17 Mar, 2023
Cyclic shifts of integer N by another integer m 17 Mar, 2023 Given an integer N represented as a binary representation of X = 16 bits. We are also given a number ‘m’ and a character c which is either L or R. The task is to determine a number M that is generated after cyclically shifting the binary representation of N by m positions either left if c = L or right if c = R.Examples: Input : N = 7881, m = 5, c = L Output : 55587 Explanation: N in binary is 0001 1110 1100 1001 and shifting it left by 5 positions, it becomes 1101 1001 0010 0011 which in the decimal system is 55587.Input : N = 7881, m = 3, c = R Output : 9177 Explanation: N in binary is 0001 1110 1100 1001 and shifted 3 positions to right, it becomes 0010 0011 1101 1001 which in the decimal system is 9177. Approach:To solve the problem mentioned above we observe that we have to right shift the number by m if the char is R, else we will do a left shift by m if the char is L where left shifts is equivalent to multiplying a number by 2, right shifts is equivalent to dividing a number by 2.Below is the implementation of the above approach: C++ // C++ implementation of the approach #include<bits/stdc++.h> using namespace std; // Cyclic shifts of integer N by another integer m void Count(int N, int m, char turn) { // str represents bitwise representation of N string str = bitset<16>(N).to_string(); m%=(int)str.size(); // rotate the string by a specific count if(turn=='R') str = str.substr((int)str.size()-m) + str.substr(0,(int)str.size()); else str = str.substr(m) + str.substr(0,m); // printing the number represented by the bitset // in str cout << bitset<16> (str).to_ulong() << '\n'; } int main() { int N = 7881 ; int m = 5; char turn = 'L'; Count(N,m,turn); } Java import java.math.*; public class CyclicShift { static int N = 7881; static int count = 5; static char turn = 'L'; public static void main(String[] args) { Count(N, count, turn); } static void Count(int N, int count, char turn) { // Convert N into hexadecimal number and // remove the initial zeros in it String N_hex = Integer.toHexString(N); // Convert hexadecimal term binary // string of length = 16 with padded 0s String S = String.format("%16s", Integer.toBinaryString(Integer.parseInt(N_hex, 16))).replace(' ', '0'); // rotate the string by a specific count count = count % S.length(); if (turn == 'R') { S = S.substring(S.length() - count) + S.substring(0, S.length() - count); } else { S = S.substring(count) + S.substring(0, count); } // Convert the rotated binary string // in decimal form, here 2 means in binary form. System.out.println(Integer.parseInt(S, 2)); } } Python3 # Python implementation to make # Cyclic shifts of integer N by another integer m def Count(N, count, turn): # Convert N into hexadecimal number and # remove the initial zeros in it N = hex(int(N)).split('x')[-1] # Convert hexadecimal term binary # string of length = 16 with padded 0s S = ( bin(int(N, 16))[2:] ).zfill(16) # rotate the string by a specific count if(turn == 'R'): S = (S[16 - int(count) : ] + S[0 : 16 - int(count)]) else: S = (S[int(count) : ] + S[0 : int(count)]) # Convert the rotated binary string # in decimal form, here 2 means in binary form. print(int(S, 2)) # driver code N = 7881 count = 5 turn = 'L' Count(N, count, turn) Javascript // Javascript code of above approach function Count(N, count, turn) { // Convert N into hexadecimal number and remove the initial zeros in it N = N.toString(16).replace(/^0+/, ''); // Convert hexadecimal term binary string of length = 16 with padded 0s let S = parseInt(N, 16).toString(2).padStart(16, '0'); // rotate the string by a specific count if (turn === 'R') { S = S.slice(16 - count) + S.slice(0, 16 - count); } else { S = S.slice(count) + S.slice(0, count); } // Convert the rotated binary string in decimal form console.log(parseInt(S, 2)); } // driver code const N = 7881; const count = 5; const turn = 'L'; Count(N, count, turn); // This code is contributed by princekumaras C# // C# program for the above approach using System; public class CyclicShift { static int N = 7881; static int count = 5; static char turn = 'L'; public static void Main(string[] args) { Count(N, count, turn); } static void Count(int N, int count, char turn) { // Convert N into hexadecimal number and // remove the initial zeros in it string N_hex = N.ToString("X"); // Convert hexadecimal term binary // string of length = 16 with padded 0s string S = Convert.ToString(Convert.ToInt32(N_hex, 16), 2).PadLeft(16, '0'); // rotate the string by a specific count count = count % S.Length; if (turn == 'R') { S = S.Substring(S.Length - count) + S.Substring(0, S.Length - count); } else { S = S.Substring(count) + S.Substring(0, count); } // Convert the rotated binary string // in decimal form, here 2 means in binary form. Console.WriteLine(Convert.ToInt32(S, 2)); } } // This code is contributed by princekumaras Output: 55587 Time Complexity: O(n) Auxiliary Space: O(1) Master Data Structures and Algorithms at your own pace with our DSA Self-Paced course. In just 90 days, you’ll cover core concepts, solve real-world problems, and sharpen your problem-solving skills. Take the Three 90 Challenge: complete 90% of the course in 90 days and get a 90% refund. Stay motivated, track progress, and achieve DSA mastery. Start today!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m
https://www.geeksforgeeks.org/cyclic-shifts-of-integer-n-by-another-integer-m?ref=asr10
PHP
Cyclic shifts of integer N by another integer m
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0197948478, -0.00295534288, -0.00535531947, 0.0125949178, 0.0325021595, 0.0195965022, -0.0041784714, 0.0264328, 0.00100660173, 0.0149023328, -0.013831269, -0.00472061476, -0.00766934641, -0.00212394609, -0.0190808047, 0.00280658412, -0.0202179831, 0.0276360922, -0.00872057583, 0.0109420409, 0.0208659116, 0.0159601737, -0.0302013569, 0.0422342978, -0.0233518369, 0.0305980463, -0.00794703, -0.00995031558, -0.00980486255, -0.004571856, -0.00102808909, 0.0221749898, -0.0162246339, -0.036733523, -0.00945445243, -0.00556358183, 0.020667566, 0.0215138383, -0.0672786757, -0.0346442871, -0.00616853451, 0.0159469508, -0.00385450758, 0.00980486255, 0.0038346732, -0.0119536016, -0.00594374351, -0.0256658643, 0.00651233271, -0.000354335352, 0.0186973363, -0.00375202927, 0.0222278815, 0.0462012, -0.00704125315, 0.0121717816, -0.0215535071, 0.0237220805, 0.00652555563, -0.00275203912, 0.0088594174, -0.0168857854, -0.0199535228, -0.0241716634, -0.0170180146, -0.0194113795, -0.0369979851, 0.0312327519, 0.0119271558, -6.91108944e-05, -0.0560655668, 0.0362574942, -0.00774207292, -0.0262609, -0.00931561086, -0.00544457464, 0.0459367409, 0.00634373957, -0.0154576991, 0.0407797657, -0.0469681323, 0.0186312217, -0.0104263443, -0.0453549251, 0.0162246339, -0.00858173426, -0.00898503605, -0.0690241158, 0.00305782119, 0.0344327204, -0.000876024482, -0.0221485421, 0.0116825299, -0.00811231695, 0.0162775256, 0.0230080392, 0.0400392748, -0.00817843247, -0.0251501668, 0.0312856436, 0.0171766914, 0.0273187403, -0.0058115134, -0.00901809335, 0.0279269982, -0.00648258114, -0.00709414529, 0.0155502604, 0.0250311587, 0.032581497, 0.0304658171, 0.0143205207, 0.020231206, 0.0393516794, -0.014875887, -0.0105056819, -0.0061784517, -0.0662737265, 0.00566936564, 0.0381351635, 0.0207733493, 0.0160395112, -0.00230576261, 0.0443235338, -0.00759662, 0.0295402054, -0.00201485632, -0.00587432273, -0.00721976394, -0.00460821902, 0.00715364888, -0.041652482, -0.0021487393, -0.0243700091, -0.00427433802, 0.0445879921, -0.0226906873, 0.0281650126, 0.0371831059, -0.00156279455, -0.00786769111, 0.0015115554, -0.0269749425, 0.000803711126, 0.00775529584, 0.00501152128, 0.0365219563, 0.0643696189, -0.00312889484, 0.017256029, -0.0527333654, -0.0194642711, 0.0274245236, 0.00773546146, 0.00935528055, -0.0108098108, -0.0136990389, 0.0134081328, -0.0371037684, -0.0526011363, -0.0088065248, -0.0219766442, -0.0229419228, -0.00464127678, 0.0055834162, 0.0169122312, 0.0201254226, 0.00539829396, -0.0210113637, 0.0313649811, -0.00384128466, 0.00962635223, 0.0169783458, 0.0199138541, -0.0103403945, 0.0126874791, 0.0195436105, 0.0134015214, 0.04281611, -0.00667100912, -0.0294079762, 0.0140825063, -0.02156673, -0.00897181313, 0.0598209, -0.00772223808, 0.00686274236, -0.00961974, -0.00707431091, -0.0268030427, -0.0476292856, 0.00327600096, 0.0255204104, -0.00241154665, 0.0110213794, -0.00826438144, -0.0595564395, 0.0110213794, 0.0116560841, 0.053844098, -0.0186841134, -0.00351732085, 0.00111403863, 0.0142279593, 0.0138709387, -0.0337186791, -0.0773281679, -0.049083814, 0.0170312375, 0.00994370412, -0.0335864462, 0.0427367724, -0.0277683232, -0.0179436263, 0.0265782513, 0.004195, -0.0295402054, -0.00245617423, 0.0142279593, -0.0179965179, 0.0270410571, -0.0188956819, 0.0364426188, -0.0150742326, -0.0602969304, -0.0439532883, 0.00838338863, 0.00466441689, 0.00116693066, -0.0568589456, 0.0191072505, 0.0319203474, -0.00710075675, 0.0267501511, -0.000466111116, -0.00639993697, -0.00977180526, 0.0385583, -0.0222014356, -0.00557349902, 0.0159998424, 0.0275832, -0.0025421239, -0.0297517739, 0.0033041, 0.00637679687, 0.00989742391, 0.0213551614, 0.010175107, 0.0313649811, 0.0191998109, 0.00299666473, 0.0222543273, 0.016647771, -0.0136197014, -0.00518011441, -0.0217782985, 0.0424194187, 0.0117089758, 0.0177056119, -0.0338773541, -0.00122230209, -0.0241584405, 0.0220956504, 0.0183270928, 0.00979164, 7.44310892e-05, 0.00131899538, 0.020231206, -0.0501152091, 0.0108362576, -0.0321583636, -0.000614456774, -0.0109949335, 0.0108891493, -0.0147568798, -0.0269352719, -0.00982469693, 0.0642638355, -0.00400326634, 0.0122048389, 0.014267629, 0.0404624119, -0.0122246733, -0.016647771, -0.0260361079, -0.0244757924, 0.00899164751, -0.0684952, 0.0184989925, 0.0121585587, -0.0297253281, -0.0145056425, -0.0171502456, 0.0204559974, -0.00367599702, -0.0187766757, -0.0228758082, -0.00220989576, 0.00196031132, -0.018591553, -0.0201122, -0.00443632, -0.010551963, -0.00963296369, -0.0122511191, 0.0048230933, -0.0192394797, -0.0126213636, -0.00814537425, 0.0444822088, -0.0213551614, -0.0196097251, 0.019927077, -0.022611348, -0.0153783616, 0.0265650284, -0.0138048232, -0.0188163444, 0.000416731462, 0.0088924747, 0.00188097323, -0.00587762846, 0.0241584405, 0.025414627, -0.00507102441, -0.0013148631, 0.0234311745, -0.0550606176, -0.0119073214, -0.0328195132, -0.0196361709, -0.00173717306, -0.0322377, -0.0238146428, -0.0238939803, 0.0107767535, 0.0548490472, -0.0309947375, -0.000141734141, -0.0013694081, 0.0348558575, -0.0223733336, 0.0158676133, 0.0205353349, -0.000571068784, 0.00122312852, 0.0173221435, 0.0134411901, 0.00637349114, 0.000767347869, -0.00815859716, 0.0779099762, 0.0115635227, 0.0176527202, -0.012568472, -0.0434772596, -0.0570176207, -0.00370244309, -0.00850239582, -0.00968585536, 0.00302806939, -0.00584126497, 0.00384459039, 0.000780984061, -0.0249650441, -0.00929577649, -0.003102449, 0.00469086319, -0.0173485894, -0.0288526099, -0.0156692676, -0.000510325597, 0.0137651544, -0.0159998424, -0.0132031767, 0.021870859, 0.00591068575, 0.0257584248, 0.0195303876, 0.0202047601, 0.0482639894, -0.00345781725, -0.00151320826, -0.0189485736, -0.00576523272, -0.0164890941, 0.013163507, 0.0127998739, 0.0191998109, -0.027953444, 0.0155634833, -0.0237088576, -0.00154461293, 0.0248592608, 0.0358872525, -0.0223601107, -0.0180229638, -0.00638340833, -0.0561184585, 0.0178378411, -0.0147568798, 0.0225055646, -0.00494540622, -0.0247138068, 0.0173618123, -0.045804508, -0.037606243, 0.0438210592, 0.0367070772, -0.01181476, -0.0168328919, -0.0336657837, 0.00651563844, 0.000974370574, 0.000666522363, -0.0410971157, 0.0168857854, -0.0233253911, -0.0330575258, 0.0120131057, 0.0150610097, -0.00151734042, 0.0351203158, -0.0275567546, 0.0176527202, 0.0163039714, 0.0429218933, 0.0215535071, -0.00322476169, -0.00690902304, -0.00982469693, 0.00973874703, 0.031973239, -0.0190940276, -0.0455136038, -0.00455202162, -0.000517350272, -0.0447466671, -0.0160924047, -0.025586525, 0.0367070772, -0.0424987562, -0.0418111607, -0.0100561, 0.0337715708, -0.0111337751, -0.0289055016, -0.0269352719, -0.00642968901, -0.0442441925, 0.00750405854, 0.00629084744, -0.0351996534, 0.0179039557, -0.0222675502, -0.00308922585, -0.0222411044, 0.0558539964, -0.00264129648, 0.0366806313, 0.00743133202, 0.0224658959, -0.0195171647, 0.0382145, 0.0106114661, -0.00187436177, 0.0119139329, -0.0123172347, 0.00759662, 0.037606243, -0.0368657522, -0.00978502817, 0.000918999256, 0.0265385825, -0.0211700406, 0.00507763634, -0.044773113, -0.00898503605, -0.0191204734, 0.049639184, 0.00440656813, -0.0392194502, -0.00375864073, -0.00899825897, -0.0322112553, 0.0246476922, -0.00566936564, -0.0265385825, -0.0187634528, 0.00332889287, 0.00118676526, 0.0147304339, -0.00651894417, -0.013685816, 0.0243171174, -0.0457251705, 0.00878007896, 0.025414627, 0.0263931286, 0.0110610481, -0.0335335545, 4.21999976e-05, 0.0362839401, -0.00793380663, -0.0560126752, -0.0138048232, 0.00237353053, -0.000761149568, -0.0189617965, 0.00402310118, 0.018591553, 0.00790736079, 0.0501945503, -0.0235369597, 0.00462805387, 0.00142725871, -0.0218973067, -0.0137519315, -0.0186444446, 0.0213948321, 0.0159866195, 0.0726736635, 0.0229683705, -0.0212758239, 0.0169519, 0.0260493308, -0.017256029, 0.00252724788, 0.0279005524, 0.00574539835, 0.0120990546, 0.00772223808, -0.00715364888, -0.0305716, -0.0249518212, 0.0230741538, 0.0136990389, -0.0191072505, 0.0426838771, 0.0156824905, -0.0274245236, -0.00458838465, 0.00658836495, -0.0284559187, 0.00602638721, -0.0289055016, 0.00165205, 0.0261815619, 0.00156692672, 0.00202477351, 0.0299633425, -0.000747926533, 0.00800653268, -0.0327137299, -0.00449582376, 0.0148097724, -0.0348823033, -0.0253485125, 0.0140957292, -0.0041784714, -0.00523961801, -0.0123569034, 0.0445615463, 0.00461813668, -0.0107172504, -0.0215138383, 0.0381351635, 0.0102412216, -0.00750405854, -0.0134081328, 0.0222939961, -0.0149287796, 0.00315203518, 0.0108428691, 0.0559068881, 9.2134942e-06, -0.0287468247, -0.0123635149, 0.0337715708, -0.00476358971, -0.0339302458, -0.00577515, 0.00226774625, -0.0237617511, -0.012859378, -0.0259435475, -0.00513713947, -0.0124560762, 0.0117684798, 0.020958472, 0.0386640839, -0.00774207292, 0.00690902304, -0.000390285422, 0.0159866195, -0.0201518685, -0.0103866747, 0.0222278815, -0.00049627613, -0.0179700721, 0.0626241788, 0.0393252335, -0.0198741853, 0.0218311902, -0.00426442083, -0.00368591421, 0.0373946726, 0.00139585405, -0.0300691258, -0.0266840365, 0.0011181708, 0.0166081022, 0.0053321789, 0.0250576045, 0.0174411517, -0.00488590263, 0.0195568334, -0.0255600791, -0.0504325628, -0.014875887, 0.0100825457, -0.0159866195, 0.0337186791, 0.0146510955, -0.00277022086, -0.0148362182, 0.00288757496, -0.00347765186, -0.03422115, 0.0186444446, -0.0104660131, -0.0204427745, -0.0205485579, -0.0292757452, -0.0196758397, -0.0136064785, 0.0168990083, 0.00354376691, 0.0268294886, -0.0156428218, -0.004195, -0.0107304733, 0.0519664325, 0.000627679809, 0.0224526729, 0.00384128466, -0.0168990083, -0.0170841292, -0.0100957686, -0.00564292, -0.0221617669, 0.0468094572, 0.0208394658, 0.00303963968, -0.000742967939, 0.00682968507, -0.0066908435, -0.0103139486, -0.00448590657, -0.00358013017, 0.0251633897, 0.0297253281, 0.00526275812, 0.0111073293, -0.0250576045, -0.00719331764, 0.0140296146, -0.0284823645, 0.00729910191, -0.0433450304, -0.011146998, 0.0158543903, 0.033295542, -0.0157221593, -0.0231931601, -0.0318939, 0.0365219563, 0.00508755352, 0.00387434219, 0.00576523272, -0.00846272707, 0.0072263754, -0.0132494569, -0.00460160756, 0.00601977576, 0.00968585536, -0.000516110624, -0.0112660052, -0.0345913954, 0.0155105917, -0.018882459, 0.00288592209, 0.0337980166, 0.0042016115, -0.0175072663, -0.00173882593, 0.00439334521, 0.0139238304, 0.0262212306, -0.00300658215, -0.0289848391, -0.0112660052, -0.0280063376, -0.0124494648, 0.0833578631, 0.00408921624, 0.0263534598, -0.0088065248, -0.0144527508, -0.0027619563, -0.00866107177, -0.00515366858, 0.00376525242, 0.0251898356, -0.0143734124, -0.00233551417, -0.00537845958, -0.0282972436, -0.0309153982, -0.0122577306, 0.0152725773, -0.0149023328, -0.00101982465, -0.00749083562, -0.00165700854, 0.00706108753, 0.00576853845, 0.00716026034, 0.000490077829, -0.00507763634, -0.0094280066, 0.0101552727, 0.0159205049, 0.00667431485, 0.0105056819, 0.00482970476, -0.0177320577, -0.0267369282, -0.0279269982, -0.0197551772, 0.0223336648, 0.00480987, 0.0063470453, 0.0163304191, -0.0167271085, 0.030783169, -0.00589746283, -0.0104461787, 0.0535531938, -0.0075371163, 0.0160924047, 0.0284823645, -0.00458177319, -0.00169750396, -0.012409796, -0.00633382192, 0.0202576518, 0.0634175614, -0.00254542963, -0.0243435632, 0.0294873137, -0.00173056149, -0.0112792281, 0.0543730184, -0.0127602052, -0.0424723104, 0.0159337278, 0.0174543746, 0.00854206458, -0.00892553199, 0.00290079787, -0.00439334521, -0.0055007725, -0.019490717, -0.0180494096, 0.00714042597, -0.0111073293, 0.00874041, -0.00508424779, 0.0129188811, 0.0195700563, 0.0395368, 0.0698175, 0.0267501511, 0.00698836101, -0.0121056661, 0.00697513809, 0.0319996849, -0.00700819585, -0.00732554775, -0.0123106232, 0.00195204699, 0.0583399236, -0.000476028392, -0.0369186476, -0.0020594839, 0.0104924589, -0.010333783, -0.0254542958, 0.0372359976, -0.000386979664, -0.0206807889, 0.0151403472, 0.0258906558, 0.00459499611, -0.022743579, 0.00983130839, 0.0143601894, -0.0248328149, -0.0136990389, 0.00975858234, -0.00622803811, -0.00687596574, 0.0301484652, 0.00349087478, -0.014571758, 0.00532556744, 0.0250576045, 0.00952717941, -0.00481648184, -0.00253385934, 0.0141089521, -0.0263666827, -0.0248592608, -0.00582143059, 0.000621068291, -0.0327137299, 0.020231206, -0.000752471969, 0.0258774329, -0.00918338075, -0.0133882985, -0.000151238186, 0.0151535701, 0.00244791, -0.0115767457, -0.00411235634, 0.0204956662, 0.0076429, 0.00656853057, -0.00729249045, 0.0160924047, -0.0207469035, -0.00193386537, 0.00209584716, -0.020971695, -0.00958007108, 0.0202973206, -0.0302806944, -0.00799331, 0.0528391525, 0.0159337278, 0.00453218678, -0.0217254069, 0.0104924589, 0.0281385668, -0.00251567783, 0.0262873452, -0.0496920757, -0.00378178107, -0.0116362497, -0.0220692046, -0.0364690647, 0.0187502299, -0.0199403, -0.0119668245, -0.0173750352, 0.0213816091, -0.0232989453, 0.0302542485, 0.00495201768, 0.0121519472, -0.0147833256, -0.00339170219, 0.006095808, -0.00296526, 0.023642743, 0.011827983, -0.00950073358, 0.00920321513, -0.00445946027, -0.0266443659, -0.0257055331, -0.0327930674, 0.00725943269, -0.00652886136, -0.0568589456, -0.00794703, -0.0545316972, 0.00422475208, 0.0204956662, -0.0137783773, -0.0312063061, 0.0279798899, -0.00928916503, 0.00315038231, -0.0478672981, -0.00716026034, 0.0231402684, 0.0135800317, 0.00420822296, 0.014267629, 0.0494540595, 0.0138841616, -0.0145849809, 0.0318939, 0.0295137595, 0.0291699618, 0.0170312375, -0.00814537425, -0.00467764027, 0.00895859, -0.0256923102, 0.0137916, 0.0175204892, -0.018591553, 0.000173242108, 0.0239865407, 0.0131767299, -0.00954701379, 0.0255733021, -0.0204956662, 0.0130312769, -0.0048825969, 0.00969907828, -0.0467565656, -0.01352714, 0.00979164, 0.0111866668, -0.0063470453, 0.0203237683, -0.0199403, -0.00561977969, 0.000855363498, -0.00461813668, -0.0140560605, -0.00609250227, -0.0509085916, -0.019490717, -0.00715364888, 0.00835033134, 0.0192659274, -0.0147039881, -0.0098775886, 0.0238278657, -0.00643630046, 0.00777513, -0.00567267183, 0.0094280066, -0.00840322301, -0.0349880867, 0.00647266395, -0.0335864462, 0.0165287629, 0.0159601737, -0.0346178412, -0.00956023671, -0.00248757889, 0.0357550196, 0.014717211, -0.0282707978, -0.00262311473, 0.00804620236, -0.0330839716, -0.0149948942, 0.01502134, -0.029302191, -0.0199931916, -0.00786108, 0.0282707978, -0.0129188811, 0.036416173, 0.0415995903, -0.0235105138, 0.0351996534, -0.02243945, -0.0116230268, 0.00470408611, 0.0321848094, 0.00512061082, 0.000392144924, 0.0117420331, 0.00105370872, 0.0147965495, 0.0293550845, 0.0180758554, -0.0218840819, -0.00785446819, -0.0129519394, -0.0156428218, -0.0248989295, 0.0103403945, -0.0363897271, -0.00983792, 0.0207072347, 0.00990403537, -0.0449053459, -0.0301484652, -0.0358872525, -0.0486342348, -0.00413219072, 0.0127602052, 0.00399334915, 0.00716026034, -0.0140560605, 0.0154312532, 0.0304129254, -0.0165816545, -0.0224923417, -0.0153519157, -0.00769579224, 0.0226774625, -0.00901809335, 0.000924784341, -0.0255733021, -0.0250443816, 0.00727926753, 0.0125883063, 0.0285617039, -0.0147436569, -0.0250047129, -0.0129056582, -0.0379235931, 0.00049958186, -0.00218510255, -0.0111800553, 0.00246939715, 0.00524292374, -0.0245551318, -9.63833518e-05, 0.0081519857, -0.00917015783, 0.0187370069, 0.0144527508, -0.0111403866, 0.0154973688, -0.0172295831, -0.00912387762, 0.0128659895, 0.0330839716, 0.00278179091, -0.0116031915, -0.0116494726, 0.00647596968, -0.0147568798, 0.0127205364, -0.024541907, -0.01651554, -0.00248096744, 0.00361979916, 0.0184593238, -0.0152858, 0.0110147679, -0.0161717422, -5.46482224e-05, 0.00191403076, -0.01814197, 0.0246609151, 0.00724621, -0.00632390473, -0.00979825109, -0.006095808, 0.0132825142, 0.0144791966, 0.00733215967, -0.0167138856, 0.00191403076, -0.00359996478, -0.00853545312, -0.0184461, -0.0195965022, -0.00466772262, -0.0204163287, 0.00557349902, -0.00392062264, -0.00203799643, -0.0102346102, 0.0130114425, -0.00686274236, -0.0215402842, -0.0211568177, 0.0314443186, -0.00517019723, -0.0142015135, 0.0197287314, 0.00292228535, 0.00508094206, -0.00229584519, -0.0314178728, -0.00192890665, 0.0148891099, -0.0338773541, 0.0173485894, 0.041652482, -0.0194378253, 0.023774974, 0.0888586342, -0.00333715742, -0.0168725625, 0.00768918078, 0.0262873452, -0.0208923575, -0.0182213094, 0.0111271637, -0.0110346023, 0.0203237683, -0.000424376, -0.0278476607, 0.0366277397, 0.00435698219, -0.0104263443, -0.017983295, 0.00866768323, 0.00486606779, 0.00590407429, -0.0264063533, 0.00543135172, 0.0166081022, 0.0152461315, 0.00503135566, 0.00381483859, 0.0017057684, 0.00328591815, 0.0273980778, -0.0326079428, -0.00224956474, 0.0343798287, 0.00971891265, -0.0246344693, 0.0140957292, -0.00325947208, 0.00347434613, -0.0168461148, -0.00273385737, -0.0307038315, -0.0140031688, -0.0202840976, 0.0197948478, -0.00495862914, 0.0162246339, 0.0163833108, -0.00898503605, 0.00115122832, 0.0168196689, -0.00026673291, -0.00897842459, 0.0152593544, 0.0254014041, 0.000320864609, 0.016343642, 0.0223204419, 0.00866768323, -0.0143998591, -0.0104329558, -0.0102279987, 0.00319996849, 0.00591399148, -0.0169386771, 0.00383136724, 0.00580490148, 0.0152196856, -0.00380822713, -0.0253881812, -0.00772223808, 0.0282443501, 0.0324492678, -0.0531565025, 0.0190014672, 0.0100032073, -0.000675199961, 0.0168857854, 0.00712059112, -0.00829082727, 0.00959990546, -0.00626440113, -0.00148015074, -0.00812554, -0.000489664613, -0.0211832635, 0.0224130023, 0.00200328603, 0.00324955489, -0.0100693228, -0.0123238461, 0.00435367646, -0.00310575473, 0.00209584716, 0.0128263207, -0.0146643193, -0.0298575591, 0.0216592923, 0.00910404325, 0.0177320577, 0.00269418838, 0.0132692913, -0.00560655678, -0.022598125, -0.000735943206, -0.011378401, -0.009143712, 0.0170444604, 0.0128726009, 0.0182345323, -0.00729910191, 0.0038346732, 0.0118940985, 0.00458507892, 0.0381616093, 0.03356, -0.0113188969, 0.0211435948, -0.0053916825, 0.00495201768, -0.00716026034, 0.010175107, -0.000972717709, -0.0132428454, 0.010261056, 0.00623464957, -0.0105255162, -0.00965940952, -0.00459830184, 0.0124230189, -0.0132164, 0.00221981294, -0.0313649811, -0.0212361552, 0.0183006469, -0.0126544209, -0.0216857381, 0.00796686392, -0.00844950415, 0.0148229953, 0.00631068181, -0.00356360129, 0.0015512245, 0.0230344851, 0.00679662731, -0.025414627, -0.014571758, -0.00785446819, -0.0108362576, -0.0119205443, 0.0133354068, 0.0390607752, 0.015166793, -0.0103668403, 0.002231383, 0.000820653106, 0.00740488619, 0.0152593544, -0.0227171332, 0.0206014514, 0.024237778, 0.00590076856, -0.0168990083, 0.0185122155, -0.00826438144, 0.00413219072, 0.0128263207, -0.00315203518, -0.00544788036, -0.000882635941, -0.00889908615, -0.0254542958, -0.0166742168, 0.0114841852, -0.00487929117, 0.00615861733, 0.00261485041, 0.0318939, 0.0115370769, 0.0322905928, -0.00690241158, 0.0220427588, 0.0406210907, -0.0239865407, 0.00755695067, -0.0102808904, -0.0226906873, -0.0243171174, -0.00955362525, 0.00936850347, 0.00122478139, -0.0173089206, -0.00598341227, 0.00348095759, 0.0282972436, 0.00777513, -0.0189221278, 0.00306277978, 0.0133486297, -0.0115172425, -0.00767595787, -0.00983130839, -0.00905115064, -0.026089, -0.0281385668, -0.0299633425, 0.0102941142, -0.00496193487, -0.0010859397, -0.00316195237, -0.000558672182, 0.00817843247, 0.00220328406, 0.004796647, -0.000756190915, 0.0220692046, -0.0171238, -0.000647514302, 0.00239501777, 0.0110081565, 0.0432656929, -0.00723298686, 0.00304955686, -0.010783365, 0.0337715708, -0.020958472, -0.0133684641, -0.0234443974, -0.0395368, 0.0334013253, -0.00591399148, -0.0154048074, 0.0270410571, -0.0448260047, 0.0527069196, 0.00483301049, 0.0092296619, -0.0026842712, -0.0138709387, -0.0159337278, -0.032264147, -0.0219634213, 0.0227039102, 0.0212229323, 0.0264063533, -0.00849578436, 0.0128197093, 0.0220692046, -5.38734384e-05, 0.0110742711, 0.00780157652, -0.0163304191, 0.0167667773, 0.0197287314, 0.00140494492, 0.00439334521, 0.00223468873, -0.0105916318, 0.0215931758, -0.0029338554, 0.0286145955, -0.0251766127, -0.0282443501, 0.0430805683, 0.00316195237, -0.0283501353, 0.0160527341, 0.00913710054, -0.0129453279, -0.0369186476, -0.00740488619, -0.0168990083, 0.00361979916, -0.0248857066, 0.00787430257, -0.00015981248, -0.000410326553, 0.0233121682, -0.0225584563, -0.0186444446, 0.0188427903, 0.0283501353, -0.00841644593, -0.00659828214, 0.0319203474, 0.000985940685, -0.0222146586, -0.0115172425, -0.0274245236, 0.00813876279, 0.0140163917, -0.00123883085, 0.00378178107, 0.00889908615, 0.00134048273, 0.0195303876, 0.012568472, -0.000647101086, 0.0145056425, -0.00854206458, 0.0123833492, -0.00456855027, 0.0280856751, -0.00819165539, 0.00965279806, -0.00964618661, 0.0302542485, 0.012859378, -0.0146907652, 0.0124362418, -0.0549019389, 0.0343004912, 0.000586771115, -0.00672720652, -0.0120990546, -0.00895859, 0.0196758397, -0.000338013226, -0.0205882285, 0.00307104434, -0.0146643193, 0.0124164075, 0.00692224596, 0.00297683035, 0.00500821508, -0.00362310489, -0.00291897962, -0.0195965022, -0.0074511664, 0.00330244703, -0.00658836495, 0.000302063156, 0.0192527045, 0.00136114366, 0.00486606779, 0.0150610097, 0.000953709648, -0.01330896, 0.00793380663, -0.0101684956, 0.000678092532, 0.0152461315, 0.000845446251, 0.00507433, 0.0344591662, -0.000276856794, -0.0052759815, -0.0136329243, -0.0126478095, 0.0113122854, 0.0343533829, 0.00607266789, 0.0304922629, -0.0212229323, -0.0245948, -0.00357682444, 0.00780157652, -0.0160924047, 0.023788197, 0.0140296146, -0.00823132414, 0.00028470796, 0.0170047916, -0.00103965926, -0.00343137118, -0.00573217496, 0.0101486603, 0.00382145, -0.0369979851, 0.00368260848, -0.00813876279, 0.014862664, 0.0218179673, 0.0286145955, 0.00623464957, -0.0326079428, -0.0110610481, 0.00632390473, -0.0026495608, -0.010175107, -0.0159998424, 0.00169419823, -0.0123238461, -0.0179171804, 0.00983792, -0.0113519551, 0.0201254226, -0.00209915289, 0.00522970082, -0.0232328307, 0.00117436866, -0.0158808362, 0.0153651386, 0.00294046709, 0.0229419228, 0.0180890784, 0.00999659579, 0.03004268, -0.00851561874, 0.00436028792, -0.00373219489, 0.00637349114, -0.0220295358, 0.00794703, 0.00215865648, 0.00218510255, -0.000535945175, 0.0113585666, 0.00969246682, -0.0326079428, -0.013831269, 0.0302806944, -0.0131370611, 0.00624456676, 0.0019999803, 0.00684290798, -0.025282396, -0.0204559974, 0.00346442871, 0.00557680475, 0.032581497, -0.0263005681, 0.0231799372, 0.00979825109, -0.00486937352, -0.0345913954, 0.0156957135, 0.0176130496, 0.00613547675, 0.0313120894, 0.0152064627, -0.00888586324, -0.0288526099, 0.000723546604, 0.0126015292, -0.0222543273, -0.00293716136, 0.0336657837, 0.00563961407, 0.0263666827, 0.0074776127, -0.00507763634, 0.00592390867, 0.00383136724, -0.010406509, -0.0165684316, -0.00713381451, -0.00062230794, -0.000433466834, -0.00419169432, -0.00954701379, -0.00271732872, -0.00617184024, -0.000475201959, -0.009593294, -0.00874702167, -0.0034710404, -0.00169254537, 0.00636687968, 0.00169171894, -0.0120064933, -0.0014991588, -0.00066569593, -0.00693546934, -0.00018202301, 0.0292228535, 0.00792058371, 0.0210774783, 0.0303600319, -0.00330079417, -0.0199006312, -0.014862664, 0.0053916825, -0.00599002372, 0.000394417613, -0.0217915215, -0.0117684798, 0.00262807333, 0.00241319952, 0.0228096936, 0.00125783891, 0.012786651, 0.0071668718, 0.00751067, 0.0127800396, 0.00993709266, 0.000563217618, 0.0010859397, 0.0596622229, -0.00171899144, 0.00397020904, -0.00366938557, 0.0293550845, 0.0135205286, 0.0162378568, -0.01181476, 0.00555697037, -0.0178113952, 0.00942139514, 0.00610903092, 0.00100494886, 0.0178907327, 0.00238179485, -0.0116494726, -0.00471069757, -0.0173353665, -0.00194212969, 0.0119800474, 0.004796647, -0.0163039714, 0.0161585193, -0.00168014877, 0.0043702051, -0.0145320892, -0.0262212306, 0.00699497247, -0.00788091403, 0.0147304339, -0.00371236028, 0.00488590263, -0.00677679293, -0.0136064785, 0.0194113795, 0.0128263207, 0.0080726482, 0.0206146743, -0.000756604131, 0.025586525, 0.00557680475, -0.00665778574, -0.00560325058, -0.00263303192, -0.00538837677, 0.00511069363, 0.0193981566, -0.00257683429, -0.0235105138, -0.00667431485, 0.00596027216, 0.0122907888, 0.0102941142, 0.00398343196, -0.030333586, -0.0125949178, 0.0169254541, -0.0139106074, 0.0200328603, 0.0130709466, -0.0164229795, 0.00542143453, -0.000900817628, -0.00879330188, -0.0163568649, 0.0151271243, 0.00493218284, 0.0278212149, -0.0147833256, -0.00469086319, -0.0120924432, -0.00353384973, -0.000712802925, 0.0238146428, 0.0240129866, -0.00959990546, 0.0170312375, 0.00603299867, 0.0140031688, -0.0099304812, -0.0222146586, 0.00393715128, -0.00917676929, -0.0184725467, -0.0039536804, -0.0082709929, 0.00711397966, 0.015325469, 0.0125883063, 0.00257848715, 0.0158411674, -0.0169122312, 0.0123502919, 0.00335368607, -0.00598010654, -0.0335071087, -0.000193386528, -0.0268559344, -0.0331104174, 0.00831727404, 0.00195369986, 0.0236956347, 0.0142808519, -0.0108296461, 0.014426305, -0.00983792, -0.0175601579, -0.00226609339, -0.00484292768, -0.0143072978, -0.00638671406, -0.0144791966, 0.00985775422, 0.00109916274, 0.0175072663, -0.0132164, 0.00642638328, 0.0188163444, -0.00051321811, -0.0108428691, -0.0469152406, 0.00954040233, 0.0235105138, -0.00704786461, -0.0243303403, -0.00653877901, -0.00522308936, -0.0020975, 0.011669307, -0.0130841695, -0.00579167856, 0.0163171943, 0.0282443501, -0.00480987, 0.0133155715, -0.00958668254, 0.0110610481, 0.00342475972, -0.021870859, -0.0096792439, 0.00398673769, -0.00917676929, -0.0134940827, -0.014875887, -0.00545779755, -0.021870859, 0.00364624523, -0.00888586324, -0.01651554, -0.0128329322, -0.00542474026, -0.00388425938, -0.0222278815, 0.0143205207, 0.0146114267, -2.35534881e-05, -0.000979329227, 0.0182477552, -0.0159337278, -0.0177452806, -0.0114907967, 0.0052164779, 0.00185783301, -0.0216063987, -0.0109817106, 0.0190808047, 0.00648258114, 0.00618506316, 0.00770901516, 0.0298046656, -0.0210774783, 0.000701646029, 0.00737844, -0.0199931916, 0.0269484967, 0.0125883063, -0.00148345646, 0.00303302798, 0.0186444446, -0.00998998433, 0.00213551614, 0.0240658801, 0.0259567704, 0.0115833571, 0.00985775422, 0.00519994879, -0.0333748795, -0.0416260362, -0.00757678505, -0.034935195, 0.0304393712, 0.0226642396, 0.00985114276, 0.0132031767, 0.00906437356, -0.00526606385, 0.0134478016, 0.00544126891, -0.00916354638, -0.011365178, 0.00345451152, -0.004462766, -0.0113321198, 0.0155502604, 0.00665448, 0.0161717422, 0.0125750834, -0.00959990546, 0.00364955096, -0.00262807333, -0.0195171647, -0.00478011835, 0.00337021495, 0.0120726088, 0.0149816712, 0.0239600949, -0.00735199405, -0.0294079762, 0.000805777207, 0.0117949257, -0.0204427745, -0.0201254226, 0.0213948321, -0.00737182843, -0.00808587112, 0.017679166, 0.0169519, -0.00375202927, -0.000798339257, -0.0192394797, -0.0114180697, 0.00439995667, 0.0166609939, 0.0155238146, 0.00842305738, -0.0184725467, -0.000691315508, 0.00309749017, 0.0035834359, 0.00508094206, -0.0111668324, -0.032264147, -0.0201783143, -0.00444293162, -0.00578176137, 0.00488920836, 0.0205088891, 0.026022885, -0.00721976394, -3.05265603e-05, 0.00328426529, -0.0142015135, -0.0159469508, 0.00151403469, -0.0049387943, 0.0221220963, -0.0342476, 0.00325120776, 0.00609250227, -0.0346707329, -0.0261022225, 0.0223997794, 0.000790074875, 0.00321815023, 0.0130973924, 0.00256030541, -0.00893214345, -0.0187766757, -0.0100164302, 0.0250179358, 0.0049387943, 0.000457433518, -0.0079866983, -0.0136593701, -0.0126081407, 0.00920321513, -0.0280856751, -0.0167271085, 0.00784124527, 0.00266608945, -0.0238807574, 0.0126808677, 0.00387764792, -0.012118889, -0.00675695855, -0.00512061082, -0.0140692834, 0.0227700248, 0.00496854633, -0.00323963771, 0.011827983, -0.00900487, -0.0136197014, -0.00397020904, -0.00341814826, -0.00169750396, -0.014875887, -0.010551963, -0.0148494411, 0.00731232483, -0.00624126103, 0.00825115852, 0.00465780543, 0.0104858475, 0.00101651892, 0.00343467714, 0.016343642, 0.00506441295, -0.0121519472, 0.0105850203, 0.00017355202, -0.0186576676, 0.0106114661, 0.0316029973, 0.0100428769, -0.0195965022, -0.00947428681, 0.00500821508, -0.0306509379, 0.0229948163, -0.00536854239, -0.00020423354, -0.0064891926, -0.0136593701, -0.000405987754, -0.0154576991, 0.00162725674, -0.0117552569, -0.0128130978, -0.00396690331, 0.011887487, -0.0116428612, -0.00818504393, 0.0261947848, -0.00608258508, -0.0154444762, -0.021262601, 0.0167535543, 0.0116230268, -0.00107354322, 0.00984453131, 0.00241650525, 0.000710323628, 0.0192394797, 0.00956023671, 0.0153783616, 0.00899825897, -0.00458838465, -0.0171899144, -0.0224130023, -0.00975197, 0.00013388299, 0.00823132414, -0.0153651386, 0.000609498122, -0.0060363044, -0.0104990704, 0.00226939912, -0.0118544288, 0.0309682917, -0.00166279357, 0.0191998109, -0.0103602288, 0.0155238146, -0.0149420025, -0.0106643578, 0.00101403962, -0.00133139186, 0.000360533653, 0.0502209961, 0.0178907327, -0.00418508286, -0.0116230268, -0.0181816407, -0.00653877901, -0.00595696643, 0.00831066258, 0.0135205286, 0.0236691888, 0.00246774429, -0.00495532341, -0.00320162158, -0.00874702167, -0.00250245468, -0.00621481519, -0.0175072663, -0.0240129866, 0.000717348303, 0.000811562291, 0.0159205049, 0.00912387762, 0.0126147522, -0.0171634685, -0.0195700563, 0.0124230189, 0.0203237683, 0.0130709466, -0.00519994879, -0.00155700953, 0.0208791345, 0.00325947208, 0.0113850124, 0.0170709062, 0.00359004736, 0.0200989768, 0.012859378, 0.0170973521, -0.000694621296, 0.00868751761, 0.0231931601, 0.00250410754, 0.0114312926, 0.0106445234, -0.0174675975, 0.00740488619, -0.00353715545, 0.00288757496, -0.00054296985, 0.00827760436, -0.0100627113, 0.00351070939, 0.0123701263, 0.00599994091, 0.0270278342, -0.0097651938, -0.0231799372, 0.00528920442, 0.00363302231, 0.0278212149, -0.0244361237, 0.00130411948, 0.0020975, -0.00275534485, -0.0191469193, -0.00279831956, 0.0205882285, 0.00863462593, -0.0156692676, -0.0275567546, 0.0106577463, -0.0225716792, -0.0215799529, 0.0109750992, 0.00805281382, 0.00784785673, -0.00390739972, 0.00267765974, 0.0106709693, 0.00735199405, 0.0108627034, 0.00514705712, 0.0137254847, -0.00561977969, 0.014267629, -0.0121651702, -0.00698836101, 0.0118808756, 0.00913048908, 0.0116494726, -0.00605613878, -0.0165816545, 0.00805281382, -0.0227964707, -0.0115304654, 0.0137783773, 0.0225320105, 0.00132064824, 0.00793380663, -0.0117817027, 0.00132643327, -0.037341781, -0.00704786461, -0.00915032346, 0.00227270508, -0.00250080181, -0.00831066258, -0.0188956819, -0.00824454706, 0.0299633425, 0.00252063642, -0.00850239582, 0.0149552254, 0.028693933, -0.009143712, -0.00677679293, -0.0436094888, -0.0201915372, 0.0035834359, -0.0104858475, 0.0197419543, -0.0107899765, 0.00388095365, 0.000680158613, 0.0053916825, -0.00314707658, 0.0104329558, -0.0133684641, -0.00518672587, 0.000535118743, -0.00136031723, -0.0379764885, -0.00895859, 0.006320599, -0.0191469193, -0.0052495352, 0.0118412059, 0.00604622159, 0.020971695, -0.0103734517, -0.0150081171, -0.00684290798, 0.0222278815, -0.00494871195, 0.0241319947, -0.0145320892, -0.00777513, -0.000846272684, 0.00342806545, 0.00729249045, 0.0133750755, 0.0035239323, 0.0143072978, -0.00149089447, 6.79745426e-05, -0.0169386771, 0.0322112553, 0.00453879824, 0.00568920048, -0.00103718, 0.00150990253, -0.0288526099, 0.0282179043, -0.00869413, -0.00357682444, -0.0245551318, -0.00649911, -0.000962800463, -0.0014793243, 0.00179006509, -0.0103734517, 0.0154444762, 0.0069420808, -0.0125288023, 0.00895197783, 0.0118808756, 0.00103635341, 0.00305451546, -0.00453549251, -0.0343533829, -0.014571758, 0.0154180303, 0.0124031836, 0.00856851134, -0.0175072663, 0.0187502299, 0.00902470481, 0.0211303718, -0.024251001, -0.0316823348, -0.00724621, 0.00215535075, 0.0197419543, -0.00337352068, 0.0290377308, -0.0126940906, -0.0101684956, -0.00144709321, 0.0219237525, -0.0140825063, 0.00492887711, 0.0177717265, 0.0114048468, -0.00241485238, 0.0109486533, -0.0120990546, -0.00435037073, -0.00575531553, -0.0107304733, 0.0117750913, 0.00811231695, -0.0101618841, 0.0208394658, 0.0239072032, -0.029143516, 0.0122709535, 0.0114841852, 0.0162643027, 0.00593713159, -0.00970569, 0.0131568955, -0.00769579224, 0.0108891493, 0.00706108753, 0.00224956474, 0.00844289269, 0.0021437807, -0.00310575473, 0.00776851876, -0.00595696643, -0.00365946814, -0.00578837283, 0.0111932782, 0.0103602288, 0.0201915372, -0.000800818612, 0.00101403962, -0.000287187257, 0.000150618362, -0.00564953126, 0.0172692519, -0.00337186782, -0.0062379553, 0.011219725, 0.00529581588, -0.0160395112, 0.0124825221, -0.00559663912, -0.00548424385, 0.0163700879, 0.0131172268, -0.0127668167, -0.00408260478, 0.00842305738, -0.0129122697, -0.0139634991, -0.00323137315, 0.0139238304, -0.00408260478, -0.0108891493, -0.00408921624, -0.00724621, 0.0181684159, 0.00518672587, -0.0231270455, -0.0140428375, -0.0217518527, -0.0195303876, 0.0221485421, -0.00979825109, -0.0125221908, -0.0266972594, 0.0143866353, -0.00941478368, 0.0209849179, 0.0238014199, 0.00175370183, 0.00549416104, 0.00438342802, 0.0154180303, 0.00205452531, -0.0206543431, 0.0210378096, -0.000124688857, -0.00564953126, 0.00213882187, 0.0146907652, -0.00329252961, 0.00247931457, 0.000161465359, 0.0170312375, -0.0088924747, -0.00414541364, -0.0179965179, 0.00441979151, -0.0137122618, -0.0162775256, 0.0271336176, -0.00798008684, -0.0234179515, -0.00133552414, -0.00237187766, -0.0252691731, -0.02661792, 0.0205485579, -0.000666935579, -0.0262741223, 0.00484292768, -0.00760323135, -0.00133304473, -0.00419169432, 0.00300327642, 0.000620655075, -0.00112147664, -2.54388e-05, -7.30235615e-06, -0.00314872945, -8.11588143e-06, 0.0211568177, 0.0121321119, 0.00878669, 0.00796025246, 0.0157486051, 0.00515036285, 0.00561977969, 0.00739827473, -0.0183799844, -0.00253220648, 0.00837016571, -0.00516358577, 0.00552391261, -0.00115866633, -0.00635365676, 0.018882459, -0.0107569192, -0.0169651229, -0.0146907652, -0.0243303403, 0.00268757693, 0.0146378726, -0.0198609624, -0.026763374, 0.0234443974, -0.0103007257, 0.000874371559, -0.00983130839, -0.0167403314, -0.0035007922, 0.0341153666, 0.0117552569, -0.0138841616, 0.0204956662, -0.00382475578, 0.0414144695, -0.00978502817, 0.0189485736, -0.00818504393, -0.00680323923, -0.0194246024, 0.00436028792, -0.00377516961, 0.0168328919, 0.00321319164, -0.0044892123, 0.00233386131, 0.00881313626, -0.0115172425, 0.00761645427, 0.00936850347, -0.00119255029, -0.0113850124, -0.0264063533, -0.00909082, -0.0302013569, 0.00238179485, 0.0117155872, 0.00497846352, 0.0114114583, -0.0126147522, -0.00848256145, 0.0211700406, -0.00382806151, 0.020072531, 0.00491234846, 0.0261947848, 0.00927594211, 0.0102346102, -0.00622473238, -0.00456193881, -0.0043206187, -0.0116825299, -0.0193584878, 0.0116296383, 0.017851064, 0.0127800396, -0.00594704924, -0.0213287156, -0.0179304034, -0.00414872, 0.0155105917, -0.00454210397, -0.00372227747, 0.0180361867, 0.00432392443, -0.00782141089, 0.00752389291, -0.0320525765, -0.022598125, 0.0134279672, -0.0092296619, 0.000226857272, -0.00820487831, -0.0215270612, 0.0137651544, 0.0108098108, 0.00650241552, -0.000857016363, -0.0053586252, 0.0087734675, -0.00312558911, -0.00975858234, 0.003047904, -0.00306773838, -0.0240658801, 0.0119073214, 0.0211171489, -0.0142940748, 0.00423136353, -0.00270741154, -0.0157486051, 0.0357550196, -0.0149948942, -0.00371897174, -0.0306509379, -0.000980982091, 0.00280327839, 0.0255468562, 0.00345451152, 0.00614208868, -0.00796025246, 0.0426838771, 0.00100990746, 0.0284823645, -0.00378178107, -0.00619167462, -0.00812554, -0.0394839086, -0.00601647, -0.00202642637, -0.00135370577, 0.0121519472, -0.00989742391, 0.0288526099, -0.00758339651, -0.0162775256, -0.00863462593, 0.00506110722, -0.01159658, -0.00379169825, -0.00522308936, -0.0243303403, 0.00441318, 0.00171568559, 0.0221617669, -0.0168461148, 0.00961974, -0.00499168644, 0.0104197329, 0.0214873925, 0.00696852664, 0.0143205207, 0.00195865845, 0.0227303561, -0.0126279751, -0.0141486218, -0.00758339651, -0.013976722, -0.00178510649, 0.00568258902, -0.00896520168, 0.0069156345, 0.00328261242, -0.00178345363, -0.00776851876, 0.00731232483, -0.0160395112, 0.00229584519, 0.0171502456, 0.0058677108, -0.00903131627, -0.0203766599, -0.0167535543, 0.00068263791, 0.00113883184, 0.00090164406, 0.0201122, -0.00547432667, -0.00971891265, -0.00341814826, -0.00220328406, -0.0159469508, -0.00408591051, 0.0166345481, -0.00364624523, 0.00677679293, -0.0368657522, 0.00244956277, 0.00734538259, -0.000977676362, 0.0150742326, -0.0266708136, -0.0258642081, -0.027067503, -0.0161585193, 0.00856851134, 0.00758339651, 0.0190014672, 0.00656191912, -0.000698340242, -0.0088065248, 0.010637912, 0.0011404847, -0.0226377938, -0.0083569428, -0.00228758086, -0.00762306573, 0.00727926753, -0.0111932782, -0.00666109147, -0.00650572125, 0.0225320105, 0.00577515, 0.0135800317, 0.0105784088, -0.0123436805, -0.00220824289, -0.00760323135, -0.00917676929, -0.0105189048, 0.0136064785, 0.0255733021, 0.00133469759, -0.0174147058, 0.0139370533, -0.0226245709, 0.0052759815, 0.00744455494, -0.00704125315, 0.00812554, -0.012641198, -0.0109155951, 0.00651894417, 0.00596357789, 0.013831269, 0.0141089521, 0.00825777, -0.0113188969, 0.00428095, 0.00903792772, -0.0135073056, 0.00677018147, -0.0079866983, 0.00148015074, 0.00973874703, -0.00241154665, -0.0129056582, -0.00430409, -1.53149322e-05, 0.0207072347, -0.00249253749, -0.0431863517, -0.0247270297, 0.00495201768, -0.0238146428, -0.0157221593, 0.0172692519, -0.00298674754, 0.00975858234, -2.14357406e-05, -0.00399996061, -0.0260361079, 0.0121387234, 0.00203964929, 0.00264294934, 0.021870859, -0.00712059112, 0.0228361394, -0.0125288023, 0.0178907327, -0.0243171174, -0.0299633425, -0.0104263443, 0.00675365282, 0.00968585536, -0.0243171174, 0.0127998739, 0.00934866816, -0.00258344575, -0.0180097409, 0.000986767118, -0.0262080077, 0.012786651, 0.0204031058, 0.0120924432, 0.0129453279, 0.00662472844, 0.0136197014, -0.00439334521, 0.00913710054, -0.0175998267, 0.0119403787, -0.00372227747, 0.00925610773, -0.00975197, -0.0058115134, 0.0141486218, -0.0160924047, 0.00513383374, -0.00564292, -0.0167535543, -0.0225716792, -0.00199832744, -0.0131899528, -0.0138973845, 0.00786108, -0.0049982979, -0.00986436568, 0.0191072505, -0.0171634685, 0.0156692676, 0.00532887317, -0.00466111116, 0.0146907652, -0.0074776127, -0.0253881812, -0.0297782198, 0.0097651938, 0.0177452806, 0.00822471268, 0.017242806, -0.00900487, 0.017110575, 0.00625448395, -0.0179568492, 0.00589746283, 0.0017355202, 0.00443962589, 0.0253617354, 0.00872057583, -0.00726604462, -0.0151535701, 0.0128329322, 0.0275832, 0.0186576676, 0.00259666867, -0.0158279445, 0.0220427588, -0.00403301837, -0.0081519857, -0.0129188811, -0.0263666827, -0.0103073372, -0.00176527188, -0.0151271243, -0.0224130023, -0.0119073214, 0.0157221593, 0.0129122697, 0.03509387, 0.00460160756, -0.0130246654, 0.00577515, -0.00517680869, -0.00271567586, -0.0107899765, 0.0048825969, -0.0108759264, -0.00737844, -0.00934866816, 0.00762306573, -0.0287732705, -0.0155502604, -0.0139634991, -0.00353054376, -0.00423797499, 0.000778091548, 0.000848752, -0.0303600319, 0.000464045035, -0.00631729327, 0.0126345865, -0.00191568362, -0.027067503, 0.0150742326, -0.0141882906, 0.00423136353, 0.00683629652, 0.00805281382, -0.00394706847, -0.0260096621, -0.00609250227, 0.0087734675, 0.0213022698, 0.00971230119, -0.00906437356, -0.00679001585, -0.00143221731, -0.0114114583, 0.0146775423, -0.00825777, 0.0236295201, 0.0014842829, -0.00899164751, -0.00152477843, -0.015166793, -0.00120659976, -0.00118511228, 0.0237353034, -0.00533548463, -0.0152593544, -0.00335533894, -0.0190146901, -0.00194047682, 0.00418508286, 0.00416524848, -0.00611564238, 8.51747827e-05, -0.0101089915, 0.00424128072, -0.0111668324, 0.00309087872, -0.0183006469, -0.0268691573, -0.0120197171, 0.00974535849, -0.0068561309, -0.0157882739, 0.00697513809, -0.0211964864, 0.00901809335, -0.000702059246, 0.0116957529, 0.00194708828, -0.0228493623, -0.00973874703, -0.00757678505, -0.0255600791, -0.0142147364, 0.0015537038, -0.00811892841, 0.0020842771, 0.0418905, 0.00466111116, 0.0102147758, 0.00278013805, -0.00194708828, 0.00281319558, 0.0227568019, 0.00281815417, 0.0152329085, 0.0178246181, 5.59911859e-05, -0.0218973067, 0.016211411, 0.00292724394, 0.0141353989, -0.00759000797, -0.0218444131, 0.00866107177, 0.00146527484, -0.0201650914, -0.00843628123, 0.00862140302, -0.00234212587, 0.00470739184, -0.00675365282, 0.0116031915, 0.0167535543, 0.0251898356, -0.0187105611, 0.0152990231, -0.00564622553, 0.00139750692, 0.0455664955, -0.00723298686, 0.00478011835, 0.00908420794, -0.00959990546, 0.00801975559, -0.0125949178, 0.0171634685, 0.00951395649, -0.00713381451, -0.00888586324, 0.0203237683, -0.00733877113, 0.0238278657, 0.00639993697, -0.00770901516, 0.00818504393, 0.0224791188, 0.00181155244, 0.00847595, -0.0120527744, -0.0128395436, 0.00915032346, 0.0254807416, -0.00678340439, -0.0180758554, -0.00241815811, -0.00571564632, -0.00777513, -0.00686274236, -0.0216196217, 0.0203898828, -0.000657018332, -0.00510408217, 0.0241981093, -0.0272922944, -0.00667762058, -0.00862140302, 0.017851064, 0.00816521, -0.0126213636, -0.00501813274, -0.00819826685, -0.002340473, 0.024541907, -0.00348426332, 0.0117750913, 0.0221882127, -0.0369715393, -0.0304922629, -0.0171502456, 0.0103668403, -0.00682307361, -0.0228229165, 0.0149816712, 0.0345385037, 0.016343642, -0.00153056346, -0.00203138497, -0.00359665882, 0.00054710207, -0.00175866042, -0.00331567, -0.00808587112, -0.0155370375, 0.0302806944, -0.0164494254, 0.00161981885, 0.00491565419, -0.00929577649, -0.0100428769, -0.00791397225, 0.0129122697, -0.0108164232, -0.0170576833, 0.0126940906, -0.0122907888, -0.00692885742, -0.0115172425, -0.00799331, 0.0137387086, -0.00338013214, 0.023788197, -0.0116957529, -0.0114312926, 0.00443301443, -0.017692389, -0.0042016115, -0.0238410886, 0.00557019329, -0.00334872748, -0.0166081022, -0.0232328307, -0.0038346732, 0.00813215133, 0.00265947799, -0.0172956977, 0.00250080181, 0.0252956189, 0.0122709535, 0.0043206187, -0.0142544052, 0.0288790558, 0.00702141877, 0.00286443462, 0.00935528055, 0.0250311587, 0.0112593938, 0.00800653268, -0.0310476292, -0.034062475, 0.00416524848, -0.00529581588, -0.00580490148, 0.0162246339, -0.0326872841, -0.0158411674, 0.00166857871, -0.00952056795, 0.0110610481, 0.0100428769, -0.000986767118, -0.0212229323, -0.0126676438, 0.00291236816, 0.00315203518, 0.00335864467, 0.00727265608, 0.00516358577, -0.00450574094, -0.0140825063, -0.0105982432, -0.0103205601, -0.0108759264, 0.0463334285, 0.0106577463, 0.026168339, -0.00739827473, -0.00762967719, 0.0103403945, -0.00811892841, 0.00833710842, -0.0112593938, -0.0288790558, -0.00416855421, 0.0273716319, -0.00872057583, 0.00575531553, -0.0238278657, 0.0212097093, -0.0174543746, -0.00641646609, -0.0110808834, -0.0200460851, 0.0215402842, -0.0111800553, -0.00563300261, 0.0145453122, 0.00677018147, -0.00179998239, -0.0272922944, -0.0337715708, -0.0106643578, -0.011378401, 0.033454217, 0.00587762846, -0.0114577385, 0.0143998591, 0.0106180776, -0.0202576518, 0.019186588, 0.0133949099, -0.00226939912, 0.00240989379, -0.00447598891, 0.0176262725, 0.00320327445, -0.00768918078, -0.00303468085, -0.00986436568, -0.00860818, -0.026922049, 0.0328724049, -0.000854537066, 0.000352475879, 0.0101618841, 0.0335071087, 0.011609803, 0.01330896, 0.0017256029, -1.33392286e-05, -0.0108957607, -0.00220659, -0.0109023722, 0.0153915845, 0.0020346907, -0.00399665488, -0.0064065489, -0.0253088418, 0.00374541781, -0.00952717941, -0.00913048908, 0.0115503, -0.00648588687, 0.0081519857, 0.00361649343, -0.0133618526, -0.00649580406, 0.00124378945, 0.00844950415, -0.00828421582, 0.0107503077, -0.0137783773, -0.0123172347, -0.00682307361, 0.00915032346, 0.00322641456, -0.00334707461, 0.0133221829, -0.0071073682, 0.00845611561, -0.016502317, 0.0071668718, -0.00921643805, -0.00129668147, 0.0082379356, -0.0103800632, 0.0199667457, 0.00510408217, -0.00444293162, 0.00474044913, -0.000341732171, 0.00421483489, 0.0049982979, 0.00459830184, -0.00910404325, -0.0240394343, -0.00425450364, -0.0198345166, 0.0027966667, 0.00550738396, 0.0136329243, 0.0124428533, 0.00337186782, 0.00827760436, -0.0287997182, 0.0114114583, 0.00714042597, -0.0116626956, -0.0240526572, -0.00321815023, -0.00847595, 0.0168461148, 0.0193584878, -0.00633051619, 0.00948751066, -0.0286145955, 0.00509085925, -0.00944784097, 0.00640324317, -0.0156428218, 0.00337847928, 0.00715364888, -0.0137254847, -0.0126213636, 0.00545779755, 0.00575531553, -0.00698836101, -0.00431070151, 0.00789413694, 0.00308592012, -0.00307600293, -0.019622948, 0.0213022698, 0.000313013443, 0.0141221751, -0.014571758, -0.0351732075, -0.0108031994, 0.0103536174, 0.00373550062, -0.0055007725, 0.0104990704, 0.010856092, -0.00953379087, 0.00897842459, 0.00100329588, 0.00266113086, 0.00213055755, -0.00860156864, -0.00603299867, 0.00360327051, 0.0032148445, 0.0139899449, 0.0189485736, -0.000183882497, 0.0171502456, 0.0322905928, 0.00625778968, -0.0166874398, 0.00230410951, 0.0146907652, 0.00176692486, 0.0124560762, 0.0217254069, -0.00324294344, -0.0128197093, -0.00199171598, 0.0190808047, -0.0255600791, -0.00706108753, 0.00389087084, 0.0132692913, -0.0108362576, -0.00957346, 0.0386905298, -0.00258179288, -0.00872057583, 0.0195171647, -0.021870859, -0.0023685717, -0.00676026428, -0.0153651386, 0.0146510955, -0.0334806629, 0.00401318353, -0.00223799446, 0.00803297944, 0.00660158833, 0.0231006, 0.0211303718, -0.00188593194, 0.0378971472, -0.00301484647, 0.0143205207, -0.0133354068, 0.00669745496, -0.00623134384]
06 Sep, 2024
Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts 06 Sep, 2024 Given an array A[] of length N, where N is an even number, the task is to answer Q independent queries where each query consists of a positive integer K representing the number of circular shifts performed on the array and find the sum of elements by performing Bitwise OR operation on the divided array.Note: Each query begins with the original array.Examples: Input: A[] = {12, 23, 4, 21, 22, 76}, Q = 1, K = 2 Output: 117 Explanation: Since K is 2, modified array A[]={22, 76, 12, 23, 4, 21}. Bitwise OR of first half of array = (22 | 76 | 12) = 94 Bitwise OR of second half of array = (21 | 23 | 4) = 23 Sum of OR values is 94 + 23 = 117Input: A[] = {7, 44, 19, 86, 65, 39, 75, 101}, Q = 1, K = 4 Output: 238 Since K is 4, modified array A[]={65, 39, 75, 101, 7, 44, 19, 86}. Bitwise OR of first half of array = 111 Bitwise OR of second half of array = 127 Sum of OR values is 111 + 127 = 238 Naive Approach: To solve the problem mentioned above the simplest approach is to shift each element of the array by K % (N / 2) and then traverse the array to calculate the OR of the two halves for every query. But this method is not efficient and hence can be optimized further.Efficient Approach: To optimize the above mentioned approach we can take the help of Segment Tree data structure. Observation: We can observe that after exactly N / 2 right circular shifts the two halves of the array become the same as in the original array. This effectively reduces the number of rotations to K % (N / 2).Performing a right circular shift is basically shifting the last element of the array to the front. So for any positive integer X performing X right circular shifts is equal to shifting the last X elements of the array to the front.Following are the steps to solve the problem : Construct a segment tree for the original array A[] and assign a variable let’s say i = K % (N / 2).Then for each query we use the segment tree of find the bitwise OR; that is Bitwise OR of i elements from the end OR bitwise OR of the first (N / 2) – i – 1 elements.Then calculate the bitwise OR of elements in range [(N / 2) – i, N – i – 1].Add the two results to get the answer for the ith query.Below is the implementation of the above approach: Python3 # Python3 program to find Bitwise OR of two # equal halves of an array after performing # K right circular shifts MAX = 100005 # Array for storing # the segment tree seg = [0] * (4 * MAX) # Function to build the segment tree def build(node, l, r, a): if (l == r): seg[node] = a[l] else: mid = (l + r) // 2 build(2 * node, l, mid, a) build(2 * node + 1, mid + 1, r, a) seg[node] = (seg[2 * node] | seg[2 * node + 1]) # Function to return the OR # of elements in the range [l, r] def query(node, l, r, start, end, a): # Check for out of bound condition if (l > end or r < start): return 0 if (start <= l and r <= end): return seg[node] # Find middle of the range mid = (l + r) // 2 # Recurse for all the elements in array return ((query(2 * node, l, mid, start, end, a)) | (query(2 * node + 1, mid + 1, r, start, end, a))) # Function to find the OR sum def orsum(a, n, q, k): # Function to build the segment Tree build(1, 0, n - 1, a) # Loop to handle q queries for j in range(q): # Effective number of # right circular shifts i = k[j] % (n // 2) # Calculating the OR of # the two halves of the # array from the segment tree # OR of second half of the # array [n/2-i, n-1-i] sec = query(1, 0, n - 1, n // 2 - i, n - i - 1, a) # OR of first half of the array # [n-i, n-1]OR[0, n/2-1-i] first = (query(1, 0, n - 1, 0, n // 2 - 1 - i, a) | query(1, 0, n - 1, n - i, n - 1, a)) temp = sec + first # Print final answer to the query print(temp) # Driver Code if __name__ == "__main__": a = [ 7, 44, 19, 86, 65, 39, 75, 101 ] n = len(a) q = 2 k = [ 4, 2 ] orsum(a, n, q, k) # This code is contributed by chitranayal Output238 230Time Complexity: O(N + Q*logN) Auxiliary Space: O(4*MAX) Please refer complete article on Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts for more details! Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts
https://www.geeksforgeeks.org/python3-program-to-find-array-sum-using-bitwise-or-after-splitting-given-array-in-two-halves-after-k-circular-shifts?ref=asr10
PHP
Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.014842662, 0.00159318617, -0.0130334813, 0.00982864853, 0.0182247218, 0.0105153983, 0.019494839, 0.0333479904, -0.0446904413, 0.0529314429, -0.0232018121, -0.0130999414, 0.0282970555, -0.0236744154, -0.0352974758, 0.0117412098, -0.0253137536, 0.000357682293, -0.0230984315, -0.0248411521, 0.0232904255, -0.0197163709, -0.0311917439, 0.0238516405, -0.0208240338, 0.0133362422, 0.0033543678, 0.00705949496, -0.0216953941, -0.0143331373, 0.000637828314, 0.00596291, 0.0121399686, -0.0197016038, 0.00811546575, -0.0118002854, -0.0100354115, 0.0130777881, -0.0541129485, -0.00630259281, -0.0362131409, -0.00719610648, -0.0230836626, -0.00326206256, 0.00149811199, 0.0104194013, 0.052517917, -0.0194505323, -0.00115012168, -0.00612536725, -0.00239070249, 0.00674934965, 0.0719536841, 0.0334366038, 0.00361466827, 0.00867668074, -0.0309849791, 0.00992464554, 0.0104489382, 0.024324242, 0.059784174, -0.0216215495, -0.0140525298, 0.000989510794, 0.0456356481, -0.0192733072, -0.0409391634, 0.0337024406, 0.00151288079, 0.00155995635, -0.0243980866, 0.0152118821, -0.0020547118, -0.0228621308, -0.00832961313, 0.00137534621, 0.0139417639, -0.0189483929, 0.00183225644, 0.0600795522, -0.0169250648, 0.0272337, -0.00841822661, -0.031398505, 0.0454584211, -0.0185053293, -0.0337024406, -0.0625016391, 0.0339092053, -0.000896744139, 0.0154629527, -0.0212670974, -0.00604783092, -0.00540538738, -0.0111209201, 0.021178484, 0.0300250072, -0.000863514317, -0.0430954099, 0.0476146676, 0.00967357587, 0.0163638499, -0.0160241667, -0.013830998, 0.0320187956, -0.00686011603, -0.00118704373, 0.00709272455, 0.021902157, 0.0244423933, 0.00539061846, -0.0178702697, -0.0104120169, 0.0265838727, -0.0275438447, -0.0100206425, 0.0177816562, -0.0398462713, -0.000106727784, -0.00673458073, 0.0245457757, 0.0279426035, -0.00909020752, 0.00399496499, -0.0123688849, 0.0215033982, 0.0217987746, -0.00098028034, 0.0111061512, 0.0103381723, 0.0179441143, -0.0238516405, -0.0186234787, -0.0171613656, 0.00518016284, 0.00802685227, 0.0296557862, 0.0576574653, 0.0186530165, 0.0295967106, 0.0105523206, -0.0061327517, 0.0349430218, 0.014761433, 0.0194209963, 0.0479395837, 0.0123319626, 0.0264657214, 0.0105153983, 0.0187711678, -0.0175453555, 0.0281641353, -0.0305419154, 0.00532415882, 0.0291831847, 0.000372220355, -0.00739917764, -0.0173385926, -0.00282269041, -0.0641557425, 0.0082040783, -0.0143626751, 0.0161866248, 0.014761433, -0.0138974572, -0.00151288079, 0.0073068724, -0.0342931934, -0.0226849038, 0.0465808511, 0.012162121, 0.0181951839, 0.0191994626, 0.0576870032, -0.0271893945, -0.022271378, 0.0118372077, -0.0120218173, -0.0104784761, -0.0236005709, -0.0419729799, -0.0249149948, -0.00387312239, 0.0396395065, 0.0643329695, -0.0271598566, 0.0591934212, -0.0019808677, -0.0188450124, 0.0102126375, 0.0153004956, -0.0270564742, 0.0224190652, 0.0140303774, 0.00133380888, 0.000336913654, -0.0587208197, -0.0249445327, -0.023777796, 0.020779727, -0.000940127531, -0.0236153398, -0.0142371403, 0.00914189778, 0.0182985645, -0.0207501892, -0.0541424863, -0.0557670556, 0.00561584299, -0.0411163904, -0.0177521184, 0.0573620871, -0.039550893, -0.0187563989, 0.0224781409, 0.0231722742, -0.0277801454, 0.00306452974, -0.0142297558, -0.00201963587, -0.00563430414, 0.0285481252, 0.0433907881, 0.0303351525, -0.0352679379, -0.0607293807, -0.0298477802, 0.0170432162, 0.000364835956, -0.0267758667, 0.00759855658, 0.02673156, -0.00632843841, -0.0233199634, 0.0162309315, 0.00525031472, 0.016142318, 0.00479986565, 0.00611798279, 0.0126347234, -0.00742502324, 0.025623899, -0.0195686836, 0.010397248, 0.00628413213, 0.0186234787, 0.00567861041, 0.0521339253, 0.044926744, 0.0381330885, 0.00174548966, -0.00107443146, 0.0011307376, -0.0231279694, -0.0311326683, -0.02487069, -0.00649828, -0.00313468161, -0.00849207, 0.0256682057, -0.0105080139, -0.00614013616, -0.014569439, 0.0184905604, 0.0199526735, 0.0359177664, 0.00701149646, -0.0271155499, -0.0158469416, -0.0647465, 0.0203514304, -0.0185053293, -0.0056896871, -0.0189779308, -0.00075044058, -0.0145472856, -0.00967357587, 0.00881698448, 0.0281789042, 0.0211194102, 0.00581522193, -0.0410573147, 0.045310732, -0.011039691, -0.00023837795, -0.024693463, 0.00689703785, -0.0151528073, -0.0838278085, 0.016334312, -0.00903113186, -0.00381773943, -0.0018248721, -0.00235193432, 0.0263180342, -0.0125534954, 0.0144955944, -0.0355042368, -0.0234971885, -0.00982864853, -0.0438338518, -0.0448085926, 0.00910497643, 0.0477328189, -0.0285628941, 0.00173995132, 0.0028688428, 0.00429772586, -0.0119627425, -0.00901636295, -0.00323806331, -0.0615564324, -0.00917882, -0.0281050596, -0.031398505, 0.0281789042, 0.0412640758, -0.00181102625, -0.0240288675, -0.00947419647, 0.0203218926, -0.0304828398, -0.011231686, 0.0385170765, 0.0154629527, 0.00903113186, 0.0117855165, 0.0499776788, -0.0290798023, -0.0212966353, -0.029522866, 0.00911974534, -0.012531342, -0.0123024257, 0.00104581693, -0.0285924319, -0.0181065705, 0.0470534526, 0.000187610145, -0.00454510376, 0.00472232932, 0.0122359656, 0.0184462536, 0.0359177664, 0.0137202321, -0.0152709577, -0.0415889919, 0.00550876884, 0.0208388027, 0.0103160189, 0.00139011501, 0.0432431, 0.00383250811, 0.00795300864, 0.0167478397, -0.0222270712, -0.0382512398, -0.0149017368, 0.0534926578, 0.0439224653, 0.0255057476, -0.011039691, -0.0542606376, 0.0222861469, -0.0161718559, -0.00517647061, 0.0255795922, -0.0295967106, -0.0141485278, -0.0236891843, -0.0298034735, 0.00697457418, -0.00602198532, -0.0104267858, -0.0409096256, 0.0103898635, 0.0185200982, -0.0180031881, 0.0240731724, 0.00445649074, -0.0208978765, 0.043420326, 0.0143183693, -0.0110323066, -0.0173238236, -0.0113498364, -0.0130630191, 0.0216658562, -0.0355042368, 0.0290650334, -0.0351793244, 0.0158026349, 0.00777578261, -0.000607829134, 0.0501844436, -0.00971049815, 0.0038878913, 0.00976957288, 0.00741025433, -0.0618518107, 0.0268201735, -0.00152118818, 0.0199822113, 0.0264361836, -0.0101831, 0.00103474024, -0.012627339, -0.0071111857, 0.0138679203, 0.0226701349, -0.00495493831, 0.042859111, -0.0591934212, -0.00615859684, -0.00377527904, 0.0279278345, -0.00560476631, 0.049948141, -0.00974003505, 0.0133288577, -0.0417957529, 0.0130704036, -0.0129448688, 0.0366857424, -0.0501844436, -0.00404665619, 0.0266577154, 0.0268054046, 0.0259045064, -0.0292717963, -0.0142888315, -0.00805639, 0.0201151296, 0.0362131409, -0.0342045836, -0.0162013937, -0.00257346639, -0.00257162051, -0.02560913, -0.0023962406, 0.00178979617, 0.0320483334, -0.0484712608, -0.0590752698, -0.0145399012, 0.00300360844, -0.0568599477, 0.00229655113, 0.0133067053, 0.000789670215, -0.0416776054, 0.0186087098, -0.00715918466, -0.0112538394, 0.0307191405, -0.0436566249, 0.000578753068, -0.0273518506, 0.0329049267, 0.0336729065, 0.0456947237, 0.00367189734, 0.0242208615, -0.000612905947, 0.0734305605, -0.0147835864, 0.0101978686, -0.0109732319, -0.026170345, -0.00209163385, 0.0321074091, -0.0302317701, 0.0171613656, 0.0242504, 0.0117855165, -0.00347990263, 0.0110470755, 0.00981388, -0.012900562, -0.0190222375, 0.0454584211, -0.000522446935, -0.0078570107, -0.0161275491, -0.00990249217, -0.00110489223, -0.0041426532, 0.0148352776, -0.0166739952, -0.0129891755, -0.00662012259, 0.00231132, -0.00659796922, 0.00444910629, 0.0160093978, 0.0231427383, -0.0691180676, -0.0124427294, 0.0268497113, -0.00591860386, 0.0130039444, -0.0295671728, -0.0192437693, 0.0168216843, 0.0189188551, -0.0573620871, 0.0113719897, 0.0488552488, 0.027292775, -0.0378967859, 0.0187859368, -0.014761433, 0.00490694, -0.00688226894, -0.0347067229, 0.00163380045, -0.0277063027, -0.0108846184, -0.012339347, -0.00804900564, 0.0283708982, -0.0266724844, 0.0181508772, 0.00791608635, 0.00913451426, 0.0311622061, 0.0322255604, -0.0112907616, 0.00725148944, -0.00566753373, -0.0226849038, 0.0359177664, -0.0114679867, 0.019494839, -0.00209901831, -0.0188745484, 0.0365085192, -0.000737979368, 0.00584106753, 0.0248116143, -0.00336913648, 0.0255205166, -0.0528132915, 0.000817361753, -0.0386352278, 0.0257272813, 0.0175601244, -0.00560845854, 0.0250183772, 0.0047112531, -0.0161866248, 0.0027525383, -0.0027470002, 0.017988421, -0.00905328523, -0.0173238236, -0.00462264, -0.0235119574, -0.00890559703, -0.00117227493, 0.00570445601, -0.0184905604, 0.0295080971, -0.00737333251, 0.0106335487, -0.0308668297, -0.0450153574, 0.049002938, -0.0056896871, 0.0192880761, -0.0067308885, -0.0014408828, -0.00398388878, 0.00923051126, -0.00850683916, 0.0396099687, 0.0337024406, -0.0110839978, -0.0107590836, 0.0113129141, 0.00424972735, -0.006033062, -0.00934127718, -0.0037402031, 0.0100501804, -0.0482349582, -0.00562322745, -0.00186456321, 0.00928220153, 0.00849945471, -0.00861760508, 0.0558556691, -0.000701057317, 0.0188597795, 0.0145768235, 0.00897205714, 0.00259008142, -0.0188745484, 0.00687488448, -0.0105006294, -0.00705949496, -0.00804162119, 0.0292717963, 0.00624721, 0.0107886214, 0.00321406405, 0.000931358547, 0.0208978765, -0.0106778555, 0.00343928835, -0.00846991688, 0.0123984227, 0.00893513486, -0.0130039444, 0.0253728293, 0.00920835789, -0.024309475, 0.00989510771, -0.0231132, -0.0313098952, -0.016334312, -0.0287105814, -0.0137793068, -0.00174272049, 0.0146802049, 0.0244719312, -0.0151011162, 0.00172795169, -0.00234270375, -0.0154629527, 0.00403927173, -0.0200708229, 0.0236448776, -0.0218726192, 0.00642443588, 0.0122211967, 0.00632105395, 0.0160389356, -0.015787866, 0.00926004909, -0.00407250132, -0.000163149278, -0.0135134682, 0.0952884108, -0.0144955944, -0.0230393559, -0.0288730394, -0.00805639, 0.0120218173, -0.00957019348, -0.0248854589, -0.0138679203, 0.0271746255, 0.024132248, 0.0129079465, -0.00923051126, -0.0138383824, -0.00718872203, -0.0301874634, -0.0111135356, -0.0103381723, -0.0246343873, 0.010847697, 0.00958496239, 8.22092406e-05, -0.0152857266, 0.0101018716, 0.0220350754, 0.0143331373, 0.022817824, -0.0270712432, -0.0168216843, 0.0112833772, 0.0430067964, 0.00719241425, -0.0258454308, -0.0156549476, 0.0166001506, 0.00208794163, -0.00985818543, 0.0224338342, -0.00875790883, -0.0188450124, -0.0451335087, -0.0121547375, -0.00773886032, 0.00493278494, 0.00470017642, -0.0183576401, -0.0276029203, -0.00757640367, 0.0208535716, 0.00129227154, 0.0255500544, 0.00995418336, -0.00495863054, -0.0233642701, 0.0158469416, -0.0223895274, 0.0145399012, 6.47866473e-05, -0.0169841405, -0.0038435848, 0.00801208336, 0.00196425267, 0.0378377102, 0.00289284228, 0.0269383229, -0.0166149195, -0.0258602, 0.010589242, -0.0218135435, -0.00449341303, 0.00401711836, 0.0184905604, -0.0234971885, -0.0128193339, -0.00702626491, -0.010493245, -0.00759117259, -0.0101831, 0.0461082496, -0.0165706128, -0.0217840057, -0.0151011162, 0.0132550141, 0.00992464554, -0.0314575806, -0.00371805, -0.0058373753, 0.0329935402, -0.003987581, 0.0102569442, -0.0156697165, -0.00919358898, -0.0411754623, -0.0147318961, -0.0101757152, -0.0405847095, -0.0283118244, 0.00097381894, -0.0219169259, -0.0175158177, 0.0031642192, 0.0176487379, 0.00607367652, 0.0147392806, -0.00330452295, 0.0071111857, -0.009274818, -0.0137645379, -0.0115713691, 0.0232313499, -0.0023962406, -0.00321591017, -0.00787178, -0.0134765459, -0.0205434263, 0.0396985821, 0.0346771851, 0.0244423933, 0.0290059578, -0.00906067, -0.00476663606, 0.0432135612, -0.00551615329, -0.058838971, 0.00673827296, 0.0265838727, -0.0233051945, 0.0241765548, -0.0113572208, 0.00365528231, -0.0044158767, -0.00957019348, -0.0105523206, 0.0296410173, -0.0249002259, -0.00574507, 0.00941512175, -0.00126458006, 0.0383693874, 0.0164967701, 0.0369515829, 0.0303351525, 0.00194025342, 0.0520157777, 0.00363497529, 0.0486484841, -0.00430511031, -0.00169564493, 0.012531342, -0.000609675248, 0.017633969, 0.0023057817, 0.00616967352, -0.0116082905, -0.0223452207, -0.0184019469, -0.0555012189, 0.0336433686, -0.000621213403, 0.025417136, 0.0193323828, 0.0115861371, -0.0357405394, -0.0153004956, -0.0120808929, 0.00877267774, 0.0169989094, -0.0110175377, -0.00630997727, -0.00409834692, 0.0238368716, 0.0334956795, -0.0135651594, -0.0128857931, -0.00314945029, -0.0171318278, 0.0151380384, 0.00853637699, 0.028400436, 0.0152118821, -0.0123024257, 0.00308668287, 0.0339978188, 0.0109658474, -0.0324027874, 0.00483309571, 0.00318268035, 0.0162752364, 0.013461777, -0.028208442, 0.0329935402, -0.000947050459, 0.00335252169, 0.0111652259, -0.0249297637, 0.008728371, 0.0245753136, -0.00507308869, -0.0116599817, 0.0111652259, 0.0151528073, -0.00197532936, -0.00792347081, -0.0303646903, -0.00094058906, 0.0194505323, 0.0260521937, 0.0324914, 0.0212966353, 0.0197311398, 0.00879483111, -0.0114162965, 0.00691919122, 0.0137128476, -0.0284299739, 0.0195834525, -0.00894251931, 0.00404665619, -0.00912713, -0.048441723, -0.0217544679, 0.0123467315, 0.00516539393, -0.0189779308, -0.0477918945, -0.00745086838, -0.0325504728, 0.0347067229, -0.00728102727, 0.0213557109, -0.0106409332, 0.0126642613, -0.00453033485, -0.0317529589, 0.00495493831, -0.004316187, -0.00652781734, 0.0296853241, -0.00112335326, -0.0434793979, -0.0304828398, -0.0190222375, 0.00363682141, -0.00911974534, -0.0320187956, 0.0339092053, -0.0354747, -0.00535738887, 0.00527246809, -0.0297739375, -0.0346771851, 0.0236301087, 0.0101904841, -0.0014473442, -0.0098803388, 0.0147835864, 0.018180415, 0.0238221027, 0.0156401787, -0.025978351, 0.0127750272, 0.00963665359, -0.0497118421, 0.0272041615, 0.0262884963, 0.00581891416, -0.00687119272, 0.00873575546, 0.0160093978, 0.0185939409, -0.0149608124, 0.00157841737, -0.0145915924, -0.039166905, -0.00911974534, 0.0109953852, -0.00404296396, 0.00112612231, 0.0184314847, 0.00784962624, 0.0268792491, 0.0136906942, -0.0068564238, -0.0511887223, 0.000877360057, -0.0140303774, -0.00626197876, 0.00496970722, 0.00827053841, 0.000986741623, 0.00889082812, -0.0246196184, -0.00408727024, 0.00928958599, 0.0382807739, -0.0748483688, -0.0480872691, -0.00827053841, 0.00712595461, 0.0200117473, -0.0130999414, -0.00646874215, -0.0172942858, 0.00120735087, -0.0051875473, -0.0047924812, 0.014746665, -0.00580783747, 0.000703826488, 0.0217396989, -0.0230984315, -0.00313837384, -0.000270915509, -0.0258454308, -0.0160537045, -0.02487069, -0.0144660566, -0.00242947042, 0.0118298233, -0.0241913237, 0.00600721687, -0.0201889742, -0.00967357587, -0.011231686, -0.038458, -0.0344408825, -0.0108846184, 0.0378672481, -0.00577091565, 0.0287991948, 0.00664596818, -0.00942250621, 0.0211932529, -0.00591860386, -0.0272484683, -0.00804900564, -0.000693672919, -0.00228916667, 0.00511001097, 0.0151528073, -0.0175896622, 0.0344113447, -0.0292422585, 0.00282453629, -0.00799731445, 0.0122876568, -0.0151232695, -0.00227624411, 0.0168364532, 0.00801946782, -0.0135577749, -0.0194800701, 0.00996895228, 0.00426080404, -0.0277506094, 0.00487370975, -0.0166444574, -0.0242947061, -0.0164967701, 0.00306083751, 0.00670135114, 0.0213704798, 0.00434941705, -0.0063875136, 0.0108550815, 0.00536108064, -0.0151232695, -0.029522866, -0.0157730971, 0.0103529412, 0.00328975427, 0.0104637071, 0.00637643691, 0.0231870431, 0.0208240338, 0.0225815233, 0.000903667067, -0.0181508772, -0.0442473777, -0.00705211051, -0.0190813132, 0.0120735085, 0.00346144172, -0.0226849038, -0.0133288577, 0.0096145, 0.0195686836, -0.000499370624, -0.00872098655, -0.00911974534, 0.00475555938, -0.00571922492, -0.0252399091, 0.00493278494, -0.0193471517, 0.00454141153, -0.000760132563, 0.031398505, 0.0174862798, 0.00580414524, 0.00511739543, -0.0286219697, 0.00752102025, -0.0125830332, -0.00379189407, -0.0225076787, -0.00187748601, -0.0084329946, -0.00174918189, -0.0241027102, 0.00767240068, -0.00268423255, -0.0045857178, 0.00275623053, -0.0241765548, 0.0160684735, 0.0334956795, -0.00519493176, -0.0101387938, -0.00867668074, 3.63451363e-05, -0.00759117259, 0.012900562, -0.00957757793, 0.000498909154, -0.00057829154, 0.00956281, -0.0162013937, 0.00369958882, -0.000194071501, -0.00305345305, 0.0050398591, 0.0177078117, 0.0198492911, 0.00735487137, -0.00576722343, -0.00470756087, -0.0319892578, -0.0251365285, 0.0268644802, 0.0291093402, -0.00462633232, 0.0174419731, 0.00697826641, -0.0202775877, 0.00234824209, -0.0178555, -0.00232424261, -0.0381330885, -0.02785399, 0.00626567099, 0.0130704036, -0.00644289656, 0.00954065658, 0.0762071, -0.0202628188, 0.016334312, -0.013639003, 0.0138974572, -0.0300693139, -0.000498909154, 0.0208978765, 0.0188597795, 0.00686011603, 0.0175010487, -0.0202037431, 0.031339433, 0.0352679379, -0.00692657568, -0.0314280428, -0.00605521537, 0.000615675119, 0.0125608798, -0.0124870352, 0.012708568, -0.0150715783, 0.000537215732, -0.00177779642, 0.0201298986, 0.00172241335, 0.00980649516, -0.000415142247, -0.043420326, -0.0179588832, 0.00828530639, -0.0164524633, -0.0133583955, -0.0105301673, -0.00718133757, 0.036597129, -0.0147097427, -0.00705949496, -0.00318083423, 0.0237925649, 0.013653772, 0.00608475273, -0.0122507345, 0.0222270712, -0.0194800701, -0.0179588832, -0.00407250132, 0.0119036669, -0.0041684988, 0.00972526614, -0.00277653779, 0.00912713, -0.0202923547, 0.009274818, 0.00395804318, 0.00408357801, -0.00623613317, 0.00851422362, 0.000126919535, 0.0020676346, 0.00371435774, 0.00476294383, 0.00336729037, 0.00975480396, 0.00613644393, -0.0199379046, -0.0486189499, 0.00481094234, -0.0227587484, -0.0085806828, -0.0316348076, 0.0322551, 0.0106630865, 0.00323990942, 0.0134765459, 0.00751732849, -0.025062684, -0.0194800701, 0.00774624478, -0.0175010487, -0.000173649, 0.0174124371, -0.00978434179, -0.0162900053, -0.0149903502, -0.0103086345, -0.0186087098, -0.0153004956, -0.0110470755, 0.00457094889, -0.00246823858, -0.0287401192, -0.024309475, -0.0120735085, 0.0119996648, -0.0122507345, 0.00855853, 0.00390635245, -0.011039691, -0.0212818664, 0.00270084757, -0.00731794909, 0.0263918769, 0.00892775, 0.00207686494, 0.0190370064, 0.0150568094, 0.00327129313, 0.00919358898, 0.0181508772, 0.0109880008, 0.0140451454, 0.0223304518, -0.00110766129, 0.00784224272, -0.00466694636, -0.00404296396, -0.00482571125, -0.0265986416, 0.0183576401, 0.0101831, 0.000214955522, 0.0138753047, -0.0210012589, 0.00220978446, -0.0225667544, 0.00905328523, 0.00948896538, 0.0158321727, 0.0251365285, -0.011039691, 0.0274256952, 0.00604413869, -0.0111430734, -0.00977695733, -0.0352679379, -0.00692288345, 0.0300693139, 0.00111504574, 0.0018184107, 0.0146580515, 0.0104046324, 0.00214886293, 0.0177668873, 0.00495493831, -0.00923789572, -0.0266724844, 0.0153004956, 0.0068305782, 0.00908282306, -0.0231722742, -0.0311622061, -0.0084034577, -0.00121288921, 0.0158764794, -0.0250774529, -0.00560476631, 0.012162121, 0.0144439042, 0.0180770326, 0.019140387, 0.0121325841, 0.0159355551, -0.00262884959, -0.000304376095, 0.0186973233, 0.00417588325, -0.0158469416, -0.00995418336, 0.00112889148, 0.00692657568, -0.0268644802, 0.0164081566, 0.00499924505, -0.00189963914, 0.0236301087, 0.0312803574, -0.00289653428, 0.0324914, -0.000839053479, -0.0364789814, 0.0158912484, 0.0122655034, 0.0010421247, -0.0181213394, 0.0109880008, -0.0147392806, -0.00533892773, 0.0267610978, 0.0197902154, -0.00275438442, 0.0184610225, -0.00763547886, -0.018372409, 0.000993203, 0.0106409332, 0.00295191747, 0.0123615, -0.0100871027, -0.0122802723, -0.00902374741, -0.0165706128, -0.00838130433, 0.000286607363, 0.00536108064, -0.0322255604, 0.0010698163, 4.65852354e-05, -0.0113867586, 0.0080046989, 0.0275438447, -0.00412419252, 0.00054783083, -0.0160832424, 0.00485155685, -0.00600721687, -0.0065610474, 0.00191440806, 0.00378450961, 0.0048663253, -5.00178321e-05, 0.0111504579, -0.0132476296, -0.0250774529, -0.0218283124, -0.00767978514, 0.00933389273, 0.00857329834, 0.0228325929, 0.0124944197, -0.0394918174, 0.0229802802, 0.0470534526, -0.0105227828, -0.00138919195, -0.0141706811, 0.0111283045, -0.0206025, -0.0540538728, 0.0113202985, 0.00755794253, 0.0240436345, -0.0124796508, 0.00224301429, 0.0154481838, 3.52490133e-05, 0.00415373, -0.0180327259, -0.0216510873, 0.0128193339, -0.0193619207, 0.0116304439, -0.00156364858, -0.0179736521, 0.00235562655, 0.0319892578, 0.0180622637, 0.0214147866, -0.0184905604, -0.0427114218, 0.0111061512, 0.00780532043, -0.0149017368, 0.03195972, -0.00859545171, 0.00336544425, -0.038044475, -0.0188745484, -0.00870621856, 0.0119258203, -0.0160980113, 0.011231686, 0.0142888315, -0.0186087098, -0.00115012168, -0.00689703785, -0.00638382137, 0.0153595703, -0.0053352355, -0.00219132332, -0.0173238236, 0.0262441896, 0.0119258203, -0.00997633673, -0.00417588325, 0.0259931199, -0.0176930446, 0.0134765459, -0.00906067, -0.00189963914, 0.00261592679, -0.00580414524, -0.0104563227, -0.0117338253, -0.0238811783, 0.0259340443, 0.00108273898, -0.00109012332, -0.0057635312, 0.0159060173, -0.00848468579, 0.0145399012, -0.0237482581, -0.00270084757, -0.00403927173, -0.00368297403, -0.0058115297, -0.00550876884, 0.0239107162, -0.00973265059, 0.0234528836, -0.0413822271, -0.0245605446, 0.0223009158, -0.00640597474, -0.00960711576, 0.021340942, -0.00232608872, 0.000947050459, 0.0105670895, -0.0230541248, -0.010205253, 0.0105006294, -0.0167478397, 0.00631736172, 0.01448821, -0.0214738604, -0.00627674768, 0.00955542549, -0.00642443588, 0.0128267184, -0.0163195431, 0.0166887641, -0.020425275, -0.0133953178, -0.0005612151, -0.0214738604, -0.0175305866, 0.00371805, 0.025815893, -0.0187268611, 0.030246539, -0.0203218926, 0.014569439, 0.0115122935, -0.0286072, 0.00544969365, 0.0236448776, -0.00247931527, 0.0471420661, -0.0142076025, -0.0136906942, -0.00352974748, -0.000216917018, 0.0203662, 0.00309591345, 0.0049401694, 0.0211046413, -0.00834438205, 0.0154334148, -0.00738440873, -5.87579707e-05, -0.000716749171, 0.00458941, 0.0207501892, 0.00739548542, -0.00420911331, 0.0147540485, 0.0511296466, 0.0267610978, -3.21048719e-05, -0.0132476296, 0.0195982214, -0.0189927, -0.0145989768, -0.0112612238, -0.00275992276, 0.0042903414, -0.0161127802, -0.0166149195, -0.0218578503, -0.0262737274, 0.00481832679, 0.00557153672, 0.000590752694, 0.00867668074, -0.0311326683, 0.00683427043, 8.15169478e-05, 0.0116452128, -0.00997633673, -0.0143995974, 0.0322551, 0.0213557109, 0.00793085527, 0.0279278345, 0.00299991621, 0.00738440873, -0.00491432426, -0.00846253242, 0.00813023467, 0.00871360209, 0.0059850635, 0.00567861041, 0.0198492911, 0.0217987746, -0.0303942263, -0.0197311398, 0.0371288061, 0.00129688683, 0.0255500544, -0.0134765459, -0.00154334144, -0.0264066458, 0.00719241425, 0.0383103117, 0.00346882618, 0.0317529589, 0.0128488718, 0.00835915096, -0.00107812369, -0.0399348848, -0.0123098092, -0.0156844854, 0.0118519766, -0.0045118737, 0.00647981884, 0.0234085768, -0.00617336575, -0.0194357634, 0.00227993634, 0.0187563989, 0.00106797018, -0.0148205087, 0.0287401192, 0.00410573138, 0.00537954178, 0.0011685827, -0.0264214147, 0.0222270712, -0.0143331373, -0.0117559787, -0.00392112136, -0.00417957548, 0.00131627091, -0.0101757152, 0.0246639252, -0.0166444574, -0.00478140498, 0.00698934309, 0.0128341028, -0.00499555282, -0.00323990942, 6.38059064e-05, 0.0151971132, 0.00555307558, -0.00698934309, -0.00518016284, -0.00309406733, 0.0167921465, 0.0178111941, -0.00195133011, -0.00979172625, 0.00290761096, 0.00584106753, 0.015034657, 0.0115196779, 0.00615121284, 0.00899421051, 0.00892775, 0.0151823452, -0.0226701349, -0.0184905604, -0.00462633232, 0.0151971132, -0.0145472856, -0.0127011836, 0.00391004467, -0.0111726103, -0.00208609551, -0.00860283617, 0.0138826892, 0.00194763788, 0.00821884722, -0.00578199234, 0.0278687589, -0.0050878576, 0.0304237641, 0.00645766547, 0.0420911312, -0.00385466148, 0.0216806252, -0.013092557, -0.0136094652, 4.47679777e-05, -0.0161718559, -0.0162752364, -0.00696349749, 0.0195096079, 0.0110839978, 0.0106852399, -0.00335067557, -0.0057635312, 0.00561215077, 0.0114458334, 0.00437157, 0.00431987923, 0.0310735926, 0.00897205714, 0.00126827217, 0.0157730971, -0.00894251931, -0.01105446, -0.00689703785, 0.0213114042, -0.00453402707, 0.00287253503, -0.0223599896, 0.00657581631, 0.0190222375, 0.00931173936, 0.015787866, 0.0102864821, -0.0158174038, -0.00105781655, -0.00742502324, 0.031900648, 0.0351793244, -0.0145177478, -0.0146358982, 0.0103824791, 0.0157140214, -0.00243131653, -0.02560913, 0.00490694, -0.014746665, 0.0127971806, 0.00295930193, 0.0287105814, -0.0106409332, -0.00787178, 0.00917882, -0.0427114218, 0.0216067806, -0.00452664262, 0.00503247464, 0.00756901922, -0.0142297558, -0.0139417639, -0.00925266463, 0.00835915096, 0.0172942858, -0.00261592679, 0.0126790302, 0.00464479299, -7.47094527e-05, 0.0108181592, -0.000135111608, 0.0203218926, 0.0105227828, 0.00594814122, 0.00460417895, 0.022655366, 0.0284299739, 0.0123024257, -0.0165263079, -0.0169841405, -0.00992464554, -0.00210640253, -0.035976842, -0.0127971806, 0.0107443146, 0.00500293681, 0.00922312681, 0.0151380384, 0.0138457669, -0.0063136695, 0.02098649, -0.00274146185, 0.00536846509, 0.00923789572, -0.0100206425, -0.0224190652, -0.0113202985, 0.00791608635, -0.0140008396, 0.0114827557, 0.0111578414, -0.0176635068, 0.00906067, -0.00896467268, 0.00610321388, -0.027100781, 0.00424603513, -0.0145103633, -0.0128857931, -0.0351202488, 0.00192548463, -0.0026306957, -0.0133436266, -0.00513216434, 0.00327129313, 0.0119479736, 0.00153041875, -0.0174419731, -0.0418252908, 0.0206320379, 0.00876529329, -0.0519862399, -0.0328753889, -0.00938558392, -0.0122802723, -0.00109843083, 0.0068305782, -0.000792439387, -0.0127233369, 0.0151528073, 0.0154777206, -0.0190074686, -0.0154186459, 0.00492170872, 0.00492540095, 0.0202037431, -0.021532936, 0.00451925816, 0.00190148526, -0.00210824865, -0.0072108754, -0.00154518755, -0.0093560461, 0.0108698495, 0.00484786462, -0.00561584299, 0.0155515652, -0.00624351762, 0.00143995974, -0.0156992525, -0.0347658, -0.00111319963, 0.0171022918, -0.00295930193, 0.0015294957, -0.015595872, -0.00966619141, -0.00414634543, 0.0175748933, -0.00587429712, 0.0125830332, -0.0141116055, -0.00404296396, 0.0299068559, 0.0204843506, 0.0167773776, -0.00651304843, 0.021902157, -0.00199563662, -0.00871360209, 0.0161275491, -0.00735117914, -0.00481832679, 0.0122285811, -0.0060589076, -8.86129055e-05, 0.028769657, 0.00753948139, -0.0027525383, 0.00235193432, 0.0106630865, -0.00207501883, 0.00751363626, -0.00128765625, -0.0265543349, -0.000739825482, 0.0018544097, -0.000388604531, 0.0125461109, 0.0190665442, 0.00222086092, 0.00162826211, 0.00866929628, -0.0064613577, -0.0122211967, 0.0063875136, -0.0132033229, 0.00928958599, -0.0185644031, -0.0311917439, -0.00606998429, -0.00690442231, 0.00160426286, 0.0121547375, 0.0011012, -0.00580414524, -0.00923051126, 0.0105523206, -0.00805639, -0.0122138122, 0.00495493831, -0.00331375352, 0.00227624411, 0.0198492911, 0.0151823452, -0.0255648233, 0.00681211706, 0.00627674768, 0.000286145834, -0.00254023657, -0.00381773943, 0.0100871027, 0.0218873881, 0.0205877312, 0.00160703203, 0.0166001506, 0.00130242517, -0.00348728709, -0.0187120922, -0.00929697, 0.00838130433, 0.00395065872, 0.00663119927, -0.00385835371, -0.0279130656, -0.00307560642, 0.0120070493, -0.012981791, -0.0208092649, -0.00856591389, -0.024723, 0.0106040109, -0.00547553925, -0.00660535367, 0.0141263744, 0.00794562418, -0.0285924319, -1.67014568e-05, -0.00359436101, -0.0118150543, -0.00911974534, 0.00612905947, 0.0112907616, -0.00556415226, -0.00419803662, 0.00260854233, 0.00213409425, -0.0250479151, 0.0123910382, 0.0176635068, -0.00184702524, -0.00703734159, 0.0344999582, -0.00250700675, -0.00778316706, 0.01030125, -0.000823823095, 0.00402819505, 0.00603675423, 0.000514139479, 0.0144439042, -0.0148648154, 0.00234085764, 0.00112519925, 0.00374389533, -0.0184314847, -0.0180918016, -0.00542754075, -0.00407988578, -0.0163047742, 0.00867668074, -0.0100944871, 0.0168807581, -0.0032805237, -0.00328790816, 0.0191551559, -0.0130113289, -0.0108772339, 0.0334661417, -0.00489586312, -0.0221532267, -0.00454879599, 0.00203071255, 0.00621767249, -0.00455987267, -0.00703734159, -0.00657950854, 0.00267500221, 0.0040614251, -0.00342082744, 0.021163715, 0.0225962903, 0.00793824, 0.000428988016, 0.0261851139, -0.00649828, -0.00344851892, 0.0141116055, 0.00823361613, -0.0169398338, 0.0202775877, 0.0151528073, -0.00417588325, -0.0325800106, -0.0118962824, -0.0110766133, -0.023763027, -0.000271607802, -0.015787866, 0.0171170607, 0.0038435848, -0.00485894084, 0.00477032829, -0.000817823282, -0.0289911889, -0.0150641939, -0.00616228906, -0.00300914655, 0.00245347, -0.00573399337, 0.00771670742, 0.00875052437, -0.0182837956, 0.0030460686, -0.0327572376, 0.00530200545, 0.0176044311, -0.000110419991, -0.0212080218, 0.00107073924, -0.00484417239, 0.00285961246, 0.00431987923, 0.00917882, -0.00866929628, -0.0131811695, -0.0228030551, -0.0293751787, 0.0164967701, 0.0275881514, 0.0184314847, 0.0203366615, 0.0165558439, -0.0169841405, 0.000816900225, -0.00247193081, -0.023763027, -0.000254762097, -0.00394327426, 0.00284115132, 0.000879206171, -0.00318452623, 0.00400973391, 0.0312212817, 0.0176044311, -0.0159650929, -0.0221236888, 0.00960711576, 0.00561215077, -0.00402450282, -0.0159650929, -0.00808592793, -0.000450679712, -0.0297591686, -0.00483678794, 0.0346771851, 0.0156697165, -0.00846991688, 0.0190813132, -0.015787866, -0.00447864411, -0.0102864821, -0.016334312, -0.00247931527, -0.0072330283, -0.00717764534, -0.0119405892, 0.00385835371, 0.00979172625, -0.0159355551, -0.00846253242, -0.0205138884, 0.00587060489, 0.0121030463, -0.0159207862, 0.0309259053, -0.0056896871, -0.00442326115, 0.0174124371, 0.0141116055, 0.000138919189, -0.00382512389, 0.00133380888, 0.00500662904, 0.000654904754, -0.0223009158, -0.00512108766, 0.0115122935, 0.011231686, 0.01986406, 0.0108033903, 0.00594814122, 0.00525031472, 0.00178425782, -0.0138974572, 0.00413896097, 0.0078274738, -0.00373466476, 0.000503062853, 0.000362066785, 0.00837392, 0.0268497113, 0.0230688937, 0.00626936322, 0.0203514304, -0.00320483348, -0.00609582942, -0.02487069, 0.0103603257, -0.0291979536, -0.0055899974, 0.000452756562, -0.0251512975, 0.00857329834, 0.0143405218, -0.0106630865, -0.0106040109, 0.0134543935, -0.00571922492, -0.00846253242, 0.00477402052, 0.0121695055, 0.0119036669, -0.00152118818, 0.010589242, 0.00900159404, 0.0041684988, -0.00644658878, 0.00301468489, 0.0155663341, -0.0105375517, 0.0201003607, -0.00260115811, -0.0127676427, 0.0195391458, 0.00548292371, 0.00302760769, 0.00652781734, -0.0130113289, 0.011504909, -0.00910497643, -0.0146063613, 0.00445649074, 0.0292127226, -0.00591491163, 0.0017381052, -0.00109750777, -0.0132328607, -0.0216806252, 0.00963665359, -0.00624351762, 0.00471863709, 0.0126790302, 0.0146875894, 0.0212966353, 0.00376051012, -0.000810438883, 0.00367189734, -0.00779055152, -0.000270684744, -0.00823361613, 0.00115289085, -0.00854376145, -0.014104221, -0.0247377697, -0.00324544776, -0.00755794253, 0.0277210716, -0.0145989768, -0.00625828654, -0.0228916667, 0.00399496499, -0.00728841173, 0.000593983394, -0.00663119927, -0.0114162965, -0.0109067718, 0.018017957, -0.0238664094, 0.00379189407, -0.000693672919, 0.00836653542, -0.00139011501, 0.00120642781, 0.00652781734, 0.0211932529, -0.00114735251, -0.0166149195, -0.0256534368, 0.0191699248, 0.00635428401, 0.0254762098, -0.0020842494, 0.0180474948, -0.0111652259, 0.016703533, 0.0110323066, 0.0141706811, -0.0125682643, -0.026923554, -0.0133288577, 0.0170284472, -0.0109732319, 0.019494839, 0.00965880696, 0.00265469495, -0.00316052698, 0.00472232932, -0.000556599814, 0.00609582942, 0.00491432426, 0.0221384577, -0.00152488041, 3.73835683e-05, 0.0119258203, 0.00452664262, 0.00341898133, -0.0203662, 0.0173385926, 0.0175305866, -0.0229655113, -0.00680104038, -0.0136611564, -0.0125165731, -0.00231501227, 0.00856591389, -0.0240288675, -0.00643182034, -0.00316237309, 0.0176930446, 0.015034657, -0.00444541406, 0.0425932705, -0.00968096, 0.0110323066, -0.0241913237, -0.00142703706, -0.0248411521, 0.0118224388, -0.00315498863, 0.00432726368, -0.00951850321, 0.00561953522, -0.0214590915, 0.0114532178, 0.0197902154, 0.00195317622, 0.00727733504, -0.000901359424, 0.018549636, 0.0078274738, -0.00873575546, -0.00777578261, -0.00109104638, -0.0172352102, -0.0128931776, 0.0144734411, 0.00909759197, -0.0163047742, 0.0110839978, -0.0127897961, -0.0362426788, 0.0218430813, 0.0152561888, 0.0101461774, -0.00377158681, 0.00171872112, -0.000785516517, 0.00534631219, -0.0191699248, -0.00162641611, -0.0101904841, 0.00766501622, -0.0130334813, -0.000822438567, -0.0134691615, -0.0268644802, 0.00298883952, 0.0120735085, 0.0127824116, 0.0166001506, 0.0297591686, 0.00663119927, 0.0018248721, 0.0189927, 0.000526139163, -0.00302391546, -0.0117190573, -0.000421603589, -0.012531342, 0.0290059578, 0.0192880761, -0.0175158177, 0.0130408658, -0.011408912, -0.0089794416, 0.00694503635, -0.00948158093, -0.0169398338, -0.0059112194, 0.00977695733, 0.0253728293, 0.0087800622, 0.00366266677, 0.00561215077, -0.0157287903, -0.00744717661, -0.0115566, 0.00410942361, 0.0225224476, -0.00106243184, 0.00489955535, 0.0087800622, 0.00089628261, 0.00676042633, 0.00305345305, -0.0286810435, 0.00724041276, -0.00111873797, -0.00987295434, -0.00180918013, -0.00419434439, 0.0245162379, -0.00993203, 0.0110766133, -0.0050878576, 0.0104194013, -0.00636905245, -0.00482571125, 0.0225224476, -0.0130113289, -0.00721456762, -0.00770193851, 0.0103086345, -0.0121695055, 0.0177225806, 0.00741394656, 0.0104489382, -0.00954065658, 0.00161441637, -0.00358513044, 0.000787824101, 5.03351293e-05, -0.0157140214, 0.0182394907, 0.00385096925, -0.0285924319, -0.0119922804, 0.00979172625, -0.018933624, -0.0173681304, 0.0428295732, 0.01299656, -0.0285924319, 0.00177964254, -0.0024959303, 0.00139288418, -0.0142519092, 0.0111283045, 0.0290059578, -0.0150715783, -0.0157730971, -1.31029992e-05, -0.00323252496, 0.0190665442, 0.0323732495, 0.0081523871, -0.0116895195, 0.00425711181, 0.0173385926, -0.00022557062, -0.00764286332, 0.00807115901, -0.0115713691, 0.00550876884, 0.00309222122, -0.00814500265, 0.00415742211, 0.00125534949, -0.00203809678, -0.00549769262, -0.000806746655, -0.0020676346, -0.00703364937, -0.0219760016, -0.0082557695, 0.00914928224, -0.00971049815, -0.0137276165, -0.0211932529, 0.0144217508, -0.0147023583, -0.0108920028, -0.0103455568, -0.00713333907, 0.00642074365, 0.00605521537, -0.00456725713, 0.0251217596, -0.0321960226, 0.0250479151, 0.00982126407, -0.0123910382, -0.000586599, 0.00297037838, -0.0169841405, 0.029700093, -0.0111947637, 0.00623613317, 0.0157140214, -0.016703533, 0.000959050085, -0.00365528231, 0.0102643287, -0.0182690285, 0.00709641678, 0.00582629861, -0.00869145, -1.55187972e-05, -0.0103824791, 0.00428295694, -0.0187563989, 0.018579172, -0.00300176232, -0.000893513497, -0.0191699248, -0.0105597051, -0.00742502324, -0.000942896702, 0.0083517665, 0.0043420326, 0.0194653012, -0.0435089357, -0.00871360209, 0.00382512389, -0.0109363096, 0.00561584299, 0.00432357145, 0.00709641678, 0.0160389356, 0.00774624478, 0.0171170607, -0.0148205087, -0.0142149869, -0.00953327212, -0.00151934219, 0.000902744, 0.0178998075, 0.0301283877, 0.016895527, 0.00782008935, 0.00283376686, -0.00015714945, -0.0168659892, -0.00618813466, 0.00147595874, 0.00189410092, 0.01224335, -0.00581522193, -0.00428664917, -0.0170875229, -0.000802131428, -0.00155811023, -0.00611429056, -0.0184167158, 0.00613644393, 0.00443064515, 0.0117190573, 0.00475555938, -0.0264214147, -0.0184019469, 0.00443433737, 0.0199674424, 0.000157726361, 0.0200117473, 0.00841822661, -0.00775362924, 0.0352679379, 0.00315683475, 0.00516908616, 9.03436303e-05, 0.00910497643, 0.0042681885, 0.022817824, 0.0179441143, 0.00772409188, 0.00974741951, 0.0148500465, -0.0275290757, 0.00666812109, -0.00437895441, 0.00822623167, 0.00155441812, -0.0265691038, 0.00134303933, -0.00653889403, -0.000920282, 0.0122802723, 0.000666442909, 0.033791054, 0.00498816837, -0.0207649581, -0.00724041276, 0.0229950491, -0.0104784761, 0.012162121, -0.00784224272, -0.0281493664, -0.00742502324, -0.019140387, 0.0132845519, -0.00515062502, -0.00633213064, -0.0179588832, 0.0095037343, 0.00568230264, 0.00396173541, 0.0318415724, 0.0226258282, 0.000252223719, -0.00765024778, 0.00373097253, -0.0114606023, 0.0146802049, -0.000814592582, 0.012147353, -0.00623613317, 0.00912713, 0.00462633232, -0.00091658975, 0.00322698662, 0.00511739543, 0.013735001, 0.00118796679, -0.0175305866, 0.00395435095, 0.00659058476, 0.00069644209, 0.00267684832, 0.00815977156, -0.0125239575, 0.01105446, 0.0207206514, 0.0161127802, -0.0171761345, 0.0146432826, -0.0168364532, -0.00962188467, 0.0160241667, 0.0103603257, -0.00606998429, -0.0162752364, -0.00357405399, -0.00150734244, -0.00322329439, -0.006033062, 0.0150715783, -0.0316052698, -0.0265100282, -0.00434941705, -0.00793824, 0.00782008935, 0.023009818, 0.018579172, -0.00442695292, -0.0270269364, 0.00150365022, -0.00201594364, 0.0103455568, -0.00280976761, -0.0079087019, -0.0160389356, -0.0111135356, 0.00389158353, 0.00742133101, 0.0145103633, 0.00812285, -0.0082557695, 0.0144660566, 0.010574474, 0.00447864411, -0.010574474, -0.0109880008, 7.0786482e-05, -0.0617336594, 0.00295930193, 0.025254678, 0.0212966353, -0.00842561, 0.00830007531, 0.0144512886, 0.000843668706, 0.0134322401, 0.0198049843, 0.000799362257, -0.00801946782, -0.0137423854, 0.00709641678, 0.0226405971, -0.00939296838, 0.0154777206, 0.0173238236, 0.0159946289, -0.00860283617, 0.0185644031, -0.0142592937, -0.0048663253, 0.00900897849, -0.00555307558, -0.00283930521, 0.00308668287, 0.0130187133, -0.0110101532, -0.0175601244, -0.0222270712, 0.0106483176, 0.00415742211, -0.0278096832, -0.0178555, -0.0023187045, -0.0205729641, -0.0119848959, 0.00481832679, 0.00971049815, -3.30279227e-06, -0.0146063613, -0.0130039444, -0.011039691, -0.0248263832, 0.00373097253, -0.000621674932, -0.0103307879, 0.0144143663, 0.0326095484, -0.00445279852, -0.00188210118, -0.015403877, -0.00704103382, 0.0114310654, 0.00557522895, -0.00160610897, 0.00188302423, 0.0167921465, 0.0118445922, 0.00999110565, -0.0213704798, -0.0171613656, -0.0120439706, 0.0138162291, 0.00150272716, -0.0138974572, 0.00502878241, -0.00118704373, -0.000706134073, -0.00297222449, -0.00544230919, 0.0167626087, -0.00515800947, 0.00718503, 0.00599244796, -0.0102274064, -0.00129042543, -0.0044158767, -0.0066090459, -0.00284484355, 0.00629520882, 0.0106409332, -7.94400839e-05, -0.0158912484, -0.00804900564, -0.0115935216, -0.00242577842, -0.0138605358, -0.000817823282, 0.00292976433, 0.0084329946, -0.00242577842, -0.00537954178, -0.00558630517, 0.0104710916, -0.0118667455, -0.0199083667, -0.0273223128, 0.00938558392, 0.0459014848, -0.0215477049, -0.00349282543, -0.0054090796, 0.0170284472, 0.00889821257, -0.0290650334, 0.00996895228, 0.0135725439, 0.00909020752, 0.0234233458, -0.00478509674, 0.00379189407, -0.00396542763, 0.0287105814, 0.00341898133, 0.00467802305, -0.00817454048, 0.00046175631, 0.000300222368, 0.00253100623, -0.0198049843, -0.00639120582, -0.0186825544, -0.00633582287, -0.00821146276, -0.00258638919, 0.0101535618, -0.0370697342, 0.00262331124, 0.0268644802, 0.0100058736, 0.0161275491, -0.0210307967, -0.0185939409, -0.025978351, 0.000416526804, 0.00150180422, -0.017633969, -0.0101757152, -0.00021218638, 0.00130888645, 0.00420542108, -0.028400436, -0.0309259053, 0.00124796515, -0.00953327212, 0.00514693279, -0.0133067053, -0.0100797182, -0.00413526921, 0.00670504337, 0.00394327426, 0.0072330283, 0.00188671646, -0.013735001, -0.0145768235, -0.0139122261, 0.0144365197, -0.012804565, -0.00830746, 0.0218873881, -0.00345405727, -0.011970127, 0.00102458673, 0.00222639926, 0.0151380384, -0.0168512203, 0.00530200545, -0.00635059178, 0.00965880696, 0.00965880696, -0.00601829309, 0.0158912484, 0.0113719897, -0.0128267184, -0.00307929842, -0.022817824, -0.0146802049, 0.011792901, 0.00370328105, 0.00867668074, -0.0117855165, 0.00845514797, -0.00347251818, -0.0132402452, 0.00594075676, 0.00428295694, 0.00138365361, 0.00718133757, 0.00757640367, -0.00168641435, -0.0180031881, 0.00792347081, 0.0155072585, -0.020233281, -0.00387312239, 0.0172795169, 0.0104637071, 0.0175158177, 0.0119479736, -0.00499555282, -0.00120919698, -0.00483309571, -0.00631736172, 0.0171761345, -0.0340568945, -0.00517277839, -0.000979357283, 0.00560845854, 0.0212080218, 0.00285961246, -0.0162161626, -0.018017957, -0.0195686836, 0.00394327426, -0.0257715862, 0.00753948139, 0.00811546575, 0.0133436266, 0.012900562, 0.00185810192, 0.012354116, -0.00213594036, 0.0227882862, -0.0066090459, 0.0262146518, 0.00688226894, -0.0335547552, -0.00330452295, 0.00575983897, 0.0220498443, -0.00649828, -0.011231686, -0.000217609297, 0.0100501804, -0.00263623404, 0.0145989768, -0.01299656, -0.00350759435, 0.0237187222, 0.0321664847, -0.0215772428, 0.00248485361, 0.00423495844, 0.0132402452, 0.0238221027, 0.00202148198, 0.0119184358, -0.0123098092, -0.0140303774, 0.00764286332, 0.00866929628, 0.0181213394, 0.000274376944, -0.00360174547, -0.00562322745, -0.00540169515, 0.0100944871, 0.00776101369, -0.00404665619, -0.000732441084, 0.00751363626, -0.00151934219, -0.000742133067, 0.0193914585, -0.00451556593, -0.0212523285, 0.00220609223, 0.0104858605, 0.000675673422, -0.0119110513, -0.0158026349, -0.01224335, -0.014938659, -0.0107369302, -0.0322846361, 0.0222861469, -0.0149903502, -0.00562691968, 0.00570445601, -0.00535738887, -0.00782008935, -0.0149977347, 0.00479617342, -0.0242060926, -0.0153300324, -0.0308372919, 0.00439372333, 0.0286515057, 0.000629520859, -0.000905051595, 0.0080046989, 0.0160980113, -0.0219760016, -0.0177078117, 0.000457833346, -0.0204105061, -0.00223747594, -0.00717764534, -0.00388419908, -0.0162752364, -0.0156992525, -0.0088096, -0.0068564238, -0.00990987662, -0.010766468, -0.0368925072, -0.003341445, -0.00801946782, 0.00252546789, 0.00582999084, 0.00225224462, -0.000417449861, -0.00219686166, 0.0113424519, -0.0180622637, -0.0115196779, -0.00249777641, -0.0132919364, -0.0116156749, 0.0108033903, 0.00415742211, -0.022094151, 0.0199231356, -0.00489217089, 0.0167626087, 0.0194062274, 0.0206763446, -0.0017297978, 0.00573399337, -0.00562322745, -0.0160093978, -0.0190813132, -0.00793824, 0.0175305866, -0.0118445922, -0.00717764534, 0.0128414873, 0.00346144172, 0.00155995635, 0.00997633673, -0.0365675911, 0.000814592582, 0.0311622061, -0.0101240249, -0.0201151296, -0.0101978686, -0.000487832527, 0.0103898635, -0.0110175377, 0.0155220274, 0.0187563989, 0.0123615, 0.00419065217, -0.0177816562, -0.0139048416, -0.00565645704, 0.0166592263, -0.0155072585, 0.0339387432, -0.0367448181, -0.0102643287, 0.00086951413, -0.00857329834, 0.0205581952, -0.0079087019, 0.00718872203, 0.00817454048, -0.0154777206, -0.00296114804, 0.00197348325, 0.0114015276, 0.0667550564, -0.00116950576, 0.0100723337, -0.0212818664, -0.0266281776, -0.00900159404, -0.00993941445, 0.0443359911, 0.00664227596, 0.0122359656, -0.0134174712, -0.0034152891, 0.00809331238, -0.0165558439, -0.0326095484, 0.00848468579, -0.00794562418, -0.00433464814, 0.00801208336, 0.000666904438, 0.00120550476, 0.00427188072, 0.00580783747, -0.0172056723, -0.00296114804, -0.00497339945, -0.00812285, 0.0111283045, -0.01224335, -0.00473709824, -0.00489955535, 0.0328163132, 0.0154629527, -0.0205877312, -0.0331116877, 0.00621028803, 0.0173385926, 0.0205729641, 0.00221716869, -0.00878744666, 0.00595552567, 0.00307006808, -0.00878744666, -0.00918620452, 0.0171022918, -0.00971788168, -0.0187120922, -0.00780532043, 0.00867668074, -0.00160518591, -0.00246270048, -0.00938558392, -0.0103898635, -0.00177041208, -0.0170875229, 0.0137202321, 0.014665436, -0.0178850386, 0.00993203, -0.00735487137, 0.0117412098, 0.0153300324, -0.00686011603, 0.00414634543, -0.0111209201, -0.00255131326, -0.00602567755, -0.00807854347, -0.0107516991, 0.0013310397, -0.00596291, -0.0130039444, -0.00575245451, -0.0016919527, 0.00639489805, -0.00730318064, 0.0134396246, 0.0156992525, 0.00571184047, -0.0227292106, 0.00194763788, 0.0228916667, -0.0210603345, -0.0110027697, -0.00224301429, -0.0264509525, -0.00712226238, -0.0215624738, 0.00453033485, -0.020056054, 0.0124205761, 0.0461377874, -0.0207206514, 0.00976218842, 0.0186530165, 0.00354636228, 0.00296114804, 0.00575983897, 0.0170579851, -0.0173090547, 0.0238516405, -0.00654627848, -3.22491e-05, 0.0122507345, -0.00179256522, 0.0153004956, -0.00628782436, -0.0046854075, 0.00809331238, -0.00515062502, 0.00301283877, -0.00882436894, -0.000404757913, 0.0243390109, 0.00257715862, -0.00469279196, 0.0225372165, 0.0103898635, -0.00258085085, -0.014008224, 0.0164820012, 0.0083517665, -0.0280312169, -0.00921574235, -0.0156549476, 0.0143700596, 0.00684903935, -0.0215624738, 0.00912713, -0.0043420326, 0.00697088195, -0.00818192493, 0.00826315396, 0.0150789628, 0.00662012259, 0.020971721, -0.027661996, 0.00793085527, -0.0253432915, 0.0144586731, 0.0284299739, 0.00592968054, 0.00759855658, 0.0268349424, 0.0117042884, 0.00123504235, 0.00877267774, -0.0260965, -0.0088096, -0.0120439706, -0.0182837956, -9.38627636e-05, 0.0017657968, 0.0013310397, -0.0153152645, 0.00621028803, -1.85764038e-05, -0.00964403804, 0.00404665619, -0.00413157698, -0.0252694469, -0.0022448604, 0.00733641, -0.0106335487, 0.0300397761, -0.00237039523, 0.0143257529, 0.0118150543, 0.0021580935, 0.0124722663, 0.0228473619, 0.00242577842, -0.00827792194, 0.0165853817, -0.00976218842, -0.0127233369, -0.00353343971, -0.014938659, 0.00287991948, -0.0175748933, -0.000970126712, 0.0140303774, 0.00698934309, 0.0369220451, -0.00765763223, -0.0185200982, 0.0123836538, -0.0100501804, 0.0470829904, 0.022271378, -0.00690442231, 0.0282232109, -0.0319892578, -0.0127233369, -0.01448821, 0.000301606953, -9.0112866e-05, 0.00249777641, -0.00270823203, -0.00276176888, 0.00419434439, 0.00353528582, 0.0198049843, 0.0289025772, 0.0013735001, 0.0185053293, 0.0219907705, -0.000778593589, 0.00056813797, 0.00864714291, 0.00588906603]
25 Jan, 2022
Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts 25 Jan, 2022 Given an integer X and two strings S1 and S2, the task is to check that string S1 can be converted to the string S2 by shifting characters circular clockwise atmost X times. Input: S1 = “abcd”, S2 = “dddd”, X = 3 Output: Yes Explanation: Given string S1 can be converted to string S2 as- Character “a” – Shift 3 times – “d” Character “b” – Shift 2 times – “d” Character “c” – Shift 1 times – “d” Character “d” – Shift 0 times – “d” Input: S1 = “you”, S2 = “ara”, X = 6 Output: Yes Explanation: Given string S1 can be converted to string S2 as – Character “y” – Circular Shift 2 times – “a” Character “o” – Shift 3 times – “r” Character “u” – Circular Shift 6 times – “a” Approach: The idea is to traverse the string and for each index and find the difference between the ASCII values of the character at the respective indices of the two strings. If the difference is less than 0, then for a circular shift, add 26 to get the actual difference. If for any index, the difference exceeds X, then S2 can’t be formed from S1, otherwise possible. Below is the implementation of the above approach: Java // Java implementation to check // that a given string can be // converted to another string // by circular clockwise shift // of each character by atmost // X times import java.io.*; import java.util.*; class GFG{ // Function to check that all // characters of s1 can be // converted to s2 by circular // clockwise shift atmost X times static void isConversionPossible(String s1, String s2, int x) { int diff = 0, n; n = s1.length(); // Check for all characters of // the strings whether the // difference between their // ascii values is less than // X or not for(int i = 0; i < n; i++) { // If both the characters // are same if (s1.charAt(i) == s2.charAt(i)) continue; // Calculate the difference // between the ASCII values // of the characters diff = ((int)(s2.charAt(i) - s1.charAt(i)) + 26) % 26; // If difference exceeds X if (diff > x) { System.out.println("NO"); return; } } System.out.println("YES"); } // Driver Code public static void main (String[] args) { String s1 = "you"; String s2 = "ara"; int x = 6; // Function call isConversionPossible(s1, s2, x); } } // This code is contributed by Ganeshchowdharysadanala Output: YES Time Complexity:O(N),N=Length(S1) Auxiliary Space:O(1) Please refer complete article on Check if a string can be formed from another string by at most X circular clockwise shifts for more details! Kickstart your Java journey with our online course on Java Programming, covering everything from basics to advanced concepts. Complete real-world coding challenges and gain hands-on experience. Join the Three 90 Challenge—finish 90% in 90 days for a 90% refund. Start mastering Java today!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts
https://www.geeksforgeeks.org/java-program-for-check-if-a-string-can-be-formed-from-another-string-by-at-most-x-circular-clockwise-shifts?ref=asr8
PHP
Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[0.00561393844, 0.0423214287, -0.0137676662, 0.019149, -0.00335076055, 0.0150501328, 0.0149998404, 0.0126423631, -0.0299745351, -0.0508209169, -0.0132521642, 0.0364120193, -0.00012337463, -0.0222923029, -0.0171750057, 0.0295721907, 0.00108208193, 0.0366383344, -0.0135287745, 0.0136293601, -0.0288429447, 0.00802170858, -0.0345008895, 0.0249075312, -0.00132725958, 0.00789597631, -0.00466780458, -0.000682489597, -0.0318605155, -0.00742448075, 0.0112341633, -0.0177910924, 0.00741190789, -0.00230875588, -0.0408377871, -0.043251846, -0.0115422076, -0.0183820333, -0.0701585189, 0.00423717219, -0.0534612909, 0.0231975745, -0.0226192065, -0.02294611, -0.0108569674, -0.00174138963, -0.0345763303, 0.00184511871, -0.0208841022, 0.0175522026, -0.0123594664, 0.0182563011, 0.0193627439, 0.0337464958, 0.0163828935, 0.0353055745, -0.0369149484, -0.00320616877, 0.0515501648, -0.000498999318, 0.033796791, -0.0439056531, -0.00719816331, 0.000854192476, -0.0140317036, -0.0129755531, -0.0470489562, 0.0263534505, 0.00890812, 0.0250206888, -0.0520028, 0.00697813183, 0.0152261583, -0.0139562637, -0.0214373246, -0.031307295, 0.0194381829, 0.0105552105, -0.0404857397, 0.0385243185, -0.0202177223, -0.00738676125, -0.0413910113, -0.0156033542, 0.00853092317, -0.0366634838, -0.0274850391, -0.0530086569, 0.0489097908, 0.0363114327, -0.00965622626, -0.0229209624, 0.0101591544, -0.0151632922, -0.0160811357, 0.0470741019, 0.0256116297, 0.00451063924, -0.0199159663, 0.0346266218, 0.0497396216, 0.000286826369, 0.0106495097, -0.0139939832, -0.00418059248, 0.00349535258, -0.0173133109, 0.0142580206, 0.0133778965, 0.0448109247, 0.0391529799, -0.0173384584, 0.0131515786, 0.0605022907, -0.0283651631, -0.0249452498, -0.0285663344, -0.0416173264, 0.0600999482, 0.0181682892, -0.0108946869, 0.0420951098, 0.00485325931, 0.0215882026, -0.0171750057, 0.0277616493, 0.0240148325, 0.00901499204, -0.013050993, -0.0198279526, -0.00352992886, -0.00683354, -0.0122085875, -0.00387883559, 0.0654309914, -0.00467723422, -0.00780796399, 0.015615928, -0.0224683266, 0.0278370883, -0.00500413775, -0.00450435281, 0.013566494, 0.0162571613, -0.00187498, 0.0156410746, -0.00577110378, 0.0439559445, -0.0229209624, -0.0110078463, -0.0305026099, -0.0120262764, -0.0557747632, -0.000883268076, -0.00120388495, 0.016571492, 0.0269569643, -0.00919730403, -0.00690897927, -0.0283651631, -0.00181368564, -0.0239393935, 0.0274850391, -0.00145063421, -0.0187592302, -0.0670403615, -0.00471809739, -0.0161565766, -0.0205949191, 0.0363114327, -0.0332938619, -0.0116805127, 0.0132773109, -0.0250458363, 0.0111210048, -0.0138808247, 0.0277113561, -0.0259762537, -0.00684611313, -0.0341739878, -0.0644251332, -0.00803428143, 0.0119634103, 0.0125229182, 0.0524051413, -0.0403097123, 0.00537190447, -0.00705985771, -0.0214373246, -0.0311312694, -0.0160434172, 0.0187969506, 0.0423968658, 0.0190735608, -0.0155907813, 0.00869437493, -0.0487589128, 0.0258002281, -0.0114793414, 0.019149, -0.0214247517, -0.0170115549, -0.00714787049, 0.00481868302, 0.0067455275, -0.0166343581, -0.0476021767, -0.0109764133, 0.0318856612, -0.00870694872, -0.026831232, 0.0455150232, -0.02009199, -0.000955564, 0.0265294742, 0.000329850329, -0.0242160037, 0.0186712183, -0.0120577095, -0.0217642281, 0.00841147825, -0.0149118276, 0.0170995668, 0.00419630902, -0.0303014386, -0.0259762537, -0.0419190861, 0.0421202555, -0.00801542215, -0.0558250546, 0.0391781256, 0.017074421, 5.02928415e-05, 0.00321874185, -0.00775138428, -0.0152764507, -0.000125633873, 0.0250961278, -0.0108569674, -0.00857493, 0.00670152111, 0.015691366, 0.0156787932, -0.0355570391, -0.0177156534, 0.0127995284, 0.0193501711, 0.0291698482, 0.00329103786, 0.0439308, 0.0140819959, -0.000327885762, 0.0121582951, 0.00132490206, -0.0215756297, 0.0205697734, -0.0234616119, 0.0261522774, -0.0145346317, 0.0507957712, -0.0114416219, -0.000423560035, -0.0186334979, 0.0464454405, 0.00717301667, -1.0755989e-05, -0.029697923, 0.00149464037, 0.0123406062, -0.0177785195, 0.0116490796, -0.0224557538, -0.00316530582, -0.0180174112, 0.0282645784, -0.0217893738, -0.039077539, -0.0339728147, 0.0887668654, -0.0174767636, -0.00797770265, 0.0458167791, 0.0436793342, -0.0322125666, 0.0148489615, -0.0447606295, -0.0683479756, 0.0325143225, -0.0511981137, 0.00324703171, -0.00214844733, -0.04531385, -0.00259636808, -0.0136419339, -0.0133276032, 0.00548820663, 0.00663236855, -0.0048438292, -0.0346266218, -0.0131641515, -0.0199662577, -0.0131641515, -0.00964365248, 0.0285160411, -0.0140568493, -0.0232730135, 0.0169612616, 0.00726102898, -0.00734904176, -0.0216510687, 0.0784065425, -0.0190735608, -0.000580332242, 0.0506700389, -0.00427489169, -0.0180174112, 0.0525057279, -0.00404857378, 0.00761307916, 0.00790226273, -0.00362737128, -0.0258002281, 0.0377196334, 0.00898355898, 0.0233107321, -0.0243920293, -0.0477027632, 0.000237319357, -0.00971280504, 0.0156536475, -0.0220156927, 0.0209721159, -0.00936075579, 7.1313676e-05, -0.0236502085, -0.00599742169, -0.00367766409, 0.0169989802, -0.00491926866, 0.000100585683, 0.0168606751, 0.0281388462, -0.0130384192, 0.0192621592, -0.00253507355, -0.0138808247, 0.0300751198, 0.00226160628, 0.00300656911, -0.0401085429, 0.000664808496, 0.0169989802, 0.0464705862, -0.0129629802, -0.013050993, -0.0417682044, -0.015175865, -0.0339225233, 0.0179168247, 0.0355570391, 0.0156536475, -0.00205572, -0.0279125273, -0.0195764899, -0.00607914757, -0.0371161178, -0.0217265077, 0.0185203385, 0.0111775845, -0.00475581689, -0.0206452124, 0.0385997556, 0.015691366, -0.0148489615, -0.0145094851, 0.0205069073, 0.0112215905, -0.0551209562, 0.023096988, 0.00538447732, -0.000998784439, 0.024492614, -0.0245932, -0.00414915942, -0.0136545068, 0.0134533355, -0.010152868, 0.0147860954, -0.00278339442, 0.019287305, -0.024492614, 0.0596976057, -0.0223425962, 0.0284657497, -0.0262025706, 0.00188755326, -0.0292955805, -0.00168795348, 0.0369652398, 0.000118561446, 0.0261522774, -0.00848691724, -0.0146980835, 0.0217893738, -0.000851049204, 0.0136922263, -0.0485074483, -0.0109324064, -0.000339869614, 0.0333693027, -0.00998312887, 0.0290189702, -0.0356827714, -0.0301254131, -0.0281639919, 0.00286197709, -0.0453892909, 0.0509215035, 0.0164709054, -0.0187592302, -4.31467415e-05, -0.00995169673, 0.023323305, 0.0179294, -0.0190106947, -0.00235433364, 0.0620110743, 0.0653806925, 0.0355067477, -0.00646263035, -0.0109135471, -0.015024987, -0.00277239294, 0.0521033853, -0.0242914427, -0.0280634072, -0.00985739753, -0.0298488028, -0.0141071426, 0.00999570265, -0.00673924107, 0.0339225233, -0.0317850783, -0.0263534505, 0.0100522824, 0.0337213501, -0.0365126021, 0.0187215116, -0.00206200662, -0.00146949396, -0.0171624329, -0.0383734405, -0.0231975745, 0.0176905077, 0.0163703207, -0.0129126878, -0.034752354, -0.0255613383, 0.0205194801, 0.0104420511, 0.0374430232, 0.0518519208, 0.00474010035, -0.0155530619, 0.0697561726, 0.0135287745, 0.0209343955, -0.0104671977, -0.019211866, -0.0177156534, 0.0130132735, -0.0236502085, -0.0218396671, -0.0287675057, -0.0241657104, -0.0362611413, 0.0209721159, -0.00587797584, -0.0210601278, -0.00444463, 0.0101591544, -0.00563908508, -0.00217516534, -0.000750463514, 0.0114793414, -0.00190169807, 0.0113221761, -0.00245177606, -0.0452132672, -0.00510786707, -0.0135413483, 0.0369400941, -0.0184449, 0.0128749674, -0.00380968279, -0.00791483652, -0.0514998697, -0.0203686021, 0.00696555851, 0.0173636042, 0.0108066751, 0.000902913685, 0.0166343581, 0.00923502352, 0.0111712981, -0.0275101848, -0.0447354838, 0.0297482163, 0.0267055, -0.0338722281, -0.0054190536, -0.00407372043, 0.00704099797, 0.0290692635, -0.0196645018, -0.00274253148, -0.0329921059, 0.0114667686, -0.0172504447, -0.00328789465, -0.0116490796, 0.000548899232, 0.0315839052, -0.00482496945, -0.0231975745, 0.0361857, 0.0323634446, -0.00992026366, 0.00659464905, 0.0255739111, -0.0375184603, 0.0063117519, 0.0121268621, 0.0155027686, 0.000814115396, -0.0132521642, -0.0084617706, 0.00433147093, -0.0248069447, 0.0182940215, -0.00266394904, 0.0155782085, -0.010850681, 0.00870066136, 0.0172127262, 0.0017005268, -0.00605400093, -0.00187812338, 0.0264037419, 0.0343248658, -0.0309803914, 0.0217265077, -0.000147931685, 0.0106117902, 0.00855607, 0.00386311905, 0.00190012646, -0.0199159663, -0.00148678222, 0.0206703581, -0.0147735225, 0.00794627, 0.00058268971, 0.00174924789, 0.0449115075, -0.00722959638, 0.00358022167, 0.0229712557, -0.0111147184, -0.00180111243, -0.0350792594, 0.015024987, 0.000143707875, -0.0109512666, 0.0116176466, 0.0105866436, 0.031307295, -0.00712901028, 0.00605400093, -0.000452242675, 0.0111021446, -0.0328915194, -0.00291384151, -0.00167538028, -0.0388009287, -0.00490040891, -0.0422711335, -0.0108758276, -0.0174138974, 0.000396645512, 0.00100349938, 0.0299242418, 0.00738047482, 0.0619607829, -0.0147483759, 0.0148992548, -0.00732389512, 0.0164080393, -0.0250081159, -0.039379295, 0.01605599, 0.0166092105, 0.029697923, -0.000609800743, 0.0092916023, 0.00588111952, 0.0200542714, 0.00542219728, 0.00289655337, -0.0294967517, 0.000985425431, -0.00336019066, 0.0058213966, -0.00825431291, -0.00899613183, -0.0130635658, 0.0135790678, 0.0102723129, 0.00854349695, -0.0104043316, -0.0226820726, 0.00183726044, 0.0113850422, 0.0271581355, 0.00120467076, 0.025297299, 0.0077639576, -0.0112278769, -0.00912815053, -0.0112655964, 0.00469923764, -0.00416487595, -0.0196016356, 0.00128403911, 0.0106809428, 0.015691366, -0.0149872676, -0.00858121645, -0.0126423631, 0.00741190789, -0.00215159077, 0.00161251426, -0.0093859015, 0.0671912357, -0.0160685629, -0.019060988, -0.0237256493, -0.00682096696, 0.0160434172, 0.0242537241, 0.02470636, -0.0198279526, 0.0272838678, 0.0128875412, 0.00519587938, 0.00664494187, 0.0244674683, -0.00885154, 0.0165463444, 0.0287675057, -0.0113850422, -0.00963108, -0.0134784821, -0.0157542322, -0.00820402, 0.014295741, -0.0142328748, 0.0108381072, -0.00399513775, 0.00515816, -0.00709757768, 0.0067455275, 0.00317945075, 0.0209469683, -0.00231975736, -0.00622059591, -0.0103980452, 0.0233861711, 0.0360096768, -0.0295219, 0.0358336493, -0.0020117138, 0.0153518906, 0.00729246205, 0.0193878915, 0.0109827, 0.0134281889, -0.0096876584, -0.0158422459, -0.0293710195, -0.00380025292, 0.0204691868, 0.0318102241, 0.0441571176, -0.0190987065, -0.00460179523, -0.00545363035, 0.0410892516, -0.021927679, 0.0253098737, 0.00916587096, -0.010045995, -0.00976938475, 0.00602885475, -0.0462442674, 0.0283148699, 0.0137425195, 0.017891679, -0.033218421, -0.00468666432, 0.0154524762, -0.00112294487, 0.00105929305, 0.0277616493, 0.00341362669, -0.0175773483, 0.00966879912, -0.0315084644, -0.0004251317, -0.0150501328, -0.0415167436, -0.0148489615, 0.0114416219, -0.0145472046, -0.000774431217, -0.00325646158, 0.00659464905, -0.03211198, 0.0225311927, -0.0149495471, 0.0100900019, 0.000889554678, 0.0126423631, -0.00726731587, 0.00444148667, -0.00426546158, 0.0107563818, -0.00651292317, -0.00953049399, -0.0104797715, -0.0360096768, 0.000874623947, -0.0544671491, 0.0201171376, 0.020532053, -0.0516507514, 0.00851835, -0.00946134143, -0.00704728439, 0.065632157, -0.00348906592, 0.022506047, 0.00258222315, 0.0144340461, -0.0092538828, -0.00215001893, 0.00384740252, -0.0159679782, -0.00222545839, 0.0119194034, -0.0321874209, 0.0124726249, 0.0156285018, 0.0226192065, 0.014446619, -0.0050701471, -0.0129001141, -0.000914701086, 0.00809086114, -0.0210852735, -0.0146980835, -0.0248320904, 0.0101214349, -0.0289183855, 0.0132144447, 0.00713529717, -0.011473055, -0.0146352174, -0.0012698943, 0.0217265077, 0.0493624248, -0.00558250537, 0.0358839445, 0.00947391428, 0.0321622714, -0.0113410363, 0.00474953046, -0.0109009733, 0.0317599289, -0.0121394349, -0.0230844151, 0.020532053, 0.00804685522, 0.00407372043, 0.0350792594, -0.0351044051, 0.0105866436, -0.0170869939, -0.0131138591, -0.0345260352, 0.00552278291, 0.00236219191, -0.00318416557, -0.00232761563, 0.0121834408, 0.0114919143, -0.00515816, 0.00652549649, -0.0136042144, 0.0168481022, -0.0131390048, -0.0102534536, 0.000288398034, 0.0221791435, 0.0297733638, 0.0245429073, 0.00347334938, 0.00497270469, -0.0144843385, 0.0201045647, 0.00934818201, -0.0193124525, 0.0140317036, 0.0290189702, 0.0179796908, 0.0120639959, 0.00742448075, -0.0371412635, 0.032413736, -0.0228832439, 0.0160937104, 0.0109072607, -0.0129881268, 0.0271581355, -0.000417273433, 0.0281639919, -0.0212110057, -0.00849320367, 0.0221791435, 0.00634632818, 0.00389455212, 0.0251841415, -0.006396621, -0.00437547732, -0.00382225611, 0.0164834801, -0.0284154564, -0.000228282355, 0.0137928119, -0.0194130372, 0.0121080019, 0.0148866819, 0.0368395075, 0.04076235, -0.0115673542, 0.0337464958, -0.028591482, -0.0155907813, 0.0208841022, -0.0238388069, -0.00242034299, 0.0126612233, 0.00100035605, -0.0180048384, 0.0167223699, -0.0370155312, 0.0115170609, -0.0242914427, 0.0177533738, -0.0258002281, -0.0115044881, 0.018985549, -0.00376253319, 0.00291541312, 0.0303768776, 0.00342934323, 0.00882010721, -0.0114856279, 0.00767594529, -0.00642805407, 0.0048972657, -0.0198908187, -0.0544168577, -0.0282897241, -0.0151381455, -0.0134407626, 0.001951991, -0.0637713224, 0.0305780489, -0.0123154595, 0.00883268, -0.024115419, -0.0309300981, -0.0327406414, 0.0317850783, -0.00497584837, -0.0119256908, -0.0209218226, -0.00693412591, -0.0120577095, 0.00516758952, -0.00995169673, 0.00095006323, 0.0164331868, 0.0164583325, -0.025146421, 0.0157668069, 0.0159679782, -6.16382e-05, 0.000537504733, -0.00140977127, 0.00719816331, -0.00311501301, -0.0168355294, 0.0382477082, -0.0102157341, -0.0592952631, -0.000620016479, 0.00387883559, 0.0104043316, -0.0097819576, 0.0187843777, -0.0343751572, 0.0251715686, 0.0137928119, -0.0079336958, -0.0301505588, -0.0132647371, -0.0190861337, -0.0380213894, -0.00333818747, 0.00842405111, 0.00756907277, -0.00490040891, -0.00300499727, -0.0198153798, -0.0181179959, 0.0130384192, -0.0356576256, -0.0173258837, -0.0162320156, 0.0196393561, 0.00587168941, -0.0315839052, -0.0207835175, 0.0211732872, -0.0151632922, 0.0378705114, -0.000238694542, -0.0184071809, 0.00123846123, -0.000970494701, 0.00592826866, -0.0464454405, 0.0148238158, 0.0195639152, -0.0274096, -0.0101780137, -0.0379459485, 0.0138808247, -0.00281797093, 0.0167349428, -0.0338973776, 0.022430608, 0.00135554932, -0.0341739878, -0.00755021302, -0.0261774249, -0.00965622626, 0.0042780349, 0.00997684244, 0.00399513775, 0.0320113935, 0.0346517675, -0.0232101474, 0.0240399782, -0.0549700782, -0.0269318167, -0.0219779722, 0.00913443789, -0.00163923239, -0.0139814103, -0.0212738719, -0.00632118154, 0.00698441872, -0.0273593068, 0.0121080019, 0.00434404425, 0.0212990195, -0.0175396297, -0.00429375144, 0.00391655508, -0.00183726044, -0.00799656194, 0.0061703031, -0.00106793712, -0.00320459716, -0.011623933, -0.042019669, 0.000875409809, -0.0460179523, -0.00627717562, 0.00259008142, -0.0197399408, 0.025586484, -0.00397627801, 0.00385368918, 0.00660093548, 0.0145849241, -0.0124349054, -0.00582768302, -0.00877610128, -0.00144591928, -0.00265451916, -0.0285160411, -0.00942990836, -0.0189226829, 0.0089898454, 0.0235747695, 0.0394798815, -0.0092538828, -0.0133653227, 0.00775767118, -0.0162948817, 0.00108601106, -0.00274253148, 0.000999570242, -0.0038819788, 0.00310715474, 0.00756278634, 0.0193878915, 0.00155043404, -0.0141825816, 0.0158422459, 0.0359342359, 0.000714708469, 0.00269852532, -0.013931117, -0.0319359563, 0.00727988919, 0.0111147184, 0.00101371517, 0.00246120594, -0.0123657528, -0.0138808247, -0.033947669, 0.00243920297, 0.0274096, -0.0194507577, -0.0174641889, 0.0161062833, 0.000564615766, -0.0299242418, -0.0107878149, -0.0341488421, 0.00393541483, -0.0259762537, -0.0152638778, -0.00633061165, -0.00157872378, 0.0111335777, 0.00678953389, -0.0241028443, -0.0341991335, 0.0313324407, 0.00809714757, -0.0159428306, -0.00404228736, 0.00159051118, 0.00961850584, -0.00729246205, 0.0106495097, -0.00434404425, -0.015615928, -0.0214876179, 0.00575538725, 0.0160308443, 0.0161565766, -0.0192621592, -0.0168732479, -0.0349786729, -0.0160937104, 0.00483754277, 0.0197525136, -0.0148238158, 0.00814744085, 0.00691526569, -0.0272838678, 0.0323131531, 0.000917058554, -0.0159931239, -0.00433147093, -0.0372669958, -0.00319359545, 0.0195639152, -0.00934818201, -0.000492712716, 0.0638216212, -0.0240274053, -0.0308295134, -0.0353307202, 0.0140065569, -0.00495070172, 0.00278182281, 0.0297482163, -0.0142454477, 0.0184951928, 0.0124914851, -0.0263785962, 0.0321371257, -0.0128498217, -0.0032218853, -0.023247866, 0.0035330723, -0.0191112794, -0.00508586364, -0.0243920293, 0.0100774281, -0.00160387019, -0.00862522237, -0.000267377181, -0.00830460526, -0.00568623468, 0.000837690139, 0.00705985771, -0.0305277556, 0.00363365794, 0.00157322304, -0.01059293, -0.0106243631, 0.0086315088, -0.0105237775, 0.0188849624, 0.000312562159, -0.00290441164, -0.00445720321, 0.00986997, 0.00514873, -0.00762565248, 0.0133276032, 0.0170492735, 0.0145094851, -0.00105614972, 0.00665751519, 0.0111021446, -0.0156787932, -0.00205572, 0.000341048348, -0.00572081096, -0.0193501711, -0.0135916406, -0.0032847512, -0.0201548561, -0.0287172124, -0.0111272912, 0.0048438292, -0.022870671, 0.0134030422, -0.0146100707, 0.00167223706, 0.00637461804, 0.0197776612, 0.00319045223, -0.0292955805, 0.0173133109, 0.0302259978, 0.00589683605, -0.00934818201, 0.00569252111, 0.0229964033, -0.00527760526, -0.00398885133, 0.021927679, -0.0312067084, 0.000767358753, -0.0122274477, -0.00949906092, -0.0128749674, 0.00711015053, 0.0163200274, 0.00960593298, 0.0117685255, 0.014735803, -0.00506700389, -0.0329921059, -0.00594712887, 0.000508822093, 0.0167223699, -0.00814744085, 0.000368355773, 0.0078393966, 0.0075376397, -0.0144969122, 0.0185832046, 0.0239645392, -0.00556993252, -0.00221917173, 0.0123468926, 0.00505443057, 0.0037028105, 0.00639033457, 0.0173384584, 0.021776801, 0.0197022203, 0.00883896742, 0.00378453638, 0.00544420024, 0.0195639152, 0.0165463444, 0.00411458313, 0.0111335777, 0.000765394187, 0.00792112295, 0.000685632869, -0.0258253757, 0.0191867203, 0.0211607143, -0.0146100707, -0.018985549, -0.000582296809, -0.029697923, -0.0357330665, -0.0169109683, 0.0105112046, 0.0106746554, -0.0225186199, -0.00430003786, -0.0203434546, -0.000276807084, 0.0254858974, -0.0158170983, 0.0163828935, 0.017967118, -0.017740801, -0.0101591544, 0.0263283029, 0.000551649602, 0.00971280504, 0.0160056967, -0.0186837912, 0.00525245862, -0.000870694814, 0.00144434755, 0.000959493162, 0.00186712178, 0.0141700087, 0.00923502352, -0.054115098, 0.000592905446, 0.0171247125, -0.000712350942, 0.0313324407, -0.0171121396, 0.00858121645, 0.0139185442, -0.0375939, 0.00349220936, 0.00113316067, -0.00689011952, -0.00396056147, -0.0184826199, -0.0163577478, -0.0141322892, 0.00669523468, -0.00711643742, -0.0107438089, -0.0180425569, -0.0212990195, -0.022656925, 0.000228282355, 0.00303171552, 0.00808457471, 0.0187969506, 0.0198782459, -0.0032596048, 0.0166343581, -0.0166092105, -0.0175647754, -0.00455464562, 0.016496053, 0.00502614118, -0.00190012646, 0.00147813803, -0.00222388655, 1.24934e-06, 0.0182814486, -0.028666921, 0.0118439645, 0.0144340461, 0.008103434, 0.000190660954, -0.00956821349, 0.0218648128, 0.0299996808, -0.0242160037, -0.00430946797, -0.00121174322, 0.00145456335, 0.00651292317, -0.0256493501, 0.022870671, -0.0236502085, -0.0371412635, -0.0240902714, -0.0291195568, 0.033645913, 0.00692783901, 0.0148615353, -0.00523674209, 0.000882482214, -0.0037028105, -0.0202805884, 0.032262858, -0.0139814103, 0.0177910924, -0.0409383737, -0.010410618, 0.00484697288, 0.00517073274, -0.00150564197, 0.00558564905, 0.00358022167, -0.00474324357, 0.0320113935, -0.0102723129, -0.0117999585, 0.00658836262, -0.0304774623, 0.0355067477, 0.0231095608, -0.00160308438, 0.00585597288, -0.00124474789, 0.0346769169, -0.0512232594, -0.00805314165, 0.0201045647, -0.0329669602, 0.0508209169, 0.00435347436, -0.00600999454, 0.0216384958, -0.000151173212, 0.0304523166, 0.0131138591, -0.0287675057, 0.0071038641, -0.0203183088, -0.0097819576, 0.0139059713, 0.0149746938, 0.0101717273, 0.0172001515, 0.00235276204, 0.0170367, 0.00651920959, -0.00424974505, 0.0476776138, -0.0241028443, -0.0145974979, 0.0107123759, 0.0172378719, 0.0131767252, 0.00261208462, 0.00496956147, -0.0034010536, -0.0166972242, 0.0081663, 0.023021549, 0.00274567492, 0.00201642863, 0.0317850783, -0.0224054623, 0.00997055601, 0.0127492361, -0.0149369743, 0.00263251597, -0.0372669958, 0.00450435281, 0.0227072183, 0.00337590696, -0.00939847529, 0.0141071426, -0.0154776219, 0.00122117309, -0.00274095987, 0.0185329132, 0.00250678393, -0.0324640311, -0.0166972242, 0.0231472813, -0.0273341592, 0.0372669958, -0.0155907813, 0.0072358828, 0.0090275649, 0.0190484151, -0.0086315088, 0.0158045255, -0.0142328748, 0.00522102555, -0.00525245862, -0.0107500954, 0.000481318217, -0.0140442764, 0.041416157, -0.00971280504, -0.0204063207, -0.0286417734, -0.0213996042, -0.00684611313, 0.00522731245, 0.0060477145, 0.0168606751, -0.00456093205, -0.0157542322, 0.0220659841, -0.00016374643, 1.06577609e-05, 0.00437547732, -0.0238513816, -0.0266552065, 0.0150124133, -0.00795884244, 0.0139436908, 0.00739304768, 0.000610979449, -0.0173384584, -0.00300656911, 0.00503871404, -0.0184449, -0.0178539585, 0.00585597288, -0.00229303935, 0.00920987688, 0.0126926564, -0.00204314664, -0.0297230706, 0.0166343581, -0.0164331868, 0.00108679687, -0.0130761387, -0.0468226373, 0.00438490743, 0.0266300607, 0.0204440411, 0.0109827, 0.00145849248, -0.00331618427, 0.0157416593, 0.00434404425, 0.0107249487, 0.0233610254, 0.0218899604, -0.0282897241, 0.00400142418, 0.0128561081, -0.00932932273, -0.00972537883, -0.00621430948, 0.0189478286, 0.0126486495, -0.0265797675, 0.011655366, 0.00993912295, -0.0024910674, 0.0251212753, 0.00628031883, -0.0215882026, -0.0134030422, 0.0132773109, -0.0172001515, 0.000221995753, -0.0129504073, 0.0228078049, 0.0164080393, -0.0134030422, -0.0100334221, 0.00511415349, 0.00320459716, -0.0129881268, 0.017527055, 0.0071415836, -0.0181305707, -0.0019299878, 0.0186460707, -0.0203434546, -0.0201045647, 0.0280885529, 0.0107186623, 0.0339225233, 0.00440062396, 0.0103603257, -0.0330926888, -0.00292484323, -0.00292955805, -0.0259259604, 0.00663236855, -0.00835489854, 0.0202805884, 0.000481711148, 0.0271832813, 0.00981967803, -0.0270324033, -0.00868180208, 0.0321874209, 0.00718559, 0.00363365794, -0.00647520367, -0.000810972066, -0.0290441159, -0.0302008521, 0.0383231454, 0.0072358828, 0.0148866819, 0.0100711416, 0.00672038132, 0.00816001371, -0.0286166277, -0.0211732872, 0.0109386938, -0.0062646023, 0.0140568493, -0.00979453139, -0.0126486495, 0.00129582651, -0.0202177223, -0.012170868, 0.00446663331, -0.0199914053, 0.00615144335, 0.0367640667, -0.0138179585, 0.0316341966, -0.0101340078, -0.0344757438, -0.00895212591, 0.00781425089, -0.00919101667, -0.00530589512, -0.00485640252, 0.00676438725, -0.0140568493, -0.00584968645, -0.00839890447, -0.017376177, -0.00986997, 0.0156410746, 0.0265043285, 0.0142705943, -0.00693412591, 0.000613729877, -0.00623002602, -0.0146729369, 0.00809714757, 0.021550484, -0.0145974979, 0.0283651631, 0.0119068306, 0.0173133109, -0.0086315088, 0.0379459485, -0.0224431809, 0.00864408258, -0.000215119784, -0.00169424014, 0.0171372853, 0.00274410332, -0.0257499348, -0.019149, -0.0212738719, 0.00522416923, -0.0206703581, 0.00904642511, -0.00516444631, -0.00982596446, 0.0121080019, -0.00697813183, 0.0211229939, -0.00847434439, -0.00294370297, 0.0125669241, 0.0640730783, 0.008103434, 0.0172001515, 0.00782682374, 0.0118628247, 0.00867551565, 0.014522058, -0.00697813183, 0.0076696584, -0.00150564197, -0.0180677045, -0.00909671839, -0.00394170173, -0.0122085875, -0.0071038641, -0.00678324699, 0.000365212472, -0.0104483385, -0.0315839052, 0.0175773483, 0.0195513424, 0.0214498974, 0.0244800411, 0.0110267056, 0.0100711416, -0.011001559, -0.00885154, -0.0320616886, 0.000322385, -0.00388826546, -0.0122085875, 0.0220031179, 0.00589997927, 0.00523988577, 0.0218773875, 0.0299745351, -0.00230246922, 0.0101402942, -0.00530903833, 0.00102000171, 0.00171781494, 0.0125417775, 0.00954306684, -0.0398067869, -0.00608229078, -0.00138776808, 0.00886411313, -0.00839890447, -0.0317599289, -0.00364623102, -0.00868808851, 0.020305736, -0.00369338063, 0.0387506336, -0.0137048, -0.0237507951, 0.0242034309, -0.0226317793, 0.00137519487, 0.011881684, -0.00771366479, 0.00218931027, 0.00540333753, -0.0131641515, -0.0168732479, 0.0220408384, 0.00320774037, 0.0142328748, -0.0107375216, -0.020016551, 0.00161880092, 0.000656950288, -0.00788969, 0.00476839, -0.00271424185, -0.0108381072, 0.0153518906, 0.00836118497, 0.00192370126, -0.0238891, -0.000956349832, -0.00738676125, -0.0192495864, -0.0075376397, -0.00912815053, -0.0026466609, -0.00365566113, 0.00809714757, -0.0229838286, -0.00841147825, -0.0242788699, -0.0325143225, 0.0117873847, -0.00492241187, -0.00128011, 0.00573338429, -0.0123154595, -0.0154021829, -0.0188723896, 0.00194727606, -0.0172755923, 0.0345763303, 0.0180299841, -0.02470636, 0.0129378336, -0.0154147567, 0.00066284393, -0.0406366177, -0.0176150687, -0.0251967143, -0.0230341218, -0.0224557538, -0.000272877951, -0.00391655508, -0.00235119043, -0.0140191298, 0.000869909, 0.0190484151, -0.0124977715, -0.00977567118, -0.0168103836, 0.0208841022, 0.0182311554, -0.0201548561, -0.0123028867, 0.00532475486, 0.00604457082, 0.00584339956, -0.00208400958, -0.0102157341, 0.00257436489, 0.0184574742, 0.0124034723, -0.0128246751, 0.00668266136, -0.0174641889, 0.0120577095, 0.0162948817, -0.00398570765, -0.00302385725, 0.0173636042, -0.0020950113, -0.00712272385, -0.0125417775, 0.00700327847, -0.00561079523, -0.00588111952, 0.0101465806, -0.000811757927, -0.0206326395, -0.0254733246, -0.0306283422, 0.000842405134, -0.00428117812, 0.022656925, -0.0114982016, 0.00356136193, 0.0322880037, -1.58515777e-05, -0.0062646023, -0.00259165303, 0.00649406342, -0.0108318208, -0.0108192479, 0.00694669876, 0.0128561081, 0.0211481396, -0.00506700389, 0.00336647709, 0.0304774623, 0.0112593099, 0.00226317788, 0.00222388655, 0.0163451731, -0.0213618856, 0.0116993729, -0.00331618427, 0.00327217812, 0.0307540726, -0.0183191672, -0.0012691085, -0.00164866226, 0.00360222487, -0.00320774037, 0.00930417608, -0.00354250218, 0.0245932, 0.00272210012, 0.00371224037, 0.00643119728, 0.0126423631, 0.0248949565, 0.0113724694, 0.00470552407, 0.0141574349, -0.0116427932, -0.00952420756, 0.0109324064, -0.00344191655, -0.00755649945, -0.00868808851, 0.000161094256, -0.0179168247, 0.00810972136, 0.0118313916, 0.0333944485, 0.0171875786, -0.010850681, -0.00562022533, 0.0112090176, -0.0145974979, 0.00435033068, 0.00516758952, -0.0127052292, -0.0104420511, 0.0271581355, 0.0082354527, -0.017451616, 0.00927274302, 0.0216510687, -0.00260579796, -0.0187089369, 0.00418687938, -0.00126046443, 0.00206986489, 0.00459236512, -0.0116805127, 0.00829203241, 0.00139091141, -0.0072358828, -0.0289938245, -0.00387883559, 0.00606028736, 0.00646263035, 0.0300248265, 0.000726495811, -0.000271109864, 0.0035330723, 0.00903385226, -0.00848691724, -0.00447291974, -0.0140819959, -0.0166469309, -0.0163074546, -0.0216510687, 0.0239142459, 0.0160308443, -0.00301128393, -0.00278339442, -2.41764174e-05, -0.00396999111, -0.0155153424, 0.0167600904, 0.0062646023, -0.00469609443, 0.0168983955, 0.0160811357, 0.00675181393, 0.0145849241, -0.026026547, -0.00875724107, -0.00370909716, -0.015829673, 0.020456614, 0.00751878, -0.00798398908, -0.000726888771, -0.0122588808, 0.00650663674, 0.00790226273, 0.00380653958, 0.00948648714, 0.0186334979, 0.00512672681, -0.021701362, 0.00605400093, -0.00382539933, -0.000164532248, 0.01781624, 0.0108443946, -0.0355570391, 0.00158501032, -0.0011017276, 0.00746848714, -0.0158170983, 0.0128372479, 0.0147609496, 0.00289026671, 0.0129504073, 0.01261093, 0.0200416986, -0.0213870313, -0.0199285392, 0.0103226062, -0.00266237743, -0.00259636808, -0.0011025134, -0.00924131, 0.000724138343, -0.0060477145, -0.00761936558, 0.00596913183, 0.0038348292, 0.016496053, -0.00513615645, 0.0142077282, 0.0152387312, 0.020607492, -0.0155656347, 0.00142234447, 0.00755021302, -0.0179545451, -0.00365880434, 0.021110421, -0.0112027312, -0.00922873709, -0.00953049399, -0.013931117, -0.0279125273, 0.0162697341, 0.00590940891, 0.00910300482, -0.0047118105, 0.0110267056, 0.00459550833, -0.0280885529, -0.0232101474, 0.00285097561, -0.0203434546, 0.000702135207, -0.018985549, -0.000923345156, -0.00204000343, -0.0020258585, -0.0165337715, 0.0118439645, -0.0110267056, -0.0111335777, 0.00890812, 0.0110518523, -0.00865036901, -0.00430946797, 0.00443205656, -0.000206082783, 0.0031134414, -0.00172567321, -0.00572081096, -0.0145346317, -0.00921616331, -0.0131641515, -0.0161817223, 0.00132804539, 0.0186586455, 0.0138933975, 0.00241877139, -0.00280539761, 0.0206452124, -0.0129881268, -0.00913443789, 0.0100648552, -0.0158170983, 0.00699699158, 0.00446034642, -0.0102094468, -0.00247377926, 0.0306031946, 0.00431261119, -0.0269318167, 0.0174641889, 0.0333944485, -0.0180677045, 0.00755649945, -0.0221791435, -0.0138808247, 0.0236502085, -0.00232447241, -0.0209595431, -0.019060988, 0.0265294742, -0.0235999171, 0.00442262692, -0.0486080311, 0.00667008851, -0.0219151061, 0.00748106046, -0.00770737836, -0.0223174486, -0.0156787932, -0.00479668, 0.0109952725, 0.0130384192, -0.00627717562, -0.0213744584, 0.00787083, -0.00803428143, 0.00354250218, 0.0105740698, -0.00910929125, 0.00408943696, -0.0115233473, -0.00348277926, -0.00461122487, 0.0207206514, 0.020532053, 0.0147609496, 0.0040139975, 0.00448549306, 0.0126926564, 0.0134784821, 0.0332435705, -0.00442891335, -0.016131429, 0.000450278108, -0.00771995122, -0.0141322892, -0.0196267813, 0.00870694872, 0.00134769105, -0.00144277595, -0.0125543512, -0.0214876179, 0.00970651861, -0.00504185772, 0.0137173729, -0.00303800195, -0.0190484151, -0.00548191974, 0.0166217852, -0.0101465806, 0.0021185861, 0.0117245186, -0.00219874014, -0.00566737494, -0.0181431435, -0.0115359211, 0.00594398519, 0.00764451222, -0.00141212868, -0.0245429073, -0.00398570765, 0.00904013868, -0.0194507577, -0.00554792909, 0.0221414249, 0.00527446205, -0.0149746938, 0.00335704722, 0.00914072432, 0.0140317036, 0.0035236422, 0.00737418793, 0.0113724694, -0.00724845612, -0.00230246922, -0.0111461515, -0.0359090902, 0.00459865201, -0.000932775089, 0.0183694605, 0.000339280232, -0.0164080393, 0.0168355294, -0.00695298566, -0.00973795168, -0.00155829231, -0.00276610628, 0.0114290481, 0.0152387312, -0.0137048, -0.0022050268, -0.00246434938, 0.00372795691, -0.00615144335, 0.00191112806, 0.00712901028, 0.0102345934, 0.013340177, 0.00142313028, -0.00712272385, -0.00620173616, -0.0109764133, -0.0227575116, -9.80317491e-05, -0.00835489854, -0.00278968108, 0.000368748704, -0.0128749674, 0.00358965155, -0.0135916406, 0.0280131139, -0.0120325629, -0.0131012853, 0.0208338108, 0.0229209624, 0.0199662577, -0.00108286773, -0.00244391779, -0.0253224466, -0.00973166525, 0.0032847512, -0.00813486706, 0.00855607, -0.0211607143, 0.00131704379, -0.0104671977, 0.00245334767, -0.00082983193, 0.0144591928, 0.00214216067, -0.0219025332, -0.00973166525, 0.0297230706, -0.0269569643, 0.0171247125, -0.0141825816, -0.00374681689, 0.00758164609, 0.00960593298, 0.00381282624, 0.0134784821, -0.0198782459, 0.0227323659, 0.011001559, 0.0023354739, -0.00931046251, 0.0294967517, 0.00394798815, -0.000639662088, 0.00865036901, 0.0101465806, -0.00184983364, 0.00326274824, 0.0210475549, 0.0132270176, 0.00208715303, -0.0176905077, 0.0194130372, -0.00417744927, 0.0100648552, -0.0121582951, 0.0146477902, 0.0126549369, -0.0202554427, -0.00822916627, 0.000704885635, -0.000597620441, -0.00854349695, 0.0109324064, -0.00747477356, 0.00510786707, -0.00580568, 0.00393541483, 0.00543477, 0.00591883902, 0.0359342359, -0.00172252988, 0.0251087025, -0.0209846888, -0.0231221337, -0.0100648552, 0.00346706295, -0.00949906092, -0.00703471154, 0.0176402144, -0.00451063924, -0.00751249352, 0.00855607, -0.00104907725, 0.00532789808, 0.0316341966, 0.0170869939, 0.0136922263, -0.0071038641, 0.00862522237, -0.00717930309, -0.00146163569, -0.00435347436, 0.00384111586, 0.0249201041, 0.00695927208, -0.0115233473, -0.00742448075, 0.00764451222, -0.0297230706, 0.0244548954, 0.0210978482, -0.00584025634, 0.0163577478, 0.0146100707, 0.0109449802, 0.0136545068, -0.012504058, 0.00201014197, -0.00545677356, 0.012428619, -0.00981339067, 0.0030662918, 0.011806245, -0.0161691494, 0.0203308817, -0.0106935157, 0.00877610128, -0.016282307, 0.0334195942, -0.00144749088, -0.00895841233, 0.00163608906, -0.00756907277, -0.00730503537, 0.00245177606, 0.0221037045, -0.00562336855, -0.012428619, 0.0183317419, -0.0242285766, 0.000533182698, 0.00203686021, -0.00138305314, 0.0202177223, 0.00509843696, 0.00474324357, -0.00481868302, 0.0148866819, 0.00199442566, 0.00721702306, -0.00263094436, 0.000557150401, 0.00445091678, -0.00648777653, -0.020456614, -0.0183946081, 0.00839890447, -0.0120011298, -0.0238513816, -0.00959964655, -0.00656321598, 0.00276139146, 0.00677696057, 0.00051668036, -0.00317002065, -0.0323634446, -0.00249892566, 0.0130258463, -0.0111712981, -0.00426860526, 0.0200794172, 0.00595027208, 0.00146006409, -0.00544420024, 0.0138682518, -0.00323131518, 0.00777024403, -0.0195010491, -0.00494755851, 0.0226946454, 0.00467094779, 0.00531846797, 0.0196267813, -0.0249075312, 0.0112844566, 0.00658207573, 0.00578682031, 0.00579939364, 0.0142328748, -0.00537190447, 0.00648149, 0.032262858, 0.00772623811, -0.0224180352, -0.00455778884, 0.00071195804, -0.0188095234, -0.0091595836, 0.0207080785, 0.0112027312, 0.0175899211, 0.0132521642, -0.0126989428, -0.0163200274, -0.0198405273, -0.0179922637, 0.0194256101, -0.00368709397, 0.0112215905, -1.24565649e-05, 0.0160056967, 0.0119382637, 0.0287172124, 0.013931117, 0.0114290481, 0.00182468724, 0.0140442764, -0.0155907813, 0.0111461515, 0.0213870313, -0.00261365622, -0.00690269284, -0.00521159591, -0.00944876764, 0.00452321256, 0.00198499556, 0.00315430434, 0.00199599727, -0.0200291239, -0.0138431052, 0.0258756671, -0.0283903107, 0.00104121899, 0.0239142459, -0.00327532133, -0.0281891376, 0.000432989938, 0.00228832429, -0.00228360947, -0.0309049524, -0.00856864266, -0.00136340759, -0.003665091, 0.0128183886, 0.0247315057, -0.00323131518, -0.0290692635, 0.0121205747, 0.0104986308, -0.00651920959, -0.00645634392, -0.0106306495, -0.02185224, -0.00482182624, 0.0108821141, 0.00147499482, 0.0135790678, -0.0167978089, -0.00919730403, -0.0164457597, -0.0143837528, 0.00826059934, 0.00418059248, -0.0192747321, -0.00184983364, -0.0077639576, -0.0120011298, -0.0155907813, -0.00481868302, 0.0137425195, 0.0155153424, -0.000145574202, -0.0108066751, -0.0120388493, 0.00463951472, 0.0125794969, -0.00712901028, 0.0365628973, 0.0174767636, -0.00834232569, -0.0132773109, -0.00208558142, -0.00469295075, 0.00990769, 0.0123971859, -0.0183820333, 0.00948020071, -0.0172630176, 0.00530589512, 0.0112341633, 0.00189541152, -0.00426546158, -0.015905112, 0.005387621, 0.0109701259, -0.00750620663, 0.0102157341, 0.00767594529, -0.00185926352, 0.0147860954, -0.0063023218, 0.00557307573, -0.00530903833, -0.00910300482, -0.00016374643, -0.00278968108, 0.00694041234, 0.00407372043, -0.0299745351, -0.00279125269, 0.00142234447, -0.025511045, 0.00397627801, -0.0268060844, -0.0099139763, -0.00631803833, 0.00733018201, -0.0236753561, 0.00558879226, -0.00926016923, -0.0148489615, 0.0107249487, -0.00726102898, 0.0110769989, 0.0121142883, -0.00460179523, 0.0191992931, -0.0181808621, 0.00681468, -0.00788969, 0.00498213479, 0.0202051494, 0.0107312351, -0.013780239, 0.0178413857, -0.00371538382, 0.0350792594, -0.00625202898, 6.24240274e-05, -0.000533575658, -0.0221414249, -0.0187843777, -0.0119508365, 0.000429846637, 0.00385368918, -0.000871480675, 0.0133024566, -0.00594712887, -0.00151507184, 0.00277082133, -0.0144214723, -0.00599742169, -0.00342305657, 0.036588043, -0.0328160785, 0.000770502083, -0.0134030422, 0.00606028736, -0.0234993305, 0.0106432233, 0.0146100707, 0.00319673889, 0.0097819576, 0.00369966729, 0.0234113187, 0.000181722193, 0.0225186199, 0.00397942122, -0.0059156958, -0.00170681335, 0.00392284151, -0.0150878532, 0.00178696762, 0.00151821517, 0.00249735406, -0.00871323515, 0.0102345934, -0.0274598915, 0.000555971637, 0.011183871, -0.00537190447, -0.00363051449, -0.00741819432, -0.011290743, -0.014735803, -0.00175239122, 0.0144591928, 0.00176967937, 0.00841776468, 0.0236502085, 0.0205194801, -0.0276359171, 0.00489412248, -0.0141825816, -0.0264037419, 0.000933560892, 0.00369966729, -0.00487211905, 0.00459236512, -0.0189352557, -0.00787083, 0.00548191974, 0.00692783901, 0.00730503537, -0.0172378719, 0.00142077287, -0.0026482325, -0.00483125634, 0.0104986308, 0.00362422806, 0.0214750431, 0.00694669876, -0.00149385456, 0.0131390048, 0.0146477902, 0.0101088611, -0.0203560274, -0.0275856238, -0.0222671553, -0.00339476694, 0.0174013227, 0.00941733457, -0.00264980411, -0.00229932601, -0.00455778884, -0.00221288507, -0.0257247891, -0.0167600904, -0.00750620663, -0.00536561757, 0.00463008462, -0.00269852532, 0.00762565248, 0.00544734346, 0.00998312887, 0.0155027686, -0.0182185825, -0.00200071209, 0.00825431291, 0.0192747321, 0.0174641889, 0.0107312351, -0.0244423226, -0.0196770746, 0.00726102898, 0.0211229939, 0.0112970294, 0.0167600904, 0.00623631245, 0.0215253364, -0.00969394576, 0.0113724694, -0.0109764133, 0.0110707125, 0.00992026366, -0.0156536475, -0.00675810082, 0.00663236855, -0.00503557082, 0.000678167562, -0.0023370455, -0.014660364, 0.0169989802, 0.0209469683, -0.0247692242, 0.00438490743, 0.0250709821, -0.0135790678, 0.00433147093, 0.00671409443, 0.0195890628, 0.00465837447, -0.00227889442, 0.0117936721, -0.0238639545, 0.01605599, 0.00645634392, 0.0255739111, 0.0292955805, 0.00992655, 0.0102597401, -0.013780239, 0.00753135327, 0.0143586062, -0.00136497919, 0.00403285725, -0.00571766775, 0.0140191298, -0.00609800732, 0.0253601652, 0.00784568302, -0.0263534505, -0.0315084644, 0.0211481396, -0.0283400174, 0.0121394349, 0.024341736, -0.014811242, 0.0144591928, -0.00706614461, 0.00814744085, 0.00322817196, 0.0157668069, 0.0154021829, 0.0218270943, 0.00155357737, -0.000812543731, -0.0079714153, 0.0018089707, -0.0198028069, 0.0140317036, 0.00544734346, -0.0101277214, -0.00157007971, 0.00706614461, 0.00423402851, -0.0135413483, -0.015905112, -0.0110141328, -0.0298739485, -0.0138305314, -0.00450435281, -0.0110518523, -0.00726731587, 0.00379082304, -0.00584339956, 0.00804685522, 0.0134030422, -0.0162948817, -0.0217390805, 0.00407686364, 0.0123028867, -0.00821030699, 0.0168103836, -0.00983853731, 0.0181682892, 0.00980710424, -0.0254481789, 0.00410829671, -0.000972066366, 0.00134611933, 0.0201674309, -0.0044477731, 0.011548494, 0.006396621, 0.00932932273, 0.00395741826, 0.00543162692, 0.00760050584, -0.0148615353, -0.00369966729, -0.000877767277, -0.0109135471, -0.00917215738, 0.000936704222, 0.00241405657, 0.029320728, -0.00997684244, -0.00246277754, -0.00562336855, 0.00402657082, 0.00255550514, 0.0305026099, 0.00118895422, -0.031307295, -0.0104734842, 0.00929789, -0.00827946, -0.00650663674, -0.00725474255, -0.0135539211, -0.0195890628, 0.00907785818, 0.0190735608, -0.00635261461, 0.0139688374, -0.0185580589, 0.00476524699, -0.00395741826, -0.00841147825, 0.00949277449, 0.00255864835, -0.0129001141, -0.0208086632, -0.0186083522, -0.00501356786, -0.00148442469, 0.0223551691, 0.0184197538, 0.00284311734, -0.0197399408, -0.0212110057, 0.0208715294, 0.010850681, 0.00183568872, -0.00580568, -0.0163828935, -0.00908414461, -0.00570509443, -0.0091218641, -0.00358650833, -0.00231975736, 0.00367766409, -0.0104671977, 0.0289435312, 0.00931674894, 0.00841776468, -0.0174390431, -0.00377824972, 0.021412177, 0.00145534915, 0.00561708165, -0.0163703207, -0.00469923764, 0.000719816308, -0.00343248644, -0.00667637493, 0.00123060297, 0.00162665918, 0.0194884762, 0.00445091678, 0.0176150687, 0.00382539933, -0.0231221337, 0.00119917, 0.020456614, -0.0175899211, -0.00592198223, -0.0109575531, 0.00421202555, -0.0277113561, 0.00638090447, -0.0154776219, 0.00433147093, -0.019060988, 0.00738676125, 0.00130761391, -0.0180174112, 0.000914701086, 0.0130384192, -0.00977567118, -0.0123846121, 0.0315084644, 0.0135036279, -0.0142580206, -0.00779539067, 0.0128561081, -0.0275856238, 0.000997998635, -0.0118628247, 0.00898355898, 0.0423214287, -0.0229083896, 0.0399325155, -0.000964208099, 0.0203183088, -0.00301442738, 0.0292955805, 0.0039291284, 0.0208463836, -0.00706614461, 0.00902127847, 0.000921773491, 0.0063589015, -0.0271581355, 0.0190232676, -0.00847434439, -0.00397627801, 0.0263283029, -0.00288240844, 0.00469923764, 0.0230341218, 0.0043157544, -0.0359090902, 0.0127680954, 0.00231189909, -0.014735803, 0.0439308, -0.0166846514, 0.00714787049, -0.00845548417, 0.00481554, 0.031156417, 0.00929789, 0.00771366479, 0.00937961508, 0.0102597401, 0.00530589512, 0.0106872292, 0.0133904694, 0.0447857752, 0.00944876764, -0.0107815284, -0.00044202694, 0.00641233753, 0.00824802648, -0.0101968739, 0.00435976079, -0.0235119034, 0.00274567492, 0.0161691494, -0.00615458656, 0.002492639, -0.0246309191, 0.0136796534, 5.17539866e-06, -0.0152387312, -0.00568623468, 0.0284154564, 0.0073679015, -0.000969708897, 0.0280382596, -0.0255236179, -0.0314078815, -0.00205100491, -0.0263283029, -0.00488783559, -0.0153770363, -0.00650035, 0.00446348963, 0.00405800389, 0.0135539211, -0.0172001515, -0.0031983105, -0.00193627446, -0.0184826199, -0.00329103786, -0.000227889439, -0.0143837528, -0.0301505588, 0.00290441164, 0.00496641826, -0.00486897584, 0.0157793798, -0.00314487424, -0.00378767983, -0.00666380161, 0.00919101667, -0.0103477528, -0.0130635658, -0.005076434, -0.0161565766, 0.0176024958, -0.0199914053, 0.0173887499, 0.010517491, 0.00854349695, -0.00257593649, -0.00855607, -0.0175144821, 0.00169109681, -0.00593141234, -0.00761936558, -0.0145597784, -0.0155530619, -0.0158673916, 0.010561497, 0.0348026454, 0.0159679782, 0.0262277182, -0.0232604407, 0.0199788325, -0.00450749602, -0.0005685449, 0.00953678, -0.00575538725, -0.0079336958, 0.00838633161, 0.0152135845, -0.00552592613, -0.00617659, -0.00452006934, -0.00122903136, -0.0125103444, -0.00278496626, 0.00996427, -0.00577739, 0.000505678821, 0.0137299458, -0.00640605064, -0.000887983, 0.00137126574, 0.00403285725, -0.0115547804, 0.00175867788, -0.00295313285, -0.0135287745, -0.0265797675, -0.00472438382, 0.0109952725, -0.00305057527, 0.00169895508, -0.0261522774, -0.024568053, -0.015615928, 0.00591883902, 0.0118313916, -0.0118313916, -0.0142203011, -0.00141448621, -0.00656950241, -0.00302542886, 0.00906528533, -0.00606028736, 0.00326274824, 0.0189226829, -0.00389455212, -0.0105363503, 0.0123343198, -0.00430318154, -0.00922245, 0.0373675823, 0.00866294187, 0.0146980835, -0.00562336855, -0.00483754277, 0.00345448963, -0.000314723176, -0.0111587243, 0.0229335371, -0.0223928876, 0.0249201041, -0.00539705064, -0.00615773, 0.0338470824, -0.0103666121, 0.00488783559, -0.00771366479, -0.00417116284, -0.00760050584, -0.013340177, 0.000745355675, 0.00138305314, 0.0126863699, -0.00429689465, -0.00697813183, 0.020305736, -0.0119256908, -0.0159302577, 0.00494755851, -0.0216007754, 0.00164551893, -0.00376567664, 0.0029342731, 0.0180551298, 0.0244046021, 0.0108255344, 0.00226317788, 0.0118502509, 0.00959964655, -0.00778281735, -0.00529017858, 0.012717803, 0.00239834, 0.0103163198, 0.016206868, 0.00756278634, -0.00690897927, 0.00100978604, 0.00672038132, 0.00882639363, -0.00724216923, -0.00611372385, 0.00276610628, 0.000402146281, 0.0228078049, 0.0258505214, -0.00707871746, 0.00426546158, 0.00781425089, -0.00509529375, -0.00864408258, -0.00771995122, 0.0225940589, 0.00266866386, -0.0146226445, -0.00410515349, -0.0253350195, 0.00620173616, 0.00435976079, -0.0341739878, 0.0341488421, -0.00463322829, -0.0325394683, -0.00662608212, -0.0204440411, -0.000981496298, 0.00399828097, -0.00128796825, 0.00452321256, -0.00460493844, -0.00962479319, 0.0243543088, -0.00160465599, -0.00179482577, 0.0168103836, -0.0171750057, 0.011139865, -0.0120514221, 0.0147483759, 0.002538217, -0.0164331868, 0.0142831672, -0.00756278634, -0.0155404881, 0.0132773109, -0.00853721052, -0.00417430606, 0.00606971746, -0.000412165566, -0.0184826199, 0.00939218886, 0.0117685255, 0.00296099111, 0.0028635487, -0.00176653615, -0.00620802259, -0.00394170173, 0.0256367773, 0.0243794564, 0.0106620826, 0.0170115549, -0.0152890244, -0.0068398267, -0.000420416734, -0.0189101081, -0.0305780489, -0.00687126, -0.0119194034, 0.000443991506, 0.0228203777, 0.00314173102, 0.0073679015, 0.0105677834, 0.0170492735, 0.0104294783, 0.0144591928, 0.000512358325, 0.0167978089, 0.00808457471, -0.00225846306, -0.0216636416, 0.0114919143, 0.0206955057, -0.015829673, 0.006085434, 0.0144591928, 0.015175865, -0.000905271154, -0.00475267367, 0.0138053857, -0.00931046251, 0.00385683239, 0.00864408258, -0.0140568493, -0.024568053, 0.0159679782, -0.00394798815, -0.00898355898, 0.0113913286, -0.00628346205, -0.00842405111, 0.00588740595, -0.0077639576, -0.0282142852, 0.00212958758, -0.00885154, -0.000263055146, 0.00649406342, 0.0132898837, 0.0305780489, 0.0176527873, -0.00924759638, 0.0176653601, 0.0213493109, 0.0040988666, 0.015905112, -0.0127806691, 0.00851206388, -0.0119508365, -0.0172001515, 0.0216887891, 0.0154901957, -0.0102534536, 0.00793998223, -0.011290743, -0.00972537883, 0.00673295418, -0.0199285392, -0.0265043285, 0.00490983902, -0.0124160452, 0.0259762537, 0.0144088995, -0.00380653958, 0.0136042144, -0.00343563, -0.0072736023, -0.0189101081, -0.0312821493, -0.0149244014, -0.0289435312, -0.0104671977, -0.00948020071, 0.00311658462, -0.0012227447, 0.0102220206, 0.00655064266, -0.0147106564, 0.0286166277, 0.00917844381, -0.0113536092, -0.0129378336, 0.00038191129, 0.011139865]
31 Mar, 2022
Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts 31 Mar, 2022 Given an array A[] of length N, where N is an even number, the task is to answer Q independent queries where each query consists of a positive integer K representing the number of circular shifts performed on the array and find the sum of elements by performing Bitwise OR operation on the divided array.Note: Each query begins with the original array.Examples: Input: A[] = {12, 23, 4, 21, 22, 76}, Q = 1, K = 2 Output: 117 Explanation: Since K is 2, modified array A[]={22, 76, 12, 23, 4, 21}. Bitwise OR of first half of array = (22 | 76 | 12) = 94 Bitwise OR of second half of array = (21 | 23 | 4) = 23 Sum of OR values is 94 + 23 = 117Input: A[] = {7, 44, 19, 86, 65, 39, 75, 101}, Q = 1, K = 4 Output: 238 Since K is 4, modified array A[]={65, 39, 75, 101, 7, 44, 19, 86}. Bitwise OR of first half of array = 111 Bitwise OR of second half of array = 127 Sum of OR values is 111 + 127 = 238 Naive Approach: To solve the problem mentioned above the simplest approach is to shift each element of the array by K % (N / 2) and then traverse the array to calculate the OR of the two halves for every query. But this method is not efficient and hence can be optimized further.Efficient Approach: To optimize the above mentioned approach we can take the help of Segment Tree data structure. Observation: We can observe that after exactly N / 2 right circular shifts the two halves of the array become the same as in the original array. This effectively reduces the number of rotations to K % (N / 2). Performing a right circular shift is basically shifting the last element of the array to the front. So for any positive integer X performing X right circular shifts is equal to shifting the last X elements of the array to the front. Following are the steps to solve the problem : Construct a segment tree for the original array A[] and assign a variable let’s say i = K % (N / 2). Then for each query we use the segment tree of find the bitwise OR; that is Bitwise OR of i elements from the end OR bitwise OR of the first (N / 2) – i – 1 elements. Then calculate the bitwise OR of elements in range [(N / 2) – i, N – i – 1]. Add the two results to get the answer for the ith query. Below is the implementation of the above approach: Java // Java program to find Bitwise OR of two // equal halves of an array after performing // K right circular shifts import java.util.*; class GFG{ static int MAX = 100005; // Array for storing // the segment tree static int []seg = new int[4 * MAX]; // Function to build the segment tree static void build(int node, int l, int r, int a[]) { if (l == r) seg[node] = a[l]; else { int mid = (l + r) / 2; build(2 * node, l, mid, a); build(2 * node + 1, mid + 1, r, a); seg[node] = (seg[2 * node] | seg[2 * node + 1]); } } // Function to return the OR // of elements in the range [l, r] static int query(int node, int l, int r, int start, int end, int a[]) { // Check for out of bound condition if (l > end || r < start) return 0; if (start <= l && r <= end) return seg[node]; // Find middle of the range int mid = (l + r) / 2; // Recurse for all the elements in array return ((query(2 * node, l, mid, start, end, a)) | (query(2 * node + 1, mid + 1, r, start, end, a))); } // Function to find the OR sum static void orsum(int a[], int n, int q, int k[]) { // Function to build the segment Tree build(1, 0, n - 1, a); // Loop to handle q queries for(int j = 0; j < q; j++) { // Effective number of // right circular shifts int i = k[j] % (n / 2); // Calculating the OR of // the two halves of the // array from the segment tree // OR of second half of the // array [n/2-i, n-1-i] int sec = query(1, 0, n - 1, n / 2 - i, n - i - 1, a); // OR of first half of the array // [n-i, n-1]OR[0, n/2-1-i] int first = (query(1, 0, n - 1, 0, n / 2 - 1 - i, a) | query(1, 0, n - 1, n - i, n - 1, a)); int temp = sec + first; // Print final answer to the query System.out.print(temp + " "); } } // Driver Code public static void main(String[] args) { int a[] = { 7, 44, 19, 86, 65, 39, 75, 101 }; int n = a.length; int q = 2; int k[] = { 4, 2 }; orsum(a, n, q, k); } } // This code is contributed by 29AjayKumar Output: 238 230 Time Complexity: O(N + Q*logN) Auxiliary Space: O(4*MAX) Please refer complete article on Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts for more details! Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts
https://www.geeksforgeeks.org/java-program-to-find-array-sum-using-bitwise-or-after-splitting-given-array-in-two-halves-after-k-circular-shifts?ref=asr5
PHP
Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.00911467336, -0.00280740974, -0.0162272789, 0.00410574256, 0.0111920061, 0.00362216076, 0.0123285176, 0.0366995446, -0.0416670777, 0.0504280031, -0.0149778696, -0.0166487675, 0.0469055697, -0.0286009572, -0.0430519655, 0.0144961691, -0.0292783473, 0.00336061255, -0.030332068, -0.0186508354, 0.00964906, -0.020126041, -0.0306180771, 0.0305879712, -0.0179282837, 0.0165433958, -0.00564492587, 0.022444224, -0.0356759317, -0.0154445171, -0.0133069716, 0.00645779492, 0.0185906217, -0.0227001272, 0.00902435463, 0.00126258167, -0.0150305554, 0.00224291719, -0.0523849092, -0.00202840986, -0.0366694368, -0.00392134162, -0.0245667174, 0.000391851936, -0.00814374629, 0.00915230624, 0.0382951759, -0.0139843626, -0.0136005078, -0.00654435065, 0.000674568641, 0.0182895586, 0.0586169101, 0.0482603498, 0.0077523645, 0.0129983826, -0.0298353136, 0.0166638214, 0.0126973195, 0.0232420415, 0.0562987253, -0.0229409784, -0.0186207276, 0.00482829334, 0.0454002544, -0.0221732687, -0.0486216284, 0.0384758152, 0.0103941895, 0.00300121889, -0.0310395639, 0.0104845082, -0.0108608371, -0.0112898517, -0.0178530179, -0.00518204179, 0.0227904469, -0.0141123142, -0.00523096463, 0.0642467812, -0.0193131734, 0.0318524353, -0.0181992408, -0.0274418648, 0.0288267545, -0.0362780541, -0.040252082, -0.0650295466, 0.0380242206, 0.0120876674, -0.00432777638, -0.0145413289, -0.00429014349, -0.00677014748, -0.0142854257, 0.0399811268, 0.0165132899, -0.00552826375, -0.0484108813, 0.0593093522, 0.0122306719, 0.0156853665, -0.00107065425, -0.0139693096, 0.0252441075, -0.0126371067, -0.00561481947, 0.0114479093, 0.0322137102, 0.0249129385, 0.014180053, -0.0137660922, -0.0080233207, 0.0217216741, -0.0129532227, 0.0102662379, 0.0155498888, -0.0386564508, 0.0151208742, 0.00461754901, 0.00952110812, 0.0320631787, -0.00440680515, 0.00602501724, -0.0146165946, 0.0169046707, 0.0288418066, 0.00857276097, 0.0040831631, 0.00162950193, 0.0142628457, -0.03034712, -0.0191776939, -0.0215711426, 0.00627715746, -0.0066610123, 0.0302869081, 0.0537698, 0.00364850368, 0.0277579818, 0.0152638787, -0.0206679553, 0.0268397406, -0.00103490299, 0.0172659457, 0.0512408726, 0.0112522189, 0.0499764085, 1.67142716e-05, 0.0261774026, -0.0186508354, 0.0485614128, -0.0255903304, -0.0101834461, 0.0254849587, -0.0120048756, 0.00351114385, -0.0065556406, -0.0160767492, -0.0618984923, 0.010221079, -0.00757172704, 0.00612286292, 0.0107027795, -0.0250032581, -7.9675774e-05, -0.000402200967, -0.0469958894, -0.0259967651, 0.0448282361, 0.000139711905, 0.0328760482, 0.0292632952, 0.058014784, -0.0268999524, -0.0123285176, 0.0142402658, -0.00106030516, -0.016167067, -0.0235431027, -0.0318825394, -0.0157907382, -0.00013394939, 0.0367597565, 0.0631629527, -0.0308890343, 0.0511204489, -0.00793300197, -0.00885124318, 0.00809858646, -0.000835449, -0.0261021368, 0.0112747978, 0.0242656544, 0.0208184868, -0.00529494043, -0.05933946, -0.0114027504, -0.0238742717, 0.0189820044, -0.00873081852, -0.0230312962, -0.00662337942, 0.0124489432, 0.0318223275, -0.0251537897, -0.0533182062, -0.0649091154, 0.0109586827, -0.0129080638, -0.0356458239, 0.0503075793, -0.0487420522, -0.0233173072, 0.030332068, 0.0164380241, -0.0259666573, 0.0132994447, -0.0271558557, -0.0047191577, -0.000582368171, 0.0258161277, 0.0461529121, 0.0400413387, -0.0376328379, -0.0684616566, -0.0325147733, 0.010213552, 0.015181087, -0.0228657126, -0.000601184613, 0.0412455909, -0.0096189538, -0.0146617536, 0.016799299, -0.0164681301, -0.00778999738, 0.0184099842, 0.0131263342, 0.0149327097, -0.00798568781, 0.0203668922, -0.023392573, 0.0118091842, -0.00105748279, 0.0162724387, -0.00387994549, 0.050789278, 0.0380242206, 0.0374522, 0.00262677204, -0.0176422745, -0.0152111929, -0.014157474, -0.0233323593, -0.0153316185, -0.00813621935, 0.0141047873, -0.00330416323, 0.0413359106, -0.00357323792, 0.0098296972, -0.0174164772, 0.00168312865, 0.014842391, 0.0185003038, 0.00692820549, -0.0259666573, -0.011876924, -0.0362780541, 0.0258161277, -0.0111619, -0.00240662, -0.0158961099, 0.00391381513, -0.0240398571, -0.0239645913, -0.00818137918, 0.0443465374, 0.0249430444, 0.00422616769, -0.0313707329, 0.0279536713, -0.0089340359, -0.022745287, -0.0269300584, 0.00260983733, -0.0130134355, -0.0834545791, 0.0179433376, -0.0132392328, -0.017792806, 0.000859910331, -0.0107253585, 0.0256354902, -0.00858028699, 0.014488643, -0.0185906217, -0.00552826375, -0.0117866052, -0.0371511392, -0.043834731, 0.0213905051, 0.0342609361, -0.0195389688, 0.0126295807, -0.00324583217, -0.00667606527, -0.00992754288, -0.0302869081, 0.0130661214, -0.0488323718, -0.0193583313, -0.0137510393, -0.0354049727, 0.0171154141, 0.034562, 0.00822653808, -0.0180035494, -0.00561481947, 0.0221732687, -0.0320330709, -0.0116887596, 0.0426906906, 0.0208184868, 0.00961142685, -0.00302944356, 0.0579244643, -0.0182594527, -0.0194185451, -0.0242054407, 0.0201862548, -0.00333615113, -0.0181089211, 0.00720668864, -0.0260268711, -0.0107629914, 0.0477485433, -0.0102587119, -0.0065970365, -0.00214507175, 0.0164079182, 0.0106275138, 0.0341405123, 0.0043240129, -0.0212550275, -0.0253494792, -0.00229372154, 0.0203969982, 0.00110734627, 0.00140464574, 0.0351340175, 0.00737603614, -0.00641639903, 0.0181992408, -0.0228055, -0.0419681408, -0.0155649418, 0.0440153666, 0.0391682573, 0.0200056173, -0.00149402372, -0.0466346145, 0.0261623487, -0.000175463108, -0.00478313351, 0.0258913934, -0.0340200849, -0.0115608079, -0.0251989476, -0.0234828908, 0.0124338893, -1.34213988e-05, -0.00286009558, -0.0303170141, 0.00533257332, 0.0031686849, -0.0141348941, 0.0227904469, 0.00386112928, -0.0207131132, 0.049464602, 0.00922004506, -0.00354313175, -0.00924262498, -0.00444820151, -0.0223840121, 0.0178831238, -0.0329362601, 0.020788379, -0.0359769948, 0.0388671942, 0.00294288783, 0.0176723804, 0.0484710969, -0.00275848713, 0.0176573284, 0.014172527, 0.0199755114, -0.060001798, 0.0293686669, 0.0138865169, 0.0238893256, 0.0262376145, -0.019117482, 0.0212550275, -0.00937057659, 0.00297863921, 0.0152111929, 0.0278934594, 0.00488097919, 0.0381446443, -0.0638252944, -0.0179132316, -0.00225608866, 0.0278332476, 0.00944584236, 0.049825877, -0.01418758, 0.00192115642, -0.0519333147, 0.0163326524, -0.0120124016, 0.0364285856, -0.0602727532, -0.00103866635, 0.0309492461, 0.0268246867, 0.0332373232, -0.0322137102, -0.0161219072, -0.00319502805, 0.0271558557, 0.0353146568, -0.0262827743, -0.00794052891, 0.00687928265, 0.00319314632, -0.0397402756, 0.000211096703, 0.00467776181, 0.0413660146, -0.0519333147, -0.0638252944, -0.0239043795, 0.00254962477, -0.0697863325, -0.0109210499, -0.00768086221, 0.00118731603, -0.0571417026, 0.00513688242, -0.00369178131, -0.00577664049, 0.026689209, -0.0360974185, -0.000516040309, -0.02506347, 0.0301514305, 0.0307083949, 0.0459421687, -0.00123529788, 0.0210593361, 0.00592717202, 0.064668268, -0.00211496558, 0.0147520723, 0.00147991139, -0.0291127637, 0.00184400904, 0.0237990059, -0.0289772861, 0.0124865761, 0.00764322933, 0.00922004506, -0.00795558188, 0.00654435065, 0.00189951749, -0.0221281089, -0.026056977, 0.0422993116, 0.0254699048, -0.0106726727, -0.0187261, -0.0176422745, -0.0108156772, 0.0196443424, 0.0141951069, -0.0248677786, 0.00272649922, -0.0165433958, -0.007917949, -0.0244161859, 0.00600243779, 0.0183497723, 0.0162272789, -0.0707497373, -0.0107629914, 0.0198550858, 0.00982217118, 0.0051406459, -0.0369403921, -0.0202765726, 0.0216614623, 0.015166034, -0.0584964827, 0.00387241901, 0.048139926, 0.0279988311, -0.0385962389, 0.0116887596, -0.00977701135, 0.0107328855, -0.00646532141, -0.0435938798, 0.00521214819, -0.0240850169, -0.0077523645, -0.0197647661, -0.00553955371, 0.0178831238, -0.0134198703, 0.0234527849, 0.00183271919, 0.00531752, 0.0357060358, 0.0370006077, -0.0150982942, 0.0201410949, -0.00231253798, -0.0228657126, 0.0391080454, -0.00707873702, 0.0244763978, -0.0122758318, -0.0235129967, 0.0264483579, 0.00387241901, 9.64929495e-05, 0.0212851334, 0.0133521305, 0.0129306428, -0.0425401591, 0.00674756803, -0.0390177257, 0.0330566838, 0.0164530762, -0.0123586236, 0.0249279924, 0.0132317059, -0.00371812447, 0.0133295516, 0.00191739306, 0.0248527266, 0.000639287813, -0.00240850169, -0.00366543839, -0.0186207276, -0.000691032968, -0.0046438924, 0.00601372775, -0.0198249798, 0.0328760482, -0.00456862664, 0.0120500345, -0.0293686669, -0.0344114676, 0.0418778211, -0.0106124608, 0.0117564984, -0.0118091842, 0.00703734066, -0.0137435123, 0.0030350883, 0.00324206892, 0.0292030815, 0.0311298836, -0.0109737357, -0.0114479093, 0.00443691155, 0.00969421864, -0.0221582148, 0.00536267925, 0.00185812137, 0.00352431531, -0.042510055, -0.0109812617, -0.0087082386, 0.0028356344, 0.0131489132, -0.00512182945, 0.0500065163, -0.000957285345, 0.0219324175, 0.00809106, 0.0121478802, -0.00168030628, -0.0103038708, 0.000539560802, -0.0146090677, 0.00189951749, -0.0186809413, 0.0383854955, 0.00362027902, 0.00678520091, 0.0034283516, 0.00154953205, 0.0192379076, -0.0136832995, 0.00547181442, 0.00160880387, 0.000321995962, 0.0160466414, -0.0069921813, 0.0212851334, 0.00827169791, -0.0198400319, 0.0041584284, -0.0208335388, -0.0357963555, -0.00881361, -0.0375124142, -0.016167067, 0.00552073726, 0.00681154383, 0.0294138268, -0.0191776939, -0.00326088537, -0.0111468462, -0.0115909139, -0.00676638447, -0.0137359863, 0.0163778104, -0.00818890519, -0.00847491529, 0.00900177471, 0.00253080833, 0.00772978505, -0.0104769822, 0.0188766308, -0.0200658292, 0.0060363072, -0.0116511267, 0.101157069, -0.0132542858, -0.0212399736, -0.0208335388, -0.00731582381, 0.00906198751, -0.00188728678, -0.00716905575, -0.0236785822, 0.0270956438, 0.0253494792, 0.00419982476, -0.00499764085, 0.00150343194, -0.00794052891, -0.0272010155, -0.0022749051, -0.00219775783, -0.0268096346, 0.0139918895, 0.000237792498, -0.00686422968, -0.00721045164, -0.00241791, 0.0303170141, 0.0179734435, 0.0131112812, -0.0271408036, -0.00740237907, 0.00236898707, 0.0373317748, 0.00759054348, -0.0254096929, -0.0180035494, 0.0237538479, 0.00435035629, -0.00220152107, 0.0206529014, -0.00892650895, -0.00525730755, -0.0254548509, -0.0122306719, -0.00398155442, -0.00907704048, 0.0113199577, -0.0130661214, -0.0241903886, -0.0239043795, 0.0126973195, -0.00186847046, 0.023738794, 0.00145639083, -0.00491861207, -0.0256806482, 0.0139994156, -0.0218722057, 0.00349232741, 0.00355818495, -0.0178379659, -0.0163778104, 0.0128327981, -0.00346974772, 0.0204873178, 0.00687551964, 0.0380543247, -0.0084974952, -0.0217969399, 0.0153466715, -0.0228657126, -0.017281, 0.0090394076, 0.0181390271, -0.0296998359, -0.00244989782, -0.0274117589, 0.00153730146, -0.0066309059, -0.000717375951, 0.0245667174, -0.000234146821, -0.0231366679, -0.00279235654, 0.0107328855, 0.0170702562, -0.0305729173, 0.000370448251, -0.00720668864, 0.0126822665, -0.000779940572, 0.00616802229, -0.0254096929, -0.00417724485, -0.0313406289, 0.00450841384, 0.00147332565, -0.0380543247, -0.0256655961, 0.00300121889, -0.0103866635, -0.0243710261, 0.00805342756, 0.0180938691, -0.00128045736, 0.00663466938, -0.00106783176, 0.00132843922, 0.00797063485, -0.0142252129, -0.0108382571, 0.0096641127, -0.0103113977, 0.00572019117, -0.0142477928, -0.0205174237, -0.023723742, 0.0379640087, 0.0285106376, 0.0186809413, 0.0314610526, -0.00831685681, 0.0105974069, 0.0509699173, 0.00546052493, -0.0667757094, -0.015188613, 0.0208937526, -0.0229861382, 0.020788379, 0.00224103546, 0.00490355864, -0.00128986547, -0.0027020378, -0.00358076463, 0.0295191985, -0.0240097512, -0.00769967865, 0.00848244131, 0.0037614021, 0.0407337844, 0.0117188655, 0.0362178423, 0.0270053241, 0.00331921643, 0.042901434, -0.00674380455, 0.0466346145, 0.00592340855, -0.00835449, 0.0185454618, 0.00461754901, 0.0176874343, 0.0122231459, 0.00173675548, -0.0127500053, -0.0261774026, -0.0226549692, -0.057352446, 0.0288719125, 0.00230877451, 0.0209088046, 0.0281945225, -0.00876092445, -0.022444224, -0.00722550508, -0.00190516247, 0.0109285759, 0.0190271623, -0.0121027203, -0.00439175218, 0.00362216076, 0.0190422162, 0.0351039097, -0.00218270463, -0.00282622618, -0.007583017, -0.0112823248, 0.0176121686, 0.000480994699, 0.0247925129, 0.0209991243, -0.0140521014, -0.00217517815, 0.0465442948, 0.00448583439, -0.0265386775, 0.00319126458, -0.00263429875, 0.0159262177, 0.00751527771, -0.0204271041, 0.033959873, 0.00495248148, 0.0136230877, 0.00187505619, -0.00925767794, 0.0123586236, 0.0133220246, -0.00721045164, -0.0128327981, 0.00821901206, 0.00575406104, -0.00413961196, 0.00201712013, -0.0337491296, -0.00529117696, 0.0129607497, 0.0154595701, 0.0191024281, 0.00922004506, 0.0133897634, 0.014157474, -0.00778999738, 0.0105974069, 0.00366920163, -0.0314309448, 0.0186658874, -0.00521967467, -0.00340577192, -0.00853512809, -0.0343211479, -0.013194073, 0.0225495957, 0.00403424026, -0.0243860781, -0.0510602333, -0.0111092133, -0.0370608196, 0.0210442822, -4.8658083e-05, 0.0110565275, -0.018786313, 0.00777494442, 0.00661585294, -0.0159713756, 0.0108533101, -0.000496283057, -0.0160466414, 0.0260720309, -0.00579545693, -0.0478689708, -0.0253795851, -0.0168444589, 0.00818137918, -0.0161068551, -0.0475076959, 0.0371812433, -0.0353146568, -0.0163025446, -0.00409068959, -0.0319126472, -0.0420283526, 0.03365881, 0.0216163024, -0.00474550109, -0.0124564692, 0.0140746813, 0.0255752765, 0.0210894421, 0.0160165355, -0.0156703144, 0.0146692805, 0.0147972321, -0.0563288331, 0.0246871412, 0.0155950477, 0.000735251582, 0.00547934137, 0.0185906217, 0.0311298836, 0.0213302933, -0.0285557974, 0.00906951353, -0.011854344, -0.0472668447, -0.00429014349, 0.0149853965, 0.000915418786, -0.000195690751, 0.019117482, 0.0127048464, 0.0197497141, 0.021450717, -0.0101307603, -0.0438046232, -0.00124658772, -0.0130811743, -0.00648413785, 0.0186357815, 0.0110941604, 0.00772978505, 0.0129155898, -0.0296546761, 0.00293912459, -0.000229207508, 0.0339899808, -0.0682810247, -0.0403122976, -0.00982217118, 0.00794805493, 0.010567301, -0.0160616953, -0.00435788278, -0.00294100633, -0.00547181442, 0.00467399834, -0.0106576197, 0.00550192082, -0.00139429665, -0.00164643663, 0.0193733852, -0.0289923381, -0.000298240251, 0.00461002253, -0.0250333641, -0.016483184, -0.0134725561, -0.013186546, -0.00482453, 0.00744377542, -0.0153391445, 0.00361275254, -0.0100103347, -0.0113651175, -0.0026531152, -0.049825877, -0.0251838956, -0.0200507753, 0.0364586934, 0.00377269206, 0.0206679553, 0.0113274846, -0.0062357611, 0.0175670087, -0.00278106681, -0.0231366679, -0.0138714639, 0.00365414866, 0.00278671156, 0.00941573642, 0.0154746231, -0.00775989098, 0.0310395639, -0.0404929332, 0.0104092434, -0.0070222877, 0.0139090968, -0.00306331296, -0.00362027902, 0.0123510975, 0.00477560703, -0.00984475, -0.0219625235, 0.00139335578, -0.00354501326, -0.0284504257, -0.00734969322, -0.0165885556, -0.0282547344, -0.0129306428, 0.00704486715, 0.00482453, 0.0278332476, -0.000980335404, 0.00579169393, 0.0101081803, 0.0055056843, -0.014827338, -0.0258462336, -0.021435665, 0.0125091551, 0.00813621935, 0.00220340258, 0.00963400677, 0.0167691931, 0.0206679553, 0.0243710261, -0.00330228149, -0.0169197246, -0.0483807772, -0.000459826231, -0.0223238, 0.011861871, 0.0126596866, -0.0235581566, -0.00829427782, -0.00331357145, 0.0219775774, 0.00501269381, -0.000908362621, -0.014503696, 0.0114479093, -0.00570890168, -0.023392573, -0.000124776372, -0.0173412114, -0.00325147714, 0.00135666376, 0.034622211, 0.0234979447, 0.0181691349, 0.00382537791, -0.0398908071, -0.00151472178, -0.00304261502, 0.00719539868, -0.0149176568, -0.00991249, -0.0150230294, -0.00134725554, -0.0255301166, 0.00624705106, -0.0140445754, -0.0139843626, -0.00346222101, -0.020743221, 0.0215109307, 0.0230463501, 0.000629879651, -0.0124489432, -0.00857276097, -0.00949100219, -0.0036428587, 0.0215410367, -0.0139542567, 0.00815879926, 0.000796875334, 0.0148724979, -0.0219775774, 0.0033813105, -0.00183554168, -0.0104092434, -0.00149966858, 0.0150456084, 0.0166939273, 0.00156928936, -0.013525242, -0.000899424835, -0.0168143529, -0.0293235071, 0.0308589265, 0.0392886847, -0.00183177844, 0.0136306137, 0.00652553421, -0.0229259245, 0.0133972904, -0.0255752765, -0.00549063087, -0.0355856121, -0.027050484, 0.0116360737, 0.0221883208, -0.0131413871, -0.000164643672, 0.0756871626, -0.0174164772, 0.00680778036, -0.0203819443, 0.0127725853, -0.0289923381, -0.00464765541, 0.0177777521, 0.0134198703, 0.0104694553, 0.0280891508, -0.012546788, 0.0379941128, 0.0165885556, -0.0089791948, -0.0247774608, -0.0155950477, -0.00799321476, 0.0187261, -0.00614920584, 0.0118392911, -0.00839212257, -0.00759430649, 0.00126916741, 0.0177476462, -0.00690938905, 0.012877957, -0.00576158753, -0.0388069823, -0.014819812, 0.000522155606, -0.0103415037, -0.014172527, -0.0121554071, 0.00622447161, 0.0316115841, -0.0153692514, -0.00350926211, 0.00179414556, 0.0203518383, 0.0163627584, 0.0156251546, -0.00776741793, 0.022745287, -0.0150832413, -0.0230162442, -0.0107479384, 0.0156101016, -0.00923509803, 0.0099952817, 0.00427132705, 0.00898672175, -0.0179433376, 0.0106350398, -0.00551697426, 0.0069921813, -0.00950605515, 0.00681907032, -0.0030501415, -0.00473421114, 0.0039890809, 0.00735345669, 0.00855770707, 0.00734593, 0.0115608079, -0.0110339485, -0.0581653155, 0.00347162923, 0.00317997485, -0.00608523, -0.0383854955, 0.0371210314, 0.00935552362, 0.00575029757, 0.0144735891, 0.0131639671, -0.0279687252, -0.0179282837, 0.00932541769, -0.0206980612, -0.00292783487, 0.0132392328, -0.00946842227, -0.0160466414, -0.015820846, -0.00551321078, -0.0119747687, -0.0222334806, -0.00594598847, 0.00534386281, -0.00500140432, -0.0232570935, -0.023738794, -0.0181992408, 0.0136607205, -0.00929531083, 0.0131639671, 0.00822653808, -0.019463703, -0.0205625836, 0.000321055151, -0.0106124608, 0.0181390271, 0.00664595934, 0.00583309, 0.00815879926, 0.0237839539, 0.00759054348, 0.00866308, 0.0294288788, 0.00995764881, 0.0163627584, 0.02833, 0.00425251061, 0.0137209324, -0.00186564797, -0.00400789734, -0.00395144802, -0.0231366679, 0.0311599895, 0.0141198412, 0.00233323593, 0.0101683931, -0.0175971147, 0.00381220644, -0.0105296681, -0.0024103832, 0.0155348359, 0.00700347126, 0.0244613439, -0.0136381406, 0.0270655379, 0.00826417096, -0.0193733852, -0.022444224, -0.0303170141, -0.012185513, 0.0233474132, 0.00101232331, 0.00427509053, 0.0153165655, 0.00607394, -0.00404929323, 0.00915230624, 0.0173863713, -0.0169648826, -0.0239645913, 0.0104167694, 0.00404553, 0.00828675088, -0.0246720891, -0.0179734435, -0.00436917227, -0.0058406163, 0.0269601643, -0.0284203198, -0.00689809909, 0.0141951069, 0.00863297284, 0.0244914517, 0.0252591614, 0.0132467588, 0.0135026621, -0.00553955371, -0.0106425667, 0.0216614623, 0.00932541769, -0.00771473162, -0.0133220246, 0.00070984941, 0.011199533, -0.0236334223, 0.0164079182, 0.0107479384, -0.00543794502, 0.017822912, 0.0294589847, -0.00165208161, 0.0349232741, -0.00422240421, -0.0349232741, 0.00891898293, 0.0136607205, -0.00280364649, -0.0248226207, 0.000593187637, -0.0186809413, -0.00362968724, 0.024100069, 0.0113575906, -0.000277071784, 0.0140370484, -0.00437293574, -0.0274870247, 0.00463260245, 0.018786313, 0.00506914314, 0.0057352446, -0.0130962273, -0.0152488258, -0.00827169791, -0.0134951361, -0.00470410474, 0.00826417096, 0.00231441949, -0.0275020786, -0.00482829334, -0.00473044766, -0.0103339776, 0.00747764483, 0.0254849587, -0.00677391095, 0.00338883698, -0.0190572683, 0.00677014748, -0.00038667742, -0.00770720514, 0.00424122065, 0.00343211484, 0.0105146151, 0.00217329641, 0.0121328272, -0.0007583017, -0.0251688417, -0.0171455219, -0.0177175403, 0.0103791365, 0.0164380241, 0.0235882625, 0.0104393493, -0.0413359106, 0.0288267545, 0.0469356738, -0.0074174325, -0.0034302331, -0.0151434541, 0.0171756279, -0.0333276428, -0.053739693, 0.0117113395, 0.0179282837, 0.0170100424, -0.0103565566, 0.00645403191, 0.0236033164, -1.94779332e-05, 0.00120707334, -0.0120500345, -0.0230915099, 0.0200056173, -0.0128177451, -0.00657822, 0.00603254372, -0.015188613, -8.15574167e-05, 0.0258010738, 0.00906951353, 0.0144510102, -0.0223689582, -0.0299406853, 0.020743221, 0.00208862242, -0.0180637632, 0.0335985981, -0.00243860786, 0.0096039, -0.0315513723, -0.0150456084, -0.0048847422, 0.0147671252, -0.00990496296, 0.0156703144, 0.0119747687, -0.0124489432, -0.000689621782, -0.0223539062, 0.00760936, 0.00796310883, -0.0109135229, -0.00149872783, -0.0162423328, 0.0324545577, 0.0161068551, -0.0143606914, -0.0196744483, 0.0269150063, -0.0124790492, 0.0157004204, -0.000332815398, -0.00337566552, -0.00598738436, -0.00973937847, -0.00524978107, -0.00831685681, -0.0278934594, 0.0264634117, -0.00788031612, -0.000826511183, 0.00129080634, 0.0276375562, -0.0061604958, 0.013194073, -0.0168745648, 0.00476808054, -0.0135628749, -0.0010546603, 0.00192209717, -0.0160315894, 0.0249129385, -0.00185435812, 0.0157756861, -0.0363382697, -0.0195540227, 0.0146467006, -0.00352807855, -0.0179282837, 0.0186357815, -0.00395144802, 0.00304637826, 0.0124489432, -0.0117263924, -0.0156552605, 0.00270956429, -0.0197497141, 0.0106275138, 0.0155950477, -0.0206077415, -0.012855377, 0.00961142685, -0.00146203581, 0.00936305, -0.0206679553, 0.0101683931, -0.0259516053, -0.00746259186, 0.00558471307, -0.0157756861, -0.0133671844, 0.00457615312, 6.75039046e-05, -0.0222635865, 0.0305277575, -0.0202163607, 0.0133897634, 0.00657069357, -0.0342007242, 0.000212390325, 0.0142327398, -0.00371812447, 0.0458819568, -0.00411326904, -0.0139241498, -0.00163514679, 0.00792547595, 0.0268849, 0.013540295, 0.0125543149, 0.028013885, -0.00974690542, 0.0140746813, -0.00112616271, -0.00240097498, -0.000415372459, 0.012531735, 0.0216614623, 0.0017141758, -0.00563739892, 0.0175820626, 0.0606039241, 0.0277579818, 0.000922945328, -0.00980711728, 0.011214586, -0.0176121686, -0.0230011903, -0.00369178131, -0.00383854937, 0.0150757153, -0.0227603409, -0.013194073, -0.0201862548, -0.0206529014, 0.00388747221, 0.00570890168, 0.0028205812, 0.00375387562, -0.0268096346, 0.00813621935, -0.00233511766, 0.00650671776, -0.0124338893, 0.000356571138, 0.0247774608, 0.0346824229, 0.00202464662, 0.0316416919, -0.00478313351, 0.0106576197, -0.00477184402, -0.0212249216, 0.0132317059, 0.00683036027, -0.000368096196, 0.00485463627, 0.0287665408, 0.0312804133, -0.0365490131, -0.0131338602, 0.0416369736, 0.000644462358, 0.0218722057, -0.0150305554, -0.000931412738, -0.0357060358, 0.014165, 0.0416068658, 0.0147595992, 0.0275622904, 0.0194185451, -0.00216953317, -0.00985227711, -0.0483205654, -0.0126973195, -0.0239344854, -0.00226737838, -0.00818137918, 0.00395521149, 0.0249882042, -0.00857276097, -0.00886629708, -0.00182895595, 0.0170100424, -0.000288361625, -0.0186357815, 0.0228205528, -0.000184048098, 0.0096189538, -0.000138418283, -0.0328760482, 0.00994259585, -0.0222485345, -0.00743248546, -0.00608899305, -0.00203781808, 0.00305766799, -0.0121253, 0.0165735018, -0.0126596866, -0.0037614021, 0.00479818694, 0.0137660922, -0.00457238965, 0.000814280531, -0.00192491966, 0.0115984408, -0.00169253687, -0.0117640253, -0.00798568781, 0.00440304214, 0.000552261889, 0.0114855422, -0.00848996826, -0.0110414745, 0.0111317933, 0.0112823248, 0.0053099934, 0.00494119152, 0.000589894713, 0.0107554654, 0.0117038125, 0.0150531353, -0.0261623487, -0.0217066202, -0.00902435463, 0.0100479675, -0.0190121103, -0.0125693679, 0.00456486316, -0.00713142287, 0.00572395464, -0.00764322933, 0.0231818277, 0.0074174325, 0.00378398178, -0.000320114341, 0.0348630622, 0.00475302758, 0.0224141181, 0.00388747221, 0.0335684903, -0.0032477139, 0.0155799948, -0.0140746813, -0.0120500345, -0.00175839441, -0.0231216159, -0.00683036027, -0.00327970181, 0.0146090677, 0.0053702062, 0.00934047066, -0.00426756404, -0.00587448617, 0.00433530286, 0.013525242, 0.0134198703, -0.00119390176, 0.0321233906, 0.00351114385, 0.00136607199, 0.00544170849, -0.015835898, -0.0153918304, -0.00186000299, 0.0223840121, -0.000614826509, -0.000938939338, -0.027381653, 0.0116812326, 0.0131112812, 0.014819812, 0.0183497723, 0.00412832247, -0.0144961691, -0.010236132, -0.0104167694, 0.0306933429, 0.034622211, -0.0187110472, -0.00785021, 0.0129005369, 0.0175369028, -0.0028676223, -0.0284955855, -0.00471539469, -0.0162573867, -0.000902247266, 0.00206604274, 0.0326653048, -0.0114027504, -0.00730829732, 0.00928025786, -0.0368199684, 0.0216765143, -0.000169347768, 0.00548686786, -0.00235017063, -0.00986733, -0.0165283419, -0.00206416124, 0.0158057921, 0.0175519548, -0.00892650895, 0.00577287748, -0.00211120211, 0.00547181442, 0.00581051037, -0.00313857873, 0.0134951361, 0.00670993514, 0.0116059668, 0.001812962, 0.0148574449, 0.020773327, 0.00192680128, -0.00922757201, -0.0138940439, -0.0015758751, 0.000977512915, -0.0363081619, -0.00759430649, 0.00715023931, 0.00588577567, 0.0139392028, 0.0175218489, 0.00692444202, -0.00809106, 0.0252591614, -0.0114102764, 0.00578416698, 0.0163025446, -0.0109511558, -0.0192529596, -0.0118091842, 0.0183949322, -0.0107328855, 0.0153993573, 0.0180336554, -0.0195239168, 0.0169046707, -0.00510677602, 0.00604383368, -0.0298654195, 0.00195502583, -0.0129983826, -0.0125091551, -0.0424799472, 0.00132749835, -0.00126258167, -0.0152187198, -0.00652929721, -0.00442562159, 0.00873081852, -0.00267757638, -0.0135553479, -0.0450690873, 0.022775393, 0.00901682768, -0.0490130074, -0.0255602244, -0.00546428794, -0.0102587119, -0.00157775672, 0.00255338801, -0.00640510907, -0.00627715746, 0.00688680913, 0.0159864295, -0.0175820626, -0.00840717647, 0.00971679855, 0.00555084366, 0.0195991825, -0.0199002456, 0.0119747687, 0.000656693, -0.0100479675, -0.0134424502, -0.00724808453, -0.00714271283, 0.0129080638, 0.00638252916, -0.00232382771, 0.0159412697, -0.0109210499, -0.00344152306, -0.0213905051, -0.0267343689, 0.000689621782, 0.0127274254, 0.0061717853, 0.0119747687, -0.0110565275, -0.00890392903, -0.00450841384, 0.0100554945, -0.00810611341, 0.0100705475, -0.0132392328, -0.0111016873, 0.0318223275, 0.0148649709, 0.0109285759, -0.0106049338, 0.0222334806, -0.00540407561, -0.0053099934, 0.0192830656, -0.00502774725, 0.00217141467, 0.0192981195, -0.00492990157, -0.00202840986, 0.0304826, 0.00652553421, -0.00256655947, 0.00756043708, 0.00797063485, -0.00629221043, 0.00584438, -0.00316680339, -0.0275321845, 0.00200959365, 0.000787937548, 0.00163514679, 0.0116737066, 0.0199303515, 0.0013585455, -0.000513217819, 0.0102963448, -0.00337942876, -0.00779752387, 0.00421487773, -0.0167842451, 0.00763946632, -0.0132994447, -0.0255150646, -0.00951358117, -0.00258349441, 0.00882113725, 0.0201561488, 0.00928025786, -0.00319690956, -0.0134123433, 0.0130284885, -0.0114930691, -0.00307460292, 0.00824159198, -0.0133069716, -0.00689809909, 0.0239796452, 0.0100479675, -0.0189669505, -0.00391005166, 0.016799299, -0.0003316394, -0.00120425085, -0.00280929147, 0.00791042298, 0.014503696, 0.0203819443, 0.00714647584, 0.0156853665, -0.000182989679, -0.00515946187, -0.0169799365, -0.0117188655, 0.0134048173, 0.0151208742, 0.0016473775, -0.0056411624, -0.0244613439, 0.00407187315, 0.013517715, -0.0112597449, -0.0174164772, -0.00719916169, -0.0192078, 0.0127801122, -0.0120726144, -0.00462883897, 0.025725808, 0.00179038232, -0.0196292885, -1.59645551e-05, -0.00581427338, -0.0119371358, -0.0137134064, -0.00464012893, 0.0103716105, -0.00403047679, 0.00013206774, 0.00942326244, 0.00858028699, -0.0250484161, 0.00228055, 0.0177175403, -0.0123435706, -0.0069620749, 0.0393187888, -0.00464765541, -0.00104337046, 0.00439175218, 0.00402671378, 0.00542665506, 0.00614544237, 0.00524978107, 0.00768838869, -0.0189067386, -0.00988238305, 0.00560352951, -0.00858028699, -0.0219775774, -0.0268096346, -0.00598738436, -0.00454981, -0.0173713174, 0.00825664494, -0.00582932681, 0.0126070008, -0.0017141758, -0.0008001682, 0.0216765143, -0.0161971729, -0.0133972904, 0.0361275263, -0.00358640938, -0.0223539062, -0.0022918398, -0.00173675548, 0.00191080733, 6.87387292e-05, -0.00581803685, -0.0073873261, -0.00635242322, 0.00472292118, -0.0019512627, 0.022067897, 0.0216915682, 0.00561481947, -0.000784644682, 0.0275472365, -0.00270768278, -0.00619436521, 0.0131188072, 0.0109135229, -0.0165735018, 0.0151284011, 0.0157907382, -0.0101081803, -0.0269902721, -0.0064013456, -0.0109812617, -0.0281493627, -0.00454228371, -0.0120349815, 0.0212550275, 0.000826511183, -0.00969421864, -0.001812962, -0.00137736183, -0.0308589265, -0.0152413, -0.0131639671, 0.00699594477, 0.00297675747, -0.0207131132, 0.00942326244, 0.0175218489, -0.0171455219, 0.00393263157, -0.0308589265, 0.00859534, 0.0154445171, -0.0051444089, -0.0196895, -0.00715023931, -0.00184589066, 0.00569761172, 0.00147991139, 0.00326841208, -0.0109812617, -0.015835898, -0.0147671252, -0.023076456, 0.012546788, 0.022745287, 0.0176874343, 0.0245817695, 0.017792806, -0.00773731153, 0.00426380057, -0.00399284391, -0.0249580983, -0.00677391095, -0.00198889547, 0.0013039778, 0.000467823207, -0.00457238965, -0.00457238965, 0.0275171306, 0.0162423328, -0.0160767492, -0.00409821607, 0.0124489432, 0.00645026844, 0.00538902218, -0.00905446056, -0.0109436288, 0.00821901206, -0.0277579818, -0.00332862441, 0.0293987729, 0.0187411532, 0.00153636059, 0.011530702, -0.0114253294, -0.00490732212, -0.014849918, -0.0172057338, 0.0064013456, -0.0143983234, -0.0192680135, -0.0137660922, 0.00413961196, 0.0131489132, -0.0206980612, -0.0129005369, -0.0145639079, -0.000641169492, 0.0113124307, -0.0129155898, 0.0219625235, -0.00520838471, -0.00431648642, 0.00665348582, 0.0162272789, 0.00124376535, 0.00248000398, 0.00872329157, 0.00411326904, 0.0117489723, -0.019117482, -0.00442185858, 0.0136908265, 0.0137660922, 0.014819812, 0.00614167936, 0.00558095, 0.00434282934, 0.00868565869, -0.0133747105, -0.000479583483, 0.00508795958, -0.00600996427, -0.00414337544, 0.00917488616, 0.00959637389, 0.0237990059, 0.0200206693, 0.00456862664, 0.0116737066, 0.00855770707, -0.00710884295, -0.0230312962, 0.0086405, -0.0270805899, -0.00946089532, -0.0107328855, -0.0204120521, 0.0106726727, 0.00750775123, -0.00679272739, -0.0119973486, 0.0102888178, -0.00213566353, -0.0114930691, 0.000437481736, 0.0163477045, 0.00276601361, -0.00420358824, 0.00643897848, 0.00651800772, 0.0101307603, 0.000452770095, 0.0046438924, 0.00817385223, -0.0113651175, 0.0260419231, -0.00582556333, -0.00772978505, 0.0242054407, 0.00991249, -0.0025044654, 0.0046852883, -0.0128327981, 0.0099501228, -0.00529494043, -0.0133295516, 0.00433906633, 0.0342609361, -0.0160767492, -0.000132890957, -0.00395144802, -0.00783515722, -0.0202163607, -0.00404929323, -0.0109662088, 0.00911467336, 0.00147332565, 0.0072217416, 0.0241602827, 0.00413961196, -0.000427132705, 0.00199454045, -0.0134725561, -0.000763476186, 0.000459826231, 0.00052544853, -0.00692820549, -0.0135929808, -0.024732301, -0.00212625531, -0.0187712591, 0.0316115841, -0.0149402367, -0.00852760114, -0.00429767, 0.0139918895, 0.001113932, -0.00856523402, -0.00312352553, -0.00556213362, -0.0100253876, 0.0144058503, -0.0246871412, 0.00135478214, -0.00535891624, 0.0090394076, -0.00543794502, 0.00115626899, 0.00963400677, 0.0251236819, -0.00272649922, -0.00687551964, -0.031671796, 0.0240248032, -0.000752186344, 0.0296396241, -0.00605888711, 0.0108608371, -0.0120726144, 0.0178981777, 0.0129456967, 0.00888135, -0.0212700795, -0.0170250963, -0.0126371067, 0.0137961982, -0.0138865169, 0.0173111055, 0.00502398377, 0.00261171907, 0.000628468406, 0.00969421864, -0.00449336087, 0.0066610123, 0.00350173563, 0.0230011903, -0.00652929721, -0.00359958084, 0.0120124016, 0.0140069425, 0.00115720974, -0.0223388523, 0.016167067, 0.023392573, -0.0180938691, -0.00964906, -0.0138940439, -0.020126041, -0.0017311105, 0.00664219586, -0.0189217906, -0.0106350398, -0.00373694091, 0.022444224, 0.0110866344, -0.0164079182, 0.0434433483, -3.24877219e-05, 0.020773327, -0.0221732687, -0.00322701596, -0.0261171889, 0.00620189169, -0.00246871426, 0.00652553421, -0.00810611341, 0.0137284594, -0.0183648244, 0.00244801608, 0.0228356067, -0.000675509451, 0.00998775568, 0.0103490306, 0.015166034, 0.00997270178, 8.31450525e-05, -0.0136381406, 0.000778529327, -0.0183347184, -0.0103716105, 0.0171003621, 0.00667606527, -0.017792806, 0.0122381989, -0.0089791948, -0.0288267545, 0.0233022533, 0.0202916265, 0.00101984991, 0.00157399348, 0.00963400677, -0.00532881, 0.00529117696, -0.0112522189, -0.000121013094, -0.0055357907, 0.0120876674, -0.0135704018, -0.000649636844, -0.00763193937, -0.0247172471, 0.0103113977, 0.00824911799, 0.0065556406, 0.0146090677, 0.0295643583, 0.00509548606, -0.000245789473, 0.0104242964, -0.00298240245, -0.00794052891, -0.0130209615, 0.0105296681, -0.0109662088, 0.032996472, 0.0206378475, -0.0191776939, 0.0124338893, -0.0119296098, -0.00762441289, 0.00769591518, -0.0176422745, -0.0122683048, -0.00312352553, 0.0158660039, 0.0275171306, 0.00279611978, 0.013517715, 0.012847851, -0.00866308, -0.00987485703, -0.00867813267, 0.00546805141, 0.0270655379, -0.00562234595, -0.00393639505, 0.00402671378, -0.00577287748, 0.0104017165, 0.00401542382, -0.0239946973, 0.000199924456, 4.96283064e-05, -0.0114930691, 0.00453475676, -0.00759054348, 0.0186809413, -0.0101157073, 0.00965658668, -0.00113368919, 0.00487345271, -0.0103791365, 0.000985980383, 0.0182594527, -0.00213754526, 0.000902247266, -0.0145488549, 0.0156552605, -0.00789536908, 0.0161219072, -0.00479066046, 0.011538228, -0.0068567032, -6.06241483e-05, -0.0024574243, 0.00109041145, -0.00990496296, -0.0109586827, 0.0102812918, 0.0096641127, -0.0220076833, -0.0153165655, 0.0157907382, -0.0228356067, -0.0141273672, 0.0329663679, 0.0169046707, -0.02107439, 0.00286950381, 0.0017311105, 0.00316115841, -0.0178981777, 0.00842975546, 0.0275472365, -0.0144434832, -0.0169799365, -1.45974254e-05, -0.00918241218, 0.0127801122, 0.0342910439, 0.014518749, -0.0123134647, 0.0140445754, 0.0179282837, 0.00124941021, -0.00762065, 0.0120801413, -0.00713142287, 0.00615673233, 0.00400413387, -0.00785021, 0.00667230226, 0.0104393493, -0.00024273181, 0.000648225658, -0.00560729299, 0.00480195, -0.00142346206, -0.0239946973, -0.0124263633, 0.0182895586, -0.0028506876, -0.0173111055, -0.0228958186, 0.0157756861, -0.0203518383, -0.0145864878, -0.00967916567, -0.00588201266, 0.0162724387, 0.0114629623, -0.00303697, 0.019132534, -0.0412455909, 0.0252892673, 0.0100404415, -0.0103038708, 0.000814750965, -0.00493742852, -0.0183196664, 0.0315513723, -0.00617554877, 0.000907892245, 0.0113049047, -0.0190723222, 0.00413584895, -0.000149002517, 0.00435788278, -0.0187261, 0.00214130851, 0.00128610223, -0.00644274196, -0.00066045631, -0.00238780351, -0.00100385596, -0.0249882042, 0.00580298342, -0.00935552362, -0.00628844742, -0.0178078581, -0.0116059668, -0.0114554362, -0.00201900187, 0.0008039315, 0.00733087678, 0.0237538479, -0.0312804133, -0.00775989098, -0.00102925813, 0.00175745354, 0.00596104143, 0.00291842665, -0.0055357907, 0.0203969982, 0.00989743602, 0.00995764881, -0.00363909546, -0.0124941021, -0.00784268323, -0.00319314632, 0.00543418201, 0.0226549692, 0.0228055, 0.0115156481, 0.0128327981, 0.0117113395, 0.00731958682, -0.0189820044, -0.0128026912, 0.00532128336, 0.00235017063, 0.00970174558, -0.01317902, -0.00651424425, -0.0170401484, -0.00213566353, 0.000543324102, -0.00608146656, -0.0248075668, 0.00417724485, 0.00216953317, 0.0171003621, -0.00707497355, -0.017792806, -0.0159864295, 0.00194938097, 0.0182142928, -0.00198325049, 0.0177777521, 0.0118016582, -0.00908456743, 0.0256957021, 0.00232570944, 0.00457238965, -0.00562610943, 0.00635618623, 0.00931036379, 0.0176121686, 0.0172960516, 0.00632984331, 0.0112522189, 0.0132618118, -0.0181841869, 0.0197647661, -0.00278294832, 0.0150531353, 0.000733840337, -0.026056977, -0.00979206432, -0.00391381513, -0.0058406163, 0.00937057659, -0.00129927369, 0.0275622904, 0.0126145277, -0.0138789909, 0.00502022076, 0.020442158, -0.0089340359, 0.011869397, -0.000969045563, -0.040523041, -0.00892650895, -0.0198249798, 0.0149778696, -0.00815879926, -0.00698465481, -0.0165433958, 0.00798568781, 0.00476055406, 4.9157894e-05, 0.0304976515, 0.0124263633, 0.000969986373, 0.00145639083, -0.000906951376, -0.0116210207, 0.00852007419, -0.00170476758, 0.0137736183, -0.00565621536, 0.0070825, 0.00580674689, -0.00265687844, -0.00837707, 0.00407187315, 0.0126070008, 0.00214507175, -0.0172659457, 0.00198889547, 0.00418477179, -0.00822653808, 0.00821148511, 0.000449712417, -0.010883417, 0.0116436, 0.0248978864, 0.0222334806, -0.0154294632, 0.0015166034, -0.0113500636, -0.0097694844, 0.0195690766, 0.00716529228, -0.00279047503, -0.0146316476, -0.00384419435, -0.00107159512, -0.00333803263, -0.0048847422, 0.0155799948, -0.0276074503, -0.0221582148, -0.00381785142, -0.00503527373, 0.000978453783, 0.022745287, 0.0181390271, -0.010868364, -0.028043991, 0.0011854344, -0.00444067502, 0.0108984699, -0.00549815781, -0.0159713756, -0.0146467006, 0.00127763487, -0.00178003323, 0.0105748279, 0.0179884974, 0.00437669922, -0.00437293574, 0.00940820947, 0.0034753927, 0.0085426541, -0.00516698882, -0.012215619, 0.000758772076, -0.058406163, 0.00262677204, 0.0175820626, 0.0219023116, -0.0129306428, 0.00579169393, 0.0177777521, -0.00223915395, 0.0122457258, 0.0231667757, 0.00360146258, -0.00389123545, -0.0152337728, 0.0185454618, 0.0224291719, 0.00075547921, 0.0175820626, 0.0198400319, 0.0159864295, -0.0118468171, 0.0226850752, -0.0103339776, -7.08188281e-06, 0.0130585944, -0.00780505082, -0.00152977486, 0.0075529106, 0.00974690542, -0.010544721, -0.00458367961, -0.0172659457, 0.0184400901, 0.0123360446, -0.0314911604, -0.0206980612, -0.00243672635, -0.0215711426, -0.0108156772, 0.00794052891, 0.00253645331, 0.0108457841, -0.0174766891, -0.0125618409, -0.0110038416, -0.012877957, 0.00800826773, 0.00432777638, -0.0134951361, 0.0159563236, 0.0354350805, -0.00264747022, 0.00267757638, -0.0109812617, -0.0162122268, 0.00729324389, 0.00232947269, -0.00325335888, -0.00571266469, 0.0222184267, 0.00852760114, -0.00617931178, -0.0265988894, -0.0210894421, -0.0113500636, 0.0136607205, 0.00135384139, -0.00417348184, 0.0133747105, 0.000392557529, -0.00677014748, -0.0133370776, 0.000480053888, 0.0152488258, 0.000841564324, 0.00601749076, 0.00638629263, -0.0101081803, 0.000535797561, -0.0125618409, 0.00061576732, -0.000508043333, 0.00480195, 0.0189368445, -0.00246871426, -0.00942326244, 0.00184118655, 1.6655471e-05, -0.00482453, -0.013209126, -0.00328158354, 0.00711260643, 0.00454228371, 0.00229560304, -0.00217329641, -0.00615296885, 0.0197045542, -0.0116586536, -0.00778999738, -0.0250333641, 0.0116285468, 0.037572626, -0.0106576197, -6.52694507e-05, -0.00835449, 0.0152111929, 0.005765351, -0.0177024864, 0.0258010738, 0.0120425085, 0.00911467336, 0.0190873761, -0.0108382571, 0.00419229828, -0.00316304015, 0.0235581566, 0.00346410275, 0.00177909248, -0.00926520489, -0.00426380057, 0.000283892732, 0.00208109594, -0.0153617244, -0.0107554654, -0.0175971147, 0.00269074785, -0.00851254817, -0.00110358302, 0.0130360154, -0.0331771113, -0.000462178286, 0.0339297652, 0.0129155898, 0.00958132092, -0.0235882625, -0.017281, -0.0233173072, 0.00616802229, 1.43181187e-05, -0.0154294632, -0.00728571741, -0.00203593657, 0.0053702062, 0.00153165648, -0.0229409784, -0.0185755696, 0.00165584486, -0.0123285176, 0.00390252541, -0.0192228537, -0.0144058503, 0.00509548606, 0.00855770707, -0.00094270258, 0.00496377144, -0.00885124318, -0.0243409202, -0.0120801413, -0.00973937847, 0.0195239168, -0.00819643214, 0.00151189929, 0.0175369028, -0.00715023931, -0.00226173364, 0.00480195, -0.000816162152, 0.0147595992, -0.0185906217, -0.00667230226, -0.00631479034, 0.00328158354, 0.0100103347, -0.00568255875, 0.0172960516, 0.00692444202, -0.00256279623, -0.00471163122, -0.0240850169, -0.0114027504, 0.00807600748, -0.00764322933, -0.00391005166, -0.00891145598, 0.00295417779, -0.00752656767, -0.0153165655, 0.000342929241, 0.00152977486, 0.00439927867, -0.000633642892, 0.0125844209, 0.00188822765, -0.0158057921, 0.00686799316, 0.0189820044, -0.0107629914, -0.0116134938, 0.019463703, 0.00925015192, 0.00948347524, 0.00767333573, -0.00334555935, 0.00782763, -0.00879103132, -0.00829427782, 0.0147144394, -0.0255150646, 0.00845986232, -0.00326088537, 0.00919746608, 0.0236334223, 0.00348103745, -0.0150305554, -0.0173863713, -0.0149402367, 0.000430425571, -0.0222936925, 0.0120876674, 0.00358452788, 0.0108307311, 0.0228657126, -0.00395521149, 0.0108608371, 0.00196067081, 0.0112973778, -0.00172922888, 0.0172057338, 0.0078125773, -0.0238441657, 0.00514817238, -0.00183083757, 0.0220528431, -0.0046852883, -0.0174465831, -0.00232759095, 0.0123209916, 0.00108570734, 0.0105974069, -0.00540783862, -0.00564492587, 0.0249129385, 0.0256053824, -0.0211797617, 0.00101232331, 0.00703734066, 0.00824159198, 0.0264032, -0.00445572799, 0.00386489253, -0.0201712, 0.000329522532, 0.00199454045, 0.00585566973, 0.0166036077, -0.00506914314, 0.00210555736, -0.00552450074, -0.00235205237, 0.00928025786, 0.00656693, -0.00361275254, 0.00095117, 0.0134273963, 0.00211496558, 0.0131564401, 0.0269601643, -0.00213942677, -0.00921251904, 0.00388370897, 0.00833943672, -0.00311976229, -0.0124489432, -0.0225194898, -0.0177627, -0.0102888178, -0.00484710932, -0.0300460588, 0.0282396823, -0.0152488258, -0.011222112, -0.000885782938, -0.00602501724, -0.00739485258, -0.0209991243, 0.00142158044, -0.0270805899, -0.0201561488, -0.0255602244, 0.00210367562, 0.0322438143, 0.011545755, -0.0114027504, -0.000516981119, 0.00375952059, -0.0195088629, -0.00927273091, 5.93893237e-05, -0.0173713174, -0.00569008524, -0.00477184402, 0.0100028086, -0.0103189237, -0.00479442347, -0.0134800822, -0.0145940147, -0.0162874926, -0.0121478802, -0.0351942293, 0.00264935172, -0.00949100219, -1.30097897e-05, -0.0013434923, -0.00494119152, -0.00609651953, 0.00492990157, 0.0088286642, -0.00592717202, -0.00919746608, -0.006100283, -0.00133314333, -0.0153015116, 0.0140370484, 0.00265123346, -0.0241452288, 0.0139994156, -0.000176051122, 0.0141951069, 0.0133897634, 0.0176573284, 0.000972808863, -0.00358452788, -0.00968669262, -0.018786313, -0.0130284885, -0.00296546775, 0.0120349815, -0.0182745066, -0.0139015708, 0.0188766308, 0.00182237022, -0.0040191873, 0.0126371067, -0.0394392125, -0.0041584284, 0.0297148898, -0.0215109307, -0.0129607497, -0.0103490306, -0.00403047679, 0.00713518588, -0.00884371717, 0.0199604575, 0.0103264507, 0.0110188946, 0.0065970365, -0.0119672427, -0.0120349815, -0.0103113977, 0.0242054407, -0.0118091842, 0.0321836025, -0.0332674272, -0.014849918, -0.0046551819, 0.00075924251, 0.00881361, -0.0162423328, 0.00251011038, 0.0018298967, -0.018123975, -0.00994259585, -0.00819643214, 0.0206378475, 0.0682810247, 0.0103866635, 0.0111920061, -0.0277579818, -0.0212700795, -0.00877597742, -0.0151359271, 0.0436239876, 0.0036278055, 0.0182594527, -0.0126672136, -0.00838459656, 0.0134424502, -0.020788379, -0.0322137102, 0.0169949904, -0.0101458132, 0.00109511556, 0.00443691155, 0.00186658872, 0.00942326244, 0.00744377542, -0.000396320829, -0.0176874343, 0.001113932, -0.00104337046, -0.0197346602, 0.00136701285, -0.00709755346, 0.000471116102, -0.00588953914, 0.0262376145, 0.0086405, -0.0210292302, -0.0390779376, 0.0046551819, 0.0129155898, 0.0193884373, 0.000578604871, -0.00693196896, 0.00949100219, 0.00247812248, -0.0101834461, 9.97270181e-05, 0.0110490015, -0.0127575323, -0.0209389105, -0.0100856, 0.0145563819, 0.00431272341, 0.0041885348, -0.0051105395, -0.00324206892, -0.00232382771, -0.00667982874, 0.00989743602, 0.0196443424, -0.0132317059, 0.0121779861, 0.00348103745, 0.0134349233, 0.0105070882, -0.00747388182, -0.00412079599, -0.0172960516, 0.00357700116, -0.013540295, -0.00389876193, -0.0088286642, 0.00230501126, -0.0161971729, -0.0133671844, -0.0070825, -0.00631479034, 0.00601749076, -0.0115156481, 0.019132534, 0.0131564401, 0.0017461637, -0.0246118754, -0.00293912459, 0.0251838956, -0.0220377892, -0.0142327398, 0.00327593856, -0.0164079182, -0.0156853665, -0.0205324758, 9.91978086e-05, -0.00918241218, 0.0109059969, 0.0350135937, -0.0147821791, 0.0137359863, 0.0185153559, 0.0134499762, -0.00612286292, 0.00645403191, 0.0200507753, -0.0225495957, 0.0154068843, -0.00292407162, -0.00704863062, 0.0088738231, 0.000847209245, 0.0125919478, -2.61077821e-05, -0.0107328855, 0.00858028699, -0.00293912459, 0.00635618623, -0.0034753927, -0.000230148318, 0.0289321262, 0.00680778036, 0.0025214, 0.0183497723, 0.0061303894, -0.00379715324, -0.0102812918, 0.0181089211, 0.00462507596, -0.0303621739, -0.0142929517, -0.00928025786, 0.00791042298, 0.0107705183, -0.0230312962, 0.0139166238, -0.00931789074, 0.0103716105, -0.0101458132, 0.00432025, 0.00552073726, 0.00896414183, 0.0261924546, -0.0334179588, -0.00779752387, -0.0264483579, 0.0175519548, 0.0162724387, 0.00895661581, 0.00955121405, 0.0266591031, 0.0149853965, -0.00192491966, 0.0100780744, -0.0160466414, -0.00611909945, -0.0159412697, -0.018455144, -0.00312728877, 0.0060062008, -0.00390628865, -0.0190271623, 0.00540783862, -0.00487345271, -0.0134123433, 0.00566750532, -0.0107178325, -0.0232269876, 0.00176780252, 0.014518749, -0.000387147826, 0.0244914517, -0.00882113725, 0.0169949904, 0.0116285468, 0.00319502805, 0.0104017165, 0.0183347184, -0.00451594079, -0.00932541769, 0.0122683048, -0.0130661214, -0.0130811743, -0.00821148511, -0.00426003709, 0.0019437361, -0.0150531353, -0.0065970365, 0.00765828276, 0.00292783487, 0.0396198519, -0.0187261, -0.01977982, 0.000387853448, -0.00305202324, 0.0463636555, 0.0158810578, -0.00710884295, 0.0289321262, -0.0275020786, -0.0118919769, -0.0183046125, -0.00242355466, -0.00175839441, 0.0043240129, -0.0138639379, 0.00275096041, 0.00254209829, 0.00892650895, 0.020773327, 0.0198249798, 0.00307083968, 0.0191776939, 0.0190723222, -0.00263429875, 0.00331545295, 0.00743624894, 0.0056750318]
14 Feb, 2023
Java Program for Given a sorted and rotated array, find if there is a pair with a given sum 14 Feb, 2023 Given an array that is sorted and then rotated around an unknown point. Find if the array has a pair with a given sum ‘x’. It may be assumed that all elements in the array are distinct. Examples : Input: arr[] = {11, 15, 6, 8, 9, 10}, x = 16 Output: true There is a pair (6, 10) with sum 16 Input: arr[] = {11, 15, 26, 38, 9, 10}, x = 35 Output: true There is a pair (26, 9) with sum 35 Input: arr[] = {11, 15, 26, 38, 9, 10}, x = 45 Output: false There is no pair with sum 45. We have discussed a O(n) solution for a sorted array (See steps 2, 3 and 4 of Method 1). We can extend this solution for rotated array as well. The idea is to first find the largest element in array which is the pivot point also and the element just after largest is the smallest element. Once we have indexes largest and smallest elements, we use similar meet in middle algorithm (as discussed here in method 1) to find if there is a pair. The only thing new here is indexes are incremented and decremented in rotational manner using modular arithmetic. Following is the implementation of above idea. Java // Java program to find // number of pairs with // a given sum in a sorted // and rotated array. import java.io.*; class GFG { // This function returns // count of number of pairs // with sum equals to x. static int pairsInSortedRotated(int arr[], int n, int x) { // Find the pivot element. // Pivot element is largest // element of array. int i; for (i = 0; i < n - 1; i++) if (arr[i] > arr[i + 1]) break; // l is index of // smallest element. int l = (i + 1) % n; // r is index of // largest element. int r = i; // Variable to store // count of number // of pairs. int cnt = 0; // Find sum of pair // formed by arr[l] // and arr[r] and // update l, r and // cnt accordingly. while (l != r) { // If we find a pair with // sum x, then increment // cnt, move l and r to // next element. if (arr[l] + arr[r] == x) { cnt++; // This condition is required // to be checked, otherwise // l and r will cross each // other and loop will never // terminate. if(l == (r - 1 + n) % n) { return cnt; } l = (l + 1) % n; r = (r - 1 + n) % n; } // If current pair sum // is less, move to // the higher sum side. else if (arr[l] + arr[r] < x) l = (l + 1) % n; // If current pair sum // is greater, move // to the lower sum side. else r = (n + r - 1) % n; } return cnt; } // Driver Code public static void main (String[] args) { int arr[] = {11, 15, 6, 7, 9, 10}; int sum = 16; int n = arr.length; System.out.println( pairsInSortedRotated(arr, n, sum)); } } // This code is contributed by ajit Output : Array has two elements with sum 16 The time complexity of the above solution is O(n). The step to find the pivot can be optimized to O(Logn) using the Binary Search approach discussed here.Space complexity: O(1),as we only need a few variables to store intermediate values. How to count all pairs having sum x? The stepwise algo is: Find the pivot element of the sorted and the rotated array. The pivot element is the largest element in the array. The smallest element will be adjacent to it. Use two pointers (say left and right) with the left pointer pointing to the smallest element and the right pointer pointing to largest element. Find the sum of the elements pointed by both the pointers. If the sum is equal to x, then increment the count. If the sum is less than x, then to increase sum move the left pointer to next position by incrementing it in a rotational manner. If the sum is greater than x, then to decrease sum move the right pointer to next position by decrementing it in rotational manner. Repeat step 3 and 4 until the left pointer is not equal to the right pointer or until the left pointer is not equal to right pointer – 1. Print final count. Below is implementation of above algorithm: Java Output: 2 Time Complexity: O(n) Auxiliary Space: O(1) This method is suggested by Nikhil Jindal. Exercise: 1) Extend the above solution to work for arrays with duplicates allowed. Please refer complete article on Given a sorted and rotated array, find if there is a pair with a given sum for more details! Kickstart your Java journey with our online course on Java Programming, covering everything from basics to advanced concepts. Complete real-world coding challenges and gain hands-on experience. Join the Three 90 Challenge—finish 90% in 90 days for a 90% refund. Start mastering Java today!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum
https://www.geeksforgeeks.org/java-program-for-given-a-sorted-and-rotated-array-find-if-there-is-a-pair-with-a-given-sum/?ref=next_article
PHP
Java Program for Given a sorted and rotated array, find if there is a pair with a given sum
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[0.0155398743, -0.0011972154, -0.018914409, 0.0259328745, -0.0407779925, 0.0201054215, 0.0129026324, 0.0247560404, -0.0223598368, 0.0276910346, -0.00289600296, -0.000128716172, 0.0497672968, -0.0101165147, -0.00954936631, 0.00253444561, -0.01204482, 0.0488598607, 0.00617128657, -0.0213956852, -0.0248836484, -0.00550134247, -0.0257343724, 0.0256493, -0.018162936, 0.0120306415, -0.014228343, 0.0201621354, -0.0335184857, 0.00496964, -0.0115060294, -0.00337807927, 0.0175248943, -0.0319021121, -0.00455845753, -0.00147990359, -0.00532410853, 0.00132836855, -0.0123283947, 0.0168159585, -0.0204031747, 0.0106482171, -0.0188293364, -0.036070656, -0.0160219502, -0.006543478, -0.00208958844, 0.00796135, -0.0478673503, -0.00195134594, -0.0039948537, 0.0112862587, 0.0196658801, 0.0365810916, 0.00747927325, -0.00088927144, -0.0387078971, 0.0104000894, 0.0157667343, -0.0140298409, 0.0704965815, -0.00528511684, -0.00282688183, -0.010159051, -0.0046647978, -0.00698656309, -0.0357303657, 0.0318170413, 0.0103008384, 0.00253090099, -0.0516105294, 0.0189427659, 0.00834417529, -0.00444857264, -0.0187300853, -0.023536671, 0.025067972, 0.0219061188, -0.0266134515, 0.0322991163, -0.0493986495, 0.0180920437, -0.0297469478, -0.0171278901, -0.00715316273, -0.013866785, -0.0251105074, -0.052801542, 0.049455367, 0.0201904941, -0.00333731552, -0.0157667343, -0.00184500555, 0.0151428701, 0.0169861037, 0.0324976183, 0.0423660055, -0.00949265156, -0.0190420169, 0.0491434336, 0.00789045636, 0.0157950912, 0.00825201347, -0.00473923609, 0.0236784574, -0.0109743271, -0.0535671934, 0.00135052286, 0.0387646146, -0.00217111618, 0.0248552915, -0.0135335857, -0.00637333328, -0.00884043053, 0.00280029676, 0.00149053766, 0.00208781613, -0.0492001474, 0.0237068143, 0.0186308343, 0.00332313683, 0.0437271632, 0.000793122, 0.0233665258, -0.0293215867, 0.0147033297, 0.0200912431, 0.0414585695, -0.0271664225, -0.00640878035, 0.021324791, -0.033887133, -0.00169435667, -0.0419406444, 0.0177375749, -0.0225016233, 0.0185457617, 0.0258194432, -0.0295200888, 0.0146182571, 0.00870573241, -0.0306543857, 0.00651866524, 0.0101306932, 0.0222747643, 0.008528498, -0.0182480086, 0.0528299, -0.0427913703, 0.0216225442, -0.0321856886, -0.00245823502, -0.0389914736, -0.00347555801, 0.0125623439, -0.0367512368, 0.0116832629, -0.0136611937, 0.0173122138, -0.0463644043, 0.0177233964, -0.00655056722, 0.0289671198, 0.00936504267, -0.032752838, -0.0113855097, -0.0307394583, -0.0366945192, -0.00708935875, 0.0390198305, -0.00294208387, 0.00110682612, 0.0253940821, 0.0289954767, -0.00989674497, -0.00134166109, 0.00512560643, 0.0247276835, 0.008528498, -0.0690219924, -0.0318454, -0.0448331051, 0.00440603634, -0.00199742685, 0.0311648212, -0.0206725691, -0.00537727866, -0.0222889427, -0.0253231898, -0.00685895467, -0.0103079276, -0.00499799801, 0.0129097216, 0.0465345494, -0.00829455, 0.00349859847, -0.0615923479, -0.0051858658, -0.00820238795, 0.0353050046, -0.0205449611, -0.0402108431, 0.00593024865, 0.0043174196, 0.00545526156, 0.0028711902, -0.0548716374, -0.0423660055, 0.0371482372, -0.0208001789, -0.0535671934, 0.0375452414, -0.0201479569, 0.0115060294, 0.00703618862, 0.0224590879, -0.00501572108, 0.0493986495, 0.000696086383, -0.0291230846, -0.00343479426, -0.0173263922, 0.0401541255, 0.0109814163, -0.00446984079, -0.0471300557, -0.0147316875, 0.0375168845, 0.00414373027, -0.0326961204, 0.0304842424, 0.000395231735, 0.00859939214, -0.00591606973, 0.00248304778, -0.054985065, -0.00238556927, 0.0162062738, 0.00954936631, 0.0164898485, -0.019892741, 0.0309096035, -0.0193255916, -0.00349859847, -0.00918780919, 0.00358544313, -0.00441667, 0.0277761072, 0.010159051, 0.0172696784, 0.0183189027, 0.00147370039, -0.00598341879, 0.00217111618, -0.00949974079, 0.0303424541, -0.00915236212, 0.0169435665, 0.018035328, 0.0581894554, 0.020346459, -0.00464352965, -0.0152988359, 0.0324692614, -0.00604013354, 0.0136470152, -0.00418981072, -0.0271664225, 0.0172271412, -0.0196942389, 0.00271876901, -0.00931541715, -0.00364038558, -0.0336886309, 0.0416003577, -0.014228343, -0.0123567516, -0.0350214317, 0.0538791269, 0.01061277, -0.00379989622, -0.00308209867, 0.0364676602, -0.0232389178, -0.00241038203, -0.0225866958, -0.0136328368, 0.0323841907, -0.0814425498, -0.00701846508, 0.00100491662, -0.0257060137, -0.0158801638, -0.0148876533, 0.0372049548, -0.000374628289, -0.0309663191, -0.0142637892, -0.0517523177, 0.00705391169, -0.0144977383, -0.0105276974, 0.022203872, 0.0035943049, 0.0176099669, -0.0322991163, -0.0245858952, 0.00384952174, -0.0126119694, -0.0316468962, -0.00494482741, -0.0287544392, -0.0256209411, 0.0245291814, -0.0255358703, 0.0113784205, 0.047044985, -0.0213531479, 0.00476759346, 0.00541627, 0.00173955131, -0.0203606375, 0.0120164631, 0.0347095, 0.0453435369, -0.0246851463, -0.0488031432, 0.0483210683, -0.026726881, -0.000441312586, -0.0075005414, 0.0365527347, -0.0328946225, -0.00159953651, -0.0311364625, -0.0299738087, -0.00204528, -0.000742610311, -0.0406645611, 0.0422809348, 0.00615001842, 0.0440674536, 0.0343408547, 0.0249403641, -0.0135973897, 0.000479860959, 0.00641586957, 0.00341707096, -0.00257343706, -0.0309096035, 0.00129646645, 0.0140865557, -0.00169878756, -0.000743939541, 0.0075005414, -0.0136824623, -0.0411749929, -0.0169861037, 0.0565447249, -0.00670653302, -0.000710708206, 0.0213815048, -0.0458256155, 0.00946429372, -0.0144339344, 0.00307323691, -0.0117683355, -0.0208710711, -0.0290238336, -0.022756841, -0.0170144606, 0.0289954767, -0.00142230256, 0.0062209121, -0.0161779169, -0.0134910494, 0.0207009278, -0.0197225958, -0.00479949592, -0.0192121621, -0.0233948827, 0.0188860521, 0.0181062222, -0.0314200372, 0.00255571376, -0.0109459693, -0.0394168347, -0.00506889122, -0.0152846575, 0.0291798, -0.0206158552, 0.0492001474, -0.0109601486, 0.0417705, 0.0384243242, -0.00637687789, 0.0172129627, 0.0495687947, 0.0214665774, -0.00655056722, 0.0244157519, 0.00329832407, -0.00233417121, 0.00085293845, -0.000615001831, 0.0280029662, -0.0250537936, 0.00656120153, 0.0178510044, 0.0207434632, 0.0283716135, 0.0681712702, -0.0865468904, 0.0138100702, 0.0161070228, -0.000496698194, -0.0105064297, 0.0347945727, -0.0111302929, -0.027251495, -0.0209561437, 0.00874117948, 0.0160503071, 0.016957745, -0.0595506132, -0.00116176868, 0.00567503134, 0.0466763377, 0.0320722573, -0.0118321395, -0.0253090095, 0.0110097742, 0.0207292847, 0.0300021656, -0.0383392498, -0.0138880536, 0.0176241454, -0.00142850576, -0.0147316875, -0.0126332371, 0.0364393033, 0.0637475103, -0.0536522642, -0.0214382205, 0.0256067626, -0.00337099, -0.0636340827, 0.0175957885, -0.0146324364, 0.00940757897, -0.0305976719, -0.0148734739, -0.0417988598, -0.0115131186, 0.0234657768, -0.0220620837, -0.00441667, -0.0245291814, -0.0174681805, 0.0276626777, 0.0330931246, 0.00369355571, 0.0047427807, 0.0053524659, 0.0436704494, 0.0104709826, 0.00632016314, -0.00154813868, -0.0339722075, 0.0129664373, -0.00796135, -0.0378855318, 0.0193397701, -0.00992510188, 0.0161353797, -0.0125268968, 0.008790805, -0.015398087, -0.00834417529, -0.0347095, -0.00558287, 0.0145331854, -0.00912400428, -0.0159085207, 0.00580618484, 0.00934377499, 0.0431600139, 0.000665070431, -0.0314200372, 0.008727, 0.00449110847, 0.000993396388, -0.0369780958, -0.000878194289, -0.016376419, 0.00260356697, -0.0883050486, -0.0514403842, 0.0347095, 0.0465912633, 0.017156247, -0.0661295354, -0.0302290246, 0.00743673695, 0.016730886, -0.0431883708, 0.0130444197, 0.00445920648, 0.0422242209, -0.057622306, -0.0135548534, 0.00352341123, 0.0217217952, 0.0284708645, -0.0340005644, -0.00736584375, -0.0305409562, -0.0105206082, -0.0049519171, 0.00500154262, -0.00522840209, 0.0173547491, 0.0248269346, -0.00230226922, -0.00782665145, 0.0191554464, 0.0133350836, 0.00474987039, 0.0183189027, 0.00384597713, -0.0311648212, 0.0100739785, 0.00512560643, 0.0345109962, -0.00750763062, -0.023635922, 0.00871282164, 0.0280455034, -0.0141858067, -0.00324692624, 0.00474987039, 0.0155540528, -0.0197793096, 0.007535988, -0.0139305899, 0.0112508116, 0.0249970779, 0.00125836115, 0.0249403641, 0.0229411647, 0.0268119536, 0.0393601172, 0.00766359642, 0.00856394507, 0.00358012598, 0.0363542326, -0.0168159585, 0.00822365563, 0.013476871, 0.00459744921, -0.0075005414, 0.00335858366, 0.0144835599, -0.00585581036, 0.0121369818, -0.0141999852, 0.0150152612, 0.0374318138, 0.0015676344, -0.0158092696, 0.0167167075, 0.0169010311, 0.00766359642, -0.00576719316, 0.0110948458, 0.017156247, -0.0210128594, -0.00520004472, -0.0298603792, 0.0189002305, -0.000286232855, -0.0283148978, 0.00113695592, -0.00343302195, -0.0389914736, -0.038736254, -0.0239053164, -0.0239336751, -0.0279320721, 0.00893968157, -0.00390269188, 0.0555805713, 0.00576010393, 0.0267127026, -0.0158234481, -0.00365101965, -0.0167876016, -0.00464352965, -0.00716379704, -0.0201196, 0.0144268451, -0.00114138669, 0.0209136084, -0.0115627442, 0.0213956852, 0.0204598885, -0.00426070439, 0.0332632698, -0.00148078974, -0.00245114579, -0.0163905974, -0.0176950395, 0.0115769226, -0.0187584423, 0.00369710056, -0.0139235007, 0.0110948458, 0.0021764331, -0.0278753582, -0.0208001789, -0.00211085659, -0.0221046209, -0.0266985241, 0.0262306277, 0.01901366, 0.0195099153, -0.0121228034, -0.016957745, -0.0214949343, -0.00393104926, 0.0174965374, -0.0232389178, -0.0252239387, 0.0317886844, 0.00517523196, -0.0103221061, 0.0235933848, 0.00291904341, -0.00761397136, 0.0438122377, -0.00529575069, -0.0102441227, 0.0145899, 0.091537796, -0.0172696784, 0.0101094255, -0.018786801, -0.0095280977, 0.0257910863, 0.0317886844, 0.0271097068, -0.015497338, 0.0287260804, 0.0122433221, -0.00808186922, -0.000478974776, 0.00823074579, -0.000967697473, -0.0220053699, 0.0113075273, 0.00264255842, -0.013086956, 0.00668526534, 0.00747927325, 0.00845051557, 0.0222747643, -0.00271345209, 0.0517523177, 0.0254082605, 0.0109247016, 0.00114581757, -0.00246000732, -0.0112933479, 0.0110381311, 0.0219486542, -0.0241747126, -0.0276768561, 0.00781247299, 0.0352766477, -0.00161637377, 0.027832821, 0.0082591027, 0.00665336289, -0.0232105609, -0.00906728953, -0.00266205426, -0.0148167592, 0.000689440116, -0.0159652364, -0.0171137117, -0.0397571214, 0.00113075273, 0.0220904406, 0.0184323322, 0.000333421398, 0.000905665569, -0.0106978426, 0.0243306793, -0.0281872898, -0.0109601486, -0.0172129627, -0.0109034339, -0.0143488618, -0.00615710812, -0.0287969746, -0.000665513566, 0.00399839832, 0.0136824623, -0.00172094174, -0.00767777534, 0.00263369665, -0.0191696249, -0.013639926, -0.00977622531, 0.0132216541, -0.0158234481, 0.00289245835, -0.0315334685, 0.00573883578, -0.000974786817, -0.0290096551, 0.0270813499, 0.0122007858, -0.0254933331, -0.00475695962, -0.00646903971, -0.00124241, -0.0410048515, 0.0174398217, 0.000844519818, -0.00235012244, 0.026046304, 0.00791881327, 0.00469670026, 0.0109885056, 0.0209419653, 0.0377721041, -0.0158801638, -0.0251530446, -0.0049093808, -0.00733748637, -0.0159085207, 0.00331250275, 0.0260321256, 0.0150436191, -0.00683059683, 0.0229553431, 0.0141149126, 0.0149869043, 0.0115911011, -0.00667817565, 0.00300411577, 0.0136257475, 0.00672780117, 0.00884043053, -0.0460524745, -0.0121086249, -0.0496538691, 0.0276626777, 0.0247135032, -0.0231113099, 0.0392750464, -0.00623509102, 0.0130089726, 0.0119243013, -0.000546766794, -0.0254507978, 0.00179006299, 0.00772031164, -0.0127041303, -0.00515041919, 0.00138065254, 0.00689085666, 0.0120944455, -0.0341990665, -0.0295484457, 0.0092587024, -0.00456554675, -0.0223598368, 0.0165607408, 0.0117257992, 0.00704327784, 0.0214665774, 0.0153130144, 0.0280738603, -0.0134414239, -0.00192121614, -0.0183614381, 0.0281447545, -0.0148876533, -0.00184323324, 0.00804642215, -0.0165182054, 0.00832290668, 0.0195524506, -0.0172980353, 0.00774158, -0.0302857403, -0.00832999591, -0.0375168845, 0.0155398743, 0.00784792, -0.00346492394, -0.0103717316, 0.00252558407, 0.00869155396, 0.00468961056, 0.0146891512, 0.00293853902, 0.0194248427, -0.00123797928, -0.0398989096, -0.00627762685, 0.00241747126, 0.0187300853, 0.0217926875, 0.00218529487, -0.00443793833, -0.00712126074, 0.00820238795, 0.0282298252, -0.00759979244, 0.025067972, 0.00382470898, 0.00793299265, 0.0324692614, 0.02519558, -0.0230971295, 0.026046304, 0.00136824616, -0.00107226544, 0.0150861554, -0.0157809127, 0.0335752033, 0.0416003577, -0.0091452729, -0.00578491669, 0.000962380436, -0.0172413196, 0.03516322, 0.00967697427, -0.000267401745, -0.0197651312, -0.00908855814, 0.0161920954, 0.00157295144, -0.0292932298, 0.0285134, 0.0104993405, 0.0130798668, -0.00145243236, 0.00829455, 0.00383179821, 0.0157100186, -0.0272940304, 0.0369780958, -0.0155965891, -0.0107332887, -0.000497141271, 0.0168726742, -0.0182054732, 0.00265142019, -0.00512915105, 0.00957772322, 0.00103150168, -0.0187017284, -0.0281022172, -0.0391616151, -0.0188718718, -0.0161920954, 0.00586998882, 0.0146182571, 0.0160077717, -0.0152421212, -0.000566705596, -0.00525675947, -0.00384597713, -0.00221719686, -0.0115414755, -0.0143417725, 0.00942884665, -0.0176950395, -0.0483777821, -0.0369213782, -0.0171704274, 0.0342841372, -0.0206158552, -0.0460524745, 0.0263865925, -0.00718152, 0.00286410097, -0.0183472596, -0.0337169878, -0.0134485131, 0.0429331549, 0.0236501, -0.000727102335, -0.0222180504, 0.026273163, -0.0117045315, 0.00103859103, -0.00903893262, 0.0183614381, 0.00682705222, 0.0303140972, -0.00874117948, 0.0184323322, 0.00811731536, -0.00833708607, 0.0353050046, 0.0218068678, 0.0364393033, -0.00861357059, -0.0383108929, 0.0149160102, -0.01259779, -0.0551552102, 0.0147316875, -0.00402321108, 0.00879789423, -0.0169861037, 0.0295768045, 0.00145952171, 0.00764941797, 0.0108325398, -0.000153972011, -0.027605962, 0.0178935416, -0.00459744921, -0.0116903521, -0.0112579018, 0.0183330812, 0.00140812388, 0.00215516496, -0.0286835451, 0.0210837517, -0.00820947718, 0.0244157519, -0.0519508198, -0.0435286611, 0.0330931246, 0.0379422456, 0.0294066593, -0.000350037095, -0.0132571, -0.00509370398, -0.0119597483, 0.0165040269, -0.0110239526, 0.0063875122, -0.00784792, 0.0106482171, 0.0125907008, -0.015724197, 0.0242597852, 0.0193964858, -0.0280880388, 0.00286410097, -0.0191696249, -0.0142496107, -0.0272373166, -0.00176968111, -0.0102583021, -0.00215693726, -0.0114564039, -0.0070574563, 0.0124418242, -0.0450599641, -0.000287119037, -0.0188576933, 0.0151003338, 0.0193255916, -0.000229296449, 0.00854267739, -0.0199352764, 0.00471087871, -0.0244157519, -0.0469599105, -0.0268970262, 0.00709644798, -0.00736584375, 0.0213815048, 0.0102583021, -0.00723114563, -0.0106269484, -0.0304275267, 0.000439097144, 0.0141220028, -0.00533119775, -0.0159794148, 0.013576122, -0.00117328879, 0.00329300715, -0.0143346833, -0.0217076167, 0.0142354323, -0.0179218985, -0.0147742229, -0.00873409, -0.0268544909, -0.00808186922, -0.0081882095, -0.00651512062, -0.0263865925, 0.0151995849, -0.0234232415, 0.0121157141, -0.0207292847, 0.016730886, -0.0240187477, -0.0336886309, 0.0219911896, 0.00825201347, 0.00529929576, 0.011392599, 0.0021941564, -0.0134485131, 0.0162488092, 0.0445778854, -0.00194780133, -0.0109034339, -0.0378855318, -0.0234515984, 0.00437413435, -0.000935795309, 0.00723114563, -0.0126119694, -0.00289423065, 0.0100527108, 0.00817403, 0.0108750761, -0.00875535794, 0.0149585465, -0.000823694863, 0.00893259142, -0.00661082705, 0.00686958851, -0.0218777601, -0.0112933479, -0.00860648137, 0.0204031747, 0.0215091147, 0.0279604308, -0.00169347052, -0.0238769595, -0.0300588813, 0.0116903521, 0.0269537419, -0.0159227, -0.0142070744, -0.011817961, 0.00620318856, 0.00473214686, 0.0199636333, -0.0127041303, -0.00599759724, -0.00138685573, -0.015851805, 0.0193823073, 0.0152846575, -0.00738711143, -0.0170995332, -0.000145664162, 0.00710708182, 0.0198360253, -0.0135406749, -0.0011972154, 0.00211617351, -0.00901057478, -0.000564933289, -0.00202932884, -0.00208249898, -5.66594827e-05, -0.011917212, 0.00689440127, 0.00811022613, 0.0268544909, 0.0046293512, -0.0163197033, -0.0144339344, -0.00896094926, -0.0395869799, 0.0144339344, 0.0391332582, -0.000326775131, -0.0178226475, 0.0115556549, -0.0164898485, 0.0130515089, 0.0123354839, 0.00380698568, -0.0188576933, -0.028584294, 0.0124985389, 0.00913109351, -0.0262022689, -0.00114758988, 0.0608550534, -0.0140440194, -0.00347378571, -0.0125481645, 0.0197651312, 0.0014958547, -0.00961317, -0.00200983323, -0.0208852496, 0.0166741721, 0.0526881143, -0.0263440572, 0.0131365815, 0.00089813309, 0.00554742292, -0.0234799553, 0.00862066, -0.0136115681, 0.00661791628, -0.0309096035, -0.00251140539, 0.0043067853, -0.00720633287, -0.00460453844, 0.00379280676, 0.00640523527, 0.0135335857, -0.0157950912, -0.0196658801, -0.0111728292, -0.00301829446, -0.0176666807, -0.00539500173, -0.00717797549, -0.00940757897, 0.0326110497, 0.0015676344, 0.00620673364, -0.00971951056, 0.0300305225, 0.00343833887, 0.0114847608, 0.0104709826, 0.00998890586, -0.0202613864, 0.00127874303, 0.00510079367, 0.0105773229, -0.0271664225, -0.000248792174, -0.0176241454, -0.00220124586, -0.0241463557, -0.00797552802, -0.0113784205, 0.00283928821, 0.00544108264, -0.0123638418, -0.00273826485, -0.0295200888, -0.00715316273, -0.0169010311, 0.0140652871, -0.00898221694, -0.00612520566, -0.0089467708, -0.027251495, 0.00615356304, 0.0222747643, -0.0133917984, -0.030569315, 0.026273163, 0.0280029662, -0.006788061, -0.0123425731, 0.0136824623, -0.0302857403, -0.00848596264, -0.00470024487, -0.0219344757, -0.00103593257, 0.00713898428, -0.00344365602, 0.000318799604, 0.00394877279, 0.00227922876, -0.00220124586, -0.0394451916, 0.0127183096, -0.0137958918, -0.0197793096, -0.0385377519, -0.0204598885, 0.00697238417, -0.00326110492, -0.00443084911, 0.0220904406, 0.0139022321, -0.00731621822, -0.0316752531, -0.0105773229, -0.00259647751, -0.00115467934, -0.0022969523, -0.0150152612, 0.00750763062, 0.0229411647, 0.00571047841, 0.00523549132, 0.00979040377, 0.00283751567, 0.0173122138, -0.00174220989, 0.0185032263, 0.0040728366, 0.0128813647, -5.71579549e-05, 0.00628826115, -0.0170144606, 0.0600043312, -0.00445920648, 0.00111657393, -0.00645131618, -0.0161495581, -0.00665336289, -0.022884449, 0.00175550242, 0.0201054215, -0.00591252511, 0.00838671159, -0.0213956852, -0.00520004472, 0.0184323322, -0.0166458134, -0.00496964, -0.00480304053, -0.00867028534, -0.00939340051, 0.00667463103, -0.0138100702, 0.0240329262, 0.0151286917, -0.0188009795, -0.00381761952, 0.00318134972, -0.0236501, 0.0165891, -0.0131294923, 0.0351915769, -0.00049093808, -0.00761397136, 0.0261880904, 0.00131862075, -0.00473214686, 0.0336035602, -0.0301155951, -0.00168283645, 0.00867737457, -0.0120164631, 0.0170853548, 0.00980458315, -0.00599759724, 0.0199352764, -0.0138100702, -0.054531347, 0.00908146799, -0.00480304053, -0.0340289213, -0.0375168845, -0.000288669835, 0.00406929199, -0.0321856886, 0.024741862, 0.0111302929, -0.00292613287, 0.0109034339, 0.0321573317, -0.0015197813, 0.0268828478, 0.00301297731, -0.020998681, 0.0170711763, 0.0184323322, -0.00295980717, -0.0201621354, 0.00782665145, -0.00950683, -0.0133705307, 0.0274925325, 0.0187726207, -0.000356240256, 0.00316185388, 0.00675970362, 0.0035517686, 0.00991092343, 0.0245575383, 0.00259470521, 0.0132003855, -0.020020349, 0.0434152335, 0.00401966646, -0.018035328, -0.023635922, 0.0135052279, 0.00150205789, -0.0390481874, -0.0394735485, -0.033660274, 0.00597987417, 0.00965570658, 0.0122433221, 0.00216048211, -0.0205307826, -0.000680578407, -0.0393317603, 0.00130621437, -0.00849305186, 0.0214382205, -0.00803933293, 0.0141858067, 0.00597278448, 0.0206300337, -0.0162204523, -0.0172554981, 0.00143027806, -0.0242739636, -0.00117151649, 0.00961317, 0.00767068611, -0.00724532455, -0.0230404157, 0.00901766401, 0.02155165, 0.0128813647, -0.0100456215, -0.00272054132, 0.0219061188, -0.0406645611, -0.0326394066, 0.022884449, 0.0119668376, 0.00781956222, -0.0326394066, 0.0131932963, 0.0401257686, 7.16551403e-06, 0.00210022251, 0.013086956, -0.0244157519, 0.0246000737, -0.0231113099, -0.0258619804, -0.00400903216, -0.00813149475, -0.000919844257, 0.0228560921, 0.0182054732, 0.0174256433, -0.00592315895, -0.0216367226, 0.0489449315, -0.00961317, -0.00577428238, 0.0217643306, 0.019467378, 0.0084576048, 0.000976559124, 0.00473923609, 0.00826619193, -0.00616065273, -0.0419406444, 0.0358154401, -0.0281731114, 0.00763523905, 0.00700428616, -0.0510717407, -0.0106482171, 0.00553678907, 0.00575655932, -0.00743673695, -0.0202046726, 0.0406645611, 0.00330895814, -0.00500508724, -0.0134556023, 0.0209703222, -0.00232708198, 0.0169010311, 0.00292613287, 0.00404802384, 0.00585226575, -0.00192298857, -0.0277052131, 0.00828746054, -0.0136328368, 0.0329513401, 0.00106251764, 0.00650803139, -0.0372616686, 0.0131932963, -0.00752180954, 0.0010492251, -0.0224590879, 0.0163055249, -0.00500863185, -0.00681996299, 0.0171704274, -0.0310513899, 0.0183897968, 0.0216650795, -0.0033514942, -0.0255925842, -0.0138596958, 0.0107191103, -0.0092587024, -0.0167876016, 0.0343975686, 0.00823783502, -0.00417563226, 0.00759979244, -0.0226434115, -0.0136186583, 0.0188576933, 0.00879789423, -0.0111515615, -0.00649385247, -0.01116574, -0.0184323322, -0.0119526582, -0.00672071194, -0.011945569, -0.0102937482, 0.00613229536, -0.010548966, -0.00959190261, 0.00913109351, -0.00717443088, -0.00395231741, -0.0092161661, -0.0150577975, -0.0229695216, 0.00927997, -0.0067455247, -0.00534537621, 0.00228986284, -0.019240519, -0.00220833509, 0.00891132373, 0.0146040786, 0.0263724141, -0.0142212538, -0.013802981, 0.000541006681, 0.0366094485, 0.0158943422, 0.0177801121, 0.0140936449, -0.00405156845, -0.0117328884, 0.00321856886, -0.00586998882, 0.0114351353, -0.00567857642, 0.00554742292, 0.028357435, -0.0164614916, -0.0112366332, 0.0175532512, 0.00919489842, 0.0174681805, 0.000603481662, -0.0129097216, -0.0210837517, 0.0092587024, -0.0051433295, -0.0102653913, -0.0067100781, 0.0115911011, -0.00779120531, -0.00676679285, -0.0157383755, -0.0223456584, 0.0174256433, -0.00843633711, 0.00876953639, -0.00970533211, -0.0236501, 0.00603658892, 0.0204031747, 0.0068660439, -0.0135335857, 0.0329513401, 0.0351915769, 0.045542039, 0.0146040786, 0.0331782, 0.00853558816, -0.00862774905, 0.0135903, -0.0117328884, 0.00418272149, 0.0262164474, 0.0109885056, 0.00512560643, 0.00684832036, 0.0306827445, -0.0183897968, -0.00977622531, 0.00986129791, -0.0238911379, -0.00666399719, -0.0133421728, 0.0108963437, -0.0443510264, -0.0092587024, 0.0277052131, 0.00851432, 0.0308812466, 0.0112366332, -0.0194815565, -0.0289671198, -0.0353617221, -0.0118250502, -0.00909564737, -0.00366874319, -0.00536664436, 0.00675261393, 0.0153130144, -0.000973014452, -0.013476871, 0.00640878035, 0.00924452394, -0.00723823532, -0.0219061188, 0.0325826928, 0.0110523105, 0.0221046209, -0.00713898428, -0.0136186583, -0.00764941797, -0.0126190586, -0.0183330812, 0.00481012976, -0.0117896032, -0.000581770495, -0.0105347866, 0.024968721, 0.011201187, -0.00114581757, 0.0201337785, -0.00282156467, -0.0103079276, 0.00270104571, -0.0231254883, 0.0209136084, -0.0127041303, -0.00446629571, 0.00161903223, 0.0151286917, -0.0167734232, 0.0131224031, -0.00306792, 0.00786918774, 0.0150577975, 0.0319021121, -0.00952100847, 0.00647258433, 0.0163480602, -0.0069440268, 0.00412246212, -0.00364393042, -0.0107970927, -0.00791881327, -0.00769195426, -0.00196552463, 0.00633788668, -0.00643713772, 0.0104213571, -0.00741546927, 0.00523194671, -0.00677033747, 0.012207876, -0.00580618484, -0.0200770628, -0.00129203557, 0.0436988063, -0.008790805, 0.0128388284, 0.00597987417, 0.0149160102, -0.0144906491, 0.00397004094, -0.00334086013, -0.00484203175, 0.018786801, -0.0340856351, 0.00345251756, 0.0143913981, 0.00294031156, -0.0196091663, 0.00160308124, 0.00140989618, 0.00636269944, -0.00340289203, 0.0326677635, 0.0144268451, 0.0225441605, 0.0140298409, 0.0069014905, 0.00173423439, -0.0118463179, -0.0173405707, -0.0163338818, 0.00832290668, 0.00265850942, 0.0103575531, 0.00991092343, -0.00565730827, -0.00605785707, 0.0229837, 0.0214240421, -0.00452655554, 0.00859939214, -0.0097478684, -0.00221896917, -0.0107191103, 0.0156816617, 0.0133917984, -0.028584294, -0.000927819812, -0.00143913983, 0.00356949214, -0.00172182801, -0.0250821505, -0.00127253984, -0.0283716135, 0.00515041919, -0.0115485648, 0.0251246877, -0.00552261, -0.0152563, -0.00506180199, -0.0338020623, 0.0167450644, 0.0152279427, 0.00190526515, 0.00561831659, -0.015171227, 0.00443084911, -0.0154264439, 0.0108679868, 0.00163143862, 0.018914409, -0.0269679204, -0.0171704274, 0.00903893262, -0.00958481245, 0.00427488331, 0.00223492039, 0.00777702639, 0.0142637892, -0.000131596214, -0.00947138295, 0.0153697291, 0.000372634415, 0.00153041526, 0.000462580647, -0.0081456732, -0.0149301896, -0.00511142751, -0.000539234316, -0.00898221694, 0.0185032263, 0.0206867475, -0.0127253989, -0.00512206135, -0.0208568927, 0.026400771, 0.00289423065, -0.00991801266, 0.0241888911, -0.006543478, 0.00124684093, -0.00786918774, 0.0193397701, 0.0123851094, 0.00821656641, 0.0272656735, -0.0190703738, 0.0164331328, -0.000940226193, -0.00530284038, -0.0274783541, -0.0224165525, -0.0247985758, -0.0249403641, -0.0263865925, 0.00536664436, -0.00289423065, -0.00425361516, -0.000303513167, 0.00472860225, 0.0166316349, -0.0173405707, -0.0200487059, -0.0240754616, 0.0293215867, -0.0069794734, -0.0368363075, -0.0072665927, -0.0174114648, -0.0056218612, -0.000230404155, -0.00435641082, -0.00735166483, 0.00480658514, 0.0199069194, 0.014455202, -0.00856394507, -0.0219061188, -0.000857812411, -0.00460808305, 0.0143205039, -0.0194106642, 0.0189427659, -0.00242810533, 0.00277193915, -0.0202613864, -0.0124560026, 0.00952100847, 0.00252026692, -0.0068235076, 0.019991992, 0.0114634931, -0.0288536903, -0.0161070228, -0.0217643306, -0.0231680237, -0.0166458134, 0.00638396759, -0.000590189127, -0.00884752, 0.000864458678, -0.00122202816, -0.0227710195, -0.0102441227, -0.0149585465, -0.0146182571, -0.0112862587, -0.00201160554, 0.0218494032, 0.00290132, 0.00540563604, -0.026726881, 0.0298603792, 0.00160042266, 0.0115981903, 0.00577073777, -0.00216048211, -0.00192298857, 0.0145757217, -0.00767777534, -0.0185741186, 0.0200487059, 0.00127874303, 0.00497673, 0.0120731778, 0.0160361286, -0.0063449759, -0.0197793096, -0.0141999852, -0.0119526582, -0.00143293664, 0.0167592429, 0.00284283282, 0.0153271928, 0.00977622531, 0.00445211725, -0.00221896917, 0.0134485131, -0.00234480528, 0.00137533562, 0.0153271928, -0.0170995332, 0.00667817565, -0.0201479569, 0.0123425731, -0.0091027366, 2.13511539e-05, 0.0254224408, 0.012923901, 0.00382116437, -0.00804642215, -0.00244051171, -0.00233771605, -0.00178208749, 0.0142708784, 0.0108538084, -0.0351915769, -0.00624926947, 0.0211121105, 0.00210199482, -0.0225583389, -0.013802981, 0.0138809644, -0.0315618254, 0.00241569895, -0.0183614381, -0.00758561352, -0.00553678907, 0.0227851979, 0.00489165727, 0.0106978426, 0.00116797187, 0.0135406749, -0.0120093739, 0.00163852796, -0.0014054653, 0.0184181537, 0.0117754247, -0.00599759724, -0.00489520188, 0.0084150685, 0.00980458315, -0.0141432704, -0.0130160628, -0.0157950912, -0.0112224547, -0.00387433451, -0.00536309974, -0.000179892479, 0.0377153866, -0.00175816088, -0.0201054215, -1.65741458e-05, 0.0183472596, -0.00961317, 0.0152421212, -0.0154264439, -0.00748636248, 0.00562895089, 0.00193362252, 0.00465416396, 0.0260604825, -0.0241605341, 0.0110097742, 0.018786801, -0.0359005108, -0.00926579162, 0.0198360253, -0.00997472741, -0.00306260283, -0.0132145649, -0.00606140168, 0.0257485509, 0.0252097584, 0.0171420686, 0.0172696784, -0.00100668892, -0.0202897452, 0.0141078234, 0.0137249986, -0.00950683, -0.0151145123, 0.0110239526, -0.0090602, -0.0133350836, -0.0117612462, 0.000365101965, -0.0127679352, 0.0159652364, -0.0137604447, 0.0104284463, -0.00645486079, -0.00224732677, 0.0112508116, -0.00170321844, -0.0126686841, -0.00589480158, -0.00236607343, 0.00269218395, -0.0142496107, -0.00975495763, 0.018914409, -0.00635206513, 0.0142212538, 0.0184181537, -0.0119668376, 0.0014754727, -0.0192830563, 0.00572111225, 0.0344826393, 0.0257769078, -0.00969824288, 0.00584872067, 0.0112153655, -0.00111657393, -0.005274483, 0.0153697291, 0.00104833895, -0.0101519618, -0.0175107159, -0.00355531345, -0.0268403124, 0.0207434632, 0.00320084533, -0.00501572108, 0.0120944455, 0.010187408, -0.00954936631, -0.00493773818, -0.00923034456, -0.00893259142, -0.0146040786, -0.00442021526, -0.0220053699, -0.0232530963, -0.00517168688, 0.0136966407, -0.00179538, 0.0109317908, 0.0230404157, -0.0128671862, 0.00116885803, -0.00288005196, -0.0220337268, -0.0257060137, -0.00228809053, -0.00996763818, 0.00743673695, 0.0110381311, -0.0191838052, -0.0160219502, -0.0280313231, -0.0128175607, -0.00102884322, 0.0209845, 0.0285701156, 0.0170002822, 0.00826619193, 0.0120873563, 0.0138951428, -0.0263582356, -0.0158234481, 0.00425361516, -0.015071976, 0.0084150685, 0.00735875405, 0.0042288024, -0.0105206082, 0.0324976183, 0.0208994299, -0.0237209946, 0.0113500627, 0.0197793096, 0.00453718938, -0.0129451687, 0.00754307769, -0.0199069194, 0.0155824106, -0.0238202456, 0.00104479422, 0.0198785607, 0.0160219502, -0.00273826485, 0.0146040786, -0.0309663191, -0.0112791695, -0.0303140972, 0.00301297731, 0.0205874965, -0.0208568927, -0.0251672231, -0.0281731114, 0.0189285874, 0.0237777084, -0.00934377499, -0.0135194072, 0.00450528739, -0.00534892129, 0.0222747643, 0.00673134578, 0.00667463103, -0.0115202079, -0.00638396759, 0.00205768645, 0.0222464073, -0.0119384797, -0.00283219875, 0.00590543589, 0.0079897074, 0.000460365234, -0.00204882468, 0.0129664373, 0.0165749211, 0.0216083657, 0.000460365234, 0.00468961056, 0.00396649633, -0.00636978867, -0.00942175742, -0.00114758988, 0.000161615215, -0.000203819058, -0.0116336374, -0.00735875405, 0.0095280977, -0.00796843879, -0.00770613272, 0.0242314283, -0.0240045674, 0.0074580051, 0.0138313388, -0.012697041, -0.00813858397, 0.0193539485, -0.0111302929, -0.000915413431, -0.0107261995, -0.0219486542, 0.00480658514, 0.00937922113, -0.00836544298, -0.0179644339, -0.000713366724, 0.0175532512, -0.0240045674, 0.000385483872, -0.0021587098, 0.0124134673, -0.0158943422, -0.00698301801, -0.00802515354, 0.0114493137, 0.00976913609, 0.00656829076, -0.00118658144, -0.0178793631, 0.00337276235, -0.0139518576, -0.0166458134, 0.00679869484, 0.00505471276, 0.0104568042, -0.000139128664, -0.00735166483, 0.0153697291, -0.0041082832, -0.0128671862, 0.0193114132, 0.00760688167, -0.00968406349, 0.00345074525, -0.0118604973, -0.0106340377, -0.0004785317, 9.89740947e-05, 0.00034316926, -0.0209419653, 0.00276662223, -0.000857369334, 0.0223173015, 0.00730912853, -0.00239974796, -0.00137444935, -0.00647967355, 0.00889714528, -0.00956354477, 0.00915945135, -0.0127324881, 0.00883334, -0.0275776051, -0.00293676672, 0.00833708607, 0.0133917984, -0.029917093, -0.0270104557, 0.00418272149, 0.0299454499, 0.0146607934, -0.0200770628, -0.0139873046, 0.00943593588, -0.00380344084, -0.0045513683, 0.0014674972, -0.0121086249, 0.00399130909, 0.0127395773, -0.0153697291, 0.00425361516, 0.0049519171, 0.0199210979, 0.000631839095, -0.00982585084, -0.00688731205, 0.00880498346, -0.0171278901, 0.0281731114, -0.00628471654, 0.0181062222, -0.00248836493, 0.00817403, -0.00789754558, 0.00188754173, -0.014972725, -0.00229163514, 0.0139802154, 0.0111586507, -0.00818112, 0.0261880904, -0.0134414239, 0.00588062312, -0.000509547652, 0.0164473113, -0.00416854303, -0.005274483, 0.0099038342, 0.0332632698, 0.0214807559, 0.00471087871, -0.00191235449, 0.0177375749, 0.00987547636, -0.0315618254, 0.00167929183, 0.0108892545, -0.0213531479, -0.00812440459, -0.0158659853, -0.0191838052, -0.00838671159, 0.0157950912, -0.0311931781, -0.00525675947, -0.00293853902, 0.0131720286, 0.00327882846, -0.00764232874, 0.0267552398, 0.0263015199, 0.0215941854, -0.0252381172, -0.017709218, -0.0137249986, 0.00235366705, -0.0217501521, 0.00214984803, 0.0172554981, 0.0104142679, -0.0171420686, -0.0188435148, 0.00161282904, 0.00739420112, 0.0149301896, 0.0240612831, 0.0142850578, 0.0135194072, 0.0206867475, -0.00833708607, 0.00154104934, -0.0229978785, -0.00625635916, 0.0123496624, 0.0158376265, -0.0173405707, 0.0177517533, 0.0146749727, -0.0292648729, 0.021679258, 0.0100952471, -0.00101377827, 0.019141268, 0.0145757217, -0.0243023206, 0.0005135354, -0.00200628839, -0.000393016322, 0.00310868374, 0.0119526582, -0.0250254367, 0.00534183159, -0.0160503071, -0.0299738087, 0.0143488618, 0.000895917707, -0.00551552093, 0.00425716, 0.017454, 0.015398087, -0.00636624405, 0.0129097216, 0.00124772708, 0.00373609201, -0.00397713, 0.0213106126, 0.0117045315, 0.0153271928, 0.0190420169, 0.00290840934, -0.0012193697, 0.00298993709, 0.0025929329, 0.00553324446, 0.00773449, -0.0034720134, 0.00986838713, 0.00115556549, 0.000816162385, 0.0154264439, 1.52587363e-05, 0.0126545047, -0.00383534306, -0.000799325178, 0.00917363, -0.000671273621, 0.0257060137, -0.0170428175, -0.0200345274, 0.0100598, -0.0108538084, -0.0218210462, 0.01259779, -0.0106907524, 0.0114067784, -0.0256067626, -0.0321856886, 0.00285878382, -0.00298993709, 0.0187584423, 0.0134485131, -0.011428046, 0.0168584939, 0.00156497594, 0.00943593588, -0.00715670735, 0.0269112047, -0.00134431967, 0.00077274011, -0.0171420686, -0.00777702639, -0.00253444561, 0.0231963806, 0.00525321485, 0.0031494475, -0.0100598, -0.00832999591, 0.0108112721, 0.00896094926, -0.00614647381, -0.000996054849, -0.00420398964, -0.00885460898, -0.00733039668, -0.0278611798, 0.0185882989, -0.0168017801, -0.0146891512, 0.0102724805, 0.0147884022, -0.00739420112, 0.022203872, -0.0103575531, 0.014944368, -0.00528511684, 0.00159865036, 0.00557932537, -0.00371127925, -0.000305285503, -1.62141387e-05, -0.00966988504, -0.00167308864, 0.0209136084, 0.0269253831, -0.0114493137, 0.0286551882, 0.0138596958, 0.0127537558, -0.00317071564, -0.00113961438, -0.00218529487, 0.016730886, 0.00656120153, -0.0126545047, 0.00113695592, 0.00179183541, 0.0115060294, -0.00502281077, -0.0226150546, 0.00835835375, 0.0109034339, -0.0185741186, -0.0161212012, 0.0275917836, 0.00364038558, -0.01868755, -0.013250011, 0.017454, -0.0175248943, -0.0270388145, -0.00896803848, -0.0381974652, 0.00996054895, -0.00709290337, 0.0150294406, 0.00350214308, -0.0184748694, -0.0025769819, 0.000474987028, -0.0121157141, 0.0105773229, -0.00596924, -0.00625990378, 0.0166458134, 0.00863483921, -0.00940757897, 0.0120589994, -0.0081456732, 0.00681287376, -0.0241605341, 0.000591518357, -0.00255925837, 0.0137958918, -0.0112224547, -0.00664981827, 0.000363551168, 0.00357126445, -0.0325543359, -0.00936504267, -0.00706809061, 0.0210695732, 0.0133279944, -0.010222855, -0.00348796439, -0.0106978426, -0.00180335564, 0.0117257992, 0.0164614916, 0.0235224925, -0.0231680237, -0.0145119168, -0.00410119398, 0.00815985166, 0.0103150168, 0.00167929183, 0.00874826871, 0.00178651838, -0.00252381177, 0.00212149066, 0.0134343347, -0.0177517533, -0.00185209489, 0.00171473867, 0.00718861, 0.0152988359, -0.00571047841, 0.0110877566, 0.0152137633, -0.00182550983, -0.00516105304, -0.0283148978, 0.00141787168, -0.00653993338, 0.00265673711, 0.00966279581, -0.000352695584, -0.00460453844, -0.00169081206, -0.00533828698, -0.0108254505, -0.00586998882, -0.0240045674, 0.0181345791, 0.00434223237, 0.00337807927, -0.0117328884, 0.0194390211, -0.0151570486, 0.0119881053, 0.0143843088, -0.0164614916, -0.00283751567, 0.00854267739, 0.00947138295, 0.0343124941, -0.0210695732, -0.000317248807, -0.0244724657, 0.0194106642, 0.00160042266, 0.00711417152, 0.00774866901, -0.00956354477, 0.00480658514, -0.00975495763, -0.0152137633, 0.0264433082, -0.0046647978, -0.00178297365, 0.00161017058, -0.0329513401, -0.00248482, -0.00903184246, 0.0182480086, -0.000506003, -0.00601177616, 0.0204173531, 0.00370064517, -0.00130266964, -0.00439185742, 0.000411847432, -0.0172838569, 0.00769904349, 0.0163622405, -0.0221471563, 0.00728077115, -0.0164473113, 0.00221365225, -0.00222251401, 0.0132783689, -0.0160077717, 0.0151145123, -0.00381407491, -0.000763878401, 0.0240754616, 0.00798261818, 0.00236607343, -0.00541627, -0.000378837605, -0.00796135, 0.0142425215, -0.0161637384, 0.019467378, -0.00727368193, 0.00910982583, -0.000953518727, 0.00518941041, -0.00501217647, 0.00877662562, 0.0195240937, -0.00393104926, -0.0127183096, 0.00372191332, -0.0167592429, -0.0308528878, 0.0109814163, 0.0106623955, 0.00341352611, -0.0015277568, 0.0120164631, 0.0374318138, 0.00316008157, -0.0246851463, -0.0100668892, -0.00221896917, 0.000787804951, -0.00700074155, -0.0120802671, -0.00563249551, 0.000136691699, 5.07609147e-05, 0.0103929993, -0.00423589163, 0.0184890479, -0.00600468693, -0.0168726742, 0.00644422695, 0.00213389704, 1.62972174e-05, 0.0298320204, 0.00273649232, -0.00912400428, -0.00955645554, 0.00720987748, -0.0125410752, 0.00764232874, 0.016730886, 0.00090167782, -0.0140298409, 0.00552615523, 0.0168443155, 0.00541272527, 0.0121086249, 9.25493587e-05, 0.00750763062, 0.0224590879, -0.00884752, -0.0166599918, -0.00338516873, -0.0265992731, -0.0118037816, -0.0440958105, 0.00288359658, 0.0337169878, 0.03516322, 0.00160042266, 0.0130585982, 0.0146324364, -0.0198502038, -0.0129664373, 0.0139731262, -0.00881207269, -0.00504762353, -0.0075005414, 0.0201479569, 0.013250011, 0.00328237307, -0.00121759728, 0.0202046726, 0.0011493623, 0.00342947734, 0.0374034569, -0.0243448578, 0.0215232931, -0.00156054506, -0.008528498, 0.00693693757, 0.0127324881, -0.00930123869, -0.00449465355, 0.00885460898, -0.00766359642, 0.0153130144, 0.0252239387, -0.0181912947, -0.00548716355, 0.00323806447, -0.00842215773, -0.0168868527, 0.0145615423, -0.0209561437, 0.0118037816, -0.00519295502, -0.0117328884, -0.00908146799, 0.0153555507, 0.0248978268, 0.00595151633, 0.00544462726, 0.00528866146, 0.0208568927, -0.0147316875, 0.0293499455, 0.00852140877, -0.00514687411, -0.00660019275, -0.0187300853, -0.00497673, -0.00348087517, 0.0143346833, 0.00764232874, -0.0139376791, -0.00866319612, -0.000581327418, -0.0147316875, 0.0240754616, 0.0197084174, -0.00454782369, 0.0248552915, 0.0188293364, 0.0181062222, -0.0280313231, 0.0131294923, -0.0047959513, 0.0227143057, 0.00124329631, 0.00246355217, 0.00735166483, -0.00587707805, -0.0274358187, 0.0198360253, 0.0214382205, -0.00888296589, 0.0143205039, 0.00477468316, -0.0102653913, -0.00267623295, -0.00581327407, -0.0112153655, 0.0119313905, -0.0211971831, -0.00886878744, 0.000407416577, -0.00580972945, -0.00017280312, 0.00295980717, 0.00840089, -0.0152563, -0.0107970927, -0.018786801, 0.0176808611, 0.0142425215, -0.000216890068, 0.00227922876, 0.014519006, 0.011917212, -0.00239620311, -0.00247418624, 0.0279462524, 0.0129735265, 0.0032274304, 0.0130373305, -0.00445566187, -0.0067100781, -0.0048739342, 0.0104355356, 0.00699010771, 0.00672071194, -0.0106553063, 0.00602241, 0.0089893071, 0.010676574, -0.0156533029, -0.00702555431, 0.00080154062, 0.0197509527, 0.0138738751, -0.00399130909, 0.00206123106, -0.0262448061, 0.00769904349, 0.0151286917, 0.0155965891, 0.00038947165, -0.0286551882, -0.0146891512, -0.0161495581, -0.00468961056, -0.00466834242, 0.00815985166, -0.0021923841, -0.0137179093, 0.0097266, 0.0195099153, -0.0191838052, 0.00633434206, -0.00426779408, -0.00738711143, -0.0031157732, -0.00540563604, -0.0214665774, -0.00580264, -0.00572820194, 0.0196942389, -0.00688376697, -0.0146182571, -0.012760845, 0.00102618465, 0.0162913464, 0.0120873563, -0.00747927325, -0.0118392287, 0.0228986274, -0.0157100186, 0.00573174655, -0.00632725237, -0.00869864319, -0.0046647978, 0.000931364484, -0.014228343, -0.00991092343, -0.00420044502, -0.00171916944, 0.00166068226, 0.0151003338, 0.0290663708, -0.0121511603, 0.00161282904, -0.0278044641, 0.0125268968, 0.00851432, -0.0110168634, -0.0182480086, -0.00399130909, 0.00855685584, 0.0063095293, -0.0217501521, 0.00500863185, 0.00685186498, 0.00892550219, -0.0163480602, 0.0222322289, -0.0115272971, -0.00691212481, 0.016830137, 0.023990389, 0.00780538376, -0.0016137152, 0.0241605341, -0.0132074747, -0.00218706718, -0.0044733854, -0.0355035067, 0.00966988504, 0.00857812352, -0.0147033297, 0.0149018317, 0.0019761587, 0.000345384702, 0.0126261478, -0.0075005414, -0.0222747643, -0.00656829076, 0.0130727775, -0.0319021121, 0.000836101244, -0.0100668892, -0.0384810381, -0.0152988359, -0.00969824288, 0.00243519456, 0.0285275783, -0.00307323691, 0.0190845542, 0.00593733788, 0.0201763138, 0.0221329778, 0.0249261856, 0.0164614916, -0.0091027366, 0.00283751567, -0.0269253831, 0.0259186942, -0.00191767153, -0.0156391244, -0.00106340379, 0.00785500929, -0.018162936, 0.0197651312, -0.000595063029, 0.00637687789, 0.0142354323, 0.00571402302, -0.0214949343, 0.00628471654, 0.000760776806, 0.0115131186, 0.0141078234, -0.0144481128, -0.00623863563, -0.0182196517, 0.0061783758, 0.00326464954, -0.0174256433, 0.00897512771, 0.00160308124, -0.0107970927, -0.0103929993, 0.0157809127, 0.018162936, 0.000835658167, 0.00542335911, 0.00116176868, -0.00807477906, 0.00713898428, 0.000829455, 0.00262129027, 0.00629535038, 0.00243342225, 0.00040077031, 0.000405201165, 0.000887056, -0.0109601486, -0.0385377519, -0.00524258055, 0.00171739713, 0.00687667774, -0.00722051179, 0.0126261478, 0.00694757141, -0.006788061, 0.0110239526, -0.0237918869, -0.00908855814, 0.0116903521, 0.00534183159, -0.0298887361, 0.00209313305, -0.0281163957, -0.00641941419, -0.0108892545, 0.02519558, -0.0193964858, -0.0203039236, 0.0160644874, -0.0262306277, 0.0153555507, -0.00275244354, -0.016730886, -0.00491647, 0.00040077031, 0.00751472032, -0.00340820919, 0.0118250502, -0.00487038912, 0.00880498346, -0.0279178936, -0.0024529181, -0.0163055249, -0.00388142373, -0.0238202456, -0.0081456732, 0.0171137117, 0.0178651828, 0.00340289203, 0.0155965891, 0.0266418103, -3.07736309e-06, -0.00401257677, 0.00351986662, -0.00691921404, -0.0081031369, -0.00877662562, 0.00404093461, -0.000425583072, -0.00545880618, -0.00621736748, 0.00567857642, 0.00797552802, 0.0157809127, 3.9116091e-07, 0.0014355951, -0.023409063, -0.00919489842, -0.0107332887, 0.00725595839, 0.0177801121, -0.0109459693, -0.022529982, 0.00409056, -0.00999599602, 0.0015277568, 0.0153697291, -0.0195808075, -0.0142779686, 0.0185174048, -0.0118037816, 0.000498913636, -0.0155824106, 0.00150648865, -0.00875535794, -0.020218851, 0.000412733585, -0.00303247315, 0.0125623439, 0.0032114794, -0.0122858584, -0.0179927927, -0.0117896032, -0.00160396739, -0.00603658892, -0.00787627697, -0.0228135567, -0.0191979837, -0.0419973619, -0.00759270322, -0.00899639633, -0.0143488618, -0.00638396759, -0.0089467708, -0.00774866901, -0.00736584375, -0.0227143057, -0.00588416774, 0.0663564, 0.0294350162, 0.0189853031, -0.0172554981, 0.00293853902, -0.0167450644, -0.00935086422, 0.0397004075, -0.0280171447, 0.0258903373, -0.00853558816, 0.00446275109, 0.0149018317, -0.00496255094, -0.0210695732, 0.00884752, -0.00431387452, 0.00924452394, 0.00383888767, -0.018786801, -0.0106978426, 0.00750763062, 0.00227391184, -0.00346492394, 0.0106907524, 0.0172696784, -0.0248127542, -0.0118604973, 0.00196729694, 0.00982585084, -0.00542335911, 0.000533917337, 0.00197970332, -0.0153130144, -0.0350781456, 0.0165891, -0.0148025807, 0.00664272904, 0.00096326659, -0.0152846575, 0.0147458659, 0.0119951945, 0.00147635897, 0.00233594375, 0.00729495, -0.00257166475, 0.00550134247, -0.0147600444, -0.00345251756, 0.00704682246, 0.00248836493, 0.0135194072, 0.0197651312, -0.0112862587, -0.0125481645, 0.0184606891, -0.00126810907, -0.00879789423, 0.00561122736, 0.0139447683, 0.0147033297, -0.00395940663, -0.00680932915, 0.00654702261, 0.00339580281, 0.0168443155, -0.0154689802, 0.00388142373, -0.0144835599, -0.00341352611, -0.00839380082, -0.0153555507, 0.0041508195, -0.0157100186, 0.000342061539, 0.00492355973, -0.00049093808, 0.00803933293, 0.00419690041, -0.0164189544, -0.00571756763, 0.01149185, -0.0128530068, -0.00757143507, 0.00710708182, -0.0121228034, -0.0142354323, -0.0230971295, 0.0165607408, 0.00216225442, -0.00846469402, 0.0202330295, 0.00555451261, 0.00900348555, 0.0102370335, 0.00287827966, -0.00382116437, -0.000870661868, 0.00100934738, -0.0194106642, 0.000596835394, 0.00813149475, 0.00610748259, 0.0307111014, 0.00321856886, 0.0246000737, 0.0158376265, -0.0041862661, 0.0120802671, -0.00452301092, 0.0241463557, -0.0161637384, 0.00970533211, 0.0323274769, 0.00479949592, 0.0208427142, 0.0097266, -0.0110310419, 0.0117754247, 0.00115379307, 0.0091027366, 0.00053480349, -0.0195099153, -0.0144268451, 0.00101555057, -0.0163338818, 0.000984534621, -0.00871991087, 0.00570338918, 0.00759270322, 0.0237209946, -0.0135194072, 0.0155540528, 0.0132925473, 0.0187159069, 0.00114758988, -0.0278753582, -0.0148025807, -0.0123000368, -0.00433868729, 0.0172129627, 0.00380698568, 0.0322707593, 0.0217359737, 0.00685540959, 0.0100739785, 0.00504053384, -0.0132925473, 0.0254366193, -0.00342061557, -0.0158801638, 0.00583808683, -0.00203464599, 0.0143205039, -0.000670387468, 0.00759270322, -0.000397004071, -0.00848596264, 0.0178935416, -0.0221613348, -0.01149185, 0.00394877279, 0.00638042251, 0.00735875405, 0.0214665774, -0.030569315, 0.0136966407, 0.00414727489, -0.00395940663, 0.00853558816, 0.0246567894, -0.00493419357, -0.0149018317, 0.0103717316, -0.0246567894, -0.0061783758, -0.0104142679, 0.0195949879, -0.01259779, 0.00415790873, -0.00976204686, 0.00482076406, -0.0100598, 0.0392183326, -0.0136186583, -0.0240187477, -0.00366165373, -0.00564667396, 0.0269679204, 0.0156107675, -0.00221542455, 0.00510433828, -0.015951056, 0.00340643688, -0.0245717168, -0.0225158036, -0.000958835764, -0.00999599602, -0.00449110847, 0.00105631445, 0.014845117, 0.00774158, 0.0100739785, 0.0162629895, -0.0139873046, 0.0271806, -0.000599050778, -0.00255925837, -0.00632725237, -0.0043635, 0.0251246877]
19 Sep, 2023
C# Program for Search an element in a sorted and rotated array 19 Sep, 2023 An element in a sorted array can be found in O(log n) time via binary search. But suppose we rotate an ascending order sorted array at some pivot unknown to you beforehand. So for instance, 1 2 3 4 5 might become 3 4 5 1 2. Devise a way to find an element in the rotated array in O(log n) time. Example: Input : arr[] = {5, 6, 7, 8, 9, 10, 1, 2, 3}; key = 3 Output : Found at index 8 Input : arr[] = {5, 6, 7, 8, 9, 10, 1, 2, 3}; key = 30 Output : Not found Input : arr[] = {30, 40, 50, 10, 20} key = 10 Output : Found at index 3 Recommended: Please solve it on “PRACTICE ” first, before moving on to the solution. All solutions provided here assume that all elements in the array are distinct.Basic Solution: Approach: The idea is to find the pivot point, divide the array in two sub-arrays and perform binary search. The main idea for finding pivot is – for a sorted (in increasing order) and pivoted array, pivot element is the only element for which next element to it is smaller than it. Using the above statement and binary search pivot can be found. After the pivot is found out divide the array in two sub-arrays. Now the individual sub – arrays are sorted so the element can be searched using Binary Search. Implementation: Input arr[] = {3, 4, 5, 1, 2} Element to Search = 1 1) Find out pivot point and divide the array in two sub-arrays. (pivot = 2) /*Index of 5*/ 2) Now call binary search for one of the two sub-arrays. (a) If element is greater than 0th element then search in left array (b) Else Search in right array (1 will go in else as 1 < 0th element(3)) 3) If element is found in selected sub-array then return index Else return -1. Below is the implementation of the above approach: C# // C# program to search an element // in a sorted and pivoted array using System; class main { // Searches an element key in a // pivoted sorted array arrp[] // of size n static int pivotedBinarySearch(int[] arr, int n, int key) { int pivot = findPivot(arr, 0, n - 1); // If we didn't find a pivot, then // array is not rotated at all if (pivot == -1) return binarySearch(arr, 0, n - 1, key); // If we found a pivot, then first // compare with pivot and then // search in two subarrays around pivot if (arr[pivot] == key) return pivot; if (arr[0] <= key) return binarySearch(arr, 0, pivot - 1, key); return binarySearch(arr, pivot + 1, n - 1, key); } /* Function to get pivot. For array 3, 4, 5, 6, 1, 2 it returns 3 (index of 6) */ static int findPivot(int[] arr, int low, int high) { // base cases if (high < low) return -1; if (high == low) return low; /* low + (high - low)/2; */ int mid = (low + high) / 2; if (mid < high && arr[mid] > arr[mid + 1]) return mid; if (mid > low && arr[mid] < arr[mid - 1]) return (mid - 1); if (arr[low] >= arr[mid]) return findPivot(arr, low, mid - 1); return findPivot(arr, mid + 1, high); } /* Standard Binary Search function */ static int binarySearch(int[] arr, int low, int high, int key) { if (high < low) return -1; /* low + (high - low)/2; */ int mid = (low + high) / 2; if (key == arr[mid]) return mid; if (key > arr[mid]) return binarySearch(arr, (mid + 1), high, key); return binarySearch(arr, low, (mid - 1), key); } // Driver Code public static void Main() { // Let us search 3 in below array int[] arr1 = { 5, 6, 7, 8, 9, 10, 1, 2, 3 }; int n = arr1.Length; int key = 3; Console.Write("Index of the element is : " + pivotedBinarySearch(arr1, n, key)); } } // This code is contributed by vt_m. Output: Index of the element is : 8 Complexity Analysis: Time Complexity: O(log n). Binary Search requires log n comparisons to find the element. So time complexity is O(log n). Space Complexity:O(1), No extra space is required. Thanks to Ajay Mishra for initial solution.Improved Solution: Approach: Instead of two or more pass of binary search the result can be found in one pass of binary search. The binary search needs to be modified to perform the search. The idea is to create a recursive function that takes l and r as range in input and the key. 1) Find middle point mid = (l + h)/2 2) If key is present at middle point, return mid. 3) Else If arr[l..mid] is sorted a) If key to be searched lies in range from arr[l] to arr[mid], recur for arr[l..mid]. b) Else recur for arr[mid+1..h] 4) Else (arr[mid+1..h] must be sorted) a) If key to be searched lies in range from arr[mid+1] to arr[h], recur for arr[mid+1..h]. b) Else recur for arr[l..mid] Below is the implementation of above idea: C# /* C# program to search an element in sorted and rotated array using single pass of Binary Search*/ using System; class GFG { // Returns index of key in arr[l..h] // if key is present, otherwise // returns -1 static int search(int[] arr, int l, int h, int key) { if (l > h) return -1; int mid = (l + h) / 2; if (arr[mid] == key) return mid; /* If arr[l...mid] is sorted */ if (arr[l] <= arr[mid]) { /* As this subarray is sorted, we can quickly check if key lies in half or other half */ if (key >= arr[l] && key <= arr[mid]) return search(arr, l, mid - 1, key); return search(arr, mid + 1, h, key); } /* If arr[l..mid] is not sorted, then arr[mid... r] must be sorted*/ if (key >= arr[mid] && key <= arr[h]) return search(arr, mid + 1, h, key); return search(arr, l, mid - 1, key); } // main function public static void Main() { int[] arr = { 4, 5, 6, 7, 8, 9, 1, 2, 3 }; int n = arr.Length; int key = 6; int i = search(arr, 0, n - 1, key); if (i != -1) Console.WriteLine("Index: " + i); else Console.WriteLine("Key not found"); } } // This code is contributed by anuj_67. Output: Index: 2 Complexity Analysis: Time Complexity: O(log n). Binary Search requires log n comparisons to find the element. So time complexity is O(log n). Space Complexity: O(1). As no extra space is required. Thanks to Gaurav Ahirwar for suggesting above solution. How to handle duplicates? It doesn’t look possible to search in O(Logn) time in all cases when duplicates are allowed. For example consider searching 0 in {2, 2, 2, 2, 2, 2, 2, 2, 0, 2} and {2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2}. It doesn’t look possible to decide whether to recur for the left half or right half by doing a constant number of comparisons at the middle. Similar Articles: Find the minimum element in a sorted and rotated array Given a sorted and rotated array, find if there is a pair with a given sum. Please write comments if you find any bug in the above codes/algorithms, or find other ways to solve the same problem. Please refer complete article on Search an element in a sorted and rotated array for more details! Master Data Structures and Algorithms at your own pace with our DSA Self-Paced course. In just 90 days, you’ll cover core concepts, solve real-world problems, and sharpen your problem-solving skills. Take the Three 90 Challenge: complete 90% of the course in 90 days and get a 90% refund. Stay motivated, track progress, and achieve DSA mastery. Start today!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array
https://www.geeksforgeeks.org/csharp-program-for-search-an-element-in-a-sorted-and-rotated-array?ref=asr10
PHP
C# Program for Search an element in a sorted and rotated array
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.00141377363, -0.0126481103, -0.016318256, 0.0308818594, -0.0171224698, 0.02577875, -0.00437566126, 0.032870464, -0.0598043576, 0.0298729353, -0.00571723841, -0.0100380667, 0.0221963357, -0.0263051447, -0.0162743889, 0.0165814534, -0.00340146432, 0.049247209, -0.00107655162, -0.0495104045, -0.0245943591, -0.023132151, -0.0553299971, 0.0511773229, -0.0277819764, 0.00834921468, -0.0146147814, 0.0131525723, -0.0322270915, -0.0139567871, -0.00811526179, 0.0185261909, 0.00652510859, -0.033484593, -0.0163036324, 0.0172686912, -0.0288932547, 0.00269046496, -0.0257056393, -0.0107253045, -0.0357656367, 0.0210996792, 0.00126663875, -0.00791786332, 0.0139421653, 0.0167422965, 0.0256471504, 5.86525812e-06, -0.00415632967, 0.0205879062, 0.00114509265, -0.00164224382, 0.025720261, 0.0269777607, 0.00599871343, 0.0027270203, -0.0350052901, 0.0110177472, -0.0193742719, -0.0283814818, 0.0517329648, -0.0110835461, -0.0203831978, -0.0225765109, 0.0210265685, -0.0125969332, -0.0380466841, 0.0126992874, -0.020602528, -0.000708714535, -0.0426965095, 0.0246967152, 0.00275260885, 4.50871676e-06, -0.0325195342, -0.0112224557, 0.0102208424, 0.0278112199, -0.0441002324, 0.00201967661, -0.0243457835, 0.00129953853, -0.0376665108, -0.0469954051, 0.0103085749, -0.00291710743, 0.00973831397, -0.0498613343, 0.0470538922, 0.0312912799, -0.0163767431, -0.0418776721, 0.0169908721, 0.0165960751, 0.0155725284, 0.0448313355, 0.0109300138, -0.0142272962, -0.0382806398, 0.0478142425, 0.0102135316, 0.019198807, -0.00955553725, -0.0126481103, 0.00878056698, 0.0107837934, -0.0340694748, 0.0392456949, 0.032870464, 0.014015276, 0.00266670412, -0.00514332112, 0.0143442731, 0.0151631096, -0.012099782, -0.0279574413, 0.00704784878, -0.0656239539, -0.0182776153, -0.00245833932, 0.0260711908, 0.0127577754, 0.00980411284, 0.0363212787, -0.0317006968, 0.0166984294, -0.0120412931, 0.0192426741, 0.00404300867, -0.00623632269, 0.0106521947, -0.0131818168, 0.000350244809, -0.0117049851, 0.0148926014, 0.0286154356, 0.0108934594, 0.0373740681, -0.00125932775, -0.000832545396, -0.0125311334, -0.0342156962, -0.0253693312, 0.0274310466, 0.0307648834, 0.0134230806, -0.0344788954, 0.0235561915, -0.0306771509, 0.0200322662, -0.0365844741, -0.00221341918, -0.00368293957, -0.00997226685, 0.0354731977, -0.0248283129, 0.000209849881, -0.00453650439, 0.000891947653, -0.00878056698, 0.0515867434, -0.0232198834, 0.00984797906, -0.00607547956, -0.0108934594, 0.0350052901, -0.0106010167, -0.0386023261, -0.0252815988, 0.0379004627, 0.0146513367, -0.00633502146, 0.019301163, 0.0447143577, -0.0369646512, 0.00632771058, 0.00369756157, 0.00163950212, 0.00638985448, -0.0365844741, -0.020602528, -0.0353854634, -0.00629846659, -0.0108861476, 0.0192426741, 0.00513235433, 0.00655435305, -0.022064738, -0.0425210446, -2.30326514e-05, -0.0227227323, -0.0177804641, 0.0278989524, 0.0511773229, -0.0105279069, -0.00731104612, -0.0617052317, -0.0305601731, -0.00907300878, 0.0400060453, 0.00648855371, -0.00126572489, -0.00556370616, 0.0270216279, 0.0177073535, 0.0295220055, -0.0311450567, -0.0252084881, 0.0326657556, -0.0405031964, -0.032197848, 0.0364675, -0.0292441845, 0.0123702902, -0.00105187681, 0.0226642434, -0.0232198834, 0.0503877327, -0.0403862186, -0.00302311755, -0.0137959439, 0.0175318886, 0.0465274975, 0.00771315396, -0.0329874419, -0.0509433709, 0.0170054939, 0.032811977, 0.0309695918, -0.0451237783, 0.015981948, 0.0147317583, -0.0111566568, -0.00649220916, -0.0200761333, -0.0438662767, 0.019418139, -0.00823955, -0.00248758355, 0.0499783121, -0.00701494887, 0.0348590687, -0.00228652963, 0.00786668621, 0.0104840407, -0.0258079935, 0.000859047926, 0.00883174408, 0.0281036627, 0.036087323, 0.0300045349, 0.0112224557, -0.0261296798, -0.00986991264, 0.00125932775, -0.0184677038, -0.00313643878, 0.049539648, -0.00742071215, 0.0166399404, 0.0104840407, -0.0117561622, -0.00518718734, 0.0282352604, 0.0333091281, -0.0118658282, 0.0263197664, -0.0013397492, -0.0161866564, -0.0415267423, 0.0259249695, -0.00786668621, 0.0217138082, -0.00491667865, 0.035239242, -0.0242580511, -0.0216553193, -0.0214213654, 0.0103670638, -0.0203978196, 0.0183214825, -0.00550887361, 0.0355609283, -0.0023724346, 0.00516525423, -0.0154701741, -0.00429523969, 0.0172540694, -0.0311158132, 0.00163493271, -0.0225765109, -0.00347457477, -0.0310573243, -0.00152343931, 0.0489840098, 0.00809332822, -0.0126846656, -0.0317591839, -0.0257056393, -0.00486915698, 0.00382733275, -0.0106083285, 0.0153824417, 0.0242726728, -0.0143954502, -0.035794884, -0.0319346488, -0.0240240972, -0.00504096644, -0.0218746513, -0.00296280161, -0.023980232, -0.0290540978, -0.0411758125, 0.00449263817, 0.0212020334, 0.0529904626, 0.00835652556, -0.000650683127, -0.00732932379, 0.0249306671, -0.00964327, -0.0172540694, 0.0373448245, 0.0452407561, -0.0122240698, 0.00409784168, 0.0337477885, -0.0293904059, -0.0247552022, 0.00053918967, 0.0154701741, -0.0245212484, 0.00250037783, 0.00437566126, -0.0400645323, -0.0175757557, 0.00644103158, -0.0286885463, 0.0297998246, -0.00109848473, 0.0142272962, 0.031583719, -0.0193742719, -0.011427165, -0.0149145341, -0.0209534578, -0.0154847959, 0.00621438958, -0.0231467728, 0.00135528517, 0.0143004069, 0.0192865394, -0.00471196929, 0.0395673811, -0.0224887785, -0.0687823221, -0.0335138366, 0.0419946499, 0.0142565407, 0.0285130814, -0.0155432848, -0.0465859883, 0.00967982505, -0.0135985464, 0.0116391852, -0.0169470049, 0.000143936224, -0.0340402313, 0.000213733874, -0.0451237783, 0.00777164241, -0.0128601305, -0.0076839095, -0.0615882538, -0.00658725249, 0.0376665108, -0.0227812193, 0.00855392404, -0.00201053778, -0.0271093603, 0.0310573243, 0.0152215986, -0.0135035021, -0.0148999123, -0.0350637771, 0.00651048683, 0.00537361903, -0.0538385436, 0.0269192718, -0.00984066818, -0.0107106827, -0.034566626, 0.0159380808, 0.0349175557, -0.0386900567, 0.00322234374, 0.0338647664, 0.00551618449, -0.0197398253, 0.0398013368, -0.0156310163, 0.025837237, -0.00698204944, 0.00469369162, 0.0153531972, -0.0133572817, -0.0158211049, 0.0409418605, 0.0227519758, 0.000407819287, 0.0268169176, -0.0473755784, 0.0324610472, 0.0264367443, 0.0142857842, -0.00198677694, 0.0146074705, 0.000424040685, -0.000142451172, -0.0411173254, 0.00419288501, 0.00193194393, 0.0357071497, -0.0571431369, -0.0137740113, -0.0137301451, 0.0164791, 0.0172102023, -0.0208511036, -0.0140225869, -0.00593291409, 0.0170786045, 0.0258226153, -0.0421116278, -0.0107837934, 0.0401522666, -0.0268315393, -0.0401815102, -0.0225472674, 0.0130209737, 0.0938738361, -0.0219916273, -0.0138324993, 0.0105498396, -0.00405031955, -0.0262466557, 0.000176721704, -0.00394796487, 0.0288640112, -0.0114490986, 0.0102354651, 0.0131598832, -0.00736587914, 0.0374325588, -0.0247552022, 0.00530050835, -0.0184530802, -0.0129771074, 0.0317591839, -0.000535991101, 0.00157918595, 0.0123702902, -0.00546866283, 0.0385145918, -0.00808601733, -0.022064738, -0.0178389531, -0.02285433, 0.00837845914, 0.0162743889, -0.041146569, 0.0233222377, 0.0566167422, 0.0520254038, 0.00467907, 0.00784475263, -0.00433179503, -0.00782282, -0.0107984152, 0.00427330658, -0.0151046216, 0.00539555214, -0.0272848252, -0.00916074123, -0.015250843, 0.0185261909, -0.0233953483, -0.0206463952, 0.000299295963, 0.00179486186, 0.00216589752, -0.0701860413, -0.0204416849, -0.000283988455, 0.0286593, -0.0631674379, -0.0232783705, -0.00309074484, 0.0383683704, 0.0214798544, -0.0457379073, -0.0517329648, 0.0303262193, -0.0190672092, -0.0298436917, 0.0123410458, 0.0301215108, 0.0489255227, -0.0687823221, -0.0119681824, -0.0229420625, 0.0157479942, 0.0333968587, -0.029097965, -0.00991377886, -0.0440124981, 0.00317116641, 0.0105863949, -0.0107837934, 0.00894872099, 0.014804869, 0.0204709303, 0.000708714535, -0.0135035021, 0.0309403483, 0.00147683138, -0.0276065115, -0.010696061, 0.0006959202, -0.0410295911, 0.0148341125, 0.00212020334, 0.0192134306, 0.00278002536, -0.0192426741, 0.00638619903, 0.0167569183, 0.00327717653, 0.027972063, -0.0108569041, 0.0265537202, -0.0284692142, 0.0194912497, -0.034566626, 0.0221524704, 0.0296536032, 0.00760348793, 0.00296462933, 0.0211435463, 0.0286300573, 0.0284253489, 0.00780819729, -0.0136643453, -0.0210704356, 0.0284545925, -0.0108715259, -0.0186139233, -0.0181752611, 0.0209095925, 0.0024711336, 0.0297413357, 0.0137813222, 0.0124214673, 0.00119170058, -0.0125676887, 0.0165083427, 0.0304139517, -0.0333968587, -0.00867821183, 0.00617052289, -0.015367819, 0.0188332554, -0.0144320056, -0.00299935672, 0.0280744173, 0.0214067437, 0.00264294329, -0.00606451277, -0.00286410237, 0.00861241296, -0.00577938231, -0.0019154941, -0.0301215108, -0.0216845628, -0.020149244, -0.00921191834, -0.0157918595, -0.00511773257, 0.0165229645, -0.00668229628, 0.0506801717, 0.00545769604, 0.0280013066, -0.0103524411, -0.00441952748, -0.00837114826, -0.00761811, 0.00202333205, -0.000619611179, 0.0313790105, 0.00861972384, -0.00179668958, 0.000983335776, 0.0237901453, 0.00372497807, -0.00752306683, 0.0414390117, 0.0214213654, -0.00233770697, -0.0458841249, -0.00391872087, 0.0263928771, -0.0214213654, 0.00610837899, 0.00990646798, -0.000677642587, 0.0150022674, -0.042667266, -0.0514405221, -0.00706612645, -0.0125896214, -0.00258628256, 0.0331336632, -0.00635695457, 0.032256335, -0.00682851719, -0.0269923825, -0.0254278183, -0.0102939531, 0.0230882838, -0.0166545641, -0.0220793597, 0.0143077178, -0.00436103903, 0.000251088757, -0.00395162031, 0.0174587779, -0.0155725284, 0.0129624847, -0.0172394477, 0.0157918595, 0.0237462781, 0.0910663903, -0.00118073402, -0.00760348793, -0.0232052617, -0.0347128473, 0.0215675868, 0.00109482917, -0.0286008138, 0.0151923541, 0.0490132533, 0.00951167103, 0.00161208573, -0.033777032, -0.0044743605, 0.00701494887, -0.0223718025, -0.0103231976, -0.000381773687, 0.00854661316, 0.0229128189, 0.0383683704, -0.00921922922, 0.00334297586, 0.0311158132, 0.0312912799, 0.00496054487, 0.0230297949, -0.00940200593, -0.00686872797, -0.0205294173, -0.00167879905, 0.0122094471, -0.0340402313, -0.015250843, 0.011142035, 0.00574648241, 0.00216955296, 0.0211581681, -0.00981142372, 0.00934351701, -0.0155432848, -0.00549059594, -0.00588904787, -0.0112078339, -0.0208657254, -0.00937276147, -0.0296097379, -0.0171955805, 0.0164498538, 0.031583719, -0.00731835747, 0.0042038518, -0.0194473825, 0.0051835319, 0.000207450939, -0.0275041554, -0.00247844472, 0.00872938894, -0.00896334276, -0.0165960751, -0.0102354651, -0.0245943591, 0.0261296798, 0.00682120631, 0.0264659878, 0.0277234875, -0.0271386039, 0.0128381969, -0.0244920049, -0.0156310163, 0.00804215111, 0.0209242143, -0.00841501448, -0.0202954654, -0.00398452, -0.0146586476, -0.00508483266, -0.0136570344, 0.0400060453, 0.0098333573, -0.029887557, -0.00580497086, 0.00634964369, 0.0075084446, -0.042433314, -0.0184530802, 0.00193742733, 0.0213775, -0.00386388786, 0.0123629794, 0.00554542849, -0.0184238367, 0.000730647705, 0.0323733129, -0.0185993016, -0.0196813364, -0.00927040633, 0.000186660152, -0.0170054939, 0.0218161624, 0.0166106969, 0.0327534862, 0.00762542151, -0.00464982539, -0.00587077, 0.0230005514, 0.00594388042, 0.00982604641, 0.00304870633, 0.00462789228, -0.00491302321, 0.0156163946, -0.027972063, 0.0112809446, -0.0252084881, 0.032256335, 0.0241703186, 0.00181679497, 0.0342741832, -0.00929234, -0.00101349375, -0.00146129541, -0.00467175851, -0.0437493026, -0.000787308323, 0.01418343, -0.0110469908, -0.0160696805, 0.0166691858, 0.0231467728, 0.00617417879, -0.0389240086, -0.00721965823, 0.0231760163, 0.00245833932, -0.0210996792, -0.00666036317, 0.0265390985, 0.00978218, 0.0141980518, 0.0286300573, 0.0126992874, -0.0235415697, -0.00889754295, 0.0185554363, 0.0489840098, 0.00990646798, -0.0139275435, 0.0214652326, -0.00876594428, 0.0264074989, 0.0234977026, -0.0123776011, -0.0264806096, -0.0256032832, -0.0189794768, -0.0223133136, 0.0119170053, -0.020149244, -0.0232345052, 0.00279830303, 0.00318944384, 0.00256617717, 0.00508848811, 0.017502645, 0.0145562934, 0.00976024661, -0.0188332554, -0.0157918595, -0.0265098531, -0.00540651893, 0.0258957259, 0.0237316564, -0.000584426743, -0.00549059594, 0.0163913667, 0.0168007836, 0.0206463952, 0.00406494178, 0.0355316848, -0.00612665666, 0.0114344768, 0.0262466557, 0.0138836773, -0.0264074989, 0.0345958695, -0.00957016, 0.01677154, 0.0116245635, 0.00421481812, 0.014015276, 0.0336308144, -0.00259724911, 0.0063715768, -0.00268132612, -0.0197690688, 0.029214941, 0.0188624989, 0.00071739644, -0.00645930925, -0.00878056698, 0.0139567871, 0.00831997, -0.0255740397, 0.0108934594, 0.0133792143, 0.0170493592, 0.0314667448, 0.000724707439, -0.0335430801, 0.0094166277, -0.0375202894, 0.0398305804, -0.0285861902, -0.0259688366, 0.0103816856, -0.00973100215, -0.0221670922, 0.00100161333, 0.00439759437, -0.00366283418, 0.0201199986, 0.00987722352, -0.0248868018, -0.0326365121, -0.0202369764, -0.0172248259, -0.00391872087, -0.00802752841, 0.00517256511, 0.022795843, 0.00991377886, -0.0104767289, -0.00875132252, 0.0438955203, 0.00177749817, -0.0115660755, 0.0341279656, -0.00961402617, -0.0421408713, -0.0485745929, -0.0249599125, 0.03018, -0.0212459, -0.0475510433, 0.0102135316, -0.0312620327, -0.00583421485, 0.0145562934, -0.0104840407, -0.0176488664, 0.0319346488, 0.00354220183, 0.00288420776, -0.0158503484, 0.014073764, 0.000153531975, 0.0182483718, 0.0200468898, -0.0137082115, -0.00482529076, 0.00722331367, 0.019198807, 0.0171809588, 0.0232929941, 0.0170054939, 0.0418776721, 0.00350199128, 0.0085685458, -0.00698570488, -0.0435738377, -0.007545, -0.00905838609, -0.0574355796, 0.0172394477, -0.0113979215, 0.00359155145, 0.012216758, 0.0061303121, -0.0125603778, 0.0275480226, 0.0162451454, 0.00726718, -0.02285433, 0.00989184529, -0.00554908393, -0.0349760465, -0.000224814677, 0.0191841852, -0.0112809446, 0.00168793777, -0.00812257268, 0.00918998476, -0.0100453775, 0.00362079567, -0.0438955203, -0.0473755784, 0.0019429106, 0.0250184, 0.0223425571, -0.0157626159, 0.00916074123, -0.0247259587, -0.0168007836, -0.00954091549, 0.0125311334, 0.0245943591, -0.00837114826, -0.0259688366, 0.0143954502, -0.0324902907, 0.0100453775, 0.0033795312, -0.0178389531, 0.0122898687, -0.0245066267, -0.0207341276, -0.0196813364, -0.0117561622, -0.0108276596, -0.0118950726, -0.00758886617, -0.0043171728, 0.031349767, -0.0240533426, 0.00095134991, 0.000224015021, 0.0153239528, 0.0313205235, -8.47481624e-06, 0.0135400575, -0.0136277899, 0.0235415697, -0.00845157, -0.0449190699, -0.0182483718, 0.00686872797, -0.0200030226, 0.00596215809, 0.0147610027, -0.00388216553, 0.0384268612, -0.0154555514, -0.00423309579, 0.014973023, 0.00193194393, 0.0181460176, -0.0372278467, 0.0310573243, 0.00311085023, -0.0371693596, -0.0132622384, 0.0227812193, 0.0100673111, -0.00834921468, 0.004108808, -0.0226788651, -0.0045255376, -0.02228407, 0.0233222377, -0.00981873553, 0.00706978189, -3.95824609e-05, 0.0374910459, -0.00330459303, 0.026568342, -0.0311158132, -0.00869283359, 0.0148194907, -0.00264842645, -0.00470100297, 0.0246820915, 0.00555639528, -0.036701452, 0.0228397083, 0.0419946499, -0.0084077036, -0.00378712197, -0.0329874419, -0.0116757406, -0.0042842729, -0.00056752, 0.00247478927, 0.00472293608, -0.00920460746, -0.00311816134, 0.00264294329, -0.0126042441, -0.00306332833, -0.000697748, 0.000196141671, 0.0131964386, -0.0075084446, 0.0120705375, -0.0231029056, 0.0146147814, -0.0158357266, 0.0304431971, 0.00570261618, 0.0276503768, 0.00219148607, -0.00957016, -0.0327242427, 0.0223718025, -0.0172540694, -0.00229018531, -0.00246382249, 0.0228689536, 0.0207487494, 0.0219477601, -0.00517622055, -0.00257166056, -0.0221670922, -0.0006698746, -0.00456574839, 0.0225765109, 0.00186066132, -0.00171352644, -0.023249127, 0.000905198918, 0.0202369764, 0.0187309012, 0.00881712139, 0.00933620613, 0.0156017728, -0.00974562485, 0.00268132612, 0.0038163662, 0.00500806654, 0.00695646042, 0.00617052289, 0.00427330658, 0.0163913667, -0.00233222381, -0.00203064317, 0.00823955, -0.00746823382, -0.00461692596, -0.0158211049, 0.011142035, 0.0139714098, -0.0108861476, -0.0190379638, -0.00268132612, 0.00742071215, 0.0302092433, -0.0298729353, -0.0017519095, -0.0104401745, -0.0193596501, 0.00496054487, -0.00535168592, 0.00569530483, -0.00255521061, 0.0801290646, -0.0292003192, -0.00185426406, -0.0396551155, 0.0190964527, 0.00812257268, -0.00647758693, 0.00594753632, -0.0109373257, -0.00130045239, 0.0483698808, -0.0195643604, 0.00381271075, 0.0213628765, 0.0189794768, 0.00171718199, 0.0216991846, -0.0129186185, 0.0134888804, -0.0340402313, -0.00182410609, 0.00687603885, 0.0392164513, 0.00894140918, 0.00780088641, 0.0102062207, -0.0055052177, -0.0130794616, -0.0171370916, 0.00601333566, 0.0198568013, -0.00128857186, -0.0026648764, -0.005150632, 0.00537361903, 0.0396258719, -0.00425868435, -0.0036080014, -0.00860510115, 0.0325487778, -0.010637572, 0.000535991101, -0.00046745, 0.0178389531, 0.00186705845, -0.017619621, 0.00280744187, 0.00290979631, -0.0381344184, 0.0142930951, -0.0169323832, 0.00978949107, -0.0148487352, 0.0010372547, -0.0143442731, 0.00919729657, 0.0257348828, -0.00555639528, 0.0157333724, -0.0196374711, 0.00132055779, -0.0131818168, 0.0179120637, -0.0005396466, -0.00839308091, -0.00244737277, -0.0237170346, 0.00222255802, 0.00884636585, -0.012326424, -0.0214798544, 0.00693087187, 0.0324902907, 0.00408321945, -0.00871476717, -0.0108276596, -0.00807139557, -0.0067042294, -0.00387119898, -0.00947511569, -0.00927771814, -0.00130776339, 0.000938555575, 0.0132914819, 0.0116976742, -0.00512138801, -0.014073764, -0.00698570488, 0.0054540406, -0.0165814534, -0.00688335, -0.0258518588, -0.0401522666, 0.0277819764, 0.00223352457, 0.00277454196, 0.0150607554, 0.0165375862, 0.00532975281, -0.0108349705, -0.00240898971, -0.00981142372, -0.00814450532, -0.00420019589, 0.00401010877, 0.00587077, 0.0205147956, 0.00826879311, -0.00305784517, 0.0106156394, 0.007205036, 0.0162012782, -0.00140737637, 0.00473024696, 0.00423309579, -0.000659821904, 0.027299447, 0.00472293608, -0.0147683136, 0.0249745343, 0.000775884779, 0.0105205961, 0.00812257268, -0.0146294041, -0.0159673244, -0.0135766128, -0.000391369453, 0.0128601305, 0.00553446217, 0.0260273255, -0.0081518162, -0.0013918404, -0.000780911127, -0.00886829942, -0.0180290397, 0.00164224382, -0.00729276845, 0.0251792427, -0.00548328459, -0.00361531228, 0.00690162787, 0.0344204046, -0.0036080014, 0.00428061746, -0.000677185657, -0.0140956976, 0.0285130814, -0.0113832988, 0.028483836, 0.0063715768, -0.00498613343, 0.00864896737, 0.00600968, -0.00540286303, 0.0438955203, -0.0370231383, 0.00208913139, 0.0158942156, -0.00870745629, -0.00609741267, 0.0036646619, 0.0116391852, 0.0281621497, 0.00245102821, -0.0286593, 0.00461692596, -0.00808601733, -0.0490717441, -0.0187747665, 0.00227739103, 0.0243750289, -0.0231760163, 0.0474048257, 0.00885367673, 0.027182471, 0.0177658424, 0.0270362496, 0.0231906381, 0.0114417877, 0.00531878602, -0.0207779929, 0.01041093, 0.020602528, 0.000291984907, -0.00921922922, -0.0163913667, -0.016318256, 0.00389313209, 0.0293172952, 0.0243019182, -0.0109665692, 0.01823375, -0.00359520712, 0.00101166603, 0.00573186, 0.0160550568, -0.0124580227, 0.00587808108, -0.0235415697, 0.0311743021, 0.0116903633, -0.0157918595, -0.010301264, 0.00216224184, -0.00317116641, -0.00181496725, -0.0322270915, -0.0216991846, 0.0158211049, 0.0204124413, 0.0120632267, -0.00897065364, -0.00873670075, -0.0234538373, -0.0186139233, 0.0108495923, 0.003081606, 0.019754447, 0.00931427255, -0.019301163, 0.0198275577, 0.00213299785, -0.00998689, -0.00775702, -0.0135473683, -0.0148779796, 0.00307612284, 0.00766197639, 0.00562219461, 0.0123922238, -0.0216406975, 0.00940931682, 0.02577875, 0.0128162643, -0.00252231094, -0.00376153341, 0.023863256, -0.0269338954, -0.0387193, 0.036087323, 0.0248429347, 0.0108349705, -0.0198860466, 0.0203393307, 0.000858134066, -6.51140044e-06, -0.00600236887, -0.0087586334, -0.0174587779, 0.0199006684, -0.0150753772, -0.0183361042, 0.00391141, -0.0204270631, 0.000933986157, 0.0184384584, 0.0128089534, 0.00623632269, -0.0138690546, -0.0406494178, 0.0140956976, -0.00546500692, -0.0153824417, 0.0176781099, 0.00568799395, 0.00134431862, -0.00652510859, -0.025837237, -0.000852193858, 0.0157918595, -0.0193157848, 0.0149145341, -0.0125969332, 0.00527857523, -0.00185060862, -0.0275480226, -0.011478343, -0.0156748835, 0.0147098247, -0.00992840063, 0.00490205642, 0.0281621497, 0.013174505, 0.0178389531, 0.00168336846, 0.00931427255, -0.0112517, 0.00082203577, -0.0135766128, -0.00374142802, 0.00628384436, 0.0130794616, -0.0236585457, -0.0153531972, 0.0106156394, 0.0311743021, 0.0140883867, 0.0135693019, -0.0367306955, 0.00422212901, -0.00191001082, 0.00896334276, -0.023980232, 0.0074134008, -0.00829803757, -0.0103305085, 0.0275626443, -0.0503292419, 0.0254131965, 0.0355024412, 0.00986260176, -0.0302677322, 0.00872207806, 0.013284171, 0.00596946944, -0.00492764497, 0.0318761617, -0.0115222093, -0.00738050137, -0.0118000284, -0.0395673811, 0.0225618891, 0.02836686, 0.00283851381, -0.0231175292, -0.0046827253, -0.0324318, -0.00972369127, -0.0125457551, -0.0126481103, -0.00877325516, 0.00711364811, -0.00707709277, 0.0150461337, -0.00361348456, 0.00440490525, -0.00645930925, 0.00324244914, 0.00676637329, 0.00163310498, -0.0182191283, 0.00972369127, -0.00286958576, -0.00485087931, -5.82027824e-05, 0.00921922922, -0.0291272085, 0.0215675868, 0.00702591566, 0.0314374976, -0.00365735102, -0.00408687489, 0.00232856814, -0.00261918223, 0.0133499708, -0.019081831, 0.0111712785, -0.0147171365, -0.0231029056, 0.00140829023, -0.00211837562, 0.021216657, -0.0104621071, -0.00731470203, 0.0275626443, -0.0259980801, 0.0012977107, 0.00132878264, 0.0156163946, 0.0210411921, -0.00319492724, 0.00641544303, 0.00671154028, -0.00606085733, -0.00944587216, -0.0220939815, -0.0235415697, 0.00188807771, -0.00105279067, -0.0131964386, -0.030735638, -0.0295658708, -0.00304870633, -0.0123410458, -0.00308891712, 0.00541017437, -0.0292588081, 0.00280744187, 0.0348883122, 0.0284107253, 0.00675175106, 0.0241703186, 0.0393041857, 0.0223425571, -0.00161208573, 0.040356975, -0.00982604641, -0.0204563066, 0.00231394614, -0.0147098247, 0.00929965079, 0.00451822672, 0.00810795, 0.0114344768, -0.024652848, 0.0398305804, -0.0233661048, -0.0278989524, 0.0331336632, -0.000343390711, 0.00528954202, 0.00526395347, 0.0123702902, -0.0253254641, 0.00261369906, 0.0281182844, -0.00415998511, 0.0417022072, 0.0126407994, 0.022518022, 0.000499435875, -0.00132147165, -0.00669691851, -0.0289078765, 0.014973023, -0.0115733864, 0.0268461611, 0.0338647664, -0.00292807398, -0.00570627162, -0.00594388042, -0.00647758693, 0.00467175851, -0.0224156678, 0.0199006684, 0.0166399404, 0.0238340106, -0.00333018159, -0.00817375, 0.00596946944, 0.000887835165, -0.0047668023, -0.0155725284, -0.021450609, -0.00616686745, 0.0106595056, 0.0192280523, 0.00159106648, 0.00560757238, 0.0196082257, -0.0031857884, -0.00209644251, -0.00135071576, -0.0159380808, 0.00842232537, -0.0102135316, -0.0138544329, -0.00357144605, 0.0102793314, -0.00784475263, 0.00881712139, -0.00720869144, -0.0127504645, 0.00984066818, 0.0238193888, 0.00728180213, 0.00529319746, 0.0174002908, 0.00243823393, -0.00328265969, 0.00984797906, -0.00368659501, -0.0152069759, -0.0108349705, 0.000552440935, 0.00775702, -0.0241703186, 0.00610472355, -0.0184823256, -0.00450726, -0.00539920758, -0.00602430198, 0.00187711115, -0.0104401745, 0.0241556969, 0.0364967436, -0.0193888955, -0.00565143861, 0.0178535748, 0.0167422965, -0.00168245449, 0.0118438946, -0.00717579201, -0.00521643134, 0.00189904426, -0.0203247089, -0.0113906097, 0.00823955, 0.0148121798, -0.0116464971, 0.00748651149, 0.00557101751, 0.0134961912, -0.00746823382, 0.0243604071, 0.0172686912, 0.0199299119, 0.0207926165, 0.00409053033, 0.00953360461, -0.00690893875, -0.0198421795, -0.00468638074, -0.00281109731, 0.011142035, 0.000568433839, -0.0048289462, -0.0181167722, 0.00812257268, 0.0119828051, 0.00614859, -0.00660187472, -0.00437200582, -0.00967251416, 0.0149876447, 0.0120632267, 0.00912418589, 0.0194473825, -0.0157772377, -0.0085831685, -0.000562950561, 0.00259542139, -0.00211472018, -0.0242580511, -0.00459864829, -2.11691918e-06, 0.0272555798, -0.00868552271, 0.027182471, -0.00224266341, 2.92727435e-07, -0.0127504645, -0.0355316848, 0.025047645, 0.00966520328, -0.00923385192, 0.00291893515, -0.0138178775, 0.00770584261, -0.02690465, 0.0210996792, -0.0217138082, -0.00731104612, -0.0152362203, -0.00581228174, -0.00388947665, 0.00576841552, -0.00200871, 0.00111310685, 0.0284692142, 0.0193304066, -0.00610837899, 0.0117415404, 0.023921743, 0.0118365837, 0.00228104647, 0.0020598874, 0.00250037783, -0.0127139091, -0.00452919304, 0.00377981085, -0.00651779771, 0.0172979347, 0.033104416, -0.0156602617, 0.0237316564, -0.00702591566, 0.0199884, 0.00252048322, 0.00147408969, 0.0112443892, 0.00223535229, 0.00087367004, 0.00100526889, 0.0154116852, -0.000896974, 0.0165229645, 0.0139933424, -0.0209827032, 0.00653607538, -0.0280744173, 0.00707343733, -0.0231467728, -0.00305601745, -0.00774239795, -0.00962864794, -0.0138617437, 0.0169470049, -0.00680658408, 0.00551984, 0.014015276, 0.0101550436, 0.021333633, -0.0205147956, -0.0147536919, -0.0400352888, 0.0102062207, -0.0142272962, -0.0396258719, -0.0169762503, -0.0208072383, -0.00778626418, -0.0124214673, -0.000950436, -0.0183945931, -0.000614127901, 0.0173564237, 0.0130648399, -0.0215090979, -0.0136643453, 0.0138544329, 0.00296462933, 0.00697108265, -0.0118365837, 0.0247552022, -0.000253830396, -0.00788861886, -0.0200907551, -0.00696377177, -0.00615955656, -0.0126407994, 0.00307977828, 0.0162012782, 0.00109574303, -0.0210704356, -0.00648124237, -0.0179705527, -0.01823375, -0.0167276748, -0.00419654045, 0.00403204188, -0.0151484879, -0.00128583028, -0.0022481468, -0.0144027611, 0.00505193276, -0.00135802687, -0.003995487, -0.0199445337, 0.00265208213, 0.0366429649, 0.0118658282, 0.0158357266, -0.0232783705, 0.0166545641, -0.0064958646, 0.00660918606, -0.00901452, -0.0064958646, -0.00427330658, 0.0197690688, -0.00900720898, -0.00774239795, 0.0336893, 0.00448167138, -0.0203247089, 0.0173271801, 0.0248136912, -0.0149510894, -0.0116099417, -0.0320223831, -0.021669941, -0.014519738, 0.00986991264, -0.0102062207, 0.0132914819, 0.00406128634, -0.0100892438, 0.0142857842, 0.000286501629, -0.0193304066, -0.0083419038, 0.0269338954, -0.00903645344, 0.000672616239, -0.0491009876, 0.0192719176, -0.00329362624, 0.00411977479, 0.0161427911, 0.0132183721, 0.0135181248, -0.0054211407, -0.0095920926, -0.0106668165, -0.0102866422, 0.015704127, 0.00150333392, -0.0265537202, -0.00219331379, 0.0241703186, 0.00655435305, -0.0211581681, -0.0154555514, -0.00621438958, -0.0230444185, -0.015367819, -0.0202515982, 0.00277088652, 0.0162305236, 0.0212605223, -0.0116391852, 0.012267936, -0.0028458247, -0.000546043797, 0.00466079218, -0.00544672972, -0.00534437504, 0.00750113372, 0.0236146804, -0.00939469412, -0.0217869189, -0.00296828477, 0.0163475, 0.00910225231, 0.00767659862, 0.00196667155, -0.0197690688, 0.00767659862, -0.00343984738, -0.0211435463, 0.0258957259, 0.00441587204, -0.0187601447, -1.56787664e-05, 0.00358972372, 0.00366283418, 0.0192280523, 0.00960671529, -0.0171955805, 0.0139275435, -0.00644103158, -0.00642275438, 0.0190233421, -0.0119681824, 0.0050044111, 0.0186285451, -0.0135839237, -0.00797635131, 0.0141980518, 0.000180377217, 0.00206354284, -0.00370852812, -0.0126334876, 0.0096578924, 0.0187601447, 0.0016970766, -0.00450726, 0.00306881173, -0.00866359, 0.0138032557, 0.00669691851, -0.0141907409, -0.0134815695, -0.00737319, -0.0270508714, -0.00844425801, 0.00404300867, 0.00290431315, -0.00201419322, 0.0263051447, -0.0272702035, 0.0173710454, -0.0146732703, -0.00905838609, -0.00575013785, 0.00656531937, -0.00968713593, 0.000488926249, -0.00356230722, -0.00526760891, -0.0188186336, -0.0259103477, 0.0204563066, 0.0101038655, -0.00173089025, 0.025164621, 0.0102793314, 0.0159965698, -0.0189502314, 0.0077497093, 0.0232345052, 0.024652848, -0.00655069761, 0.00311267795, 0.0410295911, 0.009175363, 0.0137740113, 0.0129113076, 0.00728545757, -0.00517622055, -0.0219477601, -0.0159234591, -0.00996495597, 0.0102135316, -0.0167276748, 0.00641178759, 0.00669691851, 0.000740700401, 0.00211472018, 0.0119023835, -0.0119096944, -0.0162451454, -0.00437200582, -0.000151018801, -0.00744264526, -0.00970906951, -0.0107837934, 0.00383464387, -0.0146805812, -0.0118950726, 0.019198807, -0.0273140687, 0.0122313807, -0.00399183109, -0.0195058715, -0.0169470049, -0.0247259587, -0.00838577, 0.011200523, 0.00902914256, 0.00234319037, -0.008276104, -0.0224595349, -0.0206463952, -0.0079251742, 0.0114710312, 0.0125530669, -0.0105279069, 0.0157479942, 0.0237462781, 0.0259834584, -0.0289663654, -0.0189209878, 0.00666036317, -0.00617417879, 0.00978218, -0.00532244192, 0.00606451277, 0.00441587204, 0.0233807266, 0.0294781383, -0.0164791, -0.0140372086, 0.00802021753, -0.00996495597, -0.0148560461, 0.00384195475, -0.0100307558, 0.00394430943, -0.0125969332, 0.00895603187, 0.0434861034, 0.0119170053, -0.0150461337, 0.0209680814, -0.00562585, -0.00731470203, -0.0180729069, 0.00951898191, -0.00255703833, -0.0193742719, -0.0160696805, -0.0223425571, 0.00570261618, -0.0023523292, -0.00972369127, -0.0121363364, -0.00779357553, -0.0105425287, 0.00805677287, 0.0114929648, 0.0172979347, -0.00417826278, -0.010242776, 0.0111054797, 0.017166337, -0.00990646798, -0.00229201303, 0.00579765951, 0.00938738324, 0.00343984738, -0.00579034863, 0.0105571505, 0.0335138366, 0.0241118316, -0.00122185866, 0.0114637204, 0.012216758, -0.000556096435, -0.000931701448, -0.00984066818, -0.00341791403, -0.00753037771, -0.00713192578, -0.000632862444, 0.0123995347, 0.00546135148, -0.0124726454, 0.0204709303, -0.033484593, 0.0194912497, -0.0115806973, 0.000435921131, -0.00508483266, -0.000954091549, -0.00722696912, -0.00778626418, -0.0064666206, -0.0225326438, 0.0240240972, 0.0165083427, -0.0101550436, -0.0161866564, 0.0132549265, 0.00992840063, 0.0023724346, 0.001540803, 0.00131416053, 0.0111932121, -0.007120959, -0.000742985052, 0.00461327, 0.0107033718, 0.00606816821, 0.00730008, 0.00876594428, 0.00104273797, -0.0023523292, -0.00687969476, -0.00878787786, 0.0112517, 0.000302951492, 0.0166399404, -0.00197763811, -0.00198494899, 0.0196228474, -0.0125311334, -0.0169908721, 0.0052127759, -0.00776433107, 0.0003088917, -0.00134797418, -0.00412343023, -0.0157333724, -0.0220354944, 0.0069966712, 0.0107911043, 0.000266396237, 0.00229932414, -0.00663477462, 0.0122752469, 0.0153385755, 0.021669941, 0.0154555514, -0.00332835387, 0.0241703186, -0.00881712139, -0.00543941837, -0.0131087061, 0.002560694, -0.0243457835, 0.0085685458, 0.0164059885, 0.00951898191, -0.0216260757, -0.00568433851, -0.0133719034, 0.000922105741, -0.00595119176, 0.00921922922, -0.00417826278, -0.00575744873, 0.0010893459, 0.00395162031, -0.000217503621, -0.00128674414, 0.0213775, 0.00248575583, -0.0156602617, 0.00952629372, -0.000236009713, 0.00567337172, 0.00546500692, -0.0290248543, -0.00859779, 0.0158064812, -0.0116391852, 0.0317884311, 0.0141980518, 0.0293319169, -0.00462423684, 0.0100015113, 0.00303591206, 0.0112955663, 0.00742071215, -0.0210996792, 0.012779709, 0.0163767431, -0.0173856672, 0.0249014236, -0.022401046, 0.0165814534, -0.0149364676, 0.0183799695, -0.0128235752, 0.0105571505, 0.0153385755, 0.0289663654, 0.0125018889, -0.00174734008, -0.00307977828, 0.00952629372, 0.00228287419, -0.0183361042, 0.0116391852, 0.00861241296, -0.0120851593, -0.0100380667, 0.00422944035, -0.0115441419, -0.0159673244, 0.0098991571, -0.0282206386, -0.00171352644, -0.00449994905, 0.00932158437, 0.00252231094, -0.00927771814, 0.00897796452, 0.017502645, 0.0184969474, -0.0303847082, -0.00890485477, 0.00362993451, 0.0232345052, -0.00708805956, -0.000788679114, 0.00246016704, 0.0128601305, -0.0214944761, 0.0018432975, 0.00449629361, 0.00667133, 0.00951167103, 0.0249891561, 0.0225618891, 0.0085685458, 0.0157479942, -0.0105863949, 0.00250403327, -0.000241036061, -0.0144904936, -0.00358058489, 0.0344496518, -0.0205147956, 0.00189904426, 0.00209644251, -0.016552208, 0.0212020334, 0.0133865261, -0.00863434561, -0.00106558495, 0.0162012782, -0.0199152902, 0.00568799395, 0.0125969332, 0.00183781423, -0.00346178049, 0.00532609737, -0.018570058, 0.00722331367, -0.0164059885, -0.0221378487, 0.00250586122, 0.00493130088, -0.0042842729, 0.00829072669, 0.0394796506, 0.000504005235, -0.0136351017, 0.0141980518, -0.00362627907, -0.0105498396, -0.00378712197, 0.00382002164, -0.00406859722, 0.0193742719, 0.018014418, -0.013116017, 0.0035458575, -0.00279647531, 0.00817375, -0.00348554133, 0.0180436615, -0.0228397083, -0.00287872436, -0.00746823382, 0.00889023207, 0.00471562473, 0.00746457838, -0.00612665666, -0.00938007236, 0.01823375, -0.00337404781, 0.00570261618, 0.0184969474, -0.00648855371, -0.0202954654, 0.0144831827, -0.00596946944, -0.00413439656, 0.0109446365, -0.0173125584, 0.0215675868, -0.011990116, -0.00495323399, 0.00114052324, 0.00748285605, 0.0296974704, -0.014519738, -0.0143588949, -0.000160386073, 0.000602704356, 0.0031291279, -0.0221086033, 0.0234830808, -0.0154701741, 0.0051835319, -0.00812257268, 0.00711730355, 0.00912418589, 0.0247259587, 0.00959940348, -0.0111493459, -0.0032625543, 0.0123044914, 0.00635695457, -0.00236512348, 0.00899258722, -0.00987722352, 0.00494957855, 0.00634964369, 0.00736953458, 0.00249672239, 0.00419288501, -0.00572454929, -0.0162451454, 0.00354768522, 0.011763473, -0.00418557413, 0.0115733864, -0.0158357266, 0.00730739068, 0.00739146769, 0.00383098819, 0.0105571505, 0.00281475275, 0.0128381969, -1.51789891e-05, 0.00870014541, 0.00454381527, 0.0293611623, 0.0205147956, -0.0270654932, 0.0047339024, 0.00356230722, 0.00192097737, -0.00370487268, -0.00763273239, -0.00159746362, 0.019754447, 0.00327169313, -0.0233807266, 0.00538458582, -0.00878056698, 0.00250403327, 0.0126407994, -0.0162451454, -0.0146659585, 0.0119170053, -0.0116976742, -0.0131452614, 0.00902183075, -0.00528223114, -0.0023724346, -0.00566606084, 0.00572820473, -0.00343070854, -0.0210119467, -0.00618148968, -0.0203393307, 0.000208136349, 0.00551252905, 0.0165375862, 0.0133280372, -0.0188186336, 0.0110469908, 0.00170255988, -0.00469734706, -0.0106448838, -0.00759617705, -0.00682120631, 0.0111127906, 0.0018432975, 0.000386800035, -0.00390409864, -0.0125384443, 0.00995764509, -0.0168007836, 0.0026173545, 0.00204526517, 0.0150461337, 0.00522374269, -0.0245651156, -0.032811977, -0.001955705, -0.00125567219, -0.00932158437, -0.00161117187, -0.00673347386, 0.00820299424, -0.007545, -0.00957747083, -0.0264367443, 0.0173856672, 0.0156748835, 0.00099978561, 0.024769824, -0.0186431687, -0.0165083427, 0.00697473809, -0.00262101018, 0.0133280372, 0.00662746327, 0.0217722952, 0.00142565405, -0.00562219461, 0.0221232269, 0.00498247799, -0.0155286621, 0.00113229826, 0.00871476717, -0.0111493459, 0.011595319, -0.00107015437, 0.0095920926, 0.0270070042, -0.00471562473, -0.0163036324, -0.0252231099, 0.000550156226, 0.0152069759, -0.0129990401, 0.00502999965, -0.00684313942, -0.0180875286, -0.000933072297, 0.00821030512, -0.00158741092, -0.00822492689, -0.0104986625, 0.0100892438, 0.00395893166, 0.0356486626, -0.0179705527, 0.00483625708, -0.000380631362, -0.00645199837, 0.0164791, -0.00855392404, -0.00222255802, 0.00109939859, -0.0015060755, 0.0491009876, -0.010637572, -0.0161281675, -0.0181021504, 0.0221086033, -0.00326803769, 0.0198275577, 0.00998689, -0.0125457551, 0.000830717618, 0.00648489827, 0.00204892084, 0.00332104275, 0.00367928413, -0.00269229291, 0.0136570344, -0.0288347658, -0.0113906097, -0.00101532158, 0.0229713079, -0.0070295711, -0.026963139, -0.00193559949, -0.00690162787, -0.0135985464, -0.00864165649, 0.0075084446, -0.0127650872, 0.00739146769, 0.0155432848, -0.0262905229, 0.00396989798, 0.0042659957, 0.00144758716, 0.00595850265, -0.00087321311, 0.000978766358, 0.0030340841, -0.0118438946, 0.0178243313, 0.0288640112, 0.00291345199, -0.0183945931, -0.00871476717, -0.00466079218, -0.00555639528, -0.004024731, -0.00359337917, 0.0129917292, -0.0114490986, 0.00796904, -0.0156310163, 0.011931628, -0.000541017449, 0.00973831397, 0.00775702, 0.0158649702, -0.00379443308, 0.0347420909, -0.010922703, -0.0228104647, -0.00266853184, 0.0104474854, 0.00980411284, -0.0125238225, 0.0350637771, 0.0105425287, -0.00231394614, -0.0140079651, 0.000936727796, -0.00228287419, 0.00968713593, -0.00720869144, -0.0344788954, -0.0253254641, -0.00562219461, 0.00193194393, 0.0143735167, 0.00089971564, 0.0191256963, -0.0354147069, -0.0189940985, 0.00679561775, 0.00180765614, -0.00774239795, 0.0201931093, -0.00618514512, -0.00728180213, -0.0151046216, 0.0121875145, -0.00955553725, 0.0230297949, 0.0194766279, 0.00345081394, -0.00771315396, 0.00489109, -0.00663111918, 0.0039296872, 0.0218454059, -0.00145672599, -0.00130684953, 0.0323733129, 0.0137447668, -0.00483260164, 0.0113540553, -0.0177073535, -0.000521825918, -0.0568799414, 0.00604257965, 0.0160111915, 0.0236000568, 0.00018117686, 0.0229128189, -0.00860510115, -0.0375495329, -0.00418922957, 0.0362627879, -0.0106521947, -0.0112663219, 0.00095134991, 0.00828341581, 0.017619621, 0.00744264526, 0.00686141709, 0.0213775, -0.000246747804, 0.00170530158, 0.0162305236, -0.03907023, 0.0154994186, -0.00586345932, -0.00680658408, 0.0258518588, 0.00744264526, -0.0181752611, 0.0085685458, -0.00813719444, -0.0308818594, 0.0137959439, 0.0316129625, -0.0242434293, -0.0049422672, 0.0183361042, -0.00932889525, -0.0350052901, -0.00292259082, -0.0167422965, -0.0109300138, -0.00543210749, -0.0216991846, -0.0124872671, -0.00671154028, 0.0222694464, 0.0178828184, 0.0156163946, 0.00522374269, 0.026232034, 1.73208973e-05, 0.0217430517, -0.022518022, -0.00964327, -0.00177932589, -0.0190964527, -0.0041709519, 0.0167861618, 0.0222694464, 0.0170201156, 0.00956284814, -0.0304139517, -0.00421481812, -0.0146513367, 0.0163621213, -0.00613762345, -0.00701129343, 0.0130721508, 0.0163328778, 0.0168738943, -0.018687034, 0.0225911327, -0.018350726, 0.0162597671, -0.0146440258, 1.58215607e-05, 0.00605720188, -0.0123410458, -0.00905107521, -0.00548328459, 0.0137667, -0.0138763655, 0.0140079651, 0.00512504345, -0.00382002164, -0.000787765253, -0.0160258133, -0.00717944745, 0.000699118827, 0.0049422672, 0.007091715, 0.0123922238, -0.0150168892, -0.00278916419, 0.00549425138, -6.39002565e-06, -0.0163913667, -0.00613762345, -0.0183799695, 0.0220354944, 0.0116172526, -0.00401742, 0.00125293061, 0.0122313807, 0.0268754065, -0.0039296872, -0.0103451302, 0.0268315393, -0.00336490897, 0.0160550568, 0.0287470333, 0.00276540336, 0.0138763655, -0.0111639677, -0.00160660245, 0.021450609, 0.0084077036, 0.0136570344, 0.00265939301, 0.0102500869, -0.00252413866, -0.03792971, -0.0141688073, -0.000211563398, 0.0162597671, 0.0137447668, -0.00618148968, -0.0108715259, -0.0170201156, 0.00474121375, 0.0057135825, 0.00367562845, 0.00279830303, -0.0117415404, -0.00475218, -0.027518779, -0.0119096944, 0.00383098819, -0.0146440258, -0.012575, 0.000311404874, -0.00195387704, 0.0113832988, -0.0284984577, 0.00174459838, -0.0224887785, -0.0120559158, -1.2672956e-06, -0.00361896795, -0.0237170346, -0.00752306683, -0.00534803048, 0.00738781225, -0.00324427686, -0.0116903633, 0.00416364102, -0.0016029469, -0.00539555214, 0.0232052617, -0.00741705624, -0.00129131356, 0.0208511036, -0.00656897528, -0.00991377886, 0.000878696388, -0.0244920049, -0.00853930227, -0.0182045046, -0.00985529, -0.0151338661, 0.00263380446, -0.00454016, 0.0085173687, 0.00361165684, 0.0301507544, -0.00696742721, -0.017619621, -0.0111127906, 0.000558838074, 0.0267145634, -0.000784566684, -0.00187893887, -0.0177658424, 0.0062582558, 0.00581593718, -0.0331921503, 0.00532975281, 0.0104913516, -0.00148414238, 0.0117707849, 0.00269960379, 0.00309440028, -0.00324610458, 0.0217722952, -0.00242726738, 0.00558563927, 0.00149967836, -0.00658725249, -0.00909494143, -0.00601333566, -0.0023102907, -0.0135839237, 0.00938007236, 0.0161135457, 0.00964327, -0.021333633, 0.00572089385, -0.000864074274, 0.0211727899, -0.0064008208, -0.015309331, -0.00178755086, 0.0031583719, -0.019198807, 0.0019154941, -0.0119608715, -0.0270801149, -0.00905107521, -0.00202333205, 0.00785206351, 0.0331921503, -0.0146586476, 0.0183799695, 0.00237060688, 0.0280451737, -0.000645656779, 0.0190087203, 0.0213775, -0.0179997962, 0.00683948398, -0.0148706678, -0.00615224568, 0.0104255518, -0.007205036, -0.0104913516, 0.0239656102, -0.0103597529, 0.0280013066, 0.00737319, 0.0315252319, 0.0148706678, 0.0088244332, -0.0037725, 0.0102573978, 0.000764918223, 0.0256617721, 0.013847122, -0.000604075205, 0.00665305229, -0.0171224698, -0.00187528343, -0.0126261767, -0.0125603778, 0.0103158867, 0.0141468747, -0.0142053626, -0.011990116, 0.0239948537, 0.00339780888, 0.00709537044, -0.00821030512, -0.00547962915, 0.00226642424, -0.000411931775, -0.00726352446, -0.00789593, -0.0029920456, -0.0164206102, 0.00369390612, -0.00514332112, 0.00188442215, 0.00466079218, -0.020485552, -0.00755231082, 0.00286227465, 0.00908763055, 0.00775702, -0.00748285605, -0.00712827034, 0.00263197673, -0.000990646775, -0.00447070459, -0.00562585, 0.000151475746, -0.0198275577, -0.0249014236, -0.00901452, -0.0271678474, -0.00995033421, -0.00925578456, 0.0325487778, -0.0254424419, -0.00426965114, 0.00930696167, -0.0150607554, 0.0153385755, 0.0160696805, -4.38091593e-05, -8.88749055e-05, -0.0119462498, 0.00884636585, 0.00805677287, -0.00848812517, 0.00334845926, -0.00593291409, -0.0159088373, 0.00761079928, -0.0215237197, -0.00541748526, -0.0193742719, 0.00126846659, 0.0387193, 0.015309331, 0.000660735823, 0.00924847368, 0.00228835759, -0.0221963357, 0.00558563927, 0.00977486931, 0.000988819, -0.0158503484, 0.00913149677, 0.00226094108, 0.000954091549, 0.00424406258, -0.00627287757, 0.00274347, -0.00859779, 0.00848812517, -0.0154116852, -0.00288238, 0.00664574094, -0.00380905508, -0.000343847641, -0.00102902972, 0.00485819, -0.011990116, -0.0330166854, 0.014804869, -0.0119023835, 0.00284034153, 0.0213628765, -0.017897442, -0.00979680195, 0.0181752611, 0.00257348828, 0.00125749991, -0.0101038655, 0.000277819752, -0.00494592264, -0.0132622384, 0.00543210749, 0.00118164788, 0.00334845926, 0.00395527622, -0.0322270915, -0.0328412205, 0.00190635538, 0.00534071913, -0.0114344768, -0.000929416739, -0.0121728918, -0.0141395638, -0.0184092149, 0.00284765242, -0.0212459, -0.0114929648, 0.00107563764, -0.00686507253, -0.000259313674, 0.00125475833, -0.0037688443, -0.024433516, 0.0757424384, 0.032197848, 0.0124653336, -0.0231029056, -0.00957747083, -0.0237462781, -0.0117196068, 0.0455331951, -0.00908032, 0.0172394477, -0.00699301576, 0.00413439656, -0.00617783424, 0.0120266713, -0.0098991571, 0.00638254359, 0.00774239795, 0.019301163, -0.0119096944, -0.00171078485, -0.0219916273, -9.31016039e-05, 0.00193559949, -0.0118438946, -0.00796173, 0.0156163946, -0.00144210388, 0.00584883709, -0.0116538079, -0.00271788146, -0.00859779, 0.011478343, -0.00650683139, -0.0116830524, -0.0243311618, 0.000413074129, 0.00690893875, 0.0093508279, 0.00532609737, -0.0211143009, 0.0318469182, 0.0236731675, 0.00389678776, 0.00831997, 0.0133865261, 0.000100069949, 0.0270654932, -0.00370852812, -0.000806956727, -0.0196813364, -0.011990116, -0.00833459292, 0.00982604641, -0.0254863072, -0.0216114521, 0.0127577754, -0.0143077178, -0.01474638, 0.0132622384, 0.0267438069, 0.00919729657, 0.00103908242, 0.00487281242, 0.0099942, 0.0150753772, -0.0147756245, -0.0157187488, 0.00782282, 0.00405397499, -0.00474852463, 0.0152947092, -0.01243609, 0.00131233281, -0.0117122959, 0.0033996366, -0.000215104694, -0.00511773257, 0.00708440365, 0.00535534136, -0.0158942156, -0.00857585762, 0.0149657121, -0.0109080812, -0.0101404209, -0.00808601733, -0.0103305085, -0.000236009713, -0.033484593, 0.0089998981, 0.00908032, 0.0113979215, 0.0279866848, -4.47230414e-05, 0.00277819764, 0.0191695634, -0.00352209667, 0.00328265969, 0.00675175106, 0.00411246344, 0.00129953853, 0.0167130511, 0.00255521061, -0.00549059594, 0.0249014236, -0.00359703484, 0.00978949107, -0.00693452731, 0.00102263258, 0.0185993016, -0.00134797418, 0.00398452, -0.0246820915, 0.00796173, 0.0323733129, -0.00610106811, 0.0163621213, 0.0158357266, -0.0107837934, 0.0115295202, -0.00543576293, 0.0167422965, 0.0021110645, -0.00696011586, -0.00924847368, -0.0074755447, -0.0052456758, 0.015250843, -0.0102793314, -0.0098333573, -0.00367014529, 0.0156602617, 0.00812988356, 0.0153239528, 0.00240533426, 0.0108203487, 0.0179120637, -0.0264952313, -0.00970906951, -0.00365186762, 0.00243823393, 0.0163913667, 0.0120632267, 0.00898527633, 0.0173710454, 0.0101111773, 0.00881712139, 0.00467541395, -0.0266706962, 0.042725753, -0.0195497386, -0.00727449125, 0.00331921503, -0.0166691858, 0.00170347374, 0.00424040668, 0.00910956413, -0.0135181248, -0.026451366, 0.00746457838, -0.0193596501, 0.0059219473, 0.00552715082, 0.0102354651, -0.00696742721, 0.025047645, -0.0194912497, 0.0201784875, -0.00964327, -0.000316659687, 0.00193742733, 0.0103743747, 0.0156602617, -0.0338647664, 0.0138617437, -0.0131013952, -0.00388582121, -0.00598774711, 0.0145928487, -0.00350199128, 0.00519449823, -0.00984066818, 0.0174441561, 0.00204709289, 0.0343034305, 0.00719041424, -0.009175363, 0.00773508707, -0.0147390692, 0.0221524704, -0.00335942581, -0.0181898829, -0.000781368057, -0.00890485477, 0.00528588658, -0.0023102907, -0.00685410574, 0.0199884, -0.0066749854, -0.00719041424, 0.0139348544, 0.000168382539, 0.00635695457, 0.0152215986, 0.00477776863, -0.0286593, 0.0321101137, -0.0067883064, 0.00294452393, -0.00829803757, -0.0220793597, 0.0137740113]
07 Dec, 2024
Search in a Sorted and Rotated Array 07 Dec, 2024 Try it on GfG Practice Given a sorted and rotated array arr[] of n distinct elements, the task is to find the index of given key in the array. If the key is not present in the array, return -1. Examples: Input: arr[] = [5, 6, 7, 8, 9, 10, 1, 2, 3], key = 3Output: 8Explanation: 3 is present at index 8 in arr[]. Input: arr[] = [3, 5, 1, 2], key = 6Output: -1Explanation: 6 is not present in arr[]. Input: arr[] = [33, 42, 72, 99], key = 42Output: 1Explanation: 42 is found at index 1. Table of Content [Naive Approach] Using Linear Search – O(n) Time and O(1) Space[Expected Approach 1] Using Binary Search Twice – O(log n) Time and O(1) Space[Expected Approach 2] Using Single Binary Search – O(log n) Time and O(1) Space[Naive Approach] Using Linear Search – O(n) Time and O(1) SpaceA simple approach is to iterate through the array and check for each element, if it matches the target then return the index, otherwise return –1. To know more about the implementation, please refer Introduction to Linear Search Algorithm. [Expected Approach 1] Using Binary Search Twice – O(log n) Time and O(1) SpaceThe idea is to use binary search twice: 1. Find the pivot point (or index of the min element) : For example, the min in [4, 5, 6, 7, 0, 1, 2] is 0 at index 4. Refer Minimum in a Sorted and Rotated Array to find the index of the minimum element. 2. Binary Search in the Sorted Subarray: Once we find the pivot, we can easily divide the given array into two sorted subarrays using the index of the minimum element. For example, the index of the minimum element in [4, 5, 6, 7, 0, 1, 2] is 4, so the two sorted subarrays are [4, 5, 6, 7] and [1, 2]. Following are the cases that arise If the minimum element = key, then return index of the minimum element. If index of minimum element is 0, then the whole array is sorted, we call binary search for the whole array.If index of minimum element > 0, then instead of calling binary search for both sides, we can save one binary search by comparing the given key with the first element on left side. If key is greater than equal to the first element, we do binary search in the first subarray else in the second. C++ // C++ program to search an element in sorted and rotated // array using binary search twice #include <iostream> #include <vector> using namespace std; // An iterative binary search function int binarySearch(vector<int> &arr, int lo, int hi, int x) { while (lo <= hi) { int mid = lo + (hi - lo) / 2; if (arr[mid] == x) return mid; if (arr[mid] < x) lo = mid + 1; else hi = mid - 1; } return -1; } // Function to return pivot (index of the smallest element) int findPivot(vector<int> &arr, int lo, int hi) { while (lo < hi) { // The current subarray is already sorted, // the minimum is at the low index if (arr[lo] <= arr[hi]) return lo; int mid = (lo + hi) / 2; // The right half is not sorted. So // the minimum element must be in the // right half. if (arr[mid] > arr[hi]) lo = mid + 1; // The right half is sorted. Note that in // this case, we do not change high to mid - 1 // but keep it to mid. The mid element // itself can be the smallest else hi = mid; } return lo; } // Searches an element key in a pivoted // sorted array arr of size n int search(vector<int> &arr, int key) { int n = arr.size(); int pivot = findPivot(arr, 0, n - 1); // If we found a pivot, then first compare with pivot // and then search in two subarrays around pivot if (arr[pivot] == key) return pivot; // If the minimum element is present at index // 0, then the whole array is sorted if (pivot == 0) return binarySearch(arr, 0, n - 1, key); if (arr[0] <= key) return binarySearch(arr, 0, pivot - 1, key); return binarySearch(arr, pivot + 1, n - 1, key); } int main() { vector<int> arr = {5, 6, 7, 8, 9, 10, 1, 2, 3}; int key = 3; cout << search(arr, key); return 0; } C // C program to search an element in sorted and rotated // array using binary search twice #include <stdio.h> // An iterative binary search function int binarySearch(int arr[], int lo, int hi, int x) { while (lo <= hi) { int mid = lo + (hi - lo) / 2; if (arr[mid] == x) return mid; if (arr[mid] < x) lo = mid + 1; else hi = mid - 1; } return -1; } // Function to return pivot (index of the smallest element) int findPivot(int arr[], int lo, int hi) { while (lo < hi) { // The current subarray is already sorted, // the minimum is at the low index if (arr[lo] <= arr[hi]) return lo; int mid = (lo + hi) / 2; // The right half is not sorted. So // the minimum element must be in the // right half. if (arr[mid] > arr[hi]) lo = mid + 1; // The right half is sorted. Note that in // this case, we do not change high to mid - 1 // but keep it to mid. The mid element // itself can be the smallest else hi = mid; } return lo; } // Searches an element key in a pivoted // sorted array arr of size n int search(int arr[], int n, int key) { int pivot = findPivot(arr, 0, n - 1); // If we found a pivot, then first compare with pivot // and then search in two subarrays around pivot if (arr[pivot] == key) return pivot; // If the minimum element is present at index // 0, then the whole array is sorted if (pivot == 0) return binarySearch(arr, 0, n - 1, key); if (arr[0] <= key) return binarySearch(arr, 0, pivot - 1, key); return binarySearch(arr, pivot + 1, n - 1, key); } int main() { int arr[] = {5, 6, 7, 8, 9, 10, 1, 2, 3}; int n = sizeof(arr) / sizeof(arr[0]); int key = 3; printf("%d\n", search(arr, n, key)); return 0; } Java // Java program to search an element in sorted and rotated // array using binary search twice import java.util.*; class GfG { // An iterative binary search function static int binarySearch(int[] arr, int lo, int hi, int x) { while (lo <= hi) { int mid = lo + (hi - lo) / 2; if (arr[mid] == x) return mid; if (arr[mid] < x) lo = mid + 1; else hi = mid - 1; } return -1; } // Function to return pivot (index of the smallest element) static int findPivot(int[] arr, int lo, int hi) { while (lo < hi) { // The current subarray is already sorted, // the minimum is at the low index if (arr[lo] <= arr[hi]) return lo; int mid = (lo + hi) / 2; // The right half is not sorted. So // the minimum element must be in the // right half if (arr[mid] > arr[hi]) lo = mid + 1; // The right half is sorted. Note that in // this case, we do not change high to mid - 1 // but keep it to mid. The mid element // itself can be the smallest else hi = mid; } return lo; } // Searches an element key in a pivoted // sorted array arr of size n static int search(int[] arr, int key) { int n = arr.length; int pivot = findPivot(arr, 0, n - 1); // If we found a pivot, then first compare with pivot // and then search in two subarrays around pivot if (arr[pivot] == key) return pivot; // If the minimum element is present at index // 0, then the whole array is sorted if (pivot == 0) return binarySearch(arr, 0, n - 1, key); if (arr[0] <= key) return binarySearch(arr, 0, pivot - 1, key); return binarySearch(arr, pivot + 1, n - 1, key); } public static void main(String[] args) { int[] arr = {5, 6, 7, 8, 9, 10, 1, 2, 3}; int key = 3; System.out.println(search(arr, key)); } } Python # Python program to search an element in sorted and rotated # array using binary search twice # An iterative binary search function def binarySearch(arr, lo, hi, x): while lo <= hi: mid = lo + (hi - lo) // 2 if arr[mid] == x: return mid if arr[mid] < x: lo = mid + 1 else: hi = mid - 1 return -1 # Function to return pivot (index of the smallest element) def findPivot(arr, lo, hi): while lo < hi: # The current subarray is already sorted, # the minimum is at the low index if arr[lo] <= arr[hi]: return lo mid = (lo + hi) // 2 # The right half is not sorted. So # the minimum element must be in the # right half. if arr[mid] > arr[hi]: lo = mid + 1 # The right half is sorted. Note that in # this case, we do not change high to mid - 1 # but keep it to mid. The mid element # itself can be the smallest else: hi = mid return lo # Searches an element key in a pivoted # sorted array arr of size n def search(arr, key): n = len(arr) pivot = findPivot(arr, 0, n - 1) # If we found a pivot, then first compare with pivot # and then search in two subarrays around pivot if arr[pivot] == key: return pivot # If the minimum element is present at index # 0, then the whole array is sorted if pivot == 0: return binarySearch(arr, 0, n - 1, key) if arr[0] <= key: return binarySearch(arr, 0, pivot - 1, key) return binarySearch(arr, pivot + 1, n - 1, key) if __name__ == "__main__": arr = [5, 6, 7, 8, 9, 10, 1, 2, 3] key = 3 print(search(arr, key)) C# // C# program to search an element in sorted and rotated // array using binary search twice using System; class GfG { // An iterative binary search function static int binarySearch(int[] arr, int lo, int hi, int x) { while (lo <= hi) { int mid = lo + (hi - lo) / 2; if (arr[mid] == x) return mid; if (arr[mid] < x) lo = mid + 1; else hi = mid - 1; } return -1; } // Function to return pivot (index of the smallest element) static int findPivot(int[] arr, int lo, int hi) { while (lo < hi) { // The current subarray is already sorted, // the minimum is at the low index if (arr[lo] <= arr[hi]) return lo; int mid = (lo + hi) / 2; // The right half is not sorted. So // the minimum element must be in the // right half. if (arr[mid] > arr[hi]) lo = mid + 1; // The right half is sorted. Note that in // this case, we do not change high to mid - 1 // but keep it to mid. The mid element // itself can be the smallest else hi = mid; } return lo; } // Searches an element key in a pivoted // sorted array arr of size n static int search(int[] arr, int key) { int n = arr.Length; int pivot = findPivot(arr, 0, n - 1); // If we found a pivot, then first compare with pivot // and then search in two subarrays around pivot if (arr[pivot] == key) return pivot; // If the minimum element is present at index // 0, then the whole array is sorted if (pivot == 0) return binarySearch(arr, 0, n - 1, key); if (arr[0] <= key) return binarySearch(arr, 0, pivot - 1, key); return binarySearch(arr, pivot + 1, n - 1, key); } static void Main(string[] args) { int[] arr = { 5, 6, 7, 8, 9, 10, 1, 2, 3 }; int key = 3; Console.WriteLine(search(arr, key)); } } JavaScript // JavaScript program to search an element in sorted and rotated // array using binary search twice // An iterative binary search function function binarySearch(arr, lo, hi, x) { while (lo <= hi) { let mid = lo + Math.floor((hi - lo) / 2); if (arr[mid] === x) return mid; if (arr[mid] < x) lo = mid + 1; else hi = mid - 1; } return -1; } // Function to return pivot (index of the smallest element) function findPivot(arr, lo, hi) { while (lo < hi) { // The current subarray is already sorted, // the minimum is at the low index if (arr[lo] <= arr[hi]) return lo; let mid = Math.floor((lo + hi) / 2); // The right half is not sorted. So // the minimum element must be in the // right half. if (arr[mid] > arr[hi]) lo = mid + 1; // The right half is sorted. Note that in // this case, we do not change high to mid - 1 // but keep it to mid. The mid element // itself can be the smallest else hi = mid; } return lo; } // Searches an element key in a pivoted // sorted array arr of size n function search(arr, key) { let n = arr.length; let pivot = findPivot(arr, 0, n - 1); // If we found a pivot, then first compare with pivot // and then search in two subarrays around pivot if (arr[pivot] === key) return pivot; // If the minimum element is present at index // 0, then the whole array is sorted if (pivot === 0) return binarySearch(arr, 0, n - 1, key); if (arr[0] <= key) return binarySearch(arr, 0, pivot - 1, key); return binarySearch(arr, pivot + 1, n - 1, key); } // Driver code let arr = [5, 6, 7, 8, 9, 10, 1, 2, 3]; let key = 3; console.log(search(arr, key)); Output8[Expected Approach 2] Using Single Binary Search – O(log n) Time and O(1) SpaceThe idea is based on the fact that in a sorted and rotated array, if we go to mid, then either the left half would be sorted or the right half (both can also be sorted). For example, arr[] = [5, 6, 0, 1, 2, 3, 4], mid = 3 and we can see that the subarray from mid + 1 to high is sorted. And in [5, 6, 7, 8, 9, 3, 4], we can see that the subarray from low to mid-1 is sorted. We can check which half is sorted by comparing arr[low] and arr[mid] (We could also compare arr[high] and arr[mid]). Find the mid point. If key is same as the mid, return the mid.Find which half is sorted. If the key lies in the sorted half, move to that half. Otherwise move to the other half.Note that once we find which half is sorted, we can easily check if the key lies here by checking if key lies in the range from smallest to largest in this half. C++ // C++ program to search an element in sorted and rotated // array using binary search #include <iostream> #include <vector> using namespace std; int search(vector<int>& arr, int key) { // Initialize two pointers, lo and hi, at the start // and end of the array int lo = 0, hi = arr.size() - 1; while (lo <= hi) { int mid = lo + (hi - lo) / 2; // If key found, return the index if (arr[mid] == key) return mid; // If Left half is sorted if (arr[mid] >= arr[lo]) { // If the key lies within this sorted half, // move the hi pointer to mid - 1 if (key >= arr[lo] && key < arr[mid]) hi = mid - 1; // Otherwise, move the lo pointer to mid + 1 else lo = mid + 1; } // If Right half is sorted else { // If the key lies within this sorted half, // move the lo pointer to mid + 1 if (key > arr[mid] && key <= arr[hi]) lo = mid + 1; // Otherwise, move the hi pointer to mid - 1 else hi = mid - 1; } } // Key not found return -1; } int main() { vector<int> arr1 = {5, 6, 7, 8, 9, 10, 1, 2, 3}; int key1 = 3; cout << search(arr1, key1) << endl; return 0; } C // C program to search an element in sorted and rotated // array using binary search #include <stdio.h> int search(int arr[], int n, int key) { // Initialize two pointers, lo and hi, at the start // and end of the array int lo = 0, hi = n - 1; while (lo <= hi) { int mid = lo + (hi - lo) / 2; // If key found, return the index if (arr[mid] == key) return mid; // If Left half is sorted if (arr[mid] >= arr[lo]) { // If the key lies within this sorted half, // move the hi pointer to mid - 1 if (key >= arr[lo] && key < arr[mid]) hi = mid - 1; // Otherwise, move the lo pointer to mid + 1 else lo = mid + 1; } // If Right half is sorted else { // If the key lies within this sorted half, // move the lo pointer to mid + 1 if (key > arr[mid] && key <= arr[hi]) lo = mid + 1; // Otherwise, move the hi pointer to mid - 1 else hi = mid - 1; } } // Key not found return -1; } int main() { int arr1[] = {5, 6, 7, 8, 9, 10, 1, 2, 3}; int n1 = sizeof(arr1) / sizeof(arr1[0]); int key1 = 3; printf("%d\n", search(arr1, n1, key1)); return 0; } Java // Java program to search an element in sorted and rotated // array using binary search import java.util.*; class GfG { static int search(int[] arr, int key) { // Initialize two pointers, lo and hi, at the start // and end of the array int lo = 0, hi = arr.length - 1; while (lo <= hi) { int mid = lo + (hi - lo) / 2; // If key found, return the index if (arr[mid] == key) return mid; // If Left half is sorted if (arr[mid] >= arr[lo]) { // If the key lies within this sorted half, // move the hi pointer to mid - 1 if (key >= arr[lo] && key < arr[mid]) hi = mid - 1; // Otherwise, move the lo pointer to mid + 1 else lo = mid + 1; } // If Right half is sorted else { // If the key lies within this sorted half, // move the lo pointer to mid + 1 if (key > arr[mid] && key <= arr[hi]) lo = mid + 1; // Otherwise, move the hi pointer to mid - 1 else hi = mid - 1; } } // Key not found return -1; } public static void main(String[] args) { int[] arr1 = {5, 6, 7, 8, 9, 10, 1, 2, 3}; int key1 = 3; System.out.println(search(arr1, key1)); } } Python # Python program to search an element in sorted and rotated # array using binary search def search(arr, key): # Initialize two pointers, lo and hi, at the start # and end of the array lo = 0 hi = len(arr) - 1 while lo <= hi: mid = lo + (hi - lo) // 2 # If key found, return the index if arr[mid] == key: return mid # If Left half is sorted if arr[mid] >= arr[lo]: # If the key lies within this sorted half, # move the hi pointer to mid - 1 if key >= arr[lo] and key < arr[mid]: hi = mid - 1 # Otherwise, move the lo pointer to mid + 1 else: lo = mid + 1 # If Right half is sorted else: # If the key lies within this sorted half, # move the lo pointer to mid + 1 if key > arr[mid] and key <= arr[hi]: lo = mid + 1 # Otherwise, move the hi pointer to mid - 1 else: hi = mid - 1 # Key not found return -1 if __name__ == "__main__": arr1 = [5, 6, 7, 8, 9, 10, 1, 2, 3] key1 = 3 print(search(arr1, key1)) C# // C# program to search an element in sorted and rotated // array using binary search using System; class GfG { static int search(int[] arr, int key) { // Initialize two pointers, lo and hi, at the start // and end of the array int lo = 0, hi = arr.Length - 1; while (lo <= hi) { int mid = lo + (hi - lo) / 2; // If key found, return the index if (arr[mid] == key) return mid; // If Left half is sorted if (arr[mid] >= arr[lo]) { // If the key lies within this sorted half, // move the hi pointer to mid - 1 if (key >= arr[lo] && key < arr[mid]) hi = mid - 1; // Otherwise, move the lo pointer to mid + 1 else lo = mid + 1; } // If Right half is sorted else { // If the key lies within this sorted half, // move the lo pointer to mid + 1 if (key > arr[mid] && key <= arr[hi]) lo = mid + 1; // Otherwise, move the hi pointer to mid - 1 else hi = mid - 1; } } // Key not found return -1; } static void Main(string[] args) { int[] arr1 = { 5, 6, 7, 8, 9, 10, 1, 2, 3 }; int key1 = 3; Console.WriteLine(search(arr1, key1)); } } JavaScript // JavaScript program to search an element in sorted and rotated // array using binary search function search(arr, key) { // Initialize two pointers, lo and hi, at the start // and end of the array let lo = 0, hi = arr.length - 1; while (lo <= hi) { let mid = lo + Math.floor((hi - lo) / 2); // If key found, return the index if (arr[mid] === key) return mid; // If Left half is sorted if (arr[mid] >= arr[lo]) { // If the key lies within this sorted half, // move the hi pointer to mid - 1 if (key >= arr[lo] && key < arr[mid]) hi = mid - 1; // Otherwise, move the lo pointer to mid + 1 else lo = mid + 1; } // If Right half is sorted else { // If the key lies within this sorted half, // move the lo pointer to mid + 1 if (key > arr[mid] && key <= arr[hi]) lo = mid + 1; // Otherwise, move the hi pointer to mid - 1 else hi = mid - 1; } } // Key not found return -1; } // Driver code let arr1 = [5, 6, 7, 8, 9, 10, 1, 2, 3]; let key1 = 3; console.log(search(arr1, key1)); Output8 Master Data Structures and Algorithms at your own pace with our DSA Self-Paced course. In just 90 days, you’ll cover core concepts, solve real-world problems, and sharpen your problem-solving skills. Take the Three 90 Challenge: complete 90% of the course in 90 days and get a 90% refund. Stay motivated, track progress, and achieve DSA mastery. Start today!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array
https://www.geeksforgeeks.org/search-an-element-in-a-sorted-and-pivoted-array?ref=asr10
PHP
Search in a Sorted and Rotated Array
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.000408649212, -0.00969485, -0.0181037337, 0.02617025, -0.0203249492, -0.0012035059, 0.0098117562, 0.0474304482, -0.0391134173, 0.0288256872, -0.00941093545, -0.0106217479, 0.0309968, -0.0407501049, -0.0136028519, 0.0136529552, -0.00125465228, 0.0344705805, -0.0233645067, -0.0583528131, -0.0120496722, -0.0386457965, -0.0510044321, 0.0221620444, -0.0240492411, 0.00866774749, -0.00186319, 0.0235315152, -0.0300281495, -0.0219783355, 0.0112730823, 0.0135945017, 0.0178532209, -0.0205921624, -0.0283246618, 0.0158324167, -0.0202915482, 0.0212434959, -0.0392136239, -0.010588347, -0.0246170703, 0.0190222822, -0.0117657576, -0.0183709487, -0.00158031913, 0.0220451374, 0.0211933944, -0.0130767748, 0.00513551524, -0.00557391252, 0.00670539634, -0.00864269584, 0.0424201898, 0.0336522385, 0.0145715019, 0.000585052068, -0.00156883721, -0.000878882885, -0.00926062837, -0.0250178911, 0.0350050069, -0.0353390239, -0.0142875873, -0.0262537561, 0.0299947485, -0.00982845761, -0.0601565056, 0.0247339774, -0.00947773922, 0.000866357237, -0.0372763239, 0.0203917529, -0.0054653571, -0.00642565684, -0.01781982, -0.0129181165, 0.0162833408, 0.0233478043, -0.0374099314, -0.00161476457, -0.0258529354, -0.00600396, -0.0354726315, -0.0503364, 0.0376103409, 0.00366375153, -0.00293517648, -0.0829030797, 0.018454453, 0.0252517033, -0.015840767, -0.0386791974, 0.0127761597, -0.00101092411, 0.00751956319, 0.0395142399, 0.00195191323, -0.00654673809, -0.0455599502, 0.0494011492, 0.0118325604, 0.0304122698, -0.0115820477, -0.00655091321, 0.0109891677, 0.0119494665, -0.0100205168, 0.0400152653, 0.0520064831, 0.0148804681, 0.0226964708, 0.00221912703, -0.0185880587, 0.018120436, -0.028257858, -0.0235816166, 0.0107219536, -0.06546738, 0.0145297498, 0.0106635, 0.00509793824, 0.0247840788, -0.00993701257, 0.0224960614, -0.0484659, 0.0183709487, -0.0125841, 0.0234146081, -0.0106635, -0.00875960197, 0.00311679835, -0.0232810024, -0.00944433734, -0.0120496722, -0.000868444855, 0.0263706613, 0.0105632953, 0.057484366, -0.01878847, -0.00128596637, -0.0244333614, -0.0384119824, -0.0188385732, 0.0142875873, -0.000398211181, 0.030312065, -0.0180369318, 0.0451591313, -0.0363744795, 0.021327, -0.0392804295, -0.00762811862, 0.00625864789, -0.00409379881, 0.0271890033, -0.0363744795, -0.0132688349, -0.00718554575, 0.00168887468, -0.0317817405, 0.0264875665, -0.0118158599, 0.0152228354, -0.00681812689, -0.0188886747, 0.0389798135, -0.000558957, -0.0409171134, -0.0331512131, 0.0468626209, 0.0108138081, 0.00617931876, 0.0165004525, 0.0411843248, -0.0408169068, 0.00512716454, 0.0205086581, -0.00172749546, -0.00244041346, -0.0429546162, -0.00575344684, -0.0190055817, 0.00468041655, -0.0112897828, 0.0224793609, 0.00639225496, 0.0276900288, -0.0250345916, 0.00243415055, -0.00635885308, -0.00938588474, -0.0107219536, 0.0236651208, 0.0440902747, 0.00245920196, -0.012041322, -0.0552464537, -0.00338818738, -0.012191629, 0.0398148559, -0.00935248286, -0.0240826439, -0.000322274456, 0.0163835455, 0.0431550294, 0.00862599537, -0.0334685259, -0.0272725075, 0.0165338535, -0.0272057038, -0.0477978662, 0.0526077151, -0.0327670909, -0.0157071613, 0.00776172569, 0.0193395987, -0.0113148345, 0.0319988504, -0.0335854329, -0.0136696557, -0.0046261386, 0.0221954454, 0.0509042293, -0.00573674636, -0.0401154719, -0.0426874049, 0.018604761, 0.0332514159, 0.0148136644, -0.0470964313, 0.00994536374, 0.00517309224, -0.0182206407, -0.0102960812, -0.00118158595, -0.0237152241, -0.00513133965, -0.000353849522, -0.0163584948, 0.0369423069, 0.00450923294, 0.0312473122, -0.0262203533, -0.00159806374, 0.00639643, -0.0193228982, 0.00731915282, -0.00317525142, 0.031280715, 0.0397480503, 0.0351386145, -0.000870532414, -0.0149305705, -0.0153564429, -0.0240993444, 0.0170432292, -0.000175880952, 0.0386791974, -0.00406039692, -0.00200723484, 0.015991075, -0.0128012104, -0.00220868899, 0.0216777194, 0.0424201898, -0.00963639747, 0.0229803864, -0.000229767335, -0.0076907468, -0.0329174, 0.0387126, -0.0132688349, 0.0119327661, -0.000699870521, 0.00933578238, -0.0267213788, -0.033401724, -0.0176027082, 0.0148136644, 0.000700392411, 0.0249677896, -0.00526077161, 0.0191558897, -0.00360738626, 0.0171684865, -0.00767822145, 0.00467624143, 0.0201579407, -0.0556806736, 0.00277651823, -0.0309132952, -0.0231640954, -0.0237152241, 0.00429212162, 0.0537099726, 0.00516474154, -0.00394140324, -0.0392804295, -0.0477644652, -0.0178866237, 0.010922364, -0.0206589662, 0.0108138081, -0.00231724465, -0.00430464698, -0.0194565039, -0.0258696359, -0.0201579407, -0.0126509033, -0.029193107, 0.0227465741, -0.0486329123, -0.0208259746, -0.0373431295, -0.0064006052, 0.0248675831, 0.0430882238, 0.0147301601, -0.0121999802, -0.00931908097, 0.0216944199, -0.0142374849, -0.0151059302, 0.0537433736, 0.0339194499, -0.0214272067, -0.0111227743, 0.0420193709, -0.0388462059, -0.0279405415, 0.00286628539, 0.00526077161, -0.0333182216, 0.0125005953, 0.0104129873, -0.0515722632, -0.0268716868, 0.0336856395, -0.0111812269, -0.000940989179, 0.000138825912, 0.0146049038, 0.0182540417, -0.0160495285, 0.00211057137, -0.00814167, -0.0136362538, 0.00367001444, 0.0314978249, -0.0238822326, 0.00167426141, 0.0157405622, 0.0250345916, -0.00944433734, 0.0277401321, -0.0185379572, -0.0515722632, -0.0301283561, 0.0213771034, 0.0223123524, 0.0218113251, 0.00496433116, -0.0489335246, 0.0385121889, -0.00218363781, 0.00741100777, -0.0259364396, -0.00771997357, -0.0310469028, 0.00642565684, -0.0347377919, 0.0121331764, -0.0117407059, -0.0194899067, -0.0554468632, -0.0125757493, 0.0294770207, -0.0288757905, 0.00659684045, -0.00429212162, -0.00884310622, 0.0242997538, 0.00132876239, 0.00115862233, 0.00371385412, 0.00974495336, -0.00325040519, -0.00221703947, -0.0287254825, 0.0205587614, -0.0285083707, 0.00778677687, -0.0335019305, -0.00445913, 0.0210764874, -0.0096865, 0.018454453, 0.0208593775, 0.00940258522, -0.0268215854, 0.0430882238, 0.0173187945, 0.0197738204, -0.0109808166, 0.00112522056, 0.0131185269, -0.000438658579, -0.0259531401, 0.0432552323, 0.00870114937, 0.0063421526, 0.00989526, -0.0515388623, 0.0469294228, 0.0182874445, 0.0385789908, -0.0141456304, 0.0220451374, 0.000123299338, -0.0115486458, -0.0374099314, -0.0016878309, -0.00819594786, 0.0270887986, -0.0522068962, -0.0101541243, -0.00493092975, 0.0101791751, 0.0250679944, -0.0271054991, -0.0554802641, 0.0162081867, 0.00941928662, 0.0175359044, -0.034303572, -0.0326000825, 0.0312974155, -0.0113899875, -0.0367084965, -0.0183208454, 0.0156821087, 0.0579185896, 0.0043631, -0.0242329501, 0.0138450144, 0.00503113493, -0.0575511716, 0.0113983387, 0.0109641161, 0.0214105044, -0.0242329501, 0.0155067509, 0.00351135619, 0.00845063664, 0.0460609794, -0.0328672975, 0.0289592948, -0.0119244158, -0.00267631304, 0.00690580672, 0.0250178911, 0.00143627415, -0.00100518309, -0.00318360189, 0.0317483395, 0.0350384079, -0.0105465949, -0.0270386953, -0.0168929212, -0.000304268819, 0.0294102188, -0.0351386145, 0.0397146493, 0.0521066897, 0.042654, -0.00131728046, 0.00819177274, -0.0187717695, -0.0183709487, -0.0253519081, 0.00608328916, -0.0111645265, -0.00363661279, -0.0124421427, -0.00121707527, -0.0204585567, 0.0349048, -0.0203249492, -0.00739848195, -0.0112146288, -0.00472216867, 0.0149973743, -0.0716133, -0.0116405012, -0.00856754184, 0.00782017875, -0.0543446057, -0.0470964313, -0.0124504929, 0.0383451805, 0.0380445644, -0.0531755462, -0.0396144465, 0.0312139113, -0.0225294624, -0.0234647114, -0.000436570961, 0.0407501049, 0.0434222408, -0.061325565, -0.00971155148, -0.0157990158, 0.0151226306, 0.0231640954, -0.0216443166, -0.0193061959, -0.0438898653, 0.00440067705, 0.00873455126, -0.00777007593, 0.0130600743, 0.00319821504, 0.0124671934, 0.0166340582, -0.0120997746, 0.0254688151, 0.0144128436, -0.033368323, -0.00837130751, -0.00861764513, -0.0413847379, 0.0109307142, -0.0034612536, 0.0268716868, 0.00486412598, -0.0335019305, 0.0103795854, 0.035272222, 0.0098117562, 0.0156320073, -0.0128429625, 0.0241828486, -0.0202414449, 0.0155735537, -0.0364746824, 0.016141383, 0.0249176864, -0.00222956506, -0.00167321763, 0.0205086581, 0.0146717075, 0.0229970869, -0.00801223889, -0.00693920814, -0.0160244778, 0.0191892907, -0.00570334448, -0.0125757493, -0.0170432292, 0.00613339152, 0.0082794521, 0.0147886137, 0.0145548014, 0.0213604029, -0.000476757414, -0.0243331566, 0.0122584328, 0.0196402147, -0.0390800163, -0.0219950359, 0.0109474147, -0.0170181785, 0.014279237, -0.0105465949, 0.00776590081, 0.0332347155, 0.00974495336, -0.0088013541, -0.0153313912, 0.00193521241, 0.0163918957, -0.0107971076, 0.0053985538, -0.0164670497, -0.0129598686, -0.031464424, -0.0130767748, -0.0188218709, -0.0156737585, 0.00964474771, -0.0147969639, 0.0602567121, 0.00161058945, 0.017786419, -0.0326668881, -0.00612086616, -0.00716884527, -0.0121498769, -0.0127928602, -0.00671374658, 0.0371427163, 0.00292473845, 0.0076907468, -0.0173855983, 0.00708951615, -0.000247251039, -0.00328380708, 0.027923841, 0.00716049457, -0.00688075507, -0.0448585153, 0.0110392701, 0.0273059104, -0.0287254825, 0.000387251232, 0.00297901616, 0.000432917674, 0.0208927784, -0.0389130078, -0.0378107503, -0.0154399471, -0.0175526068, -0.0060916394, 0.0234814119, -0.004567686, 0.0222288482, -0.0151142804, -0.00963639747, -0.0160244778, -0.0256024208, 0.0225294624, -0.0225461647, -0.0278403368, -0.0055321604, -0.0112146288, 0.0145965535, -0.0149806729, 0.00756131532, -0.0215775147, 0.00728575094, -0.0235148147, 0.0284916703, 0.00690163113, 0.11877653, -0.00564071629, 0.00472216867, -0.0301283561, -0.0313308164, 0.0204919577, -0.00711874245, 0.000677950622, 0.0212936, 0.0627952442, 0.0198740251, 0.00444242917, -0.0388462059, 0.0147552118, 0.00674714847, -0.0158574693, 0.00306252064, -0.00436727563, 0.00936083309, 0.0256525241, 0.0136529552, -0.00711874245, -0.00121394393, 0.004231581, 0.0345373824, -0.00252809306, 0.0240325406, 0.00573674636, -0.00845898688, -0.0292766113, -0.00468041655, -0.00441320287, -0.0315312259, -0.0107136033, 0.00241118693, 0.00658013951, -0.000252470054, 0.00781182805, -0.00323996716, 0.00173688971, -0.014763562, -0.0148721179, -0.00307087111, -0.0178699233, 0.00966144912, -0.0211265907, -0.0137782115, -0.0225461647, 0.0177196153, 0.0303788688, 0.0039894185, -0.00273476611, -0.0101457741, 0.00615426758, -0.000273737562, -0.0254187118, -0.00794126, 0.00773667451, -0.0118659623, -0.0142875873, -0.0183709487, -0.00468876725, 0.034303572, -0.00298319152, 0.0340697579, 0.0102376286, -0.0254855156, 0.0276900288, -0.00454263436, -0.0217445232, 0.0018423138, -0.00244458858, -0.0135109974, -0.01878847, -0.00964474771, -0.00700183632, -0.00133189373, -0.00597890886, 0.0308464915, 0.0115820477, -0.0493677482, -0.00631292583, -0.0182206407, -0.00617931876, -0.0223457534, -0.00507706217, -0.00285584736, 0.00525659649, -0.0218781289, 0.0102543291, -0.00531087397, -0.0240325406, -0.00691833207, 0.0302619617, -0.0188552737, -0.00987021, 0.001985315, 0.00487247668, -0.0197738204, 0.00242788787, 0.0125423474, 0.0184210502, 0.0216944199, -0.0124254413, -0.0146550061, 0.00113670249, 0.0109557658, -0.00579519896, 0.0133356387, 0.0138867665, -0.00520649366, 0.00633797701, -0.0305458773, 0.0184043497, -0.0264875665, 0.0166006573, 0.035272222, 0.018304145, 0.0251347981, -0.0110392701, 0.00407083519, 0.00361156138, 0.00794961, -0.0411175229, 0.0152228354, 0.0117908083, -0.0102626793, -0.0115820477, 0.0174691025, 0.0243498571, -0.000360895181, -0.0431216247, 0.00308965938, 0.0254855156, 0.00155839918, -0.0187383667, -0.00291638798, 0.0107553555, 0.00973660219, 0.0128095616, 0.0345707834, 0.0164503492, -0.00954454299, 0.00821264926, 0.00368254, 0.0511046387, 0.0103378333, -0.0259865411, 0.015064178, -0.00377857, 0.0255857203, 0.0145715019, -0.0234647114, -0.0329007, -0.0275230203, -0.0194565039, -0.0331178084, 0.027289208, -0.0374767333, -0.0076239435, 0.0031710763, 0.000570438802, -0.0167927165, 0.00364913838, 0.00921887625, 0.00584112667, -0.000124799801, -0.0135527495, 0.000257036707, -0.0130016208, 0.0108639104, 0.0247840788, 0.0218614284, -0.000290177471, -0.00673879776, 0.00458438648, 0.0249510873, 0.0105632953, -0.00358233484, 0.0135611, -0.0246170703, -0.00492257904, 0.0443240888, 0.00378900813, -0.0255523194, 0.0480650812, -0.00550710922, 0.0218280274, 0.0163000412, -0.0175860077, 0.0318318419, 0.0114734927, 0.0121498769, -0.00214606081, 0.0149556221, -0.00737343077, 0.0391802229, 0.0318485424, -0.000392992166, -0.0167843662, -0.00302911876, -0.00190598588, 0.0170933325, -0.0180035289, 0.0161747858, 0.0149305705, 0.0268716868, 0.0305458773, 0.0100956708, -0.0271222, 0.0121582281, -0.029042799, 0.02982774, -0.0196068119, -0.0279405415, -0.00041021494, -0.013794912, -0.00405830937, -0.00264082383, -0.00746111, -0.00602066098, 0.0202581454, 0.00407918543, -0.00798718724, -0.0412511304, -0.00536097679, -0.0351386145, -0.00138721534, -0.0242329501, 0.00900176447, 0.0219950359, 0.00749451201, 0.00426498288, -0.0101374229, 0.0374099314, -0.00403117063, -0.0032003026, 0.0395142399, 0.00800388772, -0.0541775972, -0.0403826833, -0.0305124745, 0.0118910139, -0.019089086, -0.0518060736, 0.0227799751, -0.0397480503, -0.000600709114, -0.00224209065, -0.0257527288, -0.0273226108, 0.0225962661, 0.00429629674, -0.00921052508, 0.00274520414, -0.00148428907, -0.000273737562, 0.0168762207, 0.0277568325, 0.00867609773, -0.0122166807, -0.00170975074, 0.0098117562, 0.0107303038, 0.0268716868, 0.0134107927, 0.0261368491, 0.00924392696, 0.0151977846, -0.0107804062, -0.0371093154, -0.00617931876, 0.00799136236, -0.0588204376, 0.00711456733, 0.00657596439, 0.00509376312, 0.0261368491, 0.00411467487, -0.00537350262, 0.0282077566, -0.00737343077, -0.0145631516, -0.030980099, 0.0130684245, -0.0256525241, -0.0225294624, 0.0116405012, 0.0381447673, -0.0150140747, 0.00249051605, -0.0182874445, 0.0011408776, -0.0201579407, 0.00741518289, -0.0366750918, -0.0333516225, 0.00217319978, 0.0415517464, 0.0268883873, -0.0107804062, -0.00595385721, -0.0148971686, -0.00528999791, -0.00214606081, 0.0183208454, 0.018938778, -0.0158574693, -0.0275564231, 0.021661019, -0.0248174816, -0.00635467796, -0.0126342019, -0.035305623, -0.00276399264, -0.0139201684, -0.0127761597, -0.0070352382, -0.0114901932, -0.000159701987, -1.22483862e-05, 5.81594468e-05, -0.0255356189, 0.0195066072, -0.0200410336, -0.00405413425, -0.0054361308, 0.0151810832, 0.0233311038, 0.00311262324, 0.0143710915, -0.0112229791, 0.0365080833, -0.0210764874, -0.0452593379, -0.0198740251, 0.000791203347, -0.0245502666, 0.000234855877, 0.026320558, 0.00489752786, 0.0451257303, -0.0289926957, -0.00259698415, -0.00344664045, 0.00268883887, 0.013794912, -0.0215274114, 0.00890156, -0.00816254597, -0.0241494458, -0.0179868285, 0.0213103, -0.0183876492, -0.002507217, -0.0075863665, -0.0228467789, -0.00718972133, -0.0382115729, 0.0264374651, -0.0108221583, 0.0207758732, 0.00217111199, 0.0297776368, -0.00523572043, 0.0238321293, -0.0136279035, -0.0168344695, 0.00189554784, 0.00613339152, -0.00785358064, 0.0118993642, 0.00195608847, -0.0400486663, 0.0230304897, 0.0326668881, -0.00618349435, -0.00167530519, -0.033184614, -0.0135861514, 0.0191057865, 0.00104745722, 0.0185546577, 0.0131519288, -0.000709264714, -0.0087429015, 0.0133189373, -0.0037409931, -0.00645488314, -0.00307922135, -0.0160829294, 0.0201746412, 0.00243206299, -0.00922722649, -0.0360404588, 0.0118993642, -0.0105549451, 0.0379109569, 0.0106133977, 0.0182540417, 0.00829197839, -0.00440067705, -0.028408166, 0.0149389207, 0.00909362, 0.004567686, 0.0058494769, 0.0165088028, 0.00869279914, 0.0129097663, -0.0085591916, -0.00714796921, -0.00438815169, -0.00929402933, -0.0135861514, 0.0161914863, 0.00644653291, -0.0151643828, -0.0124504929, -0.00698931096, 0.01163215, 0.00650081038, 0.0144545957, 0.0115402956, 0.00137677731, -0.016625708, 0.00715214433, 0.0155401519, -0.00680977665, -0.00774502475, -0.00316690095, -0.000550084631, 0.0124755437, -0.000179664741, -0.012675954, 0.0151393311, -0.00625029765, 0.0011909802, -0.0220451374, 0.0233478043, 0.0255690198, -0.000743710261, -0.0102042267, 0.00200723484, 0.00678055, 0.0105632953, -0.0320489556, -0.000384380779, -0.0129348179, 0.00373681798, 0.0100539187, -0.00669704564, 0.0113565866, 0.0242162496, 0.0896502286, -0.033852648, 0.00155213638, -0.0390800163, 0.0124421427, 0.0134775955, 0.00211370294, 0.0175693072, -0.00713961851, -0.00838800799, 0.0496349633, -0.00741935801, 0.00889320951, 0.0108221583, 0.0112229791, 0.00737343077, 0.00861764513, 0.00700601144, 0.0039810678, -0.0250846948, -0.00746528525, 0.00650498597, 0.0317483395, 0.000779721478, 0.0106551498, 0.00696425932, -0.00187049655, -0.0111144241, -0.034002956, 0.00340071297, 0.0258529354, -0.00202393578, -0.00507288706, -0.0139786219, -0.00125987129, 0.033034306, -0.00620854553, 0.00878465362, -0.0121248262, 0.0155067509, -0.00799136236, 0.00242162496, -0.021327, 0.0130517241, -0.00185692706, -0.0184377525, -0.00303329411, 0.0114233894, -0.0257694311, 0.00841306, -0.0219115317, 0.0123252366, -0.0203249492, -0.00731080258, -0.0108388597, 0.0142458351, 0.0142291347, -0.00283705886, 0.0202414449, -0.0236818232, -0.00286628539, -0.0122918347, 0.0215274114, -0.00401446968, 0.0142458351, -0.00289968727, -0.0402824804, -0.0147134596, 0.00691415695, -0.0113565866, -0.030195158, 0.00260115927, 0.0380445644, 0.00499773305, -0.0136863561, -0.0170515794, -0.00989526, -0.000330885843, -0.00475139543, -0.0199575294, 0.000305834546, 0.00455516, 0.00105580757, 0.0131101767, 0.0133773908, 0.00869279914, -0.018153837, -0.0149055198, -0.000224678792, -0.0233478043, -0.00617096853, -0.0234146081, -0.0553800575, 0.0178365204, 0.0108722616, 0.000404474, 0.00705193914, 0.0126509033, -0.00593298115, 0.000877839047, -0.00478897244, -0.00665529352, 0.000132563087, -0.0198573247, 0.00492675416, 7.84157673e-05, 0.0123419371, 0.0126091512, 0.00853414088, 0.0192894954, 0.033034306, 0.0122166807, 0.0205086581, 0.0122500826, 0.018454453, 0.010438039, 0.0266211741, -0.0106885517, -0.0107386541, 0.0108388597, -0.00211787806, 0.0247840788, 0.0127010057, -0.027289208, -0.0281409528, -0.00547370734, 0.00761559326, -0.00604571216, 0.0100539187, 0.0272057038, -0.0168678705, 0.000971259491, 0.00154065457, -0.0215107109, -0.016625708, 0.00659684045, -0.0143627413, 0.0218781289, -0.00963639747, -0.00173375825, 0.00669704564, 0.0253018066, 0.00013712974, -0.00572839566, 0.00962804724, -0.0219449326, 0.0135861514, -0.019239394, 0.0246170703, 0.0155234514, -0.0112396805, 0.00136216404, 0.0191391874, 0.000132497851, 0.0305959787, -0.0214940105, 0.0202915482, 0.015915921, 0.000729097, -0.000343672436, 0.00303746923, 0.0104213376, 0.0334184244, 0.00351970666, -0.0341198631, 0.0139702708, 0.00418565376, -0.00782017875, -0.016776016, 0.00224417844, 0.0138116134, -0.0202748459, 0.0353724249, 0.00759889232, 0.0132604847, 0.0195567086, 0.0286085773, 0.0161914863, 0.018153837, 0.00554886134, -0.0105465949, 0.00883475598, -0.00238822331, -0.0118743125, -0.0193061959, -0.017185187, -0.00437980099, 0.00572004542, 0.0334852301, 0.0238822326, 0.00359277287, 0.0178031195, -0.000814167, -0.0195567086, 0.0101207225, 0.0134441936, -0.00731080258, -0.00161372079, -0.0221119411, 0.0279906448, 0.00145297498, -0.0113983387, -0.0151476823, -0.000913850323, 0.00912702084, -0.00363661279, -0.0215441119, -0.014688408, 0.00598725909, 0.0126425531, 0.0027660802, -0.0115402956, -0.000173793349, -0.00843393523, -0.0194398034, -0.00225044112, 0.00270345202, 0.00642983196, 0.0117574073, -0.00632545166, 0.0116070993, 0.00523572043, 0.00690580672, -0.0119327661, -0.00294352695, -0.0126008, 0.0143460408, -0.00311888591, -0.000796944252, 0.0109808166, -0.0295939278, 0.0112981331, 0.00972825196, 0.021176694, -0.00621272065, -0.00756966555, 0.0212936, -0.0309633985, -0.0448919162, 0.034002956, 0.0316648334, -0.00969485, -0.016926324, 0.0114484411, 0.0240492411, 9.18547448e-05, 0.000216458837, -0.000693085778, -0.0192727949, 0.0294436198, -0.0190222822, -0.0213938039, 0.0224292576, -0.0163584948, 0.00237152237, 0.0244333614, 0.0165756065, 0.00310427276, -0.0250345916, -0.0508040227, 0.0140871769, 0.0064757592, -0.00448835688, 0.0211265907, 0.0126592536, 0.00201454153, -0.0238655321, -0.0298945438, -0.0180035289, 0.0172853917, -0.0251013953, 0.0248007812, -0.0133189373, 0.0166591108, -0.0204418544, -0.0236317199, 0.00629622489, -0.0176194087, -0.00148428907, -0.00775337545, -0.0015938885, 0.0381447673, 0.00817507226, -0.00201871665, -0.00445913, 0.0168762207, -0.00955289323, -0.00998711586, -0.0111311246, -0.0126008, -0.000628891867, 0.00566994259, 0.00641313102, -0.00950279087, 0.0170599315, 0.034971606, -0.000592880591, 0.019723719, -0.0191224869, 0.0208259746, -0.015698811, 0.0114150392, -0.030195158, 0.020692369, -0.0172853917, -0.0284415688, 0.0261201486, -0.0381113663, 0.0088765081, 0.0224292576, -0.00401446968, -0.0385455899, -0.0148971686, 0.00302285608, 0.00250304164, 0.00649246, 0.0122166807, -0.0105716456, 0.0085216146, -0.012266783, -0.0354726315, 0.00191851158, -0.00526912184, -0.000477018388, -0.0191558897, 0.00499773305, -0.0241327453, 0.00220451388, -0.0177363157, -0.014429545, -0.000268779491, -0.00207508216, 0.0101207225, 0.0191224869, -0.00113357103, 0.0087095, -0.0141372802, -0.016817769, 0.00472634379, -0.0106050475, -0.0212768987, 0.00193938764, -0.00807069149, -0.00111582631, 0.0104547394, 0.00115027186, -0.0120329708, 0.0226463694, 0.00799136236, 0.0159242712, -0.0128012104, -0.0031522878, -0.00639225496, 0.00120872492, 0.0174691025, 0.00453845924, 0.0139285186, 0.00285584736, -0.00818759762, 0.00048041073, -0.0139034679, 0.0294269193, 0.00521066878, -0.00229428103, 0.0163501445, -0.0106969019, 0.00594968209, -0.00415016431, 0.0365080833, 0.0271054991, -0.00592463091, 0.00918547437, -0.0064006052, -0.0116739022, -0.00931908097, 0.0023819604, -0.0255189165, -0.0073149777, 0.00982010737, -0.0122333812, -0.0180202294, -0.0344037749, -0.000666990702, 0.0049434551, -0.0328505971, -0.0147802634, -0.0224793609, 0.0127845099, 0.0423867889, 0.0262036528, -0.00901011471, 0.0241995491, 0.0224459581, 0.0205086581, 0.00369715341, 0.0468626209, -0.0272391066, 0.00593715627, 0.00586200273, -0.0133022368, 0.00394766638, 0.0122751333, 0.0228467789, 0.0115402956, -0.0177697167, 0.0252684038, -0.00894331187, -0.0316648334, 0.0277902354, -0.00374308066, 0.0119411163, -0.00112939579, -0.00184544525, -0.0236985236, 0.0158157162, 0.0172686912, 0.0101123722, 0.0421195738, 0.00848821271, 0.0283079613, 0.00111373875, -0.00314184977, -0.00803729, -0.0263038576, 0.00462196348, -0.0200911369, 0.0312974155, 0.019089086, -0.00283288374, 0.00486412598, -0.002022892, -0.00828780327, -0.00185692706, -0.0210597869, 0.0217612237, 0.00290177483, 0.0211933944, -0.00949444, -0.007381781, -7.8481e-05, 0.00829615351, -0.00443407893, -0.0170265287, -0.0186882652, 0.00359903579, 0.0101708248, 0.0307629872, -0.0076239435, 0.00268675131, 0.0158491191, -0.0011909802, -0.00304164458, 0.008500739, 0.00138512778, 0.00882640574, -0.00389965135, -0.0130016208, -0.00840470847, 0.0154816993, 0.00032853728, 0.0114651415, -0.0109641161, -0.0162081867, 0.0213437025, 0.0163167417, 0.00508123729, 0.00690998184, 0.0181705374, 0.00847568735, 0.00393722812, 0.0240993444, -0.0175192039, -0.0115152448, -0.00587452808, 0.00714379363, 0.00259072124, -0.0213938039, 0.00351344398, -0.00527329743, 0.0042420188, -0.0176027082, 0.0128179118, -0.00479314756, 0.00150203379, 0.00828362722, 0.0290929023, -0.0192727949, 0.000663337356, 0.0234981123, 0.0124838948, -0.00309800985, -0.00108346844, -0.0193395987, 0.00161058945, -0.00132980617, -0.0278069358, 0.00287046074, 0.0104630897, 0.00167843665, -0.0227465741, 0.00540272892, -0.00448000617, 0.00184544525, 0.00488082692, 0.018120436, 0.0140537759, 0.0246003699, 0.0239657369, 0.00745693501, -0.00152917264, 0.00535262609, -0.0290595, -0.0149973743, -0.00625864789, 0.0147051094, -0.00843393523, 0.00531922467, -0.0269718915, 0.00827527698, 0.00299154199, 0.00597890886, -0.00608746428, -0.000338714366, -0.00413137581, 0.0134942969, 0.00741100777, 0.00551546, 0.0263038576, -0.0119745182, -0.00417939061, 0.0113732871, -0.00567411771, -0.00642983196, -0.0334685259, -0.00570751959, -0.0063338019, 0.0309968, -0.00552381, 0.0126008, -0.00686822971, -0.00288089877, -0.00265334942, -0.0326501839, 0.0230471902, 0.00250095408, -0.010588347, 0.00792455953, -0.0132938866, 0.0123669887, -0.0231640954, 0.0274562165, -0.0119578177, -0.0154148955, -0.0141122285, -0.00469711749, -0.000816776534, 0.0162666403, 0.00365122594, 0.00669704564, 0.0255690198, 0.00812079385, 0.00149055198, 0.00243415055, 0.000472321262, 0.0107303038, -0.00622524647, 0.00687240483, 0.000239422516, -0.014354391, -0.017001478, 0.00722312275, -0.00997041445, 0.00848403759, 0.0314477235, -0.017970128, 0.0230638906, -0.00941928662, 0.03273369, 0.00228593056, -0.00242580031, 0.0164085962, -0.0014268799, -0.00391217694, -0.00883475598, 0.00694755884, -0.00214188546, 0.0198239237, 0.0243331566, -0.0172853917, 0.00710204151, -0.012266783, 0.0161163323, -0.0192560945, -0.00990361162, -0.0148303658, -0.0113064833, -0.0204084534, -0.00422531832, -0.0213103, 0.00579937454, 0.0109724663, -0.00589122903, 0.0104714409, -0.0217278209, -0.0116655519, -0.0376437418, -0.000809469901, -0.00835878123, -0.0541441962, -0.0106885517, -0.0138450144, -0.0118910139, -0.00650081038, 0.000345238135, -0.00643400708, -0.00560731441, 0.00578684872, 0.0120747229, -0.0139869722, -0.0204585567, 0.0107887574, -0.00194356288, 0.00794961, -0.00811244361, 0.0234647114, 0.000466319383, -0.00113252725, -0.0217111204, -0.017786419, -0.000964996696, -0.00859259348, -0.00209073909, 0.0146550061, -0.00863434561, -0.0156821087, 0.00645070802, -0.0153063405, -0.0236484203, -0.0156654082, 0.00098169758, 0.00955289323, -0.0104881413, 0.0107637057, -0.00595385721, -0.0225294624, -0.00742353313, -0.00873455126, -0.00317733898, -0.0124254413, 0.0125172958, 0.0295772273, 0.0132187326, 0.0159994252, -0.0183375459, 0.0161163323, -0.0102543291, 0.00524824578, -0.00757384114, 0.000426915794, -0.00435057469, 0.0264207646, -0.00153021654, 0.00411467487, 0.0341031589, 0.0120329708, -0.0141873825, 0.0193897, 0.0247005746, -0.00500190817, 0.00917712413, -0.0127928602, -0.0289592948, -0.0243164562, 0.00336731132, -0.00886815786, 0.00604153704, 0.0205754619, -0.00450088223, 0.00810826849, 0.015991075, -0.0118910139, -0.00958629511, 0.0239657369, -0.00856754184, -0.0051188143, -0.0384453833, 0.00662189163, -0.012675954, -0.0020281109, 0.00894331187, 0.01084721, -0.00819177274, -0.0125924498, 0.000730140833, 0.000888799, -0.0122584328, 0.00359068532, 0.015991075, -0.0125005953, -0.0017066194, 0.0230972916, 0.000225331169, -0.0213604029, -0.00926897861, -0.0123836892, -0.0111060729, -0.0122083304, -0.0119160647, 0.000736403628, 0.00430464698, 0.0156236561, 9.38118756e-05, 0.014354391, -0.0158240665, -0.0122333812, -0.00656343903, -0.00696425932, 0.00402490795, 0.0193061959, 0.0319654495, -0.00290386239, -0.0215775147, 0.000209282676, 0.00926897861, -0.00601648539, 0.0102793807, 0.00811661873, -0.019573411, 0.00597055815, -0.00971990172, -0.0137531599, 0.0279405415, -0.00345707848, -0.0197905209, -2.12348859e-05, 0.0111812269, 0.00611669058, 0.0191892907, 0.00595803233, -0.00702271238, 0.0144211948, -0.0128429625, -0.00736925518, 0.00860094372, -0.0264875665, -0.0038662497, 0.0111060729, -0.00365122594, -0.0172018874, 0.0243164562, 0.00109077501, -0.000335322, -0.00906856824, -0.013085125, 0.00748198619, 0.0187717695, 0.0014080914, -0.00291847554, 0.000511724851, -0.0120830741, 0.00506871147, 0.00672209682, -0.0140454248, 0.00488917716, -0.0147468615, -0.0223791543, -0.0180536322, -0.000945164415, -0.00102919061, 0.000395079784, 0.0180035289, -0.0162666403, 0.0178532209, -0.0191057865, -0.00894331187, 0.010104022, -0.00214606081, -0.0120663727, 0.00793291, -0.00274102902, -0.0125924498, -0.0079621356, -0.0216109157, 0.0157906655, -0.00473051937, -0.00794126, 0.0138116134, -0.000229375903, 0.0212434959, -0.00620019529, -0.0103127826, 0.0201078374, 0.0218948293, 0.0082585765, 0.00309800985, 0.0250846948, -0.00124421425, 0.0116822533, 0.00977835432, 0.00956124347, -0.00809156802, -0.0244834647, -0.0185379572, -0.00465536537, 0.0245836694, -0.0152812889, -2.96668641e-05, -0.0118826637, 0.00442990381, 0.000161659133, -0.000848612573, -0.0137030575, -0.0129849203, -0.00360738626, 0.00218990049, -0.018454453, -0.0137448097, -0.00616261829, 0.0128429625, -0.0188218709, 0.00191016111, 0.0223290529, -0.0133022368, 0.00987856, -0.0144796474, -0.0147886137, -0.00995371398, -0.0263539609, -0.00452593341, 0.010287731, 0.00542360498, -0.00278069358, -0.0133773908, -0.0314477235, -0.0213437025, -0.011481843, 0.0183208454, 0.0157906655, -0.00813332, 0.013460895, 0.0207758732, 0.0242830534, -0.00387042481, -0.0242830534, 0.0070352382, 0.00191538013, 0.00765317027, 0.00540272892, 0.00664276769, 0.00292473845, 0.0140704764, 0.0219115317, -0.00722312275, -0.00789950788, 0.0129181165, -0.00361156138, -0.00102710305, -0.0142458351, -0.00789533276, 0.00840053335, -0.0109474147, 0.00325458054, 0.0334685259, 0.0144712972, -0.00589122903, 0.0178532209, -0.00358233484, -0.00473886961, -0.00775337545, 0.00905186683, -0.00136947073, -0.00875125173, -0.0128847156, -0.0151810832, 0.00623777183, 0.00396854244, -0.0153564429, -0.00774084963, -0.0142291347, -0.0131769804, 0.0110225687, 0.0153731434, 0.0201245397, 0.00525659649, -0.0127845099, 0.00606658822, 0.0121999802, -0.00260950974, 0.00179429888, 0.00436727563, -0.00301450561, 0.0274228156, 0.00752373831, 0.0172352903, 0.0150391264, 0.0164002459, -0.00558226323, 0.00392887788, 0.00196965784, -0.00746946037, 0.0051480406, -0.00864269584, -0.00194669422, -0.0177697167, -0.010922364, -0.00610834034, -0.000107120373, 0.0140704764, -0.00295814, 0.0299279448, -0.0238989331, 0.0154900495, -0.0142708868, 0.00387668773, -0.00676802453, -0.00200619106, 0.00246128952, 0.00658013951, -0.00991196185, -0.0144378953, 0.0195066072, 0.0107887574, -0.00589122903, -0.0259364396, 0.0241661482, 0.00657178927, 0.0069684349, 0.00623359671, 0.00656343903, 0.00824605, -0.00632545166, 0.00149890233, 0.00912702084, 0.0016439911, 0.00130684243, 0.0118325604, 0.00632962678, 0.00626699859, 0.0217111204, -2.51491492e-05, -0.017335495, 0.0135611, 0.00435892493, 0.015323041, 0.00290386239, -0.0160996318, 0.0149305705, -0.00921052508, -0.016216537, 0.00368045247, -0.00187154033, -0.00787863135, -0.00548205804, -0.0028537598, -0.017185187, -0.00888485834, 0.00855084136, 0.00731915282, 0.0102626793, -0.000892452314, -0.00388712576, 0.0092522772, 0.017302094, 0.0268549863, 0.0188886747, -0.00202497956, 0.015097579, -0.0132020311, 0.00315646292, -0.0164252985, 0.00922722649, -0.0215608124, 0.00247381511, -0.014279237, 0.0134441936, -0.034971606, -0.00690998184, -0.00374308066, -0.00898506399, -0.0117240055, 0.00766569562, -0.00421905518, 0.000930551148, -0.00430047186, 0.00336939888, -7.90681443e-05, 8.28519333e-05, 0.0117824581, -0.0072398237, -0.0178532209, 0.0030082427, -0.00524407066, 0.00190911733, 0.0104046371, -0.0229970869, -0.000602796732, 0.0105966972, -0.00718554575, 0.0236651208, 0.0169680752, 0.032065656, 0.000269562355, 0.00463448931, 0.00592045579, 0.0219282322, -0.000577745435, -0.0263372604, 0.0116989538, 0.00435475, -0.0212768987, 0.00680142595, -0.00737343077, 0.0193395987, -0.0125590479, 0.0191391874, -0.00996206421, 0.0149305705, 0.0096865, 0.0190556832, 0.000239161571, -0.0092522772, 0.00751956319, 0.0140871769, -0.00377021963, -0.00971155148, 2.69594966e-05, 0.0106885517, -0.0230471902, -0.00569916936, -0.00886815786, -0.0208927784, -0.0192894954, 0.0133356387, -0.0264541656, 0.00140078482, -0.0170181785, 0.0142374849, -6.9673908e-05, -0.00302285608, 0.0115402956, 0.0140704764, 0.00962804724, -0.0232309, -0.00423366856, 0.00350300572, 0.0103378333, -0.00922722649, -0.00156779343, 0.00376186916, 0.0227131732, -0.0196235124, 0.00214606081, 0.0132187326, 0.0043171728, -0.000276608043, 0.0287922863, 0.0186882652, 0.00130266719, 0.01878847, -0.00651333621, -0.00704358844, -0.004492532, -0.0176528115, 0.00596220791, 0.0243665576, -0.0131435785, -0.0063004, -0.00189137261, -0.0202414449, 0.0235315152, 0.0214105044, 0.00754878949, 0.00592463091, 0.0113565866, -0.011556997, 0.0130934762, 0.0135360491, 0.00294143939, 0.00322326645, 0.00709786639, -0.00934413262, -0.000717615185, -0.0106300991, -0.0139869722, -0.00487247668, -0.00131728046, 0.000453271845, -0.00221703947, 0.0541441962, 0.00894331187, -0.0144712972, 0.00340071297, -0.010922364, -0.0201746412, -0.00733585376, 0.00744023407, 0.00369924097, 0.0190055817, 0.0144796474, -0.0184043497, 0.00694755884, -0.00922722649, -0.00128179113, 0.00637972914, 0.0168678705, -0.010438039, -0.00747363595, -0.00903516635, 0.00856754184, 0.0115152448, 0.014354391, -0.00329842023, -0.0127427578, 0.0125506977, -0.0182373412, 0.0110810222, 0.0224960614, -0.00545283128, -0.0212267954, 0.015398195, -0.0034299395, -0.0129515184, 0.0143794427, -0.0111645265, 0.0235315152, -0.0138283139, -0.00783270411, -0.00199575303, 0.00394349126, 0.0211265907, 0.00133711274, -0.00583695108, 0.00389130088, 0.0136947073, 0.00319612748, -0.0136112031, 0.0204418544, -0.0206756666, 0.00511046359, -0.0108722616, 0.0161246825, -0.00304790726, 0.0218447279, 0.0098117562, -0.00294143939, 0.00264082383, 0.0199909322, 0.00756966555, 0.00821682438, -0.0038746, 0.00117741083, 0.000614278601, -0.00210535247, 0.00625864789, -0.01163215, 0.00650081038, -0.00508123729, -0.0276900288, -0.0021397979, -0.00282453327, -0.0161330327, 0.0104881413, 0.00129431684, 0.0105549451, 0.000843915448, 0.00876795221, 0.015247887, 0.00249677896, 0.00931073073, -1.09925595e-05, 0.0102793807, 0.00673044752, 0.0380111635, 0.0247339774, -0.0197571199, 0.0127010057, 0.00258445833, 0.0103962868, 0.000502852548, 0.00257610809, -0.00215232349, 0.0124671934, 0.000209021731, -0.00646323385, 0.0223123524, -0.0155735537, 0.00227758, 0.0134358434, -0.0149472719, -0.0234146081, 0.0055321604, -0.00534010073, 0.00478062173, 0.016107982, -0.00237987284, -0.0130517241, -0.0101541243, 0.00359486067, -0.00236317189, -0.0181872398, -0.00496433116, -0.0296273287, 0.00474304473, 0.00571587, 0.016926324, 0.00916877296, -0.0261869524, 0.00976165384, -0.00430464698, -0.00330050779, -0.0110058682, -0.00882640574, 0.0114985434, 0.0294102188, -0.00377857, -0.00531922467, -0.00232977024, -0.00670957146, 0.00947773922, -0.0151226306, -0.00393931568, -0.000283914647, 0.00159597618, -0.00906856824, -0.0215608124, -0.0299446452, -0.00419817911, 0.000177838083, -0.00972825196, 0.014204083, -0.0112396805, 0.00812079385, -0.00464283954, -0.0173855983, -0.0256525241, 0.0160495285, 0.0192894954, 0.00783270411, 0.0207090694, -0.0164336488, -0.0259698406, 0.0144712972, -0.00889320951, 0.015840767, 0.00744440919, 0.0194899067, 0.007903683, 0.00851743948, 0.0202414449, 0.00291221286, -0.00525659649, 0.0035865102, 0.012675954, -0.00694755884, 0.0148637677, -0.00545700686, 0.0163835455, 0.017669512, 0.00484325, -0.0055697374, -0.0200410336, -0.0016439911, 0.00733585376, -0.0156654082, 0.0100205168, -0.00807486661, -0.0233645067, -0.00499773305, 0.0217779242, -0.00156570587, -0.0022650545, -0.0218280274, 0.0225962661, 0.0142124332, 0.0374767333, -0.020692369, 0.0158574693, 0.00229219324, -0.013460895, 0.0215274114, -0.00822517462, 0.00324414251, 0.00774084963, -0.00366375153, 0.0399818644, -0.0076239435, -0.0132938866, -0.0143042887, 0.030679483, -0.00574092148, 0.0114317397, 0.00389756379, -0.00170348794, 0.0106718512, 0.00675967382, 0.00442155311, 0.0107470052, -0.00376186916, -0.0128596639, 0.00176402857, -0.030495774, -0.00483489968, 0.00530669885, 0.0197070166, -0.00903516635, -0.0223123524, 0.00581607502, 0.00188406603, -0.0111561762, -0.000751016894, 0.00523572043, -0.00865104701, 0.00053912471, 0.00496850628, -0.030646082, -0.00217946246, -0.00789950788, 0.0208092742, -0.00325458054, -0.00846733712, -0.00265126186, 0.00363243744, 0.00541525474, 0.0168094169, 0.0176027082, -0.0060916394, -0.00892661, -0.0121749286, -0.00513133965, -0.0169096235, -0.0139869722, -0.00715214433, 0.0160996318, -0.0202414449, 0.0021585864, -0.00528999791, 0.00403534574, -0.00221495191, 0.0157990158, 0.00615426758, 0.013719758, -0.00703941332, 0.0195567086, -0.00561148953, -0.0144879976, -0.00495180581, 0.01356945, 0.0147552118, -9.19199811e-05, 0.0355060324, -0.00126822176, -0.00220451388, -0.00714796921, 0.0118910139, 0.00146863202, 0.014989024, -0.00224417844, -0.020692369, -0.0138867665, -0.00565741723, -0.00152812887, 0.0129598686, -0.00379109569, 0.000980131794, -0.0280073453, -0.0196569152, 0.0154649988, 0.00633797701, 0.00211892184, 0.0268215854, 0.00159284472, -0.0131185269, -0.0232977029, 0.00765734538, -0.0150224259, 0.0227799751, 0.00839635823, 0.00698513538, -0.0156236561, 0.00507288706, -0.0152395368, -0.00255731959, 0.0166507587, 0.00966979936, 0.000346542889, 0.0276733283, 0.00217111199, 0.00348839257, 0.0200744364, -0.000741100754, -0.00207716972, -0.0828362778, -0.000578789273, 0.0195233077, 0.0202414449, 0.004567686, 0.00685987901, -0.000549040851, -0.0231473949, 0.000513290579, 0.0224292576, -0.0153313912, -0.0170515794, -0.0103712352, 0.0135443993, 0.016742615, 0.014504699, 0.0133189373, 0.0201245397, 0.00450505735, 0.00784523, 0.0228634793, -0.0312974155, 0.00153543556, -0.00142166088, -0.00189032883, 0.0144211948, 0.00342158903, -0.0190389827, 0.00495598093, -0.0106802015, -0.0211432911, 0.0112313302, 0.0330176055, -0.00909362, -0.0135527495, -0.000101248974, -0.00349465548, -0.0309633985, 0.00401029456, -0.0133773908, -0.0117156552, -0.0184043497, -0.0126175014, -0.0166925117, -0.00803311449, 0.0238321293, 0.0105298935, 0.0112563809, 0.00547788292, 0.016183136, 0.000662293576, 0.0189220775, -0.028708782, -0.00229010568, -0.0106050475, -0.0185713582, 0.00106207049, -0.00236317189, 0.02617025, 0.0129598686, -0.00825022627, -0.0352054164, 0.00217528734, -0.00420026667, 0.00989526, -0.00409797393, -0.00701018702, 0.0257527288, 0.0137782115, 0.00960299559, -0.00995371398, 0.0153814936, -0.00683482783, 0.0099954661, -0.016517153, 0.0099954661, 0.00393514056, -0.0128012104, -0.0144211948, -0.00706864, 0.00212727231, -0.00892661, 0.00940258522, 0.00337983691, -0.00499773305, 0.00594133185, -0.00850908924, -0.00254270621, 0.00557808811, 0.0100121666, 0.00890991, 0.00613756664, -0.0187216662, 0.0143376905, -0.00152917264, 0.00429629674, -0.0219449326, -0.00541107915, -0.00354058272, 0.0132270828, 0.00905186683, 0.00297275349, 0.0103044324, 0.0171350837, 0.0181705374, 0.00084234972, -0.0125005953, 0.0148888184, -0.00856754184, 0.0223791543, 0.0152812889, -0.00517309224, 0.0120580224, -0.00478897244, 0.00403325818, 0.016817769, 0.00619601971, -0.00213249144, -0.00367836491, 0.00241118693, -0.0179200247, -0.0407167, -0.00772414869, -0.00410214905, 0.0187216662, 0.0130266724, -0.00727322558, -0.002507217, -0.0255523194, -6.08341943e-05, 0.00880970433, 0.0124003906, 0.00970320124, -0.0123586375, 0.0112647312, -0.020542061, -0.00395392906, 0.00182039395, -0.00837130751, -0.0128847156, -0.00474722, -0.0103879366, 0.00746946037, -0.0228467789, -0.00170453172, -0.0290762018, -0.0146383056, -0.00704358844, -0.00394349126, -0.0226296689, -0.00846733712, -0.00388712576, 0.00592463091, 0.00883475598, -0.0139285186, -0.0165004525, -0.00124838948, -0.00145610643, 0.0272725075, -0.00976165384, -0.000545387506, 0.0133189373, -0.00859259348, -0.0177530162, 0.00392470276, -0.00473469449, -0.0025552318, -0.0158658195, -0.0178532209, -0.0144211948, 0.00130057964, 0.00192999339, 0.00818759762, 0.00789950788, 0.0180536322, -0.00216276175, -0.0239991397, -0.0174691025, -0.0124671934, 0.020208044, 0.00534427585, 0.000341062929, -0.00970320124, 0.00283705886, 0.0216944199, -0.0184878539, -0.00441320287, 0.0102209272, -0.0019414752, 0.00754043926, 0.00940258522, 0.00221912703, -0.00798301212, 0.0138951177, -0.003933053, 0.0113315349, -0.00259907171, 0.00873455126, -0.0082585765, -0.00235273386, 0.00157092488, -0.00800806377, 0.00997041445, 0.00633797701, 0.0087429015, -0.0115987491, -0.00428377092, 0.0146216052, 0.0155735537, -0.0159242712, -0.00598308397, -0.00199784059, 0.012901416, -0.00729410164, 0.00301659317, -0.00995371398, -0.0373431295, -0.0106050475, 0.00147385104, 0.0116655519, 0.0310636032, -0.0236484203, 0.0250512939, 0.00658849, 0.0255857203, -0.00413972605, 0.0139953224, 0.0216276161, -0.0201412402, 0.016032828, -0.0105048427, -0.00154274213, -0.0076239435, -0.0107971076, -0.0123753389, 0.0208259746, -0.0159743745, 0.0115402956, -0.0121415267, 0.0406833, 0.0199408289, 0.0137782115, -0.0175359044, 0.00308130914, -0.0102125769, 0.0143042887, 0.0164169483, -0.00488082692, 0.00460108742, -0.0157238618, 0.00635050284, 0.00559061347, -0.010104022, 0.00547788292, 0.0177029148, -0.0211265907, -0.0185880587, 0.0147218099, -0.0030646082, 0.0231139939, -0.0170432292, -0.00597055815, 0.0125005953, -0.00418565376, 0.00176507235, -0.0167927165, -0.00469711749, -0.0201078374, 0.000586095906, -0.00740265707, 0.00684735365, 0.000738491246, -0.0296440311, -0.00150099, -0.0106300991, -0.00635885308, -0.000711874221, -0.00210535247, -0.0122417323, -0.00950279087, -0.0121081248, -0.00496015605, -0.00906856824, -0.0111144241, -0.0194732044, -0.017335495, -0.0244834647, -0.0202581454, -0.0021773749, -0.00386833725, 0.028257858, -0.0283246618, -0.0156904608, 6.03122935e-05, -0.037209522, 0.00142166088, 0.00737343077, -0.0113482354, -0.00166799861, -0.0145882033, 0.00434639957, -0.00655091321, -0.000915937882, 0.00534845097, -0.0115402956, -0.015840767, 0.00173167069, -0.0366082899, -0.00189137261, -0.0233645067, -0.0136613054, 0.0280574486, 0.0118993642, -0.0147301601, 0.00546118198, -0.00714379363, -0.0213771034, 0.00438815169, 0.00485995086, -0.00167321763, -0.00909362, 0.00370759144, -0.0028913368, -0.000622107123, 0.00184857671, -0.0060624131, 0.00601648539, -0.00327754417, 0.00126404653, -0.0181872398, -0.00521066878, 0.0109474147, -0.0023318578, -0.00160641421, -0.00884310622, 0.0118158599, -0.0172185879, -0.0279071406, 0.00949444, -0.0175025035, 0.00587870367, 0.0265209693, -0.0213103, -0.0215942152, 0.0175192039, -0.00848821271, -0.00308965938, -0.00708534056, 0.0200744364, -0.0030458197, -0.0243498571, -0.0139201684, 0.00557808811, 0.00821682438, 0.0129682198, -0.0246170703, -0.0221286416, -0.00378900813, 0.00798301212, -0.000271389, 0.0121081248, -0.0182540417, -0.0151643828, -0.0300281495, -0.000876795268, -0.00997876469, 0.00155944296, 0.00493510487, -0.008463162, -0.00615426758, 0.00460943813, -0.00780347781, -0.0146550061, 0.0940592587, 0.0433888398, -0.00175045908, -0.0286419783, -0.00604988728, -0.00761976838, -0.0228634793, 0.0517726727, -0.0218948293, 0.00850908924, -0.00744023407, -0.00139034679, -0.0121331764, 0.0121415267, -0.0154482974, 0.00154169835, -0.00771579845, 0.00671374658, -0.00576597266, 0.00710204151, -0.0025051292, -0.00814167, 0.0066886954, -0.000102488491, -0.0103294831, -0.00258028321, 0.000510159123, 0.00737343077, -0.0213771034, -0.00716466969, -0.0114901932, 0.00314393733, 0.00168469944, -0.0103545347, -0.0224960614, -0.00325875566, 0.00619601971, 0.011556997, 0.00497268187, -0.0267046783, 0.017419, 0.0249009859, 0.0137448097, 0.0109641161, 0.00381405931, -0.00615009246, 0.0105465949, -0.00404787157, 0.000574614038, -0.0102376286, -0.0123419371, -0.0112313302, 0.0113565866, -0.0303955693, -0.00920217484, 0.010513193, -0.0139702708, -0.00564906653, -0.00496850628, 0.0328004919, 0.0033067707, 0.00204585562, 0.0149973743, 0.016032828, 0.00531087397, -0.00684735365, -0.0198573247, 0.0172185879, -0.0063338019, -0.0103962868, 0.0205754619, -0.0169847775, 0.00511046359, -0.0146717075, 0.00804564077, 0.00590793, -0.0064089559, 0.0064089559, 0.00589957973, -0.019423103, -0.0027848687, 0.020208044, -0.0165839568, -0.00195817603, -0.00927732885, -0.00354893319, -0.0101290727, -0.0298110396, 0.0054361308, -0.00326084322, 0.00408962369, 0.0386123918, 0.000803207105, 0.00736508, 0.0220284369, -0.000654465053, -0.00826692674, 0.0033443477, 0.0129348179, -0.00261368486, 0.0194398034, -2.26701159e-05, -0.00450088223, 0.0184043497, -0.000697782903, 0.0223624539, -0.00842976, 0.00325875566, 0.0229135826, 0.00292056333, 0.0148804681, -0.0106384493, 0.0110977227, 0.0329341, 0.00559478858, 0.0203249492, 0.01878847, -0.0120997746, 0.0142625365, -0.000768761558, 0.0246003699, 0.0177363157, 0.0026491743, -0.00720642181, -0.00894331187, 0.00268675131, 0.0198573247, -0.0107136033, 0.00227131718, -0.00930238049, 0.014020374, -0.00803729, 0.00742770825, -0.000966562424, 0.00308130914, 0.016032828, -0.0222622491, -0.00151769083, -0.00701018702, 0.0111144241, 0.0210096855, 0.00860929396, 2.59972403e-05, 0.0226964708, 0.00609581452, 0.000276347069, 0.0117240055, -0.0232476, 0.029193107, -0.025836233, -0.0160996318, 0.0126008, -0.00151769083, -0.000534949475, -0.00330050779, 0.00610834034, 0.000358807592, -0.0271389, 0.0128179118, -0.015064178, 0.00052920857, 0.00531087397, 0.0313308164, -0.00882640574, 0.019239394, -0.0160996318, 0.0258529354, -0.00403325818, 0.00951949134, 0.00428377092, 0.0180870332, 0.0145381009, -0.036541488, 0.0156403575, -0.0147969639, 0.0101958765, 0.00325040519, 0.0163751952, -0.0013579888, -0.00445913, -0.00136633927, 0.0109056626, -0.00391635206, 0.0258195326, 0.00809991825, -0.00295605254, -0.00916042272, -0.00534010073, 0.0437228568, -0.00143940561, -0.0182373412, -0.00519814342, -0.0142959384, 0.00201349775, -0.00993701257, -0.0131853307, 0.0260700453, -0.0146049038, -0.0242329501, 0.0110643208, -0.00184335769, 0.0120747229, 0.014504699, 0.00305625773, -0.0104714409, 0.0311137065, 0.00150412135, 0.00742353313, -0.00409797393, -0.00434222398, 0.0107804062]
22 Jul, 2024
PHP Program for Search an element in a sorted and rotated array 22 Jul, 2024 An element in a sorted array can be found in O(log n) time via binary search. But suppose we rotate an ascending order sorted array at some pivot unknown to you beforehand. So for instance, 1 2 3 4 5 might become 3 4 5 1 2. Devise a way to find an element in the rotated array in O(log n) time. Example: Input : arr[] = {5, 6, 7, 8, 9, 10, 1, 2, 3}; key = 3Output : Found at index 8Input : arr[] = {5, 6, 7, 8, 9, 10, 1, 2, 3}; key = 30Output : Not foundInput : arr[] = {30, 40, 50, 10, 20} key = 10 Output : Found at index 3All solutions provided here assume that all elements in the array are distinct. Basic Solution: Approach: The idea is to find the pivot point, divide the array in two sub-arrays and perform binary search.The main idea for finding pivot is – for a sorted (in increasing order) and pivoted array, pivot element is the only element for which next element to it is smaller than it.Using the above statement and binary search pivot can be found.After the pivot is found out divide the array in two sub-arrays.Now the individual sub – arrays are sorted so the element can be searched using Binary Search.Implementation: Input arr[] = {3, 4, 5, 1, 2}Element to Search = 1 1) Find out pivot point and divide the array in two sub-arrays. (pivot = 2) /*Index of 5*/ 2) Now call binary search for one of the two sub-arrays. (a) If element is greater than 0th element then search in left array (b) Else Search in right array (1 will go in else as 1 < 0th element(3)) 3) If element is found in selected sub-array then return index Else return -1.Below is the implementation of the above approach: PHP <?php // PHP Program to search an element // in a sorted and pivoted array // Standard Binary Search function function binarySearch($arr, $low, $high, $key) { if ($high < $low) return -1; /*low + (high - low)/2;*/ $mid = floor($low + $high) / 2; if ($key == $arr[$mid]) return $mid; if ($key > $arr[$mid]) return binarySearch($arr, ($mid + 1), $high, $key); else return binarySearch($arr, $low, ($mid -1), $key); } // Function to get pivot. // For array 3, 4, 5, 6, 1, 2 // it returns 3 (index of 6) function findPivot($arr, $low, $high) { // base cases if ($high < $low) return -1; if ($high == $low) return $low; /*low + (high - low)/2;*/ $mid = ($low + $high)/2; if ($mid < $high and $arr[$mid] > $arr[$mid + 1]) return $mid; if ($mid > $low and $arr[$mid] < $arr[$mid - 1]) return ($mid - 1); if ($arr[$low] >= $arr[$mid]) return findPivot($arr, $low, $mid - 1); return findPivot($arr, $mid + 1, $high); } // Searches an element key // in a pivoted sorted array // arr[] of size n */ function pivotedBinarySearch($arr, $n, $key) { $pivot = findPivot($arr, 0, $n - 1); // If we didn't find a pivot, // then array is not rotated // at all if ($pivot == -1) return binarySearch($arr, 0, $n - 1, $key); // If we found a pivot, // then first compare // with pivot and then // search in two subarrays // around pivot if ($arr[$pivot] == $key) return $pivot; if ($arr[0] <= $key) return binarySearch($arr, 0, $pivot - 1, $key); return binarySearch($arr, $pivot + 1, $n - 1, $key); } // Driver Code // Let us search 3 // in below array $arr1 = array(5, 6, 7, 8, 9, 10, 1, 2, 3); $n = count($arr1); $key = 3; // Function calling echo "Index of the element is : ", pivotedBinarySearch($arr1, $n, $key); // This code is contributed by anuj_67. ?> OutputIndex of the element is : 8Complexity Analysis: Time Complexity: O(log n). Binary Search requires log n comparisons to find the element. So time complexity is O(log n).Space Complexity:O(1), No extra space is required.Improved Solution: Approach: Instead of two or more pass of binary search the result can be found in one pass of binary search. The binary search needs to be modified to perform the search. The idea is to create a recursive function that takes l and r as range in input and the key. 1) Find middle point mid = (l + h)/22) If key is present at middle point, return mid.3) Else If arr[l..mid] is sorted a) If key to be searched lies in range from arr[l] to arr[mid], recur for arr[l..mid]. b) Else recur for arr[mid+1..h]4) Else (arr[mid+1..h] must be sorted) a) If key to be searched lies in range from arr[mid+1] to arr[h], recur for arr[mid+1..h]. b) Else recur for arr[l..mid] Below is the implementation of above idea: PHP <?php // Search an element in sorted and rotated // array using single pass of Binary Search // Returns index of key in arr[l..h] if // key is present, otherwise returns -1 function search($arr, $l, $h, $key) { if ($l > $h) return -1; $mid = ($l + $h) / 2; if ($arr[$mid] == $key) return $mid; /* If arr[l...mid] is sorted */ if ($arr[$l] <= $arr[$mid]) { /* As this subarray is sorted, we can quickly check if key lies in half or other half */ if ($key >= $arr[$l] && $key <= $arr[$mid]) return search($arr, $l, $mid - 1, $key); return search($arr, $mid + 1, $h, $key); } /* If arr[l..mid] is not sorted, then arr[mid... r] must be sorted*/ if ($key >= $arr[$mid] && $key <= $arr[$h]) return search($arr, $mid + 1, $h, $key); return search($arr, $l, $mid-1, $key); } // Driver Code $arr = array(4, 5, 6, 7, 8, 9, 1, 2, 3); $n = sizeof($arr); $key = 6; $i = search($arr, 0, $n-1, $key); if ($i != -1) echo "Index: ", floor($i), " "; else echo "Key not found"; // This code is contributed by ajit ?> OutputIndex: 2 Complexity Analysis: Time Complexity: O(log n). Binary Search requires log n comparisons to find the element. So time complexity is O(log n).Space Complexity: O(1). As no extra space is required.Thanks to Gaurav Ahirwar for suggesting above solution. How to handle duplicates? It doesn’t look possible to search in O(Logn) time in all cases when duplicates are allowed. For example consider searching 0 in {2, 2, 2, 2, 2, 2, 2, 2, 0, 2} and {2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2}. It doesn’t look possible to decide whether to recur for the left half or right half by doing a constant number of comparisons at the middle. Similar Articles: Find the minimum element in a sorted and rotated arrayGiven a sorted and rotated array, find if there is a pair with a given sum.Please refer complete article on Search an element in a sorted and rotated array for more details! Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array
https://www.geeksforgeeks.org/php-program-for-search-an-element-in-a-sorted-and-rotated-array?ref=asr10
PHP
PHP Program for Search an element in a sorted and rotated array
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0171363633, -0.0255762581, -0.0122952387, 0.0252656695, -0.0208499171, 0.0244284309, 0.0123289982, 0.0424020328, -0.0675731748, 0.0274532903, -0.00756889768, -0.00388235156, -0.00890577678, -0.028033955, 0.00729206903, -0.0104317097, 0.00239524222, 0.0217681769, -0.0231320634, -0.0325442366, -0.0435093455, -0.0336785577, -0.062117625, 0.0302755907, -0.0205663368, 0.0022973395, -0.019040402, 0.00889902562, -0.0126800984, -0.01931048, 0.0180816315, 0.0143680768, 0.00531038176, -0.019040402, -0.021106489, 0.000686585438, -0.00865595601, 0.00328311906, -0.0287901703, -0.0370005, -0.0253466927, -0.00473984517, -0.00947293825, -0.0207283814, 0.0182841886, 0.00492552249, 0.0344077647, -0.00962823257, 0.00190910418, 0.00726506161, 0.00319365622, 0.0114985127, 0.0310588125, 0.0389720574, -0.00821032934, 0.00632654503, -0.0412677117, 0.00877749082, -0.013186492, -0.0297894534, 0.0287361536, 0.00493565062, 0.00218930864, -0.0243339054, 0.0168932937, -0.0027075184, -0.0397822894, 0.0170553401, -0.0100603551, 0.0232536, -0.0507744066, 0.0246444941, -0.0141385123, 0.0178925768, -0.0109583596, -0.00393974315, 0.0449677594, 0.00962823257, -0.0473984517, 0.0217411686, -0.0108300736, -0.0112756994, -0.0185677689, -0.0439144596, 0.00276153372, -0.0022467, -0.0103304312, -0.0584986, 0.0367574319, 0.0151918111, -0.0418348722, -0.0434013158, 0.0263864882, 0.0211605038, 0.0250496082, 0.027898917, -0.0145571306, -0.00533401361, -0.0171498656, 0.0485867858, 0.0277368706, 0.0136186145, -0.0129366713, 0.00409166096, 0.00540153263, 0.00704224827, -0.034353748, 0.0305456668, 0.030032523, 0.0262109376, 0.00801452436, 0.00398025429, 0.0178385619, 0.0188648533, -0.00617125118, -0.010121122, 0.0100468509, -0.076755777, -0.0272777397, -0.0122614792, 0.0226729345, 0.0146111464, -0.000193379092, 0.0341106802, -0.0186622962, 0.0059855734, -0.00708276, 0.0165692, -0.00182301726, -0.0220787656, -0.00293201953, -0.0177440345, 0.00862894859, 0.00392623898, 0.00441237725, 0.029627407, 0.0126733463, 0.0332464352, 7.54315624e-05, -0.000522429473, -0.0310858209, -0.0313559, -0.0438604467, 0.027237229, 0.0225784071, 0.0271291975, -0.0330843888, -8.7247412e-05, -0.0187838301, 0.0153673608, -0.026967153, -0.0235776901, 0.00329662301, -0.0303296056, 0.0332734436, -0.0120994337, 0.00252859248, -0.0187838301, -0.0144220926, -0.00154956465, 0.0318150297, -0.00105245493, 0.0189593807, 0.00278516533, -0.023307614, 0.0304106288, 0.0165421944, -0.0434553325, -0.00364603451, 0.0245904773, 0.0169608127, -0.0301135443, -0.017311912, 0.0282770246, -0.0428611636, -0.00368654612, 0.0132877706, -0.0141790239, 0.00709626358, -0.0327873044, -0.0177305304, -0.0460480675, -0.00664050924, -0.0291142613, 0.0424830541, 0.00260792742, 0.0280069467, -0.0262109376, -0.0219302233, 0.0276828557, -0.0449137464, -0.0100941146, 0.000216483299, 0.0269536488, -0.0167717598, -0.0301945675, -0.0727586448, -0.00717728678, 0.00472971704, 0.0565540493, 0.00158838823, -0.0434823371, -0.0214035735, 0.0341376886, 0.0221192762, 0.0196075644, 0.00679917913, -0.00750137866, 0.0197831132, -0.0323551819, -0.0143410694, 0.00794025324, -0.0395392179, 0.0205933433, -0.0139224511, 0.0139629617, -0.012119689, 0.0349209085, -0.0314369202, -0.0191889443, -0.010789562, 0.0275343135, 0.0418348722, 0.00437186565, -0.00962148048, -0.044940751, 0.0120859295, 0.0321121104, 0.00740685174, -0.0304376371, 0.0365683772, -0.00152593304, -0.00984429382, -0.000824999704, -0.0229430106, -0.045669958, 0.0119981542, -0.0125990752, 0.00473646913, 0.0432392694, -0.0204177946, 0.045669958, -0.0167717598, 0.0309237745, 0.0198641364, -0.0307347216, 0.0124032693, -0.00327130337, 0.0222003, 0.0188648533, 0.022443369, -0.0106275156, -0.00692746555, -0.0146921687, -0.021579124, 0.000588260649, -0.00482086791, 0.0396742597, 0.00852091797, 0.0341646932, -0.0125248041, -0.0158129875, -0.00178925775, 0.0218627043, 0.0214035735, 0.00198843936, 0.0264945179, -0.00232434715, -0.0126530901, -0.0484787561, 0.02237585, -0.0115795359, 0.0332194269, -0.0129704308, 0.0538802892, -0.0202557482, -0.0183652118, -0.00127526815, 0.0170013234, -0.0118428608, 0.0288441852, -0.017311912, 0.030491652, -0.00312107312, 0.0176225, -0.00451027974, -0.00969575159, 0.0254817307, -0.0202692524, -0.0100603551, -0.0268996339, -0.0283040311, -0.00636705663, -0.0117280781, 0.0553657115, 0.00977002271, 0.00110393821, -0.00353125203, -0.0392961502, -0.00872347504, 0.0175549816, -0.0156374369, 0.0231860802, 0.0384859219, -0.0159480255, -0.0104249585, -0.0455079116, -0.0015014573, -0.0218627043, -0.05512264, -0.00568173733, -0.0241178442, -0.030491652, -0.0344077647, 0.00330337486, 0.0342727266, 0.0529350191, -0.00437186565, 0.0221192762, -0.0246039815, 3.92191359e-05, -0.0200261828, -0.0240638275, 0.0234831627, 0.0498291403, -0.0108368248, 0.0221462846, 0.00882475451, -0.0245094541, -0.0189998914, -0.00334557425, -0.00898004789, 0.00316664856, 0.00952020101, -0.000527493423, -0.027102191, -0.0124640372, 0.0412947163, -0.0110258786, -0.00178925775, 0.014111504, 0.0201882292, 0.0302485842, 0.00497278618, 0.00494240224, -0.0216331389, -0.0268456172, -0.018837845, 0.0137874121, -0.0284120627, 0.000898848812, 0.0253331885, 0.011316211, -0.00611723587, 0.0111339092, -0.0231860802, -0.0551496483, -0.0416728258, 0.018837845, 0.00426383503, 0.0330303721, 0.00682618702, -0.0439684764, 0.0187568218, 0.0219842382, -0.00694772135, -0.0136118624, -0.00522260694, -0.00977002271, -0.00958096888, -0.0630358905, -0.0137874121, 0.0105262371, -0.00260961545, -0.0789704099, -0.00804153178, 0.0385129303, -0.00870997179, 0.0234156437, 0.012383014, -0.0431042314, 0.023172576, -0.0162991248, -0.0209984593, 0.0129974382, -0.0320851058, 0.0104114544, 0.00254378421, -0.0210794806, -0.00515846396, -0.0224568732, -0.0116470549, -0.0126193305, -0.0086221965, 0.0241583548, -0.0259138532, 0.0227539558, 0.0293573309, 0.0106882825, 0.0013849868, 0.0495860688, -0.0261299144, 0.0314369202, 0.00185171294, 2.06777422e-05, 0.0203367714, 0.00536439708, -0.0537722595, 0.0351369716, 0.0165421944, -0.0141925272, 0.0435093455, -0.0638461187, 0.0165286902, 0.0106747793, 0.0285471, -0.0139494585, 0.0129906861, 0.00113432191, 0.0170553401, -0.0304376371, 0.0388640277, -0.0187163111, 0.025103623, -0.0428881682, -0.0151648028, 0.0209309403, 0.0118361088, 0.0170013234, -0.00737309223, -0.0107355462, 0.0028459325, 0.002646751, 0.010985367, -0.0512605458, -0.0213900693, 0.0318690427, -0.014111504, -0.0274802987, -0.0209174361, 0.00300797843, 0.0587686747, -0.0334084816, -0.0112419399, 0.00943917874, -0.019377999, -0.0124032693, 0.0132607631, -0.0162045974, 0.0209174361, 0.0060058292, -0.00393974315, 0.0220517572, -0.00362915476, 0.0561219268, -0.0337595791, -0.00140355458, -0.00307549769, 0.0115390243, 0.0140980007, -0.00747437077, -0.0046284385, 0.0213900693, -0.020309763, 0.0471013673, 0.00344178919, -0.0246715, 0.00161202, 0.00290501188, -0.018446235, 0.0377027, -0.0359742083, -0.00503355311, 0.0621716417, 0.0463721603, -0.00260117557, 0.000679833523, -0.00758240139, 0.014111504, 0.0119576436, -0.0122479759, -0.0114242416, -0.00885176193, -0.0249415766, 0.00817657, -0.0105059808, 0.0129299192, -0.0287361536, -0.00678905146, 0.0186622962, 0.0031801525, -0.00930414, -0.0580124632, -0.0148407109, -0.00308731361, 0.0173794311, -0.0520977825, -0.0356501155, -0.00791324582, 0.00803478, 0.00354475598, -0.0222138036, -0.0419158936, 0.0303566139, -0.0267510917, -0.0295463838, 0.0300055146, 0.0244689435, 0.0263459757, -0.04034945, -0.0234696604, -0.0232130866, 0.0239422936, 0.0273722671, -0.034434773, -0.00461155875, -0.0205798391, -0.00912859, 0.0118563641, -0.000620754261, 0.0237937514, 0.00293201953, 0.0309777912, 0.0174334478, -0.00186352874, 0.0258193258, 0.011187925, -0.025765311, 0.000474744098, -0.0243609119, -0.0595789067, 0.00544879632, -0.00020688292, 0.0244554393, -1.21257553e-05, -0.0113364672, 0.0155699179, 0.0210119616, 0.00108115049, 0.0192294568, -0.0215251073, 0.0284390692, -0.0149892531, 0.0264269989, -0.0287361536, 0.00961472839, 0.0280879699, -0.0111609166, 0.00815631449, 0.00520235114, 0.00172342651, 0.0358121619, -0.0119643947, 8.47681949e-05, -0.0224568732, 0.020309763, -0.0178925768, -0.0311398357, -0.0150837805, 0.00288982, 0.00203907862, 0.020174725, 0.00762966508, -0.00385872, 0.0130919646, -0.00128539605, 0.00593831, 0.0382698588, -0.0154618872, 0.000143900208, -0.012383014, -0.0238477662, -0.0085816849, -0.00878424291, 0.0233346224, 0.0243744161, 0.0217951853, 0.000316285063, -0.0117888451, -0.0192159526, 0.00703549618, -0.0156914517, 0.0121264411, -0.0281689931, -0.0183111969, -0.0361092463, 0.00186690479, -0.00669452455, -0.00992531609, 0.015839994, -0.00248470507, 0.0356771238, -0.0163666438, 0.0254952349, -0.0325172283, -0.0197290983, 0.000527915428, -0.00361902686, 0.012916415, -0.00622189045, 0.0171228591, 0.00060134253, 0.00800777227, -0.0103506874, 0.00865595601, 0.0158940107, 0.0108773364, 0.0551496483, 0.0441575311, -0.00202388689, -0.060335122, 0.00832511205, 0.0190539062, -0.0223488417, -0.0055331951, -0.00334557425, 0.00693421764, 0.00207283814, -0.0263864882, -0.0497211106, -0.00463856617, -0.00797401275, -0.0178790726, 0.0198371299, -0.00910833478, 0.0517196767, -0.0325172283, -0.00653247861, -0.0148001993, -0.0171363633, 0.033624541, -0.0150837805, 0.00842639152, 0.00555682695, -0.00267038285, 0.00491539482, -0.00550956326, 0.0151513, -0.0186082795, 0.0285741091, -0.0339756422, 0.0362712927, 0.0303026, 0.0850741416, -0.00892603304, -0.00179769762, -0.0367304236, -0.0304106288, 0.0181896612, 0.0114309937, -0.00821032934, -0.000600498519, 0.0337865874, 0.00611048378, -0.00886526518, -0.0235101711, 0.00375406537, 0.0151513, -0.0240638275, -0.0530430526, -0.0082305856, 0.00471958937, 0.000885345, 0.000765920442, 0.0016179278, 0.0127746249, 0.0250496082, 0.0220787656, 0.00231253123, 0.0285200924, -0.00335063832, 0.00344347721, -0.0145841381, -0.00750137866, 0.0220652614, -0.0268591214, -0.0201207101, 0.0214845967, 0.0146246497, -0.00292526768, 0.0230375379, -0.0102426568, 0.0174469501, 0.00155040866, -0.00979703, 0.00620838674, -0.00312107312, -0.00714352727, -0.0148677193, -0.0168932937, -0.0243474096, -0.00307212165, 0.0386479683, -0.00839263108, -0.00852091797, -0.0192834716, 0.0210659783, 0.0139359543, -0.0425100625, 0.0128961597, 0.00524623878, -0.0029826588, -0.00180444948, -0.00844664685, -0.0175144691, 0.0280879699, -0.000281048502, 0.0187433194, 0.0161775909, -0.0184192266, 0.0229970254, -0.0205933433, -0.0279529318, 0.0208364129, 0.0266025495, -0.0122614792, -0.015583422, 0.00187534466, -0.0154618872, 0.00390260736, -0.0102966717, 0.0537452511, -0.00989830866, -0.0274262819, -0.00481749186, -0.00471621333, 0.000274085585, -0.0320851058, -0.0150702763, 0.00397350267, -0.0122614792, -0.00922986865, 0.0158264916, -0.00699498504, -0.0117618376, -0.00970925484, 0.01758199, -0.00671815639, -0.028763162, -0.0202557482, -0.0197561067, -0.0136321187, -0.00186184084, 0.0201882292, 0.00980378222, 0.00490864273, 0.0234561563, 0.00392623898, 0.0213360544, 0.0207959, 0.0117348302, -0.00177575392, 0.0122412238, -0.00959447213, 0.0164746754, -0.00441575283, 5.86572714e-05, -0.0224973839, 0.0278449021, 0.0192024484, 0.00584378326, 0.000234840074, -0.00522260694, 0.00136219908, 0.0158670023, 0.00477360468, -0.0303296056, 3.47090681e-05, 0.0198911447, -0.000136620802, -0.0264134947, 0.00645483145, 0.0045069037, 0.0162721183, -0.0333274566, -0.00852767, 0.0182571802, 0.00431109825, -0.0315179452, 0.0105802519, 0.0152593302, 0.0193239842, 0.0191079229, 0.0315719582, 0.0340296552, -0.011586288, -0.0164746754, 0.0222678185, 0.0661147609, -0.0131797399, 0.000663375715, 0.00141621439, -0.00966874324, 0.00700848876, 0.0305456668, 0.000579820771, -0.0219842382, -0.0307347216, -0.00873022713, -0.0138009163, 0.0306807067, -0.0293573309, -0.023307614, -0.00758915348, 0.0206608623, 0.00150989718, 0.0182571802, 0.0265890453, 0.0184732415, -0.0010921224, -0.0390800908, -0.0236992259, -0.0111744208, -0.00690045813, 0.0247255154, 0.0171363633, 0.004095037, 0.0118968757, 0.00812930707, 0.0261569228, 0.0310858209, -0.00853442214, 0.0161370784, -0.0065189749, 0.0149487415, 0.0205933433, 0.00256572803, -0.0312478673, 0.0431582481, 0.00217580493, 0.0243744161, 0.012518052, 0.0231185593, 0.0239828061, 0.0284120627, -0.00647508726, 0.0190133955, 0.0140844965, -0.0239963084, 0.0503152758, 0.0249145702, -0.01272061, -0.0144220926, -0.0151648028, -0.0112892035, 0.00536439708, -0.0187703259, 0.0273317564, 0.0243339054, 0.0210254658, 0.0529890358, -0.0072042942, -0.0255222414, 0.0305186603, -0.027034672, 0.0228889957, -0.0284660775, -0.0243609119, 0.0164341629, -0.00710301567, -0.0269536488, -0.00911508687, -0.01378066, -0.0025707921, 0.0247930344, -0.0235506836, -0.0148407109, -0.041213695, -0.0269266404, -0.039485205, -0.00242056185, -0.00484112371, 0.00153184088, 0.00631979341, 0.0283850543, -0.00794700533, -0.0144220926, 0.0502072461, -0.00663038157, -0.0158534981, 0.0424020328, -0.00754189026, -0.0279799402, -0.0403764583, -0.0100333467, 0.0226324219, -0.0212685354, -0.0486948192, 0.00411866885, -0.0123019908, 0.00524623878, 0.0104789734, -0.0109448554, -0.00597544573, 0.0252251588, 0.00727181369, 0.00157066446, -0.0268996339, -0.000969743938, 0.0137266451, 0.0212280229, 0.0299515, -0.00159260817, -0.000100645746, -0.00343841314, 0.031031806, 0.0171903782, 0.0177035239, 0.0197966173, 0.0385669433, -0.0178655703, 0.0142735504, 0.0144220926, -0.0515576303, -0.0120656742, -0.00912183803, -0.045804996, -0.00943242665, 0.00666076504, -0.0212145206, 0.0251576379, 0.0100333467, -0.0122344717, 0.022902498, 0.00977002271, 0.00419631554, -0.0277638789, 0.00229902728, 0.00194961578, -0.035217993, 0.0194050055, 0.0254952349, -0.00976327062, 0.0186217837, -0.0214440841, 0.00704900036, 0.015839994, 0.0133755459, -0.0424020328, -0.0463991649, 0.0139224511, 0.0299785063, 0.00602270896, -0.0314099118, -0.0282230079, -0.0185677689, -0.0255357455, -0.00826434512, 0.00574925635, 0.0110326307, -0.00697472924, -0.0333274566, 0.0302485842, -0.030491652, 0.000373887335, -0.00170232682, -0.0186893027, 0.0110731423, -0.00294889929, -0.00306030596, 0.00251171272, 0.000183778713, 0.00346710882, -0.00153437292, -0.00708951196, -0.0174874626, 0.0196480751, -0.0281419847, -0.00351099623, 0.00870997179, 0.0119576436, 0.0131932441, 0.0193644948, 0.0107422983, -0.00803478, 0.0253196843, -0.00129721186, -0.0465882197, 0.00409166096, 0.0262919609, -0.00685994653, 0.000883657, 0.00495590642, -0.00721104629, 0.0380267911, -0.0232806057, -0.0236046985, 0.0166367218, 0.0192159526, -0.00846015103, -0.0389450528, 0.0155699179, -0.0135983583, -0.0561219268, -0.0181221422, 0.00397350267, -0.00938516296, -0.00130311982, -0.00323923165, -0.0313288905, -0.00870322, -0.0204042904, 0.00537790125, -0.0124032693, 0.0150972838, 0.0241448507, 0.0215386115, -0.00312107312, 0.00966199208, -0.0158940107, -0.000495843822, 0.0267105792, 0.0181896612, -0.00285774842, 0.0246174857, -0.00630291365, -0.0423750244, 0.0167447515, 0.0417538472, 0.0141790239, -0.00969575159, -0.022834979, -0.00411191676, -1.93326341e-05, 0.00294889929, -0.00389247946, 0.00772419199, -0.00561759388, 0.00634680083, -0.013713141, 0.00784572586, -0.00950669777, 0.00266363076, -0.00632654503, -0.0129906861, -0.0156104295, -0.00613749167, -0.0251576379, 0.0036021471, -0.00674516382, 0.0219977424, -0.00382496044, 0.0334624946, 0.00023990401, -0.0160155445, -0.0290602464, 0.016312629, -0.0183652118, -0.0126868505, -0.00262143137, 0.0204042904, 0.00871672388, 0.0119576436, -0.00902055949, -0.00402751798, -0.0137469005, -0.00751488237, -0.00911508687, 0.00316158473, 0.0016179278, 0.0061982586, -0.00235473062, 0.00427733874, 0.0385399349, 0.00727181369, -0.0109988712, 0.0185947772, 0.0105667487, -0.0192969758, 0.00425033085, -0.00562097, 0.00583027955, 0.00676879566, 0.00562434597, 0.0102426568, 0.0096079763, 0.00943917874, -0.00162045984, 0.0103709428, -0.0112149324, 0.00499641802, -0.00115457759, 0.00294552324, 0.018108638, -0.00539140496, -0.0336785577, 0.00554332277, 0.00543529214, 0.0349209085, -0.0318150297, -0.0274397861, -0.0096079763, -0.0196210686, 0.015515903, 0.00468583, -0.00593155809, 0.00583703117, 0.0585526153, -0.0294923689, -0.00729206903, -0.0253872033, 0.00746761914, 0.00680930726, -0.00721104629, 0.0072042942, -0.0103304312, -0.0181221422, 0.0371895544, -0.0142195346, 0.0246444941, 0.0147326803, 0.018905364, 0.00221800432, 0.0130244456, 0.000654513831, 0.0245769732, -0.0294383541, -0.012119689, -0.00624889834, 0.029762445, 0.00330675091, 0.021174008, 0.0103709428, -0.00683293911, -0.0185272582, -0.0173524246, 0.00282398891, 0.0233211182, -0.0194860287, -0.0130717093, -0.00126936019, -0.0129231671, 0.0276828557, 0.0115795359, -0.00460480666, -0.0160695594, 0.0214710925, -0.032760296, -0.00418281183, 0.0106612751, 0.00541841239, 0.0130109424, -0.0171228591, 0.00670802826, 0.0118091013, -0.025765311, -0.00485125137, -0.0223623458, 0.0117010707, -0.0107017867, 0.00476010051, -0.00918935798, 0.000209625883, 0.0205258243, 0.000944424246, 0.0113769779, -0.00028379148, -0.000535511354, -0.0186487921, 0.022038253, 0.00620163465, -0.0228619874, -0.00123475667, -0.0307887364, 0.0176360048, 0.0205933433, -0.00958096888, -0.0284930859, 0.00950669777, 0.0296544153, 0.00644132774, 0.00477360468, -0.00319534424, -0.00624552229, -0.0150432689, -0.0103169279, 0.00172089459, -0.000953708135, -0.00135207118, 0.00215554913, 0.0359742083, 0.00925687701, -0.00453728763, -0.0189998914, 0.0109921191, -0.00148542156, -0.00957421679, -0.00734608434, -0.0273047481, -0.031031806, 0.0257248, 0.0109313522, 0.0086221965, 0.0106680272, 0.022443369, -0.0100603551, 0.00340296561, 0.0131932441, -0.00968224742, -0.0161235761, -0.0137739088, 0.000646917964, -0.00122800469, 0.0243204013, 0.00709626358, 0.000622864231, 0.00702874456, -0.00166856719, -0.00496603409, 0.00861544441, 0.0123762619, 0.00684644282, 0.0228079725, 0.0358931869, 0.0132607631, -0.00650209514, 0.0203772821, 0.0134295607, 0.0212010164, -0.00975651853, -0.0222138036, -0.0187703259, -0.00844664685, -0.0032156, 0.0194320139, 0.00373718538, 0.037756715, 1.46379432e-06, 0.0157589726, 0.000484028, -0.0165016819, -0.0236046985, -0.00394649478, -0.00104232703, 0.0123019908, -0.00959447213, 0.00973626319, 0.00711651938, 0.0151513, -0.0109921191, 0.00579989562, -0.0165016819, -0.0100265956, 0.0165827051, -0.0028864441, 0.0335165113, 0.0120724253, -0.015448384, 0.013118973, 0.00770393619, -0.00733933272, 0.026697075, -0.0534481667, 0.0133687938, 0.00951345, 0.00680930726, 0.0119036278, -0.0021538611, -0.00993882, 0.0229160022, -0.00963498373, -0.0395122133, 0.0126665942, 0.00114107376, -0.0360552296, -0.00912859, 0.0182301737, 0.0336515494, -0.0204042904, 0.0434013158, 0.00939866714, 0.00834536832, 0.024171859, 0.0372705758, 0.0238207597, 0.00616112351, 0.00933789928, -0.0246174857, 0.0230240338, 0.0143950852, -0.00809554756, -0.010249408, -0.011120406, -0.000663375715, -0.000367979432, 0.0268861298, 0.0293303225, -0.00399713404, 0.00856818166, 0.0022872116, -0.00454066368, 0.00403764565, 0.00587079069, -0.00419969158, 0.000173334338, -0.0161775909, 0.0302215759, 0.0216196347, -0.00394987082, -0.0254817307, 0.0114444979, -0.00592143042, 0.020971451, -0.0362442844, -0.0128556481, 0.0217681769, 0.0199586637, 0.0174874626, -0.0135713508, -0.0120319137, -0.0221732911, -0.0171633698, 0.00938516296, -0.00800777227, 0.0298434682, 0.0163531397, -0.014381581, 0.000412288879, -0.0031497688, -0.00881125, -0.0122614792, -0.00573912868, 0.00285437237, 0.00466219801, -0.00269570248, 0.00927038, 0.0248740576, -0.022443369, 0.0267240833, 0.0176089965, 0.00445626443, 0.00357851549, 0.011255444, 0.0137941642, -0.026764594, -0.0303566139, 0.032760296, 0.0199586637, -0.00513145607, -0.0136928856, 0.0118968757, 0.0095269531, -0.000107977903, -0.0207013749, -0.0099995872, -0.0209309403, -0.00153352891, -0.018446235, -0.0184192266, 0.0117685897, -0.026764594, 0.00322741573, 0.0165151861, 0.020242244, 0.0158264916, -0.0237262323, -0.0325982496, 0.0131797399, -0.00689370604, -0.0138009163, 0.0160830636, 0.00232603494, 0.0129636787, -0.0199046489, -0.0339216255, 0.00171667465, 0.00947293825, -0.023631705, 0.00222813222, -0.0194725264, 0.00455754343, -0.00201375899, -0.0112081803, -0.0167177431, -0.0108435769, 0.00179263367, -0.00227370765, -0.00233616284, 0.0154753914, 0.00888552144, 0.00126429624, 0.000446470454, 0.0195670519, -0.0125585636, 0.00180782552, -0.0146651613, 0.00342828524, 0.0175954923, 0.0160155445, -0.0276558474, -0.00127358013, 0.00403764565, 0.0218627043, 0.00421994738, 0.0268861298, -0.0315449499, 0.00833861623, -0.0139494585, -0.000370300404, -0.0225243922, 0.0151242921, -0.0104114544, 0.00258260779, 0.0123492545, -0.0401603952, 0.0272777397, 0.0251711421, 0.00372368167, -0.0121669527, 0.0132742664, -0.00444951281, 0.00012322246, 0.00209309394, 0.0214440841, -0.00447989628, -0.0134565681, -0.0254277159, -0.0311668441, 0.0149487415, 0.0477495492, -0.00690383418, -0.0248605553, -0.00259442371, -0.0148001993, -0.00613073958, 0.0061982586, -0.0126463389, -0.00693421764, 0.015380865, 0.00229058741, -0.000437608542, -0.00551969139, 0.00954720937, -0.00257923198, -0.00639068848, 0.0173794311, -0.00314301695, -0.0115795359, 0.00802127644, -0.00535089336, -0.0162856206, 0.00848715845, 0.0186622962, -0.0231455676, 0.0142195346, 0.0134565681, 0.00861544441, -0.00394649478, -0.000764232478, -0.0161505826, -0.00185846491, 0.0203637779, -0.0207283814, 0.0262919609, -0.0260488912, -0.0114444979, -0.0276828557, 0.0129569266, 0.00884501, -0.00474659679, 0.00208634208, 0.0303026, -0.0152053144, -0.0224298649, -0.00453391159, 0.00891252887, 0.0208364129, 0.0100603551, 0.0151513, 0.00661350181, -0.00486475555, -0.00505043333, -0.0102764163, -0.0257923193, 0.00111491012, 0.0256032646, -0.00521247927, -0.0144896116, -0.0161370784, 0.00453728763, -0.0398903191, -0.00512470398, 0.0038013286, -0.0167582557, -0.00315145683, 0.0278719086, 0.0323821902, 0.000784066215, 0.0143275652, 0.0312478673, 0.0126598421, 0.0101076178, 0.0393771753, 0.00669452455, -0.00835212, -0.011451249, -0.0117145739, -0.0120656742, -0.00151664915, 0.031896051, 0.00428746641, -0.0307887364, 0.015178307, -0.0325442366, -0.0253601968, -0.00187534466, -0.0024239379, 0.00807529129, 0.00987805333, 0.0166502241, -0.0179600958, -0.00800777227, 0.0170283318, -0.0141925272, 0.0452648439, -0.00690721, 0.0290602464, -0.00126429624, -0.000452378357, -0.00368317, -0.0271832142, 0.0235911943, -0.00988480449, 0.0268456172, 0.0386479683, -0.00644470379, -0.000885345, -0.00253872038, -0.00195130368, 0.010857081, -0.0279799402, 0.0134295607, 0.026237946, 0.0267375875, -0.00147107372, -0.00996582769, 0.0212415271, 0.010053603, 0.000233996092, -0.000518209534, -0.0177575387, -0.0038722239, 0.016312629, 0.0215521157, 0.000773516367, 0.00755539397, 0.0142735504, 0.00112925796, 0.00366629031, -0.0113702267, -0.00212347764, 0.00540828472, -0.0112149324, -0.0227269493, -0.0109988712, 0.00889227353, -0.0107490504, 0.0208499171, -0.00344854104, -0.0107220421, 0.0114107383, 0.0169743169, 0.0126463389, 0.00912183803, 0.0350019336, 0.0123560065, 0.000653247873, 0.0170823466, 0.0144896116, -0.0215386115, -0.00874373131, 0.00261467951, 0.00331012672, -0.018446235, 0.00408490933, -0.0165692, 0.00420306763, -0.000929232454, -0.00351099623, -0.00830485672, -0.0134160565, 0.0196480751, 0.0503963, -0.0232806057, 0.000660843798, 0.030032523, 0.0135038318, 0.00798751693, 0.0116673112, -0.00142971822, -0.00144069, 0.0102291526, -0.0225243922, -0.0374596305, 0.000103019469, -0.000887876959, -0.00946618617, 0.00692746555, 0.00148457754, 0.00206608628, -0.0154078724, 0.0332464352, 0.0126058273, 0.0178925768, 0.0219167192, 0.00835212, 0.00753513817, -0.0013537592, -0.0191214252, -0.00798751693, -0.00640756823, 0.0141790239, -0.0101953931, 0.00199012714, -0.0138954427, 0.0209444426, 0.0136456219, -0.000351521623, -0.00252690446, -0.00338270981, 8.73529134e-05, 0.0135443434, -0.00116470549, 0.00129721186, 0.0215926263, -0.00787273422, -0.0201477166, -0.00296915509, -0.00277672545, -0.000760434545, -0.0203772821, 0.000930920418, -0.00937841088, 0.0261164103, 0.000431489636, 0.0217006579, 0.00397350267, -0.0114917606, -0.0104452139, -0.0347048491, 0.0259948764, 0.0145301232, -0.0031092572, -0.0114647532, -0.0108098174, 0.0127273612, -0.0224298649, 0.0184867457, -0.0166907366, -0.0185002498, -0.00599232549, -0.00175887404, -0.00931764394, 0.0123019908, -0.00589442253, 0.00450015208, 0.0465612113, 0.0107287942, -0.00827784929, 0.0116335507, 0.0273992755, 0.0091353422, 0.000432544621, -0.0117145739, -0.00485125137, -0.00473309308, -0.000843989488, 0.00127104821, -0.013118973, 0.00378444884, 0.0276018325, 0.00142549828, 0.0285200924, 0.00201375899, 0.0172308888, -0.00510444865, 0.0029725309, 0.0178790726, -0.00573237659, -0.00741360383, 0.00446639257, -0.0091353422, 0.0123154949, 0.00374393747, 0.00217242888, -0.0179195851, 0.000746930717, -0.026305465, 0.00794025324, -0.0217141621, -0.00974976644, -0.00274127792, -0.00681268331, -0.00466557406, 0.00363928266, -0.00388910365, 0.013652374, 0.0138144204, 0.0233346224, 0.0196345709, -0.0167312473, -0.0148677193, -0.0375676602, 0.00791999698, -0.0238342639, -0.0258463342, -0.0119036278, -0.0144085884, -0.013186492, -0.00711651938, 0.00910158269, -0.0151242921, -0.00147698156, 0.0160830636, 0.018837845, -0.0264269989, -0.0188648533, 0.0151107879, 0.0254952349, 0.0035818913, -0.00787273422, 0.015313345, 0.00349749252, 0.00125923229, -0.0143545736, -0.0135038318, -0.00850741379, -0.0161640868, 0.00109971827, -0.00587754278, -0.0064176959, -0.014651658, 0.00046124027, -0.00920286123, -0.0162181016, -0.0269131362, 0.0158805065, 0.00553657115, 0.0031396409, -0.0162045974, 0.0149757499, -0.0172714014, 0.0191619378, -0.00557033066, 0.00574250473, -0.00493227458, -0.0202557482, 0.0151918111, 0.0142870545, -0.00326117547, -0.021903215, 0.00884501, 0.00438874541, -0.000364181469, -0.00657299, -0.0103979502, -0.00717728678, 0.0241988674, 0.000426214683, -0.000673925621, 0.0197155941, -0.00110731425, -0.0295193773, 0.0131324762, 0.028033955, -0.00756214606, 0.0115592796, -0.0133012747, -0.025967868, -0.00949319359, 0.0149757499, -0.0138954427, 0.013118973, -0.00583703117, -0.00243575359, 0.0205528326, 0.00323416782, -0.00840613525, 0.00627252972, 0.0182706844, -0.0126665942, 0.00678905146, -0.0362442844, 0.00999283604, -0.0055331951, 0.00190404034, 0.0177845471, 0.00532388594, 0.0112149324, -0.0294653606, 0.00727181369, -0.0112959556, -0.0244014245, 0.00497616222, 0.000908976712, -0.0239152871, -0.0028459325, 0.0146651613, -0.00364941056, -0.0325712413, -0.00518547138, 0.00466557406, -0.0107287942, -0.00550956326, -0.0148542151, 0.0158805065, 0.0123560065, 0.00748787494, -0.00799426809, 0.0123695098, -0.0111474134, -0.00684306677, 0.00406802958, -0.0071637826, -0.00196818355, 0.00154703273, 0.0044934, 0.00349411648, -0.0147866961, -0.00967549533, 0.0138279237, 0.00174199429, 0.0152053144, -0.00417606, -0.025103623, 0.0151107879, -0.00928388443, -0.0192699675, -0.0016078, 0.0161370784, -0.0244284309, -2.48185661e-05, -0.00160273607, -0.0076364167, 0.00357513945, 0.0173659269, -0.0136051103, 0.00372705748, -0.0177710429, -0.0112621961, 0.0130717093, -0.00723130209, -0.000365025451, 0.0200531911, -0.000927544432, -0.0102561601, 0.0183382034, 0.00448327232, 0.00455079135, -0.00503017753, -0.0199586637, -0.00599570153, 0.00796726067, 0.00188209652, -0.010249408, -0.00330337486, 0.00331012672, 0.0147731919, 0.00322404, -0.00969575159, -0.0177575387, -0.00379457674, -0.0196750835, -0.00270245434, 0.000700933277, -0.00320378412, -0.00549605954, 0.016312629, -0.00833186414, 0.0160965677, -0.0179330893, -0.00857493281, 0.000966367952, 0.0124437809, -0.00214035739, -0.00929063652, -0.00659662206, 0.00366629031, -0.00841288734, -0.0103776949, 0.026764594, 0.0190539062, 0.014314062, 0.034434773, 0.00568511337, 0.017717028, -0.0167177431, 0.0049795378, 0.0187838301, 0.022240812, 0.00352450018, 0.0137739088, 0.0345157944, 0.0183922183, 0.0176225, 0.00338270981, 0.0111609166, -0.00477022864, -0.0237937514, -0.0140574891, -0.000989155727, 0.0109988712, -0.014516619, 0.0112284366, 0.00314301695, 0.00630291365, 0.0044934, 0.00705575198, -0.00467232568, -0.0237532407, -0.0145841381, 0.000687429449, 0.000799258065, -0.0200666934, -0.00166434725, 0.00673503615, -0.0107287942, -0.0204988159, 0.012983934, -0.0173659269, 0.00446301652, 0.0109246, -0.00601258129, -0.0146111464, -0.0159345213, 0.00290838769, 0.00208465406, -0.00794025324, 0.0118833724, -0.00912859, -0.0306536984, -0.0177440345, -0.0111946762, -0.00900705624, -0.000341604755, -0.0168392789, 0.00895304047, 0.0182301737, 0.0231455676, -0.0338676088, -0.00478373235, 0.00461493433, -0.00374731328, 0.000937672332, -0.0250226, -0.0106950346, -0.000970587891, 0.0197426025, 0.0197561067, -0.0114377458, -0.0265755411, 0.0104587181, -0.00601595687, -0.00537114916, -0.00735958852, -0.0107422983, 0.0172308888, -0.0162316058, 0.00066379772, 0.0446976833, 0.000947800174, -0.0170553401, 0.0269536488, -0.014719177, 0.00221969234, -0.0080685392, 0.00086930918, -0.00684306677, -0.0104384618, -0.0207823981, -0.0159885362, -0.0140980007, -0.0118496129, -0.0151242921, -0.0022872116, -0.0221327804, -0.012788129, -0.00364941056, 0.00837237574, 0.0303296056, -0.000600498519, -0.00386884785, 0.013247259, 0.00945943408, -0.00437861728, 0.00661687739, 0.0020779022, -0.000154661073, 0.0101413773, -0.00092248054, 0.0205393285, 0.0206338558, 0.0142870545, 0.00355488365, 0.0171228591, 0.00773769571, -0.00984429382, -0.00393636711, -0.00480398815, 0.00144406606, 0.00453728763, 0.00204920652, -0.0148001993, 0.00779846311, -0.0147596886, -0.0173794311, 0.000493733853, -0.0387019813, 0.0175144691, -0.00710301567, -0.00422332343, -0.00233447482, 0.00670802826, -0.0250226, -0.00365953846, -0.0120251626, -0.0266565643, 0.0124302777, 0.00598894944, -0.013584855, -0.0174604543, 0.00491877086, 0.0232671015, 0.00939191505, 0.00983079, -0.00981053431, -0.000109085639, -0.0140439849, 0.0016795391, -0.000851585413, 0.0101548815, 0.000394143106, 0.0061982586, 0.0115525285, -0.0139629617, -0.00147866958, -0.0023530426, -0.0186082795, 0.00212516543, 0.000824577757, 0.0119036278, -0.00181457738, -0.00715703098, 0.0216331389, 0.000121007, -0.0306807067, -0.00216230098, -0.00164493558, 0.0170553401, -0.000138730771, 0.00668102084, -0.00756214606, -0.00337764597, -0.0096079763, 0.00290163583, 0.003612275, -0.0108840885, 0.0038013286, 0.0212685354, -0.00333713437, 0.015448384, 0.012180456, -0.00841963943, 0.0199721679, -0.00975651853, 0.00598219736, -0.0176360048, 0.000487825921, -0.0141655197, -0.00236654654, 0.0119373873, 0.00382833625, -0.0152593302, -0.00978352595, -0.0125450594, -0.000496687833, -0.00802127644, -0.00756214606, -0.00766342459, -0.00418281183, -0.00439212145, 0.0114850095, -0.00524286274, -0.00664388528, 0.00351437228, -0.00321897585, -0.0236046985, 0.0199586637, -0.000579398766, -0.0117483335, 0.0107828099, -0.0247660279, -0.0167582557, 0.0125383083, -0.00642107194, 0.0103101758, 0.00840613525, 0.0290062316, -0.0150432689, 0.0152863376, -0.000209098391, 0.00717728678, 0.00549943559, -0.0209039319, 0.00398700638, 0.0106275156, -0.0114377458, 0.0261839293, -0.0260083806, 0.0173929352, -0.0153943682, 0.00692071393, 0.00501329778, 0.0129366713, 0.0121061848, 0.026170427, 0.00704900036, -0.00771068782, -0.00890577678, 0.00087859307, 0.0105599966, -0.0110056233, -0.00501329778, 0.0059450618, 0.0118563641, -0.0234696604, 0.00851416588, -0.0141250081, -0.011255444, 0.00690383418, -0.0180681273, -0.0125113, 0.000724986952, 0.00368317, 0.018905364, 0.0129299192, 0.0173794311, 0.00468920544, 0.00261805533, -0.0394581966, -0.000735536858, 0.00879099499, 0.0204448011, -0.00637718476, -0.0110191265, 0.0114039863, 9.35773351e-05, -0.0271562058, 0.00731232483, -0.00804828387, 0.0090948306, 0.00910158269, 0.0217546728, 0.0175549816, 0.00486475555, 0.0129096629, -0.0106815314, -0.00631304132, -0.00794700533, -0.00912183803, -0.0038013286, 0.0224703755, -0.0161775909, -0.00400388613, 0.00254716026, -0.0298704766, 0.0173524246, 0.00937166, -0.0064582075, -0.0117145739, 0.0085006617, -0.00494240224, 0.0101346262, 0.0230645444, 0.00591467833, -0.0153673608, 0.0270886868, -0.0122344717, 0.0151107879, -0.0152998418, -0.0279259235, 0.0176089965, 0.0130311977, -0.00481411628, 0.01624511, 0.0323821902, 0.0086221965, -0.00612061191, -0.00234460272, -0.0095674647, -0.00170739077, 0.00711651938, -0.00544879632, -0.0139359543, 0.0163531397, -0.000222180228, -0.0161370784, 0.000359328522, 0.00144406606, -0.0051415842, 0.00601258129, 0.00844664685, -0.00497616222, 0.00863570068, -0.00187365664, 0.0216331389, 0.00352787599, 0.0170688443, -0.0347858705, -0.00960122421, 0.0148001993, 0.0012803321, 0.00783222262, 0.00503692916, -0.00333713437, -0.00867621228, 0.00511457631, -0.00191585615, -0.0104182065, -0.00452040788, -0.0221462846, 0.0151377954, -0.00673166, -0.000987467705, 0.00397012662, -0.00169051101, 0.0300055146, -0.0227809642, -0.000143689205, -0.00936490763, -0.00452378346, -0.00372030563, -0.00855467748, 0.0321121104, -0.0113567226, -0.00588767091, -0.00923662074, 0.0115390243, 0.0069105858, 0.0295733921, 0.000396886055, -0.0109651117, -0.00304005016, 0.0163396373, 0.00015592706, 0.0056142183, 0.00291345175, -0.0108435769, 0.0119576436, -0.0113094589, 0.0131324762, -0.010789562, 0.0106072603, -0.00183652109, -0.00188547256, -0.000160463504, 0.00462506246, -0.00833861623, 0.00692071393, -0.0126463389, 0.00600920524, 0.0036426587, 0.0116065433, 0.018972883, 0.00859518908, 0.0200666934, -1.17499158e-05, 0.00878424291, -0.00217918097, 0.0346508324, 0.00488501135, -0.0142735504, 0.00477022864, -0.00662700552, 0.0165421944, -0.0013216876, -0.00379457674, -0.00635355292, 0.0159345213, 0.00363590685, -0.00882475451, 0.0103304312, -0.00588091882, 0.0101143699, 0.0116875665, -0.0208634194, -0.00950669777, 0.0167987663, -0.00804828387, -0.0125450594, 0.0112216845, -0.00989155658, -0.0236452091, 0.00306368177, 0.00925012492, 0.00260117557, -0.024239378, 0.00194792775, -0.0185542647, 0.0106882825, 0.00243912963, 0.0203772821, 0.00981053431, -0.0190809146, 0.011316211, 0.00400388613, 0.00180444948, -0.00577288819, -0.00533063756, 0.0090948306, 0.0206338558, -0.0063062897, -0.00811580289, -0.000206671932, -0.000564207, 0.00196987158, -0.00847365428, -0.0187568218, 0.011120406, 0.0156104295, 0.00777820731, -0.0225513987, -0.0224163607, -0.00630291365, 0.000281892484, -0.0204583053, -0.00151580514, 0.00191754417, 0.011451249, -0.00530363, -0.0185272582, -0.0177980512, 0.0153943682, 0.0174739584, 0.0135916071, 0.0100671062, -0.00583703117, -0.0249145702, 0.0095674647, -0.00955396146, 0.0180276148, 0.0122412238, 0.012916415, 0.0166907366, 0.011518769, 0.020242244, -0.00296409102, -0.0199991744, -0.00413217256, 0.00443263259, -0.00560409, 0.00450352812, -0.0175684858, 0.00997258, 0.0220652614, -0.00101194344, -0.0189998914, -0.0158129875, -0.00666414108, -0.00323247979, -0.0140844965, 0.00710301567, -0.00651222281, -0.0153268492, -0.0116200475, 0.0146651613, -0.00543191656, 0.00148120162, -0.00258935965, 0.0019529917, -0.00242731371, 0.0333544649, -0.0150972838, 0.00519897509, 0.000636790064, 0.000572646852, 0.0162856206, -0.0109786149, -0.00211334974, -0.00279698125, 0.00171498663, 0.0475334898, -0.021174008, -0.0207283814, -0.0109043438, 0.0149622457, 0.00542516448, 0.0171498656, -0.00679580355, 0.00714352727, 0.00900030416, 0.0142735504, 0.00812255498, -0.00533401361, -0.000625818211, 0.00795375742, 0.00848040637, -0.0298164599, -0.0110123754, -0.00476347655, 0.0191754419, 0.000164577956, -0.0333274566, 0.000845255505, -0.0124977967, -0.0208229087, -0.0138144204, 0.0115390243, -0.0142600462, 0.00939866714, -0.00591805438, -0.0180006083, -0.00866946, 0.00310419337, -0.0182031654, -0.00232941099, 0.00670127664, 0.00369329797, -0.0127138579, -0.0191214252, 0.014381581, 0.0323551819, 0.00454403926, -0.000779002323, -0.00661350181, 0.0050808168, 0.00463181455, 0.00245432137, 0.010850329, 0.0111609166, -0.0029826588, -0.00943242665, -0.0312748738, 0.00727856532, -0.00114782574, 0.0120859295, 0.011187925, 0.0107963132, -0.00867621228, 0.0251981504, -0.0161505826, -0.0262919609, -0.0076566725, 0.0129366713, 0.00500992173, -0.0036224029, 0.0217546728, 0.0132945227, -0.018108638, -0.0131797399, 0.00168291503, -0.000168797895, 0.0209174361, 0.00651222281, -0.0257518068, -0.0257518068, -0.00981728546, 0.00453391159, -0.00235641864, -0.00466219801, 0.0220247507, -0.0328413174, -0.022308331, -0.00843314268, 0.00124657247, 0.00244250568, 0.0218627043, 0.00543191656, -0.00390935922, -0.00354475598, 0.00540153263, 0.0111136539, 0.0217006579, -9.37883306e-05, -0.00595519, -0.0125653157, 0.0140844965, -0.00750137866, 0.0129231671, 0.0111069018, 0.0033286945, -0.00247964123, 0.0224973839, 0.00666414108, -0.0163666438, 0.0130987167, -0.0212280229, 0.00782547053, 0.00487488322, -0.00226189173, 0.0120049063, 0.00783222262, 0.01205217, 0.00240030605, -0.00241212198, -0.0372975841, 0.00299953856, 0.0341376886, -0.0112351878, -0.0196480751, 0.000341393752, 0.00846690219, 0.00162467977, -0.000573490863, 0.013118973, 0.0217546728, 0.014314062, 0.015448384, 0.0287361536, -0.0328953341, 0.0176765155, -0.0123492545, -0.0128961597, 0.0204853136, 0.00190235232, -0.0167582557, 0.00302823423, -0.00656961417, -0.0353800394, 0.0158670023, 0.0292493, -0.0289792232, -0.00879774615, 0.0230375379, -0.00131662365, -0.0362442844, -0.00699498504, -0.0252386611, -0.00898004789, -0.0111541655, -0.0152863376, -0.0167042408, -0.00649196701, 0.0266835727, 0.0305996835, -0.00848040637, 0.000727940933, 0.0297894534, 0.00592143042, 0.0205663368, -0.00898004789, -0.00635692896, -0.00245600939, -0.0206743665, -0.0135781029, 0.0191484336, 0.0272642374, 0.00245938543, 0.00378782488, -0.0238072556, 0.00207621418, -0.0199046489, 0.0166097134, -0.0130987167, -0.00672490848, 0.0252251588, 0.0129029118, 0.0198776405, -0.0191754419, 0.023105057, -0.0183111969, 0.020107206, 0.000421361765, -0.0027075184, -0.00425370689, -0.00179094565, 0.00492552249, -0.0012085929, 0.00415242836, -0.0132810185, 0.008190074, 0.00143309415, -0.0012803321, 0.000554501079, -0.0140034733, 0.00163311965, 0.0121602006, -0.0127003537, 0.0170823466, 0.00794700533, -0.00663038157, 0.000846521463, 0.00455079135, 0.00724480581, -0.0134160565, -0.000901380787, -0.0204583053, 0.0339756422, 0.0138684353, -0.0110393828, 0.00440900121, 0.0153268492, 0.0177035239, 0.0040747812, -0.0262919609, 0.0316799879, 0.00788623746, 0.0158129875, 0.0278449021, 0.00134616322, 0.0186352879, -0.00531038176, 0.00188378454, 0.0085006617, -0.00261805533, -0.000315652083, -0.00687007466, 0.00779846311, -0.00262480741, -0.038810011, -0.0229700189, 0.0122344717, 0.0176630113, 0.0178385619, 0.00149386143, -0.0104384618, -0.00341984536, -0.000251930876, 0.000930076407, 0.00954720937, -0.00577288819, -0.00151327311, -0.0169608127, -0.00933114812, -0.00153521693, 0.0036021471, -0.0192969758, -0.0124235256, -0.00607672427, -0.00152930897, 0.00922986865, -0.0308157448, -0.00459467899, -0.0218492, -0.00447652023, -0.0100806104, -0.00291345175, -0.0176225, -0.0152863376, 0.00161539589, -0.00141283846, -0.0135443434, -0.00203401479, 0.00499304198, 0.000807275937, 0.00458117481, 0.0246309899, -0.00638731243, 0.0012803321, 0.0254007075, 0.000747774669, -0.00387559971, 0.00745411497, -0.0190133955, -0.0182166696, -0.0284390692, -0.0115322722, -0.021579124, -0.00432797801, -0.0187298153, 0.0196480751, -0.00946618617, 0.0217951853, -0.0231455676, -0.024968585, -0.00994557235, 0.0120926816, 0.0258868448, 0.00554332277, 0.000993375666, -0.0145841381, 0.00254547223, 0.0107152909, -0.0134228086, -0.00434485776, 0.00299785077, 0.00259611174, 0.0102561601, 0.00635692896, -0.00113769784, -0.0171228591, 0.0211199932, -0.00201207097, -0.0117888451, 0.00103641907, -0.0256707836, 0.00959447213, 0.00169473095, -0.00813605916, -0.00461493433, 0.0118631162, -0.0013335034, 0.00839938316, 0.00419631554, -0.00181457738, -0.0150162615, 0.0294113457, -0.00482762, -0.0214170776, 0.00226526777, -0.0022045006, 0.00284086866, 0.000374520343, -0.0107085388, -0.0206878707, -0.00275309384, 0.0124032693, 0.00956071261, 0.0297354385, -0.0227944683, 0.0128016323, 0.00952020101, 0.0241448507, -0.0111339092, 0.0156779494, 0.0252386611, -0.0235911943, 0.00567836128, -0.0104317097, -0.00997258, 0.0120454179, -0.0150297647, -0.0130649572, 0.0147326803, -0.0117888451, 0.0312748738, 0.00531713385, 0.0241448507, 0.00789299, 0.00158079236, 0.000499219808, 0.0147326803, -0.00337427, 0.013254011, 0.0245229583, -0.00745411497, 0.00661687739, -0.0276288409, -0.00234291493, -0.00187365664, 0.000849053438, 0.0285741091, 0.0133417863, -0.0120251626, -0.0294383541, 0.025765311, 0.00925012492, 0.00195636763, 0.00131746754, -0.0125315562, -0.0211199932, -0.00503017753, 0.00187872059, -0.00489176298, 0.00404777378, -0.00129552383, 0.00755539397, -0.0148947267, 0.0014381581, 0.0128961597, -0.0109718638, -0.0161775909, 0.0177305304, -0.000698823307, 0.000171962864, -0.0214305818, -0.0170958508, 0.00586403906, -0.00212854147, 0.00116132956, 0.00585391093, 0.00721779792, -0.0337865874, -0.0125788189, -0.0107220421, -0.0241988674, -0.00709626358, -0.000303836219, 0.0206338558, -0.00610373216, -0.00997933187, 0.0156239336, -0.0255087391, 0.0157319643, 0.00585053535, -0.0138684353, 0.0205393285, -0.0225513987, 0.00837237574, 0.0036629145, -0.0137063889, 0.00652910257, 0.00221125246, -0.00453053555, 0.00663038157, -0.0381618291, -0.0161100719, -0.00614086771, -0.00328649511, 0.0442115441, 0.00954045728, 0.000641854, 0.0216061305, 0.00126682827, -0.0322741568, 0.000631304167, 0.0179330893, -0.00923662074, -0.0208364129, 0.03516398, -0.000978183816, -0.0109246, 0.00890577678, -0.00135713513, 0.000225556185, 0.00313120103, 0.00608347636, 0.000588260649, 0.00432460196, 0.0110866455, 0.00307212165, -0.00254547223, -0.00780521473, 0.00197831145, -0.00692746555, -0.0224838797, 0.0168932937, -0.0163666438, 0.00520910323, 0.024901066, -0.0177710429, -0.00120099704, 0.0234561563, 0.00683631469, -0.0158940107, -0.0195265412, -0.0114917606, -0.0115930401, -0.0138414279, 0.00677892379, 0.0212010164, -0.00714352727, 0.0120454179, -0.0310047977, -0.0191754419, 0.00152593304, 0.0227809642, -0.0189998914, -0.00496265804, 0.00205427036, -0.00185846491, -0.0132607631, -0.00426721107, -0.0120319137, -0.0330573805, -0.00237667444, 0.0173524246, 0.0160965677, 0.0158129875, -0.0140574891, -0.0200801976, 0.0127341133, 0.03062669, 0.00443938468, -0.0201342124, -0.0117483335, -0.0292763077, -0.00729882112, 0.0486948192, -0.0271562058, 0.0173524246, -0.000453222368, -0.000983247766, -0.00449677603, 0.00708951196, -0.0206878707, 0.0139359543, -0.0137874121, 0.0111811729, -0.00274127792, -0.00833186414, -0.012983934, -0.00569861708, 0.00585391093, -0.00468245381, -0.0133012747, 0.00354813179, 0.00955396146, 0.0064312, -0.00751488237, 0.00281892484, -0.0125315562, 0.00969575159, -0.00078955217, -0.0218086876, -0.0273452587, 0.00541503681, 0.0124100214, 0.00698148087, 0.00377769698, -0.0168257747, 0.0237532407, 0.0204718094, -0.000442250486, 0.00870997179, 0.0169743169, 0.00436848961, 0.0247390196, -0.00483437162, -0.00404777378, -0.0111069018, -0.0121939601, -0.0016162399, 0.00829135254, -0.0169743169, -0.0241988674, 0.0324362032, -0.0174199436, -0.0142870545, 0.00442250492, 0.0156914517, 0.0134700723, -0.00925012492, 0.00166687928, -0.00435161, 0.0129501745, 0.0018263933, -0.0149892531, -0.00269907829, 0.00173186639, -0.00244756951, 0.0142465429, -0.0152188186, -0.00162467977, -0.018837845, 0.0155564146, 0.00308056176, -0.00038865715, 0.00977677386, 0.0128286406, -0.0251576379, -0.00524286274, 0.0146786654, 0.00624889834, -0.00100434746, -0.0110056233, -0.00760265719, 0.0102764163, -0.0268996339, 0.0110663902, 0.0115390243, 0.0122817354, 0.0292763077, -0.0196615793, 0.0112284366, 0.0216061305, -0.00116639351, 0.0198506322, 0.00265856693, 0.00259948755, 0.00163143163, 0.0106612751, 0.00394987082, -0.0102629121, 0.0119643947, -0.00521585485, -0.00470608519, -0.0145031158, -0.00111744204, 0.0278449021, -0.00367979426, 0.00368317, -0.016852783, 0.0132202515, 0.0255357455, -0.00108368252, 0.0230645444, 0.00864245277, -0.0147866961, 0.0113432184, -0.00111406611, 0.0146246497, -0.00931764394, 0.0180141125, -0.0134093054, -0.0102426568, -0.0028864441, 0.00106342672, -0.00903406367, 0.00562434597, -0.0110663902, 0.00146600977, 0.00135629112, 0.00796050858, -0.00304680201, 0.00742035545, 0.0174064394, -0.0171633698, -0.0119103799, -0.00738659594, 0.00603621267, 0.0138076684, 0.0259543657, 0.0127746249, 0.0219167192, -0.00276828557, 0.00578976795, 3.56849305e-05, -0.0311398357, 0.0463991649, -0.0333274566, -0.00800777227, -0.00329493498, -0.018176157, 0.00395324687, 0.00252690446, 0.0197831132, -0.0215251073, -0.0307347216, 0.00520235114, 8.43989474e-05, 0.0132270036, -0.00406127749, 0.0112081803, -0.0165692, 0.0340026468, -0.0110731423, 0.0227944683, -0.0126193305, -0.00615437143, 0.0134768244, 0.0179465935, 0.00702874456, -0.0256977919, 0.0135105839, -0.00747437077, -0.00740009965, -0.00125332444, 0.011316211, 0.000277039537, 0.00517871929, 0.00403764565, 0.0168797895, 0.00704900036, 0.0154888956, 0.0195400454, -1.74995948e-05, 0.00591805438, -0.000689961424, 0.0227809642, -0.00808879547, -0.00699498504, 0.00949319359, -0.0179195851, -0.00488838693, 0.00279529323, -0.0130852135, 0.0124977967, -0.00411191676, -0.0158534981, 0.00181120145, -0.00780521473, -0.00853442214, 0.00122462877, 0.00457442319, -0.0327332877, 0.0307617299, -0.0122209676, 0.0085816849, -0.0195265412, -0.0189458765, 0.0146111464]
23 Mar, 2023
Java Program To Find Longest Common Prefix Using Sorting 23 Mar, 2023 Problem Statement: Given a set of strings, find the longest common prefix.Examples: Input: {"geeksforgeeks", "geeks", "geek", "geezer"} Output: "gee" Input: {"apple", "ape", "april"} Output: "ap" The longest common prefix for an array of strings is the common prefix between 2 most dissimilar strings. For example, in the given array {“apple”, “ape”, “zebra”}, there is no common prefix because the 2 most dissimilar strings of the array “ape” and “zebra” do not share any starting characters. We have discussed five different approaches in below posts. Word by Word Matching Character by Character Matching Divide and Conquer Binary Search. Using Trie) In this post a new method based on sorting is discussed. The idea is to sort the array of strings and find the common prefix of the first and last string of the sorted array. Java // Java program to find longest common prefix of // given array of words. import java.util.*; public class GFG { public String longestCommonPrefix(String[] a) { int size = a.length; /* if size is 0, return empty string */ if (size == 0) return ""; if (size == 1) return a[0]; /* sort the array of strings */ Arrays.sort(a); /* find the minimum length from first and last string */ int end = Math.min(a[0].length(), a[size-1].length()); /* find the common prefix between the first and last string */ int i = 0; while (i < end && a[0].charAt(i) == a[size-1].charAt(i) ) i++; String pre = a[0].substring(0, i); return pre; } /* Driver Function to test other function */ public static void main(String[] args) { GFG gfg = new GFG(); String[] input = {"geeksforgeeks", "geeks", "geek", "geezer"}; System.out.println( "The longest Common Prefix is : " + gfg.longestCommonPrefix(input)); } } Output The longest Common Prefix is : gee Time Complexity: O(MAX * n * log n ) where n is the number of strings in the array and MAX is maximum number of characters in any string. Please note that comparison of two strings would take at most O(MAX) time and for sorting n strings, we would need O(MAX * n * log n ) time. Space Complexity: O(1) as no extra space has been used. Please refer complete article on Longest Common Prefix using Sorting for more details! Master Data Structures and Algorithms at your own pace with our DSA Self-Paced course. In just 90 days, you’ll cover core concepts, solve real-world problems, and sharpen your problem-solving skills. Take the Three 90 Challenge: complete 90% of the course in 90 days and get a 90% refund. Stay motivated, track progress, and achieve DSA mastery. Start today!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting
https://www.geeksforgeeks.org/java-program-to-find-longest-common-prefix-using-sorting?ref=asr10
PHP
Java Program To Find Longest Common Prefix Using Sorting
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[0.0176508892, 0.0298282448, -0.0063177878, 0.0213919729, -0.00880661327, -0.00281679817, 0.0114743328, 0.0381891914, -0.0513708629, -0.0172617156, -0.0314853676, -0.00695490185, 0.0109658968, -0.00794666633, 0.000367792236, 0.033092279, 0.0254845694, 0.0386411324, -0.0307572372, -0.00795294344, -0.0235261489, -0.00991136301, -0.00184543431, 0.03110875, 0.0291252211, 0.0394194797, 0.0170985144, 0.000253041042, -0.0416289791, -0.0220447797, 0.0296022724, -0.00645274296, 0.0128238853, -0.033745084, -0.0049807895, 0.00164143217, 0.00212632958, 0.0505423024, -0.0192703512, -0.00843627099, -0.0163954906, 0.0243798196, -0.00783995725, -0.0297529195, -0.00202903617, 0.00537310122, -0.0186426528, 0.0270161536, -0.0187305305, -0.0234257169, 0.0206512883, -0.00981093105, -0.0220949948, 0.0162197351, -0.00202589761, 0.0249196403, -0.0198729411, 0.0173872542, -0.00668499153, -0.00257356488, 0.0367329307, -0.014838798, -0.0269910451, -0.00767675554, 0.00882544462, -0.0327658728, -0.0455960371, 0.0296775959, 0.0421562456, -0.0030317849, -0.053931877, -0.00681053149, -0.0171110667, -0.020789383, -0.0222833045, -0.0262880232, 0.0479059666, -0.0154916048, -0.00801571272, 0.0522747524, 0.00467635551, -0.0503414385, 0.0281711202, -0.0225469396, 0.031661123, 0.000639468082, 0.00760770869, -0.0426835157, 0.0137591567, 0.0194209982, -0.0196595248, 0.00615772465, 0.0249321945, -0.0184166804, -0.042030707, 0.0637741908, 0.0103633059, -0.000927424873, -0.0451692, 0.0103884144, 0.00314947846, -0.00806592871, -0.0142738689, -0.0053574089, 0.00450687716, -0.0277945, -0.00929621793, 0.0264888871, 0.0296022724, 0.0397961, 0.00748216873, -0.0173872542, 0.00735035213, 0.0144496253, -0.00912674, -0.0285979547, -0.0385155939, -0.0537310131, 0.048634097, 0.0508938134, 0.0163201671, 0.0148639064, -0.0516219437, 0.00109376502, -0.0509189218, 0.0426081903, -0.00278070546, 0.0495882, -0.00893215276, -0.0208647065, -0.0170859601, -0.0042840438, -0.0338204093, 0.0088317208, 0.0275685284, 0.00126010517, -0.0153786186, 0.041528549, -0.0153158493, 0.0400220715, -0.00560535, -0.0252711512, -0.00500275893, -0.00353394379, -0.00626129471, -0.00840488635, 0.0136963865, 0.0602088645, -0.0302299708, -0.0202119, -0.0454956032, -0.00312123192, -0.00255316473, 0.00223303819, 0.0134327533, -0.0170734059, 0.0175881181, -0.0198729411, 0.00246371748, -0.0313347206, 0.0304559432, -0.0294014085, 0.00339898863, -0.02245906, -0.0140353441, -0.00415222719, -0.00187838846, -0.0210781228, -0.0249698553, 0.0230867602, 0.0042495206, 0.00765792467, 0.0246685594, 0.00933388062, -0.0415034406, -0.0226975866, 0.0359796919, 0.00926483329, -0.00474854093, 0.0185422208, -0.0410263911, 0.0154916048, 0.0233503934, -0.0141357752, -0.016872542, -0.012453543, 0.00775835617, 0.00581876747, 0.00480189547, -0.0154664973, -0.0344732143, -0.0154288346, 0.0111981453, 0.0162197351, 0.0101624429, -0.00647785095, -0.0450938791, 0.0258109719, -0.0100243492, 0.0447925813, 0.00826051552, -0.035929475, 0.0136963865, 0.0127297305, 0.0306819137, -0.0258611888, -0.0151024312, -0.0220447797, 0.0405995548, 0.0290498976, -0.0197222941, 0.00449746149, -0.0286230631, 0.00397961, 0.0156924687, -0.021806255, -0.0390428603, 0.0313849375, -0.0601586476, -0.0175630115, 0.016106749, -0.012604191, 0.0427337289, 0.00402668724, -0.019672079, -0.033745084, -0.0277945, 0.037310414, 0.00823540706, 0.0253715832, 0.00802199, 0.0111228218, -0.0132444436, -0.00344606605, 0.00576855149, -0.0217937, -0.0314853676, 0.0252962597, 0.00893843, 0.0426333, 0.0226975866, -0.0213292036, -0.0170482974, -0.0165712461, 0.00935271103, 0.0259365123, 0.000680268509, -0.0343225673, 0.00228953105, 0.0125790825, -0.0152781876, 0.00819774531, -0.0122840647, -0.00235073175, -0.0448176898, 0.00922089443, -0.0428843759, -0.018140493, -0.000565321185, 0.0030804316, 0.0184292346, 0.022722695, 0.0101247802, 0.0324143618, 0.0174249168, -0.0247187763, 0.00473912526, -0.0180651695, 0.0131942276, -0.00987370126, 0.00801571272, -0.02245906, 0.0244174805, 0.00420558173, 0.0242793877, -0.0348247252, -0.0160439797, -0.0183288027, 0.0234884862, 0.00318086334, -0.000137309093, -0.00723108929, 0.0399216413, -0.0235763639, 0.00119027367, -0.0223586299, 0.00234445487, -0.00265516574, -0.0107650338, 0.00165398617, -0.00978582352, 0.00160063175, 0.0152028631, 0.0187430847, 0.00865596533, -0.00246057916, 0.0304057263, -0.00987997837, -0.0289494656, 0.0157426838, 0.00128129008, -0.0372099802, -0.00664105266, -0.0173370391, -0.0305312667, 0.0155167123, -0.0289243571, -0.0249949638, -0.042532865, -0.0315858, 0.0152907409, -0.0458220094, 0.0128238853, 0.00721853552, -0.050015036, -0.00534171611, 0.0572963394, 0.0346489698, -0.00576855149, -0.0213040952, 0.0151024312, -0.0406246632, 0.00409887265, 0.0156924687, 0.038113866, -0.039996963, -0.0372601971, 0.00638683466, -0.0347996168, 0.00391997863, 0.00241977861, -0.00222519203, -0.0334689, 0.00943431165, 0.0349000506, 0.0123154493, 0.0136838323, 0.0348498337, 0.012503759, 0.0110851601, 0.0053668241, -0.00459475489, -0.011537103, 0.0213543102, -0.00120047387, 0.0086999042, 0.0067289304, 0.00332680321, 0.0215300675, -0.0371848717, 0.000732838293, 0.00275088963, 0.0614642613, 0.0222833045, -0.000670853, -0.0601586476, -0.0262378063, -0.0319122039, -0.0101059498, 0.00976699218, 0.00805965159, -0.0373606272, -0.00382896233, -0.00182503404, 0.0361554474, -0.0456964672, 0.00937781949, 0.00891332235, 0.0107462024, 0.00302707707, 0.0198729411, -0.00424324349, 0.011788182, -0.000237937056, -0.00398902548, 0.00673520751, 0.0129305944, 0.00762026245, 0.0149768917, -0.0101687191, -0.040499121, 0.0511700027, 0.00238054735, -0.0226473697, -0.0241161846, -0.0153786186, -0.0379381105, 0.0120329848, -0.00041977354, 0.0194712151, -0.0336446539, 0.0331676, -0.0442402065, 0.0156924687, -0.0150898779, -0.0106394934, -0.0235763639, 0.0160816424, -0.0016696786, 0.0108591877, 0.0107148178, 0.0300793238, 0.0145626105, -0.0239278767, -0.0169855282, -0.00637114234, -0.0187179763, -0.00916440133, 0.0122087402, 0.0220322255, -0.0038069929, 0.071507439, -0.0291252211, -0.0137968184, 0.0190318264, -0.0042840438, -0.0158807784, 0.0394445881, -0.0111102676, -0.0237646736, -0.0371346585, -0.00265830406, 0.0219945628, 0.0261624828, 0.00340840407, -0.00465438608, 0.0531786382, 0.050366547, 0.00171518675, -0.0052350075, -0.0200110357, 0.0189439487, 0.0333182476, 0.022107549, -0.0116626425, -0.054885976, 0.0149894459, -0.0452696346, -0.0172491614, 0.00330797234, -0.0216053911, -0.0040612109, -0.00481131067, -0.00101608736, -0.0353268832, -0.031209182, -0.0426081903, -0.00512829889, -0.0191071499, 0.0110726058, -0.0268655065, 0.0107838642, -0.00915184803, 0.0256352164, 0.0270161536, -0.0423571095, 0.0188686233, 0.00233190088, 0.0420558155, -0.00232876232, 0.0322637148, -0.0134578608, 0.00674148463, -0.0151149854, 0.0458471142, 0.029175438, -0.000377011544, -0.0127925007, -0.00518165296, -0.000391134789, -0.0492115803, -0.0482574776, -0.00642763497, 0.0102377664, 0.000168595958, 0.0200612508, 0.0132444436, -0.0244049262, -0.00631464925, -0.0172617156, -0.00265359646, 0.0436878316, -0.0252962597, -0.0163327213, -0.0260369442, -0.00395136373, -0.0172868241, 0.0119890459, -0.00173872546, 0.0400471799, -0.027442988, -0.00435309066, -0.00871245842, -0.00179521844, 0.0143366391, 0.0271668, -0.074319534, -0.0086308578, 0.00465438608, 0.0375866, -0.00546097895, -0.043763157, 0.0193707831, 0.0347242951, -0.00671009952, -0.0284473076, -0.0151526472, 0.0260871593, 0.00323578692, -0.00292507606, 0.00250137947, -0.0305061582, 0.00311495503, 0.0012922748, -0.017788982, 0.0289996825, -0.00797177386, 0.0283970907, 0.00200549746, -0.0293763, -0.0236265808, 0.0432609953, -0.0301044323, -0.00371911493, -0.0713065788, 0.014487287, 0.0345736481, -0.0228356794, 0.00613575522, -0.00340212719, -0.0473535918, 0.0359545834, 0.014587719, -0.0178768598, -0.0230490975, -0.0268403981, -0.013721494, -0.00105218, -0.0210279077, 0.00207297504, 0.0124472659, 0.0100243492, -0.0180275086, -0.0168097727, -0.0315606929, 0.00662222179, 0.00599452294, 0.00650295895, 0.00110004202, 0.0150145534, -0.00359671377, 0.0223962907, -0.0135582928, 0.0170985144, -0.00433112122, 0.0423571095, 0.00916440133, -0.023224853, -0.0181781556, -0.0207642745, -0.0132444436, 0.0230490975, 0.0154037271, -0.0140855601, 0.0432861038, 0.0172366071, 0.0130435796, 0.0152781876, -0.050667841, 0.0151400939, 0.00783995725, -0.0114492252, -0.0216179453, 0.00918951, 0.0150522161, 0.0247062221, 0.0124472659, -0.0349251591, -0.0144621786, -0.00922089443, -0.00600707671, -0.00524756126, 0.00775835617, -0.0239404291, 0.00762026245, -0.0131816734, -0.0553379208, -0.0204253178, -0.0118321208, -0.0143617475, 0.0159184393, 0.0439891256, -0.023990646, 0.0142236538, -0.0403735824, 0.013821926, -0.00261436519, -0.011737966, -0.017537903, 0.0279702563, 0.0357537195, 0.0161193032, 0.0141106676, 0.00131032115, 0.00993647054, -0.00509063667, 0.0341719203, 0.00483328, 0.0194335524, -0.0141357752, -0.0599075668, 0.00869362708, 0.00589095242, -0.0137842642, 0.000782661838, 0.00753866183, 0.0128929317, -0.00281052105, 0.013671278, -0.00394822517, 0.00337074231, -0.0455709286, -0.00452570803, 0.0223209672, 0.0587023869, 0.0493120141, 0.00770186353, -0.0223084129, -0.0213543102, -0.0402982607, -0.00984231662, 0.00727502815, -0.0113174086, 0.000311887823, -0.0323139317, 0.00390428607, -0.0191950276, -0.00422441261, 0.00481758779, 0.0204253178, -0.0180149544, -0.0130686881, -0.0125225894, 0.0657828301, -0.00038897706, 0.0098485928, -0.0153284036, -0.00178423361, 0.0375614911, -0.00328914146, 0.0333433561, -0.00185171131, -0.00333935721, 0.00590664521, 0.00468577119, -0.00068183773, 0.0146630425, 0.00172303303, 0.00638683466, 0.0322134979, -0.00763281668, -0.0195590928, 0.00660966756, 0.0164708141, -0.0130184721, 0.0197599567, -0.0261875913, 0.0312845036, 0.00176069501, 0.00413339632, 0.00330797234, -0.0257356483, -0.0222330894, 0.0118258446, -0.00266144262, 0.00435936777, -0.00476737181, 0.0367078222, 0.0287737101, 0.0210279077, 0.0122903408, 0.0016061241, -0.00630523404, -0.00496823527, -0.000752453867, 0.00491801975, -0.00298470748, -0.0078022955, -0.0352013446, -0.0246434528, -0.0448930152, -0.0125728054, 0.0195214301, 0.0123656653, 0.0133950906, -0.0074256761, 0.0335944369, 0.0383900553, -0.0172742698, -0.0137591567, 0.0227854643, 0.0241789557, -0.00692979386, 0.000703414902, -0.0222330894, 0.0328663066, 0.00153943116, 0.0423068963, -0.0283719823, 0.00475481804, -0.000784623437, -0.00981093105, -0.0248317625, 0.0250577331, -0.000801492832, -0.0187179763, 0.00234131631, -0.00621735584, 0.011737966, -0.000253629521, -0.0107901413, -0.00356846722, 0.0329918452, -0.0153284036, -0.0168348793, 0.00250922563, -0.00819774531, 0.0167972185, -0.0100306254, -0.0119513841, 0.0214296356, 0.00425265916, 0.0044723535, -0.01122953, -0.0018093416, -0.0235135946, 0.0161569659, 0.0279702563, -0.0162825044, 0.00514399121, 0.00159670867, -0.0136085087, -0.000525305397, -0.0166716781, 0.00707416469, -0.017537903, -0.00045468926, 0.0077144173, 0.00171832531, 0.0128552699, 0.00461044721, -0.00513457553, -0.00278698234, 0.0181279387, -0.00658455957, -0.0203751, 0.0224339534, -0.00629268, 0.0107964184, 0.011788182, -0.0102001047, 0.00482072635, 0.00569322752, 0.0245681293, 0.00286858319, -0.00169792504, -0.0399216413, 0.00250922563, -0.00517537631, 0.00983603951, 0.021191109, -0.0109658968, -0.00524756126, -0.0260620508, -0.0283217672, 0.0168097727, 0.00861830357, 0.0131691191, 0.0213417578, 0.00215143734, 0.000307768525, 0.0111102676, 0.0247689914, 0.00324520236, 0.0321883895, 0.00145939959, 0.0076139858, -0.0193331204, 0.0060321847, -0.0022503, -0.0361805558, 0.0128678242, 0.0213292036, -0.00569322752, 0.0170985144, -0.0254343525, 0.00400157925, -0.0169102047, -0.0284222, -0.0217685923, 0.0204629786, 0.00896353833, 0.00893215276, 0.0179772917, 0.0121020321, -0.024241725, 0.011788182, 0.00350883603, -0.0239529833, 0.00922717154, 0.00563359633, 0.00533857755, 0.00923972577, 0.0681429729, 0.042181354, 0.0208270438, 0.00963517558, 0.0188686233, 0.00520048384, 0.0111353751, -0.00115025789, 0.00949708186, 0.0300793238, 0.0237270128, 0.00815380644, 0.0247689914, 0.0477804281, -0.017023189, 0.0141232219, 0.013721494, 0.00266928878, -0.0191699192, -0.0352515616, 0.0176006723, -0.00916440133, 0.00773324864, 0.00480817212, 0.0453449562, 0.0108152488, 0.0314351544, 0.0142864231, 0.00642763497, -0.0466505699, -0.043763157, -0.0194586609, 0.00829817727, -0.0368333608, 0.0317615569, 0.0229988825, 0.0127736693, 0.0175253488, -0.0065406207, 0.0380636528, 0.0077144173, 0.0260871593, 0.027392773, -0.0495379828, -0.0305814818, -0.00505611347, -0.0317866653, 0.0233252849, -0.00518479152, -0.0319122039, 0.0188686233, -0.00364692975, -0.00025696418, 0.0117442431, -0.0202746689, -0.00731896749, 0.0100243492, 0.000156336217, 0.00554258, -0.0126167443, -0.0278196074, -0.00158415467, 0.00845510233, 0.000568852, 0.0257105399, -0.00422441261, -0.00782112591, 0.0377121419, 0.0155920368, -0.0363060944, -0.000680268509, 0.0100494567, -0.0159184393, -0.0162322894, -0.0209274758, 0.0353268832, -0.00208395976, -0.0100369025, -0.00118870451, -0.0370844416, -0.00991136301, 0.0217685923, -0.0217685923, 0.00128129008, -0.0090012, 0.0163954906, -0.00589409098, 0.00511574466, -0.0200486984, -0.00705533382, 0.00753866183, 0.0239404291, -0.00950335898, 0.00475481804, 0.00509377522, -0.0103193671, 0.0380887575, 0.022823127, 0.0391181856, 0.00946569722, -0.0267650746, 0.00898236874, 0.00190977345, -0.0510444604, 0.0182409249, 0.00463241665, 0.00812869892, 0.0367831476, 0.0280204713, -0.031359829, 0.00953474361, -0.00122950494, 0.0137340482, -0.0162448436, -0.0476548895, 0.000365634507, -0.0361805558, -0.00718087377, 0.0090200305, -0.00151903089, -0.00101765653, 0.000504512864, -0.0203248858, -0.0301295388, -0.00783368, -0.0546349, -0.0306316987, -0.0273676645, 0.0260369442, 0.0258360803, -0.0279702563, -0.00227226946, 0.0131565658, -0.00172931, -0.0118509522, -0.00233190088, 0.0245179124, 0.0585517399, 0.0186803136, 0.0206763968, -0.0381640829, 0.0208144896, -0.0103821373, -0.0121271396, -0.013520631, 0.0103946915, -0.0101059498, 0.0131691191, -0.00668499153, 0.00363751408, -0.0175253488, -0.0233252849, -0.00856808759, 0.0110161128, -0.0393190496, 0.00346803549, -0.02002359, 0.0397207774, 0.0108905733, -0.00131659815, -0.0175504573, 0.0168850962, 0.00940292701, -0.0141483294, -0.0311840735, -0.014889014, 0.00174971018, -0.0146504883, 0.0318368785, -0.00739429099, 0.014838798, 0.0234633796, -0.0455458201, 0.0144119626, 0.0246936679, 0.0146755967, 0.0347242951, 0.0162322894, 0.0191950276, 0.0128427157, -0.0269910451, -0.00739429099, -0.0108026955, -0.018956501, -0.0149643375, -0.0403484739, -0.0153786186, -0.0244049262, -0.00449118437, 0.00833583903, 0.00297686132, 0.0241036322, 0.00042055815, -0.00468890974, 0.0194209982, 0.000874070509, 0.0031055396, -0.00893843, -0.0249824096, 0.00289055263, -0.0228607878, -0.00703650294, -0.0085115945, -0.043913804, -0.0206010733, 0.0331927091, 0.0191824734, 0.00642763497, -0.054082524, 0.0144119626, -0.018655207, -0.00235857791, 0.00193174288, -0.0111353751, 0.0147760287, -0.0088882139, 0.0082919, 0.000453904649, -0.0176634416, 0.00469204783, 0.0302801877, 0.0149266757, 0.0197222941, 0.0088756606, -0.035628181, 0.00324834092, 0.000446450722, 0.0336195454, 0.00578738237, -0.011737966, 0.00674776128, -0.0141985454, -0.03527667, 0.00212319102, 0.00543587096, -0.00657828292, -0.0165084768, -0.0194209982, 0.0111667607, -0.00739429099, 0.0126544069, -0.0373606272, -0.0081224218, -0.01122953, 0.0107650338, 0.0132569969, 0.0106646018, 0.0105139539, -0.0394696966, -0.00257042632, -0.0111730378, -0.00451629236, 0.0351009145, -0.0028560292, -0.0017967876, -0.00631464925, 0.00714321155, 0.0113299619, 0.0132821053, 0.000147116894, -0.00809731334, 0.010419799, 0.00113221165, 0.0161318574, 0.00594744552, 0.00932132639, -0.0217685923, 0.00016124011, -0.0258109719, 0.000244606344, -0.0249447487, 0.00569636608, -0.0259616189, 0.00127579772, -0.0360299088, 0.0053574089, -0.0307823457, -0.021090677, 0.00982348528, -0.00873756688, -0.013621063, 0.00244802516, -0.00591606041, 0.0147258127, 0.0422566794, -0.0403986908, -0.0270914771, -0.0570452623, -0.0097167762, 0.00410828833, 0.0182911418, 0.0108026955, 0.00891332235, -0.0137968184, 0.013821926, -0.00555199524, 0.0408506356, 0.00367831462, 0.00220479188, 0.0164833684, 0.0075574927, 0.00226756162, -0.00190035789, -0.0141357752, -0.0050121746, 0.00802826695, -0.0125916367, -0.00461672433, -0.00146881503, 0.0179772917, -0.000644960441, 0.00188937318, -0.0305563752, 0.0167846642, 0.0264386702, -0.00116438116, 0.00701139495, -0.00874384306, -0.0090074772, -0.00603846181, -0.00225814618, 0.00125147437, -0.0210028, 0.0371848717, -0.0134578608, -0.0048238649, -0.00536054699, 0.0267399661, -0.0131691191, -0.00736290636, -0.0252334885, 0.00863713492, -0.00249510258, -0.00445979973, -0.0119011682, 0.00425265916, -0.0533292852, 0.00467635551, -0.000825423864, 0.0054233172, -0.0127862236, -0.0203248858, 0.00131110579, 0.000802669732, -0.018554775, -0.0109031275, 0.00281993649, 0.0143617475, 0.0273676645, -0.00509377522, -0.0330671705, 0.0057434435, 0.0530782044, 0.0150898779, -0.0412272513, 0.023475932, 0.0220447797, 0.00370342261, -0.00492743496, 0.0341719203, -0.035577964, -0.0331676, -0.0142487613, -0.0310836416, -0.00549550261, 0.00550177926, -0.00936526526, 0.00331111089, 0.0106646018, -0.00528836204, 0.0106646018, -0.0150773237, -0.0110600516, -0.000827777723, 0.00536054699, 0.00950335898, 0.02002359, -0.00785878859, 0.00834211614, -0.00627698749, 0.0118886139, 0.0374861695, -0.0306568071, 0.00551433349, -0.00858691894, 0.00805965159, 0.00861202646, -0.00247941, 0.0146002723, 0.0109533425, 0.0332178175, -0.019006718, -0.0150145534, 0.0147258127, 0.0105076768, 0.00982348528, -0.00712438067, 0.012403327, 0.0173998084, 0.00925855618, -0.00606984692, -0.0150271077, 0.00545784039, 0.0117819048, 0.00104825688, -0.0321381763, 0.000271087396, -0.0221703202, -0.0296524875, -0.00282307505, 0.0190820415, 0.0121020321, 0.0303304028, -0.0217685923, 0.00479561836, 0.022973774, 0.00106159551, -0.0111604836, -0.00548608694, 0.0126983458, -0.00896981452, -0.0249949638, 0.00916440133, 0.0207768288, -0.00574972061, 0.0152154174, -0.0149517842, -0.00569322752, 0.0130059179, -0.0156924687, -0.00905141607, 0.00454453891, 0.0249573011, 0.0300542153, -0.0146253807, -0.00894470699, 0.00445979973, -0.0196344163, 0.0146504883, -0.00435309066, 0.0115622105, -0.0153535111, -0.0296524875, 0.0235387031, -0.0147509202, 0.00288898335, -0.016521031, 0.00290153734, -0.0255473386, -0.0014217376, 0.0214045271, 0.00274147419, 0.011788182, 0.0056116269, -0.00532916235, -0.0106771551, 0.0330169536, -0.0128803784, 0.00181248016, -0.00782740302, 0.0212789867, 0.0159937646, 0.00413967296, 0.0150773237, -0.00534485467, 0.0132318893, 0.0213668644, 0.00716831954, -0.0383649468, -0.00415222719, -0.0192326885, -0.0267148577, 0.00321067893, -0.0076139858, -0.0126920687, 0.00235543959, 0.00884427503, -0.0112232538, -0.00976699218, 0.0216556061, 0.0118823368, 0.000722638157, -0.0127108991, -0.0241664015, -0.0137591567, -0.0318870954, -0.0293009765, 0.0112923, -0.0349502675, 0.00253433362, -0.0097732693, -0.00611064723, -0.0142111, 0.0109407892, 0.0101561658, -0.0100933956, -0.0140981134, -0.0253339205, -0.00714948867, 0.0267650746, 0.0234382711, 0.0243296027, -0.00191605045, -0.00801571272, 0.0195339844, 0.024091078, -0.0115559334, -0.01585567, -0.0215426199, -0.0529777743, 0.0179019682, 0.0336697586, 0.012553975, -0.0238651056, -0.0320879593, 0.00190506561, 0.00151040009, 0.0173244849, 0.00114555017, -0.00801571272, 0.0393692665, -0.0427839458, -0.035577964, 0.0174500253, 0.0101687191, 0.0502661131, 0.0034429275, 0.00682308525, 0.0008411163, -0.00014505726, -0.00506866723, 0.0125916367, -0.00508749811, 0.00586270634, -0.00726875151, -0.0148262437, 0.00697373319, -0.0054233172, -0.000314045523, 0.0090074772, -0.00759515492, -0.0145249488, 0.0150271077, 0.0284724142, 0.0223837364, 0.000254610291, 0.00641822, 0.0172742698, 0.0249824096, 0.0142989773, 0.00524756126, -0.00295018405, -0.0041930275, -0.0187430847, 0.0105516156, 0.0210530162, 0.00200863602, 0.0044378303, 0.0232122988, -0.014889014, 0.00365320663, 0.0102817053, -0.0452194177, -0.00889449101, -0.0206763968, 0.00225343858, 0.0281460118, 0.00381013122, -0.00912046246, -0.0188686233, -0.0148262437, 0.00671637664, -0.00610437, -0.0230365433, 0.0223586299, -0.000982348574, -0.0288490336, 0.0149266757, 0.00281365961, 0.0304559432, -0.00518793, -0.0153409569, 0.0150522161, 0.0174500253, -0.0198729411, 0.0166591238, -0.00891332235, -0.00556141092, 0.00449746149, -0.0167093407, -0.00640252698, -0.0247187763, 0.0331927091, 0.0148764597, 0.00624874095, -0.000594352256, -0.0179019682, 0.00168380188, -0.00229266961, 0.00329227978, 0.0125853596, 0.0040047178, 0.00230208505, -0.0190694872, 0.0195088759, -0.0135080768, 0.0305061582, -0.0132695511, -0.00493057352, -0.0055551338, -0.0147132585, -0.00605101604, -0.0194586609, -0.00180620316, -0.0082542384, 0.0113550704, -0.0148639064, -0.00915812422, 0.00721853552, -0.00151667709, 0.00403610291, 0.00584701356, 0.00714948867, 0.00393567095, -0.0190318264, 0.0109533425, -0.00967911445, 0.00878150575, -0.00140526053, -0.029175438, -0.013621063, 0.0365571752, 0.00339271175, 0.0326654427, 0.00647785095, -0.0408757403, 0.00488035753, -0.00475167949, 0.027141694, 0.0247062221, 0.0245179124, -0.000188407692, 0.0354775339, 0.0124284346, 0.00618283264, 0.0142487613, 0.0110161128, 0.0141985454, 0.00231934688, 0.00201648218, 0.0132946596, -0.0132067818, 0.0267650746, 0.0344229974, 0.00837350078, -0.0274178814, -0.00325461803, -0.018755639, -0.00314163207, 0.0433112122, -0.0278196074, 0.00186112674, 0.0339710563, -0.0105578927, -0.0161569659, -0.00533543946, -0.00376619236, 0.0109910052, -0.000473127933, 0.0157929, -0.019672079, 0.0107273711, 0.00667871442, -0.0082103, -0.037310414, 0.0413025767, 0.0114241168, 0.0196595248, -0.0186803136, 0.0322386064, -0.0325147957, -0.0242668334, 0.0296022724, -0.020174237, 0.00692351721, 0.02754342, -0.00703650294, -0.00326089491, -0.000127893611, 0.02754342, -0.0310585331, -0.0440895595, -0.00140918372, -0.00556141092, 0.0101310574, -0.020174237, -0.0326905511, -0.0205634106, 0.0160941947, 0.0188811775, 0.000896824582, 0.0334940031, 0.00366889918, -0.0176132265, -0.00894470699, -0.0175630115, 0.0368333608, -0.000867793511, 0.0142864231, -0.00204629777, -0.00490546552, -0.0117819048, -5.03139781e-05, -0.00883799791, 0.00195214304, -0.018805854, -0.0035527749, -0.0123593882, 0.0131691191, 0.00191134261, 0.0143240849, -0.00263633463, -0.0250326265, -0.00343351206, 0.0171989445, 0.018040061, -0.00476109469, 0.00533543946, 0.0107022636, -0.013721494, 0.0317615569, 0.0110474974, -0.0239027683, 0.00262691919, 0.0212036632, 0.0151275396, 0.00206042104, -0.0174876861, 0.0106457705, 0.00574658206, -0.0105076768, 0.00534485467, 0.0378376804, -0.0349251591, -0.0152781876, -0.0127171762, -0.019772511, 0.00638683466, -0.00500589749, -0.018554775, -0.00261279591, -0.00539193209, 0.00458220067, 0.00341154262, 0.0145249488, -0.00940920413, 0.0031102472, 0.0015464928, -0.00550805638, -0.00641822, -0.00471401773, 0.00167752488, -0.02927587, 0.0125853596, -0.00190349645, 0.0109596197, 0.00714321155, 0.00653434405, -0.0192326885, 0.0493873358, -0.00367203751, -0.00657828292, 0.00433739834, 0.00511888321, -0.015504159, 0.000880347507, -0.0296524875, -0.00633975724, 0.0186928678, 0.00690468634, -0.00495254295, 0.00606043125, 0.00292507606, -0.00566184241, 0.00852414872, 0.0167595558, -0.0205634106, 0.00949080475, 0.0140855601, -0.00881289, 0.0290498976, 0.0320879593, 0.0218941327, 0.00545156375, 0.0218941327, -0.0069486252, -0.0195214301, 0.0243547112, -0.0138846962, -0.00118164287, -0.00287642935, 0.00460417, 0.00751983095, 0.00290781446, 0.00433112122, -0.0029831382, 0.00812869892, 0.00291409134, 0.00203217473, 0.0009046708, 0.00911418535, 0.0403735824, 0.0178768598, -0.0229486655, -0.0251832735, 0.0171361752, -0.00989253167, 0.0114931641, -0.0143366391, 0.00772069441, -0.00201648218, 0.00981720816, 0.0297780279, -0.00974816177, 0.0014154606, -0.0104009677, -0.0331927091, 0.00997413322, 0.000511182181, 0.00682308525, 0.00232562376, -0.00282150577, 0.00345862, 0.0081224218, 0.0146755967, -0.0155920368, 0.00145312259, -0.0154664973, -0.011386455, -0.00187525, -0.00154335424, 0.00177638745, -0.0088756606, -1.44910136e-05, 0.00119576615, -0.00540134776, 0.0123782195, -0.00249196403, -0.00148764602, -2.51079491e-05, 0.00245273276, 0.0193958916, -0.00876895152, -0.0154916048, 0.00464497088, -0.0202621147, 0.016721895, 0.0302801877, 0.019672079, -0.00754493894, 0.000268929667, -0.00401727203, 0.00466380175, -0.00660339091, -0.00146489195, -0.0116877509, 0.00387917808, -0.0102817053, 0.00726875151, -0.00942803547, 0.0269910451, -0.00638369611, -0.00792155787, 0.011737966, -0.015755238, -0.0023350392, -0.0205508564, -0.00176697189, 0.000339741935, -0.0051031909, -0.027442988, -0.00563673489, -0.00423068926, 0.000954102085, -0.00891959947, -0.00935898814, 0.0325650088, 0.00411770353, -0.00969166867, -0.0228984505, 0.0211283397, -0.00370028405, -0.0171487294, -0.00294704549, 0.0199984815, 0.00718715042, -0.00125147437, 0.00498706661, -0.0172617156, 0.0096602831, -0.00730641326, 0.0205759648, -0.000626521825, -0.0124974819, -0.00487408089, 0.0114680557, -0.0209023673, -0.0148136904, 0.0242040642, 0.00405807234, -0.00219851476, -0.00394508662, -0.0119074453, 0.00384779321, -0.00045115847, 0.00814752933, -0.000963517581, 0.00392311718, -0.00194429688, 0.00298470748, -0.0117254127, -0.00805337448, -0.00589722954, 0.00982976239, 0.00777091039, 0.0194963235, 0.0091392938, 0.0101687191, -0.0082103, -0.00873756688, -0.01377171, 0.00308670849, -0.0103821373, -0.0039293943, 0.0238399971, 0.0100243492, 0.00214829901, 9.14086268e-05, 0.0166591238, -0.0130059179, -0.00885682926, 0.020990245, 0.00446293782, -0.00786506478, 0.0122212945, 0.00327972579, -0.0102754282, 0.0122903408, 0.0135834, -0.000630444905, 0.0172114987, 0.0253966916, -0.00728130527, -0.0197976176, 0.0187305305, -0.0136461705, -0.00548294839, 0.0113362391, 0.00824168418, 0.0108152488, 0.014889014, -0.0100180721, 0.010419799, 0.0215802826, -0.0240157545, -0.0019490046, 0.0103319213, -0.00950335898, 0.000681053149, -0.0131691191, -0.00240094773, -0.00880661327, 0.0258862954, -0.00994274765, 0.016106749, 0.0135331843, 0.00880033616, -0.0129557019, 0.0088882139, -0.00635858811, -0.00407376466, 0.00612633955, -0.0076139858, -0.0268152896, 0.0334437899, 0.0186426528, 0.0127171762, 0.00653434405, -0.00846137851, -0.000468027865, -0.00521617662, -0.000445666112, 0.00185171131, 0.00302550802, -0.00758887781, -0.0104386304, 0.0136461705, -0.00762026245, -0.00586270634, -0.0189690553, -0.0082103, 0.0222707503, 0.00976071507, 0.00710555, 0.00042173508, -0.00391684, 0.021806255, -0.0114115635, -0.00650923606, 0.00273676659, -0.00839860924, -0.029326085, -0.0251707193, -0.0173621476, 0.0033644652, 0.0219945628, 0.00856181048, -0.00821657665, -1.89413e-05, 0.0119639384, 0.0184166804, 0.024141293, 0.00119262759, 5.39919e-05, -0.00183288031, 0.0191071499, -0.00619538641, 0.00557396468, -0.0124284346, 0.00768930931, -0.00281836744, -0.0216179453, 0.00538251689, 0.0111604836, -0.0029046759, -0.00356532889, 0.00284504448, 0.0208772607, -0.00184857275, 0.00638997322, 0.0118132904, 0.00519420719, 0.00342409662, -0.00816636067, -0.00974816177, 0.00613575522, -0.011386455, -0.00504983636, 0.0369086862, -0.0158807784, -0.00272578187, -0.00852414872, 0.0226097088, 0.000575521262, 0.0149643375, -0.00912046246, 0.0214170814, -0.0012310741, -0.00978582352, 0.00600707671, -0.0118572293, -0.0167972185, 0.00369086862, 0.00260338048, 0.00121773558, -0.0125225894, -0.00284661376, 0.00792155787, 0.00174657174, 0.0150145534, 0.00536996266, 0.00614517042, -0.00594430696, 0.0198101718, 0.00246057916, 0.00423068926, -0.00236171647, 0.00117222744, 0.00319184805, -0.00101451809, 0.00184543431, -0.00518165296, 0.00765164755, -0.0111730378, 0.0103570288, 0.00654689781, 0.000359749829, -0.0193331204, 0.00612320099, -0.0109910052, 0.00664733, 0.012553975, 0.00491174264, -0.000425265898, -0.020073805, 0.0065720058, -0.00344606605, -0.0401727185, 0.00807220582, -0.0117191356, -0.00890076812, 0.0313096121, 0.0378627889, -0.0141734378, -0.0154790506, 0.00479561836, 0.00896981452, 0.00653434405, 0.0163578298, -0.031510476, -0.000715576578, -0.00213888334, 0.00964773, -0.0033644652, -0.027392773, -0.0175253488, -0.0218188073, -0.0282966588, -0.012704622, 0.00239780918, 0.0038854552, -0.00574972061, 0.0201365761, 0.000202432842, 0.0270161536, 0.0135834, -0.00645274296, -0.00792155787, 0.0131063499, 0.00176697189, -0.0161569659, 0.00507180579, 0.0100306254, 0.00667871442, 0.0082542384, 0.016521031, -0.0112985773, 0.0154664973, 0.0265391022, 0.000142997626, -0.00209337519, -0.0191448107, -0.0234884862, 0.0125979139, -0.0258360803, -0.0270663686, -0.00754493894, 0.00772697153, -0.00167438632, 0.00113927317, -0.0159812104, 0.0147007043, -0.0290247891, 0.0102440435, 0.000869362731, 0.0131942276, -0.0202119, -0.00371597661, 0.0067603155, 0.0060008, -0.00170420203, -0.00499648182, -0.00299412291, -0.019772511, 0.020990245, 0.00252021034, 0.0127611151, -0.0295018405, -0.0374359526, -0.00650923606, 0.00171989459, 0.00973560754, 0.0151652014, 0.0251205042, 0.00706161093, 0.033393573, 0.0055237487, 0.00216869917, 0.0244049262, 0.0217183754, 2.6922391e-05, 0.0124158813, -0.0166842323, 0.00828562304, 0.000519420719, 0.00954102073, -0.0164708141, -0.0123844957, 0.00926483329, -0.000805808231, -0.00982348528, -0.0180149544, -0.00723108929, 0.00397961, -0.00664105266, -0.000350922812, -0.0086873509, 0.00286544464, -0.00927111, -0.0110600516, 0.0101687191, 0.000815223728, -0.000374853844, -0.00682308525, 0.000775992579, -0.00849276409, -0.0022079302, -0.0216304976, 0.0229110047, 0.00440958375, 0.00345234317, 0.0170608517, 0.00778346416, -0.00157160067, -0.00067948387, 0.00502159, 0.0013519061, 0.00751983095, 0.0112358071, 0.0399718545, 0.0115245488, -0.0118321208, 0.0180777237, -0.0416540876, -0.00499334326, 0.00453198468, 0.0216053911, 0.0171989445, -0.0195465386, -0.014487287, 0.00665360643, -0.000989410095, -0.0167470016, -0.000242252485, 0.0204629786, -0.0182409249, 0.018140493, -0.0280204713, -0.0132569969, -0.029426517, 0.0153284036, -0.00757632358, -0.00519734574, 0.0123405568, -0.0075574927, -0.00937154237, -0.00571519695, -0.00819146819, 0.0250828415, -0.00619224785, -0.0160314254, 0.0124849277, 0.000468812505, -0.00578738237, -0.014587719, -0.00770186353, -0.00106159551, 0.00607612357, 0.00777718751, 0.0023915323, -0.0214045271, 0.0141608836, 0.00805337448, 0.0150145534, -0.00187368074, 0.0218815785, -0.0170357432, 0.00370028405, -0.00144684559, 0.00594116841, -0.00424010493, 0.00959123671, 0.0103633059, -0.0220322255, 0.0208521523, -0.0185171124, 0.0217685923, 0.00317929406, -0.0143491933, -0.0253464747, 0.0149392299, 0.00506552868, 0.0286230631, -0.0198478345, 0.0259867273, 0.00878150575, 0.00278855162, 0.00861202646, 0.0234131627, -0.007369183, 0.00984231662, 0.0151400939, -0.0261875913, -0.0120204305, 0.0239404291, 0.00836094748, 0.00263005774, -0.00201177434, 0.0254343525, -0.0110161128, 0.00792783499, 0.0280706882, 0.0293763, -0.0118258446, -0.0182032641, 0.00118399679, 0.0285979547, 0.01468815, -0.013570847, -0.0116375349, 0.00484583434, -0.0213543102, -0.00662849844, -0.00519420719, -0.0101875504, 0.00325461803, -0.00986742415, -0.00166497089, 0.00658455957, 0.0244300347, -0.00179992616, -0.00298784603, 0.0024747022, -0.00925855618, -0.00649668183, 0.0341719203, -0.00352766691, -0.0122526791, 0.0106018316, -0.00725619728, 0.0050466978, -0.00385720865, 0.00583759835, -0.00322637148, -0.00831700861, -0.010262874, 0.0195214301, 0.00763281668, 0.00478620268, 0.0110726058, 0.00908280071, -0.00265830406, 0.0183790196, -0.0229863282, 0.00304590818, 0.0053668241, -0.0111981453, 0.0192201361, 0.0249573011, -0.00642763497, -0.0123656653, 0.00585329067, -0.0384402722, 0.0165084768, -0.00718715042, -0.00590350665, -0.00305689289, 0.0179647375, -0.00101451809, -0.00878150575, 0.00447863061, -0.00641194265, 0.00333308033, 0.00325147947, 0.0134076448, 0.0174123626, 0.00856181048, 0.01122953, 0.00598196918, 0.00845510233, 0.0124096042, 0.0139098037, 0.0249824096, -0.00592547609, -0.0018156186, 0.0159309935, -0.0125790825, -0.0173119307, -0.031661123, 0.0098485928, 0.00942803547, 0.0227478016, 0.018140493, -0.0195214301, -0.0108466344, -0.0153535111, -0.00765164755, 0.00658455957, -0.0253213663, 0.00234602392, -0.0228858963, 0.00569322752, 0.00800943561, -0.0225218311, 0.0154916048, 0.0124096042, 0.00277913618, 0.00486466521, -0.0178140905, -0.00119890459, 0.00811614469, -0.00526325405, -0.0263131317, 0.000809731369, 0.016872542, -0.00862458069, 0.0256101079, -0.019923158, -0.0141106676, -0.0191950276, -0.00890704524, -0.000572382763, -0.01585567, 0.00938409567, 0.0109031275, -0.0128803784, 0.00112122681, -0.0190694872, 0.0084425481, 0.00941548124, -0.00922089443, 0.00527266925, 0.000131816734, -0.0118258446, 0.0106332162, -0.00629895693, 0.00895726122, 0.00652179, 0.0214798506, -0.0330169536, 0.00722481264, 0.0129054859, -0.00169635587, -0.00307886233, -0.0104574608, 0.0317866653, 0.0146253807, -0.0102001047, 0.018956501, 0.0148513522, -0.0285979547, -0.0306568071, 0.00623932527, 0.00483955722, 0.0101436116, 0.0194586609, 0.00296744588, 0.010011795, 0.00806592871, -0.00176069501, 0.00790272746, -0.000959594443, -0.00886938348, -1.21003641e-05, 0.00821657665, 0.00706788758, 0.0100494567, 0.015002, -0.0130812414, 0.00794038922, -0.00585956778, -0.00949708186, -0.000472343294, -0.0023177776, 0.00643391209, -0.00237270119, -0.006352311, -0.00390114775, 0.00630523404, 0.00795294344, 0.0104511837, 0.00420244318, -0.00488349609, -0.00745078409, 0.0269157216, -0.00809731334, 0.0117567973, 0.0281209033, 0.000920363294, -0.0168976504, 0.00225971546, 0.0065720058, 0.00278227474, -0.0259867273, -0.0100745652, 0.00470460206, -0.00963517558, 0.0165084768, -0.0037505, 0.0070490567, -0.00863713492, 0.0120141534, 0.00613261666, -0.00490860408, -0.0259616189, 0.00860574935, 0.00331111089, 0.0256979857, 0.0101812733, 0.00151746173, 0.00942803547, 0.0109658968, -0.00908907782, -0.0167595558, 0.00319498661, 0.00178737217, 0.0261373762, -0.0247941, 0.00269282749, -0.00145312259, -0.00281522889, -0.00910790823, -0.0298031364, 0.0195214301, 0.00647785095, 0.00496195862, -0.0174500253, -0.0203374382, -0.0159058869, -0.014587719, -0.00338643463, 0.00464497088, -0.000800708192, -0.00496509718, -0.00240722462, 0.00357160578, -0.00544842519, 0.0188435167, -0.0201491304, 0.00758260069, 0.0303304028, -0.0226599239, -0.011995323, 0.0020808212, -0.000724207435, -0.0117254127, -0.00530405436, 0.0031714479, 0.00569322752, -0.00778346416, 0.0166340172, 0.0212413259, 0.00498706661, -0.00330169545, 0.00666616065, -0.0265642107, 0.0114178397, -0.021090677, -0.0088756606, 0.00388859375, 5.45865e-06, -0.00891332235, 0.0227478016, 0.00148372294, 0.0114303939, 0.00624874095, 0.0169353113, -0.00381013122, -0.00367203751, 0.0050121746, -0.0170608517, -0.000959594443, 0.00903258473, 0.016922757, 0.00478620268, 0.00518165296, 0.0159058869, 0.0126983458, 0.00176854117, 0.00953474361, 0.0122150173, -0.00954729784, 0.0139600197, -0.0322134979, 0.00187054218, 0.00914557092, 0.00349628204, 0.00915812422, 0.00493998919, -0.000910163159, 0.0221326575, -0.000362299877, -0.0363060944, 0.00748844584, -0.0155167123, -0.011945107, 0.0011165191, -0.00158023159, -0.0133072129, -0.0159435477, 0.00689213211, -0.00824796129, -0.0126544069, 0.0259365123, -0.0088756606, 0.00562731922, -0.0381891914, 0.0260620508, -0.0195214301, 0.00186740374, -0.00730641326, 0.00620166352, 0.007369183, -0.00145939959, -0.0106018316, -0.00303335418, -0.0117442431, -0.00928366464, 0.0189313944, -0.00451943092, 0.0121648014, 0.0210530162, -0.0140102357, 0.00886938348, -0.00115104252, -0.00533543946, -0.00383210089, 0.00776463328, 0.00671009952, -0.00792783499, 0.00372225349, 0.00949708186, 0.0198980495, 0.0138595877, -0.00332994177, -0.0101561658, 0.0101436116, -0.0059976615, -0.00961634424, 0.00621421728, -0.0105076768, 7.74815635e-05, 0.0220949948, 0.0268152896, 0.00200863602, -0.0111855911, 0.00568381185, -0.00460730866, 0.00461986288, 0.0100243492, 0.0187054221, -0.0153158493, -0.0114178397, -0.0106143858, -0.0113299619, 0.0345736481, -0.00254374905, -0.00820402242, -0.0181153864, -0.00797805097, -0.00615144754, 0.0172742698, 0.0205131955, -0.00214359118, 0.00644646585, -0.0109031275, -0.00506866723, 0.00470460206, 0.00253433362, 0.0131063499, 0.00146724575, -0.0130059179, -0.0152530791, 0.00211063703, -0.00214829901, -0.0014256608, -0.00262691919, -0.00389487064, -0.00608867779, 0.00620166352, 4.16586e-05, -0.00936526526, 0.00617341697, -0.0289243571, -0.0210655704, -0.015504159, 0.0111604836, 0.0100180721, 0.0283217672, 0.0236642417, -0.0120706465, -0.00886310637, -0.0141734378, 0.0138344802, 0.0248694234, -0.00405807234, -0.012095755, -0.00583132124, 0.0135080768, 0.000916440156, 0.00580621324, -0.00250451802, -0.0109533425, 0.0252083819, -0.0215551741, 0.0187807456, -0.00499334326, 0.0283217672, 0.0116689196, 0.00893215276, 0.000469204795, 0.0158431157, 0.0026504579, 0.00550177926, -0.0113362391, -0.00939037278, 0.0165335853, 0.018655207, -0.0266897511, 0.0083107315, 0.0308074541, -0.0107775871, -0.0138846962, 0.0015614006, -0.000391919399, 0.00164613989, -0.0025845496, 0.00743823, -0.00937781949, 0.0135080768, 0.0037285306, 0.00808476, 0.00549236406, 0.0177011043, 0.0162197351, -0.000522951537, 0.0259616189, -0.000683014689, 0.000520597619, 0.00483641867, -0.0118760597, 0.0086308578, -0.0171612836, 0.0299035683, 0.0197599567, -0.0253966916, -0.0176885501, -0.00542017864, -0.0108591877, 0.0178391989, -0.00658455957, -0.0238525514, 0.0253088139, -0.00175912573, -0.00711182691, 0.000145743805, -0.00597883062, 0.00264888862, 0.0195967536, 0.0142487613, -0.0108403573, -0.00230051577, 0.00809731334, -0.0283970907, 0.00928366464, 0.00197254331, 0.00804082118, 0.00423068926, 0.00363751408, 0.00908907782, 0.0351511277, 0.011436671, 0.00913301669, -0.0280706882, -0.0023915323, -0.00444096839, -0.00350569747, 0.0386160277, 0.0259365123, 0.000521774578, -0.00403296435, 0.00635544956, -0.0177011043, -0.0162322894, 0.00899492297, 0.0110977134, 0.00658455957, -0.000173303692, 0.00582190556, 0.0252837054, 0.000928209512, -0.014437071, 0.0197850633, -0.00219223788, -0.000604944653, 0.00102628744, -0.00416478096, -0.00167752488, -0.0152530791, 0.00783995725, 0.0200989135, 0.0116187036, 0.0017308793, -0.0346489698, -0.0110977134, 0.0141859911, -0.0139976814, -0.00231306977, 0.00665988354, 0.0191699192, 0.00697373319, 0.00881289, 0.000734015193, -0.014487287, 0.00595999928, 0.00111416529, 0.0121522471, 0.0115182716, -0.0176132265, 0.00621735584, -0.0237772278, -0.00694234809, 0.0176759958, -0.00746333785, -0.0227352474, -0.00439389097, -0.0182409249, 0.010369583, -0.00396391749, -0.00765792467, -0.0246811137, -0.00495254295, 0.00807848293, -0.00288584502, 0.00373480748, -0.0131189032, 0.0293763, -0.0212915409, -0.00585642923, -0.00859319605, 0.0159812104, -0.0114241168, -0.0254343525, 0.00898864586, -0.0113613475, -0.00625815662, 0.011436671, 0.0077144173, 0.000429189, 0.00220636115, 0.00585956778, -0.0149141224, -0.024091078, -0.00535113178, -0.0160188712, 0.00912674, 0.00169007888, 0.00223303819, 0.00243860949, -0.00348058948, 0.0137089407, -0.0301044323, -0.0306316987, 0.0127422847, 0.0123405568, -0.00271950476, -0.00451001525, -0.00401727203, -0.00191918889, -0.0115684876, -0.0170482974, -0.0112546384, -0.00639938843, -0.00381326978, -0.000460966257, 0.0271165855, 0.0134453066, -0.0114680557, 0.0226724781, -0.010978451, -0.000863085792, -0.00890704524, 0.000272852805, 0.00109925738, 0.0149768917, -0.00377874635, -0.00170890975, 0.0257858634, -0.0152656334, 0.0056116269, 0.0351009145, -0.0148011362, -0.00324834092, 0.0159435477, -0.0153786186, 0.00701767206, 0.0226724781, 0.011279746, -0.00451315381, -0.00121695094, 0.0106646018, -0.00817263778, 0.0238525514, 0.00704278, -0.0135834, 0.0254971236, -0.00780857215, 0.0302299708, -0.0065406207, -0.00090231694, 0.00696745608, -0.00546097895, 0.00272735092, 0.0061294781, 0.00673520751, -0.0143491933, -0.0333182476, 0.00562418066, -0.021806255, 0.00760143157, 0.00368773, -0.00508122146, 0.0276689604, -0.00730641326, -0.00536996266, 0.0113550704, 0.00868107378, -0.0152781876, -0.00418047374, 0.00628954126, -0.00986742415, 0.0433865376, -0.0151526472, -0.0158180073, -0.0129431477, -0.00988625549, 0.0219945628, -0.00139270653, 0.012503759, 0.00639311178, 0.0323390402, -0.0231369752, 0.0187305305, 0.0224088449, 0.00562418066, -0.00115653488, -0.00527266925, 0.0250702873, 0.00229737745, 0.016521031, -0.015654806, -0.000198509719, -0.0134076448, 0.00859947223, -0.0054327324, -0.00159121631, -0.0208772607, -0.0226473697, -0.01122953, -0.00721853552, -0.0302550793, -0.00984231662, 0.0061545861, -0.0205006413, -0.00856181048, -0.0083107315, -0.012246402, 0.000803454372, 0.00816008355, 0.00557082612, -0.0127234533, -0.0260118358, -0.0196846332, 0.00952218939, -0.0113927322, 0.0199859273, -0.000736761373, -0.0215300675, 0.0194209982, -0.0197474025, 0.0154916048, -0.0157677922, -0.0014068298, -0.00828562304, -0.0236642417, -0.00760143157, 0.00629895693, 0.00916440133, 0.0229612198, -0.0284724142, 0.00371283805, 0.0079906052, -0.023990646, -0.00204472872, -0.0200486984, -0.0123217264, 0.00386976264, -0.0214672964, -0.00156689296, 0.0160188712, -0.00582818268, 0.00600393862, -0.0263382383, -0.0139600197, -0.0128929317, -0.00225814618, 0.014788582, 0.0201114677, -0.0175504573, 0.0101561658, -0.00108748802, 0.00787761901, 0.00855553336, 0.00873756688, 0.00719342753, 0.0110726058, -0.00898864586, -0.00859319605, -0.00379757746, 0.00275402819, -0.00324206403, 0.000228325414, -0.0212915409, 0.00391997863, -0.015002, 0.00332680321, 0.0233001765, -0.0173119307, -0.00584387546, 0.0114178397, -0.00967283733, 0.00238525518, 0.00283249049, 0.000864655, -0.0112985773, -0.0383147299, -0.00938409567, -0.00160690874, 0.0007732464, -0.00881289, -0.00359357521, -0.0124472659, -0.00725619728, 0.0339710563, 0.00553944148, 0.00199294346, -0.0180149544, -0.00329541834, -0.00304276962, -0.0132821053, -0.00176540273, 0.00566498097, -0.0220447797, -0.0146630425, 0.0159937646, -0.0176132265, 0.00616400177, -0.0158431157, 0.00362809864, 0.0309581012, 0.0152656334, -0.0166842323, 0.0107462024, -0.0142613156, -0.0245681293, 0.0358792581, 0.00733779836, 0.0101122269, -0.00809103716, -0.0167470016, -0.00178266445, 0.0111479294, -0.0192577969, 0.0106457705, 0.00866224244, 0.00733152125, -0.00336132664, 0.0097042229, -0.0132067818, 0.0104951225, -0.00100902573, -0.0157175772, -0.00435936777, -0.00291095278, -0.0118070133, -0.0324394703, -0.000509220583, 0.0241036322, -0.0101875504, 0.000379953883, 0.0022079302, -0.0082103, -0.0135834, -0.00571833551, -0.0391432941, -0.00137779873, -0.00506552868, -0.00808476, -0.00664105266, 0.0097732693, -0.000228913879, 0.00994274765, 0.00579365948, 0.00107493403, -0.0156924687, 0.0150271077, 0.0100306254, 0.00710555, -0.015554375, -0.02245906, 0.0329667367, -0.0185296666, 0.00586898299, 0.0274680965, 0.0222205352, 0.0120894779, 0.00606043125, -0.0110663287, 0.00210436, 0.0132193351, 0.0113613475, -0.0197222941, 0.00169635587, 0.0121522471, 0.00295803021, 0.00690468634, 0.00219223788, 0.0221577659, -0.0125602521, -0.0150647694, 0.00750727672, 0.0199106038, 0.0061294781, -0.0151903098, 0.00426835148, -0.00608553924, -0.0148513522, -0.0162448436, -0.00886938348, 0.0097167762, -0.0213040952, -0.03171134, 0.0157929, -0.00365634519, -0.0196971856, 0.000954886724, 0.0217811465, 0.0167972185, -0.00439075287, 0.0122087402, 0.000188505772, 0.0152530791, 0.00432484411, 0.0113236848, -0.00311966264, 0.0059976615, 0.023224853, -0.0077144173, 0.000754023087, 0.00920834, -0.0166340172, -0.00821657665, -0.00947197434, -0.011995323, -0.0151024312, -0.00797805097, 0.0200612508, -0.00405807234, 0.00818519108, -0.00335818832, 0.0086999042, 0.0167846642, 0.0141357752, 0.0220824424, -0.0121334167, 0.0248066541, 0.00360926776, -4.78865477e-05, 0.0209023673, -0.000390938629, -0.0166089088, -0.00669126865, 0.0236391351, 0.0172993764, 0.027442988, 0.0110726058, 0.00968539156, 0.0186300986, 0.0119199986, 0.000497843546, 0.0127673922, -0.006352311, 0.0285979547, -0.00572775118, -0.00341154262, -0.00677914638, -0.00421813549, 0.00365320663, -0.0302550793, 0.0259114038, 0.00369400717, 0.0108717419, 0.00809103716, -0.0254594609, 0.000202825147, -0.0203625467, 0.0147760287, 0.0111479294, -0.0135457385, 0.00305846217, 0.0109345121, -0.00385093177, -0.000468420185, 0.00185014203, -0.00539820921, 0.00857436471, -0.00319184805, -0.00143507624, 0.00169949431, -0.00700511783, 0.00905141607, 0.0162322894, 0.012553975, 0.00583759835, 0.0237897821, 0.00376933091, 0.00331424922, 0.0306316987, 0.0178768598, -0.000727345934, -0.00706788758, 0.000448804611, -3.0649353e-05, -0.00516596064, -0.0303555112, 0.024492804, -0.0178517513, -0.0121396938, -0.0117442431, -0.0103068128, -0.00947825052, 0.0102377664, 0.00123813574, -0.0170859601, -0.00537937833, 0.00709299557, 0.0378376804, 0.0257356483, 0.0002918799, -0.00101530273, -0.000673206872, -0.0158431157, -0.0145751648, -0.0284724142, -0.000931348, -0.0126418527, -0.0176132265, 0.00230522361, 0.00256571849, -0.0242166165, 0.000446843042, 0.0240032, -0.00167909416, 0.0104386304, -0.00619852496, -0.0147258127, -0.00957240537, -0.0174123626, -0.0024621482]
25 Jul, 2022
Find minimum shift for longest common prefix 25 Jul, 2022 Try it on GfG Practice You are given two strings str1 and str2 of the same length. In a single shift, you can rotate one string (str2) by 1 element such that its 1st element becomes the last and the second one becomes the first like “abcd” will change to “bcda” after the one-shift operation. You have to find the minimum shift operation required to get the common prefix of maximum length from str1 and str2. Examples: Input : str1[] = "geeks", str2 = "dgeek" Output : Shift = 1, Prefix = geek Input : str1[] = "practicegeeks", str2 = "coderpractice" Output : Shift = 5 Prefix = practice Recommended Practice Longest common prefix Try It! Naive Approach: Shift second string one by one and keep track of the length of the longest prefix for each shift, there is a total of n shifts and for each shift finding the length of the common prefix will take O(n) time. Hence, the overall time complexity for this approach is O(n^2). Better Approach: If we will add a second string at the end of itself that is str2 = str2 + str2 then there is no need of finding a prefix for each shift separately. Now, after adding str2 to itself we have to only find the longest prefix of str1 present in str2 and the starting position of that prefix in str2 will give us the actual number of shifts required. For finding the longest prefix we can use KMP pattern search algorithm. So, in this way, our time-complexity will reduce to O(n) only. Implementation C++ // CPP program to find longest common prefix // after rotation of second string. #include <bits/stdc++.h> using namespace std; // function for KMP search void KMP(int m, int n, string str2, string str1) { int pos = 0, len = 0; // preprocessing of longest proper prefix int p[m + 1]; int k = 0; p[1] = 0; for (int i = 2; i <= n; i++) { while (k > 0 && str1[k] != str1[i - 1]) k = p[k]; if (str1[k] == str1[i - 1]) ++k; p[i] = k; } // find out the longest prefix and position for (int j = 0, i = 0; i < m; i++) { while (j > 0 && str1[j] != str2[i]) j = p[j]; if (str1[j] == str2[i]) j++; // for new position with longer prefix in str2 // update pos and len if (j > len) { len = j; pos = i - j + 1; } } // print result cout << "Shift = " << pos << endl; cout << "Prefix = " << str1.substr(0, len); } // driver function int main() { string str1 = "geeksforgeeks"; string str2 = "forgeeksgeeks"; int n = str1.size(); str2 = str2 + str2; KMP(2 * n, n, str2, str1); return 0; } Java // Java program to find longest common prefix // after rotation of second string. class GFG { // function for KMP search static void KMP(int m, int n, String str2, String str1) { int pos = 0, len = 0; int []p = new int[m + 1]; int k = 0; //p[1] = 0; char []ch1 = str1.toCharArray(); char []ch2 = str2.toCharArray(); for (int i = 2; i <= n; i++) { while (k > 0 && ch1[k] != ch1[i - 1]) k = p[k]; if (ch1[k] == ch1[i - 1]) ++k; p[i] = k; } // find out the longest prefix and position for (int j = 0, i = 0; i < m; i++) { while (j > 0 && j < n && ch1[j] != ch2[i]) j = p[j]; if (j < n && ch1[j] == ch2[i]) j++; // for new position with longer prefix in str2 // update pos and len if (j > len) { len = j; pos = i - j + 1; } } // print result System.out.println("Shift = " + pos); System.out.println("Prefix = " + str1.substring(0,len)); } // Driver code public static void main(String[] args) { String str1 = "geeksforgeeks"; String str2 = "forgeeksgeeks"; int n = str1.length(); str2 = str2 + str2; KMP(2 * n, n, str2, str1); } } // This code is contributed by Ita_c. Python3 # Python3 program to find longest common prefix # after rotation of second string. # function for KMP search def KMP(m, n, str2, str1): pos = 0 Len = 0 # preprocessing of longest proper prefix p = [0 for i in range(m + 1)] k = 0 for i in range(2, n + 1): while (k > 0 and str1[k] != str1[i - 1]): k = p[k] if (str1[k] == str1[i - 1]): k += 1 p[i] = k # find out the longest prefix and position j = 0 for i in range(m): while (j > 0 and j < n and str1[j] != str2[i]): j = p[j] if (j < n and str1[j] == str2[i]): j += 1 # for new position with longer prefix # in str2 update pos and Len if (j > Len): Len = j pos = i - j + 1 # print result print("Shift = ", pos) print("Prefix = ", str1[:Len]) # Driver Code str1 = "geeksforgeeks" str2 = "forgeeksgeeks" n = len(str1) str2 = str2 + str2 KMP(2 * n, n, str2, str1) # This code is contributed by Mohit kumar 29 C# // C# program to find longest common prefix // after rotation of second string. using System; class GFG { // function for KMP search static void KMP(int m, int n, String str2, String str1) { int pos = 0, len = 0; int []p = new int[m + 1]; int k = 0; //p[1] = 0; char []ch1 = str1.ToCharArray(); char []ch2 = str2.ToCharArray(); for (int i = 2; i <= n; i++) { while (k > 0 && ch1[k] != ch1[i - 1]) k = p[k]; if (ch1[k] == ch1[i - 1]) ++k; p[i] = k; } // find out the longest prefix and position for (int j = 0, i = 0; i < m; i++) { while (j > 0 && j < n && ch1[j] != ch2[i]) j = p[j]; if (j < n && ch1[j] == ch2[i]) j++; // for new position with longer prefix in str2 // update pos and len if (j > len) { len = j; pos = i - j + 1; } } // print result Console.WriteLine("Shift = " + pos); Console.WriteLine("Prefix = " + str1.Substring(0,len)); } // Driver code public static void Main(String[] args) { String str1 = "geeksforgeeks"; String str2 = "forgeeksgeeks"; int n = str1.Length; str2 = str2 + str2; KMP(2 * n, n, str2, str1); } } /* This code contributed by PrinciRaj1992 */ Javascript <script> // Javascript program to find longest common prefix // after rotation of second string. // function for KMP search function KMP(m, n, str2, str1) { var pos = 0, len = 0; // preprocessing of longest proper prefix var p = Array(m+1).fill(0); var k = 0; p[1] = 0; for (var i = 2; i <= n; i++) { while (k > 0 && str1[k] != str1[i - 1]) k = p[k]; if (str1[k] == str1[i - 1]) ++k; p[i] = k; } // find out the longest prefix and position for (var j = 0, i = 0; i < m; i++) { while (j > 0 && str1[j] != str2[i]) j = p[j]; if (str1[j] == str2[i]) j++; // for new position with longer prefix in str2 // update pos and len if (j > len) { len = j; pos = i - j + 1; } } // print result document.write( "Shift = " + pos + "<br>"); document.write( "Prefix = " + str1.substr(0, len)); } // driver function var str1 = "geeksforgeeks"; var str2 = "forgeeksgeeks"; var n = str1.length; str2 = str2 + str2; KMP(2 * n, n, str2, str1); </script> Output: Shift = 8 Prefix = geeksforgeeks Master Data Structures and Algorithms at your own pace with our DSA Self-Paced course. In just 90 days, you’ll cover core concepts, solve real-world problems, and sharpen your problem-solving skills. Take the Three 90 Challenge: complete 90% of the course in 90 days and get a 90% refund. Stay motivated, track progress, and achieve DSA mastery. Start today!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix
https://www.geeksforgeeks.org/find-minimum-shift-longest-common-prefix?ref=asr10
PHP
Find minimum shift for longest common prefix
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[0.0142530901, -0.00363834947, -0.0125282425, 0.0381314419, 0.0159548372, 0.00761165796, 0.00890914351, 0.0325256884, -0.0448768288, 0.0162012428, -0.00527464412, -0.0120046278, 0.0391170681, -0.0327720977, -0.0173870753, 2.54317511e-05, 0.00542479847, 0.0291837975, -0.0183111, -0.0211447775, 0.00463167671, -0.0300462209, -0.0397638865, 0.00748845469, -0.00448922254, 0.0399486907, -0.00341504347, 0.0218531974, -0.0203901585, -0.0210061744, 0.0177258849, -5.74808691e-05, 0.00425051618, -0.0468172804, -0.0145610981, -0.0202977546, -0.029876817, 0.0374230221, -0.0623717047, -0.0285677817, -0.0296150092, 0.020944573, -0.0220688041, -0.0282751732, 0.00205980637, 0.0177104846, -0.00365760014, -0.00113866862, -0.0140836854, -0.0292299986, 0.0210215747, 0.00451617362, 0.0266581289, 0.0460780598, -0.000569815573, 0.00758855743, -0.00538629713, 0.0130287567, 0.0401335, 0.0249794833, 0.0267967321, -0.0225616172, -0.0313398577, -0.0362217911, 0.0309856478, -0.0100410748, -0.0522382297, 0.0157238301, 0.00559805287, -0.00181339961, -0.0682546645, 0.0252258908, 0.00711114425, -0.0328029, -0.00089948083, -0.0268737357, 0.0355441719, 0.00681083649, -0.0220996048, 0.0238860529, -0.00501668733, -0.00668763276, -0.00210215757, -0.0490965433, 0.0331417061, 0.0042158654, 0.015184815, -0.0564271435, 0.0353593677, 0.0348973535, -0.0211601779, 0.00395020796, 0.0067877355, -0.0036864758, -0.0626181141, 0.0475873, 0.0276283547, -0.0123049365, -0.043367587, 0.0351129621, -0.00303388294, 0.0316940658, -0.0146149993, 0.000274320017, 0.036129389, 0.0236396473, -0.00289720413, 0.0384086519, 0.0550103039, 0.0283367746, 0.0168018602, -0.0179722924, 0.0123742381, 0.0304158311, -0.0143993935, -0.0329877026, -0.022284409, -0.0344045423, 0.05340866, 0.00428901752, 0.0126976473, 0.0330185033, -0.0263347197, 0.0113039091, -0.0395790823, 0.00674923463, -0.00803902, 0.0323100835, 0.0262269173, 0.0188193154, 0.00176142319, -0.0186191089, -0.00681083649, 0.0101103764, 0.0316632651, 0.0434599891, -0.0151001131, 0.0557803251, -0.00685318746, 0.0232546367, -0.00203478057, -0.0167710595, 0.0201591514, 0.00704569276, 0.0247330759, 0.00121663325, 0.0144070936, 0.0444456153, 0.00976386666, -0.00954056066, -0.0368378088, -0.00435061892, -0.0251796879, -0.00651822845, 0.0203131549, -0.0226694196, 0.0115734162, -0.0254876968, -0.0092710536, -0.049435351, 0.0136447735, -0.0274897516, 0.015939435, -0.0302464273, -0.0172792729, 0.0272125434, 0.0131211588, -0.0179106891, -0.0156391282, 0.0515606105, -0.0112962089, 0.00995637197, 0.025410695, 0.0167094562, -0.0373922214, -0.0140759852, 0.0135369701, -0.0262731183, -0.0106031904, 0.0065644295, -0.0332341082, -0.0216375925, 0.00514759077, -0.0282289721, 0.0466016755, 0.00740760239, 0.00941735785, 0.00750385504, 0.00484343246, -0.039301876, 0.00888604298, 0.00286640343, 0.0320636779, 0.0168018602, 0.0139604816, 0.0111422045, -0.04795691, 0.0310472492, 0.0108572971, 0.0497433618, -0.00934035517, -0.0710267425, -0.0144070936, 0.0105107874, 0.0186961107, -0.0286909845, -0.0422279537, -0.0148460064, 0.0341273323, -0.00905544776, -0.0269353371, 0.0285985824, -0.0157084297, -0.00591376191, 0.0228542257, 0.015408121, -0.0296304096, 0.0281673707, -0.0470328853, -0.00276822574, -0.0166170541, -0.0107956957, 0.0273973495, -0.0178490877, -0.0414887331, -0.0366222, -0.0260113105, 0.0120893307, 0.014422494, -0.0314014591, -0.0188501161, 0.0377926342, -0.00392325735, -0.0118044233, 0.00839323, 0.00544789899, -0.0291375965, 0.0270123389, -0.0105800889, 0.02009755, 0.0412115268, -0.0207905695, 0.00199242937, -0.00492428476, 0.0285985824, 0.0260113105, 0.000715157075, 0.0206827652, 0.0110652028, 0.0342197344, 0.0162012428, 0.0112962089, 0.0145610981, 0.0331725068, -0.0155544253, -0.00991017092, -0.0303542297, 0.00684163719, 0.00554415165, 0.00172292208, 0.0253490936, -0.0295842085, -0.0236858483, 0.0581211895, 0.0357597768, 0.0186191089, 0.0259189084, -0.00509368908, -0.00273357471, -0.0234086402, 0.0403799042, -0.0396714844, 0.0135215698, -0.00528619438, 0.0152310161, -0.0322484821, -0.0330801047, -0.0133136641, 0.0499897674, 0.00815452263, 0.0235472433, 0.0106878923, 0.0264579244, -0.0230544303, -0.00581365917, -0.0190349203, -0.0172484722, 0.0194353312, -0.0336037204, -0.00516684121, 0.0103105819, 0.00118968252, 0.00383470487, 0.0242248625, 0.0165400524, 0.00228311238, 0.0299384184, -0.0111037036, -0.0415503345, 0.0234856419, -0.00850873254, -0.0184343047, -0.0148306061, -0.0112038068, -0.0196817387, -0.0012147082, -0.0148537066, -0.0100102741, -0.0395790823, -0.0148614068, 0.0394250788, -0.0601540469, -0.00331109064, 0.0125821438, -0.0155005241, 0.00992557127, 0.046262864, -0.00666453224, -0.0215297882, -0.0231006313, 0.0283521749, -0.0418275446, 0.0143916933, 0.0213295836, 0.0680082589, -0.0357289761, -0.00903234724, 0.023085231, -0.0568583533, -0.00073152, -0.0558727272, -0.0178490877, -0.0085934354, -0.00755005656, 0.00675308472, 0.00783111434, -0.0235934444, 0.0257341042, -0.0103798835, 0.0158932339, -0.00189713936, -0.00813912228, 0.0138295786, 0.0168172605, -0.00201553013, -0.0103182821, 0.00637577428, 0.00917865057, 0.011211507, -0.0241940618, 0.00148132804, 0.0222998094, 0.0347125493, -0.0195277333, 0.00595611287, -0.0358829796, -0.0328337, -0.0351437628, -0.000987552, 0.0422587544, 0.0187269114, -0.00392710743, -0.0136909746, 0.00411191257, 0.0141144861, -0.0313860588, -0.0170328654, -0.0147767039, -0.0168788619, -0.005917612, -0.0322792828, -0.00235048938, 0.0161396414, -0.0216221921, -0.0377002321, -0.00198857929, 0.0390862674, 0.00763475895, 0.020544162, -0.00595996296, -0.00968686491, 0.0461704619, 0.0211139768, -0.0224076137, -0.010895798, 0.0194661319, -0.0223306101, 0.0303388294, 0.00238899025, 0.028044166, -0.0639425516, 0.00603696518, -0.0415503345, 0.027289547, 0.00915555, -0.0299846195, -0.0401951, -0.000664143183, 0.0101488773, -0.0220688041, -0.00161511917, 0.0170790665, -0.0168326609, 0.00798511878, -0.0132520627, 0.00803902, -0.022238208, -0.00448922254, 0.01134241, 0.0372382179, 0.00210408261, 0.0348665528, -0.0374538228, -0.00404261053, 0.0300308205, 0.0136293732, -0.0358521789, 0.0335729197, -0.0146072991, -0.028536981, -0.0063064727, -0.0258881077, -0.00607546605, 0.0462936647, 0.00627182145, -0.015184815, 0.0201591514, 0.0537474714, 0.0294764061, -0.0248100776, -0.0233932398, 0.0106185907, 0.0112500079, 0.0292453989, -0.0314476602, -0.0590144135, 0.016031839, -0.0292145982, -0.0239938553, -0.00449692318, -0.0236858483, 0.0242864639, 0.0103490828, -0.0315400623, 0.00207328168, 0.0280595683, -0.0451540351, 0.0164168496, -0.000957713695, 0.013844979, -0.0458008535, 0.011565716, -0.0144455954, 0.00505133811, 0.0275051519, -0.0375154242, 0.00210215757, -0.0175718814, 0.042474363, -0.0205749627, 0.0340349302, -0.0202207528, 0.0299846195, -0.0308470428, 0.0447228216, 0.0342197344, 0.00713424524, -0.00448537245, -0.0314938612, 0.0119815273, 0.00374615239, -0.0326796919, 0.0389630646, 0.0220688041, 0.0483573228, -0.00756545691, 0.014068285, -0.0256109, -0.0367454067, -0.0137217753, 0.0314322598, 0.0148152048, 0.00192312757, -0.0334189124, -0.00699949125, -0.000423511578, -0.0123588378, 0.000537571, 0.00555185182, 0.0150616122, 0.00400025956, 0.0172946732, -0.00398100866, 0.0118121235, -0.00453542406, 0.011611918, -0.0757084712, -0.0200821497, -0.00553645147, -0.00863963645, 0.0184189044, -0.0267813317, -0.00179511157, 0.0518070161, 0.0265041254, -0.0207135659, -0.0293378029, 0.0301694255, 0.0281981714, -0.0208521709, -0.0205749627, 0.00406956114, -0.00945585873, 0.022423014, -0.037915837, 0.00816992298, -0.0278285611, 0.0257803053, -0.0010260531, -0.0371766165, 0.00100776507, 0.0218993984, 0.0113347098, 0.0028779537, -0.0142376898, 0.0198819432, 0.03215608, -0.0334805138, -0.000484872638, -0.0125128422, -0.032464087, 0.0171406679, 0.00133887411, 0.0142068882, 0.00888604298, -0.0505441837, 0.00122529606, 0.00215220894, -0.0226078182, 0.0187885147, -0.000541421061, -0.0121201314, -0.0291991979, -0.00118679495, -0.0188347157, 0.000409314322, -0.00894764438, -0.00255262, 0.00954056066, 0.0358521789, 0.00545174908, 0.0150770126, 0.00660293037, 0.0174640771, 0.00819302443, 0.0179260895, -0.00161415664, -0.00758470735, -0.0367146023, -0.0112346075, -0.00323601346, 0.0157007296, 0.000411961257, 0.0110575026, 0.0178952888, -0.00773486169, -0.00118968252, 0.0114579136, -0.0458932556, -0.00559420278, 0.0125898439, -0.000298623781, -0.000371053902, 0.0149538089, 0.0198049415, 0.0273973495, 0.0126437461, -0.00820072461, -0.0220534038, 0.0135985715, -0.00527849421, -0.00486653298, -0.0215759892, -0.0151925152, -0.000259882101, -0.00509753963, -0.0288757905, -0.01866531, -0.00980236847, -0.00178067375, 0.0206827652, 0.037915837, -0.0296920128, 0.0243172646, -0.0217453949, 0.016339846, 0.00268544839, -0.0155005241, -0.0213757847, 0.0128131509, 0.0106647918, 0.0321868807, 0.0184497051, -0.00207713176, 0.005782858, -0.0171406679, 0.0176796839, 0.0188809168, 0.0171714704, -0.0251334868, -0.0426283665, -0.00261807162, 0.0337269232, -0.0114579136, -0.00398100866, 0.00851643272, 0.00718814647, 0.0191273224, -0.0129594542, -0.0219456, 0.0107263932, -0.0114733139, 0.00321676303, 0.0206981655, 0.0208367705, 0.0521458276, 0.00698024081, 0.00689938851, -0.0280749686, -0.0395482816, 0.0212525818, -0.00714579551, -0.00825462583, -0.00380390394, -0.00462397654, 0.00419276487, -0.01536192, -0.0077117607, -0.0122895362, 0.00792351644, -0.014822905, 0.0161396414, -0.012189433, 0.085256733, -0.0108033959, -0.00894764438, 0.0079774186, 0.00168442109, 0.0265195258, -0.00970226526, 0.00719969673, -0.00102220301, 0.0241786614, 0.0256725028, -0.00467402767, -0.00776566239, 0.0258881077, -0.0330185033, 0.000678581069, 0.0186037086, 0.00854723342, -0.000687243766, 0.0104568861, 0.00523999333, 0.00637192419, -0.00214643381, -0.0374846235, 0.0310318489, 0.00954056066, 0.00988707, 0.00158528087, -0.0369610116, 0.00775411213, 0.0231622327, -0.0152387172, -0.0254876968, -0.0111961057, 0.0286139827, 0.0150077101, 0.00214835885, 0.00841633, 0.00120508298, 0.0324332863, -0.0180492941, 0.0087474389, -0.0086242361, 0.00917865057, 0.0108187962, -0.040503107, -0.0264271218, -0.00788501557, 0.0080082193, 0.00825462583, 0.0403799042, 0.0146689015, -0.00574050704, 0.0241478607, 0.0184497051, -0.00513604051, 0.000124647166, 0.00881674141, -0.00513604051, -0.00669533294, 0.00176334823, -0.0103259822, 0.0432751849, -0.000209108839, 0.0287217852, -0.024964083, -0.00221766066, 0.0175102782, 0.00682623684, -0.0255646985, 0.024964083, 0.00103086571, 0.00975616649, -0.0228388254, -0.00701874215, -0.0151155135, -0.00517454138, -0.0244096667, 0.0101873782, 0.0269199368, -0.02813657, -0.0449384302, 0.00823152531, 0.00286255335, -0.0205133613, -0.0426591672, -0.00993327145, 0.0320944786, -0.0157315303, 0.03072384, -0.00623717066, 0.00900154654, -0.0107417936, 0.0161396414, -0.0212063808, -0.00234278897, -0.00896304473, 0.0172176715, 0.00587911066, 0.0120816305, 0.0134984693, 0.0222536083, -0.00741915312, 0.0155698257, -0.00505133811, -0.00753080612, 0.0160010383, 0.00139277556, 0.0161704421, 0.0144378953, 0.00940965768, -0.0152849182, -0.0139219807, 0.0101334769, -0.0240246579, 0.0329261, -0.0139527814, 0.0107879946, 0.0151309138, 0.0232392363, 0.00459702592, 0.00866273697, 0.0182494987, -0.0229466278, 0.0114579136, 0.013844979, -0.0164014492, 0.0193583295, -0.00979466829, 0.0185729079, -0.0199897476, -0.0233470388, 0.00462397654, 0.0135138696, 0.00340156793, 0.00915555, 0.00486268289, 0.00246599247, 0.0191581231, 0.0131134586, 0.0155236246, 0.0435831919, 0.023578044, 0.0133213643, 0.0142068882, 0.0422587544, 0.0152233159, -0.0305544361, 0.0153927207, 0.0151309138, 0.0152387172, 0.00986397, 0.012728448, -0.0266119279, -0.0118583245, -0.0306930393, -0.050513383, 0.0245482717, -0.00847023167, -0.0146843018, 0.00490888441, 0.021791596, -0.0156006264, 0.00814682245, -0.0148845073, -0.0227002203, 0.0101719778, -0.0136293732, 0.00698024081, -0.00316093653, 0.0423511565, 0.0241016597, 0.0202823542, 0.022423014, 0.00697639072, -0.00984086934, 0.0218223967, -0.000338809274, 0.0151078133, 0.0158008318, -0.0133290645, 0.021791596, 0.0224846154, 0.000523614348, -0.0244250689, 0.0161242411, 0.00467017759, 0.0236242469, -0.00799281895, -0.019650938, 0.0342813358, 0.00728439912, 0.0182494987, 0.000321002532, 0.0123742381, 0.0115349153, 0.0310626496, 0.0151001131, -0.00547099952, -0.00566350482, -0.0177566856, 0.00114348123, 0.0118506243, -0.0311550517, 0.0198973436, 0.0138295786, -0.0100872759, 0.0321252793, 0.0114964144, 0.00863963645, 0.0107417936, -0.0237012487, 0.0342505351, -0.0292145982, -0.0328337, 0.0214527864, -0.0358829796, 0.0183111, 0.00817762408, -0.0279209632, -0.00784266461, 0.00532469572, -0.00113096845, -0.00731520029, -0.0317248665, -0.00410421239, -0.0210677758, 0.0099486718, -0.0153234191, -0.0136986747, 0.0294764061, 0.0148691069, 0.00399255939, 0.019958945, 0.0109651, 0.0107340934, -0.0177566856, 0.0130133554, 0.0103952847, -0.0507289879, -0.0168480612, -0.0139296809, 0.00510138972, 0.00208675698, -0.0270123389, 0.0307084396, -0.0236550476, -0.00544789899, 0.0127823493, -0.023978455, -0.0148537066, 0.0344045423, -0.0115041146, -0.0131827602, -0.0248254798, 0.0264733247, -0.00101257768, 0.0117505211, 0.0180646945, -0.0257495046, 0.0220380034, 0.0191889256, -0.0271817427, 0.0123049365, 0.0310780499, 0.0244712699, 0.0432751849, 0.032741297, 0.0358213782, -0.00577130774, -0.0149230082, -0.00225616177, 0.0203285553, -0.0368070081, -0.00512064, 0.0104876868, 0.013444568, 0.017371675, 0.0181878973, -0.00259112078, 0.0368378088, -0.0105261877, 0.0102104796, -0.031124251, -0.0229466278, -0.0063064727, -0.0166016538, -0.0147459032, 0.0291837975, -0.015939435, 0.000350359594, -0.0156237269, -0.0256571025, -0.0139912823, 0.00867043715, -0.0507905893, -0.0282443725, -0.00451232353, 0.0306468382, 0.0295226071, -0.0430287756, -0.00252374401, -0.00820842478, 0.00499358634, -0.00388860633, 0.0227464214, 0.00847023167, 0.00753080612, -0.0206211638, 0.00897844508, -0.0451232344, 0.0257649049, -0.0157084297, -0.0313552581, -0.0165092517, 0.00547869969, -0.0157315303, 0.007569307, 0.00729594938, -0.0395790823, 0.00289912918, 0.0103336824, -0.0239476543, 0.0103875836, -0.00285485317, -0.0166940559, -0.0081622228, 0.00966376439, 0.0086550368, 0.00863963645, -0.0102566807, -0.0113347098, 0.0238706525, -0.0628029183, -0.0427207686, -0.0249948837, 0.0100256745, -0.00574050704, 0.0179106891, 0.0180800948, 0.0121509321, 0.0309394468, -0.04795691, 0.000686762505, -0.000697350304, -0.00629492197, -0.00217723451, 0.01134241, 0.0270585399, -0.0119122257, -0.025364494, -0.000423752208, 0.00793891679, 0.00425051618, -0.0234856419, -0.00767326, -0.0389014632, -0.00358444802, -0.00432366831, 0.00553260138, -0.00999487378, 0.00807752088, 0.0155775258, 0.0281673707, 0.0163860489, -0.00242749136, 0.00636037393, -0.0250564851, 0.00780801335, 0.00525539368, -0.0128516518, -0.00302425772, 0.00149480335, -0.0379774384, -0.0047779805, 0.02670433, 0.0045854752, -0.00168730866, -0.0336961225, -0.00654132897, -0.014738203, 0.00175468554, 0.00745765399, -0.0206365641, 0.00448537245, -0.00116850692, 0.00334381638, -0.00686473772, -0.00798511878, -0.0155929262, 0.0118275238, 0.0289681926, -0.00354402186, 0.0250872858, -0.01536192, 0.00479338132, 0.00766170956, 0.0514990091, 0.0173408743, 0.00177104841, -0.0109805, -0.00135042449, -0.0377618335, 0.0158008318, 0.0292762015, 0.0040503107, -0.0323716849, 0.0242094621, 0.0177412853, -0.0141298864, 0.00668378267, -0.0192967281, -0.0117120203, -0.0175256785, -0.00422741566, 0.0062564211, -0.00356712262, -0.0044699721, -0.0141683873, -0.0223306101, -0.00619866932, 0.0148922075, 0.0179876927, -0.00237359, 0.0108418968, 0.00904004741, 0.0215913914, 0.00785421487, 0.0128747523, 0.00517454138, -0.0323100835, -0.00788501557, -0.00167575828, 0.023270037, -0.0123203369, 0.0194045305, -0.00316093653, -0.0164168496, -0.0128285512, 0.0136909746, -0.010002574, -0.0127746491, -0.00303773303, 0.00361717399, -0.0148075046, -0.00614861818, -0.0212063808, 0.00301270746, 0.00111749303, -0.0280133653, -0.00815452263, 0.0228080247, 0.024070859, 0.0312012527, 0.0866119713, -0.019111922, -0.0207289662, -0.0452772379, 0.0112885088, 0.00573665695, -0.00591376191, 0.0161704421, 0.00315901148, 0.0109111983, 0.0185113065, -0.0280287657, 0.0446304195, 0.0226232186, -0.0225154161, 0.00792351644, 0.00701874215, 0.00334381638, 0.00290490454, -0.0151078133, -0.00883984193, -0.00190580217, 0.0119353263, -0.0191735253, -0.00555570191, -0.00453927414, 0.00357867288, -0.00349974562, -0.0375154242, 0.0132828634, 0.0162628442, -0.0142376898, 0.0143223917, 0.00739605213, -0.0142684905, 0.020544162, -3.40192892e-05, -0.00712654507, -0.019650938, 0.0243326649, 0.00120797055, 0.021837797, -0.0165554527, 0.0319404751, -0.00370957656, -0.00879364088, -0.0136062717, 0.00453927414, 0.0145918988, 0.00236011459, 0.00233316375, -0.00607161596, -0.0261191148, -0.0157546308, -0.0166016538, 0.0183111, -0.0086858375, -0.0154774236, 0.00811602175, -0.0123742381, -0.00468172785, -0.0196201373, 0.00712269498, 0.0126052443, 0.0156006264, 0.00867043715, -0.0220380034, -0.000864829926, 0.000764727185, -0.00158816844, -0.0115580158, 0.01536192, 0.0166170541, -0.00149961596, -0.0144147938, 0.0147228027, -0.00626027118, -0.0204055589, 0.0115965167, -0.023223836, -0.00637192419, 0.0117120203, 0.013844979, 0.0133752655, 0.00630262215, 0.00717274612, 0.00266234786, -0.0313706584, -0.00843943097, -0.0103490828, -0.000834029051, -0.0307392403, -0.0208367705, -0.00197317894, 0.0171098672, -0.0144840963, -0.00399640948, 0.0128747523, -0.0103721833, -0.0355441719, -0.0185113065, 0.00147555291, 0.0147074023, 0.00437756954, 0.00858573522, -0.00731134973, 0.0314630605, -0.00320136244, -0.0173562746, 0.00793891679, 0.023716649, 0.0181724969, -0.00232546357, 0.0197587404, 0.0149076078, 0.0149846096, 0.00957136136, -0.0245944727, 0.000889855612, 0.030770041, -0.0126976473, -0.0162166432, 0.0110498024, -0.0395790823, -0.0103259822, -0.0360061862, 0.0092402529, 0.00387898111, 0.0299230181, -0.00860113557, -0.0189425182, 0.0312166531, 0.00569045544, -0.00723434798, -0.0149230082, 0.00646817684, -0.00286640343, 0.0109034982, 0.0168942623, 0.0204825606, 0.00237359, 0.0120200291, -0.0172484722, -0.00584831, -0.00917865057, -0.0119430264, -0.00643352605, 0.032741297, 0.0159548372, 0.0219918, -0.00414656335, -0.0170328654, 0.0154851237, 0.0099178711, 0.0223460104, -0.0105107874, 0.00381352939, 0.00993327145, 0.00122818362, 0.00699179107, 0.000503882533, 0.0138372788, 0.0174332764, 0.0153234191, -0.0212679822, 0.00658753, 0.00697254064, -0.00428901752, -0.0081622228, -0.0182340983, 0.00257379538, -0.0104876868, 0.00142068882, -0.0059792134, 0.0144070936, 0.00539014721, 0.0283367746, 0.0296458099, 0.00878594071, 0.00804672, 0.00106262905, 0.00326488935, 0.00967146456, 0.0105415881, -0.0220842045, 0.0151309138, -0.00641042553, -0.0118891252, 0.0193429291, -0.00556725217, -0.00205018115, 0.0263963211, -0.00853183307, -0.00234856433, -0.00624102075, 0.0064797271, 0.00492428476, -0.0076193586, -0.00974846631, -0.0300308205, -0.00860113557, -0.0262269173, -0.0178798884, -0.000902849715, -0.0122972364, -0.0145918988, -0.030277228, 0.000370813272, 0.0101411771, -0.00140432594, 0.0193737298, -0.00329569, -0.00764245912, -0.00328413979, -0.0159240346, 0.00775026204, 0.0284291767, 0.00223306101, -0.00243519153, -0.00787731539, 0.0038828312, 0.0291067958, 0.00134272419, -0.0171406679, -0.000961082522, -0.0374230221, 0.0106647918, 0.0184343047, 0.00834702794, 0.010941999, -0.0292145982, 0.027289547, 0.0283521749, -0.00957136136, -0.00822382513, -0.00635652384, 0.0295534078, -0.0327720977, -0.0389938653, 0.0399486907, 0.00416581379, 0.0296304096, -0.00485498272, 0.00251796888, 0.00883984193, 1.33099347e-05, 0.00890144333, -0.000679543591, -0.0176334828, 0.0209291726, -0.0123434374, -0.00581750926, 0.014692002, -0.000901405874, 0.0112808086, 0.0321252793, 0.00225616177, 0.0118044233, 0.0126745468, -0.00917865057, 0.025364494, -0.00508983899, 0.00867043715, 0.00668378267, 0.0292916019, 0.00152079156, -0.00968686491, -0.00996407215, -0.00534779625, -1.26181185e-05, -0.0130672576, 0.0103721833, -0.0041619637, 0.00292800507, 0.00390400668, -0.0257649049, -0.00633342331, 0.0172022711, -0.00875513908, -0.0122587355, -0.00675308472, 0.0229312275, 0.0443224125, -0.0128978528, 0.00781571399, 0.00707264338, -0.00529389456, 0.00654902915, -0.00703799259, -0.0062872218, 0.0139450813, -0.0011935326, 0.0116889197, -0.0127438484, -0.00745765399, 0.0310780499, -0.0156391282, 0.0176488832, -0.0147921043, 0.0492505468, -0.0225770175, 0.00613706792, -0.00984856952, 0.0238244515, 0.0105107874, -0.0138064772, 0.000400651596, -0.0281211697, 0.0336961225, 0.00762705877, -0.00679928577, -0.0294918064, -0.0171406679, 0.00320328772, -0.00702259224, -0.0135523705, 0.0345585458, -0.013575471, -0.00220226031, -0.00247561769, -0.000198039794, 0.00183938781, -0.0329877026, 0.00457777502, -0.0163860489, -0.00924795307, -0.023716649, -0.00608701631, 0.00269507361, -0.00876283925, -0.00989477057, -0.0113963112, -0.000938944402, 0.0152926184, -0.00530544529, 0.00798511878, -0.00470482884, 0.0115965167, 0.0170944668, 0.00185093808, -0.034158133, -0.000390785688, -0.0116196182, 0.0277977604, 0.00713424524, -0.0201745518, -0.0106185907, 0.0344969444, 0.00155736762, 0.0304158311, -0.0054132482, -0.031570863, 0.00209253212, 0.00337461731, 0.0175564811, 0.0196047369, 0.00626027118, 0.00883984193, 0.0110575026, 0.0110806031, -0.0303080287, -0.00162955711, 0.0164322499, -0.0026392471, -0.00516299112, -0.0147459032, -0.00363449939, -0.0115965167, 0.0270277392, 0.0176488832, 0.0070649432, 0.000203454008, -0.00205788133, -0.0305236354, -0.00025146, -0.000246888, -0.0292453989, -0.00264502224, 0.0195431337, -0.0238090511, -0.0342197344, -0.0176950842, -0.0151617145, 0.00378657854, -0.0063064727, -0.000406426727, -0.0323408842, -0.00718044629, 0.0379466377, 0.000692056434, -0.0146612013, 0.0176642835, 0.0306314379, 0.0127977496, 0.00310703507, 0.022823425, -0.0250718854, -0.0134753687, 0.0216683932, -0.0247330759, 0.0118968254, 0.00210408261, 0.00765785947, 0.00375192752, 0.012728448, 0.011211507, -0.0388398618, -0.0206057634, 0.0490965433, -0.00108476717, 0.0156006264, -0.0176950842, -0.0150693124, -0.026257718, 0.0100333747, 0.0199435446, 0.0258727074, 0.0127207479, 0.00732290046, 0.0246252734, -0.00255262, -0.0157238301, -0.0123280371, 0.00151116634, 0.0170482658, -0.00214835885, 0.0151617145, 0.00050243875, -0.0176334828, -0.00623332057, -0.011519515, -0.0139296809, -0.0186037086, -0.0064797271, 0.0355133712, -0.0113578103, 0.0198357422, 0.00184708799, -0.0127669489, -0.0136909746, -0.000173375054, 0.00560190342, -0.0126591465, -0.0238860529, 0.0188193154, -0.00257957052, 0.0154620232, -0.00246406742, -0.000294533063, -0.00280287676, 0.0131673599, 0.0104260854, -0.0142838908, -0.00289527909, 0.00331494072, 0.00192601513, -0.0099178711, 0.0050859889, 0.0198357422, -0.0212679822, 0.00309163448, -0.00444302149, -0.0107956957, -0.00663758162, 0.00657983, 0.0194507316, 0.0139296809, 0.00492813485, 0.00274127489, -0.00262769684, 0.026257718, -0.00369995111, -0.0213757847, -0.00991017092, 0.0195277333, -0.00993327145, -0.00289912918, 0.00370187615, -0.00468172785, 0.0223922115, -0.0140605848, 0.0062872218, 0.00126860966, 0.00671073375, -0.00509368908, 0.027104741, -0.00840093, -0.00549025, 0.00473177945, 0.027243346, -0.00339194271, 0.012905553, -0.00728824921, -0.00219841022, 0.00285677821, -0.00779646309, 0.0130980583, -0.000479578739, 0.0162320435, 0.00886294246, 0.0203131549, 0.00215220894, 0.00354017178, -0.00707264338, 0.00467402767, -0.0108341966, 0.0241632611, 0.0314476602, 0.0251026861, 0.0110344021, 0.0116504189, 1.32648156e-05, -0.0203747563, 0.0125128422, 0.00138411287, 0.00316478661, 0.00129267282, -0.0160472393, -0.0121971332, 0.00160549395, 0.023270037, 0.014199188, -0.000726707396, 0.000641523802, 0.00856263377, 0.0247638766, 0.0143531924, 0.0286755841, 0.00360177341, -0.0121432319, -0.0198203418, 0.00553645147, -0.00631032279, -0.0143608926, 0.00272009941, 0.00678388542, 0.00833162758, 0.00888604298, 0.0273049474, -0.0199127439, -0.00498588616, 0.0171406679, -0.0367146023, 0.0119584268, -0.000242075374, -0.0100564752, -0.00567505509, -0.0101488773, -0.00237166486, -0.0146072991, 0.0203901585, -0.00474718, 0.0168634616, 0.005671205, -0.00551720103, -0.00702259224, 0.00650667772, -0.0146997022, 0.00396560831, 0.00833162758, 0.0181108955, 0.00883214176, 0.0129671544, 0.0104260854, 0.0017238846, -0.00898614619, 0.00445842184, -0.000252422527, -0.0101873782, -0.0227464214, -0.00358444802, 0.0277515594, 0.0216991939, 0.0324948877, -0.0072304979, 0.00244866707, -0.0180646945, 0.0201591514, 0.0111499047, 0.00267004804, -0.00724204816, -0.00446227193, -0.00291452976, -0.0245482717, -0.00280865189, 0.00140625099, 0.02670433, 0.0250410847, -0.0237474497, 0.00177778606, -0.00902464706, -0.0114425132, -0.035051357, -0.0122202346, -0.024378866, -0.00483958237, -0.0283367746, -0.000636711135, -0.00908624846, 0.0139681818, -0.00994097162, -0.00585216, 0.0233778395, -0.000627085916, -0.0257957056, -0.0432751849, 0.0233162381, -0.00726514868, -0.0357597768, -0.0129209533, 0.00454312423, -0.00453542406, -0.00620637, 0.0141298864, 0.00380775402, -0.0093634557, -0.0110036014, 0.0233778395, -0.0173408743, -0.0044699721, 0.00376347802, -0.00785806496, -0.0118506243, -0.0325256884, 0.0331417061, 0.00602156483, 0.0140990857, -0.0101719778, -0.00967916474, 0.00100391498, 0.0115349153, 0.0187885147, 0.00297228131, 0.00199820474, -0.00593301235, 0.0136447735, -0.023670448, -0.00660293037, -0.00789271574, 0.0142068882, 0.0121740326, 0.0237628501, 0.00877824053, -0.00533624599, -0.00262192171, 0.00699564116, 0.0041003623, -0.0125821438, 0.00176816084, -0.00657212967, 0.0154466229, 0.0025275941, -0.000408833061, 0.000230164107, 0.0132828634, -0.0112192072, 0.0024544422, 0.0213295836, -0.0113963112, -0.0227926224, 0.0187269114, 0.000893705699, -0.00432366831, 0.0329569019, 0.00504748803, -0.0150385117, 0.0132520627, 0.00753080612, -0.00143608928, 0.00304735824, 0.0116427187, -0.0137371756, 0.00152175408, -0.00484343246, 0.00523614325, 0.01205853, 0.0289219916, -0.00613706792, 0.00100102741, 0.0194353312, -0.0257033035, -0.00113866862, 0.00987167, -0.00629877206, -0.00560190342, -0.0284137763, -0.00572510669, -0.0134599684, 0.014961509, -0.000859536, 0.00787731539, 0.0062564211, -0.000440115167, -0.00297228131, 0.00225231168, -0.0044391714, -0.0169404633, 0.00897074491, 0.0105492882, -0.0180184934, 0.0325256884, 0.00300500728, -0.0296920128, 0.00813912228, -0.00573280687, -0.0194199309, -0.00766555965, 0.00239476538, -0.0141760875, 0.0122895362, -0.00686088763, 0.000389582536, 0.0222690087, -0.00617941888, -0.0138372788, -0.0232392363, -0.0047779805, -0.0050551882, 0.0085934354, 0.00835472811, -0.0204209592, -0.0191889256, 0.0120739304, 0.00305505865, -0.00636037393, -0.0032668144, -0.0101257768, -0.0390862674, -0.0122664357, -0.0157546308, -0.0063064727, 0.0418275446, 0.0169096626, -0.0114502134, -1.81376054e-05, 0.011211507, -0.00157084293, 0.0110421022, 0.0020829069, 0.00731134973, 0.0164168496, -0.000312339806, -0.00604081526, 0.0146381008, -0.0212063808, -0.00310703507, 0.0256263018, -0.00964836404, -0.000633823569, 0.0311396513, -0.0146149993, 0.00184997555, -0.0100256745, 0.00748845469, -0.0019674038, 0.0133829657, 0.011211507, 0.00681468658, 0.00177393598, 0.00682238676, -0.0013687124, 0.00533624599, -0.0180800948, 0.0205903631, 0.0057212566, -0.0303542297, -0.0195739362, 0.00593686244, 0.00571740652, 0.00326873944, -0.000986589468, -0.00560190342, 0.0392402746, -0.00162378186, -0.00303773303, 0.00620637, 0.00730364956, -0.0369610116, 0.0125359427, 0.0161242411, 0.00644507632, -0.00915555, -0.0121663325, 0.023270037, -0.00970226526, 0.00698024081, 0.00662218127, 0.010449186, 0.0257033035, -0.000764727185, -0.00428901752, 0.0329261, -0.00332841603, -0.00931725465, 0.000436265051, -0.0072612986, 0.00347087, 0.00467402767, 0.015184815, -0.00123877137, -0.0167248566, -0.00923255272, -0.00524384342, -0.0116273183, 0.00420816522, -0.0159856379, 0.0104722865, -0.00367300049, 0.00938655715, -0.00539014721, -0.0137140751, -0.00177778606, 0.000279132626, -0.00962526351, -0.00333804125, 0.00268929848, 0.00534009608, 0.0178336874, 0.0111730052, -0.0210061744, -0.00940965768, 0.00052987074, -0.0144378953, 0.00696484046, -0.00657983, -0.00524384342, -0.00973306596, -0.00542094838, 0.0139219807, 0.0143069914, -0.00464322697, -0.00806212053, -0.0310472492, -0.0107417936, -0.0287987869, 0.000161584103, 0.00893224403, 0.0180338938, 0.0105877891, 0.0133059639, 0.0173870753, 0.00403106026, 0.000304398942, -0.00873973873, 0.0133059639, -0.00789271574, 0.0157161299, 0.00557880243, -0.0172330718, -0.0124050388, 0.0161858425, 0.00555185182, -0.0028606283, -0.00185960089, 0.0311396513, -0.0204363596, -0.00228311238, -0.0142992912, -0.0204055589, 0.00323023833, -0.0144763961, -0.0188963171, 0.00942505803, 0.0295688082, 0.000509176403, 0.0200821497, -0.00910934899, 0.0093634557, -0.0149230082, 0.00669918302, 0.00225808681, -0.00842403062, -0.0136139719, -0.00182302482, 0.0216837935, 0.0146535011, -0.00793891679, -0.01536192, -0.0185575075, -0.0070957439, 0.0202977546, 0.00729594938, 0.0133906659, -0.00958676264, -0.0280287657, 0.0117043201, -0.00567890517, 0.0114887143, 0.0113193095, 0.00996407215, 0.00577900792, 0.03991789, 0.0112423077, 0.0100795757, 0.00968686491, 0.00120700803, -0.0113270096, 0.00277592591, -0.0183419, 0.0193891302, -0.00685703754, 0.00692633959, 0.0031686367, 0.0044391714, -0.00160549395, 0.00498203607, 0.00393288257, 0.0016978964, 0.0142992912, 0.0229928289, -0.002009755, 0.0135908714, -0.0105492882, 0.00552490121, -0.01866531, -0.00587526057, -0.00465477724, 0.00258919573, -0.00692633959, -0.0211293772, 0.00200205483, 0.00711499481, 0.00431211805, -0.0298152156, 0.00753080612, -0.0167556591, 0.00537474686, 0.012951754, 0.0187577121, 0.016031839, -0.00205980637, 0.00265657273, 0.0180646945, -0.0107956957, 0.00266812299, 0.00623332057, -0.00164880755, 0.00513219042, 0.0132905636, -0.0186807103, -0.0348973535, 0.0146149993, 0.000644892629, 0.0334189124, 0.000230525053, -0.0212525818, 0.0172022711, -0.0101719778, -0.0263193194, 0.00701489206, 0.0282135718, -0.0184805058, 0.00828542653, -0.0230390299, -0.00213488331, -0.011211507, 0.0208059698, -0.0151925152, -0.00185863837, 0.0198511425, 0.016031839, 0.00469327858, 0.00718429638, 0.00737680169, 0.0125898439, -0.00235433946, -0.00465477724, 0.00301655754, -0.00679928577, 0.000391026319, -0.00917865057, -0.0102951815, 0.00358252297, -0.0149307083, 0.0132751632, -0.0177412853, -0.0201437511, -0.00176912337, 0.00385395531, -0.00563270412, 0.00747305434, 0.00318981218, -0.0221920069, 0.00299923192, 0.00493583502, 0.0139527814, -0.0121432319, 0.00552490121, 0.00130037311, -0.0170790665, 0.00137545017, -0.013844979, 0.00928645395, -0.00562115386, -0.0168942623, -0.00129267282, 0.0243172646, 0.00192505261, 0.023131432, -0.00435446901, 0.0170020647, 0.00488963351, 0.0162782446, 0.0143608926, 0.03187887, 0.00105974148, -0.007792613, 0.0162936449, -0.0109959, -0.0212525818, 0.0219918, -0.00534394616, 0.0168326609, -0.00917865057, 0.0148537066, -0.0067569348, 0.00508983899, 0.00897844508, 0.0225154161, 0.00197029137, -0.0128593519, 0.00720354682, 0.0155313248, 0.00611396739, -0.00489348406, 0.00204248074, 0.00743455347, -0.0388398618, -0.00957906153, -0.0027432, -0.00508983899, -0.0026257718, -0.00483573228, -0.0254414957, 0.0124204401, 0.0100795757, 0.00502053741, -0.000884561683, 0.000820553687, 0.0148383062, 0.00785036478, 0.014961509, -0.028090369, 0.00108091708, 0.00133983663, 0.00546329934, 0.00692633959, -0.0118506243, 0.0119045256, 0.00781956408, -0.00208098185, -0.0172176715, 0.00354594691, -0.00493968511, 0.0124358404, 0.00614476809, 0.0155082243, -0.00226771203, 0.0122433351, -0.0132135609, 0.00457777502, -0.00234856433, -0.0202361532, 0.00477028033, 0.0121740326, -0.0138064772, 0.00333034107, 0.0165708531, -0.0402567, 0.0152079156, 0.0141683873, -0.00870123785, 0.00520534255, 0.0133059639, -0.0100641754, -0.0101103764, -0.013844979, -0.0169096626, 0.0216221921, -0.00634882366, 0.00226386194, 0.00928645395, 0.00679928577, -0.00542479847, -0.0128901526, 0.0122125344, 0.0101565775, -0.0129209533, 0.0401951, -0.00733060064, -0.00806212053, -0.000587622344, -0.0148922075, -0.0176334828, -0.0229312275, 0.00863963645, 0.0129594542, 0.0310164485, 0.0228850264, -0.00516684121, 0.00659908028, -0.00974846631, 0.00597536331, 0.0165400524, -0.0119507266, -0.0340965316, -0.00570970634, -0.0103798835, 0.00587911066, 0.0186961107, 0.0140605848, -0.00691093924, -0.00959446281, -0.00104049093, 0.00155062985, 0.00669148285, 0.0172022711, -0.0010395284, -0.0121509321, -0.00279517635, 0.00889374316, 0.000313542958, 0.0225924179, 0.00710344408, -0.00358059793, -0.0240554586, -0.023578044, 0.00199435465, -0.0177566856, 0.0150385117, 0.0149230082, -0.0171098672, 0.00576745765, -0.00116561935, -0.000110209265, -0.00550950086, 0.0113655105, -0.0191273224, 0.000665586966, -0.0100718755, 0.0199897476, -0.00998717267, 0.0109959, -0.000199363261, 0.019958945, -0.027551353, 0.00383085478, 0.0209753737, -0.00162666943, -0.0173870753, -0.018803915, 0.0444456153, -0.00231391331, -0.0203439556, 0.0143300919, 0.00659523, -0.0265195258, -0.0291221961, 0.00932495482, 0.00720354682, 0.00607546605, 0.00886294246, -0.0117197204, -0.00243904162, 0.00617171871, -0.000791196653, 0.0225770175, 0.00283175241, 0.00423126575, -1.59568808e-05, -0.013621673, 0.0179260895, 0.032464087, 0.0182803, -0.00269507361, -0.00685318746, 0.00280672684, 0.0171098672, -0.00673768437, 0.000101546524, -0.0131134586, 0.00507828873, -0.00346894492, -0.00411961274, 0.0145918988, -0.00303195789, -0.00104626606, 0.000106118525, -0.0203439556, -0.0157469306, 0.016925063, -0.015762331, -0.00642197579, 0.0300616212, -0.0156930294, -0.00256609521, 0.000434099376, -0.00673383428, 0.00109246734, -0.0264733247, 0.000311136624, -0.00139085052, -0.00681853667, 0.0179568902, 0.0120816305, 0.0237936508, -0.0214373861, 0.0170020647, -5.99473424e-05, -0.0268583354, -0.0104260854, -0.007569307, -0.0111807054, 0.0316940658, -0.00441222079, -0.00539014721, 0.0171560701, -0.00327258953, 0.0137294754, -0.0241940618, -0.0093018543, -0.0115041146, 0.00731134973, -0.0273973495, 0.00571355643, -0.021344984, -0.0261345152, -0.0231160317, -0.0184651054, 0.0283213742, 0.0119969277, 0.00873203855, -0.00772716152, -0.0297690146, -0.0213757847, -0.000723819772, 0.00497048581, 0.0195277333, 0.010449186, -0.0193891302, -0.0146226995, 0.00660293037, -0.00786961522, 0.00164303242, -0.0003429, 0.00475488, 0.00623717066, -0.00622177031, 0.0112808086, -6.50908405e-05, 0.00987167, -0.00604466535, 0.0066760825, 0.00790811609, 0.0102951815, -0.00224846159, -0.00429286761, 0.0137140751, -0.0054440489, 0.00565580465, -0.0128362514, -0.00615246827, 0.00800051913, -0.0196201373, 0.00493583502, -0.0035574974, -0.00670303311, -0.0121278316, 0.00132636132, 0.010048775, 0.00343621895, -0.0127669489, 0.00994097162, 0.0013253988, 0.00632957323, -0.00190291449, -0.012505142, -0.00310318498, 0.0145071968, 0.00559805287, -0.00675308472, -0.00521689281, 0.00716504594, -0.00480493158, 0.0190195199, 0.00496278564, 0.0126437461, -0.0181570966, 0.0231006313, -0.0149846096, 0.0080082193, 0.0126976473, 0.00268929848, 0.0114117125, 0.0247022752, -0.00253721932, 0.027289547, 0.00228503742, -0.0122510353, 0.0248562805, -0.031124251, -0.023223836, 0.00488193333, 0.0227002203, -0.00414656335, -0.00587911066, 0.0110806031, -0.00477028033, -0.0154851237, -0.00147362775, 0.0154158212, -0.00328798988, 0.00482418202, 0.0156853292, -0.0236858483, -0.0128978528, -0.00949436, 0.036653, -0.00756160682, -0.000166396741, -0.00708804373, -0.0079697175, 0.0027932513, 0.00334189134, 0.0200821497, -0.00823922548, 0.0122741358, -0.00308008422, 0.00158335583, -0.0171406679, -0.00889374316, -0.0067569348, -0.00441222079, -0.00967146456, 0.0104876868, -0.00391555717, 0.0105261877, -0.0223460104, 0.0308624431, 0.0181570966, 0.00914015, -0.00382507965, 0.00352669647, -0.00931725465, -0.0141221862, -0.000127414416, 0.0152156157, 0.0117813218, 0.0174024757, 0.0380082391, -0.00348819536, -0.0218531974, 0.00851643272, -0.00212718314, -0.0184805058, 0.0162320435, -0.00623332057, 0.0166170541, 0.00137352501, -0.0238552522, -0.0306006372, 0.0137217753, 0.00417736406, 0.00333996629, -0.0265195258, -0.0319096744, 0.0146304006, 0.026257718, 0.0133598652, 0.0140836854, 0.0302464273, -0.0109728, -0.0134830689, 9.64932624e-05, 0.00435061892, 0.0208367705, -0.00972536579, -0.00446227193, -0.0151463142, -0.000603504, -0.00551720103, -0.0102412803, 0.0216837935, -0.0105800889, -0.0038963065, 0.00587911066, 0.00185960089, -0.00222151075, 0.00437371945, 0.00390015659, -0.00715349568, -0.0695483, -0.00431211805, 0.01536192, 0.0202823542, 0.0256725028, -0.0162012428, 0.00132828637, -0.00654902915, -0.00215605902, 0.0266273282, 0.00211948296, -0.0261499155, -0.00546714943, 0.00757700717, 0.0073729516, 0.00956366118, 0.0154004209, 0.00649897754, 0.0299538188, -0.00641427562, 0.0222074073, -0.00988707, -0.00315323635, 0.00881674141, 0.00545944925, -0.00980236847, 0.00572895678, -0.00634497358, -0.00961756334, -0.00979466829, -0.0148537066, 0.0205903631, 0.0182032976, -0.023531843, 0.00329184, 0.00542094838, -0.00144763954, -0.0172792729, -0.00249486812, -0.000421345903, 0.00547099952, -0.00757315708, 0.00410421239, -0.00976386666, 0.0174948778, 0.0105646886, 0.00584831, 0.0131519595, 0.00404646061, 0.00540554803, -0.0117351208, 0.0306160375, -0.0252104886, 0.0106108906, -0.00464322697, 0.00595611287, 0.00820072461, -0.0168326609, 0.0265811272, 0.0129594542, -0.0150308106, -0.0281057693, 0.0137448758, -0.00520149246, 0.00370572624, 0.0286293831, 0.000782533898, 0.027150942, 0.0020405557, -0.00173447246, 0.00848563202, 0.0092094522, -0.00370380119, 0.0179106891, -0.00972536579, -0.0228388254, 0.00695329, -0.00605621561, -1.40017501e-05, 0.0132289622, -0.0045546745, -0.00557495235, 0.00716889603, -0.00747305434, 0.0160626397, 0.00259112078, -0.0141067859, 0.015762331, -0.0139373811, 0.00526694395, 0.0028606283, -0.0191581231, 0.00333611621, 0.0266581289, -0.0155544253, 0.00945585873, -0.0124512408, -0.023223836, -0.00330146519, -0.00632957323, 0.0208367705, -0.00175179786, 0.0119815273, 0.0125359427, 0.0161088407, -0.00364219956, -0.0155544253, 0.00703799259, 0.00724589825, 0.0133752655, 0.016478451, -0.012012329, 0.00574820722, -0.00975616649, 0.0246714745, 0.0199897476, 0.00897844508, 0.00515914103, -0.00913244952, 0.00766940974, 0.00192409009, -0.0267659314, 0.00843173079, 0.00325141381, 0.0100564752, -0.00403876044, 0.00388090615, -0.015939435, -0.0231622327, 0.0102797812, 0.00823922548, 0.0280595683, 0.016478451, -0.0225462168, 0.00781571399, -0.00672998419, -0.00236588973, 0.00761165796, -0.0256725028, -0.0248716809, -0.00336884218, -0.0230698306, 0.00592531217, -0.00652592862, -0.0208983719, -0.0175564811, 0.00646047667, -0.00510138972, -0.017371675, -0.0129748546, -0.018403504, 0.0131057585, -0.00853183307, 0.00244866707, -0.0231468324, -0.0103952847, -0.00401181, -0.00249871844, 0.0105877891, -0.0074230032, -0.0176796839, 0.00770406052, 0.00302810781, 0.00228888751, -0.000913437456, 0.00947895925, 0.00660293037, -0.0320944786, -0.011211507, -0.023578044, 0.000241714428, 0.0127669489, -0.00884754211, 0.0237936508, 0.000307767797, -0.00465092715, -0.00953286048, -0.0150539121, 0.002009755, -0.00662603136, 0.0203439556, 0.0174948778, -0.0150077101, 0.0067877355, 0.00473177945, -0.0210369751, 0.00207713176, 0.00702644233, -0.00186633854, -0.00299730687, 0.0195893366, 0.00809292123, -0.00335729192, 0.0139527814, -0.000315468, -0.0102643808, -0.00179414905, 0.0063064727, -0.013752576, -0.0015775807, 0.00412731292, 0.00422356557, -0.00125128427, 0.000245203584, -0.00108476717, 0.0115041146, -0.0137371756, 0.0140528847, 0.0216375925, -0.0166324545, -0.00498203607, 0.0252258908, 0.00489733415, -0.0172946732, -0.0107109929, 0.00494738529, -0.00262384675, 0.00890144333, 0.00283367746, 0.00141298864, 0.034435343, -0.0210677758, 0.0408111177, 0.000309452211, 0.0155313248, -0.00140432594, 0.00375192752, 0.011789022, -0.00645662658, -0.00160741899, -0.0105569884, -0.0134368679, 0.000832585269, -0.0150539121, -0.000410276843, 0.00261999667, -0.0230082292, 0.0295380075, -0.0147998044, 0.0014880657, 0.0265349261, 0.00922485255, -0.0337577239, 0.00732675055, -0.0189117175, -0.00123973389, 0.00778876292, -0.00793121662, -0.0178028867, -0.0121586323, -0.00544789899, 0.0170174651, -0.00166709558, 0.0115965167, 0.0250718854, -0.00161126908, -0.0107417936, -0.000483188225, 0.00938655715, 0.0243634656, -0.014422494, 0.0016208943, 0.0233470388, 0.00464322697, -0.00688013807, -0.0149461087, 0.00516299112, -0.0189425182, 0.0174486768, 0.0016892337, 0.00408496149, -0.0243480653, -0.0205287617, -0.0107109929, -0.0152849182, -0.0255646985, -0.0067068832, 0.0115118148, -0.0160626397, -0.00225808681, -0.00437756954, -0.0249486826, -0.0018557508, 0.00546329934, -0.00679158559, -0.0238552522, -0.0155236246, -0.0162474439, -0.00175179786, 0.0140451845, 0.0135523705, -0.00830852706, -0.00722664781, -0.00382700469, -0.0242248625, -0.0019674038, -0.00113000593, -0.00842403062, -0.0124512408, -0.0293224026, 0.0067877355, -0.00685318746, -0.00176719832, -0.00681468658, -0.0273665488, -0.0134522682, 0.0257187039, -0.0332957096, -0.0040811114, -0.0135677708, -0.0128362514, 0.0138680795, -0.0233162381, 0.00223883614, -0.00608701631, -0.00994097162, -0.0146997022, -0.00894764438, 0.00782726426, -0.0113116093, -0.0155005241, -0.00136197475, 0.00686473772, -0.0143608926, 0.00481263176, 0.00984856952, 0.025010284, 0.00316093653, 0.00530929537, -0.00570970634, 0.0139450813, -0.00463937689, -0.00803902, 0.0080082193, -0.0203439556, -0.00483188219, -0.00184035033, -0.0116196182, -0.000818628643, -0.0198357422, -0.00189810188, 0.0145995989, -0.0307392403, -0.0267351307, 0.0079697175, -0.00496278564, -0.00927875377, -0.00766555965, 0.00431981822, -0.0124127399, -0.0101873782, -0.0228388254, -0.0044083707, 0.00746150408, -0.00328606484, -0.0224076137, -0.0424127616, -0.00979466829, 0.0133829657, 0.00415426353, 0.00564810447, -0.0155544253, -0.00343236886, -0.00880134106, -0.000258197688, -0.00423511583, 0.00898614619, -0.0116504189, -0.00794661697, 0.00374807743, -0.00820842478, -0.00355364708, -0.00498203607, 0.0737988204, 0.0206211638, 0.0129440539, -0.00650282763, 0.0011800573, 0.0087166382, -0.0128978528, 0.044168409, 0.00312821055, 0.016031839, -0.00863193627, -0.00886294246, 0.0185267068, 0.0145456977, -0.023085231, 0.000853279606, -0.00160934404, 0.0109034982, 0.0114040123, -0.00207520672, 0.00143993937, -0.00700719142, 0.0158624332, -0.00662218127, -0.00176527328, -0.0122741358, -0.0175564811, 0.00352862151, -0.00575975748, -4.33437635e-05, -0.0109728, -0.00370187615, -0.00254491949, -0.0126514463, -0.027736159, 0.00966376439, -0.0183727033, 0.00696099037, -0.00268544839, 0.000399448414, 0.0120200291, 0.0297690146, 0.00538629713, 0.0120970309, 0.0106416913, -0.00775411213, -0.0178028867, 0.00503208768, 0.0167248566, -0.015138614, -0.00467787776, -0.0345893465, 0.0226078182, -0.02268482, -0.0192813277, 0.00178163627, 0.00111075537, 0.00510909, 0.00228503742, 0.0178490877, -0.00437371945, 0.0282751732, 0.0193275288, 0.00123877137, -0.00679928577, -0.00119449513, -0.00714194542, 0.0103105819, -0.00734600099, 0.013221262, 0.00197125389, -0.0220380034, 0.0233008377, -0.0183265, 0.00838553, 0.000340253056, -0.00450077327, -0.000599172665, -0.00568275526, -0.027689958, -0.0136524737, 0.00298575661, -0.00652207853, -0.00986397, 0.00999487378, -0.00705339294, -0.0203439556, -0.0198665429, -0.00234856433, 0.0107802944, -0.0119353263, 0.0206519645, -0.00732290046, 0.0160934404, -0.00166613306, 0.00722279772, -0.0103259822, 0.00176719832, 0.0115965167, -0.0131519595, -0.00115695666, -0.0115811164, -0.00382507965, 0.0138295786, 0.00777721265, 0.0129979551, -0.0141452868, 0.00657212967, 0.022284409, -0.00750770513, 0.00795431715, -0.0134137664, 0.00513604051, 0.01607804, 0.0206365641, 0.0239014532, 0.0225770175, 0.00831622723, 0.00577900792, 0.00175083533, 0.0131134586, 0.0153696202, -0.0289065912, 0.00326488935, 0.00044155895, 0.0218531974, 0.019650938, 0.0120046278, 0.0181108955, 0.000200325798, 0.022284409, 0.00422356557, 0.0105723888, -0.00182302482, 0.0183727033, 0.00423511583, -0.0044083707, 0.00075125182, 0.0116889197, 0.0109342989, -0.00280287676, 0.00229658792, 0.00369610102, 0.0125590432, -0.00302618276, -0.00575975748, 0.00939425733, -0.036129389, -0.00495893555, -0.005559552, -0.0225154161, 0.00713809533, 0.00337269227, -0.00248716795, -0.00916325, 0.00365760014, 0.00184901303, -0.0181570966, -0.000955307391, -0.00196547876, -0.0158470329, -6.5692424e-05, -0.00220803544, 0.00981006864, 0.00216953433, 0.00110786781, 0.0188809168, 0.0132366624, 0.0107494937, 0.0140759852, 0.0509445928, -0.000781090115, -0.0118121235, 0.00746150408, 0.00262384675, -0.000738257717, -0.0158932339, 0.0137217753, -6.16016841e-05, -0.0122202346, 0.00240631588, 0.0117043201, -0.0336037204, 0.0397946872, -0.00898614619, -0.0152926184, 0.00264887256, -0.00648742728, 0.0633881316, 0.0255955, -0.0256725028, 0.00222536083, 0.001060704, -0.00323216338, -0.0143223917, -0.023531843, 0.000213079271, -0.00910164881, 0.0155313248, -0.0108110961, 0.00582905952, 0.00617171871, 0.0140759852, 0.00816992298, -0.00902464706, 0.0164168496, 0.0132751632, 0.000378032215, -0.00479338132, 0.00238321512, 0.0227002203]
14 Nov, 2024
Longest Common Prefix using Word by Word Matching 14 Nov, 2024 Try it on GfG Practice Given an array of strings arr[], the task is to return the longest common prefix among each and every strings present in the array. If there’s no prefix common in all the strings, return “”. Examples: Input: arr[] = [“geeksforgeeks”, “geeks”, “geek”, “geezer”]Output: “gee”Explanation: “gee” is the longest common prefix in all the given strings: “geeksforgeeks”, “geeks”, “geeks” and “geezer”. Input: arr[] = [“apple”, “ape”, “april”]Output : “ap”Explanation: “ap” is the longest common prefix in all the given strings: “apple”, “ape” and “april”. Input: arr[] = [“hello”, “world”]Output: “”Explanation: There’s no common prefix in the given strings. Approach: The idea is to use the fact that Longest Common Prefix holds the associative property, that is: LCP (string1, string2, string3) = LCP (LCP (string1, string2), string3) Example:LCP (“geeksforgeeks”, “geeks”, “geek”) = LCP (LCP (“geeksforgeeks”, “geeks”), “geek”) = LCP (“geeks”, “geek”) = “geek” So, we can make use of the above associative property to find the LCP of the given strings. Firstly, we can initialize the first string as the LCP. Then starting from the second string, calculate the LCP of each of the given string with the LCP so far. The final result will be our longest common prefix of all the strings.Note that it is possible that the given strings have no common prefix. This happens when the first character of all the strings are not same. C++ // C++ program to find the longest common prefix // using Word by Word Matching #include <iostream> #include <vector> using namespace std; // Function to find the maximum length of common // prefix between strings s1 and s2 int commonPrefixLen(string& s1, string& s2) { int idx = 0; int len = min(s1.length(), s2.length()); // Compare s1 and s2 while (idx < len && s1[idx] == s2[idx]) { idx++; } return idx; } // Function that returns the longest common prefix // from the vector of strings string longestCommonPrefix(vector<string>& arr) { string res = arr[0]; for (int i = 1; i < arr.size(); i++) { int len = commonPrefixLen(res, arr[i]); res = res.substr(0, len); } return res; } int main() { vector<string> arr = {"geeksforgeeks", "geeks", "geek", "geezer"}; cout << longestCommonPrefix(arr) << endl; return 0; } Java // Java program to find the longest common prefix // using Word by Word Matching import java.util.*; class GfG { // Function to find the maximum length of common // prefix between strings s1 and s2 static int commonPrefixLen(String s1, String s2) { int idx = 0; int len = Math.min(s1.length(), s2.length()); // Compare s1 and s2 while (idx < len && s1.charAt(idx) == s2.charAt(idx)) { idx++; } return idx; } // Function that returns the longest common prefix // from the array of strings static String longestCommonPrefix(String[] arr) { String res = arr[0]; for (int i = 1; i < arr.length; i++) { int len = commonPrefixLen(res, arr[i]); res = res.substring(0, len); } return res; } public static void main(String[] args) { String[] arr = {"geeksforgeeks", "geeks", "geek", "geezer"}; System.out.println(longestCommonPrefix(arr)); } } Python # Python program to find the longest common prefix # using Word by Word Matching # Function to find the maximum length of common # prefix between strings s1 and s2 def commonPrefixLen(s1, s2): idx = 0 minLen = min(len(s1), len(s2)) # Compare s1 and s2 while idx < minLen and s1[idx] == s2[idx]: idx += 1 return idx # Function that returns the longest common prefix # from the list of strings def longestCommonPrefix(arr): res = arr[0] for i in range(1, len(arr)): minLen = commonPrefixLen(res, arr[i]) res = res[:minLen] return res if __name__ == "__main__": arr = ["geeksforgeeks", "geeks", "geek", "geezer"] print(longestCommonPrefix(arr)) C# // C# program to find the longest common prefix // using Word by Word Matching using System; class GfG { // Function to find the maximum length of common // prefix between strings s1 and s2 static int commonPrefixLen(string s1, string s2) { int idx = 0; int len = Math.Min(s1.Length, s2.Length); // Compare s1 and s2 while (idx < len && s1[idx] == s2[idx]) { idx++; } return idx; } // Function that returns the longest common prefix // from the array of strings static string longestCommonPrefix(string[] arr) { string res = arr[0]; for (int i = 1; i < arr.Length; i++) { int len = commonPrefixLen(res, arr[i]); res = res.Substring(0, len); } return res; } static void Main() { string[] arr = { "geeksforgeeks", "geeks", "geek", "geezer" }; Console.WriteLine(longestCommonPrefix(arr)); } } JavaScript // JavaScript program to find the longest common prefix // using Word by Word Matching // Function to find the maximum length of common // prefix between strings s1 and s2 function commonPrefixLen(s1, s2) { let idx = 0; let len = Math.min(s1.length, s2.length); // Compare s1 and s2 while (idx < len && s1[idx] === s2[idx]) { idx++; } return idx; } // Function that returns the longest common prefix // from the array of strings function longestCommonPrefix(arr) { let res = arr[0]; for (let i = 1; i < arr.length; i++) { let len = commonPrefixLen(res, arr[i]); res = res.substring(0, len); } return res; } // Driver code const arr = ["geeksforgeeks", "geeks", "geek", "geezer"]; console.log(longestCommonPrefix(arr)); Outputgee Time Complexity : O(n*m), as we are iterating through all the strings and for each string we are iterating though each characters, where n is number of strings and m is length of the longest string.Auxiliary Space : O(m), to store the longest prefix string. Related Articles: Longest Common Prefix using SortingLongest Common Prefix Character by Character MatchingLongest Common Prefix Divide and ConquerLongest Common Prefix Binary SearchLongest Common Prefix Using Trie Master Data Structures and Algorithms at your own pace with our DSA Self-Paced course. In just 90 days, you’ll cover core concepts, solve real-world problems, and sharpen your problem-solving skills. Take the Three 90 Challenge: complete 90% of the course in 90 days and get a 90% refund. Stay motivated, track progress, and achieve DSA mastery. Start today!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching
https://www.geeksforgeeks.org/longest-common-prefix-using-word-by-word-matching?ref=asr10
PHP
Longest Common Prefix using Word by Word Matching
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[0.00579435099, 0.0339397341, -0.0111267148, 0.0175034292, -0.00174220931, 0.00530308345, 0.00907705724, 0.0314671323, -0.0262095965, -0.0181411, -0.0242445264, 0.00202688412, 0.00339982961, -0.0241013765, -0.0181020591, 0.00922671426, 0.0103784269, 0.0318835713, -0.023854116, 0.00378373382, -0.0205486361, 0.00260599377, -0.00205291156, 0.0160198677, 0.0233075395, 0.0349548049, 0.0362822, -0.00382928178, -0.00633116579, -0.00138839928, 0.0488274097, -0.0150568532, 0.00663373433, -0.0211732928, -0.000122308469, -0.0151219219, 0.00199434976, 0.0576767251, -0.0144191813, -0.0328986384, -0.031753432, 0.0238801427, -0.0222924706, -0.0384685025, 0.00488339178, 0.0040895557, -0.0157075375, 0.0166575387, 0.00251001772, -0.0365424752, 0.0276150759, -0.00705342647, -0.00308750081, 0.016891785, 0.000207304198, 0.0321178176, 0.000628317823, 0.00036174024, -0.0108208936, 0.00810102932, -0.00568048097, 0.00253116502, -0.0187137034, -0.0205616485, 0.0208089091, 0.0185184982, -0.0447150804, 0.0371150784, 0.0313630216, -0.00876472797, -0.0694411099, 0.0133130169, -0.0143410992, -0.0287863091, -0.0145883597, -0.0483328886, 0.0404986404, 0.00714452239, 0.0116602769, 0.0539287813, -0.0115236333, -0.0284479521, 0.0220582243, -0.0198328812, 0.0163972639, 0.0140938396, -0.0107363043, -0.0509616584, 0.0114910984, 0.0140938396, -0.0208869912, 0.0248301439, 0.0152780861, -0.0328986384, -0.0460945331, 0.0191431548, 0.013807538, -0.00285325409, -0.0438561738, 0.0216417871, 0.0188828819, 0.00172919559, -0.0151869897, -0.00950000249, 0.00617174804, -0.034616448, -0.0100726057, 0.0337575413, 0.0302958973, 0.0513000116, 0.0143541135, -0.00369914481, -0.00713150855, -0.0018284251, 0.00741130346, -0.0166965798, -0.0161630176, -0.0546054915, 0.033106856, 0.0253897328, 0.0263657607, 0.00523476163, -0.0184534285, -0.00860205665, -0.0368548036, 0.0525233, -0.00844589248, 0.0406808332, -0.0237239785, 0.00420342572, -0.0196897313, -0.0155123323, -0.0418000109, 0.0220452119, 0.0266520623, 0.0244787727, -0.0389109701, 0.0327164456, 0.00276053161, 0.030061651, -0.0128119895, -0.0185315106, -0.0057488028, 0.0042554806, 0.00529006962, -0.00463613123, 0.0319876783, 0.0586657673, -0.000910959148, -0.0337054878, -0.0199500043, -0.00847192, 0.0142630171, 0.00311190146, 0.0314931571, -0.0344863087, 0.0246349368, -0.0305301454, 0.002718237, -0.0484109707, 0.00964315329, -0.02686028, 0.0168527439, -0.00795787852, -0.0207568537, 0.019676717, -0.00216515455, -0.0155904153, -0.0305821989, 0.0337575413, -0.00395616516, 0.0248821974, 0.0421904214, 0.00449298043, -0.0370630212, -0.0240232944, 0.0474739857, -0.00923322141, -0.0056772274, 0.0275630206, -0.0197808277, 0.00830924883, 0.0195726082, -0.0207048, -0.00743733067, -0.0103003448, 0.00799692, 0.022162335, 0.0148356203, -0.0275369938, -0.0201712381, -0.0129291127, 0.00171618199, -0.00325179868, 0.00306960684, -0.00622380292, -0.0504931621, 0.0380260386, 0.0287342537, 0.0366986394, -0.00403424772, -0.0294630211, -0.00425873417, 0.00138351915, 0.0718876868, -0.0385465845, -0.0280054864, -0.0133260312, 0.0345383659, 0.0240883622, -0.0201972649, 0.0285520628, -0.0372972712, -0.00763253635, 0.0223185, -0.0291246641, -0.0353972688, 0.00379349408, -0.031336993, -0.0332630202, 0.0042262, -0.0206787717, 0.0557506979, 0.00705993315, -0.0349027477, -0.0211732928, -0.0330808312, 0.0230342522, -0.00342911039, 0.0168657582, 0.00985787902, 0.0142890448, -0.0122393863, -0.00935685169, -0.00716404291, -0.00615222752, -0.0242445264, 0.0242705531, 0.0134041132, 0.0366986394, 0.0259102806, -0.0358657613, -0.00481181638, -0.0231383629, 0.0176986344, 0.0184924696, -0.00717054959, -0.00157628465, -0.011172263, 0.0126428111, 0.00970171485, 0.0112243183, 0.0143671269, 0.0144972643, -0.0548657663, -0.0116147287, -0.0149787711, -0.0177376755, 0.00626609754, 0.0211602785, 0.00835479703, -0.002887415, 0.00333150779, 0.0537205599, 0.0156945251, -0.00646781, 0.0205876771, -0.0164232925, 0.0150047978, -0.0309726112, 0.000681592617, -0.0257671289, 0.0271726102, -0.000726733939, 0.0220842529, -0.0191952102, -0.0181411, -0.000562435947, 0.0488274097, 0.0184794571, 0.0242705531, -0.00515342597, 0.0283178147, -0.0192472655, 0.00522174779, -0.0299054869, -0.0108859614, 0.0018284251, -0.00206592516, 0.0258972663, -0.012076715, -0.00825719349, 0.00185607921, 0.0229952112, 0.0101116467, -0.00575856306, 0.0298794601, -0.00222534314, -0.0347465836, 0.00877774227, -0.011172263, -0.0278232954, -0.0422424749, -0.0206267182, -0.0378959, 0.0216548, -0.0355274044, -0.020353429, -0.0216157585, -0.0419561751, 0.0283178147, -0.0535123423, 0.00848493353, 0.0318315141, -0.0245958958, 0.00850445405, 0.0419301465, 0.0474479571, -0.00938938558, -0.0426849425, -0.00529332319, -0.0340438448, -0.00570976175, 0.0218890458, 0.0472657643, -0.0261445269, -0.00337054883, 0.0206137039, -0.0431794636, -0.0066825361, -0.0242185, -0.00381626817, -0.027016446, 0.00674109766, 0.0719918, 0.0115691815, -0.0154732913, 0.0369849391, 0.026938362, -0.0114195235, 0.000262714108, -0.00468167942, -0.00439212425, 0.0215767175, -0.00639948808, 0.00782123487, -0.0023473464, 0.0141198663, 0.00599606335, -0.0372191891, 0.000788549, 0.014861648, 0.0512219295, 0.00471746689, -0.0106256874, -0.0212253481, -0.0324561708, -0.0355013795, -0.0213164445, 0.0323780887, 0.0276150759, -0.0178547986, -0.0241274033, 0.0121873319, 0.0238671284, -0.0570520684, -0.0182321966, -0.0025750862, 0.0303739794, -0.00687123463, 0.00185445254, 0.00570976175, 0.0202623345, -0.00267268904, -0.0390411057, -0.0167486351, 0.0362822, 0.00506883673, 0.00508835725, 0.000258037297, -0.0364904217, 0.0480726138, 0.0136253461, -0.0144712366, -0.0184143875, 0.0220061708, -0.0603835769, 0.00233921292, 0.0287602805, 0.0127339074, -0.0542931631, 0.0144712366, -0.0274068564, 0.0209390465, -0.0076976046, 0.00911609828, -0.0388068594, 0.00816609804, -0.0130787706, 0.00360804889, 0.0253506918, 0.042632889, 0.0159417856, -0.0220061708, -0.0151349353, -0.00568698766, 0.00136318523, -0.0326904207, 0.0169568527, 0.0394315161, 0.000646618311, 0.061632894, -0.0348506942, 0.00870616641, 0.0302698705, 0.00011753, -0.0324301459, 0.0289164465, -0.0015933651, -0.0124345925, -0.0260404181, -0.0240232944, 0.0284479521, 0.0105020572, 0.0014868154, 0.0133130169, 0.023476718, 0.0492438488, 0.00203013746, -0.015200004, -0.0144452089, 0.0175164435, 0.0173342507, 0.00720308395, -0.00723561831, -0.0630904287, 0.0232034307, -0.0117513724, -0.00614572084, -0.0052380152, -0.0222274028, 0.00177799701, 0.0265349373, -0.0303219259, -0.0121222632, 0.0205616485, -0.013846579, 0.011927058, -0.0122003453, -0.000381667487, -0.00432054885, 0.0009711475, -0.0406027511, 0.00206429837, 0.0107883587, -0.047369875, 0.0173732918, 0.00421643956, 0.0232424717, -0.00096952077, 0.024491787, -0.0163061693, 0.0280575417, -0.0218890458, 0.0304260347, 0.0465630256, -0.000302975241, 0.00069907977, 0.000677932519, -0.00745034451, -0.0459904224, -0.0447931625, 0.0356054902, 0.0182452109, -0.012115756, -0.00787328929, 0.0246479511, -0.0489054918, 0.000606357178, -0.00975376926, 0.0298794601, 0.0229821969, -0.0136123318, -0.016553428, -0.0221883617, -0.0232294574, 0.000556335784, 0.00177149021, 0.00348767219, 0.00690376898, -0.0185705535, -0.00206429837, -0.00636695372, -0.0263267197, -0.000896318699, 0.0337054878, -0.0537205599, -0.0287342537, -0.00399520667, 0.0353712402, 0.0217328817, -0.0217979513, 0.0270685, 0.0502589159, 0.0181411, -0.0331589133, -0.020054115, 0.0176726077, 0.0129941814, -0.00596352899, -0.0126883592, -0.0126167843, 0.0030663535, 0.00363407633, -0.0287342537, 0.0217328817, -0.021108225, 0.0271465816, 0.00338030909, -0.0405767225, -0.0214205533, 0.0238150749, -0.0311027467, 0.0218109637, -0.0573123433, 0.0143671269, 0.0301917884, -0.0198589098, 0.0198979508, -0.0103589064, -0.0316232964, 0.0191041138, 0.00702089211, -0.0240232944, -0.0202232935, -0.0352931581, -0.00512739876, 0.00782123487, -0.0140157565, -0.000446125981, 0.00726815267, -0.00882979669, -0.0159027446, -0.00924623478, -0.0212643892, -0.0132869892, 0.0167616475, -0.020769868, -0.0137554826, 0.030400008, 0.00195042859, 0.00258647325, -0.0166445244, -0.000642551517, 0.00595702184, 0.0076976046, -0.00101100199, 0.00756746763, -0.0235417876, -0.023060279, 0.00286789448, 0.00836781, -0.00471096, 0.00808801595, 0.033341106, 0.0151479486, 0.0145363053, 0.00320787751, -0.0411232971, 0.0131763732, 0.0121352766, -0.00166168704, -0.00233433279, -0.000563656, 0.0203274023, 0.0248691849, 0.00831575505, -0.0321178176, -0.00650685094, 0.0129551403, 0.00779520767, -0.0119530857, -0.0140027432, -0.0202102792, 0.0122589068, -0.00995548163, -0.0455739833, -0.00880376901, -0.0458082296, -0.019000005, 0.00991644058, 0.0483328886, -0.0181280859, 0.00403099414, -0.0486191921, 0.00735924859, 0.00363407633, -0.0404726118, -0.00728116604, 0.0119986329, 0.0173863061, 0.0218890458, 0.0106972633, 0.0133910989, -0.000672645692, -0.0019715759, 0.0258972663, 0.0159938391, 0.00424572034, -0.0148746613, -0.0733452216, 0.00821164623, 0.00739828963, -0.0290726107, 0.0176726077, 0.00295085693, 0.0102482904, 0.00272149034, 0.00724212499, -0.0152910994, -0.0117513724, -0.0308424737, 0.009181167, 0.00380650791, 0.0395096, 0.0233856216, -0.0139897298, -0.00243193563, -0.0269904174, -0.0332890488, 0.010196235, 0.00393664464, -0.0114845922, 0.0101506878, -0.0201452114, 0.0115236333, -0.0192863066, -0.0158506893, -0.00734623475, 0.0374274068, -0.0224095955, -0.000681186, -0.0225657597, 0.0799561813, 0.00228878483, -6.14592427e-05, -0.0175294559, 0.00659469329, 0.0352931581, -0.00256369938, 0.0181541145, -0.00407003518, 0.0192472655, 0.0100856191, 0.0117123313, -0.00897945464, 0.0232945271, 0.00583989872, 0.0225657597, 0.0337315165, 0.00904452242, 0.00102401571, -0.0112698656, -0.0210691839, -0.00535188476, -0.00200899015, -0.0511178225, 0.042632889, 0.00348441862, -0.00188048, 0.00229203817, -0.0161239766, -0.0244267192, -0.0118359616, 0.00788630359, -0.023060279, -0.00605462492, 0.0332369953, 0.00909007061, 0.0291767195, 0.00369589124, 0.000452226144, -0.0148095926, -0.00764554972, 0.0292808302, 0.00910959113, -0.00263039442, -0.00484435074, -0.0458863117, -0.00576832332, -0.0230342522, -0.0121613042, 0.00357226119, 0.00997500215, 0.0175554845, 0.0114910984, 0.0337315165, 0.0364383645, 0.000569756143, 0.00303219259, 0.00578784384, 0.0136774005, -0.0131373322, 0.00467517227, -0.0182061698, 0.0379219279, 0.0010598033, 0.0378698744, -0.0376356244, 0.0100530852, 0.013807538, -0.00547876861, -0.0233335681, 0.0186746623, -0.00164542, -0.00761952251, -0.0109705506, -0.0095520569, -0.000531528378, 0.00301267207, 0.00289392192, -0.00142093352, 0.0241794586, -0.0331589133, -0.0150958942, -0.0144972643, -0.0108469203, 0.0101441806, -0.0176856201, -0.0105996598, -0.00711849472, -0.00544948783, -0.0059179808, -0.00423596, -0.00342911039, -0.0130657563, 0.0113154138, -0.00147705514, 0.000285488088, -0.000530715042, 0.00322902482, -0.000885745103, 0.00513715902, -0.00187559973, 0.00891438592, -0.0205746628, 0.0162801407, 0.017269183, -0.00406027492, -0.00625959039, -0.00905753672, -0.00312816864, 0.000227333105, 0.0115626743, 0.00299152476, -0.0209130198, 0.038078092, 0.00254905876, 0.00864109769, 0.00596027542, 0.00664349459, -0.00346489809, 0.0148876747, 0.0229301434, 0.0237760339, -0.00055064226, -0.0565315224, 0.00815959089, 0.00442140503, 0.0109315095, 0.00950000249, 0.015239045, -0.0022351034, -0.00389760383, -0.0412534364, 0.00587243307, 0.0245048013, 0.0211732928, 0.0103198653, 0.0152130174, -0.0372191891, 0.0203274023, 0.03047809, 0.0180369914, 0.0298274048, 0.0104695233, 0.00141930685, -0.0113284271, 0.0219411012, 0.0212774035, -0.0285000075, 0.0125061674, 0.0199760329, -0.00158604491, 0.00818561856, -0.0223835669, 0.0139116477, 0.0123109622, -0.0170739777, -0.0221753474, 0.0304520633, -0.00471421331, 0.023060279, 0.00236036023, 0.0040635285, -0.0246609654, 0.0125517156, 0.0104565099, -0.0266780891, -0.0130527429, -0.00549503556, 0.0191171281, 0.0158116482, 0.0584054925, 0.0283178147, 0.0419561751, 3.48726535e-05, 0.0165794566, 2.13760213e-05, 0.0145363053, -0.013091784, -0.00116879307, 0.0152780861, 0.00856301561, 0.00864760485, 0.0247520618, 0.0396397375, -0.0123500032, 0.0169828814, 0.0066825361, 0.00104434963, -0.0112828799, -0.0353712402, 0.0147445239, -0.00532911113, 0.00923972856, 0.0162801407, 0.0441424772, 0.0096952077, 0.0352150761, 0.00449948758, 0.00168690109, -0.0487753563, -0.0370109677, -0.0422685035, 0.0212253481, -0.0169958938, 0.0173212364, 0.0142109627, 0.0142369894, 0.0061815083, -0.00617825519, 0.0201972649, 0.00997500215, -0.00153236336, 0.0114715779, -0.0440383665, -0.0236198697, -0.0063474332, -0.0171911, 0.0262356233, -0.00593099464, -0.0194684975, 0.0339137055, 0.0197417866, -0.0198198687, -0.00820513908, -0.0243356228, 0.000754388049, 0.00743733067, 0.0136513729, -0.0242575407, -0.00622380292, 0.0137554826, -0.0112047978, 0.0154993189, 0.0107688382, 0.0148876747, 0.000774315267, -0.000581143133, 0.0274068564, 0.0160458945, -0.030061651, -0.0085109612, 0.0227739792, -0.0200801417, -0.00548852887, -0.0383643918, 0.0299315136, -0.0242835674, 0.012454113, -0.0135993185, -0.0178417861, -0.0202102792, 0.0268342532, -0.00920068752, 0.00376096, -0.0201842524, -0.00266780891, 0.0172431543, 0.017269183, -0.0170479491, -0.0159808267, 0.0236719232, 0.0151479486, -0.00728116604, 0.0235808287, 0.00578133715, 0.00921370089, 0.0488794632, 0.0132544553, 0.0194424707, 0.00323390495, -0.0149917845, 0.0131047983, 0.0469794646, -0.0238411017, 0.000955693715, 0.0261575412, 0.01260377, 0.0426589139, 0.0184664428, -0.0128380172, 0.036308229, -0.0288123358, 0.0199500043, -0.0387808308, -0.0457822047, -0.00827671401, -0.0513780937, -0.0280054864, 0.0282397326, -0.010384934, -0.0156945251, 0.00567397382, -0.0189089086, -0.0417739823, -0.0256500058, -0.031336993, -0.038416449, -0.024114389, 0.0309205558, 0.021368498, -0.017945895, -0.01072329, 0.00943493377, 0.0066109607, 0.00129486329, 0.0167226065, 0.0122524006, 0.0462506972, -0.0170219224, 0.0203794576, -0.0479945317, 0.0112893861, 0.00137863902, -0.0157075375, -0.0273027457, 0.00140222639, -0.0094544543, 0.00891438592, -0.0137034282, 0.00829623453, -0.0194815118, -0.0160589088, -0.0131698661, 0.010274318, -0.038598638, 0.0131373322, -0.0145623321, 0.0369328856, 0.00853048172, 0.0269904174, 0.00748938555, 0.0124020576, 0.0159547981, -0.0200671274, -0.0348246656, -0.0140417842, 0.00991644058, 0.00657517277, 0.042398639, -0.0170219224, 0.0232034307, 0.0235808287, -0.0503630266, 0.0096952077, 0.0480986424, 0.0102547975, 0.0105150715, -0.0143410992, 0.0350068584, -0.014145894, -0.0357095972, -0.0125321951, -0.0117643867, -0.00831575505, -0.0151609629, -0.0339917876, -0.0183493197, -0.0228260327, -0.014783565, 0.00288090832, -0.0152130174, 0.00056202925, 0.006490584, -0.00873870123, 0.0196506903, 0.00353972684, -0.0106972633, -0.00761301583, -0.0358917899, -0.000676712487, -0.0357095972, -0.00985787902, -0.0188958943, -0.0145363053, -0.000772688538, 0.0314411037, 0.0216678139, -0.0188178122, -0.0388849415, -0.0080815088, 0.009708222, 0.0076260292, 0.0130722634, -0.0222274028, 0.00707945367, 0.00385530922, -0.0183102787, 0.0109965783, -0.0129486332, -0.0069232895, 0.0212643892, 0.0233595949, 0.0267041158, 0.00607739901, -0.0302958973, 0.0184794571, 0.000684439379, 0.0345904194, 0.00228227791, -0.0258842539, -0.00110453798, 0.00480856281, -0.0290986374, 0.012454113, -7.75230292e-05, 0.00253604515, -0.0111657558, 0.0130722634, 0.0156554841, -0.0312849395, 0.00174546277, -0.0209260322, 0.00691678235, -0.00241404166, 0.00168039429, 0.00589195359, 0.00933733117, 0.00081620313, -0.0206657592, -0.00190813409, -0.0139767155, 0.0107883587, 0.0147184972, 0.016293155, 0.000662885432, 0.0027898124, -0.00161695248, 0.0125777433, 0.00884931721, -0.00236524036, -0.0366986394, 0.0170089081, -0.0033933227, 0.0157075375, -0.00432054885, 0.00574554922, -0.0120116472, -0.0204965807, -0.0234637037, 0.00737226196, -0.0106387017, 0.0116667841, -0.0110226059, 0.0056544533, -0.0155513734, -5.6528268e-05, -0.020470554, -0.0119335642, 0.0218109637, -0.00442140503, -0.0254027452, 0.0119010303, -0.000259257329, 0.0175945256, 0.0463027507, -0.0213164445, -0.0109770577, -0.0413054898, -0.0249863081, -0.0113024, 0.011738359, 0.0115431538, 0.00607414544, 0.000302161905, 0.0119921267, -0.019000005, 0.0184404161, -0.00341609679, 0.000250717101, 0.0405506939, 0.0166965798, 0.00992294773, -0.00570976175, -0.00726164551, -0.0231253486, 0.00778219383, -0.00393989822, -0.00843938533, 0.00728116604, -0.00482482975, -0.00186909293, 0.00173407583, -0.0381301455, 0.00177474355, 0.0210431553, -0.014145894, 0.0176205523, -0.0110551398, -0.0376356244, -0.00805548113, 0.00617825519, 0.00919418, -0.0273808297, 0.0256109647, -0.0251945276, -0.00548852887, -0.0264308285, 0.0319876783, 0.000142032353, -0.0162411, -0.0339397341, 0.00179914432, -0.000741781, 0.000568129413, -0.00507534388, -0.0161500033, -0.0300356243, 0.0142760314, 0.0053421245, 0.0207178127, -0.0126493182, -0.0159287713, 0.014523291, 0.00157791132, -0.0270424727, -0.0160198677, -0.00142174691, 0.0154472645, 0.0176595934, 0.00118912698, -0.0296452139, 0.00162752613, 0.0258712396, -0.00827671401, -0.0402904227, 0.0088948654, 0.02415343, -0.00436609704, -0.0124866469, 0.0347205549, -0.0122849345, -0.00512089161, -0.0246479511, -0.0152520584, -0.00847192, 0.0154993189, -0.0266780891, 0.0216027442, 0.0166575387, -0.0114910984, 0.000426198734, -0.00774965947, -0.0221883617, -0.0168527439, 0.0113089066, 0.0051989737, 0.00573904254, -0.0369849391, 0.017347265, -0.0299315136, 0.00964315329, 0.0251554865, -0.0188568532, -0.00618476188, -0.0179589093, 0.00264991494, -0.00838733092, 0.00410256954, 0.00224974379, 0.00482808333, 0.0176335666, -0.0102222627, -0.0209520608, 0.0158246607, 0.0152130174, 0.0166445244, 0.00118424685, 0.00272637047, 0.023060279, 0.00155432406, -0.0023473464, -0.00309238094, -0.0030175522, 0.016930826, -0.0353191867, -0.0201321971, 0.00720959064, -0.0543452203, -0.0285520628, -0.00992945489, 0.013846579, -0.00340633653, 0.0266780891, -0.0243746638, -0.0182191823, 0.0205226075, 0.016293155, -0.0192732923, -0.00853048172, 0.019676717, -0.0126297977, -0.0346424729, 0.0259493217, 0.0251815133, 0.00542346, 0.0152520584, -0.0159417856, -0.00308587402, -0.00287277461, -0.00455479557, 0.00569674792, 0.00489640515, 0.0105150715, 0.00774315279, -0.0150047978, -0.0247520618, 0.0210952107, -0.0178027451, 0.0041839052, 0.0093243178, 0.0125712361, -0.00254092528, -0.00778870052, -0.00103784271, -0.0126232905, -0.0210821964, -0.0221753474, 0.0188178122, -0.0259102806, -0.0055828779, 0.0246219244, 0.0236589108, 0.00463613123, 0.0114845922, 0.00709897419, -0.00476626819, 0.0393274054, -0.0210561696, 0.000428638799, -0.00733972806, 0.0226958953, 0.0252205543, 0.00473048072, 0.0254287738, 0.00546900835, 0.0171130188, 0.0095520569, 0.013130825, -0.0263006911, -0.0148226069, -0.0322219245, -0.0379479565, 0.000570976175, -9.83144491e-05, -0.00362756941, 0.00725513883, 0.00177311688, -0.00664349459, -0.00468167942, 0.00537791243, -0.00282885344, 0.0103068519, -0.00165680691, -0.0324561708, -0.0154342502, -0.0398219265, -0.0206527449, -0.00130299688, -0.0250904169, -0.00313955569, -0.0221493207, 0.00195693551, -0.00974075589, 0.0145623321, 0.0154472645, -0.0233856216, -0.00652962504, -0.0164493192, -0.00571626844, 0.0164102782, 0.0264568552, 0.0225267187, 0.0103524, -0.00828972831, 0.00590171386, 0.012753428, -0.0100530852, -0.0227739792, -0.0199500043, -0.0424246676, 0.0344082266, 0.0218369924, 0.01343014, 0.00147542846, -0.0248821974, 4.72763386e-05, 0.000564876, 0.0103393858, -0.00794486515, -0.00500702159, 0.0387548059, -0.0356575437, -0.0334972702, 0.0149527434, 0.0170349367, 0.0173863061, -0.00604161108, -0.00134447811, 0.011211304, -6.40009821e-05, -0.0118164411, 0.0161760319, -0.0030793671, 0.00285000075, -0.0022123293, 0.00231643883, 0.0107883587, -0.00803596061, -0.00424246676, 0.0130332224, -0.0184143875, -0.0123565104, -0.00108989759, 0.0143931545, 0.0326123387, -0.0102613037, 0.00326481252, 0.0143671269, 0.0267561711, -0.00176335662, -0.026001377, 0.00415787753, -0.0122589068, -0.0307123363, 0.00189024024, 0.0287602805, 0.00535513833, -0.0122068524, 0.0179068539, -0.0263657607, -0.0122068524, 0.0215506908, -0.0264698695, -0.000928039604, -0.0202753469, 0.0251945276, 0.013469181, -0.0141979484, 0.00329246651, -0.0182061698, -0.00268570264, 0.00845890585, -0.0151219219, -0.0340959, 0.0229431558, 0.0130137019, -0.00634417962, 0.00849144068, 0.0103068519, 0.0187137034, -0.00556661095, -0.0109445229, 0.00225137034, 0.0204315111, -0.0219020601, 0.0133520579, -0.0144321956, 0.0122133596, -0.00512739876, -0.0261835679, -0.0103784269, -0.00609691953, 0.0427630246, -0.00266943569, 0.0047337343, 0.00323065161, -0.0207958948, -0.0100140432, -0.000512821192, -0.00964965951, 0.00231806561, 0.000449786079, 0.00300616515, -0.0154472645, 0.0126883592, -0.0147054829, 0.0219801422, 0.00899897516, -0.00193904154, 0.0219150744, -0.00674109766, 0.00236686715, -0.0178287718, 0.00380650791, 0.000415218412, 0.00968870148, -0.00972774252, -0.00426524086, -0.00122572808, 0.0198719222, -0.00412534364, 0.02836987, 0.0180239771, 0.0036926379, -0.0221753474, 0.01154966, -0.00518596033, 0.0172821954, -0.000878424849, -0.0257801432, 0.00478578871, 0.0269643907, 0.0060839057, 0.0333150774, -0.00471421331, -0.0440904237, 0.00223998353, 0.00628561806, 0.0233335681, 0.00078041543, 0.0289424732, -0.00513390545, 0.0265349373, 0.0142760314, -0.00765205687, -0.00520548085, 0.0145493187, 0.00163159287, 0.0140547976, 0.00590496743, -0.00264340825, -0.0228911024, 0.0296712406, 0.00869965926, 0.0229171291, -0.0147705516, 0.00047906689, -0.0310506932, -0.00795787852, 0.0274589118, -0.0249993205, 0.00402774056, 0.0311287753, -0.0232294574, -0.0181411, -0.0215376765, -0.00377072021, 0.00738527579, -0.0139637021, 0.00705993315, -0.0191561691, 0.0107102767, 0.00810753647, 0.00209683273, -0.0185315106, 0.0319356248, 0.0250643902, 0.0167226065, -0.0142500037, 0.0250774045, -0.0152650727, -0.0174383614, 0.0259232949, -0.034278091, 0.00406678207, 0.0193383619, 0.0136513729, -0.00650685094, 0.0185184982, 0.0207568537, -0.0206787717, -0.0299315136, 0.0166445244, -0.00326318573, 0.0303739794, -0.0053909258, -0.0259493217, -0.0376356244, 0.0123304827, 0.0146794561, 0.00794486515, 0.0300095957, 0.00830274168, -0.00390085718, -0.0219541155, -0.0113479476, 0.0137164416, 0.0162020586, 0.00712500187, 0.00402774056, -0.0110291122, -0.00267756917, 0.00160719221, -0.0180500038, -0.0174774025, -0.0203664433, -0.0418000109, 0.00341609679, 0.0148876747, -0.00939589273, 0.0231383629, 0.0143150724, -0.0188438408, -0.00881027617, 0.0114195235, 0.00439212425, -0.000902012223, 0.00397243258, 0.00842637196, 0.00639298093, 0.0297753494, -0.000140507313, -0.0225787722, 0.00216840813, 0.0225006901, 0.0132414419, -0.0076976046, -0.00306798029, 0.000208829253, 0.00844589248, 0.00100937521, 0.000712500187, 0.0161630176, -0.0354753509, -0.00800342672, -0.00703390595, -0.017984936, 0.00282072, -0.01072329, 0.00317534315, 0.00853048172, -0.0161630176, 0.00253767194, -0.00388459, 0.0172561686, -0.00892739929, 0.00342585705, 0.00630513858, 0.00143394724, -0.00643202197, -0.00371215842, -0.00402123388, -0.0225267187, 0.0329506919, -0.00364058302, 0.0255719237, 0.00103702932, -0.00094186666, -0.0161109623, 0.0369589143, -0.00718356343, 0.0122979479, 0.00787328929, 0.000542915368, -0.017269183, -0.00290042884, -0.0250643902, 0.00786678307, 0.0155513734, 0.00388133666, 0.0104109617, -0.0056512, 0.0101246601, 0.00906404294, 0.0102873314, 0.0181150734, -0.0267561711, 0.00492243282, 0.0145493187, -0.0140157565, 0.0304520633, 0.0403164476, 0.0308685, 0.0125452084, 0.0106452079, -0.00235548, -0.0226178132, 0.0107948659, -0.00612620031, 0.00561866583, -0.00101588212, 0.0149787711, 0.0027898124, 0.00561866583, 0.0147445239, -0.00325505226, 0.00711198803, -0.00345513783, -0.00330548035, -0.000519734691, 0.0194294564, 0.0330548026, 0.009708222, 0.00142906711, -0.00801644, 0.00717054959, -0.00844589248, -0.00277191843, -0.00771712512, 0.0026824493, 0.0117774, 0.00583339203, 0.000116208292, -0.0249342527, -0.00637020729, -0.00988390669, -0.0214335676, 0.0229301434, -0.0128835645, 0.00569024123, -0.00959760509, -0.0137684969, 0.00180077099, -0.00656866608, 0.0122719212, -0.000645805, 0.00530308345, -0.0181541145, -0.018622607, -0.00551780965, 0.012037674, 0.00219768891, -0.00787979644, 0.00868664589, 0.00737226196, -0.0014306939, 0.0113804825, -0.000730394037, -0.0029459768, -0.0116797974, 0.00226438418, 0.0157335661, -0.0151479486, -0.0230732933, 0.0133780856, -0.00851746835, 0.02626165, 0.0320917889, 0.00974726304, -0.00922020804, 0.00228715804, -0.00834178273, 0.000201204035, -0.0229301434, 0.00364383659, -0.00893390644, -0.00562517252, -0.017945895, 0.0098774, -0.00438561756, 0.0357356258, 0.00177311688, -0.0154082235, 0.00274751778, -0.00915513933, -0.0128380172, -0.0161760319, -0.0031379289, -0.00754794711, -0.00799041335, -0.0180630181, -0.00996198878, -0.00877123512, 0.00407003518, -0.00546575477, 0.000812949671, 0.0257671289, -0.00373167894, -0.00168527442, -0.0403945297, 0.0210171286, -0.00897945464, -0.0309986379, -0.00284186704, 0.0051762, -0.0108274, -0.00653613172, 0.0200150739, -0.0020203772, 0.00856301561, -0.0346424729, 0.0268082265, -0.0154732913, -0.0147184972, -0.0042782547, 0.0191301424, -0.0195856206, -0.0246089101, 0.0278753489, 0.00272149034, 0.00450274069, -0.00858904328, -0.0217198692, -0.00308587402, 0.00994897541, 0.0183493197, -0.013020209, 0.00892739929, 0.00107932393, 0.010983564, -0.020691786, -0.00634092605, -0.00465239864, 0.00822466, 0.00564469304, 0.0140938396, 0.0133650722, 0.00407979544, -0.006659762, -0.0168397296, 0.00188210665, -0.00676061818, 0.000128306972, 0.00821164623, 0.0166184977, 0.00626935111, 0.00276541174, -0.00037638066, 0.0116667841, -0.0232945271, 0.00305496645, 0.00357226119, -0.00300128502, -0.0133520579, 1.10375e-05, 0.00488339178, -0.00942192, 0.00691027567, 0.0189609639, -0.00871918071, 0.0266520623, 0.0314150751, -0.00442791218, -0.0135863051, 0.0273808297, -0.0160979498, -0.0108989757, -0.000427825464, 0.00621078908, 0.00526078884, 0.00728767319, -0.0095650712, 0.00205453811, 0.0140157565, -0.0263397321, -0.00120702083, 0.000792615756, -0.0170869902, -0.00630188501, -0.00910959113, -0.00870616641, -0.00752192, 0.00822466, -0.0142369894, 0.0121222632, 0.00756096095, -0.00738527579, 0.00938938558, 0.00384229538, -0.00591147412, -0.00576506974, -0.000941053324, -0.00114276574, -0.0132024009, 0.0357616544, -0.000116818308, -0.0172561686, 0.0104955509, -0.0136774005, -0.00356575428, 0.00577157689, 0.00370565173, -0.00152097642, -0.00571952201, -0.00344212423, -0.00923322141, 0.00160556543, -0.00171780866, -0.00996198878, -0.0301917884, 0.00014660749, 0.00535188476, -0.00416438468, 0.010345893, 0.012265414, -0.000716160284, 0.0137164416, -0.00421643956, -0.0154732913, 0.0117774, -0.0146794561, -0.0244527459, -0.0171780866, -0.0169698671, -0.0125191808, 0.0220972653, 0.00598630309, -0.0013591185, -2.61544901e-05, -0.00331524061, -0.00513390545, 0.0133780856, -0.0024270555, 0.000850770739, 0.0042782547, 0.00276866509, -0.00791233, 0.00440839166, -0.015239045, -0.0107558249, 0.0246479511, 0.000229366502, 0.00751541276, 0.0191691834, -0.00347791193, -0.000745847763, -0.00339982961, 0.010046578, -0.00292157615, 0.00750239892, 0.0107883587, 0.0148486337, 0.00375445304, -0.00744383736, -0.0124671264, 0.000991481356, -0.0104760304, 0.00534863165, 0.0193904154, -0.0335232951, 0.00270196982, -0.0183883607, 0.0094089061, -0.00938938558, 0.0154863056, -0.0161109623, 0.0290465821, -0.00544948783, -0.0131243188, 0.0102482904, -0.00646130322, -0.0269123353, -0.00106793689, 0.0126167843, -0.00318510365, -0.0033933227, -0.00894041359, -0.00324366521, -0.00623681676, 0.0318315141, 0.00673459051, -0.0102808243, -0.00189186691, 0.0237239785, -0.00149901584, 0.00452226121, 0.00403424772, 0.0244787727, 0.0104890438, -0.00703390595, -0.0019065073, -0.0104239751, 0.0218890458, -0.000205270815, 0.00763253635, 0.000567316078, 0.00158848497, -0.0146404151, 0.0142760314, -0.00340633653, 0.0136774005, 0.0122719212, 0.0170739777, -0.000641331484, -0.0280315131, 0.00710548135, -0.000549828925, -0.0294630211, 0.014145894, -0.0162280854, -0.00369589124, 0.0099815093, 0.0427109711, -0.0291246641, -0.0159808267, 0.0135212364, 0.0145363053, -0.000453446177, 0.00401472719, -0.0134171266, -0.00542346, -0.0271986369, 0.0104890438, -0.00469469279, -0.0181801412, -0.00800342672, -0.0269123353, -0.0360219255, -0.0223445259, -0.000546982163, -0.00894041359, 0.00511438493, 0.00996849593, 0.0035852748, 0.0212383624, 0.00640599476, -0.000608390546, 0.00989692, 0.0274068564, -0.00384229538, -0.00745034451, -0.00307286042, 0.00216840813, -0.00318185, -0.00214563403, 0.0194815118, 0.00137375889, 0.0086085638, 0.038416449, -0.00856952276, -0.00578459073, -0.020314388, -0.033445213, 0.022201376, -0.0237109642, -0.0391452163, -0.0132219214, 0.020470554, -0.0169698671, -0.00364709, -0.0142630171, 0.00446695322, -0.0280575417, -0.00602534413, -0.0115626743, -0.00631815242, -0.0200801417, -0.000871918048, 0.0124020576, 0.0137294559, 0.00657842634, -0.0122393863, -0.0138335647, -0.0206137039, 0.0185445249, 0.00170479494, 0.0108339069, -0.0157726072, -0.0257801432, 0.00495496718, 0.0137294559, 0.0151349353, 0.00812705699, 0.0199109633, -0.0115952082, 0.0554383695, 0.0105476053, 0.0100270575, -0.000736087502, 0.0223315116, -0.00208219234, 0.0114845922, -0.0343561731, 0.011100688, 0.00450599426, 0.00499400822, -0.00665000174, -0.0169698671, 0.00426198728, -0.00804246776, -0.0116602769, -0.0206006896, -0.00191301422, 0.00489315204, -0.000189105354, 0.00660770712, 0.00456130272, 0.0117578795, -0.00951952301, 0.00524452189, -0.0042066793, 0.00332825421, 0.00547876861, -8.59616048e-05, -0.00596027542, -0.00901849568, 0.00851746835, -0.0343301445, 0.0137684969, -0.0064450358, 0.00988390669, 0.0132349348, -0.00162101921, 0.00620102882, -0.00853698887, 0.00120620744, -0.00124362193, -0.00786027592, 0.00109884446, 0.0330808312, 0.00849144068, -0.0152650727, 0.0195595939, -0.0296191853, -0.00752192, 0.00851746835, 0.017984936, 0.0262876786, -0.0164363049, -0.0171780866, 0.00404400798, -0.0103524, -0.0175164435, 0.00190813409, 0.0234246626, -0.00298827142, 0.0251945276, -0.01260377, -0.00923322141, -0.0188958943, 0.0100010298, -0.0250123348, 0.00163077947, 0.0203664433, -0.0047597615, -0.0104695233, -0.0131763732, -0.00548202172, 0.0251164455, -0.0111982906, -0.0144972643, 0.00215214095, 0.00351695297, -0.00728116604, -0.00406027492, -0.0113284271, 0.00204965798, -0.00576181663, 0.0167876761, 0.00123548834, -0.0294109657, 0.0111917835, -0.00598630309, 0.0106777428, 0.00184306549, 0.0166965798, -0.00785376877, 0.00166900724, 0.00252953824, 4.18624368e-05, -0.0244527459, 0.0110226059, 0.00373493251, -0.0203664433, 0.00274101086, -0.00450599426, 0.00333476113, 0.0067801387, -0.00714452239, -0.0118489759, 0.0166445244, 0.017308224, 0.0241013765, -0.0157465786, 0.0350589119, 0.00773664564, 0.0224356223, 0.00325017213, 0.0290205553, -0.00363732968, -0.000463206467, 0.0125452084, -0.0303219259, 0.00228878483, 0.0247260332, 0.00354623375, 0.00459383661, -0.00598304952, 0.0149137024, -0.015837675, 0.016891785, 0.00666301558, 0.0260274038, -0.00719007, -0.0233465806, -0.0183493197, 0.0370109677, -0.0101051396, -0.00802294724, -0.00839383807, 0.000102330399, -0.0249863081, 0.000875171449, -0.00158929836, -0.0223705526, -0.0113804825, 0.00166331383, 0.00114927255, 0.00142418698, 0.0196246617, -0.00938287936, 0.00449298043, 0.0167876761, -0.00986438617, 0.00508835725, 0.00610668, -0.00938938558, -0.0162671283, 0.0181411, -0.0108794551, 0.00184631895, -0.0114130164, 0.0254027452, 0.0259102806, -0.00665000174, -0.0154212369, 0.00853698887, -0.0236328822, -0.0026466616, 0.00875822175, 0.00319323712, 0.0137554826, 0.0105541125, -0.00735924859, -0.00343887066, -0.00568373408, 0.00559914531, 0.00293133641, 0.0140287708, -0.00657191966, -0.00672808383, 0.00579109741, -0.0519506969, 0.0181150734, -0.000214929416, 0.00230179843, 0.00281258626, 0.0134431543, -6.37468038e-05, -0.00121108769, -0.00490941899, -0.00160719221, 0.00864760485, -0.0096952077, 0.0167486351, 0.0182972644, 0.017347265, -0.00293946988, -0.00840034429, 0.0137034282, 0.0135342497, 0.00561866583, 0.0344342552, -0.0100010298, 0.00530633703, 0.0222664438, -0.0196637027, -0.0147575382, -0.0144061679, 0.00340958987, 0.0146274008, 0.0322219245, 0.0094024, -0.0137424693, 0.0125907566, -0.00386506948, -0.00927226245, 0.019299319, -0.0123695238, 0.0047012, -0.0157986339, -0.00853048172, -0.00052136142, -0.00712500187, -0.00215051416, 0.01154966, -0.00307611376, -0.00230017188, -0.0147054829, -0.00098741462, 0.00676061818, -0.00123548834, -0.0195465796, -0.00233921292, 0.0163191818, -0.00312979519, 0.0348246656, -0.0192212369, -0.0115431538, -0.0301397331, -0.0182972644, -0.00981883798, -0.00669554947, 0.0313109681, -0.00744383736, -0.024947267, -0.0122198658, 0.00470770663, 0.0102417832, 0.0119465785, -0.0188308265, -0.00444092555, -0.00978630409, -0.0241013765, 0.0294109657, -0.00689726183, -0.011699318, 0.0117123313, 0.0219541155, -0.0270945281, -0.00286789448, 0.00856952276, 0.00575856306, 0.008465413, -0.00225462392, 0.0534602888, 0.000100042831, -0.0114585645, 0.00501027517, 0.00429452164, -0.0211732928, -0.0248821974, 0.0106126741, 0.0062530837, -0.0177767165, 0.00800342672, -0.0016722607, 0.00757397432, 0.0111787701, 0.00758698815, -0.00435633678, 0.00165843358, -0.0119530857, -8.58472231e-06, -0.00715753622, 0.00730068656, 0.0169438403, 0.00375770638, -0.00765856355, -0.00236686715, -0.00197645603, 0.0114260307, -0.00210333965, 0.016254114, 0.00499726133, -0.00544948783, -0.00953904353, -0.00942192, 0.0120702088, 0.000860531058, 0.0124020576, -0.003969179, -0.0116732903, -0.024947267, 0.0149267158, -0.0190911014, 0.012493154, 0.0231643897, -0.0100205503, -0.0173212364, 0.0219280869, -0.0123174684, 0.0198979508, -0.0187006891, -0.00534537807, 0.000869478, -0.0110746603, 0.0107883587, -0.0157465786, 0.0099815093, -0.0159678124, 0.0219150744, 0.0110486327, -0.0167486351, -0.0144061679, -0.00235385331, -0.00263364799, 0.0213945266, -0.00438236399, 0.013547264, 0.0114585645, 0.00306310016, -0.00691678235, -0.00384229538, -0.000211065984, -0.0128640439, 0.0131178116, -0.0237500053, 0.0027035966, -0.0139116477, -0.000783668889, -0.00720959064, -0.0216808282, 0.0197808277, 0.0149137024, 0.00350393914, -0.0177376755, -0.0160589088, -0.0123304827, -0.00328921317, 0.00638972782, 0.00165111339, 0.00571301533, -0.0107883587, -0.0211732928, 0.0136123318, -0.0236328822, 0.0141328806, -0.0209780876, 0.001693408, 0.0146664418, -0.0195465796, -0.0106452079, 0.00861507095, -0.00280445279, -0.0101506878, -0.0152650727, -0.00989041384, 0.012037674, -0.00765856355, 0.0216157585, 0.0201321971, -0.00184631895, -0.000594563491, 0.0113934958, -0.0188698675, 0.0149267158, -0.0127989762, -0.0105085643, 0.00841986481, 2.63324127e-05, -0.0121873319, 0.0111982906, 0.00211635325, -0.00411883648, -0.00123630173, 0.00239614793, -0.000147014158, -0.00608065212, -0.00785376877, -0.000825963391, -0.00639948808, 0.0107428106, 0.00751541276, -0.00448647374, 0.0110486327, 0.0225267187, -0.0045417822, 0.006132707, 0.0142630171, 0.0115756877, -0.0176726077, 0.0221493207, -0.0327685028, -0.0142109627, 0.005605652, 0.016293155, 0.00897294749, -0.00622054935, 0.0108143864, 0.01448425, 0.00583339203, -0.0351109691, 0.00961061846, -0.0326123387, -0.00984486565, 0.00463613123, 0.00495822029, -0.0151349353, -0.0149657568, -0.00485085743, -0.00981233083, 0.00390736386, 0.0233335681, -0.00923322141, 0.0255589113, -0.00100774853, 0.0218500048, -0.013846579, 0.003357535, -0.00511438493, 0.0092657553, 0.00529657677, 0.00394965848, -0.0123174684, 0.00778870052, 0.00265967543, -0.0145493187, 0.00420017214, -0.0116537698, 0.00260599377, 0.0168006886, -0.0111397291, 0.0158246607, -0.00681917975, 0.000486387115, -0.000150877604, -0.00205779169, 0.00114195235, -0.0111137014, 0.00127290271, 0.013807538, 0.0242185, 0.00749589223, -0.00181053125, 0.0142890448, 0.0118164411, -0.00255719246, 0.000295248348, 0.00739828963, 0.00407654233, -0.0030175522, 0.0208869912, 0.0267561711, 0.0135212364, -0.0113544548, -0.000279591244, -0.00659794686, 0.00452876836, 0.0161500033, 0.00998801645, -0.00360804889, 0.0110551398, -0.0169828814, -0.0191691834, 0.0173342507, 6.69494e-05, -0.0010598033, -0.0221363064, -0.0226178132, -0.0134041132, 0.0145363053, 0.0190911014, 0.00432054885, 0.0109965783, -0.0205095951, -0.00547876861, -0.00496798055, -0.00364709, 0.0152260317, -0.00980582461, -0.00894692, -0.0121743185, 0.00422294624, 0.00937637221, -0.00839383807, -0.00280933292, -0.0168397296, -0.00776918, 0.0279013775, -0.000114988259, 0.00224161, 0.0163061693, -0.00560890557, -0.0274068564, -0.0116928108, 0.0105280848, 0.0225006901, 0.0208739787, 0.0214726087, -0.00968870148, -0.0115431538, -0.0149137024, 0.0140808253, 0.0190520603, -0.00958459172, -0.00271986378, -0.0197287723, 0.0163582228, 0.00541044679, 0.000785702257, -0.00284024049, -0.00733322091, 0.0250643902, -0.0202493202, 0.0140027432, 0.00629212474, 0.0204575397, 0.00364709, 0.00946096145, 0.00446369965, 0.0126688387, 0.00708596082, 0.00569024123, 0.0017503429, -0.0179198682, 0.0143020581, 0.0421904214, -0.022461649, -0.010872948, 0.027693158, -0.0241404176, -0.0159417856, 0.00997500215, 0.00299315155, 0.00337054883, 0.00428801496, 0.00320462417, -0.0112828799, 0.00321113085, 0.00588219333, 0.00162101921, 0.00530308345, 0.00326481252, 0.0234246626, -0.00621729624, 0.0446630232, -0.00273613073, 0.00976678357, -0.0103198653, 0.00393013796, -0.0020073636, -0.00933733117, 0.0171260312, 0.0195856206, -0.0268863086, -0.00489315204, 0.00169503468, -0.00830274168, 0.00310539454, -0.00707945367, -0.0143931545, 0.0136383595, -0.00268570264, -0.000221029593, 0.0132154142, 0.0096952077, -0.00655565225, 0.0165404156, 0.0150308255, -0.0154993189, -0.00370890507, -0.000442465855, -0.00830274168, 0.0113024, -0.0105476053, 0.0196637027, 0.0222143885, 0.00255556568, 0.011172263, 0.00933082402, -0.011439044, 0.0100400709, -0.031753432, 0.0148356203, 0.00205779169, -0.00182029151, 0.0379219279, 0.0166184977, -0.00828322116, -0.00566096045, -0.00328433304, -0.0176205523, -0.00682568643, 0.00882329, 0.00944794714, 0.0211732928, -0.00575856306, 0.00662722765, 0.0227219239, 0.00133065099, -0.0105671259, 0.015876716, -0.0206787717, 0.00952603, -0.00177311688, -0.00509161083, 0.00299965823, -0.0105280848, 0.000441245822, 0.0108013721, 0.0101441806, 0.00634092605, -0.0289685, -0.000408914901, -0.00225299713, -0.0191561691, -0.000579516403, 0.00601883698, 0.0181541145, -0.0042554806, 0.0210821964, -0.00138026581, -0.0170609634, -0.00143801409, 0.00341284322, 0.00850445405, 0.013280483, -0.00710548135, 0.0122003453, -0.0209260322, -0.0146143874, 0.0231904164, -0.0115301395, -0.0218239781, -0.00974075589, -0.00922671426, 0.0104369894, -0.00313630211, 0.00187559973, -0.0168397296, -0.00791233, 0.00485736411, -0.00412534364, 0.0147705516, -0.020470554, 0.00936986506, -0.0146664418, -0.00783424824, -0.00632140553, -0.012753428, 0.00607739901, -0.00765205687, 0.0113479476, -0.00839383807, -0.0146143874, -0.00722260447, -0.00243356219, 0.00704041263, 0.013508223, 0.0119205508, -0.00452876836, -0.0203274023, -0.00830924883, -0.0117058251, 0.00604486465, 0.0163582228, -0.000279794593, 0.00800342672, -0.000324935856, 0.00894692, -0.0209260322, -0.0282137059, 0.0404205583, 0.00433681626, 0.0210561696, 0.00341935013, 0.0020073636, -0.0031867302, -0.0130071947, -0.0203404166, -0.0127143869, 0.00112649857, -0.0134171266, 0.0061815083, 0.0214205533, 0.00679315254, -0.0152260317, 0.0292287748, 0.00717705674, 0.00165843358, -0.00697534438, -0.000739340961, -0.00909657776, 0.00970171485, -0.00146648148, -0.00113951229, 0.023854116, 0.000777975365, 0.00134773145, 0.00959109794, -0.013020209, 0.00416763825, 0.00604811776, -0.0207048, -0.0111462353, 0.0165794566, 0.0130462358, 0.0112243183, -0.00736575527, -0.000711280154, -0.0166054834, 0.0202363059, 0.0284479521, -0.00481506949, 0.0168267172, -0.00490616541, 0.0429712422, 0.0102808243, 0.0063962345, 0.0125972638, 0.0169698671, 0.0123369899, -0.00652637146, 0.000105838, -0.015876716, -0.0320917889, 0.0129226064, -0.0152910994, 0.0169048, 0.00820513908, -0.0150828809, 0.0319876783, -0.0142500037, 0.00903150905, 0.0113804825, 0.0216548, -0.0156294554, 0.0110095916, 0.000854837534, -0.00700137159, 0.0403164476, -0.0238411017, -0.0135863051, -0.0242705531, -0.0168397296, 0.0207568537, 0.014184935, 0.0171780866, 0.00876472797, 0.00112893863, -0.0179068539, 0.000526648248, 0.0086085638, 0.0237500053, -0.00989041384, 0.00227902457, 0.00266618212, 0.00105410989, 0.00837431755, -0.023515759, 0.00389109692, -0.00967568718, 0.00215376774, 0.00422294624, 0.006490584, -0.0190520603, -0.020353429, -0.0010524831, -0.0195856206, -0.0263397321, -0.00698835775, 0.0138726067, -0.0267561711, -0.0162280854, -0.0193123333, -0.0123174684, -0.00791883748, 0.00766507024, -0.00162589934, -0.0122458935, -0.00562842609, -0.0238280874, -0.001166353, -0.0165013745, 0.0135993185, 0.00478578871, -0.0179979503, 0.0074828784, -0.0441424772, 0.0103393858, -0.0041351039, -0.00503304927, 0.000868664589, -0.0214986354, -0.00489965873, -0.00322089111, 0.00673459051, 0.020691786, -0.0155904153, 0.000443685887, 0.00804897491, -0.0204184987, -0.000611644, -0.00453527505, 0.00251815142, 0.0107883587, -0.0295671299, -0.0110356193, 1.60256623e-05, -0.0116017153, 0.00489315204, -0.0139637021, -0.0233335681, -0.0159027446, -0.0122133596, 0.00922671426, 0.0149267158, -0.0171260312, 0.00502654258, -0.00244169589, 0.0216678139, 0.00124606199, 0.0177116487, -0.00352671323, 0.0283178147, -0.00329734664, -0.00690376898, 0.00051160116, -0.00238638767, 0.00383253512, 0.00178125047, -0.0187657587, -0.00612294674, -0.00994897541, 0.000416845141, 0.00580085767, -0.0274849385, -0.0053095906, 0.00366010377, -0.00186746626, -0.00887534488, -0.00297200424, 0.00574554922, -0.0094544543, -0.0392493233, -0.0178938396, -0.0113739753, 0.00545599451, 0.000958947174, -0.0117253456, -0.0167095941, 0.00599606335, 0.0100010298, 0.00101913558, 0.0157075375, -0.00944794714, -0.00848493353, -0.00454828888, 0.00525753573, 0.00391061744, 0.00996198878, -0.0206267182, 0.00035360668, 0.0121287704, -0.0203013755, 0.00607089186, -0.00480856281, 0.00513715902, 0.0202623345, 0.00204803143, 0.000765368342, 0.00934383832, -0.0220452119, -0.025962336, 0.037141107, 0.00804897491, 0.00363082276, 0.00306310016, -0.00760650868, 0.00780822104, 0.0188828819, -0.0125517156, 0.00378373382, 0.0159287713, -0.00951301586, 0.00566421356, 0.00178775727, -0.0201842524, -0.00276053161, 0.000360316859, -0.013508223, -0.00801644, -0.0159287713, -0.0104565099, -0.0141068529, -0.00196506898, -0.00282397331, -0.0127599351, -0.00307286042, 0.00886233058, -0.0247000065, -0.0249212384, -0.0126428111, -0.0282657612, 0.0100986324, -0.0140027432, -0.0137164416, -0.0163452104, 0.0103654135, -0.00799692, 0.0222794581, 0.00487688463, 0.000537221902, -0.0125126746, 0.0139246611, 0.00981883798, 0.00420993241, -0.0356054902, -0.0173993185, 0.0353191867, -0.0214335676, 0.00584965898, 0.00881678332, 0.0155904153, -0.00382928178, -0.000844263937, 0.00665325532, 0.0127729485, 0.0192342512, 0.0250253491, -0.00664349459, -0.00245308271, 0.0131633598, -0.00460685045, 0.0140287708, -0.00744383736, 0.0147445239, 0.00427500112, -0.0149267158, 0.0159027446, 0.0246349368, 0.00874520745, -0.0168006886, -0.00563167967, -0.0157205518, -0.0109054819, -0.0176335666, -0.000210455953, 0.00738527579, -0.0239321981, -0.0214726087, 0.00917466, 0.00884931721, -0.0168787707, 0.0103719207, 0.0143541135, 0.00763253635, -0.00864760485, 0.00761301583, -0.0014372007, 0.0111787701, -0.0111917835, 0.00689726183, -0.00733322091, -0.00728767319, 0.0142630171, -0.0163061693, 0.0018707196, 0.00345513783, -0.00798390619, -0.00212123338, -0.0174383614, -0.00654263841, -0.00153968355, -0.00730719371, 0.020353429, -0.00739178248, 0.0251424722, -0.00249863067, 0.00308750081, 0.019455485, 0.0123630166, 0.0324561708, -0.0151089076, 0.0156815108, 0.00431729574, -0.000469306629, 0.0225397311, 0.0147315105, -0.0111787701, -0.00957157742, 0.00155025721, 0.0204054844, -0.00252953824, 0.00458082324, 0.00348116527, -0.00362756941, 0.0218369924, 0.00121271436, 0.0113479476, -0.00676061818, 0.0191431548, -0.011100688, -0.0051989737, -0.00464914506, -0.00231643883, 0.00597979594, -0.019260278, 0.0231383629, -0.00145916129, 0.00910308491, -0.00272637047, -0.0124150719, 0.000849144068, -0.0228650738, 0.019676717, 0.00449948758, -0.0193123333, -0.0118815098, 0.00206592516, -0.0132284276, -0.00144696096, -0.00445393939, -0.0118164411, 0.00447671348, -0.00168852787, 0.00810102932, 0.0110876737, -0.000784075528, 0.0130332224, 0.0262486376, 0.0151739763, 0.00850445405, 0.0198979508, 0.00886883773, -0.000158299488, 0.0285000075, 0.0242185, -0.00624007, 0.0095650712, 0.0131568527, 0.00301917875, -0.00498099439, -0.0264958963, 0.0185575392, 0.00596027542, -0.0115756877, -0.00968870148, -0.0150308255, -0.00624983, 0.016553428, -0.0103393858, -0.0178417861, -0.0118424688, 0.0015152829, 0.0488274097, 0.0323780887, 0.0011305653, -0.00966267381, -0.00558613148, -0.00474349456, -0.0103198653, -0.0190520603, -0.00518921344, -0.00562191941, -0.0191301424, 0.00743733067, -0.00194554846, -0.0198979508, 0.0102808243, 0.0169828814, 0.0075544538, 0.0190911014, 0.0101897288, -0.00984486565, -0.00652962504, -0.0131438393, -0.0131373322]
14 Nov, 2024
Longest Common Prefix using Divide and Conquer Algorithm 14 Nov, 2024 Given an array of strings arr[], the task is to return the longest common prefix among each and every strings present in the array. If there’s no prefix common in all the strings, return “”. Examples: Input: arr[] = [“geeksforgeeks”, “geeks”, “geek”, “geezer”]Output: “gee”Explanation: “gee” is the longest common prefix in all the given strings: “geeksforgeeks”, “geeks”, “geeks” and “geezer”. Input: arr[] = [“apple”, “ape”, “april”]Output : “ap”Explanation: “ap” is the longest common prefix in all the given strings: “apple”, “ape” and “april”. Input: arr[] = [“hello”, “world”]Output: “”Explanation: There’s no common prefix in the given strings. Approach We have discussed word by word matching and character by character matching approaches. Now, we will discuss divide and conquer approach. The idea is simple, first divide the array of strings into two equal parts. Then find the Longest Common Prefix for all strings in each part individually using recursion. Once we got the Longest Common Prefix of both parts, the Longest Common Prefix of this array will be Longest Common Prefix of these two parts. C++ // C++ program to find the longest common prefix // using Divide and Conquer Algorithm #include <iostream> #include <vector> using namespace std; // A Utility Function to find the common prefix between // strings s1 and s2 string commonPrefixUtil(string &s1, string &s2) { string res; int n1 = s1.length(), n2 = s2.length(); for (int i = 0; i < n1 && i < n2; i++) { if (s1[i] != s2[i]) break; res.push_back(s1[i]); } return res; } // A Divide and Conquer based function to find the // longest common prefix. This is similar to the // merge sort technique string commonPrefix(vector<string> &arr, int l, int r) { // Base Case: common prefix for a single string is // the string itself if (l == r) return arr[l]; if (l < r) { int mid = l + (r - l) / 2; // Find Longest Common Prefix of first part string p1 = commonPrefix(arr, l, mid); // Find Longest Common Prefix of second part string p2 = commonPrefix(arr, mid + 1, r); // Find and return the Longest Common Prefix // of subarray arr[l ... r] return commonPrefixUtil(p1, p2); } return ""; } string longestCommonPrefix(vector<string> &arr) { return commonPrefix(arr, 0, arr.size() - 1); } int main() { vector<string> arr = {"geeksforgeeks", "geeks", "geek", "geezer"}; cout << longestCommonPrefix(arr); return 0; } Java // Java program to find the longest common prefix // using Divide and Conquer Algorithm import java.util.*; class GfG { // Utility function to find the common prefix between // strings s1 and s2 static String commonPrefixUtil(String s1, String s2) { StringBuilder res = new StringBuilder(); int n1 = s1.length(), n2 = s2.length(); for (int i = 0; i < n1 && i < n2; i++) { if (s1.charAt(i) != s2.charAt(i)) break; res.append(s1.charAt(i)); } return res.toString(); } // Divide and Conquer function to find the longest common prefix // This is similar to the merge sort technique static String commonPrefix(String[] arr, int l, int r) { // Base Case: common prefix for a set of single string // is string itself if (l == r) return arr[l]; if (l < r) { int mid = l + (r - l) / 2; // Find Longest Common Prefix of first part String p1 = commonPrefix(arr, l, mid); // Find Longest Common Prefix of second part String p2 = commonPrefix(arr, mid + 1, r); // Find and return the Longest Common Prefix // of sub array arr[l ... r] return commonPrefixUtil(p1, p2); } return ""; } static String longestCommonPrefix(String[] arr) { return commonPrefix(arr, 0, arr.length - 1); } public static void main(String[] args) { String[] arr = {"geeksforgeeks", "geeks", "geek", "geezer"}; System.out.println(longestCommonPrefix(arr)); } } Python # Python program to find the longest common prefix # using Divide and Conquer Algorithm # Utility function to find the common prefix between # strings s1 and s2 def commonPrefixUtil(s1, s2): res = [] n1, n2 = len(s1), len(s2) for i in range(min(n1, n2)): if s1[i] != s2[i]: break res.append(s1[i]) return ''.join(res) # Divide and Conquer function to find the longest common prefix # This is similar to the merge sort technique def commonPrefix(arr, l, r): # Base Case: common prefix for a set of single string # is string itself if l == r: return arr[l] if l < r: mid = l + (r - l) // 2 # Find Longest Common Prefix of first part p1 = commonPrefix(arr, l, mid) # Find Longest Common Prefix of second part p2 = commonPrefix(arr, mid + 1, r) # Find and return the Longest Common Prefix # of sub array arr[l ... r] return commonPrefixUtil(p1, p2) def longestCommonPrefix(arr): return commonPrefix(arr, 0, len(arr) - 1) if __name__ == "__main__": arr = ["geeksforgeeks", "geeks", "geek", "geezer"] print(longestCommonPrefix(arr)) C# // C# program to find the longest common prefix // using Divide and Conquer Algorithm using System; using System.Collections.Generic; using System.Text; class GfG { // Utility function to find the common prefix between // strings s1 and s2 static string commonPrefixUtil(string s1, string s2) { StringBuilder res = new StringBuilder(); int n1 = s1.Length, n2 = s2.Length; for (int i = 0; i < n1 && i < n2; i++) { if (s1[i] != s2[i]) break; res.Append(s1[i]); } return res.ToString(); } // Divide and Conquer function to find the longest common prefix // This is similar to the merge sort technique static string commonPrefix(string[] arr, int l, int r) { // Base Case: common prefix for a set of single string // is string itself if (l == r) return arr[l]; if (l < r) { int mid = l + (r - l) / 2; // Find Longest Common Prefix of first part string p1 = commonPrefix(arr, l, mid); // Find Longest Common Prefix of second part string p2 = commonPrefix(arr, mid + 1, r); // Find and return the Longest Common Prefix // of sub array arr[l ... r] return commonPrefixUtil(p1, p2); } return ""; } static string longestCommonPrefix(string[] arr) { return commonPrefix(arr, 0, arr.Length - 1); } static void Main() { string[] arr = {"geeksforgeeks", "geeks", "geek", "geezer"}; Console.WriteLine(longestCommonPrefix(arr)); } } JavaScript // JavaScript program to find the longest common prefix // using Divide and Conquer Algorithm // Utility function to find the common prefix between // strings s1 and s2 function commonPrefixUtil(s1, s2) { let res = []; let n1 = s1.length, n2 = s2.length; for (let i = 0; i < n1 && i < n2; i++) { if (s1[i] != s2[i]) break; res.push(s1[i]); } return res.join(""); } // Divide and Conquer function to find the longest common prefix // This is similar to the merge sort technique function commonPrefix(arr, l, r) { // Base Case: common prefix for a set of single string // is string itself if (l === r) return arr[l]; if (l < r) { let mid = l + Math.floor((r - l) / 2); // Find Longest Common Prefix of first part let p1 = commonPrefix(arr, l, mid); // Find Longest Common Prefix of second part let p2 = commonPrefix(arr, mid + 1, r); // Find and return the Longest Common Prefix // of sub array arr[l ... r] return commonPrefixUtil(p1, p2); } } function longestCommonPrefix(arr) { return commonPrefix(arr, 0, arr.length - 1); } // Driver Code let arr = ["geeksforgeeks", "geeks", "geek", "geezer"]; console.log(longestCommonPrefix(arr)); OutputgeeTime Complexity: O(n*m), where n is number of strings and m is length of the longest string. In the worst case, we can have n equal strings of length m, so the recurrence relation will be T(n) = 2*T(n/2) + O(m), which can be simplified to O(n*m).Auxiliary Space: O(m), to store the longest prefix string. Related Articles Longest Common Prefix using SortingLongest Common Prefix Word by Word MatchingLongest Common Prefix Character by Character MatchingLongest Common Prefix Binary SearchLongest Common Prefix Using Trie Master Data Structures and Algorithms at your own pace with our DSA Self-Paced course. In just 90 days, you’ll cover core concepts, solve real-world problems, and sharpen your problem-solving skills. Take the Three 90 Challenge: complete 90% of the course in 90 days and get a 90% refund. Stay motivated, track progress, and achieve DSA mastery. Start today!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm
https://www.geeksforgeeks.org/longest-common-prefix-using-divide-and-conquer-algorithm?ref=asr10
PHP
Longest Common Prefix using Divide and Conquer Algorithm
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[0.00730103, 0.0101369042, -0.0195975024, 0.0207656659, 0.0127575891, -0.0036293806, 0.00419617118, 0.0449743457, -0.0322167575, 0.00932226237, -0.0110514536, -0.0140717747, 0.0252231378, -0.0221951324, -0.00832317397, -0.00240933988, 0.0318478607, 0.0258533321, -0.0138181597, -0.0278053973, -0.00722033437, -0.0173072834, -0.0110668242, 0.0114126625, 0.0060675405, 0.0446054526, 0.0220721662, 0.00883040391, -0.00763534056, -0.00653634313, 0.0401787199, -0.00230174582, -0.00274557155, -0.0423613451, 0.0050684521, -0.0138104744, -0.00878429227, 0.0426072739, -0.0272366852, -0.00703588733, -0.021534197, 0.0203506611, -0.0175378434, -0.0359979197, 0.00971421227, 0.0192286074, -0.0131187979, 0.0175685845, -0.00214611855, -0.0199817661, 0.0120428568, -0.0196436141, 0.0173072834, 0.0122273043, -0.00581392553, 0.0167078301, -0.0169537608, -0.0249618385, -0.00630962709, 0.0269446429, 0.0277439151, -0.000951535592, -0.0102368128, -0.00770066539, 0.0338767804, 0.00475335494, -0.0436524749, 0.0484788418, 0.0485710651, -0.0224410612, -0.069106169, 0.0111129368, -0.013264819, -0.030618215, -0.0137489922, -0.0358134732, 0.0321245342, 0.00219799438, -0.0016148726, 0.0493088514, -0.0188136026, -0.024608314, 0.0118584102, -0.0392257459, 0.0421769, -0.00480330922, -0.00697056251, -0.0542274415, 0.03618237, 0.0175685845, -0.0178452544, 0.0104596866, 0.00057975942, -0.0342456736, -0.0634497926, 0.0359056965, 0.0281281788, 0.00241510384, -0.050261829, 0.00201739, -0.0044613136, 0.0324626863, -0.015462813, -0.00104616082, 0.0168000553, -0.0208886322, 0.00435371976, 0.036489781, 0.0520755574, 0.035751991, 0.00852299202, 0.00317402673, -0.00316634146, 0.00953745097, -0.00630578445, -0.0273903906, -0.0193208307, -0.0429146849, 0.0122734159, 0.0342149325, -0.00297420914, 0.0188289732, -0.0284202211, -0.00334502454, -0.036827933, 0.0434680283, -0.00620587543, 0.0240549725, 0.00780441705, 0.0259916671, -0.0197050963, -0.033323437, -0.0313867442, 0.0294500496, 0.0386724025, 0.0248849839, -0.0251001734, 0.0480177216, -0.00949133933, 0.03544458, 0.00539892, -0.0346145667, -0.00306451134, 0.00618666224, 0.0138719575, -0.00386954588, 0.0217340142, 0.0490936637, -0.0171382073, -0.0221029073, -0.0253461022, 0.0122042485, 0.00469571538, 0.00488016242, 0.0292502325, -0.0238244142, 0.00263221352, -0.017184319, 0.000139295968, -0.0396561213, 0.00797733571, -0.0206734426, -0.000848264433, -0.0212114137, -0.0245314613, 0.0213497486, 0.00195302558, -0.0196436141, -0.0356905088, 0.0485710651, 0.0142485369, 0.0264835265, 0.0397483446, 0.0310024787, -0.0301724672, -0.0355060622, 0.0319093429, -0.0171228368, 0.00252269814, 0.0248388723, -0.0244546086, -0.0162774548, 0.00952208, -0.0185061898, 0.00923003908, -0.00629425654, 0.0164157897, 0.0165233836, -0.00290504145, -0.0310178492, -0.0187060069, -0.0164465308, 0.0335078873, 0.0268524196, 0.0243470147, -0.00937605929, -0.0524444506, 0.065048337, 0.01264231, 0.0353830978, 0.00214227592, -0.0474336408, -0.00280705397, 0.00666699326, 0.0549652278, -0.0384879559, -0.0402709469, -0.0341227092, 0.0306489561, 0.00480715185, -0.0393179692, 0.0224103201, -0.026806308, -0.0107670985, 0.0107670985, -0.00376579445, -0.0312022977, 0.00328354212, -0.0396561213, -0.0267601963, 0.00528364, -0.00332773267, 0.0411931798, -0.00643643457, -0.0393794514, -0.0349527225, -0.0221951324, 0.03618237, 0.0202584378, 0.0190749019, 0.0139641808, 0.00954513624, -0.0271137208, -0.0142562222, 0.000748355582, -0.0247312784, -0.0234862603, 0.00959893316, 0.0179374777, 0.0604371578, 0.016169861, -0.0276670624, -0.00865364168, -0.00498391362, 0.0298343152, 0.00206734426, 0.00826937705, -0.0135491751, -0.00468802964, 0.00936837401, 0.00196455349, 0.00606369786, 0.00753543153, 0.00452663889, -0.0367357098, -0.00844613928, -0.00947596878, -0.00747010671, -0.0089226272, 5.05548305e-05, 0.0202123262, -0.0178298838, -0.0210730787, 0.0534281693, 0.0213804897, -0.00418080064, 0.00903022103, -0.00502618263, -0.00158893468, -0.0323089808, 0.0392257459, -0.0251770262, 0.00998319779, 0.00562179321, 0.0088918861, -0.0272827968, -0.00545655936, -0.00781210233, 0.0384572148, 0.0214266013, 0.0232095905, -0.000709448766, 0.0478947572, -0.0021096135, -0.00017051748, -0.0231942199, 0.000320380728, 0.0148556754, -0.00642106403, 0.00881503336, -0.0117354449, 0.00534896506, 0.00317402673, 0.0286815204, 0.0132263927, -0.00205773767, 0.0371046029, -0.0258072205, -0.0457428768, -0.00694366405, -0.00555646839, -0.0292963441, -0.0233632959, -0.0224718023, -0.0474336408, 0.0189980492, -0.023762932, -0.0290811565, -0.025592031, -0.0162006021, 0.0188136026, -0.0636957213, 0.000708007778, 0.00389836589, -0.0387953669, 0.016677089, 0.0565945096, 0.0326163918, -0.0140179778, -0.0295883846, 0.0347682722, -0.0165387541, -0.0240549725, 0.0165848657, 0.0489707, -0.0169691313, -0.0234862603, 0.0329545438, -0.0313713737, 0.00861521531, -0.0179835893, -0.00795428, -0.0191978663, 0.00246697967, 0.0386416614, -0.0113665508, -0.00243047439, 0.00763534056, 0.0246697962, -0.0118507249, -0.0129574072, -0.0251923967, 0.013741307, 0.0135261193, 0.00840771291, -0.0101215336, -0.00487247715, 0.00734714186, 0.0342764147, -0.010329036, 0.00147173402, 0.0219184607, 0.0587771349, 0.0151323453, -0.00934531819, -0.0341841914, -0.0415005907, -0.0284355916, -0.0134876929, 0.0287737437, 0.0185215604, -0.0170767251, -0.0367049687, -0.00655939896, 0.0186906364, -0.0510610975, -0.0112666423, -0.00600605784, 0.0113819214, 0.000945291249, 0.0102598686, 0.0154013308, 0.0186445247, -0.0117815575, -0.0410394743, -0.000606657937, 0.0508151688, -0.0112973833, -0.0047802534, -0.010382833, -0.0327700973, 0.0573630407, 0.0242086779, -0.0112282159, -0.00479178131, 0.0109669156, -0.0436217338, 0.024946468, 0.0162620842, 0.0272059441, -0.0480484627, 0.0253768433, -0.028896708, 0.00627120072, -0.000597531674, -0.0135876015, -0.0368894152, 0.00645564776, -0.0110130273, -0.0167693142, 0.0269753858, 0.0299572796, 0.00341227092, -0.00214227592, -0.00806956, 0.0162159726, -0.010244498, -0.0130265746, 0.0053873919, 0.0203352906, -0.00952208, 0.0534589104, -0.0498314537, 0.0091070747, 0.0270983502, 0.0137643628, -0.0252385084, 0.0243009031, -0.0293117147, -0.0191978663, -0.0250848029, -0.0310639627, 0.0170306135, 0.0375964642, 0.00743552297, -0.00723570492, 0.0169691313, 0.0336923338, 0.00888420083, -0.00968347117, -0.0237783026, 0.0278668795, 0.0320937932, 0.0291580092, -0.0200739894, -0.0700898916, 0.0237936731, -0.0370431207, -0.0141716842, -0.0047495123, -0.02082715, -0.00512224901, 0.029096527, -0.0463884398, -0.0148710459, 0.00187233, -0.0418080054, -0.0139872367, -0.0197050963, 0.0103367213, -0.0401787199, 0.0125039751, -0.0419002287, 0.00901485048, 0.0138642723, -0.0398098268, 0.0131341685, -0.000430376502, 0.0253768433, -0.00747779198, 0.0310947038, -0.0190441608, 0.00765455374, -0.00448052678, 0.0222719852, 0.0410702154, -0.00311830849, -0.0238858964, -0.0266372319, -0.000930401031, -0.0237014499, -0.0446054526, 0.069905445, 0.0160622671, -0.00284548034, 0.0101983864, 0.0316941552, -0.0457736179, -0.0115125719, -0.00863058586, 0.0197665785, 0.0121735074, -0.015970042, -0.0179528482, -0.03470679, -0.0183371138, -0.0145790046, 0.00683222711, 0.019474538, 0.0202584378, 0.00402709469, -0.000569192169, -0.0221951324, -0.0116201658, -0.0149478987, 0.0227023605, -0.0583160184, -0.023593856, -0.00461501954, 0.0302646905, 0.0141563127, -0.0221336484, -0.000696479867, 0.0507229455, 0.0197204668, -0.045804359, -0.0277592856, 0.0246544257, 0.00753927417, -0.0284202211, -0.018936567, -0.0320937932, 0.00539123453, 0.0141563127, -0.0281742904, 0.0172458012, -0.0249157269, 0.0569634065, -0.0117508154, -0.0259148143, -0.013180281, 0.0236245971, -0.0219030902, 0.000984678394, -0.0405168757, 0.00228061131, 0.0221951324, -0.0226101372, 0.019243978, -0.0419617109, -0.0184754487, 0.0418080054, 0.0191978663, -0.00324319443, -0.015324478, -0.036090143, 0.00301071419, 0.0154013308, -0.00992940087, 0.00785821397, -0.00129497214, 0.0148633607, -0.0434987694, -0.00445747096, -0.028727632, -0.00391565775, 0.00490321824, -0.0126499953, 0.00616744906, 0.0219492018, 0.00465344591, -0.00589846401, -0.0102752391, 0.00274172891, -0.00306835398, 0.00413853116, 0.0109669156, -0.00272827968, -0.0207041837, -0.0304645095, 0.00324511575, 0.0181372967, 0.0171996895, 0.00738556823, 0.0231481083, -0.0164311603, 0.00569096068, 0.011120622, -0.0449436046, 0.0227331016, 0.0199817661, -0.0172150601, -0.00143811083, -0.000737308, 0.0274518728, 0.0267909374, 0.0128498133, -0.0223027263, 0.0017051748, -0.00724723283, 0.0237168204, 0.00911476, -0.0179682188, -0.0177376606, 0.0176915489, -0.0163543075, -0.0301570967, -0.0128574986, -0.0192132369, -0.011120622, 0.0182910021, 0.0374120139, -0.00683606975, -0.00859215949, -0.019474538, 0.0162313432, 0.00204620976, -0.028558556, -0.022010684, 0.0205658488, 0.0131879663, 0.00876892172, 0.00414621644, -0.00253999, -0.000764686847, -0.00672847545, 0.0235477444, -0.00167347293, 0.0108746924, -0.0221490189, -0.062312372, 0.0186752658, 0.00552188419, -0.014701969, 0.00817715377, 0.00850762147, 0.0136721395, -0.000550459255, 0.000854508718, -0.0156933721, -0.00246890099, -0.041992452, 0.0108670071, -0.000400836172, 0.0411009565, 0.0334771462, -0.00492243143, -0.00612133741, -0.0273596495, -0.0325241685, 0.00114895159, 0.0169383902, 0.0109899715, 0.0022095223, -0.0201969557, -0.00121523719, -0.0254690666, -0.011881466, -0.0113896066, 0.0227638427, -0.0085306773, 0.012135081, -0.0168154258, 0.0866901278, -0.00348528125, -0.00379653578, -0.026806308, 0.00322013861, 0.0307104383, -0.0160161536, 0.012473234, 0.00289159222, 0.0263451915, 0.0255459193, -0.00384841138, -0.0136644542, 0.0260224082, -0.00489169033, -0.00280513265, 0.0305413622, -0.00511840638, -0.0180450715, -0.000568711839, 0.00549882837, -0.0161237493, -0.0248696133, -0.0108516365, 0.04537398, -0.00264182, 0.015662631, 0.0110591389, -0.0221643895, -0.00923003908, 0.00483020768, -0.011343495, -0.013856587, -0.0103367213, 0.0229790322, 0.0117431302, 0.0165387541, -0.0141025158, 0.0120582273, 0.0135952868, -0.00542197563, 0.00785052869, -0.000930881361, -0.00749316253, -0.00893799774, -0.0610212423, -0.00868438277, -0.0156703163, 0.00206542294, 0.014448354, 0.00339113642, 0.00543350354, 0.00643643457, 0.021334378, 0.0289735608, -0.0192286074, 0.00149382919, 0.0129420366, -0.000967866799, -0.00930689182, -0.0108132102, -0.0100523653, 0.0345223434, -0.0040693637, 0.0271444619, -0.0375657231, 0.0166617185, 0.0164157897, 0.00811567158, -0.0111052515, 0.01108988, -0.00401172414, -0.0152629958, -0.00948365405, -0.0109592304, -0.00718575064, -0.012135081, -0.00337768719, -0.000299486332, 0.0272674263, -0.0389490761, -0.0266218614, -0.00397329731, 0.000617705577, 0.00900716521, -0.0263913032, -0.0152860517, 0.00249387813, -0.0161083788, 0.0147788217, 0.000353283394, -0.00975264, -0.0208732616, 0.0282972548, 0.00562563585, 0.00461886218, 0.0220875368, 0.00977569539, -0.01108988, 0.00401556678, -0.00329314894, 0.021334378, -0.0162467137, 0.0116509069, 0.0185523015, 0.00420385646, 0.00269561727, -0.0103982035, 0.0110821947, 0.0116201658, 0.00148134062, -0.00100869499, 0.00383304083, 0.0250848029, 0.00621740334, 0.0169845019, -0.00228253263, 0.00857678894, 0.0114049772, 0.0149863251, 0.0111667337, 0.0168000553, -0.00887651555, -0.0511533208, 0.0107901543, -0.00109995785, 0.00206158031, 0.02838948, 0.0172765423, 0.00751237571, -0.0259916671, -0.0272366852, 0.00996782724, 0.0192286074, 0.00833854452, 0.00436524767, 0.015462813, -0.0284817033, 0.0434680283, 0.0368586741, 0.00409241952, 0.0373812728, 0.0263451915, 0.012019801, -0.00779288914, 0.0214419719, 0.0318478607, -0.0268985312, 0.0201815851, 0.0111283073, -0.00647486094, 0.00584466662, -0.0267140847, -0.0202584378, -0.00652097259, -0.031463597, -0.0282357726, 0.0144790951, -0.00629425654, -0.00146597, -0.0012104339, 0.00746242143, -0.0275748372, 0.00904559251, 0.00366396434, -0.0339997448, 0.000145420185, 0.0045035826, 0.0217032731, 0.00650560204, 0.0576089695, 0.0329545438, 0.0219645724, 0.00382535555, 0.0188443437, -0.0151630864, 0.0183063727, -0.00890725665, 0.0134646362, 0.0217954963, -0.00318747596, 0.00999856833, 0.0412854031, 0.0406705812, -0.0223334674, 0.00631346973, 0.0112051601, 0.0154551277, -0.00211537746, -0.02788225, 0.0128728691, 0.00552188419, 0.0158624481, 0.00321245333, 0.0210423376, 0.0142562222, 0.0487555116, 0.0115125719, 0.01108988, -0.0240088608, -0.0266526025, -0.0260070376, 0.00647101831, -0.0203660317, 0.0211499315, 0.0159546714, 0.0130880568, 0.0263451915, 0.00587925036, 0.0240857136, 0.00134204456, 0.0142024253, 0.00715500955, -0.0308948848, -0.0237936731, -0.0023420935, -0.0250079501, 0.0386109203, 5.88705589e-05, -0.0360594019, 0.0138796428, 0.0168000553, 0.00417695753, -0.0010701773, -0.0191978663, 0.0139872367, -0.0110130273, 0.00134684797, -0.0270983502, 0.00954513624, 0.0160622671, -0.0144176129, 0.00283010979, -0.00182717887, 0.0144252982, 0.000137734896, -0.00861521531, 0.0444824882, 0.0141486274, -0.0401172377, -0.0203045495, 0.00223834207, -0.00158413139, -0.00268408912, -0.0278053973, 0.0324012041, -0.00569096068, 0.0111667337, 0.0159854125, -0.024946468, -0.0184447076, 0.00999856833, -0.00825400651, -0.00620971806, -0.0126730511, 0.00650944468, -0.00596763147, 0.0139334397, -0.00441135932, -0.0207502954, 0.0214419719, 0.00975264, -0.0187674891, 0.0151016042, -0.00461501954, -0.00151880644, 0.0407935455, 0.0207195543, 0.0289735608, -0.0154704982, -0.03047988, -0.00889957137, 0.0297420919, -0.0470954888, 0.0143791866, 0.0189826787, 0.012304157, 0.0375349782, 0.000310053612, 0.00026778449, 0.0415005907, -0.0155704077, 0.00918392744, -0.0219953135, -0.0291887503, -0.0273135379, -0.0383649915, -0.0191210136, 0.0355982855, -0.00407320634, -0.0132725043, -0.00728565967, -0.0155627225, -0.031970825, -0.00588693609, -0.0466036275, -0.0333541781, -0.023055885, 0.0385494381, 0.031970825, -0.0139718661, 0.00539892, 0.00552956946, 0.00331428344, -0.00413468853, 0.016508013, 0.026130002, 0.0339690037, -0.00135933654, 0.0151092894, -0.0287122615, 0.0140717747, -0.0104827425, -0.0227023605, -0.0255459193, 0.0118660955, -0.018567672, -0.000504827825, -0.000889572897, -0.000173759719, -0.0163235664, -0.0116278511, -0.0148095628, 0.0275440961, -0.0252077673, 0.0214573424, -0.0113281244, 0.0388875902, 0.00986791868, 0.00584082399, -0.00458812108, 0.00782363, 0.0193669423, -0.0209040027, -0.0463577, -0.0159546714, -0.00117873214, -0.0179528482, 0.0300648734, 0.0135491751, 0.00956819206, 0.023762932, -0.0392257459, 0.00554878311, 0.0336923338, 0.0111590484, 0.0211960431, -0.000720976735, 0.0391335227, -0.0145943752, -0.0379961, -0.0213804897, 0.000684951898, -0.00838465709, -0.0225025434, -0.0233325548, -0.0134415803, -0.0218877196, -0.0132263927, 0.0266833436, 0.00391757907, 0.0212114137, 0.00100004894, -0.00697440514, 0.0253614727, 0.00869975332, -0.00752774626, -0.035751991, -0.0375349782, 0.00893799774, -0.0147327101, 0.00999088306, -0.00485710613, -0.0367357098, 0.00664393744, 0.0375657231, 0.00559873739, -0.00386762456, -0.0392257459, -0.0070743137, -0.00349680916, 0.00117008609, 0.0169076491, -0.0243931264, 0.00608291104, 0.000801192, 0.00877660699, 0.00545271672, -0.0127191627, -0.00715885218, 0.0143715013, 0.0272366852, 0.0115663689, 0.0293578263, -0.0339075215, 0.0116893332, 0.0151400305, 0.0339690037, 0.00723186228, -0.000600413652, 0.00247658626, -0.0107978396, -0.0263913032, 0.015324478, 0.0105211688, 0.00748932, -0.0168154258, 0.0144252982, 0.0146635426, -0.0105903363, 0.00559873739, -0.0158470776, 0.00388683798, -0.00240933988, 0.00739709614, 0.0191671252, 0.0078927977, -0.00876123644, -0.0294807907, -0.0136490837, 0.00213459064, -0.00483789295, 0.0282050315, 0.00908401888, 0.00361400982, 0.0086766975, 0.0102982949, 0.028727632, 0.00552572682, -0.00330467685, -0.0265142675, 0.0106210774, -0.00690908, 0.00451511052, -0.0108670071, 0.0091070747, -0.00854604784, -0.0229175501, -0.0119813746, 0.0201354735, -0.0116047952, 0.00273404364, -0.0275902078, 0.0108439513, -0.0252999905, 0.00018204542, -0.0167232025, 0.00181565096, 0.00673616072, -0.0196897257, 0.00140833028, 0.0107670985, -0.00159662, 0.0240857136, 0.0732254907, -0.0265296381, -0.00584466662, -0.0499544181, -0.00830780342, -0.010836266, 0.0252231378, 0.00370239071, 0.0125424014, -0.00131130347, 0.0110745095, -0.021472713, 0.0315404497, 0.0123502687, -0.00259762956, 0.042945426, 0.00110476115, 0.00799270626, -0.0136106573, 0.00826169178, -0.0131649105, 0.00263605616, 0.0118199838, -0.0125885131, 0.00719343591, -0.00197512074, 0.00293001859, -0.00510687847, -0.0539815128, -0.00539123453, 0.0299726501, -0.0138489017, 0.00934531819, -0.0103520919, -0.0239473786, 0.00626351545, -0.0065325005, -0.00676690228, -0.017891366, 0.0172611717, -0.00909938943, 0.0075008478, -0.0335078873, 0.0310947038, -0.00966041535, -0.0135030635, -0.0202738084, -0.00286277244, 0.000767088495, 0.00173495535, -0.00563332113, -0.00642106403, -0.0297113508, 0.00109227258, -0.00645564776, 0.0194437951, -0.0116201658, -0.0113819214, 0.0177684017, -0.00604448421, -0.0202123262, -0.0209808555, -0.000509150792, 0.00989866, 0.0232864432, 0.004219227, -0.0362438522, -0.00786589924, 0.015040122, -0.0118891513, -0.038918335, 0.0121965632, 0.014617431, -0.0029799731, -0.00855373312, 0.0410702154, 0.000787262397, -0.0032989129, -0.0287122615, -0.0232557021, 0.00386378192, 0.0166924596, -0.0162928253, 0.00572554488, 0.00916087162, -0.0090763336, -0.00217301701, -0.0101292189, -0.0144252982, -0.0237936731, 0.00253038341, -0.0078197876, -0.00735867, -0.0245007202, 0.00932226237, -0.0195821319, 0.0160161536, 0.028020585, -0.0147480806, -0.00666315062, -0.0215956792, 0.00554109737, 0.0138412165, 0.0119198924, 0.0020193113, 0.0172304306, 0.0314789675, -0.0129266661, -0.0132801896, 0.0119429482, 0.038518697, 0.00560642267, 0.00821558, 0.00898410939, 0.0301263556, 0.00755464472, 0.00661319634, 0.00345646148, -0.00906096306, 0.017184319, -0.0239473786, -0.0172611717, 0.0165387541, -0.0451587923, -0.0172150601, -0.0193362013, 0.0183678549, -0.00342764147, 0.0317863785, 0.00035208257, -0.00454585208, 0.0219799429, 0.00199049129, -0.00383304083, -0.0172458012, 0.019413054, -0.00640953612, -0.00741246669, 0.0142101105, 0.0238705259, -0.0270061269, 0.020458255, -0.0160622671, -0.0120121157, 0.00355252763, -0.0197973195, 0.000543734583, 0.00825400651, 0.0210269671, 0.0234555192, -0.00693213614, -0.0204736255, 0.00810030103, 0.00253038341, 0.00953745097, 0.000254815561, 0.00908401888, -0.0115894247, -0.0098602334, 0.0118584102, 0.00884577446, 0.0177069195, -0.011120622, 0.0157548543, -0.022856066, -0.00535665033, 0.0178452544, 0.0127960155, -0.00483405031, -0.00261684298, -0.00151688512, -0.00702820206, 0.0351371691, -0.0227177311, 0.0125424014, -0.0133032454, 0.0257457383, 0.0213190075, 0.00755080208, 0.00253422605, -0.0100369947, 0.0135107487, -0.00153225567, 0.0131187979, -0.0225025434, -0.0154474424, -0.0267755669, -0.0345223434, 0.00366204302, 0.00797733571, -0.00561410794, -0.000354484218, -0.0095297657, 0.00275325682, -0.00556031102, 0.00640569348, -0.001460206, 0.008861145, -0.00578702707, -0.0344608612, -0.0138796428, -0.0294500496, -0.0208886322, -0.0222412441, -0.0179989599, -0.00640569348, -0.0234862603, -0.000205821809, -0.0121581368, -0.00477641076, 0.0230251439, -0.010329036, -0.00348528125, -0.0071088979, 0.000265142677, 0.02268699, 0.0328623205, 0.0152629958, 0.0156703163, -0.00718575064, -4.12784393e-05, 0.0289889313, -0.0053220666, -0.0344301201, -0.018736748, -0.0420231931, 0.021472713, 0.0296806078, 0.022379579, 0.0100907926, -0.0223334674, 0.000221432565, 0.0290811565, 0.00713195372, -0.00160334469, -0.00880734809, 0.035751991, -0.035106428, -0.0453432389, 0.0211806726, 0.0235477444, 0.0330775082, -0.0147173395, 0.00265142671, 0.0184447076, 1.16705405e-05, -0.00132571335, 0.00947596878, -0.00968347117, 0.00576781388, -0.00687065348, -6.74864932e-05, 0.0273596495, -0.0184908193, 0.00316442014, 0.010382833, -0.00663240952, -0.0117892427, -0.00973726902, -0.000235602318, 0.0301570967, 0.00115951884, -0.00686296821, 0.0175839551, 0.0101369042, 0.0137182511, -0.0190749019, -0.0121273957, -0.00530669605, -0.0191210136, -0.000757001515, 0.0095297657, 0.00249387813, -0.00383688346, 0.00657092733, -0.0105134835, -0.0110821947, 0.0123348981, -0.019781949, -0.00429992238, -0.017184319, 0.0266372319, 0.0169383902, -0.00242471043, -0.0108823776, -0.0172919128, -0.0188136026, -0.000610980962, -0.0158470776, -0.0274979845, 0.0206580721, 0.00695519196, -0.0201047305, -0.00640953612, 0.0122964717, 0.0295269024, 0.00314904959, -0.00591383455, 0.00297613046, 0.0336308517, -0.00608675368, 0.00494933, -0.0264835265, 0.0128421281, 0.0207502954, -0.00791585352, -0.0103136655, -0.0188597143, 0.0390720405, 0.0170152429, 0.00655171368, -0.0169691313, -0.0172304306, -0.00461886218, -0.00276478473, 0.00230366713, 0.0260224082, -0.00444210041, 0.00245545176, -0.0195821319, 0.0094682835, -0.0143023338, -0.0169537608, -0.00757001527, -0.00507229473, 0.0125731425, -0.0215034559, -0.0063518961, -0.011766186, -0.00623277435, 0.00609828159, -0.000871320313, -0.00679764338, -0.000391229551, 0.00312791509, 0.0114895161, -0.00731640076, 0.0189673081, 0.00883808918, -0.000891013886, -0.0335078873, -0.00383880478, -0.0139026986, 0.00680532865, 0.0015505082, -0.0289581902, -0.0116124805, 0.0388568491, -0.0115663689, 0.0363053344, -0.0118199838, -0.0440828502, -0.002320959, 0.0135030635, 0.0349219814, 0.0199356545, 0.0193823129, 0.0108285807, 0.0172919128, 0.0102521833, -0.00451511052, -0.00579855498, 0.0103059802, -0.00231903768, 0.00643643457, -0.0081387274, 0.005460402, 0.00416927226, 0.0334771462, 0.0188750848, 0.00602527102, -0.0248081312, 0.0120966537, -0.0349219814, 0.000601854641, 0.0218262374, -0.0306796972, -0.00341803487, 0.0278976206, -0.0222412441, -0.0228099544, -0.0220875368, -0.0086459564, 0.00775830494, -0.0209501144, 0.0144252982, -0.0170767251, 0.0199202839, 0.00547577254, -0.0138489017, -0.0142715927, 0.0297882035, 0.0369816385, 0.0172458012, -0.00740093878, 0.0181834083, -0.0297420919, -0.0123425834, 0.0188136026, -0.0300187618, 0.0122349896, 0.0145636341, 0.00445362832, 0.00644027721, 0.00817715377, 0.0290043019, -0.0241625663, -0.0444517471, 0.0341534503, -0.00989866, 0.0172919128, -0.00128440489, -0.0345223434, -0.0402709469, 0.0200586189, 0.0263913032, 0.0212882664, 0.0255305488, 0.00853836257, -0.00170421414, -0.0225793961, -0.00725491857, 0.00323358783, 0.00740093878, -0.00366204302, -0.00478793867, 0.00349680916, -0.00151304237, -0.00738941086, -0.0120659126, 0.0032720142, -0.0120889684, -0.0167385731, -0.00278784079, 0.00184351008, -0.00846919511, 0.0142331664, -0.0105365394, -0.0181065556, -0.00138335302, 0.0244084969, 0.0156165194, -0.00431529293, 0.00114703027, 0.00314520695, 0.00271675177, 0.0328623205, 0.0032508797, -0.022010684, 0.00271483045, 0.0287583731, 0.00604832685, -0.0028416377, -0.00350833707, 0.00244392385, -0.00889957137, -0.00950671, -0.000555742881, 0.0188443437, -0.019474538, -0.00532590924, -0.00695134932, -0.0231788494, -0.0034410907, -0.00973726902, 0.011966004, 0.0102521833, -0.00373313203, 0.00125462434, -0.0026091577, 0.0153475339, -0.0138873281, -0.00819252431, -0.000200658251, -0.00233440823, -0.0150785483, -0.00843845401, 0.00165137777, -0.0127960155, 0.00885346, -0.0103751477, 0.0262529664, 0.00311062299, -0.00141697621, -0.0141332569, 0.0115279425, -0.00562563585, 0.00551419891, 0.00722033437, 0.00124117511, -0.00346030411, -0.00914550107, -0.0339997448, -0.0028800643, 0.0178298838, -0.00283779507, 0.0133263012, -0.0023420935, 0.00261492166, -0.00863058586, 0.0095297657, 0.00827706233, -0.0192593485, 0.0029588386, 0.0137874186, -0.0120889684, 0.0271290913, 0.0348912403, 0.024746649, 0.0112359012, 0.0163850486, -0.00850762147, -0.0240396019, 0.0109361745, -0.01108988, -8.27970434e-05, -0.00567559, 0.00293770386, 0.00986791868, -0.0106441332, 0.0138027892, -0.00355252763, 0.0120274862, -0.00900716521, 0.0055679963, 0.0137566775, 0.0162928253, 0.0266526025, 0.0146097457, -0.0110745095, -0.0143253896, 0.02008936, -0.00732408604, -0.00253422605, -0.0101983864, 0.0121273957, 0.0183371138, 0.01368751, 0.0135338046, -0.004641918, -0.00519141648, -0.00625967281, -0.0272366852, 0.0253461022, -0.011343495, -0.00738556823, -9.49854439e-05, -0.0134262098, 0.00183870678, 0.00669773435, 0.0135261193, -0.000246409763, 0.0117123891, -0.00411547534, -0.00220567966, -0.00280129, 0.00510687847, -0.00600605784, -0.0131418547, 0.0043883035, 0.0112282159, -0.0127960155, 0.00972189754, -0.00388107379, 0.00106633466, -0.010751728, 0.0147557659, 0.00466113118, -0.00775446231, -0.0242547914, 0.00543350354, 0.00409626216, 0.0338767804, 0.0327086151, 0.00979875121, 0.0124655487, -0.00750469044, 0.00517988857, 0.00445747096, -0.020458255, -0.00098948169, -0.00878429227, -0.00117104675, -0.0167693142, 0.0122426748, -0.00449974, 0.0375042371, 0.0171382073, -0.0129650924, -0.0119352629, -0.0206119604, -0.00481867976, -0.0183063727, 0.00384264742, -0.00720880646, -0.00663625216, -0.0292809736, 0.00499928417, -0.000415486254, -0.0022690834, -0.00461501954, -0.00333157531, 0.0297420919, -0.000256736879, -0.00185503799, -0.0379038751, 0.00876123644, -0.0063518961, -0.0331389904, -0.0187060069, 0.0029799731, -0.00599453, -0.00825400651, 0.0149863251, -0.0033796085, -0.00854604784, -0.0299111679, 0.0185215604, -0.00661703898, -0.0231788494, 0.00390412984, 0.00109707587, -0.0291272681, -0.0195052791, 0.0309409965, -0.00056727085, 0.000851146411, -0.00528364, -0.0104673719, -0.0114357192, 0.00473029912, 0.0134338951, -0.00778520387, 0.0155627225, -0.00197512074, 0.0156395752, -0.0226562489, -0.0015245704, 0.0028800643, 0.00327393552, 0.0139103839, 0.0164619014, 0.00982180703, -0.000594649697, -0.02082715, -0.0021787812, -0.0109822862, -0.000205701726, -0.0100984778, 0.00192996964, 0.0345223434, 0.00833854452, 0.00530669605, -0.00598300202, 0.0125270309, -0.0236860793, 0.0022902179, 0.0158624481, 0.00456506526, -0.0121888779, 0.00564869167, 0.00430376502, -0.00795428, 0.0247620195, 0.0212267842, -0.0191210136, 0.02008936, 0.018260261, 0.000894856523, -0.00786974188, 0.0180143304, -0.0203045495, -0.00582545344, 0.00667852117, 0.00683606975, 0.00137086445, 0.0158778187, -0.0147096543, 0.0134262098, 0.0237014499, -0.0308948848, -0.00205389503, -0.00778136123, -0.0105903363, -0.0133416718, -0.0250540618, -0.00860753, -0.00725107547, 0.0136413984, -0.0196589846, 0.0105134835, 0.00793122407, -0.0084999362, 0.000601854641, 0.0056410064, -0.0132801896, -0.0160468966, 0.00602911366, -0.00782363, -0.021165302, 0.0372583084, 0.00269946, -0.00906096306, 0.0167385731, -0.01368751, -0.00294538937, -0.00977569539, -0.000163072356, -0.0105288541, 0.00577549916, -0.0109438598, -0.00393487094, 0.0116893332, -0.0160622671, -0.011120622, -0.0271290913, 0.00297228782, 0.0143484455, 0.00555262575, 0.00533359451, 0.00365820038, -0.00722417701, 0.0209654849, -0.00184639206, -0.0114895161, 0.0102368128, -0.00996782724, -0.0352601334, -0.0301417261, -0.0120966537, -0.0214880835, 0.0242394209, 0.0116662774, -0.000200418086, -1.76671729e-05, -0.00186560536, 0.0163081959, 0.0109515451, -0.00231135241, 0.000518757384, 0.0201662146, 0.00552188419, 0.00223834207, 1.30815124e-05, -0.0232095905, 0.0104596866, 0.0179374777, -0.0151938284, 0.00638263719, 0.0226255078, -0.00165714172, 0.00673616072, -0.00490321824, 0.00857678894, -0.00297228782, 0.0101753306, 0.0115356278, 0.0134953782, 0.00841539819, 0.00804650411, -0.0156395752, -0.00823863596, -0.00604064157, 0.00794659462, 0.0185215604, -0.0307411794, -0.0122734159, -0.00309909508, 0.00758922845, 0.00495317252, 0.0119890599, -0.0190287903, 0.035751991, -0.00717038, -0.0266987141, 0.0195513908, -0.00509919319, -0.0313098915, 0.00693597877, 0.00513761956, -0.00331236213, -0.00612902269, -0.011174419, 0.0140794599, 0.0044305725, 0.0279283617, -0.0057140165, 0.0139718661, 0.00331620476, 0.0200739894, -0.00249579945, 0.0207656659, 0.00731255813, 0.0113511803, 0.00332389, -0.0172611717, -0.00378885027, 0.00201354735, 0.0152629958, 0.00415005907, -0.00103847543, -0.00521063, -5.8180085e-05, -0.0179682188, 0.0145252077, -0.00944522768, 0.0201662146, 0.00588693609, 0.000782459101, 0.00171286007, -0.00847688, 0.00460733427, -0.00804650411, -0.0224718023, 0.0123195276, -0.0114126625, 0.00504923891, 0.0185523015, 0.0358134732, -0.0201969557, -0.0067899581, 0.00358711137, 0.00244584517, 0.00321437465, 0.00479178131, -0.00693597877, -0.00810030103, -0.0160007831, 0.00832317397, -0.00619050488, -0.014617431, -0.0194437951, -0.02838948, -0.0207502954, -0.0279591028, 0.00852299202, 0.00366204302, 0.00221528625, 0.00885346, 0.00891494192, 0.0256996267, 0.00987560395, 0.00625967281, -0.00116336148, 0.026806308, 0.00540660508, -0.00214419723, -0.00537970662, -0.000927519, 0.00421154173, 0.00927615073, 0.0172304306, -0.0200739894, 0.0148249334, 0.0271137208, -0.00446515623, -0.00594073301, -0.0286354087, -0.0371660851, 0.0165694952, -0.0249925796, -0.032677874, -0.00840002764, 0.0226408783, -0.00698593305, -0.00053460832, -0.0120889684, 0.00733945658, -0.0311408155, 0.011766186, -0.00800807681, -0.00414621644, 0.00105961, 0.00187425129, 0.0134646362, 0.0116047952, -0.00923003908, -0.0149940103, -0.0196282435, -0.00722801965, 0.0219492018, 0.00739709614, 0.00966810063, -0.0139180692, -0.0295883846, 0.0114972014, 0.0112359012, 0.0188597143, 0.0120274862, 0.0113819214, 0.00933763292, 0.0466651097, 0.00303184893, -0.00579855498, 0.0200278778, 0.0287430026, -0.0047802534, 0.00448436942, -0.0210730787, 0.00295307464, -0.0025707311, -0.00343340542, -0.00535665033, -0.0108208954, -0.00597147411, -0.00761612738, -0.00400019577, -0.00399251049, 0.0109592304, 0.0296498667, -0.00609828159, 0.0211499315, -0.00507998, 0.00589077873, -0.0130035188, -0.00440751668, 0.00923772436, 0.003781165, 0.00876892172, -0.00223834207, -0.000145540267, 0.00436140504, -0.00147557666, -0.022886809, 0.029941909, -0.00717038, 0.0186598953, 0.0106441332, 0.00914550107, -0.0037984571, 0.00121811929, -0.00373889599, 0.00733945658, -0.00574091543, -0.0150862336, 0.0243009031, 0.0046726591, -0.0110283978, 0.0263605621, -0.025115544, -0.0160622671, 0.00458812108, 0.012980463, 0.0299111679, -0.0128728691, -0.0234862603, 0.00560642267, -0.0103905182, -0.0104904277, 0.000743552286, 0.0168922786, -0.011343495, 0.016169861, -0.0154474424, -0.0250540618, -0.0199049134, 0.0234708898, -0.00930689182, -0.0102906097, 0.018936567, -0.00448436942, -0.00833854452, 0.000529805, -1.80574407e-05, 0.033753816, -0.00846919511, -0.0162159726, 0.0121965632, -0.00625967281, -0.00779673178, -0.0022095223, 0.000492339197, -0.00762765529, -0.0146328015, 0.0133800982, -0.00839234237, -0.031325262, -0.00192324503, -0.0161237493, 0.00627504336, 0.0072126491, 0.0261914842, -0.0261761136, 0.00283395243, 0.000395552517, 0.00403093733, -0.010413575, 0.00861521531, 0.00813104212, -0.0142408516, 0.00977569539, -0.00877660699, 0.0172765423, 0.00613286532, -0.0141255716, -0.0115048867, 0.00610596687, 0.0149940103, 0.0211345609, -0.0067476891, 0.0262068547, 0.00594841829, 0.0198588017, 0.00855373312, 0.0315097086, -0.0132110221, -0.00533359451, 0.023732191, -0.0118584102, -0.00806956, 0.0208886322, 0.000139536132, 0.00441904459, -0.000757481903, 0.0213804897, -0.0209040027, 0.0176300667, 0.0182448905, 0.0341534503, -0.00851530675, -0.0163850486, -0.018398596, 0.0373812728, -0.00039219021, -0.0149940103, -0.00766992429, 0.00812335685, -0.0141486274, 0.000126807368, -0.0159085598, -0.0208886322, -0.00837697182, 0.00575628597, -0.0107440418, 0.0129574072, 0.0255612899, -0.00225371262, -0.000214107509, 0.00629809918, -0.0103597771, 0.00498775626, 0.0133724129, -0.014363816, -0.0134492656, -0.00670926226, 0.000499063812, -0.00296652387, 7.84740623e-05, 0.00723186228, 0.0150554925, -0.00602142839, -0.0081079863, 0.00762381265, -0.00765839638, 0.00132955599, 0.00486863451, -0.00324511575, 0.00745473616, 0.00725491857, -0.0110360831, 0.00452279625, 0.000961622514, -0.00917624217, 0.0106364479, 0.0109746009, -0.0101830158, -0.00666315062, -0.00121523719, -0.046449922, 0.0329545438, 0.00229406054, 0.0106364479, -0.00640185084, 0.0146865984, 0.00800807681, -0.00520294439, -0.00463423273, 0.000253854902, 0.0197358374, -0.00757770054, 0.0158009659, 0.0107824691, 0.0121427663, -0.00779288914, -0.0106441332, 0.0182910021, 0.00747779198, 0.00462270482, 0.0384879559, 0.00144867809, -0.00423844, 0.0248542428, -0.0167846847, -0.0185369309, -0.0206734426, 0.000463519333, 0.0186752658, 0.0211806726, 0.0234094076, -0.0244546086, 0.00613286532, -0.0181065556, -0.003139443, 0.00701667415, -0.0187828615, -0.0172611717, -0.00941448659, -0.00923772436, 0.010920804, -0.0149632692, 0.00494164461, 0.0102982949, -0.00105000346, -0.00462270482, -0.010329036, 0.012388695, 0.00415005907, -0.00224410603, -0.0217801258, 0.00259570824, 0.0184447076, -0.00683222711, 0.0321245342, -0.0191210136, -0.0168154258, -0.0187060069, -0.026130002, -0.0133416718, -0.0175224729, 0.0274211317, 0.00377732236, -0.0270214975, -0.0114972014, -2.26506054e-05, 0.00434987666, 0.00456122262, 0.000154666559, -0.0157855954, -0.00879197754, -0.0208117776, 0.0191978663, -0.0109284893, -0.00688218139, 0.00536433561, 0.0102214422, -0.027036868, 0.00761612738, 0.0210423376, 0.00151016039, -0.00472261384, -0.00834623, 0.0414698496, 0.000686873216, -0.00197704206, 0.0154320719, -0.0028205032, -0.0238705259, -0.0275748372, 0.0137566775, 0.00716269482, -0.00761612738, 0.00289159222, -0.0028896709, 0.00806187466, 0.00761997, 0.00619434752, -0.00260339375, -0.00170133216, -0.00750853308, -1.53705896e-05, -0.00336039509, 0.0129650924, 0.0375349782, 0.0193208307, -0.0108516365, 0.00166290568, -0.00345454, 0.00156683952, -0.0128574986, -0.00314136432, 0.00400788104, -0.00577549916, 0.00426149601, -0.0104366308, 0.00489169033, 0.00501081208, 0.00796965, -0.00397329731, -0.00595226092, -0.0120121157, 0.01108988, -0.0130880568, 0.00866132695, 0.0155473519, -0.0296806078, -0.011120622, -0.00475335494, -0.0103982035, 0.00481099449, -0.0286200382, -0.00420769909, -0.0139180692, -0.00519910175, 0.00670541963, -0.00136894314, 0.0222412441, -0.0200432483, 0.0195206497, 0.00384649, -0.0263913032, -0.0176608078, 0.00547193, -0.00164177106, 0.0330467671, -0.0087458659, 0.0117277596, 0.0118660955, 0.00097699312, 0.00275709946, -0.0138335312, 0.010382833, -0.0116355363, 0.0223642085, -0.0195821319, -0.000530285353, -0.00972189754, 0.0031298364, -0.015040122, -0.0197204668, 0.0192900896, -0.00319708255, 0.0075315889, -0.014901787, -0.0216110498, -0.0123656392, 0.00181372964, 0.0117277596, 0.00133435929, -0.00700898888, -0.0230251439, -0.015324478, 0.0135030635, -0.0194899086, 0.0162313432, -0.0156242047, 0.010382833, 0.0161391199, -0.0111974748, -0.00395792676, -0.00292425463, -0.00119026, -0.0110130273, 0.00726644648, -0.0145482635, 0.0127652744, 0.000988521, 0.0178298838, 0.0143330749, -0.00943754241, -0.00536433561, 0.00201546866, -0.00806187466, 0.00129497214, -0.0122734159, 0.000548537937, 0.000160670694, 0.00697056251, -0.00321821729, 0.0170152429, 0.00212114141, 0.00411931798, -0.00416158698, 0.0139564956, -0.00284740166, 0.00717038, 0.00239204802, -0.0047187712, 0.00695519196, 0.00351986499, 0.0057178596, -0.000101169702, 0.00596763147, 0.0160776377, -0.0072126491, 0.00812335685, 0.0154704982, 0.00449974, -0.0144252982, 0.0225947667, -0.0263144504, 0.0053528077, 0.0103751477, 0.000857871, 0.000798790308, 0.0133570423, 0.00842308346, 0.0217186436, 0.00289159222, -0.0328930616, 0.0140487188, -0.0300187618, -0.00835391507, 0.00233056559, 0.0125808278, -0.0148556754, -0.00938374456, -0.00582929607, -0.00534128, -0.00846919511, 0.0192286074, -0.0135952868, 0.0110437684, -0.0119122071, 0.0199202839, -0.0208117776, 0.00875355117, -0.00563332113, 0.0160007831, -0.000991403, 0.00060954, -0.0146789132, 0.0105749657, -0.00664778, -0.00536433561, 0.0187674891, -0.00177722448, 0.00602911366, 0.00936837401, -0.0118891513, -0.00492243143, 0.00286085112, -0.00619819, 0.00545271672, -0.0148249334, -0.00858447421, -0.00267448253, 0.012895925, 0.00620587543, 0.0232557021, 0.00836928654, -0.000171478139, 0.00211537746, 0.0102906097, -0.00741246669, -0.00237091351, 0.0104750572, 0.00996782724, 0.00846919511, 0.0255612899, 0.0281128082, -0.00968347117, -0.0110207126, 0.00473414175, 0.00249772076, -0.00680532865, 0.01108988, 0.00601374311, -0.00583313871, -0.000443585624, -0.0181834083, -0.0223642085, 0.0299572796, -0.00162736117, 0.000118701784, -0.0403631702, -0.0262375958, 0.0139641808, 0.0188136026, 0.019781949, 0.00258994428, 0.0154090161, -0.0134185245, -0.0103444066, -0.00620971806, -0.00887651555, 0.0179835893, -0.0109976567, -0.00683606975, -0.00309717376, -0.00405015051, 0.00312022981, 0.00305682607, -0.00793890934, -0.0091378158, -0.00799270626, 0.0300495028, 0.00612902269, -0.00687449612, 0.0064287493, -0.0135107487, -0.0137643628, -0.0709506422, 0.00211729878, 0.0276516918, 0.0361516252, 0.0261453725, -0.00989866, -0.0093145771, -0.00788511243, 0.0148633607, 0.0213651191, 0.00118833873, -0.0077890465, -0.0128651839, 0.0221182778, -0.00477641076, -0.00422306964, 0.0044305725, 0.000955858559, 0.0196897257, -0.0299572796, 0.0221490189, -0.00473414175, 0.0134800076, 0.00243431726, 0.00551419891, 0.0066400948, 0.0062481449, -0.002730201, 8.67597773e-05, -0.0107209859, -0.0150939189, 0.00181661162, 0.0275287256, -0.0178298838, 0.000707527448, 0.00769298, -0.0106441332, -0.0239781197, 0.000208223457, -0.000171478139, 0.000765647506, 0.00276862737, 8.68798597e-05, -0.0145636341, 0.00478793867, 0.00274941418, 0.0120889684, 0.0111897895, 0.000973630813, 0.0220567957, -0.0053528077, 0.0322167575, -0.0177530311, 0.00822326541, -0.0013151461, 0.00477641076, -0.000422451063, -0.0129727777, 0.0169845019, 0.0225640256, -0.0160315242, -0.0157855954, 0.0010250262, -0.00505692419, 0.00969884172, 0.00624045962, -0.00979106594, 0.0230712555, -0.0135414898, -0.00412316062, 0.00386378192, -0.00866132695, 0.00258225901, 0.0178145133, 0.0122042485, 0.000399155, -0.0110207126, -0.0089226272, -0.00987560395, 0.00565637695, 0.00508766528, 0.0185061898, 0.023901267, -0.00683606975, 0.00786974188, 0.0124578634, -0.00340266433, 0.00862290058, -0.0198741723, 0.00767376693, -0.000252654077, 0.0112896981, 0.014532893, 0.0111283073, -0.00619819, -0.00980643649, -0.0134800076, -0.0183524843, 0.00258610165, 0.00544503145, 0.0171228368, 0.0153475339, -0.00491858879, 0.00530669605, 0.0288044848, -0.0081387274, -0.0123810098, 0.00492627406, -0.00816178322, 0.0151323453, 0.0124424919, -0.0133647276, -0.00639032247, -0.020458255, 0.0291887503, 0.0202738084, 0.0131187979, -0.00296844519, -0.0265142675, 0.00428455183, -0.00535665033, -0.031940084, 0.0109361745, 0.00431913557, 0.0221643895, -0.00398482522, 0.0151938284, -0.00171766337, -0.0150631778, 0.000701763493, 0.0108746924, 0.00710121263, 0.00833085924, -0.0235784855, 0.0123118423, -0.0174456201, 0.00315865618, 0.0304952506, -0.00764302583, -0.0168615375, -0.00430760765, -0.0162620842, 0.0153091075, -0.00766608166, 0.000310774107, -0.0160161536, -0.00809261575, -0.000668620632, -0.00699746097, 0.0027513355, -0.0103982035, 0.0110130273, -0.0125116603, -0.00905327778, -0.00284355902, 0.00298189442, -0.0118353544, -0.0193976834, 0.0103905182, -0.016677089, -0.0048878477, 0.0100831073, -0.00434219139, 0.00327777816, 0.00444210041, 0.0150478072, -0.009283836, -0.0130726863, -0.00379077159, -0.0269446429, 0.0107209859, 0.00830011815, -0.0027993687, 0.00562179321, 0.00859215949, 0.0124040656, -0.0194284245, -0.0304183979, 0.0132571338, 0.0116278511, 0.0174302496, 0.0137336217, -0.0129112955, 0.00720880646, -0.00696287723, -0.0258533321, -0.0160622671, 0.00498391362, -0.0179835893, 0.00692445086, 0.0101830158, 0.00752390362, -0.0137105659, 0.0138873281, -0.00952208, -0.00845382456, -0.0057140165, 0.00357558345, -0.0148864165, 0.0102982949, 0.00594841829, 0.00829243287, 0.0143945571, 0.0002788321, -0.00222105021, 0.00490706088, -0.0106441332, 0.00823863596, 0.0163696781, -0.0220414251, 0.00187136931, 0.0169691313, 0.0200739894, 0.00156011491, -0.000775254099, -0.00379077159, -0.0148326186, 0.0147711365, 0.00332581135, -0.00314136432, 0.018091185, 0.00221720757, 0.0390413, 0.0106595038, 0.0113819214, -0.00661703898, 0.0141409421, 0.0169845019, -0.0151784569, 0.000730583328, -0.00687833875, -0.0220721662, 0.0100984778, -0.022517914, 0.00676690228, 0.000620107225, -0.0119045218, 0.0253153611, -0.0102906097, 0.00984486286, 0.016169861, 0.0179374777, -0.00854604784, 0.00589846401, -0.00175416854, -0.0130112041, 0.0172150601, -0.0196589846, -0.0169076491, -0.0149632692, -0.00742399506, 0.0140640894, 0.0168154258, 0.0142408516, 0.0163850486, 0.000389308232, -0.0238397848, 0.00485710613, 0.00626351545, 0.0127883302, -0.0126346247, -0.00246121571, 0.0261914842, 0.00400788104, 0.0076814522, -0.00324127311, -0.00455738, -0.0243470147, -0.00197127811, 0.00720496383, 0.00948365405, -0.0215034559, -0.0265757497, -0.00945291296, -0.0192747191, -0.0260992609, -0.0108670071, 0.0272520557, -0.0144560393, -0.0047495123, -0.0180450715, -0.0307411794, -0.00625967281, 0.00102214422, 0.0158163365, -0.014617431, -0.00494933, -0.0164772719, 0.00344877597, -0.00765455374, 0.0167385731, -0.00323935179, -0.011120622, 0.00475335494, -0.0197358374, 0.0058523519, -0.00364667247, 0.0040040384, -0.00339497905, -0.027036868, -0.000775734428, -0.00786205661, -0.00305682607, 0.0147480806, -0.0276670624, -0.0127345333, 0.00472645648, -0.0230097733, -0.00489553297, -0.0069590346, 0.00046087752, 0.00667852117, -0.0266526025, -0.0141178863, -0.00195590756, -0.00286085112, -0.00953745097, -0.0206888132, -0.00339497905, -0.0155166099, -0.0144790951, 0.0152629958, 0.00406552106, -0.0134492656, 0.00233248691, 0.0145636341, 0.0297113508, 0.00483405031, 0.00574091543, -0.00576781388, 0.00793122407, 0.00079831, -0.0138027892, 0.00411547534, -0.00165041711, 0.00488016242, 0.000165474, -0.016338937, 0.00530669605, -0.00707047107, 0.00692445086, 0.00706278579, -0.0119736893, -0.0207195543, 0.0162928253, -0.00597531674, -0.00324895838, -0.00210000691, 0.0158931892, -0.0126346247, -0.028189661, -0.011966004, -0.00344685465, 0.0150631778, 0.00926846545, -0.00738172559, -0.00869206805, -0.00769298, 0.0178606249, -0.00354292104, 0.0101445895, -0.0143330749, -0.0167078301, -0.00803881884, 0.00200009788, 0.0061405506, -0.000286757568, -0.0205351077, -0.00984486286, 0.00795428, -0.0126807364, -0.00426149601, -0.00633268291, 0.0766070187, 0.0125347162, 0.0128421281, -0.00509150792, 0.00554109737, -0.00859984476, -0.0274518728, 0.0403939113, 0.00379461423, 0.0119813746, 0.000680628931, -0.00509150792, -0.00470340066, 0.0197050963, -0.0152706811, 0.000480571092, 0.0153552191, -0.00263221352, 0.00793890934, -0.00101157697, -0.00561410794, -0.00723570492, 0.00340842828, -0.0249925796, 0.00422691228, -0.0170152429, -0.00708968472, -0.0144099277, -0.00691676559, 0.00955282152, -0.0204736255, -0.00479178131, 0.000584082387, -0.0127883302, -0.0179528482, 0.000385705731, -0.00629809918, 0.00415774435, 0.00148230128, -0.0109976567, -0.011796928, 0.0217647552, -0.00386570324, 0.0130342599, 0.00190114987, -0.0101676453, -0.00720496383, 0.00935300346, 0.0100831073, 0.00302800606, -0.0292502325, -0.0241164546, 0.0369201563, -0.0345530845, 0.0129036102, 0.00694750668, 0.00764686847, 0.00240357593, -0.000803593663, 0.00232480164, 0.00859215949, 0.0231019966, 0.0233171843, -0.00620203279, 0.000308132294, -0.0013410839, 0.00510687847, 0.0136644542, -0.00250348472, 0.0160622671, 0.00665162271, -0.00893031247, 0.0153859602, 0.0160930082, 0.00623661699, -0.00325472234, -0.00863058586, 0.00396945467, -0.012304157, -0.0225332845, -0.00548345782, 0.00866132695, -0.0179682188, -0.00704357261, 0.0182910021, 0.00649407413, -0.0090379063, -0.00113069906, -0.000443825789, 0.0127345333, -0.00698209042, 0.021672532, -0.0149940103, 0.0106287627, -0.000812719925, 0.0109669156, -0.0131649105, 0.000489697384, 0.0275748372, 0.00494548725, 0.0116201658, -0.00276670605, -0.00229598186, 0.00507613737, -0.0116970185, 0.01108988, 0.00125270302, -0.00360824587, 0.0225332845, 0.0032989129, 0.0195052791, -0.0103905182, 0.0105211688, 0.0305259917, 0.0193823129, 0.0139564956, -0.00470724329, 0.0132955601, 0.00893031247, -0.0109899715, 0.0194899086, 0.0116970185, -0.0112512717, -0.0123502687, 0.00788511243, 0.0209501144, 0.0123579539, 0.00777367596, 0.00378692895, 0.0059292051, 0.0205504782, 0.000214227592, 0.0169691313, -0.00242471043, 0.0231942199, 0.00665930798, -0.0109361745, -0.00198664865, -0.0029108054, 0.00747394934, -0.0098602334, 0.0174609907, -0.0073509845, 0.0110514536, 0.0116509069, -0.0185830425, 0.00522984331, -0.0170613546, 0.0172150601, 0.0128267575, -0.0164465308, 0.00261300034, 0.000936645316, -0.0185984131, -0.0134800076, -0.0111897895, -0.0125885131, -0.00228445395, -0.00573323, 0.00250540604, 0.00939911604, -0.00234785769, 0.0186598953, 0.0245314613, 0.00327777816, -0.00486479187, 0.0151477158, 0.00159950193, 0.00542581826, 0.0182910021, 0.0288352259, -0.0123272128, -0.0126653658, 0.0166156068, -0.0063941651, 0.00793122407, -0.0125347162, 0.0104289455, -0.0112820128, -0.0029108054, -0.00545271672, -0.00521447277, -0.018091185, 0.0383957326, -0.0124424919, -0.00793122407, -0.00675153174, 0.00337576587, 0.0405476168, 0.0287891142, -0.0139564956, -0.00860753, -0.0208117776, -0.00936837401, -0.014786507, -0.0133800982, -0.00248427154, -0.0023593856, -0.00850762147, 0.0124194361, 0.00773909176, -0.00613670796, 0.0113896066, 0.0236860793, 0.00426533865, 0.0183832254, 0.00351602235, -0.00110283983, 0.00170229282, -0.0121504515, -0.013180281]
06 Mar, 2025
Introduction to Divide and Conquer Algorithm 06 Mar, 2025 Divide and Conquer Algorithm is a problem-solving technique used to solve problems by dividing the main problem into subproblems, solving them individually and then merging them to find solution to the original problem. Divide and Conquer is mainly useful when we divide a problem into independent subproblems. If we have overlapping subproblems, then we use Dynamic Programming. In this article, we are going to discuss how Divide and Conquer Algorithm is helpful and how we can use it to solve problems. Working of Divide and Conquer Algorithm Divide and Conquer Algorithm can be divided into three steps: Divide, Conquer and Merge. The above diagram shows working with the example of Merge Sort which is used for sorting 1. Divide: Break down the original problem into smaller subproblems. Each subproblem should represent a part of the overall problem. The goal is to divide the problem until no further division is possible. In Merge Sort, we divide the input array in two halves. Please note that the divide step of Merge Sort is simple, but in Quick Sort, the divide step is critical. In Quick Sort, we partition the array around a pivot. 2. Conquer: Solve each of the smaller subproblems individually. If a subproblem is small enough (often referred to as the “base case”), we solve it directly without further recursion. The goal is to find solutions for these subproblems independently. In Merge Sort, the conquer step is to sort the two halves individually. 3. Merge: Combine the sub-problems to get the final solution of the whole problem. Once the smaller subproblems are solved, we recursively combine their solutions to get the solution of larger problem. The goal is to formulate a solution for the original problem by merging the results from the subproblems. In Merge Sort, the merge step is to merge two sorted halves to create one sorted array. Please note that the merge step of Merge Sort is critical, but in Quick Sort, the merge step does not do anything as both parts become sorted in place and the left part has all elements smaller (or equal( than the right part. Characteristics of Divide and Conquer Algorithm Divide and Conquer Algorithm involves breaking down a problem into smaller, more manageable parts, solving each part individually, and then combining the solutions to solve the original problem. The characteristics of Divide and Conquer Algorithm are: Dividing the Problem: The first step is to break the problem into smaller, more manageable subproblems. This division can be done recursively until the subproblems become simple enough to solve directly. Independence of Subproblems: Each subproblem should be independent of the others, meaning that solving one subproblem does not depend on the solution of another. This allows for parallel processing or concurrent execution of subproblems, which can lead to efficiency gains. Conquering Each Subproblem: Once divided, the subproblems are solved individually. This may involve applying the same divide and conquer approach recursively until the subproblems become simple enough to solve directly, or it may involve applying a different algorithm or technique. Combining Solutions: After solving the subproblems, their solutions are combined to obtain the solution to the original problem. This combination step should be relatively efficient and straightforward, as the solutions to the subproblems should be designed to fit together seamlessly. Examples of Divide and Conquer Algorithm 1. Merge Sort: We can use Divide and Conquer Algorithm to sort the array in ascending or descending order by dividing the array into smaller subarrays, sorting the smaller subarrays and then merging the sorted arrays to sort the original array. Read more about Merge Sort 2. Quicksort: It is a sorting algorithm that picks a pivot element and rearranges the array elements so that all elements smaller than the picked pivot element move to the left side of the pivot, and all greater elements move to the right side. Finally, the algorithm recursively sorts the subarrays on the left and right of the pivot element. Read more about Quick Sort Complexity Analysis of Divide and Conquer Algorithm T(n) = aT(n/b) + f(n), where n = size of input a = number of subproblems in the recursion n/b = size of each subproblem. All subproblems are assumed to have the same size. f(n) = cost of the work done outside the recursive call, which includes the cost of dividing the problem and cost of merging the solutions Applications of Divide and Conquer Algorithm The following are some standard algorithms that follow Divide and Conquer algorithm: Binary Search is an efficient algorithm for finding an element in a sorted array by repeatedly dividing the search interval in half. It works by comparing the target value with the middle element and narrowing the search to either the left or right half, depending on the comparison. Quicksort is a sorting algorithm that picks a pivot element and rearranges the array elements so that all elements smaller than the picked pivot element move to the left side of the pivot, and all greater elements move to the right side. Finally, the algorithm recursively sorts the subarrays on the left and right of the pivot element. Merge Sort is also a sorting algorithm. The algorithm divides the array into two halves, recursively sorts them, and finally merges the two sorted halves. Closest Pair of Points The problem is to find the closest pair of points in a set of points in the x-y plane. The problem can be solved in O(n^2) time by calculating the distances of every pair of points and comparing the distances to find the minimum. The Divide and Conquer algorithm solves the problem in O(N log N) time. Strassen’s Algorithm is an efficient algorithm to multiply two matrices. A simple method to multiply two matrices needs 3 nested loops and is O(n^3). Strassen’s algorithm multiplies two matrices in O(n^2.8974) time. Cooley–Tukey Fast Fourier Transform (FFT) algorithm is the most common algorithm for FFT. It is a divide and conquer algorithm which works in O(N log N) time. Karatsuba algorithm for fast multiplication does the multiplication of two binary strings in O(n1.59) where n is the length of binary string. Advantages of Divide and Conquer Algorithm Solving difficult problems: Divide and conquer technique is a tool for solving difficult problems conceptually. e.g. Tower of Hanoi puzzle. It requires a way of breaking the problem into sub-problems, and solving all of them as an individual cases and then combining sub- problems to the original problem. Algorithm efficiency: The divide-and-conquer algorithm often helps in the discovery of efficient algorithms. It is the key to algorithms like Quick Sort and Merge Sort, and fast Fourier transforms. Parallelism: Normally Divide and Conquer algorithms are used in multi-processor machines having shared-memory systems where the communication of data between processors does not need to be planned in advance, because distinct sub-problems can be executed on different processors. Memory access: These algorithms naturally make an efficient use of memory caches. Since the subproblems are small enough to be solved in cache without using the main memory that is slower one. Any algorithm that uses cache efficiently is called cache oblivious. Disadvantages of Divide and Conquer Algorithm Overhead: The process of dividing the problem into subproblems and then combining the solutions can require additional time and resources. This overhead can be significant for problems that are already relatively small or that have a simple solution. Complexity: Dividing a problem into smaller subproblems can increase the complexity of the overall solution. This is particularly true when the subproblems are interdependent and must be solved in a specific order. Difficulty of implementation: Some problems are difficult to divide into smaller subproblems or require a complex algorithm to do so. In these cases, it can be challenging to implement a divide and conquer solution. Memory limitations: When working with large data sets, the memory requirements for storing the intermediate results of the subproblems can become a limiting factor. Frequently Asked Questions (FAQs) on Divide and Conquer Algorithm 1. What is the Divide and Conquer algorithm? Divide and Conquer is a problem-solving technique where a problem is divided into smaller, more manageable subproblems. These subproblems are solved recursively, and then their solutions are combined to solve the original problem. 2. What are the key steps involved in the Divide and Conquer algorithm? The main steps are: Divide: Break the problem into smaller subproblems. Conquer: Solve the subproblems recursively. Combine: Merge or combine the solutions of the subproblems to obtain the solution to the original problem. 3. What are some examples of problems solved using Divide and Conquer? Divide and Conquer Algorithm is used in sorting algorithms like Merge Sort and Quick Sort, finding closest pair of points, Strassen’s Algorithm, etc. 4. How does Merge Sort use the Divide and Conquer approach? Merge Sort divides the array into two halves, recursively sorts each half, and then merges the sorted halves to produce the final sorted array. 5. What is the time complexity of Divide and Conquer algorithms? The time complexity varies depending on the specific problem and how it’s implemented. Generally, many Divide and Conquer algorithms have a time complexity of O(n log n) or better. 6. Can Divide and Conquer algorithms be parallelized? Yes, Divide and Conquer algorithms are often naturally parallelizable because independent subproblems can be solved concurrently. This makes them suitable for parallel computing environments. 7. What are some strategies for choosing the base case in Divide and Conquer algorithms? The base case should be simple enough to solve directly, without further division. It’s often chosen based on the smallest input size where the problem can be solved trivially. 8. Are there any drawbacks or limitations to using Divide and Conquer? While Divide and Conquer can lead to efficient solutions for many problems, it may not be suitable for all problem types. Overhead from recursion and combining solutions can also be a concern for very large problem sizes. 9. How do you analyze the space complexity of Divide and Conquer algorithms? Space complexity depends on factors like the recursion depth and auxiliary space required for combining solutions. Analyzing space complexity typically involves considering the space used by each recursive call. 10. What are some common advantages of Divide and Conquer Algorithm? Divide and Conquer Algorithm has numerous advantages. Some of them include: Solving difficult problems Algorithm efficiency Parallelism Memory access Divide and Conquer is a popular algorithmic technique in computer science that involves breaking down a problem into smaller sub-problems, solving each sub-problem independently, and then combining the solutions to the sub-problems to solve the original problem. The basic idea behind this technique is to divide a problem into smaller, more manageable sub-problems that can be solved more easily. Master Data Structures and Algorithms at your own pace with our DSA Self-Paced course. In just 90 days, you’ll cover core concepts, solve real-world problems, and sharpen your problem-solving skills. Take the Three 90 Challenge: complete 90% of the course in 90 days and get a 90% refund. Stay motivated, track progress, and achieve DSA mastery. Start today!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm
https://www.geeksforgeeks.org/introduction-to-divide-and-conquer-algorithm?ref=asr10
PHP
Introduction to Divide and Conquer Algorithm
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.00469262246, -0.00463153934, -0.0249075498, 0.0128777642, -0.013158028, -0.0120513448, 0.0141928485, 0.0172901228, -0.00103931176, 0.0644463077, 0.0125400098, -0.0270634256, 0.0496426299, -0.0254537053, -0.0129352538, 0.010391321, 0.01305742, 0.0287162643, -0.000642271305, -0.0613993369, -0.00226905919, -0.0248500593, -0.0200352706, 0.00900437403, -0.0254393332, 0.0209982283, 0.00390932104, -0.0141569171, -0.043606177, -0.00253135734, 0.00528548844, 0.0100391945, -0.00584242307, -0.0764042363, -0.0164134, 0.00436924119, -0.0238296129, 0.00155762013, -0.0259279981, 0.0220186766, 0.0060113, -0.00464950502, -0.00938524492, -0.0331717394, -0.000334160723, 0.0338041298, -0.0255543124, 0.0142287789, -0.00188100152, 0.00979486201, 0.00944273546, -0.0397256, 0.052517131, 0.00901156, -0.00430815807, -0.00243793614, -0.0036200746, -0.0375697277, -0.0250512753, 0.0227660462, 0.0632965118, -0.0370235704, -0.0371098071, 0.0127987154, 0.025913626, -0.00971581321, -0.0364486724, 0.0421976745, 0.0368511, -0.0400992855, -0.0284144413, 0.00167080364, -0.0282994602, -0.0147893066, -0.0233409479, -0.0129352538, 0.0271209162, -0.0135963894, -0.0112464847, 0.00641373, -0.0502750203, 0.00153336651, -0.00241458067, -0.0372535326, 0.0495851412, -0.0118788751, 0.0166721046, -0.0465381704, 0.0615718067, -0.014444367, -0.0410766192, -0.0456183292, 0.0155654224, -0.0134167327, -0.0315620191, 0.0136826243, 0.0073084184, 0.00385183119, -0.0355863199, -0.00539687555, -0.0112249255, 0.0514535643, 0.0108009372, -0.0226654392, 0.0140060056, 0.000163936376, -0.0108584268, 0.0290899482, 0.0260286052, 0.0360462405, -0.00746651599, 0.00852289516, -0.00443751086, 0.044698488, -0.0286156554, -0.00918403, 0.0182099622, -0.0770366266, -0.0190579407, -0.00559090404, -0.0132730082, 0.0375122353, -0.0187704898, 0.0518559963, -0.0461069942, 0.0268478375, -0.000648559246, -0.00195106748, 0.00855164, 0.0103338305, 0.00666524889, -0.0220330488, -0.0106212804, 0.0199634079, 0.0328842886, 0.0155366771, 0.0142790833, 0.0392369367, -0.030757159, -0.00510223908, 0.0121878833, -0.0111386906, -0.00236787018, -0.014343759, -0.00121537491, 0.00308829197, -0.0027002343, 0.0483778492, -0.0566851571, 0.0158241279, -0.0596171468, -0.00217743451, 0.00345119764, 0.000163711811, 0.0243039057, -0.0105566047, -0.00875285547, -0.00957208779, -0.00460998062, -0.0220330488, 0.0200352706, -0.020667661, -0.0051345774, 0.0228235368, -0.0131077236, 0.0230391249, 0.0155941676, -0.0273365024, -0.0230966136, 0.0486653, 0.0111602498, 0.00206425088, 0.0176206902, 0.0439223722, -0.0139125846, -0.0176925529, 0.0058136778, -0.00980923418, -0.0116129834, 0.00045048818, -0.0188854709, -0.0298948083, 0.0145162297, 0.0185692757, 0.0423988886, 0.0177356713, 0.017706925, -0.0236715153, -0.00178308878, -0.027997639, -0.00449140742, -0.0191298034, 0.0626641214, 0.0325968415, 0.0306134336, -0.0120800901, -0.0455608405, 0.0421114378, 0.020178996, 0.0083360523, -0.0298373196, -0.0313320607, -0.0196472127, 0.0311308447, 0.0422264189, -0.0203945842, -0.0233265739, -0.0498725884, 0.0432612374, -0.0586110726, -0.031677, 0.0291330665, -0.0491827093, -0.0172182601, -0.0266609956, -0.0238871016, -0.015234855, 0.0148036797, -0.0332004838, -0.0153354621, -0.0125975, 0.016212184, 0.0338328741, -0.012259746, -0.0168733206, -0.0549317114, 0.0107506337, 0.00121896807, 0.0132586351, 0.00135820161, 0.0154648144, 0.0145162297, -0.0259279981, -0.022449851, 0.0271784049, -0.053120777, -0.033028014, 0.00261759246, -0.0230103787, 0.0371672958, -0.0160540882, 0.0101326155, -0.0148467971, 0.0090187462, 0.0329705253, 0.0244476292, 0.0197621938, 0.0156516563, -0.000949483539, 0.00862350222, -0.000483724609, -0.00179835956, -0.00641373, 0.0169739276, -0.00953615643, 0.00651793089, 0.00024545542, -0.00165373622, 0.00279185898, 0.00614424562, 0.0312170796, 0.00263016834, -0.0409328938, 0.031677, 0.00907623675, 0.00330387941, -0.00812765118, -0.00890376605, 0.00714313472, -0.00947866682, 0.0300385337, -0.0209119935, -0.00315476465, -0.0410766192, 0.0188279804, -0.0292193014, 0.0295786131, 0.00289605954, 0.0466531478, 0.0169164371, 0.0414790474, -0.0240883175, 0.0530632846, 0.0247063357, 0.0212856792, -0.0507061966, -0.032539349, -0.00695629232, -0.0132298898, -0.0329130366, -0.0140994266, -0.0167727116, -0.00627719145, 0.0108943582, 0.0248788055, -0.00222414499, 0.0141641032, -0.0274514835, -0.026905328, -0.0189429615, -0.0083504254, -0.0131364688, 0.00320866168, 0.0161115769, -0.0341490693, 0.00514894957, -0.0133808013, -0.00207323371, 0.00022322296, 0.00308110565, 0.0219899323, -0.030757159, -0.0127555979, -0.0361037292, -0.0413065776, 0.0194316264, 0.0538106561, 0.00572385, -0.0447272323, -0.0238439851, 0.0465669148, 0.00873129629, -0.044641, 0.0331429951, 0.0561677478, 0.000425785431, -0.0177212972, 0.0155366771, -0.0374547467, 0.032453116, 0.00201754039, -0.0114908172, -0.0167008508, 0.0244045127, 0.0198628, -0.0378284305, 0.00332543813, 0.0146240229, -0.0140563091, 0.00556934532, -0.0304984543, -0.0184255503, 0.014049123, -0.0148611693, 0.0163559094, 0.00567713939, -0.0396968573, -0.000476089219, 0.0342353061, -0.0143868765, 0.00137077761, 0.0310446098, 0.0274658557, 0.0300960243, 0.00627359794, -0.043519944, -0.0116273556, -0.0044303243, 0.0311595891, 0.0108296825, 0.0370235704, -0.0217887163, -0.0355575755, -0.000823724142, -0.0150048947, -0.0474292636, -0.0130717931, 0.00211994443, -0.00882471725, 0.0115986113, -0.0196759589, 0.0367073752, 0.020078389, -0.0176206902, -0.038087137, 0.000532231817, 0.050849922, -0.0545292832, -0.034120325, 0.0142287789, -0.00502319029, 0.0379146673, 0.0322519, 0.00323740649, 0.0322231539, -0.000813843042, 0.000135640512, 0.0201933682, -0.0254537053, 0.00326794828, -0.0204951912, 0.00962239131, -0.0119219925, 0.00211994443, 0.0280551277, -0.0449859388, -0.0201646239, 0.0147461891, -0.00466387765, -0.0272646416, 0.0543568097, 0.0125040784, 0.00575978123, 0.0163559094, 0.00742339855, 0.0223636162, -0.0225792043, 0.0163127929, 0.00590709923, 0.00550466916, -0.00321045821, 0.026014233, -0.058151152, 0.0226798113, 0.0168302022, 0.0296361037, -0.0206532888, 0.0329705253, -0.0280120112, -0.04412359, -0.0165714975, 0.0277533066, 0.00502678333, 0.0353276171, -0.0135245267, -0.00155133219, -0.00828574877, -0.026502898, 0.0223779883, 0.0191729199, -0.00911935419, 0.0239733364, 0.0209119935, 0.0490102395, -0.00570947723, -0.0647337586, 0.0126981074, 0.014933032, -0.0185117852, -0.0266609956, 0.00770366238, 0.013546085, -0.0254824497, -0.0488952585, -0.028788127, -0.0226223227, -0.0642738417, -0.00345479068, 0.00861631613, -0.0204233285, -0.0626066253, 0.001952864, -0.0501025505, 0.00170493836, 0.0359600075, -0.0114117684, 0.0183393154, -0.0202221144, -0.00798392575, -0.00508786645, 0.0218174607, 0.00342065608, 0.00113542785, 0.00402430119, 0.0386045463, 0.0265460163, -0.0204089563, -0.0302397497, -0.0316195078, -0.0163990278, 0.00575259468, -0.0565126874, 0.0503037646, 0.0392369367, 0.0133089386, -0.0222486369, 0.0428300612, -0.0382021181, -0.00822107214, -0.0344940089, 0.0193166453, 0.0590997376, -0.00115968147, -0.0122813052, -0.0428588092, -0.00893969741, 0.0123028634, -0.012561569, 0.00849415, -0.000918043719, -0.00575259468, -0.00189717056, -0.0333442092, -0.00249183294, -0.0205670539, 0.0211706981, -0.0555641, -0.0167008508, 0.00865943357, 0.0345515, -0.0148467971, -0.0122022564, -0.0356438123, 0.03460899, -0.000371214846, -0.0291474387, -0.0138550941, 0.0150767574, 0.00584601611, -0.0507636853, -0.0450721718, 0.0191441756, -0.0146527681, 0.0236571413, -0.0045093731, -0.0184399225, -0.014049123, 0.0180231202, -0.0228810273, 0.0163702816, 0.0165283792, 0.00699222321, 0.00596099626, 0.0136179477, -0.0199777819, -0.00219001039, 0.00575978123, -0.0180231202, 0.032424368, -0.0180518646, 0.0139341429, 0.0320794284, 0.00778271118, 0.0286156554, 0.0117854532, -0.0141066127, 0.026502898, 0.0124394028, -0.00229061791, 0.00892532524, -0.00402430119, 0.0374260023, -0.0389207415, 0.00282958685, -0.0457333103, -0.00221156911, 0.0236427691, -0.0116848461, 0.00743777119, 0.00921996124, 0.0130071165, -0.00571307028, -0.00307751237, -0.0166721046, -0.0227229297, -0.00466028461, 0.00691317441, -0.0332292318, 0.0199634079, -0.0232115947, 0.0167727116, 0.0286300294, 0.0267328583, 0.0339191109, 0.00218282407, -0.0251806267, 0.00278467266, 0.025195, -0.0140922405, 0.0412778333, -0.00527470931, -0.0173188671, -0.00213611335, -0.0110093383, 0.0144802984, 0.00959364697, 0.00249003642, -0.00940680411, 0.020969484, 0.000725362333, 0.0267328583, 0.0251806267, -0.00796955358, 0.00529267453, 0.0122166285, -0.0107075153, -0.0203514658, -0.000587925257, 0.0182099622, 0.0126262447, -0.010182919, 0.0282276, 0.00411412958, -0.0265316423, 0.00932775531, 0.0108728, 0.00525315, 0.00326435501, 0.00184507028, -0.00304158125, 0.0264741536, -0.0171895158, 0.0185117852, -0.0156947747, 0.00474651949, 0.00854445342, -0.0045884219, -0.0111602498, 0.0146671403, -0.00306493649, -0.0298085734, 0.0115986113, 0.00350509444, -0.01681583, -0.00450578, -0.00454530446, -0.0167439673, -0.00499085197, -0.0174913369, -0.00579930563, 0.000852918311, -0.0283569507, 0.0193597637, 0.0193022732, 0.0124897063, 0.00212713075, -0.0106069082, -0.0100607527, -0.00886064861, -0.0128418328, -0.00852289516, -0.000774318643, -0.00200496428, -0.00545436516, -0.0186411384, 0.0119291786, -0.0289174784, -0.0032931, -0.0339191109, 0.00558371795, -0.0156516563, 0.0139269568, 0.0286156554, 0.10773629, -0.00393447326, 0.0299522988, -0.0163990278, -0.0219755583, 0.0270203073, -0.0062304805, -0.0103194583, -0.00489024445, 0.0091768438, 0.0297798291, -0.0151198748, -0.0236571413, 0.0319644511, 0.00760305487, -0.0179368854, 0.0145090427, -0.00781145599, -0.0328268, 0.020667661, 0.0261435863, -0.0104631828, -0.0392081924, 0.0187704898, -0.00043117514, 0.000861451961, 0.0507924296, 0.000483275449, 0.00114351243, 0.00637779897, 0.0175919458, -0.0271927789, -0.0183249433, 0.00773959374, 0.0224067345, 0.0182530805, -0.012856205, -0.0149617773, 0.0213862862, 0.013553272, 0.00283677294, -0.0181524735, -0.00240200479, -0.0260717236, -0.0240020826, -0.0182099622, -0.0146096507, -0.0091912169, 0.0165714975, 0.0185692757, -0.0132298898, -0.00046306412, 0.00314218877, -0.00744495727, -0.0117926402, 0.000112397473, 0.0253387243, 0.0208545029, -0.000174828034, -0.0121806972, -0.00308829197, 0.000227377503, 0.0306421798, -0.0186123922, 0.00594662363, -0.0262585655, -0.00362905744, 0.0185980201, 0.00521003269, 0.00704612024, -0.0286444016, 0.00845821854, -0.00545795867, -0.0269771907, -0.0277533066, 0.00497648, -0.028184481, -0.00738746719, 0.0122813052, 0.0232834574, -0.030757159, -0.0053609442, 0.00271281018, 0.00583164347, 0.00809172, -0.0161546953, -0.0210269745, -0.0114261406, -0.0290468317, 0.00691676792, 0.0130214887, -0.00929901, -0.0306421798, 0.0323956236, 0.034034092, -0.0159534793, 0.0509936437, 0.00346736657, -0.00857319869, -0.0124394028, 0.000967449218, 0.0272215232, 0.0104991142, 0.0350114219, 0.0251087658, 0.0129136955, 0.0125543829, -0.0018738152, 0.0288025, 0.0186555106, -0.0111386906, -0.00610831426, -0.010879986, -0.0101110572, 0.00355719472, 0.00610472122, 0.0354138501, 0.0150048947, 0.0241745524, 0.00146599545, -0.0155797945, 0.00863787532, -0.0299810432, -0.0617442802, 0.026905328, 0.0112321125, -0.0138263488, 0.0144156218, 0.0229672622, 0.0149042867, -0.0187704898, -0.0201502517, 0.00312601961, 0.00952178426, -0.0100751258, 0.00934212748, 0.0173619855, -0.0128202736, 0.0462507196, 0.0190004501, 0.00510583213, 0.0179368854, 0.01681583, 0.0282994602, -0.0230966136, 0.00198520208, 0.0456183292, -0.0044303243, 0.0264741536, -0.0266178772, -0.00103212544, -0.0103410166, -0.021860579, -0.0499588251, -0.0211994443, -0.0342353061, -0.021256933, 0.0184686687, -0.017606318, -0.0321081765, 0.00457045622, 0.00321764429, -0.0104488106, -0.00990265515, -0.0180231202, 0.000473843509, 0.00516691525, 0.00960801914, 0.027595209, -0.00473214686, 0.0083360523, 0.0247638244, 0.00375841, 0.00778989727, 0.0224642251, -0.00471418165, 0.0260860957, 0.00182620634, -0.000114811606, 0.0329130366, -0.00349970488, -0.00166361732, 0.0334017, 0.0176781807, -0.0105925361, 0.0146671403, 0.020365838, 0.0475442447, -0.00876004156, -0.0260573495, 0.00983797945, 0.0120944623, 0.0117423357, -0.00919840299, 0.00583164347, 0.00962239131, 0.0355863199, 0.028586911, 0.0238583572, 0.00732279103, 0.0130071165, 0.0182961989, -0.00215946883, -3.60435442e-05, 0.0215300117, 0.0116417287, 0.0119076194, 0.0293199085, -0.00664728321, 0.00817076862, -0.00252596755, -0.0104128793, 0.00953615643, -0.00611190731, -0.0417665, 0.00325716869, -0.00722218351, 0.0278251693, 0.0333442092, -0.0153498342, -0.0124394028, 0.0375984721, -0.00198340556, -0.00209299591, 0.00159085658, 0.008803159, -0.00850133598, -0.0114189545, -0.0393806621, 0.0282419715, 0.0203514658, -0.0118788751, -0.0143222008, 0.0105494186, 0.00805578846, 0.00525674364, -0.00420755055, 0.0406741872, -0.00400633551, 0.00547233084, -0.0467968732, -0.0084151011, 0.00452733878, -0.00871692412, -0.0475155, 0.0416515172, 0.0126406178, -0.00528908148, 0.0051345774, -0.0266897399, -0.0255974308, -0.00629156362, 0.0043908, -0.0156947747, 0.00765335839, -0.00950022507, -0.0214437768, 0.00618736306, 0.00807734765, 0.00645684777, -0.00377278239, 0.0105134873, -0.0036739714, 0.00765335839, -0.00379434112, -0.00210197875, 0.0139772603, -0.00359132956, 0.0337753855, -0.0052028466, -0.0349251851, 0.00219180691, -0.0101469876, -0.0666884184, 0.00210736855, 0.00916247163, 0.000982719939, 0.0289462246, 0.00303080189, 0.0124753341, 0.0206245445, 0.0114333276, -0.0119938552, -0.0369085893, 0.0102547817, -0.0120010413, -0.0165427532, -0.0147893066, 0.0368511, 0.0321656652, -0.0236858875, -0.00870255101, -0.00497288629, -0.0222486369, 0.0412778333, -0.0574037805, -0.00938524492, -0.00365061616, 0.0375697277, 0.0283569507, 0.0353276171, 0.0241745524, -0.00902593229, -0.00175164896, 0.0188279804, 0.00297151529, 0.0131652141, -0.0248356871, -0.00944992155, 0.0240739454, -0.0380009, 0.00564480107, -0.0531782657, -0.0138982115, -0.012360354, -0.00114890211, 0.0016546346, 0.0183393154, 0.00485790661, 0.008803159, 0.0011120725, -0.0099385865, 0.00563402148, 0.0164996348, -0.00855164, 0.0213000514, 0.00844384637, 0.0211706981, -0.0114405137, 0.00101505814, -0.00496929325, -0.0142647102, 0.00983797945, -0.0165714975, -0.042542614, -0.00773240719, -0.00137796381, -0.0260573495, -0.0145234158, 0.007268894, -0.00440876558, 0.0100607527, -0.0151198748, 0.0199202914, 0.0124537749, 0.00522440532, 0.0181524735, -0.00300205685, 0.0190723129, 0.0168876927, -0.0197478216, -0.0194891151, 0.00237505627, -0.00504834205, -0.0288168713, 0.000801267102, -0.0154073248, -0.0161834396, -0.0357300453, 0.0184255503, 0.00528548844, 0.0557078272, 0.00720421784, 0.0202508587, 0.0105350455, 0.00182800286, -0.000576247578, -0.0278682858, -0.0179368854, -0.00926307868, 0.0181524735, 0.020969484, 0.0289031062, -0.0403005034, 0.0443535484, 0.00265532, -0.0135173406, 0.00445547653, -0.0303259846, -0.0396968573, 0.0034961116, 0.0102332234, 0.0217743441, -0.0202508587, -0.00208940287, -0.0109231034, 0.0271784049, -0.00968706794, -0.0143078277, -0.012065717, 0.00679100817, 0.0264454074, -0.0162984207, 0.0111889942, -0.054701753, -0.0163559094, 0.0116057973, 0.0149042867, 0.00973737147, 0.00566995284, 0.00449500093, -0.0134670362, -0.0272933859, 0.00666884193, 0.0153929517, 0.00850133598, -0.0264741536, 0.00865224749, 0.0198915452, -0.00875285547, 0.0176206902, 0.00758868223, -0.000371888542, -0.0180806108, 0.0137904175, 0.00520643964, 0.0145162297, -0.01819559, -0.0320219398, 0.00359851588, -0.0121375797, -0.0102978991, 0.0420252, 0.00504115596, 0.00638498506, 0.0155941676, 0.0107147023, 0.0188998431, -0.0164708905, -0.014638396, -0.00750963343, -0.00763898622, -0.00335597969, 0.00529986108, -0.0139269568, -0.000656643766, -0.0142718963, -0.00147497829, -0.0224929694, 0.0300385337, 0.00982360635, -0.00150551985, -0.0195609778, 0.0127484109, -0.0242032968, -0.00592147186, -0.0187704898, -0.0103553897, -0.000305415713, -0.00421833, 0.0157810096, 0.00252596755, 0.00346736657, 0.0166289881, 0.0712301284, -0.0168876927, 0.0190004501, -0.0242464151, 0.00180105446, -0.0115842381, 0.028788127, -0.00148396112, 0.0148036797, -0.0170889068, 0.0171895158, -0.00761024095, 0.0191585477, 0.0229672622, 0.00729404576, 0.00824981742, -0.0204377, -0.00659697969, 0.0147749344, -0.0159678515, -0.0083504254, 0.00372247864, 0.00481478916, -0.015622912, 0.0103697618, -0.00183249428, 0.0139053976, -0.016212184, -0.0580936633, -0.0183536876, 0.0247638244, -0.0163271651, -0.00596099626, -0.00160073768, 0.000631491886, 0.043519944, -0.00329848984, -0.011469258, -0.026502898, 0.0183105711, -0.00023085835, -0.0102260364, -0.0297798291, 0.012561569, 0.00421833, -0.00838635582, 0.0108943582, -0.00241997046, -0.00547233084, 0.00542202732, 0.00898281485, -0.00261759246, 0.00278467266, -0.00631671585, -0.00891095307, 0.0320219398, 0.00996733177, -0.0162553024, 0.00445188303, -0.0117064044, 0.000281835819, -0.00666884193, 0.0261004679, -0.0136682512, -0.00154234935, 0.011476445, -0.0231684763, -0.0122525599, -0.014933032, -0.00830012094, -0.0234990437, 0.0141281718, 0.0113470918, 0.00165912602, -0.0121375797, 0.0213575419, -0.0101254294, 0.0226654392, -0.0015189941, -0.0338328741, 0.00109590346, 0.00232475251, 0.00204089563, 0.0117854532, 0.00832886621, -0.0241458081, -0.0147030717, 0.00359671912, -0.00516691525, -0.0314757861, -0.00515254261, -0.0153929517, -0.0515685454, -0.00868817884, 0.00375841, -0.00896844268, 0.0198628, 0.0328268, 0.00410694303, -0.0122813052, 0.00945710763, -0.010973407, 0.0116920322, 0.0116489148, 0.00151001127, 0.0200927611, 0.0108153094, -0.0050555286, -0.0104056932, 0.014142544, 0.033028014, -0.00990265515, 0.0349826738, -0.00350689096, 0.0157810096, -0.00852289516, 0.012949626, -0.00858038478, -0.0139988195, -0.00135191367, 0.00299666706, 0.00421114359, 0.0108153094, -0.00883909, 0.00266609946, -0.00819951389, 0.0117279636, 0.0143078277, -0.00224929699, 0.00610831426, -0.00388057623, 0.0139844464, -0.0199634079, -0.0072293696, -0.00274155522, 0.0058567957, 0.000324953347, 0.0109877791, -0.00431534462, 0.0196040962, -0.0202508587, 0.013150841, 0.00109949661, -0.00426504062, -0.00626641186, -0.0062304805, 0.00295175309, 0.0131292827, 0.0105134873, 0.00758149615, 0.0130861653, 0.00105188764, 0.00670477329, 0.0153785795, -0.000551994, -0.0253674705, 0.00611550082, 0.00435486902, 0.0196040962, 0.0139125846, 0.0355863199, 0.0276526976, 0.000301598018, -0.0142144067, -0.0157091469, 0.00341885956, -0.00576696731, 0.029664848, -0.0299522988, -0.0164134, -0.0060831625, -0.00793362223, 0.0176781807, -0.0227804203, 0.0458195433, -0.00233014231, 0.0145521602, 0.0186123922, 0.019776566, 0.00720781088, -0.01167766, 0.0183536876, -0.00709642423, 0.000450712745, -0.0148611693, -0.0291618109, -0.00086010457, -0.0152779724, 0.00332004856, 0.00778271118, -0.0113255335, -0.0101182433, -0.0116632869, -0.0126406178, 0.0190291964, 0.015924735, 0.0026750823, 0.00244152918, -0.0112536708, -4.50263615e-05, -0.0271784049, -0.00508786645, -0.00960083306, -0.00504834205, 0.0161546953, -0.0147030717, -0.0283569507, 0.00933494139, -0.00526033668, -0.0163415372, 0.0220186766, 0.0199059192, -0.0131939594, -2.73975857e-05, 0.000337529287, -0.000676855154, 0.0116345426, -0.0133592431, 0.0306709241, 0.0062807845, -0.00656823441, 0.00590709923, 0.016025342, -0.0110452697, -0.00327872764, -0.0180806108, -0.000627898786, 0.0145090427, 0.0125831272, 0.0188136082, -0.0217743441, 0.007121576, 0.0328555442, -0.00466387765, 0.0151917366, -0.0193741359, 0.0343215391, -0.0325680934, -0.0400417969, 0.00999607705, 0.0356725566, 0.0390932113, -0.0283713229, -0.01503364, 0.0168589484, 0.000104930506, -0.00737309456, 0.000452284759, -0.0150623843, 0.0114908172, -0.024921922, -0.00292300805, 0.034034092, -0.0410478711, -0.00191513624, 0.0199346635, 0.0122741191, 0.0153929517, -0.02295289, -0.0347527154, 0.0180374924, 0.03363166, -0.00533938548, 0.0168876927, 0.00651074434, 0.0251806267, -0.00937087275, -0.0119507378, 0.000997092458, 0.00747370208, -0.0199346635, 0.0153067168, 0.00854445342, 0.0268190932, -0.0233840644, 0.0099385865, 0.00604723115, -0.0183393154, -0.0191298034, -0.0115842381, 0.00345119764, 0.00319967885, -0.00418599183, 0.00620532874, -0.0139988195, -0.0105494186, -0.00127376325, -0.0221192837, -0.0156947747, -0.0126406178, -0.00592506491, -0.00750963343, -0.0191154312, -0.0133592431, -0.0193453915, 0.0480329096, 0.0104488106, 0.00771803502, -0.0143653182, 0.0132011455, -0.0071503208, -0.00845103245, -0.0248356871, 0.0036739714, 0.0127987154, -0.0130358618, 0.0191441756, -0.00115429179, 0.0238439851, 0.0255830586, 0.0215156395, -0.03460899, 0.0064281025, 0.0162984207, 0.00439439341, -0.00285833189, 0.0178650226, -0.0172038879, 0.00729404576, -0.00983797945, -0.00811327901, 0.00107883615, 0.001854053, 0.0157378931, -0.0084151011, 0.00427222671, -0.0321369208, -0.0054004686, 0.007121576, -0.0148611693, 0.00435846206, -0.0122669321, -0.00710001728, 0.00541124772, 0.000492258288, -0.00183339254, -0.0187417455, 0.0131005375, -0.00733357, 0.00426863367, -0.0156516563, 0.00805578846, -0.00638139201, 0.00419317791, 0.00293199089, -0.0155079318, -0.0180087481, 0.0214150306, -0.0174769647, 0.024921922, -0.0182961989, -0.0230103787, -0.0164565183, 0.0127555979, 0.0199634079, 0.0158097539, -0.00303080189, 0.0229672622, -0.0131005375, 0.00149743527, 0.00439439341, 0.00775396591, 0.00617658393, -0.0282563437, 4.99107664e-05, -0.018094983, -0.0028673145, 0.018799236, 0.046394445, 0.0215731282, 0.00965113658, -0.00549029652, 0.0322519, -0.0138550941, 0.000290818629, 0.000317542523, -0.0296361037, 0.0138550941, -0.00155133219, -0.0131005375, -0.00739465328, 0.00185225648, 0.0198196843, -0.0144299939, -0.0314182937, 0.000121155717, -0.0131795863, 0.0375122353, 0.00990265515, 0.00920558907, 0.0265603885, -0.01681583, 0.0245194919, 0.014933032, 0.000658889476, -0.0115411207, -0.0232547112, 0.010182919, -0.000199530783, -0.0152204819, 0.0035805502, -0.0121016484, -0.0163271651, 0.00474651949, 0.00814202335, 0.000412086636, -0.0125040784, -0.0416802615, 0.00494773453, -0.0184830409, 0.00344940112, 0.00464231893, -0.0161115769, -0.0247207079, 0.0201071333, 0.0160397142, 0.0017040401, 0.021256933, 0.000936009339, 0.0126262447, -0.00257806806, -0.00184147712, -0.00238583563, -0.00182081666, 0.00245949486, -0.0208257586, 0.0202077404, 0.00350329792, -0.0105566047, -0.0108728, -0.0100823119, -0.00337753841, 0.00201394712, 0.00184327364, -0.0197478216, 0.0171032809, 0.0104272515, -0.00358773628, -0.0111674359, 0.0248644333, 0.0205383096, 0.0212425608, -0.0132658212, -0.0232834574, -0.00671195937, 0.0128346467, 0.0176925529, -0.0120800901, -0.0168302022, 0.0112105533, 0.0221049115, 0.0152204819, 0.0100104492, 0.0216593649, 0.0115626799, 0.00427582, -0.00656823441, -0.00637061242, 0.0111602498, 0.00352665316, -0.0101254294, -0.00276850373, -0.0156085398, 0.00899000186, 0.0124106575, -0.0138622802, 0.00639576465, 0.00491539668, -0.000165620659, 0.00520643964, 0.00420755055, -0.00960083306, -0.00914091244, -0.00672992505, -0.00503756292, -0.022162402, -0.00733357, 0.00602207938, -0.0044303243, -0.0147893066, -0.00394165935, 0.0212138165, 0.0119076194, -0.000562773377, 0.0166433603, 0.0471418127, -0.0200352706, 0.00119920587, 0.00852289516, 0.00167349842, 0.00792643614, -0.00960083306, -0.0137832314, -0.0154504422, 0.0157522652, -0.0123316087, -0.0067371116, 0.00496210717, -0.00379793416, -0.0322231539, 0.0127915293, -0.00458123581, 0.0147318169, 0.0151055017, 0.0145162297, 0.00492976885, 0.00729045272, -0.000871782191, -0.000571756216, -0.00512020476, 0.00784020126, -0.0199634079, -0.0117854532, 0.0221049115, 0.0196472127, -0.0119219925, -0.0155366771, -0.000759497052, 0.0175775737, -0.00491539668, 0.0148899145, 0.00208401307, 0.00150551985, 0.00132137211, 0.0179368854, 0.011081201, 0.0298085734, 0.0129352538, 0.00120010413, -0.0164134, 0.0164565183, 0.00399914943, -0.00514176348, -0.00759586832, -0.0141856615, 0.0122166285, 0.00996014569, 0.00747370208, 0.0185836479, 0.0033092692, -0.0186123922, -0.00154414598, -0.0240739454, 0.00732638407, 0.00220797607, -0.00609394163, 0.0247925706, -0.00566636, -0.000942297338, 0.0117207775, 0.0121375797, -0.00279904529, 0.00478245085, 0.006923954, 0.018396806, -0.00539687555, -0.00600052066, 0.0120944623, -0.00904749148, -0.000217496417, 0.00443391781, -0.0158959907, -0.0205239356, -0.0218749512, 0.00980204809, -0.0105278594, 0.00381230679, -0.00767491711, -0.00906905066, -0.0133161256, -0.00482916133, -0.00906186365, 0.0240020826, 0.0202796031, 0.0065862, 0.0305846892, 0.00223851763, 0.0226798113, -0.00596818235, -0.0214294046, -0.000557383697, -0.0194603708, 0.00280263834, 0.00729763927, 0.0263735447, 0.00376559608, 0.0305559449, 0.0148180518, -0.00548670348, -0.0010087702, -0.0168302022, 0.00287989061, -0.0131077236, 0.00744495727, -0.00905467756, 0.00415365398, -0.018986078, 0.0117279636, 0.0111674359, -0.00828574877, -0.0048938375, -0.0196184684, -0.00641013682, 0.00354641536, -0.0149474042, -0.0364486724, -0.00506630773, 5.05844764e-05, -0.0290180854, -0.0273077581, -0.0213144235, -0.0168302022, -0.00488305837, -0.00644966122, -0.00217204471, -0.0275233462, 0.00212353747, 0.00839354284, 0.0182099622, -0.0199346635, 0.00744495727, 0.00771084847, -0.016514007, 0.00509864604, 0.000312601973, -0.00165912602, 0.010879986, 0.00141209853, -0.00744495727, -0.0378571749, -0.00527830236, 0.0167439673, -0.00296432897, 0.00675507681, -0.001780394, -0.00921277516, -0.0124322167, -0.0164708905, 0.00439798646, -0.00205886131, 0.0142287789, -0.00162858434, 0.00392369367, -0.00380512048, -0.0156516563, -0.0102619678, -0.0116417287, 0.000186730278, -0.0106643979, 0.00686287088, 0.0264166631, -0.000125085702, 0.0208832491, -0.00317632337, 0.037483491, -0.0223636162, -0.00313859573, 0.0224211067, 0.0250369031, -0.00185225648, 0.0204664469, 0.0139485151, 0.00379434112, 0.0110452697, 0.00201394712, -0.0124897063, -9.65652653e-05, 0.00476448517, -0.00979486201, 0.0140347509, -0.0084294742, -0.024232043, -0.00932056922, 0.0129424399, -0.0114045823, -0.00143275899, -0.00599692762, -0.00665087625, -3.37417e-05, 0.00711798295, -0.0146671403, -0.00988828298, -0.0066580628, -0.00101415988, -0.0203083493, -0.0427725725, -0.01236754, 0.00509864604, 0.00682334648, -0.00747370208, 0.000395693, 0.0141784754, -0.0164852627, 0.00403148727, 0.00524596404, -0.0219755583, -0.0142144067, 0.0240452, -0.00384464487, 0.0053501646, 0.0157378931, -0.0042542615, 0.0107650058, -0.0053609442, -0.00418958487, -0.00699940976, -0.0160684604, 0.00965113658, -0.00822825916, 0.00576696731, 0.00658979313, 0.00982360635, 0.00748088863, -0.00157738233, 0.00475729909, -0.0180662386, 0.0131220967, 0.0141856615, 0.0252668634, 0.0124250297, 0.00583523698, -0.00248105358, 0.014041937, 0.00852289516, -0.0312170796, 0.00603645202, -0.00994577259, -0.0192160383, -0.0147605622, -0.0136179477, -0.0124250297, 0.0261867028, 0.0218462069, -0.00298768445, -1.70533131e-05, -0.000143388184, 0.0242607873, -0.0116057973, -0.00363624352, 0.00188818772, 0.00693114, -0.0016788881, 0.0038266792, 1.05618255e-05, -0.0252668634, 0.0106284665, 0.00532501284, -0.0122381877, -0.0113327196, 0.023729004, -0.00684849825, -0.0019133396, -0.0148899145, -0.00388416927, -0.0027199965, 0.0113614649, 0.00266071, -0.00339370756, 0.00239841174, 0.00805578846, -0.0158672445, -0.00996014569, -0.0091768438, -0.0201071333, 0.00706049288, -0.0140131917, -0.000414107781, -0.00125310267, -0.0010186513, 0.0210988373, 0.00782582816, -0.00754556479, 0.0303547289, -0.0130502339, -0.0119938552, 0.0169020649, 0.0108943582, -0.0182387084, -0.0091768438, -0.0103625758, 0.00286551798, -0.00491539668, -0.00375841, 0.0148467971, 0.00783301517, -0.00461357366, -0.0155797945, 0.0454171151, 0.00239481847, 0.0165858697, -0.00766054494, 0.029866064, 0.0180806108, 0.00414287439, -5.51039557e-05, -0.00706767896, -0.00411772262, 0.0132227037, 0.010182919, -0.00533219893, -0.0124034714, -0.0146527681, -0.0018172235, -0.00791925, 0.00890376605, -0.00213970663, 0.0174338482, 0.00259064394, -0.0244332571, -0.00824263133, 0.0158241279, 8.85930131e-05, -0.0299810432, -0.0145880915, 0.00162319466, -0.00380871375, -0.0136538791, 0.00155851839, 0.02433265, -0.0199634079, 0.014638396, -0.00506630773, 0.00158906006, 0.00229421095, 0.00872411, 0.005734629, -0.00252956082, -0.00145611435, 0.00682334648, -0.00422910927, -0.00448422134, -0.0197047032, -0.0136682512, -0.0114980033, -0.00194927095, -0.00406382559, 0.0123819122, 0.0179800037, -0.01196511, 0.0104919281, 0.012956813, 0.0153210899, 0.00624126, -0.0131724, -0.00738746719, 0.0216737371, 0.00362905744, -0.00467465725, 0.00771084847, 0.00412490871, 0.000516961038, 0.00921277516, -0.0231109876, -0.0054292134, 0.0179656297, -0.00227804203, 0.00668321457, -0.0187130012, -0.0144731123, 0.00241458067, -0.0180374924, -0.020365838, 0.00448422134, 0.017002672, -0.00135730335, -0.00309547805, 0.00203370932, 0.00998889096, -0.00618017698, 0.0180806108, -0.0209838562, -0.0150048947, 0.00819951389, -0.00579930563, 0.0125112655, -0.0109302895, -0.0141209858, -0.00994577259, -0.0202796031, 0.00567713939, 0.0203945842, 0.0172757506, 0.0120226, -0.0158816166, 0.00467825029, 0.00994577259, 0.000538070628, 0.00600052066, 0.00935650058, 0.00556575228, 0.0152061097, 0.0215731282, -0.000650804956, -0.0121088345, 0.0145521602, 0.0181524735, -0.00895407051, -0.000714133785, -0.00490102405, -0.0117495218, -0.00332004856, -0.00721859047, -0.00425066799, 0.0103266444, -0.0220043045, -0.00660057273, 0.0208688769, 0.0176781807, 0.0136538791, 0.0133808013, -0.0200640168, 0.0196040962, -6.71465459e-05, 0.00362187112, -0.0184542947, -0.00776833855, 0.00985953771, -0.00136359129, 0.00781145599, 4.90195043e-06, 0.0175775737, -0.000674609444, -0.00045812357, -0.0195466056, 0.0297223385, 0.0076174275, 0.00968706794, 0.00678022904, 0.00226546591, -0.00793362223, -0.00855882652, -0.0103410166, 0.00941399, 0.00750963343, -0.00172919198, 0.00261040614, -0.00764617231, -0.00385901751, 0.0229241438, -0.00054885, -0.0104488106, 0.00257267826, 0.00817076862, 0.0224929694, 0.0121016484, -0.00835761148, 0.00197442272, -0.0188710988, -0.0109015442, -0.00401352206, 0.00123783189, -0.0105853491, 0.00866662, -0.0129783712, -0.0189429615, -0.0132155176, -0.00238044607, 0.00349970488, 0.00368654728, 0.014142544, -0.0152061097, 0.0048938375, 0.0250081569, 0.00500163157, 0.024131434, -0.00411412958, 0.00304158125, 0.0112392986, -0.0188567266, -0.00898281485, -0.00565198716, 0.00233732862, -0.0226079486, -0.0164708905, 0.0243182778, -0.0168589484, 0.00777552463, -0.0214725211, -0.00871692412, 0.00093421276, 0.00107344647, 0.0124537749, -0.0310446098, -0.0117423357, 0.00565558067, 0.00395962503, -0.00500522461, 0.000543909438, -0.0240164548, 0.00839354284, -0.0107721919, -0.0216737371, 0.00433331, 0.0136538791, -0.00804860238, -0.0111171324, -0.00858038478, -0.00694191968, 0.016226558, -0.00333621749, 0.0171607696, 0.00906186365, 0.0247925706, -0.000961161219, 0.0204951912, -0.0218749512, -0.0272358954, 0.00501959724, -0.00229780423, 0.00325716869, 0.0131652141, 2.66536972e-05, 0.00904749148, 0.0044015795, 0.00217384123, -0.0113902101, 0.0200496428, 0.0151917366, 0.0184686687, -0.00107164984, -0.00747370208, -0.00471777469, 0.0208545029, 0.000250620535, 0.00341167324, -0.004897431, 0.0129136955, -0.00584601611, -0.0103266444, -0.0244476292, -0.00435846206, -0.00513098389, 0.00672992505, -0.0218318347, 0.0186267663, 0.0135676442, 0.0159678515, 0.00303259841, -0.00510223908, 0.00827856269, 0.00270742062, 0.00862350222, -0.0202796031, 0.0099385865, -0.0199346635, 0.0130214887, -0.00472855382, 0.0199346635, -0.00899718795, 0.0163127929, -0.0120872762, 0.0161978118, 0.00873848237, -0.00652871, -0.00683412561, -0.00088615471, -0.00344401132, -0.0117351497, 0.000512918748, -0.0166721046, 0.00251339166, -0.000907713489, -0.0231253598, 0.0263735447, 0.0173476133, -0.00713235512, -0.0061226869, -0.0218893234, -0.0188567266, 0.0323668793, 0.0227229297, 0.0135892024, -0.0232259668, 0.0082570035, 0.0130143026, -0.000457000715, 0.00167260016, 0.00517410133, 0.0251375102, 0.0105925361, 0.0019061534, -0.00724374224, 0.00416084, -0.0243757665, 0.00459920149, 0.0115483068, -0.000242311435, 0.00252956082, 0.0257699, 0.00929901, 0.00487946533, 0.00906905066, -0.0061226869, -0.00884627644, -0.00711798295, 0.00394165935, 0.0297510847, 0.00919840299, 0.0320794284, -0.014933032, -0.0165714975, -0.0386907831, 0.0050555286, -0.00478245085, 0.0110165244, -0.00525674364, -0.00423270231, -0.00635983329, 0.00676944945, -0.00233193883, 0.0170601625, 0.000868638221, 0.00494773453, 0.00431534462, -0.011476445, 0.0221911464, 0.0160972048, 0.00298409117, -0.0354138501, 0.0219468139, 0.00266071, -0.00115878321, -0.00408538431, -0.0264454074, -0.0129280677, -0.0140850544, -0.0257555284, -0.0153354621, 0.000288797513, 0.0201071333, -0.0032931, 0.00165373622, -0.0111386906, -0.00881753117, -0.00809890591, -0.0165714975, 0.012662176, -0.0106284665, -0.00128723739, -0.00201394712, 0.010879986, -0.0235134177, 0.0170745347, -0.00797674, -0.0103338305, -0.0231828503, 0.00147408, 0.00662572449, 0.00849415, 0.00150462158, 0.00391650759, -0.00745933, -0.0137616731, -0.0155941676, -0.0122525599, -0.004053046, -0.0125687551, -0.00414287439, 0.0293342806, -0.0112033673, -0.024620099, 0.00459920149, 0.0138263488, 0.00698144408, 0.00484712701, 0.0275664628, 0.00771084847, 0.000996194198, 0.00461716717, -1.23232994e-05, 0.0109518487, -0.00359312608, 0.0323093906, 0.0356150642, -0.013646693, 0.00224211067, 0.000927924819, -0.00770366238, 0.00102224434, -0.00212713075, 0.00305775041, 0.0147030717, 0.000631941075, 0.00397759071, 0.0266322512, 0.00529267453, -0.00242176699, 0.0126406178, 0.00350868772, 0.000407819811, 0.00355719472, -0.00750963343, 0.000254213664, 0.012762784, -0.00211455463, -0.0148467971, -0.0310446098, -0.0132945664, -0.0117135914, -0.0148755424, -0.0110955732, -0.0388919972, 0.0188854709, -0.0042147371, 0.0170889068, 0.0141209858, -0.0264597796, 0.0137688592, -0.00617299043, -0.0278682858, 0.00564480107, -0.00172200566, -0.00593943754, 0.0414215587, 0.012460961, -0.00431534462, 0.0167870857, -0.0320219398, -0.0106356535, -0.0069634784, 0.0117064044, -0.00152348541, 0.0159965977, -0.00198879535, 0.00889658, 0.00619454915, 0.00745933, -0.00637779897, -0.00923433434, 0.005389689, -0.0226798113, 0.000674609444, -0.0155366771, -0.0168876927, 0.00222234847, 0.0218318347, 0.00333262444, 0.0150623843, -0.0034422148, -0.0245194919, -0.00119830749, 0.00362366764, -0.00247746054, 0.0121160215, -0.0143796904, 0.000331465882, 0.017706925, -0.0040171151, 0.013352057, -0.000772522122, -0.0123962853, -0.0213575419, 0.0100966841, -0.00416084, 0.0148899145, 0.00327333785, 0.0327118188, 0.00724014919, 0.00458123581, -0.00691676792, -0.014243152, -0.0095649017, -0.0114405137, -0.00468902942, 0.0194891151, -0.00379074807, 0.00700659584, -0.00301103969, 0.0156660303, -0.0221192837, 0.00393447326, -0.0130430479, -0.00332543813, -0.00620892178, 0.0230822414, 0.0146815134, 0.00227983855, 0.014142544, -0.00234631123, 0.0111315046, -0.00448422134, 0.00690958137, 0.00521721924, -0.0106069082, 0.00523877796, 0.00289426302, -0.0106069082, -0.0207251515, 0.00805578846, -0.00574181555, 0.0120513448, 0.00551544875, -0.0131149106, -0.00564839412, 0.0371960402, -0.00137526903, 0.00914091244, 0.00043297169, -0.0198053103, 0.0199777819, -0.00644966122, 0.00725811487, -0.0028529421, 0.00307391933, -0.0293342806, -0.0158528723, 0.0044015795, 0.0192735288, -0.0196328405, 0.00745214336, 0.000748268503, -0.00809172, 0.00465309806, -0.0027397587, -0.028184481, -0.00680178776, 0.00509145949, 0.0169308092, 0.000592865807, -0.00886783563, 0.00244332571, 0.0238439851, -0.00419317791, 0.0043908, 0.0147318169, 0.0054687378, 0.00488665141, 0.00799829885, -0.00407101167, -0.0262441933, -0.00729404576, 0.00193849148, -0.00173907308, -0.0128202736, -0.0266178772, 0.00727248704, -0.00296971877, -0.0112105533, 0.00158367027, 3.19170649e-05, 0.000356168632, 0.00119291781, 0.0169308092, -0.00748088863, 0.00223672087, -0.00995296, 0.00847259164, -0.000198857073, 0.00750963343, 0.0228379089, -0.0157666374, -0.00501241069, -0.011469258, -0.00939243194, 0.00658979313, -0.00953615643, 0.00394165935, -0.0203945842, 8.34840394e-05, -0.0280263834, -0.0110165244, 0.00186303584, -0.000485970289, 0.0329992697, -0.0442385674, -0.018684255, 0.0199777819, -0.000640923856, 0.00201035407, 0.00143186073, -0.00137437077, -0.018698629, -0.0118788751, -0.00624485314, -0.0091912169, 0.0239589643, 0.00143994531, -0.00729404576, 0.000572654477, 0.00708923768, -0.00957927387, 0.0171320252, -0.00201215059, -0.0036937336, -0.00264993054, 0.019086685, 0.0103338305, -0.00397399766, 0.00723655615, -0.0104056932, 0.00483634789, -0.055477865, -0.0110524558, 0.0172470044, 0.0222630091, 0.00570229115, 0.00735872239, 0.00637420546, -0.00293199089, 0.00569510506, 0.0198053103, 0.0137760453, -0.0138119766, -0.000403553, 0.00631671585, 4.18262316e-05, -0.00746651599, 0.00451655965, 0.0121950703, -0.0081779547, -0.0279114041, 0.0205670539, -0.0148467971, 0.0193741359, 0.0026211855, 0.00720421784, 0.0132227037, -0.000694371643, -0.00195106748, 0.00605082419, -0.00595021667, -0.00406382559, -0.00748088863, 0.00213252031, -0.00996014569, 0.00494054845, -0.0111386906, -0.00179117336, -0.0231253598, -0.00830730796, -0.00744495727, -0.0026157957, 0.0029463633, -0.0112824161, -0.0124465888, -0.0185836479, 0.0151486192, 0.0232547112, 0.00628797058, -0.00426504062, 0.0105853491, -0.0153642073, 0.0240452, -0.02709217, 0.00217384123, 0.00566995284, -0.0112967882, -0.00869536493, -0.0115986113, 0.000995295937, 0.00878878683, -0.00521003269, -0.0249650404, -0.00491180317, -0.00121986633, 0.0166721046, 0.0197334476, -0.0150767574, 0.0164421443, -0.00643888209, -0.00780427, -0.0134023605, -0.0185261574, 0.000619814266, 0.0147318169, 0.00112734328, 0.0176494345, -0.0271352883, -0.00587476091, -0.021271307, -0.00320327189, 0.0201933682, -0.000794979162, 0.0223348718, 0.00599333411, -0.00206245435, 0.0067371116, 0.000494504, -0.000958466379, 0.00548311044, 0.0071611004, 0.0142000346, 0.0137329279, -0.00144443673, 0.0133161256, -0.000510673039, -0.00300924317, -0.0310733542, 0.00114261406, 0.0129711851, -0.00576337427, 0.0062807845, -0.00701737544, 0.0142718963, 0.0130646061, 0.0203083493, -0.00791206397, 0.00149294385, -0.0134167327, 0.0139125846, 0.0159391072, 0.0435774326, 0.00327693089, 0.00215407903, -0.00443751086, 0.0468543656, 0.0120872762, 0.0213575419, -0.0107937511, 0.00291941501, -0.0182961989, 0.00406741863, -0.0380009, 0.00369732664, 0.0100248214, 0.0217168536, -0.00303439493, -0.0120585309, -0.00135011715, -0.0127124805, -0.0260860957, 0.0117854532, -0.00476448517, 0.0146671403, -0.0173619855, -0.0104703698, -0.00406741863, 0.0120226, 0.00044015795, -0.00335418317, 0.00773240719, -0.0018594428, -0.000800818, 0.0205957983, -0.0026211855, -0.00633108802, -0.0160540882, -0.00685568433, 0.00839354284, 0.00587835442, -0.00791206397, 0.00519925356, -0.013158028, 0.00790487695, 0.00513817044, 0.00380512048, 0.000294636353, 0.00019739737, 0.00321584777, 0.00939243194, -0.00483994093, 0.00556575228, 0.0110668279, -0.0128705772, 0.00307751237, 0.00685568433, -0.00416084, -0.0152204819, -0.0137329279, -0.00801267102, -0.0230966136, 0.0158097539, 0.00114620721, 0.01236754, 0.00228343159, 9.18492879e-05, 0.00747370208, -0.0166146159, -0.0312745683, -0.013847908, 0.0367648676, 0.0209838562, 0.0140275639, -0.00118393509, 0.00857319869, -0.0106715849, -0.0203945842, -0.00846540462, 0.00271281018, -0.0217456, -0.00796955358, -0.00320506841, -0.00900437403, -0.0186267663, -0.00865224749, -0.0179225132, -0.00847259164, 0.000946788699, 0.0143725043, -0.00822825916, 0.0123459809, 0.00243973266, 0.0071503208, -0.00366858183, -0.023441555, 0.01265499, -0.0201071333, -0.00746651599, 0.0132227037, 0.0272933859, -0.0141138, 0.00853008125, 0.00933494139, 0.00212174095, 0.000604992616, 0.0242032968, -0.00999607705, -0.0384320766, 0.0107147023, -0.0332292318, 0.00323381345, 0.0226654392, -0.0189142153, 0.0152204819, -0.0130143026, 0.0123028634, -0.0125184515, 0.013847908, 0.014444367, 0.00496929325, 0.0120944623, 0.00644606818, -0.00207323371, 0.00957927387, -0.0177500434, -0.0195322335, -0.00728326663, -0.00314398529, -0.00662213145, -0.00299307401, 0.00603645202, 0.0174913369, -0.00067955, 0.0099314, 0.0122525599, -0.00830012094, 0.000150125299, 0.00876004156, -0.0170745347, -0.00176961464, -0.0115770521, 0.0071503208, -0.0185549036, -0.0010231426, -0.0025475265, 0.00407460518, 0.00400992855, -0.00632030889, 0.0036398368, -0.0146886995, -0.000777911802, -0.0163990278, -0.0033685558, 0.0283138342, -0.0145737194, -0.00923433434, 0.0100320084, -0.0025026123, -0.0207395237, -0.00669040065, 0.00473574037, 0.00182890112, -0.0274083652, -0.0274371114, 0.00402789423, -0.00183608744, -0.00598614803, -0.0160828326, 0.0208832491, -0.0105206734, 0.00847259164, -0.00419317791, -0.0236427691, -0.00914091244, -0.0114333276, 0.00302541209, -0.0173332393, -0.0153354621, -0.00227444875, -0.00243793614, -0.0036937336, 0.00968706794, -0.00242176699, 0.00916965771, 0.0143293869, -0.0232547112, -0.0144228078, -0.0111602498, 0.000953974959, 0.0047069951, -0.00996733177, -0.0024289533, -0.0118860612, -0.00302002253, -0.00449500093, -0.0321944095, -0.0268765837, -0.0082570035, -0.0170745347, -0.00226546591, -0.0146024646, -0.014336573, 0.0254393332, 0.00893251132, -0.00475011254, 0.013754487, 0.00485790661, -0.0219468139, -0.00211455463, 0.00664369, 0.00242176699, -0.0286012832, -0.00528908148, -0.00865224749, 0.00505912164, -0.00011924687, -0.0138335358, 0.0312745683, 0.0141856615, 0.00423270231, 0.00511661172, -0.0119938552, -0.00348712876, -0.0113614649, -0.00539328204, -0.00186842552, 0.00583883, -0.0180374924, -0.0175344553, -0.000198857073, -0.00754556479, -0.00914809946, 0.0124681471, -0.0131724, -0.0128705772, 0.0172470044, -0.0150911296, 0.00195466052, 0.000402654696, 0.0267328583, -0.00692036096, -0.00443391781, -0.0122381877, 0.00366139552, 0.0164852627, 0.0109877791, -0.0034224526, -0.00477885781, 1.94534095e-05, 0.0196759589, -0.0236283969, -0.00314398529, -0.0086450614, -0.0202939752, -0.0224929694, 0.00143186073, 0.0122238146, 0.0061909561, -0.0128633911, -0.0167870857, -0.00110129314, -0.00753119215, -0.00577056035, -0.0171320252, 0.0849127546, 0.00966550875, 0.0120800901, -0.0257555284, -0.0107434466, -0.00427222671, -0.00867380667, 0.0443535484, 0.0205814261, 0.0110883871, 0.00145880925, -0.00213791, -0.0160540882, 0.0146743273, -0.0163990278, -0.0144371809, -0.00348712876, -0.00778271118, 0.00894688349, -0.00287989061, -0.000330567593, -0.0106715849, 0.00860194396, -0.022047421, 0.0126693621, 0.00208760635, -0.000644517, -0.0210988373, -0.0197909381, 0.0227085575, -0.0060831625, 0.0243182778, -0.00146240229, 0.0202364866, -0.0196903311, 0.0123387948, 0.0338041298, -0.000262971909, 0.0207538959, -0.00967988186, -0.00478963694, 0.0279688928, 0.0157810096, 0.00297870161, 0.00083450356, -0.0129352538, 0.0244045127, -0.00989546906, 0.00467465725, 0.00520643964, -0.00261938898, -0.0367073752, 0.00923433434, -0.0237721223, 0.00561964931, 0.00687724352, -0.00513098389, -0.00791206397, -0.00253674691, 0.00900437403, 0.00507349381, 0.0132730082, 0.0177787878, -0.00517410133, 0.0138982115, -0.0126909213, 0.0137616731, -0.0020660474, -0.0100966841, -0.0087816, 0.0136395069, 0.0034422148, 0.00653589657, 0.00203550584, -0.0163127929, 0.00896844268, -0.0105925361, 0.0159103628, -0.0071611004, -0.0159678515, -0.012259746, 0.0102044782, -0.0210988373, -0.00128274597, 0.0019726262, -3.09626412e-05, -0.0102475956, -0.0223636162, -0.0100607527, 0.00177500432, 0.00146509719, 0.0455895849, -0.00327333785, 0.00312781637, 0.0078833187, 0.00799111277, -0.0158241279, -0.00222594151, 0.0345802456, 0.0174913369, 0.0300960243, 0.00654308265, -0.0150623843, -0.00298948097, -0.00102763402, 0.0225217137, 0.00431534462, 0.00422551623, 0.00400274247, 0.0104488106, 0.00680897385, 0.00350509444, 0.00461357366, 0.0475155, 0.0134454779, -0.0120800901, 0.0173332393, 0.0105566047, 0.00817076862, -0.0182818249, 0.0183824338, 0.0228522811, -0.000196499081, -0.00995296, 0.00638498506, 0.00959364697, 0.00858038478, 0.000841240631, 0.0113830231, -0.0100104492, 0.0197190754, 0.00643528858, 0.0165571254, 0.00288528018, 0.0287450086, 0.0323381349, -0.020178996, -0.00118573161, -0.0103122722, 0.0330567583, 0.00563042844, 0.0143078277, -0.00726170791, 0.0118141985, 0.0192016661, -0.0203083493, -0.0026355579, -0.00323740649, -0.00709283073, 0.00498725893, -0.020380212, 0.00628797058, -0.00975174457, -0.00644247513, 0.00263915118, -0.0265747607, -0.0143653182, -0.0190291964, -0.000756802154, -0.0121375797, 0.0033685558, -0.00200496428, 0.022938516, -0.0183105711, 0.0100248214, -0.00877441373, 0.00904030539, 0.000614424585, 0.00441954518, 0.00889658, 0.0193741359, 0.000134966802, -0.0104056932, 0.0126837352, -0.0177644156, 0.004053046, 0.0133879874, -0.00586398179, -0.00921277516, -0.00182440982, -0.0120226, 0.00305056409, -0.00549388956, 0.030958375, -0.0133089386, 0.00429019239, -0.00716469344, 0.0063885781, 0.00695629232, 0.0116489148, 0.00259244046, 0.0103553897, -0.0225217137, -0.0054292134, -0.000980025157, 0.00290504238, -0.000702456164, -0.00942117628, -0.0123316087, 0.0232115947, 0.00400992855, -0.00778271118, 0.0123100495, 0.0144587392, 0.0125328237, 0.00779708382, -0.0175057109, -0.00595021667, 0.0190579407, -0.00286911125, -0.00592865795]
15 Nov, 2024
Divide and Conquer Algorithm 15 Nov, 2024 Divide and Conquer algorithm is a problem-solving strategy that involves. Divide : Break the given problem into smaller non-overlapping problems.Conquer : Solve Smaller ProblemsCombine : Use the Solutions of Smaller Problems to find the overall result.Examples of Divide and Conquer are Merge Sort, Quick Sort, Binary Search and Closest Pair of Points.Basics of Divide and Conquer Algorithm:Introduction to Divide and ConquerDynamic Programming vs Divide-and-ConquerDecrease and ConquerAdvanced master theorem for divide and conquer recurrencesStandard Algorithms on Divide and Conquer Algorithm:Binary SearchMerge SortQuick SortCalculate pow(x, n)Karatsuba algorithm for fast multiplicationStrassen’s Matrix MultiplicationConvex Hull (Simple Divide and Conquer Algorithm)Quickhull Algorithm for Convex HullPractice problems on Divide and Conquer Algorithm:Square root of an integerMaximum and minimum of an array using minimum number of comparisonsFind frequency of each element in a limited range array in less than O(n) timeTiling ProblemCount InversionsThe Skyline ProblemSearch in a Row-wise and Column-wise Sorted 2D ArrayAllocate minimum number of pagesModular Exponentiation (Power in Modular Arithmetic)Problems Based on Standard Divide and Conquer AlgorithmsBinary Search Based ProblemsMerge Sort Based ProblemsQuick Sort Based Problems Quick Links :Learn Data Structure and Algorithms | DSA Tutorial‘Practice Problems’ on Divide and Conquer‘Quizzes’ on Divide and Conquer Master Data Structures and Algorithms at your own pace with our DSA Self-Paced course. In just 90 days, you’ll cover core concepts, solve real-world problems, and sharpen your problem-solving skills. Take the Three 90 Challenge: complete 90% of the course in 90 days and get a 90% refund. Stay motivated, track progress, and achieve DSA mastery. Start today!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm
https://www.geeksforgeeks.org/divide-and-conquer?ref=asr10
PHP
Divide and Conquer Algorithm
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.00466577709, 0.00192369241, -0.014599367, 0.00156309805, -0.0180986989, -0.0180861577, 0.00702375034, 0.0151386904, -0.00525527028, 0.0558388159, -0.00173712394, -0.0269160159, 0.0424184352, -0.0112191867, -0.00754426047, 0.0116644427, 0.00233132066, 0.0395085961, -0.00251788902, -0.0613073073, -0.00617400184, -0.014473943, 0.00658476586, 0.0344163775, -0.0178227667, 0.0190519225, 0.000377644174, -0.0221875254, -0.0488652363, 0.00144629681, 0.0116080018, 0.0198546369, -0.00989596266, -0.0810239762, -0.000964981795, 0.0121222408, -0.0451275967, 0.0223004073, -0.03120552, 0.000282008288, -0.0146746216, -0.00628688373, -0.0314061977, -0.0299261939, 0.00318263681, 0.0214726087, -0.0311051812, 0.00535560958, -0.00183275982, 0.0182492081, 0.0148376729, -0.0380285904, 0.0209959969, -0.0101029128, 0.00341780717, -0.0121535966, 0.0126302084, -0.00581654347, -0.0310299266, 0.00456230203, 0.0506211743, -0.0356455334, -0.0440740325, 0.0199800618, -0.00168852217, -0.0232410878, -0.0179356486, 0.0566917, 0.0200427733, -0.00154820387, -0.021522779, -0.0191648044, -0.0308794174, 0.00591688277, -0.028671952, 0.00493543874, 0.0409635156, -0.0304780602, -0.0156153021, 0.0193278566, -0.0637656227, -0.00161013205, -0.00782646518, -0.0289478861, 0.0520760939, 0.00524272816, 0.0338645093, -0.0556883067, 0.0474103168, -0.0256366897, -0.0437981, -0.0216231178, 0.00243479572, 0.000188528124, -0.00537442323, 0.00181708182, 0.0142607214, -0.00899290945, -0.033086881, -0.00453408156, -0.00474416697, 0.0261383858, 0.00723697152, -0.0315065384, 0.0310299266, -0.00869816262, -0.00202873512, 0.0298760235, -0.00819019508, 0.0234417673, -0.020632267, 0.0136085162, 0.0210336242, 0.037602149, -0.0256241467, -0.00112489751, -0.00460620085, -0.0651202, -0.0401106328, -0.016229881, -0.0316570476, 0.00826544873, -0.0096701989, 0.0379784219, -0.0492665917, -0.0107676601, 0.00738748023, 0.00711154751, -0.00306505174, 0.0205068421, 0.0121661387, -0.0300767031, -0.00101044797, 0.0133702103, 0.0477113351, 0.0233665127, 0.00932528265, 0.0150759788, -0.00881104451, 0.0149003845, 0.0141854677, -0.0173461549, 0.0124232583, -0.00369060459, -0.00281577138, -0.000942248676, 0.0177098848, 0.0245455, -0.0456042066, 0.00707392, -0.0570428856, -0.0130691929, 0.0251726191, -0.0106171509, 0.0129437689, -0.00542459311, 0.00278598326, -0.0166939497, 0.00375645235, -0.0254987217, 0.0230153259, -0.0253105871, 0.00277971197, 0.0379533358, -0.0313560292, 0.00736866659, 0.0213973541, -0.00921867229, 0.00401043613, 0.0289729703, 0.0458550565, 0.013081735, -0.00575696677, 0.0329112895, -0.0175468344, -0.0290482249, -0.00283615291, -0.00838460214, 0.0120908851, 0.0147498762, -0.00938172359, -0.0131444475, 0.0212719291, 0.0214475244, 0.0309797563, -0.0104290154, 0.0131695317, -0.0174590368, 0.0189265, -0.0298509393, -0.0110686785, -0.00874833204, 0.0409384295, 0.00555628818, 0.0434469134, -0.0181363262, -0.0249343142, 0.0382292718, 0.0257370286, 0.00062790449, -0.0224007461, -0.0258875377, -0.0302773807, 0.0170827638, 0.00792680401, -0.0250471961, -0.0183244627, -0.0516245663, 0.0434218273, -0.0694849566, -0.0253607556, 0.0206197239, -0.0679798722, -0.00977681, -0.0406875834, -0.0268909298, -0.00349933282, 0.02616347, -0.0214976929, -0.0207827762, -0.00883612875, 0.0196414161, 0.0278190691, -0.0132322442, -0.0146119092, -0.048187945, 0.000743921788, 0.00320145045, -0.0118902065, 0.00891138334, -0.00741256541, 0.020632267, -0.000721580582, -0.0005691119, 0.0200929437, -0.0562903434, 0.00217454066, 0.0104290154, 0.0096325716, 0.0260380469, -0.0202685371, -0.00401043613, -0.00876714569, 0.00804595742, 0.0330367126, 0.0333126448, 0.00138515257, 0.0173963252, -0.00571933948, -0.0251851622, -0.00716798799, -0.00780138, -0.0161797106, 0.0374516398, 0.00718680164, -0.00256492314, 0.0242319386, 0.00128010986, -0.00247085514, 0.00202559936, 0.0315065384, -0.00270759314, -0.0473350622, 0.0250471961, 0.00431772508, 0.00429264037, -0.00721188681, -0.0160041172, 0.0174088664, -0.0220746435, 0.0128685143, -0.00845985673, 0.00613637501, -0.0430204719, 0.00419230107, -0.0174590368, 0.0317072161, -0.010435286, 0.0399601236, 0.016104456, 0.0371506214, -0.0178854782, 0.0597018786, 0.0107300328, 0.012398174, -0.0282956809, -0.044149287, 0.00371882506, 0.0128434291, -0.0238682088, -0.0084912125, -0.00903053582, 0.00839087367, -0.00647188444, 0.0225010868, -0.0129813962, 0.0233665127, -0.0323845074, -0.0208329447, 0.0186881926, -0.034341123, -0.00637468044, -0.023140749, 0.00957613159, -0.0163302198, 0.0185251422, -0.0238180403, -0.0113320686, -0.00502950698, -0.0121912239, 0.0213095564, -0.0392075777, -0.00108413468, -0.0187132787, -0.054484237, 0.0137966527, 0.0650700331, 0.00600154372, -0.0382292718, -0.0155149633, 0.0363228247, 0.0275933053, -0.031581793, 0.021635659, 0.0694849566, 0.00458111567, 0.00172144594, -0.0128058018, -0.0425187759, 0.0409133472, -0.00701747928, -0.0192776863, -0.0136712287, 0.00938799512, 0.0162925925, -0.0341153592, -0.0170075092, 0.014724791, -0.025410926, -0.00911206193, -0.00459992932, -0.00877341721, 0.0163176768, 0.0170702226, 0.0224509165, 0.00725578517, -0.0439486094, -0.00539950794, 0.0364733338, -0.0352943465, 0.000739218376, 0.0337140039, 0.0535310134, 0.036347907, -0.007675956, -0.0500442199, -0.0268407613, -0.016969882, 0.0347926505, 0.0246834662, 0.0633140951, -0.020883115, -0.0279695783, -0.0138217378, 0.0112944413, -0.0704381838, -0.0176722575, 0.00192369241, -0.0159915742, 0.0113947811, -0.01170207, 0.0400353782, 0.0332875587, -0.00730595458, -0.0348679051, 0.0113634244, 0.0365987569, -0.0508218519, -0.0258373674, 0.0132949557, -0.0223756619, 0.0384299494, 0.028421104, -0.018111242, 0.0312807746, -0.00973291136, 0.00310267904, 0.0107864738, -0.00498874439, 0.0132949557, 0.000634959608, 0.0329865403, -0.0043898439, 0.00555942394, 0.0333628133, -0.050445579, -0.0487899818, 0.0171454772, -0.00909324829, -0.0210336242, 0.0371757075, 0.00601095054, 0.011005966, 0.0153268268, 0.0204817578, 0.0256366897, -0.0287973769, -0.0209332854, 0.0101342686, 0.00155682687, 0.000521293958, 0.0389567316, -0.0345167182, 0.0380285904, 0.0291234795, -0.00114214339, -0.0195661616, 0.0209332854, -0.0122225797, -0.00483509945, -0.0232661739, 0.0161797106, -0.0154271657, 0.0228773579, -0.010184438, 0.00382543541, 0.000225175478, -0.0195536204, 0.0292489044, 0.0257119443, 0.00460306508, 0.0321085751, 0.00406687707, 0.0662239343, -0.0185000561, -0.0486143865, 0.0139471618, 0.0186756514, -0.00975799654, -0.0210461672, -0.00761951506, 0.00568171218, -0.0307539925, -0.0388062224, -0.0370001122, -0.0319831483, -0.0491411686, 0.00144629681, -0.0170576796, -0.0276685599, -0.0573940761, 0.0102408789, -0.0481377766, 0.000972036913, 0.0240814295, -0.00704256399, 0.00480374368, 0.000986931, -0.0012252368, 0.00318577257, 0.040386565, -0.00192996359, -0.016117, 0.00168695429, 0.0177224278, 0.00378153706, -0.0373011306, -0.015464793, -0.0234668516, -0.0155902179, -0.0165434405, -0.0646185055, 0.00428009778, 0.0291736498, -0.000632999814, -0.0141478404, 0.0170576796, -0.0537818596, 0.0102973199, -0.0152139449, 0.0013945594, 0.00604230678, -0.0202183668, 0.0195787046, -0.0376774035, -0.0285214428, 0.0155525906, -0.0149380118, -0.0104603712, 0.0354699381, 0.0069673094, -0.0197919253, -0.00847239885, -0.0246082116, -0.022764476, 0.0448767468, -0.0568422079, -0.0216732863, 0.00758815883, 0.0224383734, -0.00730595458, -0.00466577709, -0.0180861577, 0.0228021033, 0.0114888493, -0.0448767468, -0.00337390858, 0.00413586, -0.00237051584, -0.034466546, -0.0504706651, 0.0292238183, -0.0115390187, 0.0337390862, -0.0197166707, -0.0125298686, 0.0215353202, 0.00653459644, -0.0171956457, 0.0135332616, 4.56254702e-06, -0.0139095346, -0.00667883409, 0.0151261482, -0.0360970609, -0.00461560721, 0.00637154514, -0.0285465289, 0.0202183668, 0.00601408631, 0.0325099304, 0.0252729598, 0.0185878538, 0.0279695783, -0.00176377664, 0.0105168121, 0.016969882, -0.00523645664, -0.00537128793, -0.00834070332, 0.00750036212, 0.0334380679, -0.0210712515, -0.00236738, -0.0329865403, -0.00668510515, 0.027292287, -0.0114073232, -0.0146495365, 0.00906816311, 0.0132573294, -0.00552493241, -0.0353194289, -0.010184438, -0.0126302084, -0.00356831611, 0.0153895393, -0.0418665707, 0.0226766802, -0.0276936442, 0.00672900397, 0.0283709355, 0.0139847891, 0.0171454772, 0.00319204363, -0.013708856, 4.03953854e-05, 0.027793983, -0.00512984628, 0.0395838507, 0.00155682687, -0.00404806342, -0.00919985864, 0.00410763966, 0.00875460356, -0.000604387431, -0.00916223135, 0.000839557673, 0.00733731082, -0.00928138476, 0.0212343019, 0.0247587208, -0.0109369829, 0.00343034952, 0.0253231283, -0.00861663651, -0.0167817473, -0.007675956, 0.0023454309, 0.00693595363, -0.0271417778, 0.020632267, 0.0140475007, -0.0227143075, 0.0137464833, 0.00864799228, 0.00298195845, 0.00263860985, -0.0137213981, -0.00479120109, 0.0286217835, 0.00265742349, 0.00102063874, -0.00296157692, 0.0171580184, 0.0173837822, 0.0199298915, 0.00943189301, 0.0090179937, 0.00132871175, -0.0518754125, 0.0146244522, -0.00705510657, -0.0376774035, -0.0086918911, 0.0263139792, -0.0287472066, 0.0167190339, -0.00493857451, -0.00876714569, 0.0199549776, -0.0277187303, 0.0144363157, 0.0157281831, 0.024532957, -0.00584476395, -0.0129312258, -0.00999630149, -0.00677917339, -0.0230153259, -0.0158912353, -0.00283928844, -0.00265272, 0.0309045017, -0.0213597268, -0.00687324163, -0.0234668516, 0.00591374701, -0.0249719415, 0.00951969065, -0.0397343598, -0.0225888826, 0.0434970818, 0.0512482934, -0.00892392546, 0.0166814066, 0.000236150096, -0.0221373569, 0.0372007936, -0.0176848, -0.00892392546, 0.00766341342, 0.0191020928, 0.0248841438, -0.0195787046, -0.000190879829, 0.00815883838, 0.0165183563, -0.0177725963, 0.0178353097, -0.0180986989, -0.0234417673, 0.0117083415, 0.0197793823, -0.00529916864, -0.0200176891, 0.0185878538, -0.016969882, 0.00753798941, 0.0574944131, -0.00464069238, 0.00701120822, 0.000636135461, 0.0196790434, -0.0125612253, -0.022902444, 0.00333314575, 0.0187759902, 0.0091434177, 0.0023078036, -0.00828426238, 0.0216231178, 0.0103600323, -0.0010778635, -0.0326102711, -0.00356831611, -0.00222941372, -0.027041439, -0.00285339868, -0.00543713523, -0.0145241125, 0.020381419, 0.00544967782, -0.0154522508, -0.0194658227, 0.0188387018, 0.00652205385, -0.00295844139, 0.0090179937, 0.0673276633, 0.00987087749, 0.0080020586, -0.00866680592, -0.00986460689, -0.0141102131, 0.0430706404, -0.0187258199, -0.00655968115, -0.0333377309, 0.000195191285, 0.00131303375, -0.00488840509, 0.00732476823, -0.0348929875, 0.0100339288, -0.0244200751, -0.023140749, -0.0394082554, 0.00438357284, -0.026665166, -0.0126741072, 0.0275933053, 0.020883115, -0.0160668287, -0.00284399185, -0.017622089, 0.0196665, 0.0113320686, -0.0032202641, -0.0242068544, -0.0311553497, 0.00406687707, -0.0103976587, 0.0137213981, 0.0110373218, -0.0103976587, 0.0248590596, 0.0212217607, -0.0107237622, 0.0409635156, -0.00150587328, -0.0126678357, -0.0168570019, 0.0051768804, 0.00955104642, -0.0050138291, 0.0252353325, 0.0223004073, 0.0209583696, -0.00295844139, 0.0119717317, 0.0156905577, 0.0166186951, -0.0139346188, -0.00375645235, -0.00453094626, -0.0153769962, -0.0171454772, 0.00109902886, 0.0286468677, 0.0115139335, 0.0158661511, 0.0171705615, -0.0168820862, 0.0125298686, -0.0486394726, -0.0492164232, 0.0433465727, 0.0160668287, 0.0127493609, 0.00544027099, 0.0127430903, 0.0067666308, -0.00719934423, -0.0230153259, 0.00350873964, 0.0163929313, 0.00926884171, 0.0200678576, 0.0338143408, -0.023642445, 0.0298007689, 0.0306536537, 0.00544654205, 0.0170451365, 0.0138719073, 0.0294746663, -0.0300516188, 0.00420484366, 0.0317824706, 0.00466264132, 0.0313309431, -0.0251726191, 0.00456857355, 0.00628374796, -0.0314312838, -0.0491913371, -0.0105920667, -0.0329363719, -0.0187383629, 0.0360719748, -0.00511103263, -0.0330367126, -0.00150038593, 0.0058917976, -0.00143140275, 0.00810866896, -0.000461717515, 0.00526467711, 0.016731577, 0.00354323117, 0.0172834434, 0.00295060221, -0.00428636931, 0.0133576682, 0.010868, 0.000487586251, 0.0307790786, 0.0077762953, 0.00251005, -0.00965765677, -0.0110373218, 0.0252729598, -0.000216160624, 0.0163803902, 0.0126991915, 0.0359465517, -0.0216607451, -0.0032892474, 0.0233539697, 0.0385302864, -0.0150634358, -0.0251349919, -0.0136085162, 0.0262638088, 0.0261383858, -0.00687324163, 0.000805849966, 0.014473943, 0.0350434966, 0.0273926258, 0.0248841438, -0.00117898663, 0.0028455595, 0.0137590254, -0.0140600437, -0.000449567073, 0.0173210707, 0.0169949681, 0.00524272816, 0.0280950014, 0.000841909379, 0.00919358805, -0.0110937627, -0.00659103738, 0.00574128889, -0.0318828113, -0.0465072617, -0.00375645235, -0.00816511, 0.0254736375, 0.0368997753, 0.00909952, -0.0205444694, 0.0474103168, 0.000345308275, 0.00889257, 0.00365924858, 0.0113132549, 0.0140098734, -0.0225763414, -0.0351187512, 0.0313560292, 0.00235170219, -0.0250471961, -0.0190644655, 0.00972664, 0.00756934518, 0.010698677, -0.00251005, 0.0329865403, -0.017872937, 0.0144614, -0.0485893, -0.0059921369, -0.00604544254, -0.00858528074, -0.0313309431, 0.0303275511, 0.0182993785, -0.00745646376, -0.00062790449, -0.0270916093, -0.00894273911, 0.00149176305, -0.00254454184, -0.00859782286, -0.00381289306, 0.0088173151, -0.0298760235, -0.00440552225, 0.00323907775, 0.0288726315, 0.00293805986, 0.0184498876, -0.00852884, 0.0194281954, 0.00245831255, 0.00512671052, 0.0303777214, -0.00267466926, 0.0428950489, 0.00877968781, -0.0176346302, 0.00147765281, -0.0172081888, -0.03948351, 0.0104541, -0.00962002948, 0.0158786923, 0.0292238183, 0.0244827867, 0.00679171598, 0.0207827762, 0.0145115703, -0.0107174907, -0.0389065593, 0.00549044041, 0.0196665, -0.0374265574, -0.0349933282, 0.0390069, 0.0302773807, -0.0193780251, -0.00584476395, 0.0014658944, -0.0258373674, 0.0168695431, -0.0435974225, 0.0088549424, -0.0121786818, 0.0311302654, 0.0387309678, 0.0292739887, 0.0355201103, -0.00173712394, -0.0162675083, 0.00336450199, -0.0138719073, 0.00188606512, -0.0155902179, -0.0125047844, 0.01560276, -0.0436225086, 0.0131695317, -0.0515242256, -0.00359967211, -0.0276936442, -0.0068042581, -0.0149630969, 0.0336387493, 0.0354950242, 0.00571620418, -0.000112881702, -0.023140749, 0.000335901452, 0.00771358283, 0.00450272579, 0.0235546492, -0.00303839915, 0.02616347, 0.00473789591, -0.00071726914, -0.00710527599, -0.0216105748, 0.0240688883, -0.0236800723, -0.0275933053, -0.0104039302, 0.00133811857, -0.0277438145, -0.00440865755, -0.0049166251, -0.0133952955, 0.0110498648, -0.0103913881, 0.0145868249, 0.03120552, 0.00725578517, 0.0276936442, -0.00018431466, 0.030954672, 0.0173085276, -0.0242193975, -0.0101342686, 0.00496052392, 0.00075607223, -0.0236926153, 0.00851002615, -0.0323092528, -0.0172081888, -0.0128935995, 0.0296502616, 0.00464696344, 0.0395838507, 0.0045278105, 0.00777002377, 0.0194783658, 0.00208831159, 0.00636213832, -0.0304028057, -0.0185878538, 0.0134705501, 0.0111376615, 0.0180109031, 0.0329865403, -0.0371004529, 0.0637154505, 0.00688578375, 0.0101718958, 0.000504048134, -0.0532801636, -0.0471093, 0.00660985103, -0.0059513743, 0.0181614123, -0.0147122489, 0.00315598422, 0.00110138056, 0.0125047844, -0.0127368188, -0.0296251755, -0.0286970381, 0.00898663793, 0.0093378257, -0.0186254811, 0.00840968732, -0.0289228, -0.0152390301, 0.00262763514, 0.0149881821, 0.0142732644, 0.00108727033, 0.0105983373, -0.0148627572, -0.0127180051, 0.0157532692, -0.00590747595, -0.001807675, -0.0261885542, -0.00788290519, 0.0136837708, -0.0208580308, 0.0202559941, 0.0193529408, -0.00103631674, -0.00856019557, 0.0246082116, -0.00796443131, 0.0270916093, -0.00945070665, -0.0320082344, 0.00149568252, 0.00586984865, -0.0172583591, 0.0274678804, 7.37846567e-05, 0.0178102236, 0.0088549424, -0.00290827174, 0.0150759788, -0.0322590806, -0.0117647815, -0.0218112543, 0.00100025733, 0.00787036307, 0.00358712976, -0.00391009683, 0.00269505056, -0.00780765107, -0.00428636931, -0.0315567069, 0.00990850478, -0.000404100807, 0.010698677, -0.0139095346, 0.0164305586, -0.020632267, 0.00243009231, -0.00409509754, -0.0137966527, -0.00356831611, -0.00749409106, 0.00649696914, 0.00413586, -0.00615518866, 0.0107488465, 0.0478367582, -0.0212844722, 0.0204943, -0.00454976, -0.00513611734, -0.0151386904, 0.0389818139, -0.00310424692, 0.019490907, -0.0138844494, 0.012774446, -0.0114135947, 0.0229400713, 0.0207451489, 0.0151763177, 0.0124608856, -0.0194031112, 0.015351912, 0.0192275159, -0.0257621128, -0.0138468221, 0.0167064928, 0.00708646234, 0.005788323, -0.000770574377, -0.00630883314, 0.0139471618, -0.0118463077, -0.0468333662, -0.0190393813, 0.039333, -0.0201932825, 0.00125816069, -0.0134203807, -0.00092421897, 0.0362977386, -0.00429577613, -0.0210587084, -0.0294746663, 0.0135332616, -0.0225512553, -0.00876087416, -0.0157156419, -0.00197229418, -0.0127493609, -0.00784527883, 0.0207451489, 0.00818392355, -0.000921867264, 0.00770104071, 0.00654713856, -0.0190142952, -0.0055625597, 0.0045905225, -0.0129061416, 0.0294244979, 0.0105481679, -0.00620222231, -0.00973291136, -0.00679171598, -0.0106861349, -0.0048507778, 0.0244827867, -0.000743137905, 0.00509849, 0.0163176768, -0.0142983487, -0.0101405401, 0.00218865089, 0.00613323925, -0.0438482687, 0.0206071828, 0.00731222611, -0.00829680543, -0.00017951327, 0.0192651432, -0.00847867, 0.0316319615, -0.00228742231, -0.0192275159, -0.0212343019, -0.0136963129, -0.0151010631, 0.02502211, 0.000780373171, -0.0383296087, -0.0144488579, -0.00955104642, -0.010868, -0.0276183896, -0.0122288512, 0.00562213594, -0.0205068421, -0.00454035308, 0.0157030988, -0.0101342686, 0.0202058256, 0.0344163775, -0.0048131505, -0.0233414285, 0.00286594103, -0.0187132787, 0.0205695555, 0.0119403759, -0.00590120442, 0.0185627695, 0.0144363157, -0.0142983487, -0.00834070332, 0.014335976, 0.0262136403, 0.00453721732, 0.0321085751, 0.00135222869, 0.0195661616, -0.016731577, 0.0128058018, -0.00960121583, -0.00867307745, -0.0182617512, 0.00702375034, 0.00431459, -0.0116142733, -0.00857273862, 0.00121818169, -0.017872937, -0.000791739731, 0.0190142952, 0.00430831825, -0.0064405282, 0.0125863096, 0.00994613208, -0.00960748736, -0.00439611543, -0.00341467164, 0.0151888607, 0.00775748165, 0.00508908369, -0.00717425952, 0.0198044684, -0.00886121392, -0.00586357759, 0.00776375271, 0.00815256778, 0.00131068204, -0.0033206034, 0.00614891713, 0.015339369, 0.0066412068, 0.0163678471, 0.0177600551, -0.00505145639, -0.00480374368, 0.018374633, -0.0185627695, -0.0249970257, 0.00972036924, 0.0140098734, 0.012260207, 0.0155902179, 0.0228271894, 0.0305031445, 0.0060517136, -0.0173837822, -0.0116142733, 0.0169071704, 0.000311796524, 0.0218614228, -0.0261133015, -0.0265899114, 0.00167911535, -0.00842222944, 0.00314344186, -0.0155902179, 0.0401858874, 0.0214851517, -0.00176691217, 0.0256241467, 0.0184875149, 0.014335976, -0.00656595221, 0.0163678471, -0.000895214616, -0.00426442, -0.0165685248, -0.0523771085, 0.00176220876, -0.0248966869, 0.000822311849, 0.00795188919, -0.000103376908, -0.000553041929, 0.00728087, -0.0211715903, 0.0123417331, 0.0215353202, -0.00208047242, -0.00308543327, -0.02502211, -0.0116581712, -0.0387309678, 0.00114449509, -0.00606112042, -0.0139471618, -0.00510162581, -0.0169949681, -0.0166939497, 0.00913714711, -0.00322653539, -0.0130566508, 0.0281953402, 0.0127995312, 0.0080585, -0.00824663509, -0.000474259927, 0.0102596926, 0.0151386904, 0.00503577804, 0.0340150185, 0.0168946274, -0.00758815883, 0.00129343616, 0.0194783658, -0.0174214095, -0.000956358854, -0.0204190463, -0.0148502151, 0.0142481793, 0.00377526577, 0.026414318, -0.0188763291, 0.00489467615, 0.0332123041, 0.00447450532, -0.00146197481, -0.00938172359, 0.0190268382, -0.028671952, -0.020381419, 0.00617086655, 0.0280448329, 0.0419669077, -0.0207576901, -0.027793983, 0.0177851394, -0.000117193158, -0.0179607328, 0.00433026766, -0.0111878309, 0.00771358283, -0.0185376834, -0.000752936641, 0.0102032516, -0.0417411439, -0.0192776863, 0.00609874772, -0.00174653076, 0.00668510515, -0.0118463077, -0.0292489044, 0.0123730889, 0.0262888949, -0.0113634244, 0.0152766574, 0.0342157, 0.00443374226, -0.00926884171, -0.00493543874, 0.0162800495, -0.0037062827, -0.0290983953, -0.00151449617, 0.0359967202, 0.0156780146, -0.0131820748, 0.0246709231, 0.00116174086, -0.0187132787, -0.0136085162, -0.0139722461, 0.0174590368, -0.0411641933, -0.00620849384, 0.0275682211, -0.00629001949, -0.00834070332, 0.00757561671, -0.0228648167, -0.0303275511, -0.00827172, 0.00138750428, -0.00108021521, -0.0248966869, -0.00711154751, -0.0276685599, 0.0437730178, 0.0052395924, 0.0187007356, -0.000897566322, 0.00534306746, -0.00660985103, -0.0101656243, -0.0175970029, 0.00265272, 0.019490907, -0.0123793604, -5.76656967e-05, 0.00809612684, 0.0267404206, 0.0296000913, 0.0275682211, -0.00266683032, 0.0225261711, 0.0210587084, -0.014085128, -0.00148627581, 0.0132824136, -0.0117396973, 0.0133952955, -0.0225261711, 0.000766262936, 0.0027938222, 0.0231031217, 0.0235044789, -0.0296753459, 0.0109557966, -0.0368496068, -0.0133827534, -0.000355107, -0.0111000342, 0.00354636693, -0.000305721274, -0.0105168121, 0.0140725859, 0.0046500992, 0.00674154609, -0.0288475472, 0.0332373902, -0.0159414057, 0.0128058018, -0.0182241239, 0.010184438, -0.00896155275, -0.00264331326, -0.00642798608, -0.00689832633, -0.0188136175, 0.0128434291, -0.0274929665, 0.0218739659, -0.00990223419, -0.0307790786, -0.0126991915, 0.0214976929, 0.00971409772, 0.000762343465, -0.0045873872, 0.0181614123, -0.00252259243, -0.0118463077, 0.00991477631, 0.00123464363, 0.00696103834, -0.0174464937, -0.00186254806, -0.0310550109, -0.019252602, 0.0188136175, 0.0218488816, 0.0118400361, 0.00202559936, -0.010127997, 0.0249970257, -0.0152390301, 0.011451222, 0.00088424, -0.0301017873, 0.0191020928, -0.00423306366, -0.0154898781, 0.00115625351, 0.00913714711, 0.0162424222, -0.00335823069, -0.0273424573, -0.00103004556, -0.0173712391, 0.0255112648, 0.0135583468, 0.0182742942, 0.0173210707, -0.00153644546, 0.0262638088, 0.0193529408, 0.00301174656, -0.0199173503, -0.0204817578, 0.000190879829, 0.0067666308, -0.0230153259, 0.00895528216, -0.00763832871, 0.0106359646, 0.00435535237, 0.0105795236, 0.0028518308, -0.00524899922, -0.0438231863, -0.00975172501, -0.0141980099, -0.00788290519, 0.0238807518, -0.0144864852, -0.0144237736, 0.0142732644, -0.0116769848, 0.00323594222, 0.0296251755, -0.0207075216, 0.00102926162, -0.00709900493, 0.010184438, -0.0104603712, 0.00267153373, -0.0029317888, -0.0207827762, 0.0064781555, 0.0067039188, -0.0066412068, 0.000906189205, -0.0152139449, 0.00824036449, 0.0204692148, 0.00965138525, -0.0109996945, 0.0189892109, 0.026414318, -0.0135458047, -0.0068042581, 0.0280950014, 0.015464793, 0.0214098971, -0.0109244408, -0.0136085162, -0.00445255591, 0.00510789687, 0.00591374701, -0.000488762103, -0.0355953649, 0.0103976587, 0.0136085162, 0.00862290803, 0.00311678927, 0.035846211, 0.00611129, 0.000174025961, -0.0103035914, -0.00152468693, 0.00156309805, -0.00693595363, -0.0214349814, 0.010629694, -0.0107174907, 0.00120799104, 0.0118651213, -0.0042017079, -0.00176848, -0.00423306366, 0.00493857451, 0.00130676245, 0.000968117383, 0.00987714902, -0.0170075092, 0.00294119539, -0.00292081409, -0.0203061644, -0.00426442, 0.0176848, -0.026665166, -0.00561586488, -0.00344916317, 0.0196665, 0.0120407147, -0.0129061416, 0.0118337655, 0.0578957722, -0.0171831045, -0.00192526018, 0.00224665948, -0.0062523922, 0.00364984176, -0.00839087367, -0.0216105748, -0.0108178295, 0.0169197135, -0.022476, 0.00262606749, -0.00444001378, -0.00314657739, -0.0245831273, 0.0196665, 0.00216826936, 0.0130315656, 0.00492916768, 0.0236299038, -0.00322339986, 0.022275323, -0.0012565928, 0.00272483891, -0.000870129792, 0.0065408675, -0.00634018891, 0.00381289306, 0.0204190463, 0.00174653076, -0.0100339288, -0.0190895498, 0.00451213261, 0.00908070616, -0.00209458265, 0.00676035974, -0.00166814076, -0.00130049128, 0.0165810678, 0.021259388, -0.00510162581, 0.0193905681, 0.00605484936, 0.00362475682, -0.00203343853, 0.00973918289, 0.000239481669, -0.000265938317, 0.00123542757, -0.0182993785, 0.0137590254, 0.00620849384, 0.00398535142, 0.0249593984, -0.0104290154, -0.01950345, -0.0136963129, -0.021259388, 0.00946325, 0.0174088664, -0.000964197854, 0.0205444694, -0.0137841105, -0.00906816311, 0.0125173265, 0.00217297277, -0.00449645473, 0.0107237622, 0.00465950603, 0.0211715903, -0.0135081774, 0.000873265381, 0.014223095, -0.00730595458, 0.00682934327, -0.00166814076, 0.00766341342, -0.0227393918, -0.0022936936, 0.00204284536, 0.0109307114, 0.000759207818, -0.0122100376, -0.0135583468, 0.00909324829, 0.00642171456, -0.00847239885, 0.0242444817, 0.0290983953, 0.00637468044, 0.0239560064, 0.00902426522, 0.0201054849, -0.00737493811, -0.0129061416, 0.0031685268, -0.0243197363, -0.0031199248, 0.0128559722, 0.0242444817, 0.00593883172, 0.0238054972, -0.00731849717, 0.00134438975, -0.00892392546, -0.0370753668, 0.00919985864, -0.00474416697, 0.00460620085, -0.000404100807, -0.000251436169, -0.0175593756, 0.0228271894, 0.0196665, 0.000631823961, 0.00207576901, -0.0159539469, -0.00436162343, 0.0243573636, -0.0257621128, -0.0367743522, 0.00175436982, -0.0108429147, -0.0265899114, -0.0284461901, -0.00613951031, 0.00432399614, -0.00549044041, -0.00502637122, 0.0113069844, -0.0307790786, 0.000511495222, 0.0251099076, 0.0194407385, -0.00788917672, 0.00672273245, 0.0182115808, -0.0271919481, 0.00678544445, -0.00418916531, 0.0115954597, 0.0302522965, 0.000183628741, -4.96797074e-05, -0.0488401502, -0.0148125878, 0.0205319282, -0.0162549652, 0.00841595791, -0.00761324354, -0.0140098734, 0.0108115589, -0.00649696914, 0.000736082788, 0.00106061762, 0.00612069666, 0.00271856762, -0.000825447438, -0.0109432545, -0.00727459881, -0.0136210592, -0.00632764678, 0.00401357189, -0.0171831045, -0.00104964303, 0.0162047949, -0.00478493, 0.018612938, -0.0101656243, 0.0322590806, -0.0209207423, 0.00550611876, 0.0249844845, 0.00604857784, -0.0109307114, 0.0233163424, 0.0168570019, 0.000578518724, -0.00455916673, -0.00118369, -0.00817765202, -0.00672273245, 0.00572247524, 0.00379094388, 0.029825855, -0.00815883838, -0.0177224278, 0.0030258568, 0.0146620786, 0.010824101, -0.00826544873, -0.00479433686, -0.0119152907, 0.00470340438, -0.00825290661, -0.00679798704, -0.0187258199, -0.00548416935, -0.00771358283, -0.0276685599, -0.0368746892, -0.0120407147, 0.00872324686, 0.00396967307, -0.0148000456, -0.0115703745, 0.0171956457, -0.00750036212, 0.0195410773, 0.000805849966, -0.0302021261, -0.0130315656, 0.0131319044, -0.000151978747, -0.00631824, 0.00837833062, 0.0014282671, 0.0128120733, 0.00257746549, -0.0042267926, -0.0277187303, -0.0140098734, 0.00841595791, -0.019490907, -0.00239560055, 0.0143861463, 0.00506086322, 0.0101342686, -0.0060893409, 0.0119717317, -0.0218112543, 0.0123229194, 0.00882358663, 0.0177725963, -0.00539323688, 0.0264895726, 0.000808985555, 0.0134454649, 0.00142983487, -0.0319078937, 0.0119403759, -0.0104541, -0.00496679498, -0.0188136175, -0.0169447977, 0.00379721518, 0.0166061521, 0.0214851517, 0.000806633849, -1.91810705e-05, 0.00286750891, 0.0296000913, -0.00857273862, -0.00687951269, -0.00533052487, 0.00199737912, -0.00783273578, 0.00282674609, -0.00706764869, -0.021773627, 0.0157908965, -0.00201776042, -0.0181488693, -0.00159053458, 0.00253513502, 9.8869481e-05, 0.00423619943, -0.0183244627, 0.000510319369, 0.00497306604, 0.00886748452, -0.000735690817, -0.0107676601, 0.00394772412, 0.00517060934, -0.000618497666, -0.0165685248, 0.00975172501, -0.0195787046, 0.0114324084, 0.00733103929, 0.00537442323, -0.00936918147, -0.00348051917, 0.019754298, 0.00283772056, 0.00518315146, 0.0196288731, -0.00864172168, -0.0198044684, 0.00692968257, 0.0120281726, -0.00211026077, -0.00504832063, -0.0117522394, 0.00553433923, -0.0115327472, -0.00993986148, 0.0202434529, 0.0136963129, 0.0082027372, -0.00408255495, 0.0317072161, 0.00150900893, 0.019252602, -0.00953223277, 0.0259878766, 0.0252729598, 0.00565035641, -0.00417662319, -0.00791426189, -0.00709273387, 0.00665374938, 0.0104666427, -0.00512357522, -0.000626336667, -0.0107237622, -0.00333628152, -0.0104039302, 0.0165685248, 0.0111690173, 0.0158661511, 0.000710997963, -0.0187759902, -0.00889884122, 0.0149881821, 0.00234856666, -0.028671952, -0.0299512781, 0.0150508936, -0.0157783534, -0.0294495821, -0.00722442893, 0.0250973646, -0.0112505434, 0.0089803664, 0.00605484936, 0.00312149269, -0.010378845, 0.00626807, 0.0131193623, -0.00109902886, -0.0176848, -0.00203970959, -0.0107049486, -0.00842850097, -0.0212970152, -0.00353068882, -0.00695476728, 0.00743137859, -0.014348519, 0.0171203911, 0.0182115808, -0.0188763291, 0.0108491862, 0.00946952, 0.00721188681, 0.00372196059, -0.00906816311, -0.00840968732, 0.0186003968, -0.00772612542, -0.00321399304, 0.0122413933, 0.00624298537, -0.0150508936, 0.00560959335, -0.00380662177, -0.00943816453, 0.0268909298, -0.00899290945, 0.0106673213, -0.00375018106, -0.0173085276, -0.00753798941, -0.0135708889, -0.0193278566, -0.00217924407, 0.0140976701, -0.00404492766, -0.00968274195, 0.00167284417, 0.00695476728, -0.0135332616, 0.000800362614, -0.0344414636, -0.00587298395, 0.000411155925, -0.0119027486, 0.0218614228, -0.0265648272, -0.00677917339, -0.00692968257, -0.0128935995, 0.0182241239, 0.0304529741, 0.0112881707, 0.00325475587, -0.0210837945, -0.00077566976, 0.00362475682, -0.00590434, -0.00456230203, 0.00580713665, 0.0123103773, 0.0147122489, 0.015351912, 3.18214697e-05, -0.00415467378, 0.0117208837, 0.00897409581, -0.00488526933, 0.00545594888, -0.0086918911, -0.0171956457, -0.0150885209, -0.00730595458, -0.00702375034, 0.021259388, -0.0158034377, -0.0131444475, 0.0204817578, 0.00469399756, 0.0014815724, 0.0137841105, -0.0281451717, 0.0152139449, -0.0171956457, 0.00512357522, -0.00262763514, -0.0157281831, 0.0233665127, 0.0124483434, 0.00576010253, 0.00740002282, 0.0199675187, -0.013708856, 0.00600467948, -0.0133200409, 0.0270665232, 0.0127493609, -0.00930019841, 0.00746273482, -0.00314187398, -0.0119152907, -0.00166657288, -0.00399162248, -0.00453721732, 0.0124734286, 0.00906816311, 0.00928138476, -0.0132447863, -0.0118212225, 0.0182241239, 0.0140224164, 0.00507027, 0.00548103359, 0.00309170433, 0.0207827762, 0.00303369574, -0.00470340438, 0.00276560173, -0.0109369829, -0.0201932825, -0.0168193746, -0.00173085276, -0.00324534904, 0.00324848457, -0.0187132787, -0.0189892109, -0.0103474893, -0.0093440963, 0.00347738364, 0.000503656222, 0.0265648272, -0.00778256636, -0.00113979168, 0.0201556552, 0.0127995312, 0.0115954597, 1.73805493e-05, -0.00350246835, 0.0200176891, -0.023391597, -0.00883612875, 0.000136202754, 0.000956358854, -0.0210963357, -0.00476611638, 0.0329112895, -0.00231093937, 0.00194564159, -0.0231783763, -0.021635659, 0.00760697247, -0.00460620085, 0.00240343949, -0.0421174169, 0.000437024661, 0.0176848, 0.00651578279, -0.0156780146, -0.00312776375, -0.0169949681, 0.0155902179, -0.00672273245, -0.00655968115, 0.00321399304, 0.0138593651, -0.00129186839, -0.0158912353, -0.00273424573, -0.00398535142, 0.0136837708, -0.019490907, 0.0119780032, 0.00514552416, 0.0186380241, -0.0207200646, 0.0118024088, -0.014599367, -0.0252478737, 0.00625552749, -0.00876714569, 0.00842222944, 0.0142481793, -0.00481001474, -0.0088549424, 0.0133952955, -0.0121661387, -0.00920613, 0.0214726087, 0.00972664, 0.00923748594, -0.00630256161, -0.0168820862, -0.00793934613, 0.0103474893, -0.00188920076, 0.0219868477, -0.00360907894, -0.00265272, -0.0144237736, -0.00886121392, -0.0216983724, -0.00335823069, 0.00381602859, 0.0196288731, -0.0205820967, 0.0159915742, 0.0215478633, 0.00923748594, 0.00248182961, -0.000414683484, 0.00667256303, 0.00215415913, 0.0125424117, -0.0270163547, 0.0134705501, -0.00140083057, 0.0121410545, 7.33927081e-05, 0.0232912581, -0.0126615642, 0.0219366774, -0.0164932702, 0.00992104784, 0.0107739316, 0.00227488, -0.00802714378, -0.00733103929, 0.00501696439, -0.0111125764, -0.0138969915, -0.00931901205, 0.000972820795, -0.00436789496, -0.0161671676, 0.0189390406, 0.0180736147, -0.000108178298, -0.00815256778, -0.0268407613, -0.0171078499, 0.0306536537, 0.000140416218, 0.00516747357, -0.0167566612, 0.00307602645, 0.0226139687, -0.0158159807, -0.0162424222, 0.00817765202, 0.00282674609, -0.00358712976, -0.00093205797, -0.00198954, 0.00193780253, -0.0175092071, 0.0203563347, 0.00428009778, 0.0107613895, 0.00278911879, 0.0256492309, 0.00248026196, 0.0068042581, 0.00859155226, -0.00624612113, 0.000495425251, -0.0154522508, 0.00352755329, 0.0338645093, 0.0033833154, 0.0392828323, -0.0121912239, -0.0248841438, -0.0288475472, 0.00462501403, -0.00837833062, -0.00466264132, -0.00353696, 0.00185314135, -0.00322653539, 0.00607679831, -0.0220370162, 0.0210085399, -0.0131319044, 0.0128685143, 0.00417348742, 0.00647188444, 0.0142858066, 0.0107864738, -0.00141729251, -0.0343662091, 0.0216858294, 0.00203187065, -0.0179105643, -0.011238, -0.0261383858, -0.0188010745, -0.0203939602, -0.0038223, -0.0157532692, 0.00401984295, 0.0169949681, -0.0118024088, 0.00703002186, -0.014210552, -0.021761084, -0.00321399304, -0.0136210592, -0.00776375271, -0.00905562099, 0.0129688531, -0.00520510087, 0.0178353097, -0.0268658455, 0.00842222944, -0.00779510895, -0.0114073232, -0.0276685599, 0.00888002757, 0.00319361151, -0.00731849717, 0.00449331896, 0.0012628641, -0.0141102131, -0.0201932825, -0.0116832564, -0.00858528074, -0.0158034377, -0.00399162248, -0.00453094626, 0.0314312838, -0.0195661616, -0.00962002948, 0.00955104642, 0.00871070474, 0.00931901205, 0.00671646139, 0.0456292927, -0.00478179427, 0.00433967449, 0.0156403873, -1.00743491e-05, -0.00047974725, -0.00689205527, 0.0287221223, 0.0195285343, -0.00608620513, 0.00404806342, -0.00519255828, -0.0166688655, -0.0114324084, -0.0105481679, 0.0108617283, 0.0178102236, -0.00765087083, -0.00411077542, 0.0300516188, 0.0113947811, 0.000655341, 0.00592942489, -0.0031685268, 0.00634332467, 0.013959704, 0.00234386325, 0.00819019508, 0.00692968257, 0.00173712394, -0.0186254811, -0.0165308975, -0.00740629388, 0.0084912125, -0.0194407385, -0.0109620672, -0.0390570685, 0.0132949557, 0.00319517939, 0.010447829, 0.0197793823, -0.0178980213, 0.0174339525, 0.00323280646, -0.0264895726, -0.0027201355, -0.00803341437, -0.00397280883, 0.0199048072, 0.0069673094, -0.0148878423, 0.0134454649, -0.0256868582, -0.0109620672, -0.00199581124, 0.000265350391, 0.00668510515, 0.0292238183, 0.00206479453, 0.0153895393, 0.0157030988, -0.00376899471, -0.00521137193, -0.0086542638, 0.00848494098, -0.0203688759, 0.00470026862, -0.0135583468, -0.0111752888, 0.00251475349, 0.0131193623, 0.0136336014, 0.00327670504, -0.00877341721, -0.0167064928, 0.00647188444, -0.00245831255, -0.00474103168, 0.00716171693, -0.0287221223, 0.00227331207, 0.0276434757, -0.0154898781, 0.0101091834, -0.00459365826, -0.00631824, -0.0113132549, 0.0274427962, -0.0072307, -0.00412958907, -0.00249750772, 0.0393580869, 0.0195787046, 0.0109683387, -0.00491349, -0.01232919, -0.0064781555, -0.0265899114, 0.00190958218, 0.0161420833, -0.00252416031, 0.00477552321, -0.0103349471, 0.024532957, -0.0248088893, 0.0239685476, 0.00825290661, -0.00923121441, -0.0218739659, 0.0183871761, 0.0127556324, -0.00220746431, 0.00790171884, -0.00429577613, -0.00372509612, 0.00555942394, 0.000678466051, 0.019240059, 0.00375958788, -0.00197856547, 0.00703002186, -0.024282109, -0.00444628485, 0.00113273656, -0.0232912581, 0.015841065, 0.00759443035, -0.0217109136, -0.00724324258, 0.0430957265, 0.00429577613, 0.00581340771, -0.00424874201, -0.02502211, 0.0242193975, -0.0129939383, 0.0185126, -0.00732476823, 0.00584789924, -0.0270916093, -0.0178980213, 0.00478493, 0.0152264871, -0.00936291, 0.00548103359, -0.0019566163, -0.0122100376, -0.00827172, -0.0063778162, -0.00956358854, 0.00196915865, -0.000104846724, 0.0102157937, -0.00531171123, -0.013207159, 0.00178102241, 0.0297255144, -0.0186003968, -0.0274678804, 0.0117835952, 0.00354323117, 0.00210555736, 0.0166437794, -0.0116456291, -0.0167692043, -0.00802714378, 0.00465637026, 0.000676114345, -0.00695476728, -0.0236800723, 0.00788290519, 0.00368746906, -0.00199110783, 0.00435221661, 0.00967647, 0.0034522987, 0.00716171693, 0.00708646234, -0.0159037784, -0.00629315479, -0.0116456291, 0.0165058132, -0.00714290328, -0.00496679498, 0.0233288854, -0.0109369829, -0.0112003731, -0.0273424573, -0.0215604044, 0.0138969915, -0.0114010517, 0.00919358805, -0.0117146121, -0.00493857451, -0.0319580659, -0.0100402, -0.0062147649, 0.0051392531, 0.0329865403, -0.0415655524, -0.0131569896, 0.0263390634, -0.0118212225, 0.0088173151, -0.00990223419, -0.0119780032, -0.0218614228, 0.00412645331, -0.00987714902, -0.00659103738, 0.029575007, -0.0044212, -0.0105607109, -0.00702375034, -0.000774885877, -0.0109557966, 0.0258624516, 0.00103239727, -0.00156858528, -0.00408882601, 0.0105607109, 0.0334380679, -0.00121661392, -0.000710997963, -0.0226892233, -0.00026319467, -0.00278911879, -0.0113383401, 0.0213095564, 0.00815256778, -4.17182164e-05, -0.00635900255, 0.00826544873, -0.00238305819, 0.0080585, 0.02226278, 0.0179607328, -0.023893293, -0.000938329147, 0.00137104234, -0.00053814787, -0.00430204719, -0.00641544349, -0.00682307174, -0.0246834662, -0.0270916093, 0.0100276582, -0.010698677, 0.0207200646, 0.0114073232, 0.0157281831, 0.00637468044, 0.0174339525, -0.0021510236, -0.00187352276, -0.00175593758, -0.0100652855, 0.0028314495, -0.00413586, -0.00371255376, 0.0166186951, 0.00874206051, 0.00413899589, -0.00977681, -0.0205820967, -0.0116080018, -0.00240343949, -7.9369951e-05, -0.00988969114, -0.0061520529, -0.00324221328, 0.0141227553, 0.0294997524, 0.00683561433, -0.00130205904, 0.0211214218, -0.0128058018, 0.00957613159, -0.014473943, 0.00343662081, 0.0102722347, -0.00845358521, -0.011827494, 8.95606572e-05, 0.00318263681, 0.000376664306, -0.00449959, -0.0130315656, -0.00782646518, 0.00728714094, 0.0325601, 0.0241190568, -0.00115938915, 0.00129970734, -0.00293805986, 0.000186568373, -0.0253983829, -0.00407628389, -0.0114825778, 0.0219115932, 0.00392577471, 0.0205570124, -0.0199173503, -0.00214161677, -0.0120407147, -0.000109844092, 0.0152766574, -0.000136300732, 0.0198671799, -0.00445882743, -0.00351187517, 0.00164619146, 0.00706137763, 0.00935036782, 0.00738748023, 0.0122915637, 0.0170075092, 0.00977681, 0.0125424117, -0.00471908227, -0.0050765411, -0.011758511, -0.025674317, 0.000826231379, -0.000834070379, -0.019001754, 0.0039383173, -0.00188920076, 0.0267404206, 0.0146746216, 0.0289980546, -0.0188387018, 0.00249123643, -0.0105920667, 0.0191020928, 0.0127556324, 0.03948351, 0.0212719291, -0.00439611543, -0.00883612875, 0.0429452173, 0.00600781525, 0.0190519225, -0.0130190235, 0.00734985294, -0.0102346074, 0.0116080018, -0.0177098848, -0.00339585799, 0.0187634472, 0.0200302303, -0.00552493241, -0.00412331754, -0.00711154751, -0.00239560055, -0.00495738816, -0.000758423936, -0.00381602859, 0.00915596075, -0.0119215623, -0.0178854782, -0.00694222469, 0.0187007356, 0.00471281121, 0.000980659854, 0.0202810802, 0.00319204363, -0.0030148821, 0.0198295526, -0.010629694, -0.00522077875, -0.00586044183, 0.000373920629, -0.00263704197, 0.0010911898, 0.0156654716, 0.000389990601, -0.0146997059, 0.0121849524, 0.0100402, 0.00852256827, 0.00551866088, -0.00241598208, 0.01170207, -6.57986675e-05, -0.00657849479, -0.0050765411, 0.0143610612, -0.00423933519, 0.00812121108, 0.0169573408, -0.00397280883, -0.0184373446, -0.0152766574, 0.0013389024, -0.0324848443, 0.0134329228, -0.0056252717, 0.0151136061, 0.00121583, 0.000923435029, 0.00253670267, -0.0188136175, -0.0367994346, -0.0107363043, 0.0381540172, 0.0265899114, 0.0127305472, -0.00200521806, 0.0141603826, -0.0136210592, -0.0230027828, -0.00645934185, -0.0114888493, -0.0174339525, -0.000431145396, -0.0172458161, -0.00441806437, -0.0204692148, -0.00167441193, -0.0303024668, -0.00493543874, 0.00253983843, 0.00765087083, -0.0299763642, 0.000764695171, -0.0015756404, 0.000484450633, -0.00388187636, -0.0266400818, 0.0108303726, -0.00380975753, 0.00164305593, 0.00610188302, 0.0380536765, -0.019754298, 0.00883612875, 0.00746900588, 0.000393714145, 0.00974545348, 0.0420170799, 0.00847867, -0.0157030988, 0.0204065032, -0.0235170219, 0.014599367, 0.0156529304, -0.0114261368, 0.000775277789, -0.00456857355, 0.0124107162, -0.0135207195, 0.00741256541, 0.00101358362, -0.00185941253, -0.00307289092, 0.0133702103, -0.0257370286, 0.0203437917, -0.0202559941, -0.0106924055, -0.0171831045, -0.0153268268, -0.0134454649, -0.00988342054, 0.00436162343, 0.0300516188, 0.00686069904, 0.0213973541, 0.00918731652, -9.78896e-05, -0.012523598, 0.000661612197, -0.0154020814, -0.0113132549, -0.0250597373, -0.00614264607, -0.0198295526, -0.00687324163, 0.00415780954, 0.00870443322, -0.000101907091, -0.00740629388, -0.00259627914, -0.00646561291, -0.00204754877, -0.0204566736, -0.00994613208, 0.0171831045, -0.0156905577, -0.00517060934, 0.00301958551, -0.00161797111, -0.0196915865, -0.0187007356, 0.00884867087, 0.00117193162, -0.0214851517, -0.0204315875, 0.00693595363, 0.000301605789, -0.000956358854, -0.0191020928, 0.0113383401, -0.00569739053, -0.000583614106, -0.0160166603, -0.00923748594, -0.000158935873, 0.00150822499, 0.00874206051, -0.0112191867, -0.0207451489, -0.00788290519, 0.00834697485, -0.0127556324, -0.000870129792, 0.00787036307, 0.00228899019, 0.00971409772, -0.0187258199, -0.0145617398, -0.0229149852, 0.00787036307, -0.00874206051, -0.018111242, -0.0134956343, 0.00538696581, -0.000708646257, 0.00285653421, -0.0251851622, -0.0120156305, -0.00227174419, -0.00947579183, -0.0042267926, -0.016117, -0.00782646518, 0.0258624516, 0.0155776748, -0.00488526933, 0.0137590254, -0.00230937148, -0.0154020814, -0.0080020586, 0.0104854563, -0.0046532345, -0.0349933282, -0.00619908702, 0.0116957985, -0.00158504723, 0.000795659202, -0.0156780146, 0.0161671676, 0.0141102131, 0.00773239648, -0.00609561196, -0.00981443655, -0.00728714094, -0.0148627572, 0.00755680306, -0.0141729247, -0.00182648865, -0.0134329228, -0.0176346302, 0.00435848814, -0.0029945008, -0.00659103738, 0.0170702226, -0.0115139335, -0.0016289457, 0.00145570363, -0.0104666427, 0.0132197021, -0.00603603572, 0.0310800951, 0.00280793244, -0.0115202051, -0.0171203911, -0.00422992837, 0.0172207318, -7.43235869e-05, 0.000699631404, -0.00480374368, 0.00472848909, 0.0268407613, -0.0165183563, -0.0147624183, 0.00597645901, -0.0176471733, -0.0115515608, -0.00363102811, 0.0148753, -0.00505145639, -0.00682934327, -0.0115954597, 0.0109683387, -0.0112505434, 0.000254767743, -0.0227770191, 0.0025194569, 0.0114574926, 0.0151637755, -0.010127997, -0.0110561354, 0.00547789829, -0.00972036924, 0.0361472294, 0.0269661844, 0.0037062827, -0.000913244323, -0.00703629293, -0.0155024203, 0.0114010517, -0.0171454772, -0.00948206335, 0.00638408726, -0.00955731794, 0.00486018462, 0.0166814066, -0.0011068678, 0.00825917814, -0.00294433115, -0.0180861577, 0.0359214656, 0.00634646043, 0.00935663935, -0.0205570124, -0.0116707142, 0.0196539592, -0.00656595221, 0.0311302654, -0.00178572582, 0.0243699048, -0.00739375176, 0.0011539018, 0.0204943, -0.00366865541, 0.00766968448, 0.00992104784, 0.000667883432, 0.0345167182, 0.00446823426, 0.00507340534, 0.0092563, -0.0129939383, 0.0313811153, -0.00194250594, 0.0127869882, 0.00111705856, -0.0124859707, -0.0388563909, 0.0134329228, -0.0236800723, -0.00729968352, 0.00965138525, -0.0127556324, 0.00692968257, 0.00525840605, 0.00440238649, 0.00666002044, 0.0175719187, 0.0121724103, -0.00892392546, 0.014210552, -0.00946952, 0.0165058132, -0.00404806342, -0.0220997296, -0.0173085276, 0.00555628818, -0.00114919851, 0.00692341104, 0.00835324638, -0.0268407613, 0.0042017079, -0.001776319, 0.0185753107, -0.0181739535, -0.0128685143, -0.0107237622, 0.00716798799, -0.0133702103, 6.92282338e-05, 0.00857900921, -0.00666629151, 0.00434908131, -0.0137590254, -0.00486959144, 0.00587298395, 0.00213534548, 0.0330367126, -0.000936761382, -0.00103474897, -0.00257746549, 0.0161546264, -0.0185126, -0.0194156524, 0.0316570476, 0.0242695659, 0.0198671799, 0.00714290328, -0.00519255828, -0.0178227667, 0.0022450916, 0.00477238744, 0.00683561433, -0.00410450436, -0.00126678357, 0.0118588498, -0.00338958669, -0.00622103596, 0.00509849, 0.0369248576, 0.0109181693, -0.00986460689, 0.0062147649, 0.0176597144, -0.00243009231, -0.0216231178, 0.0127117336, 0.0077762953, 0.000782332907, -0.0120971557, 0.0168193746, 0.0157908965, -0.00856019557, -0.00591061125, -0.00520823617, -0.00707392, 0.0167190339, 0.0215353202, 0.019490907, 0.0152139449, 0.040386565, 0.0269411, -0.0126302084, -0.00282988162, -0.0150759788, 0.0240688883, -0.00876087416, 0.0158786923, -0.00619908702, -0.00186568371, 0.0189766679, -0.0133827534, -0.00311678927, -0.00220276113, 0.0205319282, 0.00328611187, -0.0125612253, -0.00363729941, -0.0134705501, -0.00210085395, 0.000465245073, -0.0158912353, -0.0183997173, -0.0213597268, -0.011827494, -0.00408569071, 0.0152766574, -0.00536815217, 0.0259377062, -0.0177600551, -0.00541205052, 0.00247085514, 0.00367492647, 0.00850375462, -0.000669451198, 0.0168570019, 0.0203312486, -0.00882358663, 0.00118369, 0.00916223135, -0.00686069904, 0.00703629293, 0.00559391547, -0.00771985436, -0.00610501878, 0.000248888478, -0.0026887795, -0.00431459, -0.0030572128, -0.00633705361, -0.0141478404, -0.0120407147, -0.011758511, 0.0167692043, 0.010378845, 0.0172458161, 0.0111063058, 0.0217109136, -0.019741755, -0.0055625597, 0.0116957985, 0.00954477489, -0.00568171218, -0.00914968923, -0.0247963481, 0.0287221223, -0.000963414, -0.0152892, 0.0168946274, 0.00792053249, -0.00560332229, 0.00639349408, -0.0190644655, -0.00580713665, 0.0118086804, -0.00301801786, 0.00439297967]
27 Jan, 2025
Propositional Logic 27 Jan, 2025 Logic is the basis of all mathematical reasoning and all automated reasoning. The rules of logic specify the meaning of mathematical statements. These rules help us understand and reason with statements such as – [Tex]\exists~x~such~that~x~\neq~a^2~+~b^2,~where~\:x,~a,~b\in~Z[/Tex]Which in Simple English means “There exists an integer that is not the sum of two squares“. Importance of Mathematical LogicThe rules of logic give precise meaning to mathematical statements. These rules are used to distinguish between valid and invalid mathematical arguments. Apart from its importance in understanding mathematical reasoning, logic has numerous applications in Computer Science, varying from the design of digital circuits to the construction of computer programs and verification of the correctness of programs. Table of Content Types of PropositionsPropositional LogicTruth Table of Propositional LogicPropositional Logic ExamplesTypes of PropositionsIn propositional logic, propositions are statements that can be evaluated as true or false. They are the building blocks of more complex logical statements. Here’s a breakdown of the two main types of propositions: Atomic PropositionsCompound PropositionsPropositional LogicPropositional logic is a branch of mathematics that studies the logical relationships between propositions (or statements, sentences, assertions) taken as a whole, and connected via logical connectives. For Example, The sun rises in the East and sets in the West.1 + 1 = 2‘b’ is a vowel.Above 3 sentences are propositions, where the first two are Valid(True) and the third one is Invalid(False). All of the above sentences are propositions, where the first two are Valid(True) and the third one is Invalid(False). Some sentences that do not have a truth value or may have more than one truth value are not propositions. For Example, What time is it?Go out and Playx + 1 = 2The above sentences are not propositions as the first two do not have a truth value, and the third one may be true or false. To represent propositions, propositional variables are used. By Convention, these variables are represented by small alphabets such as [Tex]p,\:q,\:r,\:s   [/Tex]. The area of logic which deals with propositions is called propositional calculus or propositional logic. It also includes producing new propositions using existing ones. Propositions constructed using one or more propositions are called compound propositions. The propositions are combined together using Logical Connectives or Logical Operators. Propositional LogicTruth Table of Propositional LogicSince we need to know the truth value of a proposition in all possible scenarios, we consider all the possible combinations of the propositions which are joined together by Logical Connectives to form the given compound proposition. This compilation of all possible scenarios in a tabular format is called a truth table. Most Common Logical Connectives- 1. NegationIf [Tex]p   [/Tex]is a proposition, then the negation of [Tex]p   [/Tex]is denoted by [Tex]\neg p   [/Tex], which when translated to simple English means- “It is not the case that p” or simply “not p“. The truth value of -p is the opposite of the truth value of p. The truth table of -p is: p¬pTFFTExample, Negation of “It is raining today”, is “It is not the case that is raining today” or simply “It is not raining today”. 2. ConjunctionFor any two propositions [Tex]p   [/Tex]and [Tex]q   [/Tex], their conjunction is denoted by [Tex]p\wedge q   [/Tex], which means “[Tex]p   [/Tex]and [Tex]q   [/Tex]“. The conjunction [Tex]p\wedge q   [/Tex]is True when both [Tex]p   [/Tex]and [Tex]q   [/Tex]are True, otherwise False. The truth table of [Tex]p\wedge q   [/Tex]is: pqp ∧ qTTTTFFFTFFFFExample, Conjunction of the propositions [Tex]p   [/Tex]– “Today is Friday” and [Tex]q   [/Tex]– “It is raining today”, [Tex]p\wedge q   [/Tex]is “Today is Friday and it is raining today”. This proposition is true only on rainy Fridays and is false on any other rainy day or on Fridays when it does not rain. 3. DisjunctionFor any two propositions [Tex]p   [/Tex]and [Tex]q   [/Tex], their disjunction is denoted by [Tex]p\vee q   [/Tex], which means “[Tex]p   [/Tex]or [Tex]q   [/Tex]“. The disjunction [Tex]p\vee q   [/Tex]is True when either [Tex]p   [/Tex]or [Tex]q   [/Tex]is True, otherwise False. The truth table of [Tex]p\vee q   [/Tex]is: pqp ∨ qTTTTFTFTTFFFExample, Disjunction of the propositions [Tex]p   [/Tex]– “Today is Friday” and [Tex]q   [/Tex]– “It is raining today”, [Tex]p\vee q   [/Tex]is “Today is Friday or it is raining today”. This proposition is true on any day that is a Friday or a rainy day(including rainy Fridays) and is false on any day other than Friday when it also does not rain. 4. Exclusive OrFor any two propositions [Tex]p   [/Tex]and [Tex]q   [/Tex], their exclusive or is denoted by [Tex]p\oplus q   [/Tex], which means “either [Tex]p   [/Tex]or [Tex]q   [/Tex]but not both”. The exclusive or [Tex]p\oplus q   [/Tex]is True when either [Tex]p   [/Tex]or [Tex]q   [/Tex]is True, and False when both are true or both are false. The truth table of [Tex]p\oplus q   [/Tex]is: pqp ⊕ qTTFTFTFTTFFFExample, Exclusive or of the propositions [Tex]p   [/Tex]– “Today is Friday” and [Tex]q   [/Tex]– “It is raining today”, [Tex]p\oplus q   [/Tex]is “Either today is Friday or it is raining today, but not both”. This proposition is true on any day that is a Friday or a rainy day(not including rainy Fridays) and is false on any day other than Friday when it does not rain or rainy Fridays. 5. ImplicationFor any two propositions [Tex]p   [/Tex]and [Tex]q   [/Tex], the statement “if [Tex]p   [/Tex]then [Tex]q   [/Tex]” is called an implication and it is denoted by [Tex]p\rightarrow q   [/Tex]. In the implication [Tex]p\rightarrow q   [/Tex], [Tex]p   [/Tex]is called the hypothesis or antecedent or premise and [Tex]q   [/Tex]is called the conclusion or consequence. The implication is [Tex]p\rightarrow q   [/Tex]is also called a conditional statement. The implication is false when [Tex]p   [/Tex]is true and [Tex]q   [/Tex]is false otherwise it is true. The truth table of [Tex]p\rightarrow q   [/Tex]is: pqp → qTTTTFFFTTFFTOne might wonder that why is [Tex]p\rightarrow q   [/Tex]true when [Tex]p   [/Tex]is false. This is because the implication guarantees that when [Tex]p   [/Tex]and [Tex]q   [/Tex]are true then the implication is true. But the implication does not guarantee anything when the premise [Tex]p   [/Tex]is false. There is no way of knowing whether or not the implication is false since [Tex]p   [/Tex]did not happen. This situation is similar to the “Innocent until proven Guilty” stance, which means that the implication [Tex]p\rightarrow q   [/Tex]is considered true until proven false. Since we cannot call the implication [Tex]p\rightarrow q   [/Tex]false when [Tex]p   [/Tex]is false, our only alternative is to call it true. This follows from the Explosion Principle which says: “A False statement implies anything” Conditional statements play a very important role in mathematical reasoning, thus a variety of terminology is used to express [Tex]p\rightarrow q   [/Tex], some of which are listed below. “If p, then “q”p is sufficient for q””q when p””a necessary condition for p is q””p only if q””q unless ≠p””q follows from p” Example, “If it is Friday then it is raining today” is a proposition which is of the form [Tex]p\rightarrow q   [/Tex]. The above proposition is true if it is not Friday(premise is false) or if it is Friday and it is raining, and it is false when it is Friday but it is not raining. 6. Biconditional or Double ImplicationFor any two propositions [Tex]p   [/Tex]and [Tex]q   [/Tex], the statement “[Tex]p   [/Tex]if and only if(iff) [Tex]q   [/Tex]” is called a biconditional and it is denoted by [Tex]p\leftrightarrow q   [/Tex]. The statement [Tex]p\leftrightarrow q   [/Tex]is also called a bi-implication. [Tex]p\leftrightarrow q   [/Tex]has the same truth value as [Tex](p\rightarrow q) \wedge (q\rightarrow p)   [/Tex]The implication is true when [Tex]p   [/Tex]and [Tex]q   [/Tex]have same truth values, and is false otherwise. The truth table of [Tex]p\leftrightarrow q   [/Tex]is: pqp ↔ qTTTTFFFTFFFTSome other common ways of expressing [Tex]p\leftrightarrow q   [/Tex]are: “p is necessary and sufficient for q””if p then q, and conversely””p if q” Example, “It is raining today if and only if it is Friday today.” is a proposition which is of the form [Tex]p\leftrightarrow q   [/Tex]. The above proposition is true if it is not Friday and it is not raining or if it is Friday and it is raining, and it is false when it is not Friday or it is not raining. Propositional Logic Examples1) Consider the following statements: P: Good mobile phones are not cheap.Q: Cheap mobile phones are not good.L: P implies QM: Q implies PN: P is equivalent to QWhich one of the following about L, M, and N is CORRECT? (A) Only L is TRUE. (B) Only M is TRUE. (C) Only N is TRUE. (D) L, M and N are TRUE. Solution: Let a and b be two propositiona: Good Mobile phones.b: Cheap Mobile Phones.P and Q can be written in logic asP: a–>~bQ: b–>~a.Truth Tablea b ~a ~b P QT T F F F FT F F T T TF T T F T TF F T T T Tit clearly shows P and Q are equivalent.so option D is Correct 2) Which one of the following is not equivalent to p <-> q [Tex](A)(\neg p \vee q)\wedge(p \vee \neg q ) (B)(\neg p \vee q)\wedge(q \rightarrow p ) (C)(\neg p \wedge q)\vee(p \wedge \neg q ) (D)(\neg p \wedge \neg q)\vee(p \wedge q )  [/Tex] Conjunction of p and q, denoted by p∧q, is the proposition ‘p and q’. The conjunction p ∧ q is True, when both p and q is True. Disjunction of p and q, denoted by p∨q, is the proposition ‘p or q’. The disjunction p∨q is False when both p and q is False. Logical Implication – It is a type of relationship between two statements or sentence. Denoted by ‘p → q’. The conditional statement p → q is false when p is true and q is false, and true otherwise. i.e. p → q = ¬p ∨ q Bi-Condition A bi-conditional statement is a compound statement formed by combining two conditionals under “and.” Bi-conditionals are true when both statements have the exact same truth value. Solution: p↔q means both p→q and q→p p→q is equivalent to ⌉p ∨ q and q is equivalent to ⌉q ∨ p So A and B are fine. D is a different way of writing A p ↔ q = (p→ q) ∧ (q→p) = (⌉p ∨ q) ∧ (q → p) [ Since p→ q = ⌉p ∨ q ] = (⌉p ∨ q) ∧ (⌉q ∨ p) = (¬p ∧ p )∨ (¬p ∧¬q )∨ (q ∧p ) ∨(q ∧¬q ) (Distributive law) [As ((¬p∧ p )=0,(q ∧¬q )=0) (Complementation) ] (⌉p ∧ ⌉q) ∨ (p ∧ q) which is Option (D) Only option which is not equivalent to p↔q is option (C). So, option (C) is correct. ConclusionPropositional logic is a fundamental branch of mathematical logic that deals with propositions (statements that are either true or false) and their relationships. It uses logical connectives such as AND (∧), OR (∨), NOT (¬), IMPLIES (→), and IF AND ONLY IF (↔) to form compound propositions. The truth or falsity of these compound propositions can be determined using truth tables. Propositional logic provides a foundation for more complex logical systems and is essential in various fields, including computer science, mathematics, and philosophy. FAQs on Propositional LogicWhat is a proposition in logic?A proposition is a declarative statement that is either true or false, but not both. What are the basic logical connectives in propositional logic?The basic logical connectives are AND (∧), OR (∨), NOT (¬), IMPLIES (→), and IF AND ONLY IF (↔). What is a tautology?A tautology is a compound proposition that is always true, regardless of the truth values of its component propositions. What is the difference between inclusive OR and exclusive OR?Inclusive OR (∨) is true when at least one of the propositions is true, while exclusive OR (XOR) is true when exactly one of the propositions is true, but not both. What is the law of contraposition?The law of contraposition states that (P → Q) is logically equivalent to (¬Q → ¬P). Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic
https://origin.geeksforgeeks.org/proposition-logic/
PHP
Propositional Logic
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0361484103, -0.00987054221, -0.0232219212, 0.0221596938, 0.0117662093, 0.00865306612, 0.0217184611, 0.016766848, 0.00069453317, 0.0100748166, 0.0404300019, -0.0302326214, 0.0561182834, -0.037161611, -0.045561377, 0.0355601, 0.0085386727, 0.0410836823, -0.0159660932, -0.015050943, -0.0155003471, 0.00515588745, -0.0173551589, -0.0211301502, -0.00763986493, 0.0134249181, 0.00841610786, -0.00298445, -0.0358215719, 0.0106876399, 0.0318831578, 0.0125914784, 0.0132369855, -0.020966731, -0.0420641974, -0.0282552447, -0.00573194167, -0.0279447474, -0.0402665846, 0.0432408191, -0.000627122645, -0.00335622951, -0.00184459845, -0.00865306612, -0.00794219133, 0.0345795825, 0.0439271815, -0.0362464599, 0.015050943, -0.032781966, -0.0460516363, -0.0273564365, 0.0994898379, 0.0326022059, 0.014585197, 0.000635804259, -0.00814238, -0.0427178778, 0.0157127921, -0.0180251785, -0.0157781597, 0.00461251754, -0.0821019933, -0.0409202613, 0.00355641847, -0.0029967064, -0.0127222138, -0.00517222937, 0.0153287565, -0.0164890345, 0.00436330261, 0.020574525, 0.00265148259, -0.0533401482, 0.0100584747, 0.00138906634, -0.013531141, 0.041704677, 0.0224375073, 0.0173224751, -0.017910786, 0.0247580651, 0.0232055802, 0.0153287565, -0.00866123755, 0.00567065924, 0.0193325356, -0.0753037408, 0.0180905461, 0.0330107547, 0.0108592305, 0.00728851324, -0.00206930027, -0.0265720226, 0.0264412872, 0.0387304388, 0.0587329939, 0.00468605617, -0.00319076725, 0.0221760366, 0.0222250614, 0.0333212502, 0.00788908, 0.0239409674, 0.0237121806, -0.0284023229, -0.0112269251, 0.0220616423, 0.0432081372, 0.0470975228, -0.0215713847, 0.0248070918, -0.0103117749, -0.00945382286, -0.0171590559, -0.024578305, -0.0433061868, -0.0690284297, 0.0131634464, 0.0286801346, -0.0273564365, 0.0218982231, -0.000684830185, 0.0105732465, -0.0569680631, 0.0174368694, -0.00862855371, 0.0140377413, -0.0123953745, 0.00746827479, -0.0221106689, -0.00218982226, -0.0614457615, 0.00238796859, 0.0322917067, 0.0115210796, -0.0037606929, 0.0381421298, -0.0171263721, -0.0254444275, -0.00711692264, -0.0399724282, 0.0424237214, -0.00400786521, 0.0236794967, -0.0101565262, -0.0129428301, 0.0257876087, -0.0135229696, 0.026866179, -0.0319648683, 0.0103771426, 0.000935066375, -0.00777877169, 0.010957283, 0.0175839458, 0.0209177062, -0.0127058718, 0.0103444587, -0.00653678318, -0.0111288726, -0.0346449502, -0.0237285215, 0.000678191253, -0.00895539299, 0.0380113944, 0.0117662093, 0.00635702163, -0.0389919095, 0.0445154905, -0.0352005772, 0.0278957207, 0.0167178232, 0.0131062502, -0.000743559038, 0.0140050575, 0.0108592305, 0.0233853403, 0.0190056972, -0.022682637, -0.0447769649, -0.0650736764, 0.0121502457, -0.00951919053, 0.0335336961, 0.0298077296, 0.0513791144, 0.00139621599, -0.0177637078, 0.00929857418, -0.0307555646, 0.0364752486, 0.0451364852, 0.0426198244, 0.00560529158, -0.0281245094, -0.0638643727, 0.0190056972, 0.000885529851, -0.0179761536, -0.0113331471, -0.020574525, 0.0116845, 0.0104915369, 0.0346449502, -0.0150999688, 0.0101401843, 0.00617726, 0.0207869709, 0.0324387848, -0.0626877472, 0.0150264297, 0.0325041525, -0.0192018, -0.025330035, 0.0159415789, -0.0353966802, -0.0407568403, -0.0246926975, -0.00221433514, 0.00163011032, 0.0265556816, 0.0229931343, -0.00166687963, -0.0298567563, -0.0221760366, 0.00265965355, -0.0540918782, -0.0332885683, -0.00757449726, 0.0107448371, 0.0312621631, 0.0254607704, -0.00603018235, -0.0258693192, 0.0170283206, 0.00360340159, 0.0184173863, -0.00357071776, 0.0140459128, -0.0356581509, -0.0126895299, -0.000414932525, -0.0175839458, -0.0140949385, -0.0115946187, 0.00784005411, 0.034743, -0.00164747355, 0.0414432026, -0.0183520187, -0.0206725765, 0.0319812112, 0.0148303267, -0.0379133411, -0.0298240725, 0.0119132875, 0.00449403841, -0.0332885683, 0.0210484415, -0.00348900794, 0.00591987418, 0.0146914199, 0.00752138579, 0.00524168275, -0.0154349785, 0.014495316, -0.0288272128, -0.00508643407, -0.0221923776, 0.0822981, -0.0168812424, 0.0219309069, 0.00271685049, 0.0230421592, -0.0265556816, -0.0125587946, 0.0170283206, -0.0127957528, 0.0125179393, 0.0256078467, -0.0199698713, 0.0174041856, -0.0148058133, 0.0425871424, -0.0242678076, 0.00146975485, 0.0277649853, -0.0777877197, 0.00574828358, -0.0146832485, 0.0144217778, -0.016962951, 0.0137762697, 0.0188095924, 0.0228460561, 0.0161540247, -0.0136863897, 0.000138140604, -0.037161611, 0.00171386276, -0.0123054944, -0.00724765798, 0.0169466101, -0.0418027267, 0.0104915369, 0.0213752799, 0.00189464574, -0.0253790598, -0.0292030778, 0.0360830426, -0.0387958065, -0.0226336103, -0.000298751402, 0.0085386727, 0.0217511449, 0.00972346496, -0.0492546596, -0.0160396304, -0.0335990638, 0.0359523073, -0.0141194509, -0.0148303267, 0.0233853403, 0.0419007801, 0.00704338355, 0.00354416203, 0.0123626906, -0.0184664112, -0.0177637078, -0.00746827479, -0.00500472449, -0.0170283206, 0.00776651548, 0.0341220088, -0.0651390404, 0.013621022, 0.00242678076, -0.00973163545, -0.000789010141, -0.0172897913, -0.020018898, 0.0268334951, -0.0268988628, 0.0113494899, -0.0402339, 0.00531522185, 0.00728034228, 0.0352659449, 0.0238919426, 0.00164236675, 0.0310006943, 0.00267599546, 0.000305645663, 0.0179761536, 0.00348083698, -0.0106631275, -0.0470321551, -0.00222250633, 0.0282552447, 0.0114475414, 0.00235732738, 0.00711283693, 0.00487398868, -0.0244312268, -0.0396455899, -0.00336644333, 0.029366497, -0.0105732465, -0.0079135932, -0.0196103491, 0.0333212502, 0.0226336103, -0.00499246782, -0.026866179, 0.0162765905, 0.00698210113, 0.0127385557, -0.0324878097, 0.00125015969, -0.0250685625, 0.00547864148, -0.000651124865, 0.0523269475, -0.0294645485, -0.0200679246, 0.0146423941, -0.054908976, -0.0256895572, 0.0152225336, -0.0484048799, 0.0202967115, -0.014528, -0.00853050221, 0.0468687341, -0.0283206124, -0.0103281168, -0.0135229696, 0.0100911586, -0.000767561316, 0.045365274, -0.007264, -0.00911064167, 0.0106958114, -0.00388121489, 0.0286801346, -0.0339912698, 0.0208686795, 0.0279774312, 0.0253790598, 0.00240022503, -0.0379787087, -0.0349717885, 0.0192181412, -0.00266373903, 0.0553011857, -0.011063505, 0.0475877784, 0.0402012169, 0.00612823386, -0.000266578194, 0.0256241895, -0.0184500702, -0.00179863675, 0.0330597796, 0.00736205187, 0.00225314731, -0.00601384044, 0.00515180221, 0.00570334308, 0.000931491551, -0.0197247434, 0.036965508, 0.0265229978, -0.0215387, -0.0459209, 0.0150182592, 0.0155248595, -0.0117988931, 0.0204764735, 0.00911064167, 0.0177637078, -0.00470239809, -0.0204274468, -0.0491566099, 0.0132369855, -0.0706626251, -0.0391553305, -0.0148548391, 0.000884508423, -0.0180905461, 0.00400786521, -0.0420968831, 0.0169466101, 0.0161785372, 0.00803615805, 0.0565758571, -0.0340239555, 0.0246273298, -0.00241452432, 0.0247090403, 0.0469667874, 0.0106304437, -0.0092495475, 0.0210484415, 0.00750095863, -0.00527028134, 0.00156576384, -0.0105732465, -0.00158516993, 0.0239246264, -0.0197574273, 0.0246600136, 0.014528, 0.0277323015, -0.0129183177, 0.00158210576, -0.00241452432, -0.0178781021, -0.0264903139, 0.0333539359, 0.022682637, 0.0140622547, -0.0403646342, 0.011047163, 0.0388611741, 0.0315890051, -0.0171100292, 0.0242024399, -0.00964175537, -0.0498756543, -0.0110144792, -0.0125914784, 0.0159088951, -0.00737430854, -0.0156637654, -0.0292357616, -0.0261634737, -0.0113086347, 0.0447769649, -0.00230625877, 0.0145361712, -0.0390572771, 0.0838015601, -0.00670020236, -0.018499095, 0.011243267, 0.00405280525, 0.00896356348, -0.0095110191, -0.0249868538, -0.022290431, -0.00240635313, 0.0750422701, 0.0458228476, -0.0133595504, -0.0315890051, 0.0167995319, 0.00508643407, 0.0311477706, 0.023238264, 0.00509052, -0.000660317193, 0.025330035, 0.00899624731, 0.0141521348, 0.0107856924, -0.027830353, -0.0348410532, -0.037553817, -0.00661849277, 0.0133268666, -0.00442867028, -0.00218982226, -0.00205397978, -0.00560529158, 0.0238592587, 0.00326430611, -0.00641013263, 0.0197247434, 0.000856420724, 0.0323407352, -0.0252646655, 0.0246926975, 0.00911064167, -0.00192732958, -0.0266047064, -0.00530296518, 0.014871181, 0.0128039233, 0.0367040373, 0.0121829296, -0.0330924653, 0.00966626778, 0.00407323288, 0.00837525353, -0.00442458503, 0.000984603, -0.0211138092, -0.00305186049, -0.00240635313, 0.0103689721, 0.0161703676, 0.0254117437, 0.0168158747, -0.0148793524, 0.0147894714, 0.0163991544, 0.00822817534, -0.00834257, -0.0205091573, 0.0158762112, -0.00144115638, 0.0318668187, 0.0160478018, 0.0462150574, 0.0260327384, -0.0174041856, -0.00965809729, -0.00485356152, 0.0192344841, -0.0112596089, 0.0181395728, -0.0111452155, 0.0201659761, -0.00926589, -0.00964992587, 0.00122871099, -0.00764395064, 0.00912698358, 0.00507826312, 0.041181732, 0.00422848156, 0.0170773454, 0.0344161615, 0.0011592576, 0.00536833284, -0.00104588526, 0.00386078749, -0.00385670201, -0.0194305871, -0.0263432357, 0.0170610044, 0.0201823171, 0.0149937458, -0.0262288414, -0.00987871364, 0.00245537912, -0.00554400915, 0.0320792608, -0.0347756855, -0.0191364326, -0.00531113613, -0.00517222937, 0.00351147819, -0.0274708308, 0.00489850156, 0.017927127, -0.014103109, 2.06827899e-05, 0.0190710649, -0.0359196216, 0.0110553345, -0.0105977599, -0.0229931343, 0.0420641974, -0.0221433528, 0.0117580388, -0.0100176204, -0.0262615252, 0.00799121708, 0.00319280988, -0.0182049405, -0.00567065924, 0.00243699434, -0.00287822727, -0.0327002555, 0.0125097688, -0.00699844351, -0.00703521259, 0.0248888, 0.00907795783, -0.00542961527, 0.100208886, -0.00672880094, 0.0405607373, 0.0116109606, 0.0193815622, 0.00998493563, 0.0113821737, -0.00513137458, -0.0135066276, 0.0346449502, 0.0308863, 0.0268334951, -0.02287874, -0.0226662941, -0.0482414588, -0.0137435859, -0.00435921736, -0.00163828128, -0.0164972059, 0.0210647825, 0.0360830426, -0.0149120362, -0.0448423326, 0.00494344207, 0.00580139505, -0.0276669338, 0.00703112734, 0.00805658475, -0.0244965944, 0.027062282, 0.0139233479, -0.0218982231, -0.0293338131, -0.0419661477, 0.0442213379, -0.00293542421, -0.0281408504, -0.0161458533, 0.0309353247, 0.00763986493, -0.0159170665, 0.0127140433, -0.00478410814, -0.00212649722, 0.0100257909, -0.0183193348, -0.00463703042, 0.0199371874, -0.028206218, -0.00127875817, -0.0155493729, -0.0151163107, 0.000977964, 0.00753364246, -0.00509460503, -0.0148139847, -0.0543533489, 0.0219309069, -0.0164890345, -0.0108265467, -0.024774408, -0.0135719953, 0.00938028377, 0.0143073834, -0.0103199463, -0.0265883654, 0.00583407888, 0.00691264821, 0.0173061322, 0.0128202653, 0.0150019173, 0.0219635908, 0.0113331471, 0.0199862141, 0.000417230593, 0.00844879169, -0.0120767066, 0.0346776322, 0.0212772284, 0.00750912959, 0.0231728964, -0.0206398927, 0.011994997, -0.0124934269, 0.030101886, -0.00911064167, -0.00344202481, 0.0101238424, 0.0109654535, 0.0148466686, -0.0194142461, 0.0137190735, -0.0204274468, 0.00220412156, -0.0110389926, 0.0147486171, 0.00180476496, 0.04575748, 0.00230830139, -0.0223231148, -0.00542961527, 0.0172897913, -0.0137190735, 0.0218655393, 0.00504149403, 0.0310987458, 0.0185481217, 0.0174695533, -0.00686362199, 0.00562980445, -0.0246436726, 0.0106467856, 0.000701682817, -0.00710466597, -0.000584225, 0.00511094742, 0.00448586745, 0.0162275638, 0.0447769649, -0.0018119145, 0.0186952, 0.0113903442, -0.0236958377, -0.06442, -0.00680642528, 0.0139478603, -0.0253790598, 0.01887496, 0.0304614082, 0.0461496897, -0.0252156407, -0.0135719953, 0.00638970546, 0.0112759508, -0.0147976428, -0.0140295709, 0.00588310463, -0.00421622489, 0.00862855371, -0.0299874917, -0.0236631539, 0.0108265467, -0.0103608007, 0.0404300019, -0.00338891335, 0.0277159605, 0.0139723737, 0.0234670509, 0.00949467719, -0.0100666462, 0.0271276496, 0.0157454759, -0.0093476, -0.0433715545, -0.0301835947, -0.00365038472, -0.0165135488, 0.016015118, -0.00533156376, -0.0120276809, 0.0145933684, 0.00170160632, -0.0201659761, -0.0145443417, -0.0332395397, -0.0446462296, -0.00562571874, 0.0239082836, 0.00851416, -0.0098542, 0.0325368382, 0.0201496333, 0.01887496, 0.0145688551, 0.00840793736, -0.0336644314, 0.0242514648, 0.0192018, -0.0342200585, 0.0125261107, -0.00527028134, 0.0130899083, 0.0145770265, -0.00100451976, 0.00597298564, -0.0036687695, -0.000224701915, 0.0165053774, 0.0161131695, -0.0318995, -0.010957283, -0.0309353247, 0.0241370704, -0.0132533275, -0.0187278837, 0.0354947299, 0.018858619, -0.0101075005, 0.00828128681, -0.00826085918, 0.0199045036, -0.0209830739, 0.0305267759, 0.0208850224, -0.00157495611, -0.000639379083, 0.00938028377, 0.00387508678, 0.0335336961, -0.00703112734, 0.0340239555, -0.00860404, -0.00393024087, 0.00826085918, -0.00426116539, 0.0038117615, 0.00346040959, 0.0147241037, -0.00901258923, 0.0158925541, 0.0023369, 0.00717411935, -0.0113413185, -0.0106222723, -0.0203784201, -0.0420968831, -0.0317033976, -0.0243168324, -0.0218165126, -0.0167505071, 0.0520327911, 0.0106549561, 0.00598524185, -0.00889819581, -0.0105895884, 0.00737839378, -0.0120195094, 0.0394168, 9.67750311e-05, -0.0140050575, 0.0114720538, -0.0168158747, 0.0149528915, -0.0288272128, -0.0303470157, 0.0121175619, -0.0122809811, -0.0279284045, 0.0275198556, -0.0397109576, 0.00177208101, -0.00474325335, 0.0191364326, -0.042129565, 0.00433878973, -0.00303756143, -0.0180905461, 0.0055807787, 0.0154513204, 0.00753364246, 0.0191854574, 0.00780328456, -0.0489605032, -0.0101892101, 0.00919235125, -0.00526619563, -0.0062385425, -0.00604652427, 0.0143645806, -0.0102300653, -0.0342527442, -0.0207216013, 0.0289252643, -0.0596154593, -0.0219145659, 0.0173715, -0.0217838287, -0.0124607421, -0.0174858943, 0.0285003744, -0.00161070423, -0.00964992587, -0.0145198293, -0.0429139808, 0.0115537643, 0.00402012141, 0.00835074, -0.00234711356, 0.0245946459, 0.00458391896, 0.0155248595, 0.00202946691, -0.000275770522, 0.0207869709, 0.0200679246, -0.0402665846, -0.0112514375, 0.00494752778, 0.0308536161, 0.0461823717, -0.0278630368, -0.0345142148, 0.0238919426, -0.00192937232, 0.0246763565, -0.00293133873, 0.0129836854, 0.0236141291, -0.0157536473, 0.00788908, -0.0288925804, 0.0283206124, -0.0401031636, -0.0288272128, -0.0164318383, 0.0119132875, 0.0237938892, 0.0139560318, -0.0163092744, 0.000782371208, -6.02609689e-05, -0.00929857418, -0.00113678747, 0.0273400955, -0.0358215719, 0.00644690217, -0.00379950507, 0.0314582698, -0.0117008416, 0.0111370441, 0.0432408191, 0.0266864169, -0.0056338897, -0.0141439643, -0.0485029295, 0.0111370441, 0.0153124146, 0.0135883372, -0.0124117164, -0.0130408825, 0.0317851081, 0.0125097688, -0.0344815291, -0.00639379071, -0.0189076457, -0.000767050602, -0.0169466101, 0.0101075005, 0.017927127, -0.0155412015, 0.0138579803, -0.00781962648, 0.0142011615, 0.0166279413, 0.000866123766, 0.00921686366, -0.0352659449, -0.0277976692, -0.0201659761, -0.00605469523, 0.0244148839, 0.0065531251, 0.0187605675, 0.0130408825, 0.000999923563, -0.00235528452, 0.00131654891, -0.0158108436, -0.0330107547, -0.00300487736, -0.00943748, -0.000292367826, 0.00373822288, -0.0194796138, 0.00328269065, -0.00631616637, 0.00810152572, -0.0103608007, -0.000781349838, -0.00833848398, -0.00580548029, 0.00692081917, 0.00974797737, 0.0128447786, 0.00416719913, -0.0156555958, 0.027438147, 0.0187115408, -0.00653678318, 0.0168649, -0.00464928709, -0.0110798469, -0.0239573102, 0.00353599107, -0.0340893231, -0.00604652427, -0.0119378, 0.00478819339, -0.027814012, 0.000132140049, 0.00438373024, -0.0156555958, -0.0262778681, -0.040952947, -0.00143604947, -0.00105405622, -0.00271072215, 0.0118724322, 0.0126895299, 0.011905116, -0.0129918559, -0.000272706413, 0.0146260522, -0.0137926126, 0.0019794195, 0.0277649853, -0.00316625438, -0.021342596, -0.0383055471, 0.00771748926, 0.00709649501, -0.00605469523, 0.025722241, 0.00153614406, -0.00378112053, 0.0158680417, -0.0101892101, 0.0121992715, -0.0138906641, -0.0182212833, 0.00444909791, -0.010009449, 0.0326839164, -0.0100748166, 0.00918418, 0.0125751365, 0.0281081665, -0.0236958377, -0.0240390189, 0.0172734484, 0.016390983, -0.0197084, -0.0188095924, 0.0200025551, -0.016962951, -0.0133432085, -0.0247090403, -0.0110798469, 0.0237121806, -0.00721497415, 0.00198656926, 0.0189566705, 0.00529479422, 0.0285984259, 0.0815136805, -0.00792584941, -0.0102137234, -0.00461660279, 0.00160253316, -0.00893088, -0.00158619124, 0.0192344841, 0.0093149161, -0.0145443417, 0.0262125, 0.00562980445, 0.014372752, 0.0219145659, -0.0175185781, -0.00743967621, -0.0311150867, 0.0147486171, 0.000309731171, -0.0138661508, -0.00742741954, -0.00828128681, 0.00338891335, 0.0191691164, 0.00590353226, 0.00473916763, 0.0152143622, -0.0110144792, -0.0123790326, -0.00493527111, 0.00424482347, -0.0060342676, -0.0317687653, -0.00230217329, 0.000740494928, 0.0241207294, 0.0112596089, -0.0123463487, 0.00855501462, 0.0124852555, -0.00349309342, -0.00814238, -0.0193979032, 0.00322140846, -0.00916783791, 0.0141112804, -0.0273564365, -3.78226941e-05, -0.0193979032, 0.014871181, -0.00976431929, -0.0158925541, -0.00875111856, -0.0205581822, -0.016480865, 0.0180251785, 0.000615887519, -0.0128202653, 0.0247417241, 0.00785639603, -0.0314092413, -0.00680642528, -0.0257876087, -0.0476204641, 0.0163419582, 0.0160886571, -0.0295135751, -0.0240226779, -0.0247253813, 0.00610372098, -0.0105895884, 0.0174858943, -0.00138804503, 0.00996859372, -0.00573194167, 0.0311314296, -0.00161785376, -0.0164890345, 0.0154349785, -0.0153859528, -0.00978883263, -0.00419171201, 0.0158108436, 0.00123688194, 0.00814646576, -0.00269029476, -0.00650409888, -0.00951919053, 0.00028394151, -0.0208523385, 0.0185644645, -0.0217838287, -0.0064223893, -0.000401399331, -0.00456757704, -0.000325817789, 0.0156474244, 0.00678191241, 0.0219145659, -0.00469831284, 0.0378479734, -0.00866940804, -0.00265965355, 0.0151163107, -0.00784822553, -0.0095110191, 0.0234670509, 0.0152960718, 0.00830171444, 8.14544474e-05, 0.025166614, 0.000745091122, 0.0277649853, 0.0157536473, 0.0142501872, -0.0186298322, 0.0165625736, 0.029056, 0.0200025551, 0.00182417105, -0.00275157718, 0.0155738853, 0.00105609896, -0.00929040276, -0.00577688217, -0.00217143749, 0.0244965944, -0.00171999098, -0.00166279415, 0.0386977568, -0.00100451976, 0.0312948488, -0.0132369855, -0.0116845, -0.0293991808, 0.0137517573, -0.0167505071, 0.00859587, -0.0152225336, 0.00803615805, -0.0087020928, 0.00450629462, -0.0224048235, 0.0174368694, -0.00860404, 0.00971529353, -0.0197410844, 0.0110553345, -0.00761943776, 0.000277047249, -0.00357276038, -0.00784005411, 0.00917600933, 0.00929040276, 0.0571314842, -0.00754998438, 0.01009933, -0.00875111856, 0.0243495163, -0.0200515818, 0.0473916754, 0.00699027255, 0.0133432085, 0.0153287565, -0.0386650711, -0.0144544616, 0.011619132, -0.00828537252, -0.0147077618, 0.0174695533, 0.0197247434, -0.0201169495, -0.0038056334, -0.00473508239, 0.0187278837, 0.0262288414, 0.0384689681, -0.00699027255, 0.0143482387, -0.02287874, -0.0149120362, -0.0101565262, -0.00866940804, 0.0265883654, 0.00376477838, -0.00184153428, -0.0339585878, 0.00221024966, 0.0363118313, -0.00812603813, -0.00476776622, -0.00134208321, 0.0245292783, 0.00158108433, 0.00178433745, 0.0257385839, 0.00573602691, -0.00754589867, -0.0136945602, 0.000871741271, -0.0354947299, -0.0242024399, -0.012959172, 0.000575032609, 0.0210157577, -0.0117416969, -0.00280060293, 0.0207216013, -0.00499246782, -0.00567065924, 0.00283532962, 0.00785231, -0.00350943534, -0.00298853545, -0.0155003471, 0.00947016478, 0.00602609664, -0.0164154954, 0.0219145659, -0.00391389895, 0.0076970621, 0.0265720226, -0.0194305871, 0.0156719368, -0.0124607421, -0.000562265457, 0.0318177901, -0.00416924199, 0.0177146811, 0.00441232836, -0.0214569904, -0.00373005169, 0.0117907226, 0.0234997347, 0.00393228373, -0.0179598108, 0.0185481217, -0.0210320987, -0.0210647825, 0.0231892373, 0.0170119777, 0.0210647825, 0.0239573102, -0.00297219353, -0.00206827908, 6.97725e-05, 0.0113658318, 0.00815463718, -0.011243267, 0.0247090403, -0.0227316637, -0.011063505, 0.00850598887, -0.0172897913, 0.0152797299, 0.0104016559, 0.013245157, 0.00559712062, -0.00138906634, -0.0452672206, 0.0153450985, 0.00167402928, -0.00097643194, 0.00832622778, 0.00814646576, 0.0221106689, -0.0119214579, -0.0151735079, -0.0137599278, -0.00151980203, -0.0134576019, 0.0237775482, 0.0104343398, 0.0227643475, 0.0149120362, -0.00431019114, 0.0169956349, 0.0176329724, -0.0319812112, -0.00120317657, 0.0150182592, 0.03774992, -0.00381584698, -0.0401685312, -0.0410183147, 0.0196266901, -0.0325368382, 0.00293950969, 0.00117151404, 0.0161540247, -0.01544315, -0.00420805393, -0.0203784201, 0.00357276038, 0.00790950749, 0.046313107, 0.0168649, -0.000249597855, -0.00404054904, 0.0126078203, 0.00792584941, -0.0109981373, 0.00982151646, 0.023434367, 0.0344488472, -0.00670428807, 0.0222740881, -0.0327983089, 0.00272093597, 0.0270295981, 0.0289579481, -0.028206218, -0.00525802467, 0.0180742051, -0.0255097952, -0.0129918559, 0.00345836673, -0.00936394185, 0.00103669288, -0.00882465672, -0.0122728096, -0.0138988346, -0.00662257848, -0.0116926702, -0.00875111856, 0.00900441874, -0.0102137234, 0.0154676624, 0.014372752, -0.014675078, 0.0102627492, -0.0301999375, -0.0381421298, 0.00544187194, -0.013335037, 0.0140132289, -0.0116926702, 0.00128182233, 0.00419579772, 0.00583407888, -0.0236958377, 0.00895539299, -0.0183520187, 0.0123545201, 0.012583307, -0.0154104661, 0.00484947581, 0.0218328554, -0.000713939255, 0.00091463892, -0.0237448644, 0.0099522518, 0.0150999688, 0.0205254983, 0.00857135653, 0.00852233078, -0.00542553, -0.0103036044, -0.00966626778, 0.025346376, -0.00732528232, 0.00581773696, 0.00672880094, -0.0168812424, 0.0201496333, 0.0170119777, 0.0044041574, -0.0155085176, 0.0150019173, 0.0325695202, 0.000325562432, 0.00411000242, -0.00660215085, -0.0101892101, -0.00383423176, 0.0156719368, -0.00306615978, 0.00361361541, 0.0180905461, -0.0191527735, -0.0146587361, -0.00593213039, -0.000894211465, 0.00417537, 0.00204172335, 0.00252278964, -0.012959172, 0.04114905, 0.00746827479, 0.0131879598, 0.0062222, -0.0187442247, -0.00717003364, 0.0236631539, -0.0466072634, -0.0154349785, -0.021146493, 0.00386487297, -0.00493118586, 0.00692899, 0.00728851324, -0.00777468644, -0.00961724203, 0.0106304437, 0.00680642528, -0.00103311811, 0.0115782768, -0.0314746089, 0.0381748118, -0.0109491115, -0.00546638481, 0.0149774039, -0.011905116, -0.0304450672, -0.00667568948, 0.0231238697, 0.0205254983, 0.0194142461, 0.00797487516, 0.0173551589, -0.00359727349, 0.0110063087, 0.000938130484, 0.0212772284, -0.000213466818, -0.00741924858, 0.0034767515, -0.0223231148, 0.00818732101, -0.0118806027, -0.012763069, -0.000599034887, -0.00891453773, -0.00547047, -0.0191527735, 0.015835356, 0.0128284367, 0.00351556367, -0.0172571074, -0.0264412872, -0.0204274468, -0.0114638833, -0.029350156, -0.01619488, -0.00270050857, -0.0162520763, 0.0188913029, 0.0159334093, -0.0122156134, -0.00883282814, 0.0123790326, 2.40660866e-05, -0.0243985429, 0.0067247157, -0.00610780669, -0.00979700312, -0.00969078112, -0.0138416383, 0.0132778408, 0.00525802467, 0.018286651, -0.0258856602, 0.0130327111, 0.00972346496, 0.0170283206, 0.000546434196, 0.00928223226, 0.0265066549, -0.00579730934, 0.0050210664, 0.0108347181, -0.00462885946, 0.00397926662, 0.000121224133, 0.00196103496, -0.0093476, 0.00259428564, 0.00634067971, 0.00238388311, 0.0109736249, -0.0113494899, -0.00304981787, -0.00774200214, 0.0213262551, 0.0238756, 0.0350044742, -0.0107938629, 0.0166687965, -0.000622015737, 0.00785231, 0.00653678318, 0.00766846351, -0.0129183177, -0.00737430854, -0.000493578205, -0.00134004047, 0.0111288726, -0.011529251, 0.00895539299, -0.00280468841, 0.0103526302, 0.0233526565, 0.00172509789, 0.0027679191, 0.0233853403, -0.00557669299, -0.00221433514, 0.00917600933, 0.00410591671, 0.00329699, 0.00857952796, -0.00654903939, 0.0133758923, 0.0322917067, 0.00799121708, -0.00394658279, -0.0100176204, 0.00484947581, 0.0371942967, 0.0187278837, 0.0312131383, -0.00284554344, 0.0088083148, -0.0141276224, 0.00174041849, 0.0049230149, -0.00309475814, 0.0121175619, 0.00567883, -0.000431785156, 0.00778694265, 0.0156147406, -0.00603835331, -0.00886551198, -0.0209340472, 0.00162398198, -0.0103036044, -0.000380461192, 0.0011541507, -0.000536731153, -0.0135474829, 0.0274054632, -0.0319321863, -0.0080198152, -0.00913515408, -0.00600975472, -0.0042325668, 0.00495569874, -0.00264535449, -0.00542144431, 0.0144381197, -0.00719046127, 0.00199984713, 0.00268620928, 0.00259837136, 0.0115374224, -0.00176391, -0.00414472912, -0.0184010435, -0.00242882338, 0.00389551418, -0.0060220114, 0.00780328456, -0.0227806885, -0.00614866149, 0.00156882789, -0.00518040033, -0.00284758606, -0.0110880183, -0.0062058582, -0.00117049273, 0.0092495475, 0.0202476848, 0.00543370098, -0.00405893382, 0.0289416071, 0.00771340402, 0.0283696391, -0.0265720226, 0.0124852555, 0.00671245903, -0.0194469299, 0.003239793, -0.0175349209, 0.0126323327, 0.00152286619, 0.005192657, 0.0163419582, -0.00712100789, 0.0109736249, 0.0144054359, 0.0193325356, 0.0222740881, -0.0130817369, -0.0191200897, -0.0134821152, -0.00565431733, 0.0197574273, -0.00783188269, 0.015819015, 0.0198554788, -0.0109327696, 0.00851416, -0.0113086347, -0.0115210796, -0.0141848195, -0.0314582698, 0.0117580388, -0.0232219212, 0.000151290777, -0.000592395954, -0.0209994148, 0.000957025914, 0.0120521933, 0.00500472449, 0.0163991544, 0.00646324409, -0.0143809225, -0.023238264, -0.0115455929, 0.00318259629, 0.00107039826, 0.00657763798, 0.00235119904, 0.00187319692, 0.0208686795, 0.016962951, -0.0112269251, -0.0316543728, -0.00584633509, 0.0136618763, -0.00210811244, 0.0129019758, 0.00774608785, 0.000984603, 0.00239613955, -0.0102218948, -0.016480865, -0.00679825433, -0.00703112734, -0.000605163106, 0.00938028377, 0.0160069466, -0.0156964511, -0.00889002532, 0.0123708621, 0.0102709206, 0.0127712395, -1.7155864e-05, 0.0113413185, 0.0308045894, 0.00155963562, 0.00462885946, 0.0215387, 0.0176493134, -0.0129101463, -0.00030385828, 0.00154329359, 0.00363812828, -0.0205254983, 0.00708423881, 0.0206398927, 0.0018119145, 0.00885734055, -0.00906161498, -0.0106467856, 0.00462477375, 0.00466971425, -0.0189730134, 0.0138089545, 0.00933125801, -0.00956004485, -0.0281081665, 0.00195592805, -0.0120848771, 0.0134902857, 0.0213262551, -0.000491535466, 0.0158598702, 0.0214896742, -0.013245157, 0.00793402083, -0.00339912716, -0.0133432085, 0.00207542861, -0.0206889175, 0.00929857418, 0.00692490442, 0.00597707089, -0.00484130485, -0.00304164691, 0.0129836854, -0.00923320558, 0.00153920811, 0.017910786, -0.050300546, -0.0134739438, 0.0171263721, 0.00980517454, -0.00728442753, -0.00529479422, 0.0171100292, -0.0174368694, 0.00992773939, 0.000562776171, 0.0253790598, -0.00255547371, 0.0176002886, 0.000151035434, 0.00632025208, -0.0185154378, 0.00467788521, -0.00371779525, 0.0109164277, -0.001179685, -0.00675331382, 0.0175676048, 0.0152797299, 0.00614457624, 0.0134821152, -0.00911881216, 0.000845185597, -0.0150427716, 0.0103117749, -0.00693716109, 0.0154921757, -0.0190220382, -0.0186952, 0.0115210796, -0.00658172322, -0.000410591689, 0.0388611741, 0.00251666154, 0.000834461185, -1.80016868e-05, 0.00414472912, 0.00406710478, -0.000408548949, 0.00734571, 0.0143318968, 0.0141194509, 0.013817125, 0.00275566266, -0.00478410814, -0.0066062361, -0.0129510015, 0.00888185389, -0.00524576847, 0.00803207234, 0.00674922857, 0.00521717, 0.00892270915, 0.00716594839, 0.00201925309, 0.0186134893, -0.000947322871, -0.0100829881, 0.00782371219, 0.010867402, 0.000405740167, -0.0120358514, -0.0127140433, -0.00264944, 0.00399765139, 0.0186461732, -0.00949467719, -0.0169302672, 0.00882465672, 0.0114230281, 0.0176329724, -0.00187830371, -0.00991956796, 0.0245619621, -0.0089799054, -0.00212445436, 0.0145933684, 0.0207379442, -0.00343793933, -0.0112677794, 7.32834669e-05, -0.00587901939, -0.00668794615, -0.0104343398, 0.0263105519, -0.011994997, -0.00930674467, 0.00853050221, 0.0142747, 0.000998391421, -0.0010979753, -0.00147077616, 0.0148139847, 0.0158762112, -0.00101728691, 0.0233853403, -0.0140949385, 0.00485356152, 0.00601384044, 0.0164481811, -0.0100012776, -0.0104425112, -0.00240431051, 0.0180578623, -0.0262125, 0.0162847601, -0.0356908366, 0.0237121806, 0.000599034887, -0.0151653364, -0.000506345357, 0.00220616418, -0.00435921736, 0.00969078112, -0.020215001, 0.013138934, -0.00692081917, -0.0026821238, -0.00176595279, 0.00603018235, -0.0205581822, 0.00379337696, 0.0110961888, 0.0234016832, 0.00303551857, 0.0144054359, 0.00656129606, -0.00611597765, -0.0113821737, 0.00430202, 0.00747236, 0.0139233479, -0.0101320138, 0.00812603813, -0.00244107982, -0.00810969621, -0.0231728964, 0.00714960648, 0.0226336103, 0.00882465672, 0.016211221, -0.0105732465, 0.0162847601, 0.00404463429, -0.0170936882, 0.00106427, 0.0209830739, 0.0200515818, -0.0191854574, 0.00118479191, 0.00394862564, 0.00759492489, -0.00370962429, 0.0125424527, 0.010957283, 0.0175022371, 0.00234915642, -0.00273727789, -0.0272093602, -0.0269315466, 0.00949467719, 0.00589127559, -0.000857442094, 0.0136945602, -0.011047163, -0.00777060073, -9.69027e-05, -0.0223231148, 5.78671279e-05, -0.0130899083, 0.00947016478, -0.0169302672, -0.023254605, 0.0145443417, -0.00581773696, 0.0205418412, -0.00363404281, -0.0268988628, -0.0189893544, -0.022862399, 0.00977249071, 0.00297832186, 0.00397518137, 0.000134948816, 0.00495161302, 0.00875928905, -0.00618134532, -0.0102300653, 0.0226499531, 0.0134167476, -0.00178842293, 0.0161458533, 0.0181722566, 0.00483313389, -0.0136128506, -0.00920869317, -0.00826085918, -0.00790950749, 0.00169445667, -0.0174695533, 0.0115701063, -0.0081914058, 0.00134923286, -0.00861221179, -0.00752955675, -0.00876746047, -0.0162765905, -0.0080851838, 0.0245619621, 0.00986237172, 0.011529251, -0.0157699883, -0.0109082563, 0.00850598887, 0.010957283, -0.0175349209, -0.00284350058, -0.0166442841, -0.0115782768, 0.00316421152, -0.00832622778, 0.00388121489, -0.0119214579, 0.013907006, -0.0058504208, 0.0244802516, -0.00973980688, -0.00446135458, 0.00702704163, 0.0316870548, -0.00689630629, -0.00998493563, 0.0101892101, -0.0133758923, -0.00687179295, -0.0172407646, -0.00270050857, -0.0122809811, -0.0104588531, 0.0130327111, -0.00173837575, -0.0205581822, -0.00274544884, -0.0115946187, 0.00387917226, 0.00867757946, -0.0150917973, 0.013621022, -0.0202967115, -0.0123708621, 0.0150264297, 0.0215060152, -0.0336317495, 0.000500727794, 0.00756224105, 0.0195940062, 0.00217756582, 0.00932308659, 0.00110512483, 0.00691673346, 0.00731711136, -0.0038117615, 0.015835356, 0.0320465788, -0.004575748, 0.0165952574, -0.0242841486, 0.0136291925, 0.00182008557, -0.0292357616, 0.010957283, -0.0125751365, 0.00734162424, 0.00957638677, -0.0287781879, -0.0109409401, -0.00148711808, -0.0115701063, -0.00567065924, 0.00129714282, 0.0130653949, 0.00937211234, 0.0134085761, -0.0209340472, -0.0104915369, 0.00436738832, -0.000231723854, -0.00265761092, 0.000904425222, -0.0132533275, -0.0106549561, 0.00568291591, -0.00833439827, -0.00254321704, 0.0057646255, -0.0112841213, -0.0103771426, 0.0092495475, 0.000906467962, 0.0210157577, 0.0130980788, 7.69221078e-05, -0.00572785595, 0.0139887156, 0.00387508678, 0.0119704837, -0.0339585878, -0.0222740881, 0.00261471327, -0.0204437897, -0.0231238697, -0.00407731859, -0.0100012776, 0.0151571659, 0.0124934269, 0.00837525353, -0.0114475414, 0.0103362883, 0.00186502584, 0.0377826057, 0.0132860113, 0.013531141, 0.025542479, 0.0292030778, 0.0231238697, -0.0113413185, -0.00665934756, 0.0207542852, -0.00366264116, 0.0236794967, -0.0176656563, 0.00356458942, 0.0019487784, 0.0213099122, 0.00460843183, 0.000919235114, 0.0197247434, 0.0189076457, 0.0230094753, -0.0087102633, 0.0113658318, -0.0155493729, 0.0105242208, -0.0176493134, -0.00202946691, 0.0129836854, 0.00322345109, -0.00466562901, -0.0244475678, -0.00398130948, 0.00197737687, -0.0113985157, 0.0160069466, -0.00540510239, -0.0224048235, -0.0137599278, 0.0104915369, -0.00644690217, -0.00576871121, -0.00418354105, -0.0140377413, 0.013817125, 0.000636315, -0.0120195094, 0.00944565143, -0.0087020928, -0.0192671679, -0.0135965087, -0.0203130525, -0.0271603335, 0.0294318646, 0.00772566, 0.0314092413, 0.00257385825, 0.00923320558, -0.00634067971, 0.00862038229, -0.00793402083, 0.0151816783, 0.0180578623, 0.0165952574, -0.00113270187, -0.00285575702, 0.0120031675, -0.0116273025, -0.00462885946, -0.00404463429, 0.0157373045, -0.00847330503, 0.00378724863, 0.00156882789, 0.0028189877, 0.00603835331, -0.0130735664, -0.00868575, -0.0238429159, -0.0115701063, 0.0128856339, 0.0101810396, 0.0227480046, -0.0342527442, -0.0055480944, -0.000322498323, 0.00776243, 0.0140132289, -0.00891453773, -0.0156147406, -0.00333784474, 0.00262696971, 0.00725991465, 0.00583407888, 0.0105977599, 0.0146669066, 0.0046738, -0.00999310706, -0.0336971171, 0.0274871718, 0.0166851394, -0.00719863223, -0.000999923563, 0.00850598887, -0.0037402655, -0.0153532689, 0.0134576019, 0.0144054359, 0.00526211038, 0.00888185389, -0.00679416861, -0.00763986493, 0.00945382286, 0.0173388161, -0.00753772771, -0.00820774771, 0.00328881899, 0.000797181099, -0.0151081393, 0.000592906668, 0.0101320138, -0.0186298322, -0.00933942851, -0.0258039515, -0.00812603813, 0.00102801132, 0.00719454698, 0.00168220024, 0.0267517846, -0.0204928145, 0.00717003364, -0.00832622778, 0.0146342227, -0.000407527579, -0.00439598644, 0.00117457821, -0.0039567966, -0.00308045908, -0.0204601306, 0.0194469299, -0.00062967604, -0.025150273, 0.0158762112, 0.00571559975, -0.0261307899, -0.00869392138, 0.0216857772, 0.00364221376, -0.00198861188, -0.0033909562, 0.0298404135, -0.0127058718, -0.0141848195, -1.16819465e-05, -0.0121093905, 0.0102218948, -0.00536833284, 0.0276015662, -0.000404974126, 0.000973878545, 0.0124934269, 0.0030763736, -0.0256241895, 0.00190792349, -0.00522942655, 0.00455940608, 0.00846513361, 0.00908612832, -0.000327349844, -0.00348492246, 0.0191854574, 0.00449403841, -0.00878380239, -0.00462477375, 0.01285295, 0.00055818, -0.0255588219, 0.0070392983, -0.0285494, 0.00327860517, -0.0110063087, -0.0138007831, -0.00656538131, -0.00634885067, -0.00919235125, -0.00357684586, -0.00336440047, 0.000961111393, 0.0260654222, 0.00576054, -0.00920052174, 0.00574828358, 0.00837525353, -0.02095039, -0.000909021357, 0.00448178174, -0.00607103715, 0.0219309069, 0.000722620927, -0.00157087063, -0.0243658591, -0.0135883372, 0.00699027255, 0.00500881, -0.00880014431, -0.00666751852, -0.00351556367, -0.000246533746, -0.015998777, 0.00331741734, 0.00671654474, -0.0197737683, 0.00522125559, 0.0192181412, -0.002904783, 0.0020641936, 0.00508234883, -0.0209830739, -0.00407936098, 0.00515997317, -0.00671654474, -0.00297219353, 0.00814646576, -0.00363404281, -0.0199208464, 0.00500063878, -0.00409161765, 0.00372596621, -0.00327247707, -0.0085386727, 0.0101401843, -0.018662516, -0.0122564677, 0.00282511581, 0.025902003, 0.0122237839, 0.018286651, -0.00466154329, 0.0143400673, 0.0109245982, 0.00636519259, -0.00203253096, -0.00180067949, -0.0142747, 0.0190710649, -0.00973980688, 0.0269805714, -0.00628348254, 0.00884099863, 0.0140785966, 0.00875111856, -0.00212854, 0.00556852203, -0.0160886571, -0.00551541056, -0.0143564101, 0.0119868256, 0.00705972547, 0.0184664112, 0.0216040686, 0.00117866369, 0.018678857, 0.00427342206, -0.00784005411, 0.00670428807, -0.00351964915, -0.0040548481, -0.0189566705, 0.018106889, 0.013138934, -0.0134902857, -0.00433878973, 0.00515180221, -0.0146832485, 0.00905344449, 0.00915966742, 0.00748461671, 0.00471874, 0.017910786, -0.01143937, 0.00649184268, 0.0103934854, -0.00961724203, 0.00232464354, 0.00348083698, 0.00351556367, -0.0145525131, -0.0251829568, 0.00139621599, 0.0116027901, 0.000115159732, 0.00523351179, -0.0106304437, -0.00636927783, -0.0016699438, 0.00229195948, 0.0083548259, 0.0100911586, -0.0172571074, 0.00394454, -0.0111697279, 0.0182539672, 0.0190220382, -0.0118070645, 0.00263309781, 0.0188913029, 0.00550723961, -0.00929857418, 0.0119296294, 0.00345428125, 0.0173878428, 0.00511911837, -0.0162275638, -0.0204764735, -0.00883282814, 0.00245537912, 0.0151163107, -0.0239246264, -0.00910247, -0.00274544884, -0.00095447246, 0.00796670467, -0.00229808781, 0.0202476848, -0.00286392798, 0.00457166275, -0.0125015974, 0.0131797884, -0.00421213964, -0.00740290666, 0.0089717349, -0.000762965123, 0.00637744879, 0.013138934, 0.0107039819, -0.0126813594, 0.00456757704, 0.00688404962, -0.0144544616, 0.00974797737, -0.00815055147, -0.00126139482, -0.000950897636, -0.00482496293, 0.0152143622, 0.00623037107, -0.0132614989, -0.00982968789, 0.000487960642, -0.0170446616, -0.0112105832, -0.000490769395, 0.00458391896, 0.015140824, 0.0201332923, 0.0213752799, -0.00527028134, 0.0143237254, 0.00314378412, -0.00841610786, -0.0104016559, 0.00256977277, -0.0332232, -0.00259428564, -0.00488624536, 0.00648775697, -0.0110308211, -0.0142256739, -0.0104425112, -0.00970712304, 0.018106889, 0.00932308659, -0.0083548259, -0.0249868538, -0.0130735664, -0.0496141836, -0.0294318646, 0.0144136064, 0.0238592587, 0.00900441874, -0.0117662093, 0.00849781744, -0.00887368247, 0.00824860297, 0.00141970755, 0.00647550076, 0.0174205266, -0.0132614989, 0.0136291925, 0.0236794967, -0.000155886955, 0.00426116539, 0.000680744648, 0.00416515628, -0.0136537058, 0.0139151765, -0.0165217184, 0.00451855129, 0.00670837378, -0.0139642023, -0.015050943, -0.00898807682, -0.0030763736, 0.0108837439, 0.0126977013, -0.0277813282, -0.0090943, -0.00891453773, -0.0183520187, -0.00308045908, 0.00683502387, -0.01009933, -0.0439925492, -0.0072108889, 0.000594438694, -0.0175185781, -0.00365855568, 0.00737839378, -0.022862399, -0.00943748, 0.0190056972, -0.0083670821, 0.0218165126, 0.0107121533, 0.0167995319, 0.00609146478, 0.0051068617, -0.0113740023, 0.00944565143, 0.00384240272, 0.00410795957, 0.0120848771, -0.0204764735, 0.0231892373, -0.00306411693, -0.0262778681, 0.00320302369, -0.00237775478, 0.0131879598, 0.0077951136, -0.00463294517, -0.0089717349, 0.0176166296, -0.0132206436, 0.0319648683, -0.00518857129, -0.0177637078, -0.0118479189, 0.00279447483, -0.00217348034, 0.0186952, 0.000448893144, 0.00641013263, -0.00445318362, 0.0125179393, 0.0114557119, -0.00302530499, 0.0120358514, -0.00437964452, 0.00983785838, 0.00530296518, -0.0152143622, -0.0102382367, 0.015998777, -0.0190710649, 0.00452672224, -0.00394249707, 0.00073028123, 0.0286147669, -0.00177616649, 0.0206235498, -0.0114148576, 0.000668998866, 0.00795853324, 0.00441641407, -0.0182539672, -0.00966626778, 0.00743150525, -0.00397109566, 0.0260981061, -0.0268008094, 0.00766029255, 0.00096009, 0.0135883372, -0.00208257814, 0.0308045894, -0.00355233299, 0.000711896515, -0.017731024, 0.02363047, 0.018482754, 0.00708423881, 0.0163419582, -0.00323775038, 0.00624262774, -0.0176656563, -0.0096009, 0.0201823171, -0.0055480944, 0.00911064167, -0.0184173863, 0.00572377071, 0.000219212045, -0.02287874, 0.00135536108, 0.0254444275, 0.0189893544, -0.0034052555, -0.0171427131, -0.0219799336, -0.0265393388, 0.00981334504, -0.00489441631, -0.00862855371, 0.00837525353, 0.00926589, 0.0124280583, 0.0121093905, 0.014389094, -0.00874294713, -0.0169466101, -0.0190710649, 0.0164726935, 0.0172407646, -0.00700252876, -0.00433061877, 0.0202313438, 0.0140540833, 0.00698618684, -0.0202640276, 0.00731302612, -0.0206072088, 0.02763425, 0.0172080807, -0.00243699434, -0.00591578847, -0.0146669066, -0.0113004632, 0.00689630629, 0.000537241867, -0.0129673434, -0.0135066276, -0.0267354418, -0.0159660932, -0.032781966, 0.00504149403, -0.00640604738, 0.00891453773, 0.00604652427, -0.00263514067, -0.00377294933, -0.00721906, 0.0037606929, 0.0124607421, 0.0177637078, -0.00478002243, 0.00580548029, -0.00553583819, -0.0048903306, -0.0233853403, -0.0291703939, -0.00875928905, -0.000171079868, 0.00183540606, 0.00679416861, -0.0092495475, 0.0192835107, 0.00151163107, 0.00648367172, -0.0221106689, 0.00542961527, 0.00443684123, 0.0174205266, 0.00695350301, -0.0105160493, 0.00825268868, 0.00920052174, 0.00374639384, 0.00222863443, -0.00460843183, -0.0257385839, -0.0166606251, 0.0311314296, 0.00960907061, -0.0152388755, -0.00848147552, 0.0264412872, -0.00678599766, 0.00267599546, 0.0137517573, 0.0237612054, -0.00417128485, 0.0123790326, -0.0112841213, -0.00506600691, 0.0267681256, -0.00758675393, 0.0112677794, -0.0105078788, 0.0151653364, 0.000559712062, 0.0147731295, 0.0326839164, -0.0107775209, -0.00737839378, -0.011063505, -0.0079217637, 0.00712100789, -0.0110716764, 0.00866123755, -0.012477085, 0.00524985371, 0.00938028377, 0.00384036, 0.0345468968, 0.0145034874, 0.0154104661, -0.00310905743, -0.0073824795, 0.00253504608, 0.0193979032, 0.00451446557, -0.0162030514, -0.00363404281, -0.00734162424, -0.0127548976, -0.0194469299, 0.0180251785, -0.0144544616, 0.0138906641, 0.00304981787, -0.0137109021, 0.00443275599, -0.0120358514, 0.031801451, 0.000951919, 0.00338891335, 0.00599341281, 0.00415902818, -0.000250746903, -0.00875928905, 0.00630799541, -0.00313357031, -0.0158598702, -0.01210122, 0.00636519259, -0.00959272869, -0.00705155451, -0.0173061322, -0.00388325774, 0.000113244656, -0.0176166296, 0.0315072946, -0.0102382367, -0.00066236, -0.0237285215, -0.00647550076, 0.0046206885, -0.00579730934, 0.00057094713, -0.0170119777, -0.0024390372, 0.0116436444, 0.00772566, 0.0224375073, -0.000194954453, 0.0102545787, 0.015426808, 0.00685953675, -0.012387204, -0.00387304393, -0.00866123755, -0.0125097688, -0.00600975472, 0.00654495414, -0.00187421823, -0.0262288414, -0.0149202067, 0.0177800506, -0.00845696311, -0.00663483469, -0.00802798662, -0.0184337273, -0.00955187436, -0.0172734484, -0.0103608007, 0.00352169177, -0.00991139747, -0.00307024526, -0.0122156134, -0.0137435859, -0.0144871455, -0.000838036, 0.0104098273, 0.0215060152, -0.00536016189, -0.0184337273, -0.00539284619, -0.00624262774, 0.0207379442, 0.00215713843, 0.0148139847, -0.00952736102, 0.00361974351, 0.00906978641, -0.0231728964, -0.00858769845, -0.00745601812, -0.00667568948, 0.00130327116, -0.0070801531, 0.00018384702, -0.000629165384, 0.000535199128, -0.0169466101, -0.0120685352, -0.00586267747, 0.00398335233, -0.00491484394, 0.0189893544, -0.0117171835, -0.00725582894, 0.0123381782, 0.0415085703, -0.00420396868, 0.0155003471, 0.00285779987, 0.00895539299, 0.0109245982, -0.0231565535, -0.00205704384, -0.00807292666, 0.0134085761, 0.0251829568, -0.0120603647, 0.000151546119, -0.0214733314, -0.00441232836, 0.0147322742, 0.0162275638, -0.00393024087, 0.0230094753, 0.0115946187, -0.0358215719, -0.00989505555, -0.00314378412, -0.014299213, -0.01887496, 0.0812522098, 0.0215060152, 0.00347062317, -0.0233036317, 0.0117416969, -0.00127058721, -0.0117335254, 0.0516732708, -0.0143237254, 0.0269805714, 0.0028537144, -0.00854684412, -0.00183029927, 0.00634885067, -0.00454306416, -0.02287874, 0.00719454698, -0.00140438695, 0.0092495475, -0.000294155237, 0.0144544616, -0.0144871455, 0.0148548391, -0.0235651024, -0.00212036888, -0.0109245982, -0.0182539672, -0.00947833527, -0.00158210576, 0.00851416, -0.00214488199, 0.0287291612, 0.00920052174, -0.00119092013, -0.0132043017, -0.00667977519, 0.0182049405, 0.0142747, 0.0101728681, 0.00410591671, 0.00440824311, 0.00475550955, -0.00630391, -0.00795036275, 0.00959272869, 0.011905116, -0.014478974, -0.0191364326, -0.00428159302, -0.00654086843, 6.70913942e-05, -0.0106467856, -0.0129918559, -0.0199862141, -0.0124852555, 0.00576871121, -0.00435921736, -0.00999310706, 0.000457064132, 0.00868575, -0.000841610832, 0.0109327696, 0.00898807682, -0.00938028377, 0.00626714062, -0.0206072088, -0.00699027255, -0.00147588307, -0.00575236883, 0.00406710478, 0.0138007831, -0.00875111856, 0.00350739271, -0.0154840043, 0.0152879013, -0.00198248378, -0.0159415789, 0.0166279413, -0.0160314608, -0.00117559952, 0.00203968049, 0.00366264116, -0.0136863897, 0.00893905107, 0.00428159302, -0.0124852555, -0.0133105246, -0.00407527573, 0.0143073834, -0.0162847601, 0.00582182221, 0.0192671679, -0.0266537331, 0.0180905461, 0.00644690217, -0.00197533402, -0.0248070918, 0.0257059, 0.0117008416, 0.0161295123, 0.0252646655, -0.00342772552, 0.00023210686, 0.00244720816, -0.0131225921, 0.0275688823, -0.00230217329, 0.00358093134, 0.0310006943, 0.00937211234, 0.0143564101, -0.0240717027, -6.91979731e-05, 0.0245456193, -0.00132880546, 0.000498429697, -5.02706716e-05, -0.0111452155, 0.0217838287, 0.011047163, -0.00230625877, 0.0242678076, -0.0256241895, -0.016962951, 0.0100012776, 0.0162602477, 0.0148875229, -0.00151367381, -0.00181497866, -0.0140704252, 0.0203784201, 0.00251461868, 0.0134576019, -0.00575645454, 0.00201006071, 0.029726021, -0.0118969446, -0.00813012384, -0.00220616418, 0.00199984713, 0.000299517444, -0.0215223581, 0.00996859372, -0.0114883957, -0.01344126, -0.0176819973, 0.00936394185, -0.0187932514, 0.00607512286, -0.00799530279, -0.000541838, 0.0155003471, 0.00892270915, -0.0101565262, 0.00569108687, -0.00302530499, 0.00329699, -0.0129183177, 0.0194796138, -0.0092495475, -0.00319485273, -0.00351556367, 0.00722723082, -0.0101646977, 0.000117585492, -0.0151735079, 0.00888185389, 0.00670837378, 0.0122319553, 0.00298445, 0.0190220382, -0.00315399771, 0.0100176204, 0.0194469299, -0.00336848595, 0.0231728964, 0.00854684412, -0.00424482347, 0.0112105832, 0.00600158377, 0.00115517213, -0.0105650751, 0.00347062317, 0.0310987458, -0.000101626545, -0.0127712395, -0.00568291591, -0.00187115418, 0.030477751, 0.000323775021, -0.00964175537, -0.00422439585, -0.0257385839, 0.0143073834, -0.00876746047, -0.0200515818, -0.00570742879, 0.0109817954, -0.0229114238, 0.00969078112, -0.00484539056, -0.00184051297, 0.0120603647, 0.011153386, -0.00478002243, 0.00304777501, 0.0161295123, 0.0163501278, 0.00184868393, 0.0037402655, -0.00833848398]
06 Jan, 2025
Digital Logic and Design – GATE CSE Previous Year Questions 06 Jan, 2025 In this article, we are mainly focusing on the Digital Logic & Design GATE Questions that have been asked in Previous Years, with their solutions. And where an explanation is required, we have also provided the reason. Topic-Wise Quizzes to Practice Previous Year’s Questions Logic functions and Minimization Combinational Circuits Sequential circuits Number Representation Below mentioned are the links to the Digital Logic & Design PYQ’s pages. On each page, you will get the questions asked in DLD along with the years asked. GATE DLD Previous Year Questions Digital Logic & Number Representation GATE CSE Previous Year Question Papers These previous year’s questions help you understand the question patterns followed by GATE that directly help a candidate in scoring good marks in GATE. Below is the links to year-wise GATE Previous Question Papers. GATE CSE Previous Year Question Papers These GATE CSE question papers span over 15 years, along with their official answer keys. We’ve also provided Quiz tests to help you practice key topics, improve speed, track your progress, and build confidence for the GATE exam 2025. These previous year’s questions help you in understanding the question patterns followed by GATE that directly help a candidate in scoring good marks in GATE. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions
https://www.geeksforgeeks.org/digital-logic-gate-questions?ref=asr10
PHP
Digital Logic and Design – GATE CSE Previous Year Questions
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0483197197, 0.0130136441, -0.0195431616, 0.0127542792, 0.0400459729, 0.0368298441, 0.017260747, 0.0471266396, -0.0194653515, 0.00356302806, 0.023342859, -0.0533773378, 0.0372188911, 0.00540452031, -0.0325243846, 0.0192189552, -0.0084423339, 0.0249120183, -0.0120086046, -0.0686280057, 0.00704824692, -0.00438327, -0.015548938, 0.0197636206, -0.0240301769, 0.0044578379, 0.0241079871, -0.0245618764, -0.0184278917, 0.0170402881, 0.0199970491, 0.0154062873, -0.0303457174, -0.0329134315, -0.0565934666, -0.0179091599, -0.00715847686, 0.00703527872, -0.0397606716, 0.00415632594, -0.0341583863, -0.0133962082, -0.0149653666, 0.0139538432, 0.00682778656, 0.00109500706, 0.0234206691, -0.0127931843, -0.00500250468, -0.0257549547, -0.0226814784, -0.0101800803, 0.058460895, -0.00396180199, 0.0284523517, 0.00418226235, 0.00955112, 0.0245229714, 0.00785876252, -0.00214300421, 0.039449431, 0.000296243583, -0.0475416258, -0.0453370214, 0.0120928977, -0.0224610176, -0.0287117176, 0.00457131, 0.00676942943, 0.00397801213, -0.0258976053, -0.0425618142, -0.0255215261, -0.0171440337, 0.000876167731, 0.0213587172, -0.0184797645, 0.0438845754, 0.00279303803, 0.0275445748, -0.0376079418, 0.00996610429, 0.00296973041, 0.0135907317, 0.0208659228, -0.0351958461, 0.0258197971, -0.0697692111, 0.0193097331, -0.014174303, 0.025223257, 0.0201656371, 0.0052164807, -0.0258716699, 0.00113715394, 0.00792360399, 0.0233817641, -0.00782634225, -0.0302160345, 0.00388075039, 0.0124819456, -0.00389371859, -0.0127542792, -0.00544990925, -0.00108041777, -0.00999204069, -0.0571122, 0.0219811928, 0.0152506679, 0.00476259179, -0.0415502898, 0.0168717, -0.017948065, 0.00726222293, -0.00448053237, -0.0165345259, -0.0424061939, -0.0471785143, -0.003201538, -0.0146670965, 0.0293341931, 0.00078539, -0.0238615889, 0.0228370968, -0.0588758774, 0.0473341309, -0.00792360399, 0.0122809382, -0.0314350501, -0.00671755616, -0.0330171771, 0.00615992118, -0.0464004166, 0.0266108606, 0.0440920666, 0.0166512392, 0.00160968467, 0.0160028264, 0.0184538271, -0.0307347644, 0.0265589878, -0.0269739702, 0.00950573105, -0.0103616361, -0.00136734045, 0.00221757172, 0.00227430789, 0.0523658134, -0.0244451612, 0.0427693054, -0.0287117176, -0.00972619187, -0.00651979027, 0.00806625467, -0.00964189786, 0.000480635965, 0.00592325069, -0.00794305652, -0.010536707, -0.0323947035, 0.0203990657, -0.0287635904, -0.00455185771, -0.0220071301, -0.0368298441, 0.0185057, 0.0206584316, 0.00823484175, -0.0465041623, 0.0234725419, 0.000189356797, 0.0123198424, 0.0168587323, 0.0240172092, 0.012332811, -0.00164615794, -9.10817325e-05, 0.0101346914, 0.0104199927, -0.0251973197, -0.0418096557, -0.0151339537, -0.0195561294, 0.0105431918, 0.0335359089, -0.0193486363, 0.0289710816, -0.0324725099, -0.0238097161, 0.0060561751, -0.0444551781, 0.00618585758, 0.0148745887, 0.0237708129, 0.0357145742, -0.0201397, -0.0590833724, 0.00441244897, -0.0400459729, -0.0190763045, 0.0031674963, -0.011950247, 0.00433139736, 0.0100893024, -0.0137982238, -0.0147708431, -0.0201137643, 0.00107555464, 0.00524890143, -0.00254339911, -0.0571640693, 0.0230575576, 0.00374134164, -0.0529104806, -0.0187780336, 0.00879247673, -0.0219163522, -0.035118036, -0.00426331395, -0.025612304, 0.0056444332, 0.0292045102, 0.00342037738, 0.0159509536, -0.0121707078, -0.028737653, -0.00734003261, -0.0314091146, -0.0424321331, -0.055037275, 0.00222729775, 0.0180777479, 0.010750684, -0.00170370459, -0.0124235889, 0.0199581441, -0.0047885282, 0.042146828, -0.00389047666, -0.0214883983, -0.0246785898, -0.0293860659, 0.0121577391, -0.00741784228, -0.0274667647, 0.0264682099, 0.02423767, 0.0233687963, 0.0142391445, 0.0441180058, 0.0192837957, -0.00698989, -0.0019744169, 0.0314869247, -0.023342859, -0.0189855266, 0.0216829237, 0.0130914534, -0.0143428901, 0.00655869534, -0.0272852089, 0.00102530268, 0.00209599431, 0.000769179664, -0.00778095331, 0.0076447865, 0.0129358349, -0.00119226903, 0.0349883512, -0.0417837203, 0.0540516898, -0.0213068444, -0.0182203986, 0.0412649885, 0.022785224, -0.0496424809, -0.0354811475, 0.000981534831, -0.0076447865, 0.0146800652, -0.0134999538, -0.0341583863, 0.03820448, -0.0344696231, 0.022227589, -0.0172477793, -0.015548938, 0.015717525, -0.0659306124, -0.0210604463, 0.0118918903, 0.0404868945, -0.0359998755, -0.00088589394, 0.00521972263, 0.0207103044, -0.00321774837, 0.00914910436, 0.0166512392, -0.00748916762, -0.00500898855, -0.0346252434, 0.0157045573, -0.00697043724, -0.031824097, -0.0348068, 0.0141872717, -0.0189984944, -0.0231613033, -0.0289451461, 0.00451619504, -0.0216958914, -0.0411612429, -0.0380748, 0.016404843, 0.00259527215, 0.0131757474, 0.000720953918, -0.0119243106, -0.00649061194, 0.0322909541, -0.0134221446, -0.019867368, 0.0504205786, 0.0348586701, -0.0382822901, 0.034391813, 0.00729464367, -0.0358183198, -0.024497034, -0.00922043, -0.00633823499, -0.037426386, -0.00443514343, 0.0500834025, -0.0423802584, -0.00673052436, 0.0461410508, 0.0371151455, 0.00498305215, -0.01798697, -0.00715199299, -0.0173774622, -0.0145633509, -0.0421727672, -0.0205806214, -0.0246915575, -0.0203471929, 0.0144985095, -0.0144466367, 0.000833210419, 0.0109063024, 0.0323947035, 0.0155230016, 0.00985587388, -0.0274148919, -0.0360517502, -0.0200748593, -0.000332108903, 0.00839046109, 0.0345993042, -0.0143428901, 0.0310978759, 0.025612304, -0.0419393368, -0.0376598127, 0.0310200676, 0.00793008786, -0.0201397, 0.00313021266, -0.00734651648, 0.0502390228, -0.0181425884, 0.00128304679, -0.0155230016, 0.0126245962, 0.00418226235, 0.0134610487, -0.00163156865, 0.002441274, -0.0126894377, 0.0016072531, -0.0328096859, 0.0137982238, 0.00375430984, -0.0113731595, 0.00362786953, -0.00168587314, -0.00730112754, 0.0480862893, -0.0490459427, 0.00234077, -0.0393975601, 0.0330431163, 0.0373485759, -0.0174552724, 0.0293860659, 0.00837100856, 0.0201137643, -0.041290924, 0.0277001932, 0.0130590331, -0.0110554378, 0.0199062712, -0.0182463359, 0.0288414, 0.00721035, -0.00749565149, -0.000135356167, -0.000817000109, 0.00789766759, -0.0181944631, -0.00136166683, 0.0104653817, 0.00270874426, 0.0163789056, -0.01126293, 0.0584090203, 0.0527029894, 0.0281151775, -0.00159752695, 0.094823882, -0.0177665092, 0.0224999227, 0.00826726295, 0.0104199927, -0.0116649456, 0.0088897394, 0.0323947035, -0.00693801651, -0.00998555683, 0.0266367961, -0.00394234946, 0.017429335, -0.0144466367, -0.0675905496, 0.018544605, 0.0518211499, -0.0512764826, 0.043988321, -0.0212809071, 0.00270550232, -0.0127024064, -0.0018317661, -0.0453629568, 0.019659875, -0.039786607, -0.0350402258, -0.0108479457, -0.00256285141, -0.0276483204, -0.00722331833, 0.00512894476, 0.00330852624, 0.0158212706, -0.00243641087, 0.0473081954, -0.0148486523, 0.0474897511, -0.0447923541, 0.0233687963, 0.059187118, 0.00196306966, 0.0143299224, 0.0180388428, 0.0127542792, 0.00344307185, -0.0256641768, -0.00734651648, 0.0194005091, 0.0245489068, -0.0200618915, 0.000372026814, 0.024497034, 0.0276483204, -0.00114363804, 0.0052553853, 0.00225809752, -0.0556078777, -0.00185932359, 0.0182852391, 0.0326800048, 0.0273111463, -0.040850006, -0.00277034356, 0.00557310786, 0.00726222293, -0.0168457646, -0.00514839729, -0.00418874668, -0.0182074308, -0.00730112754, 0.0144466367, -0.0199711137, -0.0127802156, -0.0115806516, -0.0525214337, -0.0147838108, -0.028867336, 0.0106080333, -0.0397347361, 0.0240172092, -0.00537534198, 0.059187118, -0.0039877384, -0.0174034, 0.00521323876, 0.0312275589, 0.0214883983, 0.0323428288, -0.00296973041, -0.0219033826, -0.0157953352, 0.0255344938, 0.0246007796, -0.00762533396, -0.045777943, 0.00930472277, 0.0164826531, -0.0129877077, 0.00955112, -0.00817000121, 0.000491172657, 0.0289710816, -0.034002766, 0.0263125896, 0.00911019929, -0.0388788283, 0.0195950344, -0.000754590379, -0.0500834025, 0.0316166058, 0.0102967946, -0.015886113, -0.0168976374, 0.0156267472, -0.0242765732, -0.0453370214, 0.00753455656, 0.0241079871, 2.00096133e-06, 0.0545704179, -0.0139538432, 0.0175849535, 0.0243932884, 0.0145892873, 0.0276742578, -0.0238356534, 0.0156656522, 0.0129941916, 0.0431842916, -0.00432491302, -0.0326021947, -0.00122225808, 0.00171343074, 0.00821539, 0.0295676216, 0.00721035, -0.0116779143, 0.000935335411, -0.0220330656, 0.00353384949, 0.00588434609, 0.00466533, 0.0280892402, -0.00739190541, 0.0116973659, 0.0310719404, -0.0032290956, 0.00599457603, -0.0399422273, -0.00117686915, -0.0307866391, 0.0137593187, -0.0227074157, 0.0226296056, 0.014303986, -0.0207492094, -0.016404843, 0.00729464367, 0.0326021947, -0.00529753231, 0.0267405417, -0.0126375649, 0.0184927322, -0.0302419718, -0.0267405417, 0.0162232872, 0.0096872868, 0.0244192239, -0.0155619066, 0.0146022551, -0.00200521643, 0.00646467507, 0.00348846079, 0.0277261306, -0.0383601, 0.000632202427, 0.00579032581, -0.00664623082, 0.0159379859, 0.0131109059, 0.0322909541, 0.00748916762, 0.0293341931, -0.0304754, 0.00119713205, 0.0164826531, -0.0220460333, 0.00221270858, 0.0331727974, -0.0117038507, 0.00585516728, -0.0056574014, -0.00173450413, -0.0138111915, -0.029463876, 0.0396309868, 0.00392289739, -0.00559580233, 0.0431324169, -0.0218644794, -0.00227592885, -0.013746351, -0.00654896908, 0.0291526373, -0.00171018869, -0.0120864138, -0.0138500966, -0.0625069886, -0.029852923, 0.0295157488, -0.00146946544, -0.00759291369, -0.00704176258, 0.0002459916, -0.0331468619, 0.00746323075, -0.00793657266, -0.0064322548, -0.0419134, -0.00105934439, 0.00689262757, 0.0965356901, -0.0163789056, 0.024069082, 0.0196080022, 0.0212809071, 0.00257906178, 0.00959650893, 0.0225777328, -0.0154192559, 0.0145374145, 0.0151598901, 0.00946682598, -0.0143947639, 0.0216829237, -0.017429335, -0.00508355629, -0.0174552724, -0.0136296367, -0.0193486363, 0.0356108285, 0.0194653515, -0.0284264162, -0.00352736539, 0.00995962, 0.030190099, -0.0245359391, 0.0087017, -6.30176146e-05, 0.0146541288, -0.00253043091, 0.0168976374, -0.0118529852, -0.0169754457, -0.0191930179, 0.0398125425, 0.012462493, 6.74247931e-05, -0.0068731755, 0.0348586701, -0.0112499613, -0.0177924465, -0.00298756175, 0.00787173118, -0.0299826059, 0.0318500362, -0.0406425111, 0.000913451484, 0.0321612731, 0.00230186526, -0.0197376851, -0.0109776277, -0.0393975601, 0.0228370968, 0.0101282075, 0.00634796079, 0.00302322442, -0.0494868606, 0.0313831791, -0.00729464367, 0.0100050094, -0.00592973456, -0.00453888951, 0.0288932733, 0.0102514056, 0.0031885698, -0.0294120032, 0.0192189552, -0.00323720067, 0.000642739178, 0.0307607017, -0.00612101657, 0.038334161, -0.0111008268, 0.000783768948, -0.0376338772, 0.029463876, -0.0153025417, 0.0247045271, 0.000658949488, -0.0421987027, -0.0169495102, -0.00243154797, 0.0126440488, -0.004817707, 0.0174682401, 0.00549205625, -0.0122614857, 0.0142650809, 0.0127607631, 0.00327448454, -0.00139165588, -0.0128126359, -0.0224739872, 0.0064711594, 0.0306050833, 0.0359220691, -0.00370567897, 0.0295157488, -0.0238097161, -0.0215791762, 0.0192967635, -0.0150172394, -0.0143947639, 0.0346511789, -0.0084423339, 0.0142132081, 0.0301382262, 0.00744377868, -0.00173612521, 0.018713193, 0.000974240189, -0.0202434473, -0.0318500362, 0.0298788603, -0.0183241442, 0.00625069905, 0.0147967795, 0.0127283428, 0.0597577207, 0.0106404535, -0.00229538116, 0.00914262, -0.0176368281, -0.0566453375, -0.0128774773, 0.0194523837, -0.00787821505, 0.0118918903, 0.000601402833, 0.0164178107, 0.00781337358, -0.0110878581, -0.00638362346, -0.000988829415, -0.0188169386, 0.00397477, 0.0242506377, 0.00811812747, 0.0147967795, -0.00231321249, -0.00445135357, -0.0133313667, -0.0420430824, 0.037815433, 0.0103162471, 0.0348846056, 0.0147708431, -0.0333024785, 0.0223183669, -0.0193097331, 0.027155526, 0.0238745585, -0.0293860659, -0.0262996219, 0.00286112144, -0.0147189694, -0.025612304, 0.0314091146, -0.0190114621, 0.0200489219, 0.0223054, -0.00412714714, 0.00080403185, 0.00616316358, -0.051224608, -0.0185575727, -0.0060594175, 0.0144077316, -0.00621827831, -0.00418550428, -0.0143428901, 0.0551928952, -0.0181944631, -0.00802735, 0.00658787368, -0.0291785747, -0.0118594691, 0.00597188156, -0.000792684616, 0.00948627852, 0.0144725731, -0.0024007482, -0.00957057253, 0.00264552399, -0.0225647651, 0.000575871614, 0.0211771615, 0.00971970707, -0.00342361932, -0.0170791931, -0.0391900688, 0.0161584467, 0.0148745887, -0.0218126047, 0.011522295, 0.00546612, 0.0141613344, 0.00366677414, 0.0256771464, 0.00228889706, -0.0162103195, -0.0166382715, 0.00597188156, 0.00785227865, -0.00570603227, -0.0198933035, -0.000817810593, 0.0231872406, 0.0462188609, -0.00829319935, 0.0156656522, -0.0127348267, 0.0282707959, 0.0203212555, 0.00700285798, -0.00863685831, -0.0301122889, -0.00356302806, 0.0163270328, -0.0142910173, 0.0262996219, 0.0214624628, -0.0237189382, 0.0145763187, -0.00268767099, 0.00148486521, -0.0146152237, -0.0314609893, -0.00873412, -0.0040558218, -0.00964838173, 0.0299566705, 0.00529429037, 0.0103421835, 0.000266862393, -0.0192059856, -0.0170273185, 0.0235892572, 0.00972619187, -0.0267146062, 0.000955598312, -0.0261180662, 0.00846178643, -0.0396828614, -0.0203990657, 0.0302419718, -0.0160417315, -0.0368817188, 0.0223702397, -0.00306375022, -0.0293601304, 0.012546787, 0.00697692158, -0.0119826682, -0.0168198273, -0.00329717901, -0.0112175411, -0.0052586277, -0.0157434624, 0.018116653, -0.0254696533, -0.0032355797, -0.0379969887, 0.0137333823, 0.0137074459, -0.00451295264, -0.00190633349, -0.0159639232, 0.0375041962, 0.00207978394, 0.00698989, 0.00550826639, 0.0380229242, -0.0315387957, -0.015030208, 0.0204768758, 0.0003969502, -0.013234105, 0.0121058663, -0.0148097472, 0.0252621621, 0.00456482591, -0.0226555429, -0.0500574671, 0.00456158398, 0.00788469892, 0.0207232721, -0.00993368402, 0.0180388428, 0.0206714, -0.00186904985, 0.000735948503, 0.00331501034, -0.0142391445, 0.0236930028, -0.0556597523, -0.0116001042, 0.0136555731, 0.0183889866, 0.0195431616, -0.0135907317, -0.00737893721, 0.00311562326, 0.00545963552, 0.0181814935, -0.0105820959, -0.00169397832, 0.0315647349, -0.00505113555, -0.0150431758, -0.000283275323, -0.00213165698, -0.0428989902, -0.00838397723, -0.030968193, -0.0092982389, 0.0111137945, 0.0213457476, 0.00286760554, -0.0178961921, 0.0193616059, 0.0189077165, -0.00213652, 0.0106145171, -0.0174812078, -0.00373485754, -0.0243932884, -0.00751510402, -0.0391641296, 0.0159120485, -0.00125143665, -0.00804680213, 0.0040169172, 0.016404843, -0.0120215723, 0.00267470255, 0.00640631793, -0.0254696533, -0.0299826059, -0.0258068275, 0.0163270328, 0.0156137794, 0.0203212555, -0.0230056848, -0.0239523668, 0.0203471929, -0.015587843, -0.0105107706, -0.0177794788, -0.000147007333, -0.0114185484, -0.00872763619, 0.0282189231, 0.0378413685, 0.00158374815, -0.00285787927, -0.019828463, -0.0445070527, 0.00863037352, -0.00431194482, 0.0195690971, -0.0350402258, 0.0267146062, 0.0223183669, -0.00832562, 0.0258587, -0.0044545955, 0.00485336967, -0.0409796871, 0.00419198861, 0.00814406481, 0.0123976525, 0.0158212706, -0.0386194661, 0.0225777328, -0.0184149221, 0.00250287331, 0.00684723863, -0.0068731755, -0.044714544, -0.0160287637, -0.00310751819, -0.000433626032, 0.0293341931, -0.0130330967, -0.027752066, 0.0218385421, 0.0223054, -0.0199451763, 0.000896430633, 0.00265200832, -0.0128191207, -0.0255474634, -0.0151728587, -0.0219941605, -0.0116130728, -0.00343334558, -0.00776798511, -0.0193745736, -0.0241468921, -0.0197636206, -0.0384638458, -0.0258976053, -0.00790415145, 0.00536885764, -0.0174034, -0.00546936179, 0.022097908, -0.0150820808, -0.0163918752, -0.0239134636, 0.00277196453, 0.0390085131, 0.00698340544, 0.0156656522, 0.00624421472, 0.00147676, -0.0230575576, -0.0184019543, -0.00324368477, 0.00447404804, -0.00864982605, 0.0309941303, -0.000568171672, -0.000527240627, -0.00754104042, -0.023680035, 0.00745026255, -0.0128839621, -0.0123782, -0.0181036852, -0.000179529292, 0.0127607631, -0.015587843, -0.0139797796, -0.00426979829, 0.0345733687, -0.00317073846, -0.0128515409, 0.0178313516, 0.00474638166, -0.0123068746, 0.0240561143, 0.000332108903, 0.00859146938, -0.0147449067, -0.0198933035, -0.0257290192, 0.0108025568, 0.0108933346, -0.00219001411, 0.0289192088, 0.0190244298, 0.0187520981, 0.0636481941, -0.00933714397, -0.0334840342, 0.00232780189, -0.0134351123, -0.0111851199, 0.0136555731, 0.0237319078, -0.00411417894, -0.013448081, 0.0434955284, -0.0123392949, 0.00420495681, 0.0293341931, -0.0121253189, -0.016404843, -0.0150431758, 0.0076836911, 0.00256933551, -0.0019598275, 0.00284491107, 0.00142569758, 0.00255960948, 0.00232942286, 0.0203601606, -0.000236670661, 0.000740811578, -0.0156656522, -0.00112985924, 0.00524890143, -0.00231321249, -0.00531374244, -0.0314609893, -0.0143947639, -0.0276742578, 0.00982345361, 0.031824097, -0.00215435144, -0.0443514325, 0.000132418048, -0.00970025454, 0.00219487725, -0.0301122889, 0.0336915292, -0.00152295944, 0.00223540305, 0.00152214896, 0.0281151775, -0.0277780034, 0.0187002234, -0.0247823354, 0.00453888951, -0.0138630653, -0.00772908, -0.00674997689, 0.0151598901, -0.0197117478, -0.00424710382, 0.0148097472, 0.0135907317, -0.0127737317, 0.0217218269, -0.00281897443, -0.0236281604, -0.00958354, 0.0165345259, -0.0125792073, -0.00938253291, -0.00828671549, 0.022357272, -0.0463226065, 0.0149005251, -0.0237189382, 0.00219649822, -0.0218644794, -0.0239134636, -0.0032696214, 0.00903887395, 0.0304494631, -0.00171343074, 0.022357272, 0.00389047666, 0.0052164807, 0.0361036211, 0.00646143313, 0.0133573031, -0.0237837806, -0.00822835788, 0.0150561444, 0.0064581912, -0.0105691282, -0.00890270714, 0.0123976525, -0.0104329614, -0.0102643743, 0.0170662235, 0.0292823203, 0.00593621889, -0.00210734154, -0.0180518106, 0.0237708129, -0.0146541288, 0.0018512184, -0.00384508772, 0.00168911531, -0.0195042565, 0.0347030498, 0.0266367961, 0.01096466, -0.00868873112, 0.034391813, 0.00875357259, 0.0376598127, 0.0106469374, 0.00036777163, -0.00372188934, 0.0136944773, 0.00989477895, 0.0263255592, 0.000159671647, -0.00106988102, 0.00450971071, -0.00446756417, -0.00835155603, -0.0207492094, 0.00739190541, 0.00167614699, 0.00537858391, 0.00146865495, 0.0136555731, -0.0249249861, 0.0202175099, 0.00253205188, 0.0127218589, -0.0330949873, 0.0109452074, -0.00467505585, 0.0103810886, -0.0136166681, 0.00270063919, 0.0171051286, 0.00221757172, -0.00169397832, -0.000592487166, -0.00357275433, 0.000116207724, 0.00428925036, 0.0110424692, -0.00124495255, 0.0220330656, -0.0127413105, -0.00499926228, 0.00708715152, 0.0219422877, 0.0310978759, -0.0120215723, 0.0164696835, -0.0246396847, 0.035844259, -0.0240431447, 0.00374782574, -0.0216051135, 0.0301122889, 0.0150691131, -0.00952518359, -0.0168068595, 0.00919449329, -0.0125727234, -0.00188850216, 0.00646791747, 0.0163400024, -0.00622152071, -0.0051743337, 0.000863199471, -0.0187780336, 0.0178313516, 0.0129877077, -0.0179740023, -0.0024088535, 0.00398125453, 0.00826726295, -0.0126570174, 0.00416605221, 0.00102206063, 0.0142261758, -0.0152506679, -0.000519946, 0.00592973456, 0.0258197971, -0.00126602594, -0.000119855045, 0.0247434303, 0.027492702, -0.0212679394, 0.00905184262, 0.0357145742, 0.0200618915, -0.00624421472, -0.0373485759, 0.0104394453, -0.0279336218, -0.0177794788, -0.000104556559, 0.0104653817, 0.0232650507, -0.00762533396, 0.00286436337, 0.00359220663, -0.0024088535, 0.00892216, -0.01126293, -0.00272009149, 0.00364732184, -0.0237578433, -0.0101022711, 0.0168068595, 0.00397477, 0.0125208506, 0.0127802156, -0.00342361932, -0.000640307611, -0.00836452469, -0.00232455973, 0.0214365255, 0.00181879778, -0.0158342402, 0.0114963586, -0.020087827, -0.00145244459, 0.00941495318, -0.00579032581, 0.000962892955, -0.0019744169, 0.0288154632, 0.00715847686, -0.00953815226, 0.00456158398, -0.0287895277, -0.0135647953, 0.0040850006, 0.0152377, 0.00999204069, 0.0036829845, -0.0205287486, -0.00825429428, -0.000134748276, 0.00523269083, -0.00556986546, -0.0177405737, 0.0176627636, 0.0292823203, -2.61391397e-05, 0.00992071535, -0.00918800849, 0.00367974234, 0.0156915896, 0.00116957456, 0.00881841406, 0.0193356685, -0.0404609554, -0.00681481836, 0.00805328693, 0.00424710382, 0.000683265, 0.00903239, 0.0226166379, -0.0190892722, 0.00171505183, -0.020645462, 0.00148324424, -0.0187261607, 0.00743081048, 0.0243932884, 0.0289710816, 0.00898051728, 0.0185705423, 0.0164567158, 0.00620855205, -0.00806625467, -0.00352412346, -0.0023618436, 0.0308644474, -0.00842936616, -0.0203342251, -0.043599274, 0.000463615143, -0.00466208765, -0.00529753231, -0.00710011972, 0.0165604614, -0.00086968363, 0.00538182585, -0.00999204069, -0.0156397168, -0.0161065739, 0.0443773679, 0.0104135089, 0.00202466897, -0.00786524732, 0.0317722261, -0.00953815226, -0.0102319531, -0.00283194287, 0.00726870727, 0.0189077165, 0.00463615125, 0.00739190541, -0.0182463359, 0.0171829388, 0.01798697, 0.0455963872, -0.00961596146, -0.00736596901, 0.017559018, -0.0249120183, -0.00568009587, 0.0106469374, -0.0155619066, -0.0112175411, 0.00700934185, -0.020256415, -0.0142132081, 0.0338471457, -0.0279854946, 0.00436381809, -0.000177705617, 0.0224739872, 0.0124884294, -0.0283745434, -0.0223443042, 0.0136944773, -0.0124365566, -0.0105885807, 0.0124884294, -5.78759045e-06, 0.0250157639, -0.020645462, -0.00377700431, 0.0052845641, 0.00640956033, -0.0427174345, -0.00494738948, -0.0163400024, -0.000558445521, -0.00774853257, 0.00064314442, 0.0254437178, 0.0160547, -0.00323882187, 0.00603996497, 0.00577411568, 0.00124495255, 0.0111980885, 0.00501547288, -0.0092723025, 0.0251454469, -0.0268442892, -0.0327318758, 0.00321126427, 0.0291785747, -0.0036635322, 0.022227589, 0.00471071852, 0.00782634225, 0.0125597557, -0.0076447865, 0.0109841125, -0.00318370666, 0.00758642936, 0.0310460031, -0.00422116695, 0.00154727499, 0.00464263558, -0.00190795457, 0.0221108757, 0.0183371138, -0.0249379557, 0.00667865155, 0.000190572566, 0.0048566116, -0.0248990506, -0.0117297871, 0.00878599286, 0.00996610429, -0.0221757162, -0.0178313516, -0.0293341931, 0.0316166058, 0.0227981936, 0.0293860659, 0.00559904426, -0.00323882187, 0.00364083773, 0.0399422273, -0.0248082727, 0.00732706441, -0.00435085, -0.00608211197, -0.0189595893, 0.00848772284, 0.0118918903, 0.00439948076, -0.0159898587, 0.000251462567, 0.00602699677, 0.0138371289, 0.0149005251, -0.0436252095, 0.0151080173, -0.0200359542, -0.00350467092, 0.0144985095, 0.0206584316, -0.0349364802, -0.041239053, -0.0138241602, 0.0137593187, 0.00872763619, 0.00563470693, 0.00626366725, -0.0112045724, 0.0084423339, -0.0226425733, 0.0153544145, -0.0174163673, 0.00194848038, -0.00117281661, 0.0089156758, 0.00639334973, -0.0433658473, 0.0133443344, 0.00866279472, -0.00934362784, 0.0118983742, 0.00543694105, -0.00452592131, 0.0171829388, -0.0100568822, 0.0149394302, 0.00149053882, -0.017260747, -0.0144985095, -0.00145730772, 0.00106988102, -0.0076836911, -0.0040558218, 0.00925933477, -0.00133978284, -0.0105496757, 0.0180907156, 0.0270777177, 0.00248342101, -0.00264714519, 0.00124900509, 0.00828671549, -0.00240561133, 0.0102903107, -0.00459076231, -0.0128839621, -0.0256382413, 0.0342102572, -0.00877950899, 0.00475610746, 0.0128645096, 0.04051283, 0.00519378623, 0.00636741333, 0.00548881385, 0.00853959657, 0.00187553396, 0.00245748437, -0.00882489793, 0.0101152388, -0.0123846838, -0.00432491302, -0.0182333663, -0.0165215582, 0.0198025256, -0.00086968363, 0.0172088742, -0.00682778656, 0.0239783041, 0.00789766759, 0.0024558634, 0.0125856921, 0.064063184, 0.011736271, 0.0284523517, 0.0168976374, -0.00518730236, -0.00704824692, -0.0126959216, -0.0181814935, 0.00137220346, -0.0144725731, 0.0141872717, 0.0163010973, -0.0206584316, 0.0187650658, 0.0189077165, 0.0059880917, 0.0190244298, -0.035844259, 0.00511597656, 0.0242636055, 0.00239588507, 0.00471720286, 0.000960461388, -0.000495225249, 0.00478204433, -0.00487930607, -0.0271814633, 0.00519702816, 0.0201915745, 0.0194653515, -0.00984290615, -0.00108528091, 0.00286760554, -0.00998555683, 0.0256382413, 0.0161584467, 0.00846827, 0.00713254046, 0.014433668, 0.00936308, -0.000957219338, 0.00997258816, 0.0179350972, -0.00811812747, 0.0168068595, 0.0028416689, 0.0136944773, -0.00539803645, -0.013020128, -0.00364407967, 0.0116779143, -0.00626042532, 0.0103940563, -0.00379321468, -0.0168846678, -0.0195690971, 0.0084228823, -0.0105237393, -0.0035695124, 0.0175849535, -0.000629770919, -0.0106404535, 0.0150042716, -0.00152620149, -0.00761885, 0.0119437631, -0.00894809607, 0.00449350057, -0.00450322684, -0.00909074675, -0.00979103241, 0.00262607168, 0.0116584618, -0.0052164807, 0.0144855408, 0.00425682962, -0.00975212827, 0.00635444513, -0.0286339074, 0.0007087962, 0.00274764909, 0.00589407189, -0.0114509696, -0.0223183669, -0.0109322397, -0.016832795, -0.00354681793, 0.0229667798, 0.00151323329, 0.0269220974, 0.00331987347, -0.00172964111, 0.0143299224, -0.00931769144, 0.0222924314, 0.00568009587, -0.0019679328, 0.00337823061, -0.00643549673, 0.0226944461, -0.00550178252, 0.00341713522, 0.000773232197, -0.0327059403, -0.00395207573, 0.00483715907, 0.0246007796, -0.00183500815, 0.00337823061, 0.00549205625, -0.00922043, -0.0103875725, 0.0092463661, -0.0114963586, -0.00355005986, 0.0129812239, -0.00916207209, -0.0005053567, -0.0125792073, -0.0290229563, -0.00622800458, -0.0102189854, 0.0300863516, -0.0293341931, 0.00239588507, 0.00366677414, -0.023680035, 0.00428600842, -0.00299728801, -0.00912316795, 0.0143688265, 0.00909074675, -0.00125792075, -0.00986884255, -0.00691208, -0.00647764374, 0.00712605612, -0.0201786049, 0.00798196159, -0.0148486523, 0.00599781796, 0.0206584316, -0.00765127083, -0.00901293755, -0.00662353635, -0.00541424658, -0.00258230395, 0.0192189552, -0.00971970707, -0.0248212405, 0.00419523055, -0.0105107706, -0.0152377, 0.000180542425, 0.0118594691, 0.0207881127, 0.00504140928, -0.00170856761, -0.0212549698, -0.00607562764, 0.0140316524, -0.0189466216, 0.00194361724, -0.0052035125, 0.0027687226, 0.0295676216, 0.0100893024, 0.0263904, 0.0201786049, 0.0114704221, -0.0209567, 0.00205871044, -0.0120086046, 0.0208659228, -0.0167938899, 0.00331987347, 0.00830616709, -0.00176044065, 0.0353514627, -0.00630581426, -0.0056184968, 0.00390344486, -0.00149945449, -0.00086644158, 0.0127348267, -0.00687965937, 0.00169235736, -0.0272592735, 0.0103810886, -0.0118789217, 0.000399584358, 0.0102384379, -0.024069082, -0.0103875725, 0.00972619187, 0.00923988223, 0.00535588944, -0.0171699692, -0.00507383, 0.000721359218, -0.00556662353, -0.00140300312, 0.00461345678, 0.015717525, 0.0139149381, 0.00737893721, -0.0163529702, -0.0212290343, -0.00667865155, 0.0239912719, -0.0405906402, -0.00116309035, 0.00448701624, 0.0127283428, -0.0106534222, 0.00346576632, 0.00238453806, -0.0152247315, -0.0052683535, 0.00124333147, 0.00955112, -0.0110424692, 0.0143947639, 0.0153284781, 0.00776150078, -0.000635444536, -9.42224779e-06, 0.00088589394, 0.00513218716, -0.0172996521, -0.0153803509, -0.00684723863, 0.00798196159, 0.00258392491, 0.000279425381, -0.0138371289, -0.0073140962, -0.000320964318, -0.0106663899, -0.00913613569, -0.00454861578, -0.0124300728, -0.0130136441, -0.00623124652, -1.69068571e-05, -0.00223864499, 0.0203212555, -0.0044416273, 0.010536707, -1.74134293e-05, -0.00821539, 0.0309941303, 0.0089156758, -0.00279628, 0.0161843821, -0.00811812747, -0.000823889452, -0.0110295014, -0.00581626268, -0.011820565, -0.00927878637, 0.000541019428, 0.00853959657, 0.00335229398, -0.00536237378, -0.0056574014, -0.00108933344, 0.00229376019, 0.0106728738, -0.0116584618, -0.0100309458, -0.0024753157, -0.0107182628, -0.00158212718, -0.029463876, 0.00264876615, 0.00596863963, -0.00327124237, 0.00752807222, 0.0224869549, 0.00652303221, -0.00781985838, -0.00922691356, -0.00802735, 0.00699637365, 0.0140575888, -0.00934362784, 0.0183111764, 0.00643549673, -0.00400719093, 0.0226555429, 0.0056022862, -0.0028627424, -0.00811812747, 0.000856715371, 0.00486633787, -0.0125532709, -0.0174034, 0.0216699541, -0.0297751147, -0.0044416273, 0.00599781796, -0.00487282174, 0.0161195416, 0.0226685107, -0.00703527872, 0.0187910013, 0.0122614857, -0.0139019694, 0.0172348116, 0.0149134938, -0.00334905204, -0.00132438308, 0.00575790554, 0.000305969763, -0.0016283266, -0.00247693667, 0.0271814633, -0.0145633509, 0.0202953201, -0.00691856444, 0.0101346914, 0.0271036532, 0.0161714144, -0.0160676688, -0.0299307331, 0.00135761418, -0.0143428901, -0.00399422273, 0.00781337358, 0.00573521107, -0.00362462737, -0.0237319078, 0.0111008268, -0.0197506528, -0.0096029928, -0.00710660405, 0.00829968322, -0.00809867587, -0.00150107557, 0.00219811918, -0.0171310659, -0.0148875574, 0.00254988321, -0.00449998444, 0.00676294509, -0.00700934185, 0.00258554588, -0.00497332588, -0.0248601455, -0.0212549698, -0.0252491925, -0.0325243846, 0.0170921609, 0.0116325254, -0.00916855689, 0.0108738821, -0.0197117478, -0.0107571678, 0.00956408866, 0.0128645096, 0.0161714144, -0.00638038153, 0.0104848342, -0.0104459301, -0.003255032, -0.00188526011, 0.0295416862, 0.00544342538, 0.0151469223, 0.00836452469, 0.00563470693, -0.00594918709, 0.000549935095, -0.00333608361, -0.00203277403, -0.00822187401, 0.0113277715, -0.00829319935, -0.00746971508, 0.0072038658, -0.0159768909, 0.000126845742, -0.0124041364, 0.0122744534, 0.00307833962, -0.0254307482, -0.00769666, -0.0052456595, 0.0218515098, -0.00809867587, -0.0256771464, -0.0218255743, -0.0154192559, 0.0088313818, -0.00151485438, 0.00213814108, 0.00918152463, 0.0107377153, -0.00113310129, -0.00949924719, -0.00379645685, 0.0181944631, 0.00394883379, 0.0134351123, 0.00190633349, 0.00220622448, 0.0153933195, -0.00737245334, -0.0130266128, 0.00906481, 0.0121512553, -0.00995313562, -0.00666568335, 0.00523269083, -0.0192578584, 0.00217866688, 0.0205806214, -0.0303716548, -0.00367974234, -0.0288932733, 0.0106080333, 0.0161325093, 0.0160547, 0.0127348267, -0.0169365406, -0.0289192088, -0.0154062873, 0.0103875725, 0.00949924719, -2.56199037e-05, -0.0023602224, 0.0187520981, -0.0255604312, -0.00510300836, 0.00990774669, 0.0188947488, 0.0314609893, 0.00556338159, 0.000350548158, -0.00317073846, -0.00993368402, -0.0151080173, 0.0145763187, 0.00226944475, 0.0155359702, 0.00586813549, -0.00942143705, -0.00196631183, -0.00217218278, -0.0117103346, 0.0032988, -0.00936308, 0.0265849233, -0.0227981936, -0.0345214941, -0.00034791397, 0.00556013966, -0.00464911945, 0.0187261607, 0.000613155309, 0.00769017544, -0.0179610346, -0.0159639232, 0.0036765004, -0.0106469374, -0.0211512242, -0.00215921458, 0.00043322079, -0.00117119553, -0.00617937371, 0.00157483248, 0.00728815934, 0.0262866542, -0.00351439719, -0.00491821067, -0.0024428952, 0.0150561444, 0.0101995328, 0.0191541128, -0.00957705639, -0.012592176, 0.008007898, -0.0171959065, 0.0300085433, 0.0106988102, -0.000933714386, 0.00226620259, -0.0101152388, -0.0121836755, -0.0145503823, -0.0076577547, 0.00159347442, 0.00990126282, -0.000130695698, -0.00635768706, -0.0032096433, -0.0132535566, -0.0130266128, 0.0092463661, -0.0202693827, 0.00801438186, -0.0036149011, -0.0239912719, 0.00359220663, 0.0052456595, -0.00312859169, -0.0109516913, 0.0122290645, -0.00588758802, -0.0059913341, 0.00433139736, -0.0116195567, 0.00698989, -0.0144207, -0.00214948831, 0.0121577391, 0.0105691282, -0.0177405737, 0.0205806214, -0.0156137794, -0.0166512392, 0.0203471929, -0.0275964476, -0.0160547, 0.00616316358, -0.0101606278, -0.0310978759, -0.00460048858, 0.00474962359, 0.00395856, 0.0161454771, -0.00316587533, 0.0389047675, 0.00652303221, -0.00203925814, 0.024665622, 0.0154581601, 0.0146022551, 0.0143299224, 0.00818296894, 0.0109387236, -0.0101671126, 0.00480798073, 0.00115417468, -0.00123603689, -0.0118918903, 0.00679536583, -0.0110554378, 0.000158557188, -0.000584382, -0.00384184555, 0.0190244298, -0.0211123191, 0.0162232872, -0.00406554807, 0.0294120032, 0.00646143313, 0.00134626706, 0.0256382413, 0.00693801651, -0.00104232354, -0.0113796443, -0.0177665092, -0.0239523668, -0.00370892114, -0.011950247, 0.00758642936, -0.0296973046, -0.0261958763, 0.0363370515, 0.0115352627, -0.0105626443, 0.000956408854, -0.00837100856, 0.0134610487, 0.0145503823, -0.0167031121, 0.0032761055, -0.0139279058, -0.014731938, -0.0192837957, -0.00979103241, -0.00375106791, 0.0205676537, 0.0164567158, 0.00813758, 0.0131822312, 0.0251973197, 0.0197376851, 0.0142650809, 0.000540208886, -0.000452267908, 0.0020684367, -0.0176757313, -0.00552447699, 0.00376727828, 0.00824781, -0.0199840814, -0.0167290494, -0.00997907203, 0.0264682099, -0.0165993664, 0.00925285, -0.00436381809, 0.0134351123, -0.00116390095, -0.00164615794, -0.00735948468, -0.0109776277, -0.0145114781, 0.0156137794, 0.00828671549, 0.0193356685, -0.0118983742, -0.00611777464, 0.00374782574, 0.0056833378, 0.0103097633, 0.00743081048, -0.0123003898, 0.0107377153, 0.0229408443, 0.00364732184, -0.0016615577, 0.0052035125, 0.0243154783, -0.0107766204, -0.0132146524, -0.0310200676, -0.001065018, 0.00565415947, 0.00811812747, -0.02141059, 0.00404609554, -0.00205384754, -0.000736353744, 0.020982638, -0.0156656522, -0.0111137945, 0.0364407972, 0.018713193, 0.00198576413, 0.00108933344, 0.00787821505, -0.0168976374, 0.0131433271, -0.00229213922, 0.0155619066, -0.00434760749, -0.00363435363, 0.000194017251, 0.0076447865, -0.0182593036, 0.0191411451, 0.0101217236, -0.00911668316, 0.0068861437, 0.0173126217, 0.0310460031, 0.00133897236, -0.00296810945, -0.0131562948, -0.00582598848, -0.0167290494, 0.00970025454, -0.00529429037, -0.0253010653, 0.000349940266, -0.00692504831, -0.00209437334, -0.00225971849, -0.00337823061, 0.00665271515, 0.00865631085, -0.0182722714, 0.00957705639, -0.00112661719, 0.00728815934, 0.0145503823, 0.013188716, 0.0302679073, 0.00859146938, -0.0177405737, -9.99214171e-06, -0.0104783503, 0.00477556, -0.00824781, 0.017948065, 0.00848123897, 0.0141872717, -0.00905184262, 0.018155558, -0.0295676216, -0.0227592885, 0.00652303221, -0.000756211404, 0.00840991363, 0.000565740163, -0.00368622667, 0.0100179771, 0.0145114781, 0.0028141113, -0.0161454771, -0.0283745434, -0.0166642088, 0.0100114932, -0.0179091599, 0.022357272, 0.000314074947, -0.0039909808, 0.0346252434, -0.0185057, -0.0163529702, -0.0229278747, -0.011476906, -0.00756697683, -0.0199581441, -0.0232261457, 0.013876033, -0.0280114319, 0.000637876044, 0.0180388428, 0.0155100338, -0.00484040147, 0.00341713522, 0.00736596901, -0.00948627852, 0.0209177956, 0.012332811, 0.00940198544, -0.0164567158, -0.0117816599, -0.00805328693, -0.00459076231, 0.00747619942, 0.0155230016, 0.0134351123, 0.00274927, -0.0185057, 0.0102903107, -0.0106015485, -0.0122160967, 0.00315128616, 0.00433463929, -0.0192059856, -0.00308806589, -0.0032355797, -0.00180745055, -0.00874708779, -0.000898862199, -0.000884272915, 0.0133443344, 0.00432815542, -0.0172866844, -0.0185575727, 0.0112823825, -0.0203601606, -0.00124981557, -0.00395207573, -0.00212193071, -0.00739838975, -0.0171440337, -0.000776474306, -0.010407025, 0.00384508772, -0.0166512392, -0.00579356821, -0.000561687571, 0.0089156758, 0.000810921192, -0.00608859584, -0.0230316222, 0.0097132232, -0.0275186375, -0.00197928, -0.0128256045, 0.0158212706, 0.00713254046, -0.000242749535, 8.83969e-05, 0.000638281344, 0.0139668109, 0.00438002823, -0.016015796, -0.00868873112, -0.011476906, 0.00414335774, 0.0149394302, 0.00212355191, 0.0198154934, 0.00572548481, 0.00154727499, -0.0273630191, 0.00347549235, -0.0114833899, -0.0052683535, 0.0185575727, -0.00564767513, 0.0224869549, 0.00752807222, -0.00663002068, -0.00721035, 0.00820242148, 0.000784984732, 0.02141059, -0.00603672303, -0.00970025454, 0.0317722261, 0.0256382413, -0.0036765004, 0.0140964938, 0.0197506528, -0.00041235, -0.0270258449, 0.00718441326, 0.0175849535, 0.0204639062, -0.0118854064, 0.00734003261, 0.019867368, 0.0279595591, 0.00940846931, -0.0181036852, 0.0106404535, -0.001247384, 0.0040428536, -0.00427628215, 0.00126683642, -0.0139927473, 0.0010439445, 0.0019938692, 0.0232520811, 0.0240561143, -0.0134351123, 0.00738542154, 0.0246785898, -0.0211252887, -0.00982345361, -0.00304591889, 0.00861740578, -0.00139570853, -0.0040007066, -0.0148227159, -0.0228241291, 0.0117168184, 0.00506086182, 0.00348197646, -0.0184927322, -0.0216180813, -0.00167452602, 0.00612750044, -0.00283356383, -0.0186872557, 0.0122550009, -0.0209437329, -0.00718441326, 0.000294622558, -0.000281654298, -0.00794954, -0.00154970656, 0.0277780034, -0.00829968322, 0.026377432, 0.00275413319, 0.00497332588, 0.00201007957, 0.00554392906, -0.0152506679, -0.0258976053, -0.0043897545, 0.02364113, -0.0106274849, 0.0283486061, -0.0236670654, 0.0164307803, 0.00689262757, 0.00520675443, 0.00446108, -0.0168457646, -0.000845368137, -0.00973916, 0.0160417315, 0.00795602426, -0.00660408381, 0.0151339537, -0.00771611184, -0.00798196159, 0.00761885, -0.00238615903, -0.00840343, -0.0100503983, -0.0144596044, -0.00861092191, -0.0178054143, 0.00168425217, 0.0265849233, -0.0109841125, -0.00235373829, -0.0276223831, -0.0141224302, 0.0178443193, 0.0283745434, -0.0150042716, -0.0260143206, -0.00508679822, -0.0173126217, 0.00822187401, 0.0203212555, -0.0076836911, 0.00296324631, -0.0124041364, 0.0112758977, 0.00901293755, 0.00252556778, 0.0131109059, -0.00446108, -0.0222535264, -0.0159250181, 0.00272333366, -0.00463939318, -0.0125338184, -0.00737893721, -0.0105820959, -0.0210345108, -0.00755400863, -0.0232002083, -0.0168457646, 0.00182203983, 0.0108998185, -0.0139797796, -0.0155230016, -0.0164956208, -0.0452592112, 0.00973267574, -0.00124900509, -0.0341583863, 0.00986235775, 0.0108025568, -0.0271295905, 0.000319140672, 0.0109127872, 0.00827374682, -0.0220330656, 0.0059913341, 0.00235211733, -0.00339768291, 0.000136977193, -0.00669161975, -0.0217347965, 0.000609102717, -0.00739190541, 0.0219422877, 0.00370567897, -0.0173644945, 0.0175979231, -0.00997907203, 0.0163010973, -0.0153155094, 0.00206681574, -0.000311846, -0.00555365533, 0.0140186837, -0.00933714397, 0.010834977, -0.0160287637, -0.000986398, 0.00663974695, -0.0117427548, 0.00742432615, -0.00364732184, 0.0169495102, -0.00411742087, -0.00221432955, -0.00219974038, 0.0369076543, -0.0169884153, -0.00484040147, 0.00989477895, -0.00495387334, -0.011178636, 0.0088832546, 0.0139797796, 0.0136555731, 0.00892216, 0.0013835507, 0.00554068713, -0.00349170272, 0.00129115197, -0.0126829538, 0.00289678411, 0.0163789056, -0.023083495, 0.00387102412, -0.0182593036, 0.0183371138, 0.01627516, 0.00186418672, 0.0213587172, 0.0125727234, 0.000406676379, 0.0269220974, 0.000336364115, 0.0161584467, -0.00728167547, 0.0076836911, -0.00217218278, -0.0189466216, 0.0208529551, 0.00365380594, 0.0240172092, -0.00648736954, 0.00970025454, 0.00783282612, 0.00830616709, -0.0153414458, 0.0337174647, 0.00988181, 0.0276483204, -0.0035889647, 0.00472692912, 0.0240042415, 0.00839694496, 0.0330949873, -0.0340805762, -0.00189012324, -0.00547260372, 0.000526835385, 0.0179610346, 0.00425034575, 0.00899348501, -0.0180129074, 0.00574169494, -0.00770314364, -0.0269739702, 0.0138111915, 0.0202693827, 0.0217347965, -0.00424386142, -0.00759939756, -0.0210863836, -0.0284004789, 0.00520675443, 0.00755400863, -0.000255312538, -0.00571575854, 0.0127477953, 0.0194523837, 0.0106923264, 0.00734003261, 0.00105691282, -0.00274440693, -0.0219941605, 0.00377700431, -0.0190763045, -0.000289759453, -0.000901293766, 0.00588758802, -0.00109581754, 0.0103810886, 0.00485336967, 0.0212290343, 0.00542073091, 0.0161454771, 0.0174552724, -0.00219325628, -0.0250806063, 0.00425682962, 0.00802086573, 0.00781337358, -0.0152247315, 0.00105691282, -0.0105950646, -0.0279336218, -0.0288932733, -0.0144596044, 0.0102643743, 0.00334256771, 0.0169754457, 0.0145633509, 0.0056022862, 0.00690559577, -0.00633175066, -0.0150950495, -0.00280438527, 0.0300344788, -0.0100763347, 0.0113407392, -0.000984776882, 0.00342686148, -0.000524403818, -0.02535294, 0.00538831, -0.0028027643, 0.00459724665, -0.00399746466, -0.0194653515, 0.0263514947, 0.0143947639, -0.000716090843, -0.000486714824, -0.0105820959, -0.0141483666, 0.00115579576, 0.00900645368, 0.00371864717, -0.0088313818, -0.00107798621, 0.00801438186, 0.00904535782, 0.0028287007, -0.0145892873, -0.012546787, 0.00296486728, -0.00613074284, -0.005589318, -0.00378348841, 0.0259105749, -0.0108738821, 0.00661381, 0.0259883832, 0.0060561751, 0.0258587, -0.00150674919, 0.00804031827, 0.00324044283, 0.0208659228, 0.000485093798, -0.00367325824, 0.00700285798, 0.00381266698, 0.0127607631, 0.0135907317, 0.0106728738, 0.00140867673, -0.0181685258, -0.011522295, -0.00982993748, -0.00155781163, -0.0185316373, 0.0226425733, -0.012890446, -0.00807922333, -0.00793008786, 0.00621827831, 0.0151339537, 0.00152377, 0.0185705423, -0.00334580988, -0.0170791931, -0.00452592131, 0.0161973517, 0.0125143668, -0.0163789056, -0.0209567, 0.00444811163, -0.0116973659, -0.00756049296, -0.000228565506, -0.00780040538, 0.0284264162, -0.00748916762, -0.00700934185, 0.00313831773, -0.00647440134, 0.0199581441, 0.0100050094, -0.000225931319, 0.0195431616, 0.0140446201, 0.0145892873, -0.0149783352, 0.0167160816, -0.0254307482, -0.0207881127, -0.0036149011, -0.0051905443, -0.00590055622, 0.0168717, -0.00784579478, 0.0185835101, 0.00484040147, -0.0172348116, 0.00955112, 0.00737245334, -0.000263012422, -0.0144077316, 0.0096029928, -0.0172996521, 0.00725573907, 0.00336850435, -0.0168587323, -0.00791712, -0.00769017544, 0.0238226857, 0.00970025454, 0.00442217523, -0.0193486363, 0.00752807222, 0.0188817792, -0.00603348063, -0.00388399255, -0.00490848487, -0.0191670805, -0.00791712, -0.00778743718, -0.00635768706, -0.016573431, 0.0168717, 0.0263644625, -0.0106663899, 0.00742432615, 0.00860443711, -0.0167420171, 0.0048144646, -0.0249638911, 0.00554717099, 0.00925933477, 0.00674997689, -0.0142002394, -0.00511921896, -0.0128645096, 0.00168587314, 0.0168717, 0.00807273854, 0.00216245651, -0.00455509964, -0.00474638166, 0.00927878637, -0.0103681199, 0.0114380009, -0.00556662353, 0.0160936043, -0.0207492094, 0.0208918601, 0.0219811928, -0.00748916762, -0.0128709935, 0.00291299424, -0.000242344278, -0.0178572871, 0.00133816188, -0.00349170272, -0.00134302489, 0.0264552403, -0.0170532558, 0.00284491107, 0.0223443042, -0.00149215991, -0.0123587474, -0.00171180966, -0.0237319078, 0.00577735761, -0.00496359961, 0.0334321633, -0.001600769, 0.0222535264, -0.0162362549, 0.00064638647, 0.00174585136, -0.0111332471, -0.0101346914, -0.0160417315, 0.0040007066, 0.042873051, 0.0157693978, 0.00239588507, 0.00381590915, -0.0117297871, -0.000806463358, -0.000169093895, 0.0081116436, 0.00934362784, -0.0116973659, -0.0171829388, -0.0359480046, 0.000716090843, 0.00765127083, 0.0187780336, 0.0040169172, 0.0335618444, -0.00613398477, 0.00125711027, 0.0179350972, -0.027752066, -0.0198025256, 0.0446108, -0.00966783427, 0.0114250332, -0.00473341299, -0.00197603786, 0.0285820346, 0.00622476265, 0.00611777464, -0.0382822901, 0.00497981, 0.002794659, -0.0130460644, 0.010536707, 0.0139149381, -0.0111332471, 0.00573196867, 0.0080857072, 0.0164307803, -0.00195658556, 0.00365056377, -0.0114574535, -0.0296713691, -0.00530725857, 0.013318398, 0.00766423903, -0.00149378087, -0.00625394098, -0.0163789056, -0.0114185484, 0.0221238434, 0.0228111614, -0.00411742087, 0.00715199299, -0.00975212827, -0.004882548, 0.00018550684, -0.0103681199, 0.00827374682, 0.0147449067, 0.00608211197, -0.0104264775, 0.00161860033, -0.00870818365, 0.0121901603, -0.0254566856, -0.0252362248, -0.0178702567, -0.0171959065, -0.00114363804, -0.0052424171, -0.00864982605, 0.00694450084, -0.00477556, 0.0215143356, 0.0269739702, -0.00676294509, 0.00259689311, -0.00654572668, -0.0301122889, -0.0150691131, 0.00848772284, -0.0118270488, 0.00290488917, 0.0271295905, -0.0224999227, 0.000219447189, 0.00217704591, -0.0096289292, -0.0109127872, -0.00899348501, 0.00563794887, -0.0174682401, -0.00485012727, 0.00210247841, -0.000775258522, -0.0198543984, -0.0114185484, 0.0110813743, 0.004817707, 0.0145892873, 0.0109387236, 0.00899996888, -0.0133962082, -0.00120361615, 0.00588110369, -0.0126375649, 0.0249509234, -0.0068018497, -0.00903887395, -0.0208788905, -0.00634471886, 0.00822187401, 0.005589318, 0.00796899293, 0.0113212867, 0.000687317515, 0.00894809607, -0.00235211733, 0.00452592131, -0.0019744169, -0.00310103409, 0.0131757474, -0.0180907156, 0.00824781, -0.0231094304, 0.0104005411, 0.0162232872, 0.0192837957, 0.00267956569, -0.000236873282, 0.0035889647, 0.00209599431, 0.0168846678, -0.00737245334, 0.0169624779, -0.0134869851, -0.0206195265, 0.0100309458, -0.00177502993, -0.00254988321, -0.00901942141, -0.0013843613, 0.00997907203, 0.0128126359, -0.0014111083, 0.030190099, -0.0102903107, -0.000307793438, 0.00305564515, -0.00959002506, -0.0173255894, 0.0044027227, 0.0056574014, 0.0154970651, -0.0289710816, 0.011820565, 0.00258554588, -0.00722331833, -0.00348197646, 0.00835804082, -0.018155558, 0.0286339074, -0.0272333361, -0.00102125015, -0.00153025414, 0.019828463, -0.0169495102, 0.0123263272, -0.0140186837, -0.0142780496, 0.00842936616, 0.026338527, -0.0147967795, 0.0100114932, -0.00068893854, 0.0271036532, 0.0126959216, 0.0198543984, -0.0174812078, 0.0146152237, 0.0270517804, -0.0065003382, 0.00220622448, 0.0135907317, 0.0131433271, 0.0024072323, 0.00472692912, 0.0129293501, -0.000911019917, 0.0250417013, 0.00252718874, 0.00860443711, -0.020256415, -0.011775176, -0.00725573907, -0.00455834158, 0.010919271, -0.00862389, -0.0132470727, -0.0174682401, -0.00686669117, 0.0313313045, 0.0105950646, -0.0072427704, 0.0154192559, -0.0221238434, 0.0118140802, -0.00843585, -0.017948065, -0.00523269083, 0.00665271515, -0.0172866844, 0.0102449218, -0.012631081, -0.0123392949, -0.00499277841, 0.0154062873, -0.0397087969, -0.0320056528, 0.00262282975, 0.000193105428, -0.0165863987, -0.00783931, -0.00554068713]
06 Jan, 2025
Computer Networks – GATE CSE Previous Year Questions 06 Jan, 2025 In this article, we are mainly focusing on the Computer Networks GATE Questions that are asked in Previous Years with their solutions, and where an explanation is required, we have also provided the reason. Topic Wise Quizzes to Practice Previous Year Questions Data Link Layer Network Layer IP Addressing Transport Layer Application Layer Network Security Misc Computer Network Topics Below mentioned are the links to the Computer Networks PYQ’s pages. On each page, you will get the questions asked in CN along with the years asked. GATE CN Previous Year Questions Computer Networks | Set 1, 2 Computer Networks | Set 3 Computer Networks | Set 4 Computer Networks | Set 5 Computer Networks | Set 6 Computer Networks | Set 7 Computer Networks | Set 8 Computer Networks | Set 9 Computer Networks | Set 10 GATE CSE Previous Year Question Papers These previous year’s questions help you understand the question patterns followed by GATE that directly help a candidate in scoring good marks in GATE. Below is the links to year-wise GATE Previous Question Papers. GATE CSE Previous Year Question Papers These GATE CSE question papers span over 15 years, along with their official answer keys. We’ve also provided Quiz tests to help you practice key topics, improve speed, track your progress, and build confidence for the GATE exam 2025. These previous year’s questions help you in understanding the question patterns followed by GATE that directly help a candidate in scoring good marks in GATE. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions
https://www.geeksforgeeks.org/computer-networks-gate-questions?ref=asr10
PHP
Computer Networks – GATE CSE Previous Year Questions
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0668203235, 0.0180304851, -0.0163174644, 0.0243324023, 0.0521658696, 0.020168636, 0.0132290246, 0.0562171, -0.0241823569, -0.00995302759, -0.0123475064, -0.056317132, 0.0128664142, -0.0144794043, -0.0274083372, -0.0195934605, 0.00656449702, 0.00253202021, -0.0225818697, -0.0490399189, 0.0199310631, -0.0137791913, -0.00676455768, -0.0112159122, -0.0278084595, 0.0214315187, 0.0112096602, -0.0125788264, -0.0329600275, 0.029784061, 0.00401059492, 0.0258328579, 0.00815873221, -0.0378115028, -0.0404122919, -0.0191433225, -0.0205687564, 0.00672079436, -0.0287337415, -0.00386367529, -0.0306843333, 0.00899648666, 0.0414126, -0.0101780966, -0.00192871166, -0.00205374975, 0.000428255269, -0.0170801952, 0.0214690305, -0.0382116251, -0.00956541, -0.00487648323, 0.0325098895, -0.00315721054, 0.0110533629, 0.0345605128, 0.0429130532, 0.029108854, 0.0093215853, -0.013154001, 0.0518157631, 0.0357608795, -0.0240698215, -0.0375114121, 0.0108470498, 0.0213940088, -0.0461390354, 0.00790240429, 0.0145794349, -0.0135791311, -0.0651698261, 0.0013590072, -0.0367611833, -0.0249325838, 0.00492649851, 0.01923085, -0.00783988461, 0.0546666309, 0.0243324023, 0.0140417712, -0.0482396744, 0.0256327968, 0.00199591974, 0.0198310334, 0.0470893234, -0.0130414674, -0.00699587818, -0.059368059, 0.0362110138, -0.00665827561, 0.0188182238, 0.0543165244, 0.00140745938, -0.0550667495, -0.0175803471, -0.0046701706, 0.0374613963, -0.00430443417, -0.0262079723, 0.0353607573, 0.0252201725, -0.0388868302, 0.0199060552, 0.00311969896, 0.00994677562, -0.00200060848, -0.0650197789, 0.0311344713, -0.013854214, 0.0227694269, -0.00100030424, 0.00580489077, -0.0205437485, 0.0336602405, -0.000550558092, -0.0288337711, -0.0327349566, -0.0482646823, -0.012891422, 0.00498276576, 0.0205687564, -0.027458353, -0.0293839388, 0.0428630374, -0.0466141813, 0.0347605757, -0.00337602687, 0.0163924862, -0.0263580177, -0.0187807139, -0.0141418017, -0.00811496843, -0.0333601497, -0.0093215853, 0.0292088855, -0.0124537889, 0.0176553708, 0.0190933086, 0.0190808047, -0.0581176803, 0.0224068165, -0.00154109381, 0.0354607888, -0.00603621127, -0.0102406153, 0.0121724531, 0.0353357494, 0.0284336489, -0.0259078816, 0.00444822805, -0.013141498, -0.00881518144, 0.00950289052, 0.0124100251, -0.0290588401, -0.0348606035, 0.0190307889, 0.0209438708, -0.00726471, -0.0196184684, 0.016429998, -0.030484274, 0.00768983923, -0.0224443283, -0.0110658659, 0.0115910256, 0.0476645, 0.00589866936, -0.0487148203, 0.0207688175, 0.0181555226, -0.0104781874, 0.00266018417, 0.0500902385, 0.00134806638, 0.00827126577, -0.0133540621, 0.00807745755, 0.0247700345, 0.0122412238, -0.0282585956, -0.0196559802, -0.030734349, 0.0259829033, 0.00864638, -0.00571423816, 0.0235196538, -0.0313845463, -0.0105031952, 0.00030087278, -0.0514156409, -0.000343854597, 0.0307593569, 0.00495463237, 0.0350356586, -0.0302842129, -0.027008215, 0.0371362977, -0.0241073333, -0.0143793738, -0.00435444945, -0.0178804398, -0.0185681488, -0.0210939161, 0.00238510058, -0.00550167356, -0.03050928, 0.00819624308, -0.000110482826, -0.024169853, -0.067120418, -0.0318847, 0.00485460181, -0.0302091893, -0.00153718633, -0.00771484664, -0.0228694566, -0.0218941607, -0.0181430187, -0.012203712, 0.0150670838, 0.0421128124, 0.0100030433, 0.0327599645, -0.0442134514, -0.0610185601, -0.0041325069, -0.0474894457, -0.0388618223, -0.0309844259, -0.00250076083, 0.0273083076, 0.00693961093, -0.0210814122, -0.0111033777, 0.0134290848, -0.0130414674, 0.028858779, -0.00889020413, -0.00314158062, -0.0116410414, -0.0268831775, -0.0162174329, -0.0113972174, -0.0214690305, 0.0180679969, -0.0122349719, 0.0503903292, -0.0225193501, 0.000244996394, 0.011034607, -0.00299622398, 0.00613624183, 0.0457889289, -0.0250576232, -0.0236446932, 0.00186462968, -0.000232101855, -0.0150670838, 0.0129664447, -0.0252701864, 0.0126100862, -0.0136541538, 0.0123412544, -0.015017068, -0.00394807616, 0.016192425, 0.0174553096, 0.024382418, -0.0483397059, 0.0543165244, -0.0195809565, 0.0199810788, 0.0237697307, 0.0038011563, -0.0312345, -0.00371675566, -0.024169853, 0.01525464, 0.00920905173, -0.0253076982, -0.0626690611, 0.00309938029, -0.0470893234, -0.0176928826, -0.0251326449, -0.0293839388, 0.00623627193, -0.0475144535, -0.0197935216, -0.00119723915, 0.00572986808, -0.0208813529, -0.000473190827, 0.0105844699, 0.0274083372, -0.0225443579, -0.00132071425, 0.0393369645, -0.00565797137, -0.0166300591, 0.00711466419, -0.00217409874, 0.0102906302, -0.0445135422, -0.0200811084, 0.0115535147, -0.00420440407, -0.00929657836, -0.0238322504, 0.00897147879, -0.0436132662, -0.0619688518, -0.0532161891, 0.0303342268, -0.0108845606, 0.0314845778, -0.0201061163, -0.00288056373, -0.0327349566, 0.0377364792, 0.0197560098, -0.0186931863, 0.07042142, 0.0277334359, -0.0149920601, 0.0436632819, 0.0303842425, -0.0224193204, -0.0178554319, -0.0121787051, -0.00718968688, -0.0287087336, -0.0110408589, 0.0457389131, -0.0220817178, -0.0446635857, 0.0447886251, 0.0391619131, 0.0321097672, -0.0222067554, -0.0287587475, -0.0025351462, 0.00663951971, -0.0503403135, -0.00359484344, -0.0237822346, -0.0246700048, 0.00730847334, 0.000756089401, 0.000797508226, 0.00516719697, 0.0321347751, 0.0199060552, 0.0154547011, -0.0157547928, -0.0395370275, 0.0101843476, -0.00484209787, -0.000652151532, 0.0293839388, -0.0146419536, 0.0137791913, 0.0575675108, -0.0549167059, -0.0327849723, 0.00541414693, -0.018755706, 0.00994677562, 0.0111408895, -0.0116660492, 0.0654699132, -0.0163049605, -0.00130899192, -0.0126163382, -0.00215065433, 0.00638319179, 0.0134791005, -0.000182965814, 0.000577519415, -0.0253827218, 0.0016786356, -0.00547041418, 0.0126225902, -0.0113034388, -0.00154109381, 0.0201311242, 0.0121599492, -0.000276060542, 0.0418377258, -0.044813633, -0.00677080965, -0.0355858244, 0.0189557672, 0.000401684694, -0.0199060552, -0.00189276331, 0.00205687573, 0.00249450887, -0.0295089763, 0.0115785226, 0.0353107415, -0.00985299703, 0.0254452396, -0.0323848501, 0.0333351418, -0.000280358712, -0.045513846, 0.00704589346, 0.000554074824, 0.00890896, 0.0240573175, 0.00818999112, -0.0150420759, 0.0325098895, 0.0413625836, -0.00258203549, 0.0493900254, 0.0724720433, 0.00750228204, 0.0234946478, 0.0523659289, 0.00477645313, -0.0111408895, 0.00764607592, 0.0209938865, -0.0201061163, 0.0219816864, 0.0289588086, 0.00572674209, 0.00533287227, 0.0156797692, 0.0147544881, 0.0053266203, 0.0162799526, -0.0880267769, 0.00194746745, 0.0211064201, -0.0310094338, 0.00944662374, -0.0102156075, 0.0108658057, -0.00238978956, -0.016642563, -0.0369862504, 0.0171802267, -0.0330350511, -0.059117984, -0.00318378094, -0.0129664447, -0.031634625, 0.00392306829, 0.0117098121, 0.0141167939, 0.0176678747, -0.0255327672, 0.0162924565, -0.00930908136, 0.0334351696, -0.0121349413, 0.0260329191, 0.0463390946, -0.00495463237, -0.00427630078, 0.0156297553, 0.00310406927, 0.00584240211, -0.0349106193, -0.00406373618, 0.0166925788, 0.0399621576, -0.0266331024, 2.20403963e-05, 0.0120849265, 0.0459389761, -0.0152921518, -0.000368471461, -0.00688959565, -0.03050928, -0.0139042297, 0.0259578954, 0.0435882583, 0.0258828737, -0.0112846829, -0.0346355364, -0.000417314441, -0.030034136, 0.0122912386, -0.00176928821, -0.0398621261, 0.0180679969, 0.0227944348, 0.01009057, -0.0309844259, -0.0279084891, -0.00937160105, -0.0174303018, 0.00907150935, -0.040137209, 0.00521721225, -0.0273833293, 0.0162674487, 0.00787739642, 0.0753229111, -0.0104906913, -0.0252326764, 0.0229319762, 0.0520658381, -0.00438258331, 0.0109158205, 0.00358233973, 0.00862762425, 0.00697087031, 0.0255202632, 0.0160923954, 0.0262079723, -0.0264330413, 0.00711466419, -0.00762732, 0.0104781874, 0.00872140285, -0.0051421891, 0.0129914517, 0.0173302721, -0.0212939773, 0.0178179201, 0.00749603, -0.0132540315, -0.0118160946, -0.00684583234, -0.0332851261, 0.0248950738, 0.0169301499, -0.026308002, -0.0385367237, 0.0107657751, -0.0175928511, -0.0189932771, -0.0251826607, 0.000703338941, 0.00806495361, 0.0326349288, -0.0167425927, -0.00715217553, -0.00493587647, 0.0264580492, 0.00874015875, -0.0246199891, 0.00336039718, -0.0171927307, 0.0411875285, 0.00892146397, 0.0022756923, -0.00117145013, -0.00905900542, 0.00111596449, 0.0357608795, -0.0132915433, -0.0180179812, 0.0115285069, -0.018530637, 0.028858779, 0.0187807139, 0.000794773048, 0.00278522237, -0.0227319151, 0.00192871166, 0.0284336489, -0.0088777, 0.0109033165, -0.01735528, -0.00053610059, -0.0136666577, 0.0206812918, -0.000701385259, 0.0351106822, 0.0177428965, 0.000785395154, -0.00840255618, 0.0126038343, 0.0220066942, -0.0282085817, 0.0290338323, -0.00221004733, 0.0082337549, 0.000139104814, -0.00619250862, 0.0155297238, 0.0113659576, 0.00238041161, -0.00829627365, 0.0165425315, -0.00441696867, -0.00590804731, 0.0023819746, 0.0215440542, -0.0158298146, -0.000299309788, 0.00712091615, -0.0200435966, 0.0364360847, 0.00805245, 0.0196309723, -0.0163799822, 0.0498901755, -0.00414813682, 0.0261079427, 0.0318847, -0.0284336489, -0.000459124043, 0.017830424, -0.0085838614, 0.0188932475, 0.0120661706, -0.0153546706, -0.0153546706, -0.0231070295, 0.0182055384, -0.00212408369, 0.0126350932, 0.0369112268, -0.0276584141, -0.00459514791, -0.00313845463, -0.0153296636, -0.000105891588, -0.00168332458, -0.0140542751, -0.0285586882, -0.0349856429, -0.0245574713, 0.0132790394, -0.00465141516, 0.0115660187, -0.040137209, -0.0134791005, -0.0425129309, 0.00393244624, -0.015729785, 0.030734349, -0.0309844259, -0.0100530582, 0.0161424112, 0.112034082, 0.00249450887, 0.0407123864, 0.0115847737, 0.020193642, -0.00204280904, 0.0243198983, 0.0325849131, 0.0073709921, 0.0060112034, 0.00439508678, -0.0292338934, -0.0190808047, 0.0239697918, -0.0285336804, -0.00793991517, 0.014541924, -0.0153171597, -0.038936846, 0.0163299683, -0.00175365841, -0.0148670226, 0.0136541538, -0.00343542, 0.0193934, -0.0272833, 0.00626440579, -0.0180054773, 0.00124647294, -0.0256578047, 0.0207438096, -0.0170801952, 0.00619250862, -0.0178429279, 0.0320347436, -0.0038480456, -0.0348355956, -0.0157547928, 0.0183305759, -0.00440133875, -0.0102843782, -0.0160923954, 0.0118786134, -0.0325849131, 0.0257328283, -0.0188057199, -0.00597681804, 0.00112534233, -0.00614249334, -0.0307843648, -0.0172552485, -0.0352607258, 0.0186806824, 0.0182930641, 0.0101218289, 0.0123037426, -0.0426629782, 0.0156797692, 0.00726471, -1.92197131e-05, -0.00433882, -0.027683422, 0.0351606943, 0.0074835266, 0.000514218933, -0.0336602405, 0.0252701864, -0.00752103794, -0.00169895426, 0.00391681632, -8.3814557e-05, 0.0175303333, 0.00884644128, 0.0111596445, -0.0173302721, 0.0251951646, -0.0148045039, 0.00655824505, 0.00336977514, -0.0242198668, -0.0189557672, -0.0236697011, -0.0132915433, -0.0134665966, 0.033560209, -0.0189182553, -0.0104969433, 0.00300403894, 0.0205937643, 0.0024741902, 0.0031447066, -0.00398246152, -0.00224443269, -0.0104906913, 0.0121161854, 0.0455388539, -0.00244918256, 0.0262329802, -0.038286645, -0.0223943125, 0.018318072, -0.00126913609, -0.0225068461, 0.0200060867, -0.0217566192, 0.00198028982, 0.00344167184, -0.00484835, 0.0245574713, 0.0197560098, -0.0373863727, -0.0227819309, -0.00609873, 0.0298340749, -0.00994052365, -0.0195434447, 0.0210313983, 0.00808370952, 0.0694711357, 0.00979673, -0.00144262635, 0.0115847737, -0.00293526798, -0.0625690371, 0.00468580052, 0.0182180423, -0.000960448408, -0.0139042297, 0.00928407442, 0.0191183165, 0.0156797692, 0.00078266, 0.0162424408, 0.00958416518, -0.0215565581, 0.00470768195, 0.00812747236, -0.0159173422, 0.0191308204, 0.021831641, 0.0296090078, 0.00366986636, -0.0332351103, 0.03050928, -0.00339790853, 0.016417494, 0.0296340138, -0.0327599645, 0.0176803786, -0.00998428743, 0.0103468979, 0.0203436892, -0.0274083372, -0.0231195334, 0.0083462894, -0.014792, -0.0163674783, 0.046714209, -0.00229444797, 0.0393869802, 0.0188307278, -0.0146919694, -0.00803369377, -0.0345605128, -0.0397370867, -0.034010347, -0.0206812918, 0.0044857394, -0.0249826, -0.0091027692, 0.00361359934, 0.0134040779, -0.00260235416, 0.00106594921, -0.00592680275, -0.0259328894, -0.0308343805, -0.00527035305, -0.00392306829, 0.00154890865, -0.0203561932, -0.0159673579, 0.00772735057, 0.0179929733, -0.0234821439, 0.0225943737, 0.0394870117, -0.0211689398, 0.00414188486, -0.0180179812, 0.00433256803, 0.00193652662, -0.00666452711, -0.0197059941, 0.00691460352, 0.00677706162, -0.0064019477, 0.000186287143, 0.0186931863, 0.00852134265, -0.0132665355, -0.0325599052, 0.0218441449, -0.000604480738, -0.00683958037, 0.0113409497, 0.0111346375, -0.00632067258, 0.0370862819, -0.0231070295, 0.0016020498, -0.00124334695, 0.0186306667, 0.0140292672, -0.00342916814, -0.011728568, -0.0383116528, 0.00359796942, 0.0149920601, -0.0119036213, 0.0305843037, 0.0116347894, -0.00646446645, 0.0106469886, -0.0255952869, 0.00111127552, -0.0372863412, -0.0175303333, -0.0172802564, -0.0126163382, 0.000579863903, 0.0127038648, -0.000913559168, 0.0160423797, 0.0228694566, 0.0121161854, -0.00846507493, 0.0269331932, 0.0114284763, -0.0416626744, 0.0142168244, 0.0108533017, -0.0145919388, -0.0196684822, -0.0273333155, 0.0100092944, -0.0292839073, -0.0142168244, 0.0158048086, -0.0292589013, -0.0127788875, 0.00190057815, -0.000255937222, -0.0210689083, -0.0267831478, -0.00150905282, 0.012903925, -0.00884018932, 0.00800243393, -0.0103781568, -0.0328850038, 0.00729596941, -0.0353607573, -0.00919654779, 0.0075835567, -0.0115410108, -0.0205312464, -0.00777111389, 0.034510497, -0.0109533323, 0.0125663225, 0.00430756, 0.0625690371, -0.00847757887, -0.0246950127, 0.0199060552, 0.0298590828, 0.0147544881, 0.024870066, -0.00301185367, 0.0271332543, 0.0101468368, 0.0123600103, -0.0140417712, -0.0101218289, -0.0056517194, 0.00465141516, -0.00542352488, 0.0115785226, -0.00150514534, -0.0032040996, -0.011028355, 0.00762106851, -0.00683958037, -0.00740850344, -0.041087497, -0.00487960922, -0.0100655621, 0.00850883871, 0.0369362347, 0.0276584141, 0.0012832029, 0.016167419, 0.026983209, 0.00420440407, 0.000965918822, 0.000427864521, 0.00461077737, -0.00621751649, 0.0127476277, -0.011959888, -0.00595181063, -0.0287587475, -0.0213064812, -0.0616187453, -0.00606434466, 0.0163674783, 0.0440634042, 0.0121286893, -0.0253577139, -0.0010979902, 0.00247887918, 0.00365423667, 0.0111846523, -0.0264580492, 0.00774610648, -0.0209438708, 0.00477332715, -0.0233696084, 0.0406123549, 0.00939035695, 3.27736416e-05, -0.0127913915, 0.0257078204, -0.0252451804, 0.015017068, 0.0120974304, 0.00662701577, -0.0102031035, -0.0134916045, 0.0152171291, 0.0327599645, -0.00888395216, -0.0266581085, -0.00667703105, 0.00715217553, -0.00307749864, -0.0130789783, -0.0104344245, -0.00480458653, -0.00450762128, -0.0132540315, 0.0255202632, 0.0405623391, 0.00687709218, -0.0231445413, -0.0290338323, -0.0342354141, -7.69765393e-05, -0.00563608948, 0.0492649861, -0.0049765138, 0.0370112583, 0.0327849723, -0.00770234317, 0.0187432021, -0.00357296178, -0.00942161586, -0.0321097672, -0.0162674487, -0.0226068776, 0.0225818697, 0.0291588698, -0.0427129939, 0.0421628244, -0.0127038648, 0.00246793823, -0.017130211, -0.00740225194, -0.0278334673, -0.0223442968, 0.0161174033, 0.0128414063, 0.0111408895, -0.0039668316, -0.0144168856, 0.0196059644, -0.00464828918, -0.00884644128, -0.0078899, -0.0139417406, -0.00559857814, -0.0165800434, -0.00122928014, -0.0364610925, 0.000789693324, 0.00884018932, 0.0067145424, -0.0242073648, -0.0108908126, -0.00751478598, -0.0287337415, -0.0243324023, 0.000880736683, 0.00919029582, -0.0221942514, 0.00561733358, 0.0111221336, -0.0294339545, -0.0158048086, -0.00403560279, -0.0118786134, 0.0408124141, 0.00700838212, 0.0248450581, 0.00603933726, -0.00763357198, -0.0106344847, -0.000709200103, 0.016429998, 0.00288212672, -0.0106845, 0.0130539713, 0.0055391849, -0.00585178, -0.0113659576, -0.00992176775, 0.0169676617, -0.0126913609, 0.00556419278, -0.0115597667, 0.000187850106, 0.0171802267, -0.0262579881, -0.0190557968, 0.000521643087, 0.0113221938, 0.00554543687, -0.014792, 0.0266581085, 0.000149361847, -0.00893396791, 0.0121224374, 0.00538913952, -0.00672704633, -0.0113409497, -0.0180179812, -0.0267831478, 0.0168301202, 0.0268581696, 0.003635481, 0.0355608165, 0.02534521, -0.0170426853, 0.0778236762, -0.0254952554, -0.03521071, -0.0263580177, 0.000607216, -0.00695836684, 0.0101468368, 0.0345355049, -0.00740225194, 0.00672079436, 0.0221442357, 0.0133540621, 0.00975296646, 0.0107470192, -0.0229569841, 0.00592680275, -0.027708428, 0.0152171291, -0.00595493661, 0.0249075778, -0.0115347588, 0.0133165512, 0.00768983923, 0.00679581705, 0.0110721178, -0.00473894179, -0.00200060848, -0.0199310631, 0.0157047771, 0.0121036824, 0.0148670226, -0.00946538, -0.013841711, -0.0148670226, -0.00363860675, 0.00254608691, 0.0144293895, 0.00924031064, -0.0278834812, 0.00930908136, -0.0230695177, -0.0113722095, -0.00382616394, 0.0251951646, -0.0103468979, 0.000366908498, 0.0142918471, 0.0188807435, -0.0343604535, 0.00156688294, -0.00540164299, -0.00513593713, -0.0098780049, -0.00628003525, -0.000552121084, 0.0125350635, 0.0216190759, 0.0156297553, 0.00334164151, -0.00210845401, 0.00873390678, 0.00425441936, 0.00238822657, 0.0243574101, 0.0010378157, -0.00375739299, -0.00552042946, -0.000795554486, -0.0206312761, 0.0197685137, -0.0259578954, 0.0104844393, -0.0116285374, 0.0046701706, -0.0428630374, -0.00677706162, -0.0195309408, 0.0253577139, 0.0382366329, 0.00325724087, 0.00955290627, -0.0100593101, -0.00316189928, 0.0288837869, 0.00230226293, -0.00907150935, -0.0182805602, -0.00657074898, 0.0321847908, 0.0257578362, -0.00670829043, -0.0123162465, 0.00515156705, -0.00492337253, 0.0120224068, -0.00229913695, 0.0399371497, -6.05164569e-05, -0.00108861236, -0.00211939472, 0.00812747236, -0.000652932969, 0.00738349603, -0.0160173718, -0.00333226356, -0.0306593273, 0.0318096764, 0.0259328894, 0.00338853081, -0.0178429279, 0.0103844088, 0.00840880815, 0.00426379684, -0.0115410108, -0.0154171903, 0.00755229732, 0.0169676617, 0.00328224851, 0.010328142, 0.00293057901, -0.00481709046, 0.0102281114, -0.00107532716, 0.00373863732, -0.0156047465, -0.0113722095, -0.0151921213, 0.0123912692, -0.00204124604, -0.0207813215, -0.0254452396, 0.0169301499, 0.00819624308, 0.0248325542, -0.0431131162, 0.00402935082, -0.00846507493, 0.0192058422, 0.00891521201, -0.016204929, 0.00440759072, 0.00729596941, -0.00571423816, -0.0108282939, -0.0196434762, -0.00188182248, -0.0164675098, 0.007389748, 0.00263205077, 0.0125475666, -0.034510497, -0.0122724837, 0.0179929733, 0.00540476898, 0.0207438096, 0.00785238855, -0.00196309714, -0.00444822805, 0.026983209, -0.00230382592, 0.00508279633, -0.00492024655, 0.0143543668, 0.0103531498, 0.00458264397, -0.0335852169, 0.0129289329, -0.0176803786, 0.00175209553, -0.00571111217, -0.0184931252, 0.00265705818, -0.00990926474, 0.0111596445, -0.0107407672, 0.0111784, 0.0175178293, -0.0155047169, -0.0176303629, -0.00444822805, 0.00101124507, 0.000293839374, 0.0272582918, 0.0117973387, 0.0120036518, -0.003698, -0.0152921518, -0.00193652662, 0.00333851553, 0.0101468368, -0.00261954684, 0.0165800434, 0.0290338323, -0.0256077908, 0.0123475064, 0.0288837869, 0.00277428143, 0.0153171597, -0.0313095227, 0.00599557394, -0.0142918471, -0.0177178904, 0.0100343022, -0.00597369205, 0.0155922435, -0.0180054773, 0.0117035601, -0.0155797396, 0.0139292376, 0.00695836684, 0.00395432813, -0.0100092944, 0.00589241739, -0.0292839073, -0.00614561932, -0.00939035695, -0.00897773076, 0.00735223666, 0.00525159761, -0.000752572669, -0.00306968391, -0.00607059663, 0.00430130865, 0.00296340138, -0.00192871166, -0.0160923954, 0.010565714, 0.00735848863, 0.0195059329, 0.00352294673, -0.0104281725, 0.0173802879, 0.000644727377, 0.0166800749, -0.00141292985, -0.0225818697, 0.00628316123, -0.00464516319, -0.022981992, 0.00818373915, 0.0136291459, -0.00765858, 0.00970920362, -0.0110846218, -0.0145669309, -7.81487761e-05, -0.00613311585, -0.00240854523, -0.0158798303, 0.00991551671, 0.0212189555, -0.00548291812, 0.0164925177, 0.00146216352, 0.00568610476, -0.00188963732, -0.0203186814, 0.0116035296, -0.00100733771, -0.0364861, -0.00419502612, 0.0150420759, -0.00783988461, 0.00365111069, 0.00623002, 0.0124975517, -0.0282335877, 0.000519689347, -0.0207438096, -0.00116832415, -0.000634568045, 0.0240448136, 0.0355858244, 0.0296340138, 0.0101593407, -0.00293995673, 0.0149420453, 0.0169176459, -0.0218441449, 0.00293839397, 0.00827751774, 0.035660848, -0.00597369205, -0.0161549151, -0.032859996, -0.0185556449, -5.28481069e-05, 0.00908401329, 0.00622064248, 0.00845882297, -0.000442322053, 0.0127413757, 0.0136666577, -0.0207938254, -0.00185368885, 0.0300841518, 0.0196184684, -0.00256327982, 0.0155172199, 0.0163049605, -0.0184681173, -0.0110908737, 0.0089902347, -0.0161549151, -0.000520470843, 0.00140198902, -0.00870264694, -0.0138667179, 0.0124475369, 0.000894021941, 0.0153921824, 0.00151374168, -0.01055321, 0.0136916647, -0.00615812326, -0.0177303944, 0.00859636534, 0.00680206902, -0.00394495, 0.0164675098, -0.00144340785, -0.0114472322, 0.0447886251, -0.00711466419, 0.00210689101, -0.00763357198, 0.0138792219, 0.000214713757, -0.0337352641, -0.00691460352, 0.015267144, -0.0153921824, -0.0212939773, 0.00223036599, 0.00361672509, 0.0184681173, -0.00548916962, -0.00825876277, -0.00752729, 0.00685208431, -0.0256578047, -0.0071771834, -0.0217816252, -0.00118942431, -0.00372300763, 0.00748977857, 0.0295339841, 0.0123412544, -0.00459514791, 0.0152046252, 0.00873390678, 0.0267331321, 0.0154171903, -0.0200435966, -0.00628628721, 0.0117848348, -0.0108908126, -0.0123350024, 0.0104469275, 0.00247575319, -0.00973421149, 0.0268581696, 0.0208813529, 0.0107345153, 0.0191433225, 0.00592992874, 0.0111658964, -0.0147419842, 0.0172177367, 0.0461140275, 0.0179179497, -0.00957166124, -0.00374488928, -0.0169301499, 0.0213815048, 0.021356497, 0.00616437523, 0.0329600275, -0.0212814733, 0.00355420611, -0.0191183165, -0.0373363569, -0.00276646647, 0.000990926404, -0.0114097204, 0.00362922903, -0.0256828126, 0.0428380296, 0.0356108323, 0.00109642732, 0.0164675098, -0.00241792295, 0.0139667485, 0.0233821124, -0.0175928511, 0.0325599052, -0.0158173125, -0.0247200206, -0.0272082761, 0.00763982395, -0.00137541839, 0.0137791913, -0.0239197761, -0.00072053168, 0.00101124507, 0.0127163688, 0.0122599797, -0.0336352326, 0.0119286291, -0.0263330098, -0.0083587924, 0.00361985108, 0.00126913609, -0.0172427446, -0.0312345, 0.00143403, 0.00221942505, 0.0126976129, 0.0139917564, 0.0150045641, -0.0326599367, 0.00314626959, -0.0196559802, -0.0104844393, -0.0113034388, -0.0246074852, 0.011728568, 0.0144293895, -0.000997959869, -0.0414376035, 0.00664577167, 0.00594243268, 0.00926531851, 0.0221692435, 0.0176678747, 0.00236478192, 0.0265830867, -0.0133540621, -0.00175991037, 0.005160945, -0.0111471405, -0.00428880472, -0.00257109455, 0.00307280966, -0.0109033165, -0.0149920601, 0.0114472322, 0.0104844393, -0.000872921781, 0.00702088559, 0.0112096602, 0.00488586118, -0.000364173291, -0.0145794349, 0.0138167031, -0.0070646489, 0.00573612, -0.00941536389, 0.00707715284, -0.0385367237, 0.00594555866, 0.00435444945, 0.000712716836, 0.0224193204, 0.0215065423, 0.010328142, 0.00595181063, -0.003635481, -0.00818999112, 0.00970920362, 0.0045044953, -0.00594243268, 0.0074835266, 0.00433569402, -0.00943412, -0.016167419, -0.00357921375, 0.0246950127, 0.00540476898, 0.0134916045, 0.00675830571, 0.0185931567, -0.00536725763, 0.0314595699, -0.000846351206, 0.0645196289, -0.00160673878, 0.0346605442, 0.0202061459, -0.00529536093, -0.000730691, -0.0236196853, -0.0219941903, 0.00872140285, -0.0146544576, 0.0320347436, 0.0119161252, -0.0232695788, 0.00753979338, 0.00278991112, 0.000341510138, -0.000165870777, -0.0231820513, 0.0169926696, 0.0151045946, -0.00691460352, 0.000622064224, -0.005042159, 0.0141543057, 0.0012832029, -0.0145044122, -0.0266080946, 0.0020631277, 0.018093003, 0.00562983751, -0.0174177978, 0.0250701271, 0.00179585884, -0.0138041992, 0.0206937958, 0.0186431706, 0.00176616223, -0.00770859513, 0.00364485872, 0.0298590828, 0.00330725615, 0.00430443417, 0.0254202336, 0.0112409191, 0.0153796785, 0.00942161586, -0.00158094964, -0.0106157297, -0.00400434295, 0.0241823569, 0.00531411637, -0.0235946774, 0.0060299593, 0.00170989509, 0.0027195774, -0.0143543668, 0.0197059941, -0.0164675098, 0.0048827352, 0.00770234317, 0.00736474, -0.00491399504, 0.0191808343, 0.00470455596, -0.00191308197, -0.000412625523, -0.01594235, 0.00105110102, -0.0122787356, 0.00216003205, -0.000447792467, -0.00125897676, 0.00566422287, -0.0087839216, 0.0108970646, 0.00141058536, 0.000661920116, 0.0127476277, -0.012672605, -0.000371597416, -0.00256171683, 0.00484522386, -0.00477645313, 0.00303373532, -0.0104656834, -0.0242573787, 0.0138792219, 0.015017068, 0.0117473239, 0.0338352919, -0.00162080559, -0.00404810626, 0.0214440227, 0.00183805916, 0.0106907524, -0.00822125096, 0.000157665156, -0.0159048382, -0.0286587179, 0.0141042909, 0.0030243576, 0.0253952257, 0.00036026584, -0.0163049605, 0.0122537278, 0.0141918175, 0.018093003, -0.012916429, 0.00502027711, 8.57194318e-05, -0.0148670226, -0.0130039556, -0.0046014, -0.00674580224, 0.00459202193, -0.00391369034, -0.0249575917, 0.018055493, -0.00346042775, -0.0289087947, -0.0167676, -0.00182242936, 0.00541727291, -0.0116910562, 0.001466071, 0.0175553411, -0.00236165593, 0.00604246324, -0.020418711, -0.00554231089, 0.0124100251, 0.0106032258, 0.00780237326, -0.0105719659, -0.00203812, -0.00914028, 0.000734989182, -0.0314345621, 0.0113284457, -0.0111471405, 0.00638944376, 0.0270582307, 0.00842131209, 0.00458577, 0.0160548836, 0.00246481225, -0.0104219206, 0.00418252219, -0.0109408284, -0.0165925473, -0.00304780225, -0.0156797692, 0.00666452711, 0.00459202193, -0.00859636534, 0.0244699437, -0.00361672509, 0.0047639492, -0.009859249, -0.0171802267, -0.00427004881, -0.00701463362, 0.000182965814, -0.00202874211, -0.0119911479, 0.0279835127, 0.000994833885, 0.015954854, 0.00984674506, -0.00405435823, -0.0271082465, 0.00511718169, -0.00687709218, 0.0294589605, -0.0332851261, -0.00987175293, 0.0166800749, 0.00096826331, 0.0386867672, 0.0128289023, -0.000817436143, 0.000377458578, 0.00692085549, 0.00475769723, -0.00925281458, -0.00613936782, -0.00365423667, -0.00497026183, -0.00594868464, -0.00927157048, -0.00662701577, 0.00982799, -0.0186181627, -0.0253202021, -0.00501715112, 0.0107345153, -0.00598932197, -0.00221473631, 0.00165362807, 0.00277584442, -0.0125100557, -0.00556106679, -0.00350731681, 0.0115660187, 0.0229444802, -0.00151452317, -0.028408641, -0.0320597515, 0.0203937031, 0.0185556449, -0.0290338323, -0.00655824505, 0.0100343022, 0.0131164901, -0.0141042909, 0.00329162623, -0.0074835266, -0.0012066171, -0.0301841814, -0.0166800749, 0.00367611833, -0.0149545493, 0.020868849, 0.00521096028, 0.0125538185, 0.0145294201, 0.0116535453, -0.00286962301, 0.00602370733, -0.00490461709, -0.0259829033, -0.0111158816, -0.00770859513, 0.01923085, -0.00186775567, -0.0125725744, 0.0111346375, -0.00314626959, 0.0160423797, -0.0034635535, -0.0158173125, -0.0132415276, -0.0192808658, -0.00399809144, -0.00897773076, 0.00778361782, 0.0171177071, -0.0162424408, 0.00388555694, -1.91220279e-05, -0.0116848042, 0.0246950127, 0.0226819, -0.0103656529, 0.0178054161, -0.0215315502, -0.0102781262, -0.00864012819, 0.0117535759, -0.018543141, -0.00472956384, 0.0137041686, 0.0219066646, -0.00339478278, 0.0160298757, -0.0125913303, -0.00762732, 0.00256015384, 0.0121599492, -0.0172927603, -0.0199310631, -0.00660200836, 0.00164268725, -0.00188963732, -0.0227944348, -0.00145981903, 0.0117535759, -0.000618156802, 0.0171552189, 0.0204062071, -0.00665202364, -0.00500152167, -0.0167550966, -0.0129914517, 0.0164425019, 0.0196559802, -0.00377927464, 0.0110908737, 0.0122724837, 0.00452950271, 0.0116035296, 0.0176428668, -0.00257578352, 0.000109799024, 0.0198435355, 0.0076960912, -0.0143918777, 0.0115535147, 0.0173802879, -0.0102093555, -0.0151045946, 0.00753979338, -0.00627690926, 0.00988425687, 0.0246199891, 0.00218816567, 0.00787114445, 0.014541924, 0.000827595475, 0.0137416804, 0.0110846218, -0.00534225, -0.000442322053, 0.0045044953, 0.000658794132, -0.0166800749, 0.000675596122, 0.00577050541, -0.0144919083, 0.00299778697, 0.00425129337, 0.00567985279, 0.0201061163, 0.0167425927, -0.0250951331, -0.0213189851, -0.000953415, -0.0144043816, 0.00746477069, 0.00962167699, 0.0167175848, -0.0062894132, -0.014554427, 0.0147669921, -0.0213064812, -0.00413875887, -0.0334601775, 0.0108845606, -0.00592992874, -0.00106126035, 0.00340103451, 0.00453262869, -0.00123318762, 0.0106157297, -0.0113972174, 0.00322910724, -0.0282585956, -0.00778987, -0.0134165809, -0.00255390187, -0.0178679358, -0.0218066331, -0.028383635, 0.00711466419, 0.0230695177, -0.0174803175, 0.0110095991, -0.00416376675, -0.00560483, 0.00572674209, 0.00795867108, 0.0157547928, -0.0135041075, 0.0110971257, -0.00785864051, -0.00364485872, -0.00118551683, 0.0215440542, 0.0274083372, 0.00398871349, 0.0151170986, -0.00379490433, -0.0347355679, -0.00377927464, -0.00931533333, 0.0203937031, -0.00870264694, 0.00592055125, -0.00368862203, -0.0068270769, -0.0129914517, -0.0184181035, -0.00318065495, -0.0144168856, 0.018093003, -0.00572361611, -0.0116910562, 0.00945912767, 0.00388555694, 0.0284336489, -0.000410281064, -0.00120114663, -0.0254452396, 0.00262267282, 0.00512968563, -0.00187400752, 0.0173927899, 0.0142668402, 0.0135166114, -0.00323848519, -0.0123287505, 0.0104969433, 0.0205312464, -0.00935909711, 0.00512030767, 0.0116723, 0.00193496363, -0.00318690692, 0.0115472628, 0.0104344245, 0.000772500644, 0.0258828737, -0.00377302268, -0.00924656261, 0.0137041686, -0.00773360254, 0.000627143891, 0.00440446474, -0.0268581696, -0.00161767961, -0.0184806213, -0.0015129603, 0.0161299072, 0.0213314891, 0.000621282728, 0.00775861, -0.0283336192, -0.0100280503, 0.0108533017, 0.0116222855, -0.0110471109, -0.0130914822, 0.00796492305, -0.0109408284, -0.00533287227, 0.0184806213, 0.0381866172, 0.0306843333, -0.00188807433, 0.000622455, -0.0080461977, -0.0211064201, -0.0104531795, -0.00243042689, 0.0113472017, 0.00980298221, 0.00372925936, -0.00370112597, 0.0040793661, 0.0107657751, 0.000477879745, 0.0137791913, -0.0097467145, 0.014554427, -0.0175303333, -0.00639256975, -0.00734598469, 0.0102531193, -0.0102781262, 0.00569548272, 0.00356358406, 0.00675205374, -0.0202811696, -0.0184181035, -0.00173959171, -0.00292745302, -0.00527347904, 0.00311657297, 0.0034823094, 0.0021365874, -0.0049483804, -0.00644571101, 0.0115910256, 0.00733973272, -0.0220817178, -0.017130211, -0.0157798, -0.01055321, -0.000528676435, 0.0194809269, -0.00554856285, -0.00680206902, 0.00766483182, -0.0139042297, 0.0111346375, 0.00270863646, -0.00953415, 0.0062425239, -0.0187181942, -0.00935909711, -0.0196184684, -0.0106344847, 0.0172927603, 0.0027461478, -0.0124913, -0.0141042909, 0.00341979018, -0.0133290542, -3.61682287e-05, 0.00939035695, -0.00967794377, 0.00471393391, -0.0231695473, -0.0214815345, -0.00331975985, 0.0240573175, -0.00806495361, -0.0037417633, 0.00942161586, -0.00142152619, -0.0111846523, 0.0171177071, -0.0179304536, 0.00323535921, -0.00547666615, 0.00140120753, -0.0041262554, 0.00422003353, -0.0131665049, 0.0310344398, -0.0118723614, -0.0010979902, 0.0113972174, -0.0247325245, -0.0276334062, 0.0106407367, 0.00655199308, -0.0193558875, -0.00598307, 0.00871515088, -0.00466079265, -0.00896522682, -0.00151139731, 0.0363360532, 0.00313689164, -0.00645196252, 0.0113909654, 0.0148170069, 0.0141918175, 0.019018285, -0.00756480126, 0.0145169161, -0.00819624308, -0.000234446314, 0.0118223466, -0.00405435823, -0.00402935082, -0.00366048841, -0.00915278401, 0.00261954684, -0.00437945733, 0.0158298146, 0.0161049, -0.0152171291, 0.00708965678, -0.00986550096, 0.0385117158, 0.00461390335, 0.00176616223, 0.0141918175, 0.00153093447, 0.000817436143, 0.0127663836, 0.000264728966, -0.0109408284, -0.00457639201, -0.0015895461, 0.0145294201, -0.00551730348, -0.0268831775, 0.0351356864, 0.000110189772, -0.00416376675, -0.000251834426, 0.00622376846, -0.00178335502, 0.000277818879, -0.0229569841, -0.00176616223, -0.00783363264, -0.0080461977, 0.000273129961, -0.00512968563, -0.00698337425, 0.0146794654, 0.00468892651, 0.0131790088, 0.0139792524, 0.02863371, 0.0296590216, 0.0205812603, -0.00497964, 0.00779612176, -0.00547041418, -0.0198185295, 0.0127101168, -0.00253670919, 0.0118786134, -0.0150545798, -0.010078066, -0.013366566, 0.0270332228, 0.00160830177, 0.00818373915, 0.00236321893, 0.00697712228, 0.0119848959, 0.0201561321, -0.0136791607, -0.00860886835, 0.000381366, 0.0198685434, 0.00359796942, 0.0155172199, -0.0034635535, 0.000911996176, 0.00783988461, -0.00959666912, 0.00865888409, 0.0095466543, -0.0156297553, 0.0149045335, 0.0205937643, -0.00153249747, 0.0128289023, 0.010078066, 0.0203311853, 0.00439508678, 0.00566422287, -0.0443134792, -0.00547354, 0.00197247509, -0.00117535749, -0.01337907, -0.0149795571, -0.00940286, -0.0148420148, -0.00457326602, -0.0212939773, -0.0035417024, 0.0437132977, 0.0244949516, 0.000994052389, -0.00554856285, 0.0135416193, -0.0177053865, 0.0139167337, 0.0172052346, 0.0124600399, -0.00665827561, -0.0152921518, -0.00947788358, 0.000797508226, -0.0130289635, 0.00704589346, 0.00646446645, -0.0195684526, -0.000300482032, 0.0162299369, 0.0322098, -0.0191808343, 0.0122787356, -0.0150545798, 0.00785238855, -0.0142418323, 0.00451387325, 0.0152171291, -0.00869639497, -0.0115472628, -0.0170301814, -0.0041793962, -0.00079868047, -0.000746320758, 0.00527660502, 0.000218621193, -0.0133290542, 0.0073709921, 0.012891422, 0.0145919388, -0.000876047765, 0.00949038658, 0.0198935512, 0.0204687268, -0.0175428372, -9.32901e-06, -0.0102281114, 0.00226318836, 0.00394807616, 0.015492213, 0.0071584275, -0.00879642554, -0.00871515088, 0.00381366, -0.0323348381, -0.00419502612, -0.00571111217, -0.0102156075, -0.00811496843, -0.0103406459, 0.0124475369, 0.000976078154, 0.0102531193, 0.0198810473, -0.00480771251, -0.0172677524, -0.0270832386, 0.00696461881, -0.0132290246, 0.0109658362, -0.0104469275, -0.00496088387, 0.0157047771, -0.0245199595, -0.0121286893, -0.00645196252, 0.00435757544, -0.000859636522, -0.0264580492, -0.0139167337, 0.0141042909, -0.00422941148, -0.00337602687, 0.0284586567, 0.00628003525, -0.0154421972, -0.00958416518, -0.00356671, -0.0148920305, 0.036161, 0.00387930498, 0.00701463362, -0.00510467775, -0.00502340309, -0.0128163984, -0.00398558751, 0.00593618071, 0.00940911192, 0.0074835266, -0.0146294506, -0.0105844699, 0.00604871521, -0.000392111455, -0.00820874702, -0.0200561, 0.00464203721, -0.0139667485, -0.00454825861, -0.0229319762, 0.00142777804, -0.0040793661, -0.00560483, 0.00893396791, 0.0233070906, -0.000475144538, -0.0475394614, 0.00328224851, -0.00507029239, -0.00586741, -0.0144919083, 0.0109783392, 0.00643320708, -0.00169113942, -0.0088026775, -0.00683958037, -0.0143293589, -0.0119348802, 0.00319315889, -0.00865263212, -0.0149420453, 0.0287337415, -0.00763982395, 0.00677706162, -0.0074835266, 0.00618000515, -0.0405373313, -0.0182055384, -0.00833378546, -0.00444197608, 0.00452012522, -0.00572361611, -0.0118348505, 0.0167175848, 0.0169926696, 0.00812747236, -0.00551730348, -0.0187306982, -0.0157672968, -0.0131790088, 0.0124037731, 0.0279585049, 0.0107032564, 0.00562671153, -0.00222411403, -0.016655067, 0.00709590875, -0.00947788358, 0.0205312464, 0.0226693954, -0.00177397719, -0.00812747236, 0.00234133727, 0.00220223237, -0.0125288116, 0.0152046252, -0.00260548014, 0.0121099334, -0.00175209553, -0.00922155473, 0.0351606943, 0.0127663836, 0.00223349198, 0.0309844259, 0.0103844088, 0.00112534233, -0.00763982395, -0.0115285069, -0.00321660354, 0.00262579881, 0.00165987993, -0.00397620955, -0.00183493318, 0.0138667179, -0.000363391795, -0.0133915739, 0.00231789262, -0.0132665355, 0.0158923343, 0.00298840902, -0.00321972952, -0.0202686656, -0.0139292376, 0.0166800749, 0.0129664447, 0.0363110453, -0.0098780049, -0.00379177835, 0.0111846523, -0.0216690917, -0.00509842578, 0.00515781902, -0.00545478426, -0.00602370733, -0.0144043816, -0.00293526798, -0.0261579566, 0.00963418093, 0.00623002, -0.00391056482, -0.0279585049, 0.015029572, -0.00650822977, -0.0125600705, 0.011484744, -0.00925906654, 0.00627065776, -0.0154046863, -0.0153046558, 0.00897773076, 0.00660200836, -0.00479208259, 0.00676455768, 0.0273083076, -0.0156172505, 0.0285836942, 0.0104781874, -0.00442009466, 0.0159048382, 0.00440133875, -0.0204062071, -0.00378552661, -0.00728971744, 0.0140417712, 0.00375114102, 0.0395870432, -0.0180429891, 0.0157422889, 0.0178929437, -0.0155922435, -0.000354795426, -0.0123224985, 0.000561889668, -0.0240198076, -0.00524534564, 0.00775235845, 0.00523284171, 0.0313595384, -0.0049483804, 0.00647697039, -0.0191808343, 0.00342916814, -0.025120141, 0.0115597667, -0.00254139816, -0.000334086, 0.00447011, 0.0028258597, 0.00940911192, 0.00639569573, 0.00354795437, -0.016192425, -0.00124022097, 0.0157923046, 0.0064019477, -0.00964043289, -0.0197935216, -0.0099717835, -0.0155922435, 0.00567360083, 0.0127726356, 0.00208032038, -0.00656449702, -0.00452637672, 0.000575175, 0.0155297238, -0.00765232788, 0.00322285551, 0.00638944376, -0.00633942848, -0.014792, -1.82916974e-05, -0.0140917869, -0.00385429757, 0.00141058536, -0.00988425687, -0.0105156992, -0.015267144, -0.0244824477, -0.0149545493, 0.00902149454, -0.0024288639, -0.00072248542, -0.0116910562, -0.00968419574, -0.035910923, 0.00538601354, 0.00435132347, -0.039637059, 0.027708428, 0.0144543974, -0.0199310631, 0.00568610476, 0.0101343328, 0.00730222138, -0.014079283, -0.000275865168, 0.00897147879, 0.00193496363, -0.00118864281, -0.00406998815, -0.0125725744, 0.00393869821, -0.0116347894, 0.0180304851, 0.00919654779, -0.0128789181, 0.0156297553, -0.00917154, 0.000303803361, -0.0111971563, -0.00195528241, 0.0144293895, -0.00381053425, -0.00173490273, -0.00538288755, 0.0133040473, -0.0182430502, -0.0145169161, -0.00859636534, -0.0174803175, 0.00423253747, 0.0203686953, 0.0123287505, -0.00502340309, -0.00637068786, -0.00295871263, 0.030259205, -0.00983424112, 0.00035596767, 0.00608310057, 0.000766248733, -0.00773360254, 0.0130664743, 0.0130539713, 0.00179116987, 0.00629253918, -0.00154890865, -0.00714592356, -0.016204929, 0.0113909654, -0.0128789181, -0.00888395216, 0.0162924565, -0.0152171291, 0.00884644128, -0.0132540315, 0.0112409191, 0.0186431706, 0.0101405848, 0.0158423185, 0.0125288116, -0.012678857, 0.0225693658, -0.0112534231, 0.0158798303, 0.00897147879, 0.0232820828, -0.0106970044, -0.000886207097, 0.012209964, 0.00583927613, 0.0261079427, -0.00287900073, 0.00276177772, 0.0122474758, 0.0117160641, -0.0193558875, 0.0171802267, 0.00806495361, 0.0259829033, -0.00629253918, 0.00675830571, 0.00882768538, 0.00693961093, 0.0182555541, -0.0223818086, -0.00926531851, 0.0141167939, -0.0232070591, -0.00242104894, 0.000634568045, 0.00730222138, -0.0215440542, 0.00954040233, -0.00212877267, -0.00959041715, -0.00616750121, 0.0055391849, 0.0205062386, 0.00155594212, -0.0166675709, -0.0186056606, -0.00184587401, 0.00474519329, -0.00238666357, 0.0175678432, 0.00810246449, 0.00822750293, 0.0141793136, 0.00657074898, 0.0112034082, -0.00372925936, 0.00658950442, -0.0210313983, 0.00247262721, -0.0242198668, 0.00862137228, -0.00226631435, -0.00299622398, -0.00927157048, -0.00868389197, -0.00934659317, 0.011272179, 0.00248982, 0.00680832099, 0.0182805602, 0.00683332887, -0.0272082761, -0.0139792524, -0.0103468979, 0.0126601011, -0.0163924862, -0.00882768538, 0.00513593713, -0.0214440227, -0.0198810473, 0.00161142775, -0.00133868842, 0.00632067258, 0.0145294201, 0.0202561617, 0.00369174802, 0.00604871521, -0.015029572, -0.00875891466, 0.00462953327, 0.0314845778, 0.0125913303, 0.0193558875, 0.00483897189, 0.0128664142, -0.00111049402, -0.0200811084, 0.00434507197, 0.0101593407, 0.00405123224, -0.0110471109, 0.00508279633, -0.0107470192, 0.0149795571, 0.0151796173, -0.010803286, -0.0166050512, -0.015717281, 0.000207875739, 0.00165987993, 0.00824000686, -0.0153171597, 0.0109470803, -0.0165800434, 0.0089902347, -0.0128414063, 0.00478583062, -0.00839005224, -0.00484209787, -0.0162799526, -0.0130039556, 0.00373238535, 0.0118536055, -0.0150670838, -0.00394495, 0.0266581085, -0.0109533323, -0.0042919307, 0.00174428057, 0.0155047169, 0.0215065423, 0.0112034082, -0.0133540621, 0.00898398273, -0.000501324364, 0.0172302406, 0.0236071814, 0.00875266269, 0.00808996055, -0.0118223466, -0.00885269325, -0.0106032258, -0.00435132347, 0.00513281161, -0.0238072425, 0.0222192593, -0.0113284457, -0.0105219511, 0.0300091282, 0.00214283937, 0.0112346672, -0.00587991346, 0.00636756187, -0.00638319179, -0.008452571, -0.00646446645, 0.00854009762, 0.0184681173, -0.00153015298, -0.0147419842, -0.00205687573, -0.0112096602, -0.0102468673, 0.00104172318, -0.0182555541, 0.0284586567, 0.0134415887, 0.0200936124, -0.0112096602, 0.00505153649, 0.0146544576, -0.00486085378, -0.00112690532, 0.0113597056, -0.00197403808, 0.012903925, 0.0146544576, 0.012209964, -0.0123037426, -0.0169176459, -0.00113940914, 0.00314314361, -0.012916429, 0.0176303629, -0.0238197464, 0.0150420759, -0.00728346547, -0.00849633478, 0.00870889891, 0.00461390335, -0.0133415582, -0.00613624183, 0.0169801656, -0.0226944033, 0.0109033165, 0.0028399264, -0.00522971572, -0.017830424, 0.000928407419, 0.00613311585, 0.00259766518, 0.00576112745, -0.0169926696, -0.00560170412, 0.00679581705, -0.013141498, -0.0121349413, -0.0066145123, 0.00230538868, 0.00387617922, -0.0093215853, -0.00853384566, -0.0162174329, 0.00212095771, 0.00546103623, 0.00722094672, 0.00866513606, 0.00679581705, -0.0103093861, 0.00138245174, -0.029784061, -0.00413875887, -0.000113608781, 0.00119411328, 0.0136291459, 0.00941536389, -0.00563921547, -0.0237447228, 0.0200561, 0.0221317317, -0.00496401, -0.0109970951, 0.00112143485, 0.0301091596, -0.00260235416, 0.00120192813, 0.016192425, 0.0267831478, -0.0191058125, 0.0234696399, 0.0146294506, -0.00490461709, -0.0099905394, 0.00902774651, -0.000337016594, -0.00720219081, -0.00877767056, 0.00262267282, -0.00487023173, 0.0154171903, 0.00349793909, -0.00562358554, 0.0156797692, -0.00398246152, -0.00405123224, 0.0160798915, -0.0227319151, -0.00395120215, -0.00429818267, 0.0289588086, -0.000773672829, 0.0126851089, -0.0037886526, 0.00859636534, 0.0026992585, -0.0187807139, -0.00800243393, -0.0135416193, 0.0116973082, 0.0216190759, -0.00905275345, -0.00673955027, -0.00895897485, -0.00121677644, -0.0215565581, -0.00332288584, -0.00322285551, -0.00253045722, -0.00890896, -0.0160548836, -0.0301091596, 0.00430443417, 0.0113722095, 0.00660200836, 0.00382929, 0.0088964561, 0.00737724407, -0.0218816567, 0.00454513263, -0.0438633449, -0.0205062386, 0.0436382741, -0.00239916728, 0.0296590216, -0.00540476898, 0.0122287199, 0.0317846686, 0.0080274418, 0.0191058125, -0.030259205, -0.0104031647, 0.00148013781, -0.00154656416, 0.0134665966, 0.00406061, -0.0190432929, -0.00812122, 0.010565714, 0.0179054476, 0.0183305759, 0.0066207638, 0.00405123224, -0.0199060552, -0.00567360083, -0.00867764, 0.0104156686, -0.0133165512, -0.0156797692, -0.0172677524, -0.0108970646, 0.00817748718, 0.027008215, -0.00400434295, 0.00770859513, -0.0234696399, -0.00855885353, -0.00364485872, -0.0120974304, 0.0178804398, 0.00213189842, -0.0168426242, -0.0222192593, -0.00664577167, -0.0182180423, 0.00870889891, -0.0243324023, -0.0104406765, -0.0141292978, -0.0129789477, 0.0104344245, -0.0123725133, -0.00480458653, 0.0250201114, -0.00437633134, 0.0287587475, 0.0142293284, -0.0113722095, 0.00685833627, 9.10433228e-05, -0.0145919388, -0.0248075463, 0.00663326774, -0.0111033777, -0.00250544958, 0.0191558264, -0.0227444191, -0.00326974457, 0.00307749864, -0.00579238683, -0.00525784958, -0.00148560817, 0.0166675709, 0.000172904154, -0.0085838614, -0.0103531498, -0.0173677839, -0.00937160105, -0.00412938138, 0.00310719525, 0.0141543057, 0.0105407061, 0.00389806088, -0.00829627365, -0.0075835567, -0.0070396415, 0.0111283856, 0.000686927699, 0.0528160669, -0.0137416804, 0.000528676435, -0.00523909368, -0.00618625665, 0.0165050216, 3.98070297e-05, 0.00116988714, -0.00372300763, -0.00306968391, 0.01055321, -0.00957166124, 0.00539226551, -0.00871515088, 0.00830252562, 0.0281085502, -0.0171677228, 0.00875266269, -0.00794616714, -0.00430443417, 0.0224943422, -0.0087839216, -0.00817748718, 0.00857760943, -6.7501e-05, 0.00268988078, 0.0154296933, -0.00266174716, 0.000362610299, 0.0066207638, -0.0221942514, 0.0174553096, 0.00147232285, -0.0118285986, -0.00544228032, 0.00511718169, -0.00744601525, 0.0110658659, 0.0262579881, 0.0272582918, -0.0152171291, 0.0105344541, 0.0169551577, -0.00297746831, -0.00805870164, 0.00716467947, 0.0145044122, 0.0350606665, -0.0267081242, 0.00571736414, -0.00298059429, 0.000605653, -0.000948726083, 0.00231945561, -0.00893396791, 0.00865263212, -0.0212189555, 0.0100343022, 0.000102961007, 0.0110095991, -0.0321347751, 0.0101155769, -0.0167300887, -0.0117785828, -0.00102765637, 0.0119348802, -0.0220692139, 0.00651448173, 0.00302904635, 0.0366361439, 0.0076023126, 0.0164049901, 0.00225224765, 0.0169551577, 0.0280335285, 0.00384491961, 0.0180054773, 0.0194809269, 0.0143668707, -0.00693335896, -0.00826501381, 0.000639647711, -0.00352294673, 0.0242323708, 0.00410124753, -0.00645821448, -0.00626128, -0.00544853229, 0.00214127637, 0.00236634491, 0.0107657751, 0.00326974457, -0.0254452396, -0.0394870117, -0.0122224679, 0.0266080946, 0.0414626114, -0.0106094778, 0.0207063, -0.0171927307, -0.00657700049, 0.00986550096, -0.0104844393, 0.0141793136, -0.0228444487, -0.0379115343, 0.00786489248, 0.000609560404, -0.00824000686, 0.0127788875, 0.0105469581, -0.0202186499, -0.0156672653, 0.0109220725, 0.0129289329, -0.0158798303, -0.00455763657, -0.00890896]
06 Jan, 2025
Compiler Design – GATE CSE Previous Year Questions 06 Jan, 2025 In this article, we are mainly focusing on the Compiler Design GATE Questions that have been asked in Previous Years, with their solutions. And where an explanation is required, we have also provided the reason. Topic-Wise Quizzes to Practice Previous Year’s Questions Lexical Analysis Parsing Syntax-Directed Translation Intermediate Code Generation Below mentioned are the links to the Compiler Design PYQ’s pages. On each page, you will get the questions asked in CD along with the years asked. GATE CD Previous Year Questions Compiler Theory | Set 1, 2 GATE CSE Previous Year Question Papers These previous year’s questions help you understand the question patterns followed by GATE that directly help a candidate in scoring good marks in GATE. Below is the links to year-wise GATE Previous Question Papers. GATE CSE Previous Year Question Papers These GATE CSE question papers span over 15 years, along with their official answer keys. We’ve also provided Quiz tests to help you practice key topics, improve speed, track your progress, and build confidence for the GATE exam 2025. These previous year’s questions help you in understanding the question patterns followed by GATE that directly help a candidate in scoring good marks in GATE. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions
https://www.geeksforgeeks.org/compiler-design-gate-questions?ref=asr10
PHP
Compiler Design – GATE CSE Previous Year Questions
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0489300378, 0.0251211692, -0.0198987499, 0.0188408773, 0.035914164, 0.0478587709, 0.000757836446, 0.048233714, -0.0464393459, 0.00923296716, 0.0124333715, -0.0536971688, 0.0273038708, -0.0235276613, -0.0300222076, 0.00334435608, 0.0133238612, 0.0138461022, -0.0144754704, -0.043921873, -0.00600578031, -0.0182382893, -0.0307185296, 0.0159484595, -0.0161761045, 0.00512533449, 0.0102975368, -0.0226170868, -0.027611861, 0.00116332702, -0.00365234469, 0.0374675, -0.0152789196, -0.0220948439, -0.0601515397, 0.0232330635, -0.0042850608, 0.00846299529, -0.0398778468, 0.0148102408, -0.0368783027, -0.0194166806, 0.00886471942, -0.002992847, 0.00436540553, 0.0101837143, 0.0445914119, -0.0201665666, -0.0166313928, -0.00453613838, 0.00209566252, 0.032271862, 0.0657221153, -0.0365033597, 0.023273237, 0.01775622, 0.0178633463, 0.0342804864, 0.00242038979, 0.00966147333, 0.0543131456, 0.00565092405, -0.0290045049, -0.0425827913, 0.026487032, -0.0274779517, -0.0396903753, 0.00960790925, 0.0109068183, 0.000181926778, -0.030129334, -0.0203004759, -0.0668469444, -0.0188676585, -0.00577144139, 0.0177026577, -0.0151851838, 0.0327807143, 0.0073381667, 0.00477717305, -0.0480730236, 0.0233268, -0.0126543203, 0.00642424356, 0.0169929434, -0.0255228933, 0.00348495948, -0.0591338389, 0.0269155372, -0.0245453641, 0.0263665151, 0.0365033597, 0.00725112623, -0.0470821038, -0.0120919058, 0.0098623354, 0.0247462261, -0.00191321271, -0.0381906033, 0.0170063339, 0.0284688715, -0.0414847434, -0.000145834347, -0.0109269051, -0.000812655082, 0.0151985744, -0.0685609728, 0.0133104697, 0.00153575907, 0.0428506061, -0.0245721452, 0.00911244936, -0.00116667477, 0.0112348935, 0.00301795499, -0.0322183, -0.0387798, -0.0710248798, -0.0283885282, -0.00275181234, 0.0222555343, 0.00267146761, -0.012520412, 0.0317630135, -0.042448882, 0.017434841, 0.0192292109, -0.0244516283, -0.0181177724, -0.00802109763, -0.0108331693, 0.00757250562, -0.0264334679, -0.00495794928, 0.0491710715, 0.0167117361, 0.0211307053, 0.00773989083, 0.00556053594, -0.0277457684, 0.00722434465, -0.0153458733, 0.0525991209, -0.00304975803, -0.0121521642, 0.00454283413, -0.00383646833, 0.0607942976, -0.00699670054, 0.00977529492, -0.00548353884, 0.000448173843, -0.0185596701, 0.00777336815, -0.0319237038, -0.00651128357, 0.01561369, 0.0162028857, 0.00616647024, 0.00887811, -0.00501486, -0.033450257, -0.00897184573, -0.034119796, -0.0496799238, 0.0114357555, 0.0210101884, 0.0256032385, -0.0434665866, 0.0168858171, 0.0336109437, 0.0273574349, 0.0166581739, 0.00470687123, -0.0209298432, -0.0131765613, 0.00655815145, 0.0108465599, 0.0113955839, -0.0223760512, -0.023273237, -0.0137255853, -0.00241704215, 0.00561744673, 0.0384852029, -0.00177930447, 0.0380031317, -0.0257103648, 0.0128819635, 0.00121270563, -0.030504277, 0.0182382893, 0.0063673323, 0.0122191189, 0.041324053, -0.00546345254, -0.0637402758, 0.00108130835, -0.0445378497, -0.00406746, -0.00735825254, -0.0281207114, -0.0340394527, -0.000542746449, 0.0045696157, 0.0188007038, -0.0276922043, 0.0263531227, 0.0166447833, -0.0116500091, -0.0413776189, -0.00156170374, 0.0117638307, -0.0515010729, 0.0131096076, -0.00672553666, -0.035914164, -0.038056694, -0.00743190199, -0.013343947, 0.000520149479, 0.0289241597, 0.0197514519, 0.0100631975, -0.00763946, -0.047564175, -0.0469214134, -0.0625618845, -0.0318433568, -0.0424756631, 0.00218270277, 0.0532418787, 0.00403398275, -0.0233803634, 0.0011758809, 0.00982885808, -0.0097418176, 0.027611861, 0.00703017786, -0.0206888095, -0.0241838116, -0.0425292291, -0.0396368131, 0.00202201307, -0.00431519, 0.0427167, 0.0032221647, 0.0186266229, -0.0132769933, 0.0140201831, 0.0309863463, -0.00143700186, 0.00730468938, 0.0419132486, -0.0136385448, 0.00622672867, 0.0190685205, 0.0229250751, -0.0161225405, -0.00233837101, -0.0280403662, 0.000628112932, -0.000826882839, -0.0186667964, -0.0160288047, -0.0190953016, 0.0236615706, 0.00840943214, -0.00915931724, -0.060954988, 0.0562949851, -0.0555451, 0.00513872504, 0.00975520816, 0.0306381844, -0.0408152044, -0.00441562105, -0.0164707024, 0.010799692, 0.00488095218, -0.0223492701, -0.023795478, 0.019577371, -0.0374675, 0.0235410519, -0.025040824, -0.0337180719, 0.0149977123, -0.0701678693, -0.0513671674, 0.020876281, 0.0207022, -0.0225099605, 0.0045495294, 0.00556723122, 0.0275582969, 0.0127614466, -0.0132836886, 0.00815500598, 0.00383312069, -0.0120584285, -0.00890489202, 0.013444378, 0.00440223049, -0.0375746265, -0.0108264741, 0.00313512445, 0.00471356697, -0.015988633, -0.0187873133, 0.0145290345, -0.00702348258, -0.050456591, -0.00345148263, 0.0320040472, 0.0173277147, 0.0348964632, -0.0384852029, -0.0233803634, -0.00321546942, 0.0252550766, -0.0107929967, -0.0185462777, 0.0474302657, 0.0349768065, -0.00812822487, 0.0356463492, 0.00352513208, 0.00854334, -0.0169527717, -0.0123731131, -0.00998954754, -0.0130091766, -0.0205415096, 0.0325932428, -0.0366908312, -0.0240499042, 0.0464125648, 0.0494121052, 0.00218102895, -0.0328878425, 0.0256701913, -0.00225635222, 9.6612639e-05, -0.0431719869, -0.0295133553, -0.0141942641, -0.0176624842, 0.0211708788, 0.0132636018, 0.00083859975, 0.00524585182, 0.0306917466, 0.0141808726, 0.00784701761, -0.0206754189, -0.0420203768, -0.0291116312, 0.0249336977, 0.0224831775, 0.015412828, -0.00345483026, 0.060954988, 0.0417525619, -0.0118508711, -0.0253488123, 0.00060970051, -0.00203205622, 0.00195003743, 0.0145825977, -0.00252249464, 0.041029457, 0.0136854127, 0.0118776532, -0.0194166806, 0.00271833548, -0.0102171917, 0.0171000697, 0.011870957, 0.00774658658, 0.00401724456, 0.0174750127, 0.00217433367, -0.004589702, -0.00684940163, -0.0172741506, -0.00749216089, 0.00306817051, -0.00404402614, 0.0353517495, -0.0315219797, 0.0184525419, -0.0410026759, -0.010324318, -0.00865716208, -0.0267682392, 0.030852437, 0.0224430058, 0.0180909913, -0.0262995604, 0.0389940515, 0.0287902523, -0.0282546189, 0.0359945111, -0.00818178803, 0.0303703677, -0.00595556479, -0.010451531, 0.0119178249, 0.00553375436, 0.0102908416, 0.019778233, 0.00467674201, -0.00897184573, 0.0469482, 0.00669540744, 0.00968825445, 0.0602586679, 0.0341733582, 0.0192024279, -0.0036590402, 0.0504833721, -0.0229518563, 0.00766624138, 0.0524919927, 0.0306114033, 0.0114692328, 0.0360480733, 0.0274243895, -0.0175419673, -0.0134912459, 0.0393957756, 0.0173946694, -0.00831569638, 0.0205549, -0.0735423565, 0.00595891243, 0.0312005989, -0.0225903038, 0.031950485, -0.00691635581, -0.00332426978, 0.0190819111, -0.0343340486, -0.0403867, 0.0162564497, -0.0429845154, -0.0464393459, -0.00425493158, -0.0239829496, -0.0264066868, 0.0167385191, 0.00168807956, 0.0158011615, 0.0332627855, -0.00172071974, 0.0076997187, -0.0135113318, 0.0152923102, -0.035592787, 0.0278528947, 0.0463857837, 0.00290748058, 0.0106523931, 0.010973773, 0.0278796759, 0.0291919764, -0.0289509408, 0.00114491466, 0.00709713204, 0.0245989263, -0.0157074258, -0.0127748372, 0.00474034855, 0.0281474926, -0.00508516189, 0.0243712831, -0.00194501586, -0.0440022163, 0.00655480381, 0.0203004759, 0.023219673, 0.00476043485, -0.0488764755, -0.030852437, -0.00984224863, -0.00501151243, -0.0072578215, 0.0275582969, 0.00599238975, -0.0057212254, 0.0112014161, 0.000656986842, -0.0317362323, 0.0182516798, -0.0154262185, -0.0423417576, -0.0207557622, -0.028308183, -0.0121052964, -0.0500280857, 0.0208361074, 0.00988911651, 0.0625618845, -0.00125455193, -0.0353249684, -0.00696322368, 0.046466127, 0.000200653, 0.00675566588, 0.00248901779, -0.0215592124, -0.0133305565, 0.0370389931, 0.0281474926, -0.00962130073, -0.00949408766, 0.0239561684, -0.0020538161, -0.0109536862, -0.00191656034, -0.0271967445, 0.00586852478, 0.0427970439, -0.0162296668, 0.035164278, 0.0157208163, -0.0317897946, 0.0276654232, 0.00531615363, -0.0343340486, 0.00779345399, 0.0278528947, -0.00516885472, -0.0250274334, 0.00267314143, -0.0154931732, -0.0325932428, -0.0124735441, 0.0292991027, 0.00994268, 0.0225635227, -0.0314951949, 0.0140737463, -0.0106122205, 0.00819517858, -0.00530945789, -0.0274779517, 0.0115428828, 0.0135782864, 0.0299418624, 0.00240197731, -0.00359878154, 0.00595221715, 0.00308323512, 0.0022111584, -0.0117571354, -0.000967486354, -0.0234741, -0.0011198069, -0.0124534573, 0.010726043, 0.014288, -0.00556053594, 0.0182784628, -0.0101971058, 0.0197514519, 0.0168724265, -0.00809474755, 0.0114089744, -0.0249336977, -0.0307453107, -0.00626020599, 0.0321379565, -0.0151182301, 0.0106925657, 0.0292187575, 0.000908901566, -0.00606938684, -0.00164288562, 0.0256032385, -0.0153860459, 0.0097418176, -0.002294851, 0.0117303533, -0.0180240367, -0.032271862, 0.0188140944, 0.0198853593, 0.0160957593, -0.022523351, 0.00230824179, -0.00735825254, 0.00163953786, -0.00211574882, 0.0240499042, -0.0142478272, 0.00222454919, 0.0280403662, -0.0222153626, 0.0229652468, 0.0076193735, 0.0406277329, -0.00790727604, 0.000335816527, -0.0196978878, 0.00567101, 0.00712391362, -0.0153458733, 0.0145558156, 0.0258442722, -0.000201071452, 0.00819517858, -0.00364230154, 0.00365569233, -0.0209298432, -0.0232330635, 0.0210905336, 0.00435201498, 0.00625016261, 0.0371193402, -0.0129154408, -0.0271431822, -0.0205682907, 0.0039034225, 0.0259112269, -0.018506106, -0.0194836352, -0.00701678684, -0.0264468584, -0.0112750661, 0.0109336, -0.0309327822, -0.00707035, -0.0451002643, -0.00105034199, -0.0386994556, 0.0229116846, -0.00525924237, -0.00126961665, -0.0331288762, 0.00550697278, 0.000494204753, 0.089718461, -0.0165644381, 0.0126141477, -4.45401529e-05, 0.00626355363, 0.00631376915, -0.0107528241, -0.00265975064, -0.0169125982, 0.00816839747, 0.0205147285, -0.0209566243, -0.0284956545, 0.0103042321, -0.00799431652, 0.00141356792, 0.0119780842, -0.0195238087, -0.0283349641, 0.0391547419, 0.0133238612, -0.0146629419, 0.00280035404, -0.0374942832, 0.0366908312, -0.0282010566, -0.00188140944, -0.0180240367, 0.0241302475, -0.0125137167, -0.00539649837, -0.0179972555, -0.00666862587, -0.00036050583, 0.0225367416, -0.00782693084, -0.0039034225, -0.0072979941, 0.00393020408, -0.00791397132, -0.0123931989, -0.00141189399, 0.00802109763, -0.0284153093, 0.0240097307, -0.0317630135, -0.00709713204, 0.0142210452, 0.031173816, -0.0424221, -0.0231527183, -0.0441361256, 0.0216797292, 0.0184793249, 0.00101016962, 0.000112775771, -0.0557593517, 0.0351107158, -0.00311838603, -0.00673223194, -0.00133991835, -0.00620664284, 0.0234473161, 0.0101100653, -0.0153994374, -0.0137389759, 0.0222153626, -0.019255992, 0.0199121423, 0.016162714, -0.00436205789, 0.0406277329, -0.014288, 0.0152521385, -0.00212077028, 0.00826213229, -0.0203138664, 0.00567435799, -0.0133238612, -0.0495995767, -0.0280939303, -0.021974327, -0.00962130073, -0.0297008269, 0.0238892138, -0.0121052964, -0.00802109763, -0.00701678684, 0.0186801869, -0.00536302151, -0.012721274, -0.00567435799, -0.0150780575, -0.00424823584, 0.0108465599, 0.0175955314, -0.0143281715, 0.0189212207, -0.0253086407, -0.0135381138, -0.0066518872, -0.00712391362, -3.58570469e-05, 0.0331020951, -0.00239862967, 0.016310012, 0.0303703677, 0.0117169628, 0.0257505365, 0.0162564497, -0.0153458733, -0.0224296153, -0.0168456454, -0.00176591368, -0.0295937, -0.00794744864, 0.0121856416, -0.0124266762, 0.0656685531, 0.0117504401, 0.00827552378, 0.0185998417, -0.00921957567, -0.0382977314, 0.00589530636, 0.0283349641, 0.00651128357, 0.00926644355, -0.00246391, 0.0161493234, 0.0261522606, -0.00730468938, -0.00627694465, 0.00231995876, -0.0063874186, 0.00694983266, -0.000685023842, -0.0200996138, 0.0213851314, 0.0148370229, 0.0100698927, 0.0126543203, -0.0138862748, 0.0356195681, -0.0025040824, 0.023969559, 0.0327539332, -0.0199924856, 0.0105184847, 0.00251245173, 0.00664519193, 0.0293526668, -0.0373603739, -0.0234339256, 0.0189613942, -0.0221617986, -0.026165653, 0.0363694541, -0.00626355363, 0.0112215029, 0.0119981701, -0.00576474564, -0.01396662, -0.0148504134, -0.0297811721, 0.00156756223, -0.00778006343, 0.0184793249, 0.00694983266, 0.00120266259, -0.00162279932, 0.0679717734, 0.0109135136, -0.00796753448, -0.015586908, -0.00935348403, -0.0180909913, 0.00622003339, 0.0107863015, 0.0154530006, -0.00419467269, 0.00699000526, -0.000626020599, 0.0220546722, -0.00233000168, 0.0162162762, 0.00598904211, -0.00775997713, -0.0138594937, -0.00701009156, -0.011047422, 6.55417607e-05, -0.00237519573, -0.0287099071, 0.016162714, 0.0189480036, -0.000126794272, -0.0166313928, 0.00932000671, -0.0184525419, -0.00627694465, -0.0219609365, 0.0210369695, 0.0140201831, 0.00889819674, -0.0145022525, 0.0027200093, 0.0151048386, 0.0389672704, -0.012520412, 0.0300757699, -0.0120584285, 0.0260585248, 0.00466000335, 0.0133774243, -0.00457965862, -0.0320843905, 0.0293794479, -0.00442901207, 0.00147382659, 0.0211842693, 0.0287366882, -0.00345148263, 0.0144620799, -0.0302364603, -0.00129305059, -0.032646805, -0.0251881219, 0.00425493158, -0.0323789902, 0.0156538617, 0.0222153626, 0.0191086922, 0.005312806, 0.0129221361, -0.00534628285, -0.00098422484, 0.0316826664, 0.00189145259, -0.0133841196, -0.00972173177, 0.00828221906, -0.00316860154, -0.0222287532, -0.0230991561, -0.0119446069, -0.0102908416, -0.0226304773, 0.0185730606, -0.0253755935, -0.0207557622, 0.0154262185, 0.0155601269, -0.0013842755, -0.0143013904, -0.0139130568, 0.00580491824, 0.000636063691, -0.00269155367, -0.0151717933, -0.0410562381, -0.00150060817, -0.0429309532, 0.017059898, 0.000459890784, -0.00427836552, -0.0150512755, -0.00155584526, 0.0404134803, 0.0106925657, -0.0111210719, 0.000130246597, 0.0338519812, -0.0177026577, -0.0136519354, 0.035539221, 0.027960021, 0.00921957567, 0.019255992, -0.00452609546, 0.0280135851, -0.000479977025, -0.00216931198, -0.0261522606, -0.014863804, -0.00126208435, 0.0135648958, -0.00837595481, 0.00038854286, 0.00999624282, 5.83559677e-06, -0.000944052415, -0.00400385354, -0.00891828258, 0.00214085658, -0.0517421067, -0.0114625376, 0.00553040672, 0.00782693084, 0.0407348573, -0.00385655463, -0.0147968503, 0.0160020236, 0.0292187575, 0.0204343833, -0.0234071445, -0.00219944143, 0.0216127746, -0.0126074525, 0.0103444047, 0.00210737949, 0.00164204871, -0.029031286, -0.0133841196, -0.0374675, 0.00148638047, 0.0215592124, 0.0247328356, -0.00300791184, -0.0230054203, 0.0117504401, 0.0147165051, -0.0226304773, -0.010451531, -0.0104649216, -0.00699670054, -0.0242507663, 0.00810144283, -0.0361284167, 0.0185864512, 0.0130962171, 0.00106038514, -0.0125739751, 0.0213047862, -0.0227643847, 0.0110005541, 0.0104649216, -0.0230991561, 0.00493451534, -0.0168054719, 0.0262593869, 0.0205950737, 0.000708039326, -0.00965477712, -0.00713730417, -0.00464996044, 0.0174080599, 0.0015232052, -0.0146227693, -0.00798092596, 0.000252960861, -0.0102439737, 0.0243043285, 0.045341298, 0.0120517332, -0.0183052439, -0.0320308283, -0.052331306, -0.00699000526, -0.022898294, 0.0292723216, -0.042073939, 0.0405741706, 0.0372800268, 0.012594061, 0.00469013304, 0.0163234025, 0.000809307385, -0.0277189873, -0.0168590359, 0.0129890908, 0.0251613408, 0.0265673772, -0.0124400668, 0.0294865742, -0.0248399619, 0.0108934278, -0.00568440091, -0.00288906833, -0.0291651953, -0.0220546722, 0.0032137956, 0.0132033434, 0.0112415887, 0.00472361, 0.00298782554, 0.0304507129, 0.0261790436, -0.0124534573, 0.00506172795, 0.0135515044, -0.010799692, -0.0094405245, 0.0147432871, -0.0193765089, -0.0103042321, 0.00876428839, 0.0130426539, -0.0153458733, -0.0153726554, -0.005898654, -0.0348161198, -0.029727608, 0.00293258834, 0.0112148076, -0.0161225405, -0.00268653221, 0.0295133553, -0.0150914481, -0.000300456421, -0.00216094265, 0.000755325658, 0.0265673772, -0.00980877224, 0.0213583503, 0.00519898394, 0.00912584, -0.0111210719, -0.0127145788, 0.0122459, 0.00699670054, -0.0135782864, 0.030504277, -0.019028347, -0.0119245201, -0.00816839747, -0.0118374806, 0.0072979941, -0.0138862748, 0.00182784616, -0.0284688715, 0.0152253564, 0.0242909379, -0.0189613942, -0.0161761045, 0.00894506462, 0.0079206666, -0.0123664178, -0.00936687458, 0.00417123875, 0.0179436915, -0.0156404711, -0.00311503839, 0.00568105327, -0.00337281148, 9.11203097e-05, -0.0220412817, -0.027611861, 0.0129288314, -0.00460644, -0.015988633, 0.016537657, 0.00804788, 0.00823535118, 0.0784166083, -0.0228045583, -0.0128016192, -0.00839604065, -0.0110942898, 0.00324057718, 0.0131631708, -0.000355902739, 0.0125605846, -0.0135448091, 0.0236213971, -0.000491693965, -0.00691635581, 0.00418128213, -0.00743859774, 0.0184659343, -0.0208227169, 0.00525924237, 0.00821526442, 0.00183454168, -0.00316692772, 0.00103778811, 0.0131430849, 0.00471356697, 0.0198987499, -0.0134042054, -0.022670649, -0.0178499557, 0.000649454538, 0.0113420198, -0.0088312421, -0.00299954251, -0.0195372, -0.0122191189, -0.0145825977, -0.00692974683, 0.0254827198, 0.00739842514, -0.0430380777, -0.00660836697, -0.00287902518, 0.0174616221, -0.0324057713, 0.00558731752, -0.00777336815, -0.0220011082, 0.00952756498, 0.0120919058, -0.0301561151, 0.00100431114, -0.009701645, 0.000518057146, 0.00690296525, 0.00905888621, -0.0219609365, 0.023219673, -0.00255095027, 0.000522660266, 0.00180608616, -0.0143147809, 0.00753233349, -0.0076796324, 0.0124266762, -0.00384316384, -0.0231125467, 0.0127480561, -0.00524919946, 0.0117772212, 0.00937357079, 0.0268084109, -0.0419935957, 0.00487760408, -0.00862368476, 0.00197347137, -0.0299418624, -0.0135314185, -0.0188542679, 0.00743190199, 0.0125338025, 0.0027484647, 0.00254090712, 0.00885802414, 0.00527932867, 0.0264066868, -0.019255992, 0.00708374102, -0.0127480561, 0.00911914464, 0.0145825977, -0.0109202098, -0.0237151328, -0.0161091499, 0.011449147, -0.0282010566, -0.000530611, 0.00745198829, 0.0177160483, -0.00966147333, -0.0281207114, -0.0258041, 0.0250140429, 0.0206620265, 0.00497803558, -0.0174616221, 0.00467004674, -0.0210369695, 0.0235812254, 0.012969004, 0.00812153, 0.00391346542, 0.0223492701, 0.012895355, 0.0117906127, 0.00807466172, -0.00581161352, -0.00211407477, 0.0045495294, -0.00334937754, 0.0145424251, -0.00367243099, -0.0164037477, 0.00477717305, 0.00569109619, -0.0282814, -0.0292991027, 0.00282546203, 0.000546512601, 0.00996276643, 0.0127078835, 0.00245051901, -0.0274779517, 0.0188944396, 0.00893836934, 0.0125538893, -0.0270092729, -0.00735825254, 0.00703017786, 0.0277993307, -0.00457296334, 2.33423871e-05, 0.00272503076, 0.00378625281, -0.0127748372, -0.00298615173, -0.0299686436, -0.0027283784, 0.000887141505, 0.003715951, 0.0168456454, 0.013792539, -0.0223894417, -0.0109269051, 0.00780684501, 0.0227643847, 0.0237151328, -0.000115181931, 0.00471021933, -0.00140268786, 0.031896919, -0.0248265713, -0.000494204753, 0.00224463525, 0.0199121423, -0.00674562296, 0.00676570926, -0.0243578926, 0.0067791, -0.0242909379, 0.00751224719, 0.00335272518, -0.00988911651, -0.00305812736, -0.025388984, 0.00534628285, 0.000218646892, 0.0152119659, 0.0171938054, -0.020474555, -0.0166447833, -0.00257438421, -0.00541323703, -0.015265529, -0.0125739751, 0.0124065895, 0.0214788672, -0.00692305109, -0.00962130073, 0.00349500263, 0.00618655654, 0.0202603023, 0.00998954754, 0.0411633663, 0.015988633, -0.0079608392, 0.0309595633, 0.0358873829, 0.0227108225, -0.00915931724, -0.051956363, -0.00950078294, -0.0441896878, -0.0246658809, 0.0278796759, 0.015265529, 0.0136318495, -0.0244114548, -0.0101569332, 0.00579152722, -0.0160823688, 0.0141407, 0.00807466172, -0.00080972584, 0.00825543702, -0.0165242646, 0.00480730273, 0.00450600917, 0.00267481524, 0.00862368476, 0.00659497641, 0.0108800372, -0.00753902877, -0.0119379116, -0.00405406905, -0.0067489706, -0.00972173177, -0.016537657, -0.000213416104, 0.000796335, 0.0238624327, 0.0066318009, -0.0310666896, 0.00463322178, 0.00420136796, 0.00686279265, -0.00522911316, -0.00743859774, 0.0240231212, -0.0276386421, -0.020474555, 0.00574800745, 0.035539221, 0.00150981441, 0.00609951606, -0.00261790422, -0.00812822487, -0.000189459111, 0.0112281982, 0.0280939303, -0.0197514519, 0.0103979679, 0.0116567044, 0.000106446518, 0.0155601269, -0.00020515146, 0.0202335212, 0.0143683441, 0.00420806371, 0.0132234292, 0.00377955753, -0.0288705975, 0.0209967978, -0.0112348935, 0.0063874186, 0.00248734374, -0.00442566443, 0.014863804, -0.0138594937, -0.00493786298, -0.0098221628, 0.0080010118, -0.0112549802, 0.0301828962, 0.0280403662, 0.0164974835, 0.0139398379, 0.0233000182, 0.0269958824, 0.0329146236, -0.0166046098, 0.00141105708, -0.00637402805, 0.0236213971, -0.00600243267, -0.0273038708, -0.031896919, -0.0097686, 0.00673892768, 0.0276922043, 0.0213583503, 0.0186132323, -0.00967486389, -0.000283090194, -0.00744529301, -0.0269958824, 0.0137791485, 0.0317630135, 0.0060827774, 0.0109068183, -0.00514876842, 0.0288973786, -0.00929992087, -0.00595221715, 0.0213181768, -0.000433946087, 0.0225367416, -0.000429761451, -0.00849647168, -0.0239829496, -0.0123128546, -0.0107461289, 0.0278796759, -0.00641085254, -0.0128016192, -0.00739173, -0.0115763592, -0.0055170157, 0.0073381667, -0.0302632414, -0.0141407, 0.0156270806, -0.0164974835, -0.0045194, 0.0313077234, -0.0276922043, -0.00885802414, 0.0210905336, 0.0340662338, 0.0162162762, -0.0284956545, -0.0178767387, 0.0346286483, -0.0115763592, -0.0104314443, 0.00287735136, -0.00420806371, 0.00890489202, -0.0366104878, 0.00314014615, 0.0249738693, 0.0167117361, -0.0464393459, 0.00288739451, -0.0157743804, 0.00484412722, 0.00661506271, 0.00240532518, 0.0127279693, -0.000606352813, -0.0185864512, 0.00894506462, 0.0126877967, -0.00350169814, 0.00436875317, -0.0198451877, 0.00172071974, 0.0314951949, 0.0020939887, -0.0153324828, -0.00495460164, 0.0287902523, -0.00300289015, 0.0119513022, 0.0140737463, 0.0263397321, 0.0147165051, -0.00333766057, -0.0189881753, -0.00136084156, 0.0226304773, 0.0387530178, -1.64246721e-05, -0.00893167313, -0.0234071445, 0.0111612445, 0.0110608134, 0.0234071445, -0.015988633, 0.0108331693, -0.0275582969, 0.00522576552, -0.0153057016, -0.0123262452, -0.0105921347, -0.00162949483, -0.0191622563, -0.013444378, -0.0295401383, 0.0351374969, 0.0133707281, -0.00530276261, 0.0222153626, 0.00757250562, 0.0142076546, 0.0164305288, -0.0269691013, 0.00584843848, -0.0076193735, -0.00147298968, -0.023045592, 0.00228146, -0.0171938054, -0.0166581739, -0.0165912192, 0.000559066539, 0.00472361, 0.0229786374, 0.0107729109, -0.0230991561, 0.0262459964, -0.021251224, 0.00264468603, 0.0118843485, 0.0186132323, -0.0440557823, -0.0280403662, 0.00559401279, -0.00348830735, -0.0138193211, 0.0231795013, 0.00923966244, -0.0221216269, -0.0108465599, -0.0182650723, -0.0112081124, -0.00883793738, -0.019630935, 0.0158145521, 0.0169393811, -0.00190484338, -0.0207959358, 0.018358808, 0.00149809744, 0.00951417349, 0.0312541611, -0.0128484871, -0.0194970258, 0.0251479503, -0.021224441, 0.0116433138, 0.00895845518, -0.0178231746, -0.0102238869, 0.00207222858, -0.00716408575, 0.00587522, -0.00952756498, 0.00578483194, 0.00553040672, -0.00475708675, 0.0157475974, 0.0173009336, -0.00407750299, 0.0017809784, -0.00456626806, 0.00588191533, 0.00624681497, 0.00229652482, -0.00665858248, -0.00461648358, -0.0474570468, 0.0268084109, -0.0159618519, 0.0104716169, 0.0182516798, 0.0317897946, 0.0314951949, 0.0039804196, 0.00376281887, 0.00442901207, 0.0153458733, 0.00445579365, -0.0231393278, 0.0168858171, -0.00377286202, 0.00140938326, -0.00534963049, 0.0159618519, 0.0138059305, -0.0136519354, 0.0132970791, -0.0199121423, 0.0219609365, 0.00164958101, 0.0280671474, 0.0051152911, 0.0606871732, 0.0224162247, 0.0414847434, 0.0145022525, -0.0329146236, 0.00174080592, -0.00911244936, -0.015265529, 1.75754449e-05, -0.00867055263, 0.0181043819, 0.0137657579, -0.0222689249, 0.017809784, 0.0193095542, -0.00638072332, -0.00691635581, -0.019577371, 0.0149977123, 0.0262326058, 0.00943382923, 0.0107059563, 0.00404402614, 0.00798092596, 0.00909236353, -0.00490438612, -0.0339858867, 0.00268987985, 0.021452086, -0.00309160445, -0.0098221628, -0.00392016117, 0.0117035722, -0.0205147285, 0.0138327116, 0.0217065103, -0.00114658847, -0.00452609546, 0.0121990321, 0.0165510476, -0.00481734565, 0.0132836886, 0.0245855357, 0.00660167169, 0.00863038, -0.00224128761, 0.00965477712, -0.00950747821, 0.00278863707, 0.00995607115, 0.00908566825, -0.00340796239, -0.000438549177, -0.00373268966, -0.0140067926, -0.00941374246, 0.0278261136, -0.00865716208, 0.031896919, 0.0184123702, -0.00553040672, -1.47638966e-05, 0.023594616, -0.00932000671, -0.0172875412, 0.0082286559, -0.00570783485, 0.0261254795, -0.00873081107, 0.0142210452, -0.00210068398, -0.00940704718, 0.00305310567, 0.0113152387, 0.00727121253, 0.00905219093, 0.00822196063, 0.0094806971, -0.00791397132, 0.00712391362, -0.0114759281, -0.00341967936, -0.00754572405, -0.00482069328, -0.00848308112, -0.0224028323, 0.00913923141, 0.0255898479, 0.0103912726, 0.0116634, -0.00401054882, -0.0159216784, 0.0122191189, -0.00402728748, 0.00590200163, 0.00437879656, -0.00810813811, -0.0114759281, -0.0134979412, 0.0189346112, 0.00264301198, 0.0152923102, -0.00454283413, -0.0235276613, -0.00627359655, 0.00419802032, 0.00181278156, -0.00393355172, -0.000149809741, -0.00410763221, 0.00197012373, -0.0142746083, 0.00030359489, -0.0264736414, -0.018332025, 0.014863804, 0.00121521647, 0.0119044343, 0.00318701402, -0.0295133553, -0.0146629419, 0.00242708507, 0.0118441759, -0.0231393278, -0.0131698661, 0.00434531923, -0.00362556311, 0.00611960236, -0.00493451534, -0.0146629419, 0.0286295619, 0.0135782864, -0.00171737198, -0.025763927, 0.0140871368, -0.00541993231, 0.0114625376, 0.000880446052, -0.0158413332, -0.0152789196, 0.00997615699, 0.038056694, 0.00173745817, 0.00500481715, 0.0191220827, 0.0156002995, -0.0124266762, -0.00619994709, -0.00108047132, -0.0184257608, 0.0190685205, -0.00223291828, 0.00293928385, -0.00163033174, -0.00433192868, 0.016618, -0.0134109007, -0.00588191533, -0.0105318762, -0.0124534573, -0.000347742724, -0.00514542079, 0.00252584252, 0.0135648958, -0.00152990059, 0.0259112269, 0.0101033701, 0.0206888095, 0.0193229467, 0.0119379116, -0.0259513985, 0.00191321271, -0.0105988299, 0.019255992, -0.0229920298, 0.00195505889, 0.020849498, -0.00689626951, 0.0280135851, -0.00488095218, -0.0143013904, -0.00231493707, 0.0120517332, 0.00139766629, -0.00770641398, 0.00665523484, 0.0040205922, -0.000273256301, 0.00116834859, 0.00138678623, 0.00166213489, 0.00811483338, -0.0178231746, -0.00988911651, 0.00562079437, -0.000627694419, 0.0133908149, -0.0170331169, -0.00745868403, -0.000943215506, -0.00909236353, -0.0175419673, -0.0129623087, 0.00661841035, 0.0113754971, 0.010424749, -0.00401724456, -0.0236347876, -0.00552036334, 0.0121856416, -0.0463590026, -0.00690296525, 0.00150981441, 0.0144085167, -0.0119579975, 0.0107126515, -0.00267648906, -0.0108800372, -0.0220011082, -0.0117571354, 0.00142779562, -0.00677575218, 0.0316023231, 0.00150814047, -1.05596519e-06, -0.00362891075, 0.00301125948, 0.00566431461, 0.00940704718, -0.0162028857, 0.00204209937, -0.0106791751, 0.00836256426, 0.00762606924, 0.00579487532, -0.0105586573, -0.00192995113, -0.00825543702, 0.00358204287, -0.0110942898, -0.00586852478, -0.0127145788, -0.00912584, -0.01940329, -0.003572, 0.00512868213, 0.0192961637, 1.18673479e-05, 0.0313612893, -1.79416e-05, -0.0245051906, 0.0340126678, 0.0101569332, -0.0179436915, 0.000419090647, 0.0157743804, 0.00188308337, -0.0128484871, -0.00443570735, -0.0132167339, -0.00681257714, -0.012145469, -0.00243880204, 0.000741097901, 0.0051152911, -0.0117772212, -0.00346487341, 0.0029292407, 0.0153860459, -0.00978199, -0.00677575218, -0.00168556883, -0.0191354752, -0.0129422229, -0.0189881753, -0.00297108712, 0.00434197159, -0.0225769132, 0.00524919946, 0.0244114548, -0.00577478902, -0.00149056502, -0.00240867282, -0.00536971679, -0.00126961665, 0.00993598439, -0.00784701761, 0.0145825977, -0.00370925572, 0.0150512755, 0.0228313394, -0.00327740191, -0.0139130568, -0.0072979941, 0.00440223049, 0.00951417349, -0.016310012, -0.00382307754, 0.00863707531, -0.0114893187, -0.00102858199, 0.00518894056, 0.00177428301, 0.0249872599, 0.0213181768, -0.00547349546, 0.0262593869, 0.0251345597, -0.0106858704, 0.0144219073, 0.00548688648, 0.0137054985, 0.0075992872, 0.0144085167, 0.00410428457, -0.0166447833, -0.00492112432, 0.0365837067, -0.0212913956, -0.00446918467, -0.00867724791, 0.0127078835, 0.0215592124, 0.0232062824, -0.0308256559, -0.0325932428, 0.00357869524, -0.00217265962, 0.000459472329, 0.0187605321, 0.00853664428, -0.00397372432, -0.0203004759, 0.0109469909, -0.027611861, 0.00212579174, -0.00766624138, 0.0314148515, 0.000640666811, -0.00558397, -0.000680002326, -0.0152521385, -0.0135983722, 0.00952087, -0.0191086922, 0.00661506271, -0.0116700949, -0.0136452401, -0.00341131, -0.0195505898, -0.0146763334, -0.026835192, -0.0151048386, 0.000513035571, 0.0238624327, -0.00369586493, 0.0206754189, -0.00683935871, 0.00339624542, 0.0151717933, 0.00660167169, 0.0142612178, -0.0102171917, 0.00645437278, -0.0173678864, -0.00810813811, 0.00238523888, 0.0277189873, 0.023219673, 0.0169393811, 0.0117906127, 0.00836926, -0.0198317971, 0.00258610118, -0.0137054985, 0.0040205922, -0.00729129883, 0.00542662758, 0.0155199543, -0.0144352987, -0.0105720479, -0.0280939303, 0.00411098031, -0.0250676051, 0.0135046365, 0.0127279693, -0.000374524359, -0.00698331, -0.00381303462, 0.0300757699, -0.00992928911, -0.0232866276, -0.0235276613, -0.00543332333, 0.00641085254, 0.0122994632, 0.0110541172, 0.0122325094, 0.0300222076, -0.0162698403, -0.00557727413, -0.00505838031, 0.0165778287, 0.00282378797, 0.00466335146, 0.00439553475, 0.00859690271, -0.00265138131, -0.00733147096, -0.00906558149, 0.00599908503, 0.00893836934, 0.00591874029, -0.00341967936, 3.87601322e-05, -0.0159216784, 0.00646776333, 0.00365234469, -0.0207825452, 0.000801356568, -0.0293526668, -0.0048843, 0.00909905881, 0.0225367416, 0.00106038514, -0.0110005541, -0.0305846203, -0.00129556132, 0.0102640595, 0.0185194965, -0.00402728748, -0.015238747, -0.000556974206, -0.00241871597, -0.0052726334, 0.00734486198, 0.0260719173, 0.0238624327, -0.00632716, 0.00344813475, -0.020327257, -0.0182784628, -0.0113554113, 0.0016286578, 0.0200460497, 0.00616647024, -0.00146462035, 0.00942043867, 0.00289241597, 0.00561744673, 0.00158848544, 0.000108277294, -0.00766624138, 0.0198987499, -0.0241972022, -0.0258710533, 0.0072377352, 0.00853664428, 0.00146713119, 0.00322886021, -0.0117035722, 0.000285810209, -0.0103377094, -0.012620843, -0.00520567922, -0.00958782341, -0.0126141477, -0.00527598104, 0.0027283784, -0.0055571883, 0.00515211606, -0.0158815067, 0.0167519096, 0.0233134087, -0.0104783121, -0.0124668488, -0.0124534573, -0.0175419673, 0.0140871368, 0.021920763, -0.00721764937, -0.0114089744, 0.0209834073, -0.021452086, 0.0320040472, 0.0193765089, -0.000739005569, 0.00743190199, -0.00821526442, -0.0106323073, -0.00966147333, 8.39541317e-05, -0.00149893435, 0.0121253831, -0.00719756307, -0.00615977496, 0.00323555572, -0.0147165051, -0.0103845773, -0.00278528943, -0.0320843905, 0.00877098367, -0.0305846203, -0.0168188643, 0.00632716, 0.00728460308, -0.010973773, -0.00204544701, -0.00828891434, -0.0177160483, -0.0174080599, 0.00831569638, -0.0107059563, 0.0246257093, -0.0159752425, -0.00109218829, 0.00241871597, -0.00302297645, -0.0126476241, 0.0262192152, -0.0149039766, -0.00517220236, 0.012172251, -0.0175955314, -0.0284420904, 0.015064667, -0.000195736051, -0.023942776, 0.00470017595, 0.00147215265, -0.00115914235, 0.000166757483, 0.00134075538, 0.02579071, 0.00325564179, -0.0162162762, 0.0130895218, 0.0131765613, 0.0167385191, -0.00117002241, 0.00395029038, 0.00127045356, -0.015265529, 0.00855673105, 0.00172574131, 3.16201076e-05, -0.00590869691, 0.00838934537, 0.00145206647, 0.0183052439, 0.0135515044, -0.0011131115, 0.00996946171, -0.0296740457, 0.000568272721, 0.000855756749, 0.0287902523, -0.0021425304, 0.0178633463, 0.0205013379, -0.00596226, -0.0072979941, -0.00808135699, -0.00588191533, -0.0161493234, 0.00338118081, 0.00615977496, -0.00158848544, -0.0257237554, -0.0150244944, 0.0286027808, 0.00703017786, -0.00317027536, -0.00350504578, -0.0197514519, -0.00949408766, 0.0138996653, -0.014863804, 0.00974851288, -0.00669540744, -0.0123262452, -0.0211039241, -0.00885802414, -0.0149709312, 0.0297811721, 0.021224441, 0.00325898966, 0.0141139189, 0.0237686969, 0.0226572584, 0.0235410519, -0.0132368207, 0.0133506423, 0.000862033688, -0.0132234292, -0.00836256426, -0.0119312163, 0.0258978363, -0.00278696325, -0.0186667964, -0.0192827731, 0.0169125982, -0.0109469909, -0.00340796239, -0.00929322559, 0.00720425835, -0.00411767559, 0.0123329405, -0.014890586, -0.0106189158, -0.0202335212, 0.014288, 0.0177963935, 0.0194166806, -0.0228447299, -0.00741851144, -0.0015232052, -0.00895845518, 0.00880446099, 0.00829561, -0.0226170868, -6.24032909e-05, 0.0193229467, 0.00420471607, 0.00655480381, 0.0211842693, 0.0187337492, -0.0142612178, -0.00986903068, -0.0235544425, -0.00153575907, -0.015935069, 0.00737833884, -0.0146361608, -0.0131029123, -0.00922627095, 0.00376951438, 0.0135849817, -0.0236883517, -0.0175955314, 0.0333163477, 0.0300222076, 0.00645772042, -0.00395029038, 0.00247060531, -0.00559401279, 0.010625612, 0.00526593812, 0.0156270806, -0.0143013904, -0.00297945621, -0.0154931732, -0.00958112814, -0.00240532518, 0.0148370229, 0.00729129883, -0.00784032233, -0.00951417349, 0.0209566243, 0.0174884032, -0.00965477712, -0.017233979, -0.01561369, 0.00929992087, -0.0347625539, 0.00418128213, 0.00294430531, -0.0106523931, -0.00994937494, 0.00148721738, -0.00751224719, 0.00188977877, -0.0113955839, 0.00931331143, 0.0017048181, -0.0114290603, 0.0147968503, -0.00441896869, 0.00278696325, 0.00632046442, 0.0282546189, 0.0404670425, 0.0206754189, -0.0247596167, -1.13704236e-05, -0.00870403, 0.000953258655, 0.00534963049, 0.00579487532, -0.000928150839, -0.0154931732, 0.00523915607, 0.0140737463, -0.0271699633, -0.0143147809, 0.0142612178, 0.0014470449, -0.000419927586, -0.00406746, 0.0317094512, -0.000155040529, 0.0227643847, 0.00877767894, -0.010002939, -0.0275582969, -0.0213449579, 0.00440892577, -0.0328074954, -0.00338452845, -0.00739842514, -0.00913923141, 0.0235142708, -0.0122525953, -0.0171134621, -0.0145424251, -0.015412828, 0.0118173938, -0.0144085167, -0.0158547256, -0.00453279074, -0.0124467621, -0.0133908149, 0.0296740457, 0.0167519096, -0.0167251285, 0.00579822296, 0.0113018481, 0.00147382659, 0.0304507129, 0.0046466128, 0.0132970791, -0.00883793738, -0.00127798587, 0.00755241932, 0.00683266344, 0.0126074525, 0.000966649444, 0.00794744864, -0.0276386421, -0.0134042054, 0.0155333448, -0.00368582178, -0.0191488657, -0.00362556311, 0.011522796, -0.0257371459, -0.0150780575, -0.00261957804, -0.0136050675, -0.0110541172, 0.00208059791, 0.0146763334, 0.0112616755, 0.00923296716, -0.03336991, -0.0191354752, -0.00897854101, -0.00622003339, -0.0016554395, -0.0106657837, -0.00805457495, 0.00670210272, -0.00556053594, 0.011522796, 0.00101016962, 4.48866922e-06, -0.0242775474, -0.0164840929, -0.0171000697, 0.0220948439, 0.00242541125, 0.0155735174, -0.00747877, -0.000526426418, -0.0255228933, 0.00260953512, -0.0136251543, -0.0088714147, -0.00962130073, -0.0116031412, -0.0125404978, -0.00690296525, -0.00806127, 0.0125338025, -0.0146629419, 0.000165606718, -0.0143013904, -0.00737833884, -0.00390677, 0.00467004674, 0.00512533449, -0.00350504578, 0.00438214419, -0.00217935513, -0.00874420162, -0.0114692328, 0.000411139859, 0.0315487608, 0.00101602811, 0.00565092405, 0.00624681497, -0.00956773758, -0.017582139, 0.0137255853, -0.0124936299, 0.00545340916, 0.00530945789, -0.0224563964, 0.0244784094, 0.00984894391, 0.0045495294, 0.023045592, 0.0135782864, -0.0116767902, -0.0188007038, 0.0111344624, 0.00527598104, 0.00923296716, -0.00631711679, 0.00739842514, 0.00645437278, 0.0146629419, 0.0119914748, -0.0158279426, 0.0133305565, 0.0012662689, 0.0036590402, -0.0101435427, -0.0164707024, -0.0205816831, -0.0220011082, 0.0129890908, 0.015935069, 0.0110541172, -0.0188542679, -0.00350169814, 0.0241972022, -0.0130359586, -0.00220446289, 0.00028727483, -0.00727121253, -0.0111076813, -0.0137657579, -0.0119847795, -0.0220948439, -0.00615977496, -0.00688287895, -0.00111813308, -0.00287400372, -0.0112750661, -0.00337783294, -0.00371929887, -0.00382642541, -0.0132033434, 0.00912584, -0.0445110686, -0.0182650723, -0.00231995876, 0.00102774508, -0.00125120429, 0.00129723514, 0.0294865742, 0.00123111799, 0.0261924341, 0.0168724265, -0.0253354218, 0.00473030517, -0.0209834073, -0.0242507663, -0.0195372, 0.012172251, 0.0284420904, -0.0173812769, 0.0106523931, -0.00944722, 0.00376281887, 0.0119245201, -0.000284554815, -0.0131832575, -0.00671549374, -0.00160020241, 0.00471691461, 0.00335607305, 0.00703017786, -0.0200192686, 0.0173544958, 0.00211742264, -0.00585178612, -0.0149307586, -0.00453613838, -0.00142444798, -0.00679918611, -0.00633050781, -0.0045863539, 0.00192995113, -0.0121186879, 0.018506106, -0.00172741513, 0.00641754782, -0.0310399085, -0.00414110953, 0.00778675871, 0.026312951, 0.000107335749, -0.0255764555, -0.0112348935, -0.0241838116, -0.00594217423, 0.011174635, -0.00142110023, 0.00439888285, -0.0111143766, 0.00721764937, 0.0282546189, 0.00161694083, 0.00267314143, 0.0173812769, -0.0316826664, -0.0160154141, 0.0171268526, 0.00700339628, -0.0138193211, 0.00166046107, 0.00344813475, -0.0251881219, -0.00977529492, -0.00696991896, -0.00478721643, -0.0052726334, 0.00565092405, -0.0119981701, -0.0171134621, -0.00046407542, -0.032271862, 0.0052726334, -0.01052518, -0.0307988748, 0.0114357555, 0.0105117895, -0.0112281982, -0.00470352359, 0.0162430592, -0.0094405245, -0.0203406475, 0.0058317, 0.016684955, -0.00754572405, 0.00597899873, 0.00112985, -0.0169259906, 0.000635645236, 0.00162698398, 0.0248399619, 0.0101770191, -0.0115428828, 0.0258844458, -0.0156538617, 0.0168188643, -0.01207182, 0.00682931533, 0.0142344357, -0.0114759281, 0.0187069681, -0.00855003484, 0.00820187386, -0.0204879474, -0.00516550662, -0.0054768431, 0.000403816754, 0.0131229982, 0.0018998218, 0.0224563964, -0.00493451534, 0.00796753448, -0.0157743804, 0.00684270635, -0.0179704726, -0.0079608392, 0.0088312421, 0.0043218853, 0.0109402956, 0.00735155726, 0.0134644639, 0.00923966244, 0.018131163, 0.0199924856, 0.0126610156, 0.00872411579, 0.000532703358, -0.0114558423, -0.002656403, 0.0126074525, -0.0184123702, 0.0112348935, -0.0353249684, 0.0145290345, 0.0045294431, 0.00768632768, 0.032646805, -0.00661841035, -0.0222823154, 0.0223492701, -0.00068335, 0.00817509275, 0.0103377094, 0.0144352987, -0.0192158185, 0.00119261944, 0.019952314, 0.00628698757, 0.0204076022, -0.00335105136, -0.00700339628, 0.00386994542, 0.0141808726, -0.026835192, 0.0264468584, 0.0156538617, 0.0209432337, 0.00162782089, -0.00601582369, 0.012346331, 0.0152521385, 0.0230322015, -0.0119780842, 0.00260618725, 0.00535632577, 0.000801356568, 2.57093179e-05, -0.00106456981, 0.0185194965, -0.017608922, 0.00405072141, 0.000959117082, -0.00434197159, 3.33724201e-05, 0.0301561151, 0.0291919764, 0.000158702082, -0.014863804, 0.00369921257, -0.0139130568, 0.00588526297, 0.0162564497, -0.000680420781, 0.00859690271, 0.00501486, 0.0122994632, 0.00763946, -0.00352513208, -0.0125806704, -0.00788719, -0.0207423717, 0.00973512232, -0.0257103648, 0.00608947314, -0.0018998218, -0.00886471942, -0.0251077786, -0.00306314882, 0.00516885472, 0.00925974827, 0.00315521075, 0.00743859774, 0.0134510733, 0.00743859774, -0.0101904096, -0.0158279426, -0.00248734374, -0.00796753448, -0.0111076813, -0.00256434106, -0.00546345254, -0.0128016192, -0.0339591056, -0.00570783485, 0.0027334, 0.00649119727, 0.0233669709, 0.0124735441, 0.0141808726, 0.0197112802, -0.00306314882, -0.00708374102, 0.0116767902, 0.00789388549, -0.0104582263, 0.00322551257, 0.00620664284, -0.0115361866, 0.010625612, -0.0268753655, -0.00359878154, -0.00053102948, -0.00104197278, -0.00701009156, -0.00102690805, 0.000112252688, 0.00907897204, 0.00692305109, -0.00374273281, -0.0219073724, -0.0109804682, 0.010451531, -0.0150244944, 0.0229518563, -0.0181713365, 0.0123329405, 0.00105620048, 0.0067288843, -0.0143281715, -0.00403733086, -0.00254927645, 0.025415767, -0.0121655548, -0.00167217804, 0.0111411577, 0.0181579441, -0.0306917466, 0.00520233158, 0.0116634, -0.00177930447, 0.0135715911, -0.00139348162, -0.00602921424, 0.00565427169, 0.0190149564, -0.00203540386, -0.00637737568, -0.0134912459, 0.0100364154, 0.00845629908, 0.00941374246, 0.0107662147, 0.0127547514, -0.0195238087, -0.023969559, -0.0166983455, 0.00176591368, -0.0135448091, 0.0148370229, -0.00741181616, -0.0048843, 0.0173812769, 0.0180642083, 0.0064644157, -0.0064142, 0.00952756498, -0.0105921347, -0.00480395462, 0.00257438421, 0.0122191189, 0.0245453641, -0.012694492, -0.0231661089, -0.0114424508, -0.00722434465, 0.0100966748, -0.00994937494, -0.0116433138, 0.0334234722, 0.00178432604, 0.0117169628, -0.00577144139, -0.0237017423, 0.0037360373, -0.00170314428, 0.00240867282, 0.0152789196, 0.00282044034, -0.00149056502, 0.00167385186, 0.0129823945, -0.0267414562, -0.00436540553, -0.000208289945, 0.00188810483, -0.0174750127, 0.011870957, -0.0146629419, 0.00859690271, -0.00755241932, -0.0111612445, 0.00660167169, -0.00288906833, -0.013792539, -0.0160154141, -0.00281374506, -0.0162564497, 0.00501486, -0.0135582, -0.00205549016, -0.00778675871, -0.00203373, 0.0201397855, 0.0236615706, 0.0100364154, -0.0129020503, 0.000736076327, 0.0156806447, -0.00245051901, 0.00409089401, -0.0159752425, -0.00709043629, -0.0163635761, -0.0123798084, -0.0142612178, -0.0162966214, 0.00998285227, 0.0279064588, -0.00774658658, 0.0163635761, 0.00105787441, -0.0132970791, 0.00510859583, -0.03122738, -0.0023433927, 0.00651128357, 0.00237519573, 0.0101636285, -0.000420764496, -0.00875089783, -0.00700339628, 0.000523078721, 0.0114759281, 0.00496799219, -0.0164037477, 0.00834917277, 0.030852437, -0.00674227532, 0.00127045356, 0.0109804682, 0.0153324828, -0.00320877391, 0.0196041521, 0.0187203586, -0.00646106806, -0.010076588, 0.0103979679, -0.00731138466, -0.0155467363, -0.00293091452, 0.00854334, -0.0137791485, 0.0282010566, -0.00875089783, -0.00610955944, 0.0155065637, 0.00511863874, 0.00579487532, 0.00492447196, -0.0168724265, 0.00295937015, -0.00863038, 0.0366640501, -0.00970834, 0.0125070214, 0.000970834051, -0.00349500263, 0.00466335146, -0.0137523664, -0.00142779562, -0.00942713395, -0.00526259, 0.0216663387, -0.000501318602, -0.00446583657, -0.0151450112, -0.00274511706, -0.0191890374, -0.00280872337, -0.0057814843, -0.00623677205, -0.0151584027, -0.00405741669, -0.0266477223, -0.00283550494, 0.004589702, 0.006347246, 0.00615307922, 0.0311202537, 0.00768632768, -0.00464326516, 0.0124333715, -0.0180776, -0.0219609365, 0.0424221, 0.00391346542, 0.012145469, -0.0193631183, 0.00573796406, 0.0246391, 0.00701678684, -0.00454618176, -0.0377888791, -0.0277993307, -0.00859020744, -0.0155467363, 0.00753233349, 0.00928653, -0.0173812769, -0.000844458234, 0.0149575397, 0.0337716341, 0.0100096343, 0.00434197159, -0.000990920351, -0.0271833539, -0.00175587065, 0.00972173177, 0.011174635, -0.00690296525, 0.000913086173, -0.0128618777, -0.00923966244, 0.00775997713, 0.0225903038, -0.0145825977, 0.00371929887, -0.0264602508, -0.00623342441, -0.000551952631, -0.0146763334, 0.0181043819, 0.0138594937, -0.0174482316, -0.0238088686, 0.015935069, -0.012995786, 0.00927313883, -0.0179035198, 0.000145520491, -0.0200058781, -0.0052726334, 0.0101100653, 0.0145825977, -0.0025476024, 0.0181981176, 0.000134640461, 0.0339323245, 0.0270226635, -0.00479056407, 0.002656403, -0.00016665287, -0.0191488657, -0.0240097307, 0.00418128213, -0.00805457495, 7.07202416e-05, 0.0149307586, -0.0169795528, 0.000366573542, 0.00472026225, -0.00785371289, -0.0113152387, -0.0207691547, 0.00151065132, -0.0170331169, -0.0162564497, -0.0155199543, -0.0137523664, -0.0238088686, -0.0102975368, -0.00796753448, 0.00367577863, 0.00902540889, 0.00637737568, -0.00367243099, -2.66377829e-05, -0.000969997142, 0.015787771, -0.0117035722, 0.033744853, -0.0291919764, -0.00159601774, -0.00198518834, 0.0151450112, -0.00642089592, -0.0120517332, -0.00439553475, 0.00893836934, -0.0176223125, -0.00262292591, 0.00133322296, 0.00208729319, -0.0108398646, -0.000394192117, 0.0284956545, -0.0244516283, 0.0174214505, -0.0229116846, 0.000230573089, 0.00599908503, 0.0103979679, -0.00891828258, -0.00668871216, 0.0112415887, -0.0127279693, 0.0131096076, 0.00956104137, 0.014288, -0.0120450379, -0.00686948793, 0.0365301445, -0.000146985112, -0.00772650028, -0.00700339628, 0.00649454538, 0.0102573643, 0.0192961637, 0.0127882278, 0.025563065, 0.000309662602, 0.0119245201, 0.00927983504, 0.00978199, -0.0137389759, 0.0162028857, 0.0230589826, 0.0128618777, -0.0201397855, 0.0116098365, 0.002812071, 0.00130476756, -0.00351508893, 0.0145959882, -0.012272682, 0.0255496744, -0.00939365663, 0.023219673, -0.0169259906, 0.021452086, -0.0209298432, 0.0197246708, -0.0229250751, -0.00439218711, -0.00576809328, 0.0153324828, -0.0113888877, -0.00168807956, 0.00253421161, 0.0410026759, 0.00923966244, 0.0318433568, -0.00238356506, 0.0264066868, 0.0294865742, -0.0100899786, 0.00795414392, 0.0149441492, -0.0050952048, 0.00435536262, 0.00259949197, 0.00991589855, -0.00161359319, 0.0103979679, -0.0121655548, 0.00750555191, -0.0128819635, 0.00672218902, -0.0103042321, 0.00395363802, 0.0159618519, -0.00499477377, -0.0147834597, -0.0149843218, 0.00122442259, 0.0333431289, 0.016135931, -0.00240867282, 0.0170331169, -0.0149843218, 0.00376616674, -0.000294597936, -0.0162832309, 0.0130761303, -0.0177026577, -0.0205415096, 0.0103644906, -0.01396662, -0.012721274, -0.00144537108, 0.00659497641, -0.0241034664, -0.0241972022, 0.0116165318, -0.00260786107, -0.0156672541, -0.012346331, -0.00763946]
13 Dec, 2022
Compiler Theory | Set 2 13 Dec, 2022 The following questions have been asked in the GATE CS exam. 1. Given the following expression grammar: E -> E * F | F+E | F F -> F-F | id which of the following is true? (GATE CS 2000) (a) * has higher precedence than + (b) – has higher precedence than * (c) + and — have same precedence (d) + has higher precedence than * Answer(b) Precedence in grammar is enforced by making sure that a production rule with a higher precedence operator will never produce an expression with an operator with lower precedence. In the given grammar ‘-’ has higher precedence than ‘*’ 2. Consider a program P that consists of two source modules M1 and M2 contained in two different files. If M1 contains a reference to a function defined in M2 the reference will be resolved at (GATE CS 2004) a) Edit time b) Compile time c) Link time d) Load time Answer (c) The compiler transforms source code into the target language. The target language is generally in a binary form known as object code. Typically, an object file can contain three kinds of symbols: * defined symbols, which allow it to be called by other modules, * undefined symbols, which call the other modules where these symbols are defined, and * local symbols used internally within the object file to facilitate relocation. When a program comprises multiple object files, the linker combines these files into a unified executable program, resolving the symbols as it goes along. http://en.wikipedia.org/wiki/Compiler http://en.wikipedia.org/wiki/Linker_%28computing%29 3. Which of the following suffices to convert an arbitrary CFG to an LL(1) grammar? (GATE CS 2003) (a) Removing left recursion alone (b) Factoring the grammar alone (c) Removing left recursion and factoring the grammar (d) None of the above Answer(d) Removing left recursion and factoring the grammar does not suffice to convert an arbitrary CFG to LL(1) grammar. http://pages.cpsc.ucalgary.ca/~robin/class/411/LL1.3.html 4. Assume that the SLR parser for a grammar G has n1 states and the LALR parser for G has n2 states. The relationship between n1 and n2 is (GATE CS 2003) (a) n1 is necessarily less than n2 (b) n1 is necessarily equal to n2 (c) n1 is necessarily greater than n2 (d) none of the above Answer (b) http://parasol.tamu.edu/people/rwerger/Courses/434/lec10.pdf http://dragonbook.stanford.edu/lecture-notes/Stanford-CS143/11-LALR-Parsing.pdf Please see GATE Corner for all previous year papers/solutions/explanations, syllabus, important dates, notes, etc. Please write comments if you find any of the answers/explanations incorrect, or you want to share more information about the topics discussed above. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2
https://www.geeksforgeeks.org/compilers-set-2/
PHP
Compiler Theory | Set 2
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0306280572, 0.00801907945, -0.0209193379, 0.00869627576, 0.0127393408, 0.0410877243, -0.000731254928, 0.0468003154, -0.031808123, 0.00505885901, 0.00283953198, -0.0232124198, 0.0215630103, -0.00839455519, -0.0184787493, 0.0326395333, 0.0268330742, 0.0219653044, -0.0432332978, -0.0181569122, -0.00523989182, -0.0251568444, -0.00164689508, 0.0109558329, 0.0116263246, -0.000785313314, 0.025022747, -0.00898458716, -0.00219418388, -0.000823866576, 0.0255055018, 0.0317276642, -0.00296189659, -0.0413022824, -0.0374670699, 0.0128332097, -0.0018019462, -0.0220055338, -0.0391298905, 0.0234537963, -0.0427773632, 0.0027356057, -0.00882366952, 0.00212545833, -0.0369306765, -0.00830068626, 0.0209863875, -0.0247411411, -0.00982940663, -0.00789168663, -0.0300648436, 0.0115056364, 0.068282865, -0.00919244, 0.0160918, 0.0444938242, 0.000464734505, -0.00733517809, 0.0149653731, -0.00208858144, 0.066888243, 0.0292602535, -0.0676928312, -0.0539879836, 0.00494152308, 0.00329211378, -0.0320226811, -0.00956791546, 0.0166147817, -0.0148312747, -0.0264441893, -0.0322640575, -0.0408195294, 0.00901140738, 0.0166147817, -0.00111133989, -0.00596402306, 0.0258943867, 0.00967519358, 0.0292066149, -0.023225829, 0.0382716618, -0.011512341, -0.0133159636, 0.00656746514, -0.016842749, -0.00805930886, -0.0677464753, 0.0279460903, -0.000636548, 0.0341950729, 0.0277583525, 0.0312717296, -0.0317544825, 0.000179566036, -0.00639984244, 0.0345705487, -0.00182373717, -0.00772406347, 0.018237371, 0.0192699283, -0.00906504691, 0.0150056025, 0.0191894695, 0.0364211053, 0.0247143209, -0.05023323, 0.00790509582, -0.00650712103, 0.0719303414, -0.0368502177, -0.0110497018, -0.0026735852, -0.000366675114, 0.0130276522, -0.0138255367, -0.043662414, -0.0731640458, 0.00403971178, 0.023024682, -0.0222603213, 0.0226626173, -0.0265916977, 0.00403635949, -0.0399613, 0.0374670699, 0.00978917722, -0.0212545842, -0.00389555632, -0.0328809097, -0.0154615361, 0.0120487344, -0.00980929192, -0.0105602425, 0.0207584202, -0.0164538641, 0.0308157951, 0.0238024518, 0.0161588471, -0.0356969722, -0.0133293737, 0.00647694897, 0.0688729, -0.00639984244, -0.0126655865, 0.00276242546, -0.0117403083, 0.065010868, -0.0294748116, 0.0143887503, -0.0191224199, 0.0194174368, 0.0111100459, 0.00834091567, -0.0212948136, 0.0120956684, 0.0200611092, 0.0284288451, 0.00815988332, 0.00328205642, -0.00172316341, -0.0120755536, 0.00950757135, -0.0368234, -0.0459957235, 0.0276778936, -0.000790342, 0.000415076211, -0.0425896272, 0.0323713347, 0.0119548654, 0.0109424228, 0.0387275964, -0.00279595, -0.00822693203, 0.00190252, 0.00655740779, 0.0308694337, 0.0300648436, 0.000755979272, -0.0157699622, -0.0370647758, -0.00663786707, -0.00479736738, -0.0031429294, -0.0282947458, 0.0242449772, -0.0406049713, -0.000381342106, -0.0199001916, -0.00962826, 0.036474742, 0.0303330403, 0.00398942502, 0.0162124876, -0.0155554051, -0.0614706725, -0.00949416123, -0.0123437503, -0.00918573514, 0.0130544715, -0.0454056934, -0.0107144555, 0.00214557326, 0.0326395333, 0.00099568, -0.00891083386, 0.02631009, 0.0165075026, 0.00952098053, -0.0203293059, 0.00888401363, 0.00508232648, -0.0450033955, 0.00379498256, 0.00355025311, -0.0136847338, -0.0158772413, -0.0124510294, -0.0365552, 0.00809953827, 0.0230783205, 0.0294211712, 0.00777770253, -0.0145764872, -0.0243656654, -0.0376011692, -0.0686583444, -0.0224078298, -0.0586814247, -0.00278086402, 0.035777431, -0.0142144226, -0.0178350769, -0.0117671276, -0.0107010463, -0.0215361901, 0.0301721226, -0.00868957117, 0.0249422882, -0.0385398567, -0.0204231739, -0.0526738204, 0.022635797, 0.000668815395, 0.0349192023, 0.0254652705, 0.038191203, -0.00648700632, 0.0135707501, 0.0043783104, -0.0240304191, -0.000165632388, 0.028107008, -0.0113849472, 0.00931983348, 0.0205840934, 0.0226894356, -0.0420800522, 0.0063864328, -0.0163599961, -0.00176004053, -0.00938688219, -0.00838785, -0.027409697, -0.0326395333, 0.0177546181, 0.0072077848, -0.02392314, -0.0465589389, 0.0639380813, -0.054524377, 0.00379833509, -0.0148849133, 0.0234403871, -0.0284824837, -0.00524324458, -0.0195113067, 0.0441183485, 0.0202756654, 0.0112910783, 0.0134567665, 0.0229978617, -0.0395321846, 0.0436355956, -0.00139127008, -0.025518911, 0.00192598719, -0.0577695556, -0.0504746102, -0.00313622458, 0.000731254928, -0.0175668802, 0.00945393182, 0.00126722909, 0.0353214964, 0.0189212728, -0.0155554051, 0.00947404653, -0.00205673301, -0.00629926892, 0.0239767805, 0.0161990765, -0.0251702555, -0.0622216202, 0.0111569809, -0.00585674401, 0.00355360564, -0.0104194395, -0.00644007185, 0.0134969959, -0.0190687813, -0.0411950052, -0.0303598605, 0.00460627722, 0.0243120249, 0.0281338282, -0.0362065472, -0.0393176265, -0.0152335698, 0.0474171676, 0.00282947463, -0.00492811343, 0.0422677919, 0.0369038582, 0.00160247495, 0.00691947341, 0.0129941273, -0.0167891104, 0.00525665423, -0.0294748116, -0.0145094385, -0.0196722243, 0.0108016199, 0.0173925515, -0.076865159, -0.0033776015, 0.0195515361, 0.0305744167, -0.0463443808, -0.0273962878, 0.0305207781, 0.0140400948, 0.014858094, -0.0154078975, -0.0544439182, 0.00380504, -0.0272621885, 0.0197124537, -0.000595899415, 0.000748855295, 0.0291529745, 0.0223005507, 0.00118928449, 0.0365552, -0.0628116578, -0.0231856, -0.0401222184, 0.0267794356, 0.0137182586, -0.00886389893, 0.00635626027, 0.0340341553, 0.0382180214, -0.0311376303, -0.0311108101, -0.0122901108, 0.000512507046, 0.00859570224, -0.0246204529, -0.0094002923, -0.00230816728, 0.0402563177, -0.0240706485, -0.0107010463, 0.00616517058, 0.0120487344, 0.0125180781, -0.00612829346, 0.0120956684, -0.00509573612, 0.0232124198, 0.00152117782, -0.0100573739, -0.0102987513, -0.0231051408, 0.0129673081, -0.0050152773, -0.00795203075, 0.0125381928, -0.030708516, 0.0406049713, -0.0291529745, 0.00161588483, -0.016145438, -0.000249129545, -0.000953774317, -0.004260974, 0.0129069639, 0.00179188885, 0.0404172353, 0.0349728428, -0.0138389468, 0.00387208909, -0.0161052085, 0.0278119929, -0.0188542251, 0.00334072439, 0.0171109457, 0.0144960284, -0.00396931032, -0.0111905048, -0.0157297328, -0.00469679385, 0.0382448398, 0.01924311, -0.000344674598, 0.0459689051, 0.026417369, 0.00924607925, 0.00594055559, 0.0341682509, -0.00366423675, -0.0268733036, 0.0513596572, 0.0442524478, 0.0161990765, 0.0392908081, -6.03966255e-05, -0.0138389468, -0.0123906853, 0.0030607942, 0.0222066827, 0.0200208798, 0.0205170438, -0.0671028, 0.0195649453, 0.0301184841, -0.0163197666, 0.0290456973, 0.000952936185, -0.00957462, 0.00932653807, -0.0280801896, -0.0217239279, 0.00952098053, -0.0391567089, -0.0271012709, -0.0205572732, -0.0177814383, 0.0016946675, 0.0124711441, 0.00872980058, 0.0335782208, 0.0287775, -0.000107383421, 0.0309767127, -0.0240304191, -0.00480407244, -0.0408463478, -0.000212252504, 0.0426164456, 0.0154615361, 0.0156090446, 0.0122498814, 0.0312717296, 0.00889742374, 0.00447888393, -0.00680213748, -0.00267023291, 0.00592379319, -0.0262564514, -0.00722119445, 0.0024355608, 0.0316203833, -0.0306816958, 0.000230271966, -0.0160783883, -0.0449229367, 0.0155554051, 0.0444938242, 0.0359115303, -0.0124711441, -0.0393980853, -0.0129337832, -0.0291529745, -0.00425426941, 0.00380504, 0.0133226682, 0.0325322524, -0.0281338282, 0.0240974687, -0.0153676681, -0.0218714364, 0.0354287773, 0.00836103, -0.0309498925, 0.00951427594, -0.0148849133, 0.0277583525, -0.043876972, 0.0265648775, 0.0112843737, 0.0459689051, 0.0170975365, -0.0203427151, 0.0122163575, 0.0201952066, -0.013108111, 0.0149653731, -0.00316974916, -0.0193637982, -0.00126136234, 0.0288579594, 0.0091186855, 0.0244729444, -0.0174998306, 0.00183379452, 0.00159577, 0.00714744069, -0.0127125205, -0.0165611431, 0.00285126548, 0.0271951389, -0.0045694, 0.0146971764, 0.0344632678, -0.0163197666, 0.0234806165, -0.00677196542, 0.00563883455, 0.00100657553, 0.018237371, 0.0114318822, -0.0267123859, -0.012565013, 0.0067350883, -0.00439507235, -0.0295552704, 0.0295284502, -0.00954109523, 0.00938688219, -0.0381375626, -0.000675939373, 0.0159577, -0.00797214545, -0.0289652385, -0.0197660923, 0.0224614684, 0.0418386757, 0.00318818772, 0.00936006289, -0.0212814044, 0.0132556194, -0.00288143777, 0.00731506338, -0.00905163679, -0.0128667336, 0.0106205875, -0.00750950584, 0.00711391587, 0.0311644506, -0.00835432578, 0.0286434013, 0.00862922706, -0.0011809034, 0.0107748006, 0.0230515022, 0.000369818037, 0.0116866687, -0.0243522562, 0.000221681286, 0.00449899863, 0.0450033955, -0.0146703562, 0.0160918, 0.0192699283, -0.0190553721, -0.0233867466, 0.00950086582, 0.0261759926, -0.016842749, 0.0216971077, -0.0177948475, 0.0206243228, -0.0286165811, -0.0131617505, -0.00649371138, 0.0359651707, 0.0126052424, -0.0133159636, 0.016252717, 0.00516613806, -0.0101981778, -0.00382515462, 0.0245534033, -0.00961484946, 0.0222603213, 0.0172450449, -0.0307353362, 0.0114855217, -0.00684907194, 0.0258005168, -0.012860029, -0.0195649453, 0.00165695243, 0.00556172803, 0.00614505541, 0.00557849044, 0.0137249632, 0.0299575645, -0.00155889301, 0.0178618971, 0.00527006388, -0.0226894356, -0.0243522562, -0.0247947797, 0.0249154679, 0.00391902355, -0.00445206417, 0.061899785, -0.0176607482, -0.0240572393, 0.00531364605, 0.00716755539, 0.0278656315, -0.0149117336, -0.0189749133, -0.00171813474, -0.0143887503, -0.00971542392, 0.0107748006, -0.0205438621, 0.000365836982, -0.0140400948, 0.0138255367, -0.00943381712, 0.0385130383, -0.0038184498, 0.0327736288, -0.014750815, 0.0051795477, -0.0194710772, 0.0868957117, -0.000881696469, -0.00324517931, -0.00538404752, 0.0156895034, -0.0138121275, 0.0108284391, 0.0221530423, -0.0348119251, 0.0336050391, 0.0131885698, -0.00129823934, -0.0458348058, -0.00316639664, -0.0282947458, -0.00739552267, 0.0119347507, -0.0354824178, -0.0117805377, 0.00432802318, 0.0228637643, -0.0126454718, -0.0154347168, -0.0418386757, 0.0168025196, -0.0228905845, 0.0022746427, -0.0256798286, 0.0108887842, -0.00596402306, -0.0167891104, -0.0169768482, -0.0291261561, -0.009420407, 0.0505282469, -0.014455799, 0.0235074367, -0.0104998983, 0.0147374058, 0.00320997857, 0.0120487344, 0.0108418493, 0.00509238383, -0.0461834632, 0.0300648436, -0.0217507482, 0.00940699689, 0.031808123, 0.00117587461, -0.0233867466, -0.00432467088, -0.0348655656, 0.00480407244, 0.0364211053, 0.0239365511, 0.0131818652, -0.0605588034, 0.0238829106, -0.00889742374, -0.00963496417, -0.000404599792, 0.0123973899, 0.0393980853, 0.00480072, -0.0187871754, -0.029313894, 0.00945393182, -0.00192263466, 0.010164653, 0.0143082906, -0.00474708062, 0.058305949, -0.0219921246, 0.0295552704, -0.00575281819, 0.0228503533, -0.0186664872, 0.00206008554, -0.0102920467, -0.0462907404, -0.00193436828, -0.0197660923, 0.0152737992, -0.0376548097, 0.0180094056, -0.00809953827, -0.00389555632, -0.0270074029, 0.00639649, 0.00206846651, 0.00244226563, 0.00484765414, -0.005957318, 0.000696473173, 0.00778440759, 0.00883037411, -0.0142814713, 0.021227764, -0.0100439647, -0.00134601188, 0.0100640794, -0.0101110134, 0.0170573071, 0.02562619, -0.00181870849, 0.00236180681, 0.0558921807, 0.01161962, 0.0151933404, 0.0178753063, -0.0165075026, -0.00586344907, -0.0389153324, 0.00609141635, -0.020838879, -0.0137048485, 0.00859570224, 0.00769053865, 0.0498309359, -0.00531029375, 0.00241879839, 0.0470416918, 0.00438836776, -0.0451106764, -0.00676190807, 0.030011205, 0.0101110134, -0.00144239503, 0.0009420407, 0.0290725157, -0.00443530222, -0.00825375132, 0.00752962101, -0.00826045685, -0.00826045685, -0.0210266169, 0.0246740915, -0.0185189787, 0.0257602874, 0.0379230045, 0.0156090446, 0.000764779514, -0.013155045, 0.0345169082, -0.0106407022, 0.0247545503, 0.0289384183, 0.00230984366, 0.0127192261, -0.00113983569, 0.0432869382, 0.0284556635, -0.0376548097, -0.037493892, 0.00242047478, -0.00944052171, -0.0407390706, 0.016346585, 0.00406317925, -0.00154548313, -0.00577963749, -0.0056287772, -0.03371232, -0.0152737992, -0.029608909, -0.0218580272, 0.00758996513, 0.0274901558, 0.0124108, 0.0252507143, -0.00347985141, 0.0417045765, 0.0205036327, -0.0031345482, -0.000331474293, 0.00164773315, 0.0195247158, 0.0036776464, -0.0027942739, 0.0226492062, -0.0242181569, 0.0219921246, 0.0190017316, 0.0174998306, -0.00337257283, 0.0144289797, 0.00563548179, 0.00802578498, -0.0236013047, -0.00178853632, -0.0111905048, -0.0288311392, -0.00401959708, -0.0393980853, -0.00476384303, 0.00419392483, 0.0189749133, -0.0308694337, 0.0131818652, -0.00786486641, 0.00085655303, -0.00597408041, -0.0070669814, 0.0090717515, -0.00187737646, 0.00205338048, -0.000653729308, 0.0120822592, 0.052942019, -0.00388885126, 0.0243790746, -0.0201013386, 0.0158236027, -0.00256965915, -0.0190956015, 0.00123370462, 0.00145748118, 0.0167757, -0.00427103136, 0.0107815051, 0.0155822253, 0.0222335011, -0.0174059626, 0.0111368652, -0.0190956015, -0.00311778602, -0.0398272, -0.0303330403, -0.0129538979, -0.0121560125, 0.0286702216, 0.00834091567, -0.00322841713, -0.0179691743, -0.01161962, -0.00793191604, 0.0113983573, 0.0315399244, -0.00338095403, -0.0281338282, -0.0157163236, 0.0241913367, 0.0263503212, -0.01834465, -0.0205572732, 0.0040732366, -0.00411681831, -0.0238963217, 0.0153810773, -0.0447352, -0.0279729106, -0.00757655501, 0.0407122523, -0.0022746427, -0.00699993223, -0.0404708721, -0.0153944874, -0.00465321168, -0.00548126874, -0.00870298129, -0.0521642491, 0.0204902235, -0.0280533694, 0.00853535812, 0.00508232648, -0.0159845203, -0.0154749462, 0.00720107974, 0.0358310714, -0.0111569809, -0.0336318575, 0.0271280911, 0.01605157, -0.027516976, -0.0337927788, 0.0570722446, 0.0169366188, -0.00346979406, -0.0138523569, -0.0332295634, 0.0215630103, -0.000900134968, -0.00440848246, -0.0189346839, -0.0272621885, 0.00818670262, 0.0193906166, 0.0162795372, 0.00590703124, 0.0264039598, -0.0172986835, -0.0155151756, -0.00783804711, -0.021831207, 0.00756314537, -0.0547389351, -0.000319740677, -0.0180362239, 0.0179423559, 0.0696238503, -0.0202890765, -0.0110698165, 0.0245131738, 0.0413291045, 0.0299575645, -0.0182105526, -0.0179289449, 0.0268330742, -0.0416509397, 0.0184519291, -0.00637302268, 0.0129606025, -0.0164136346, -0.0180094056, -0.0410877243, 0.000592546945, 0.0359383486, 0.00985622685, -0.0105602425, -0.00847501401, 0.0100640794, -0.0230515022, -0.0147105856, -0.00542092463, -0.0430992022, -0.0124510294, -0.00641325209, 0.0433137566, -0.0281874668, 0.00123286643, 0.0333636627, -0.0172584541, -0.00979588274, -0.00909857079, -0.0254920907, 0.0135774547, 0.0191894695, -0.00317310146, 0.0139462259, -0.00228134776, 0.0363138244, 0.0365552, -0.0307889748, -0.0117403083, -0.0112039149, -0.0170036666, 0.00174160197, -0.0262832716, -0.00577963749, 0.00184552814, -0.0242583863, -0.0121560125, 0.0215361901, 0.0274365172, 0.019538125, -0.00201817974, -0.0284824837, -0.021428911, -0.0244863536, -0.00820681732, 0.00428108871, -0.028214287, 0.00742904702, 0.0278924517, -0.00186061417, 0.00520301471, 0.0102317017, 0.00820011273, -0.0148446839, -0.00906504691, -0.0147642251, 0.0207852405, 0.0081263585, -0.0119548654, 0.00927960407, -0.00755644031, 0.0233196989, -0.0245534033, 0.00188911008, -0.0304135, -0.0198599622, 0.0108217346, 0.0161186177, -0.0221664533, 0.00293675321, 0.00989645626, 0.0141473729, 0.0275974348, -0.0124309147, -0.0058165146, 0.038378939, -0.00974894781, -0.00841467, 0.000380294456, -0.0292066149, 0.00120269437, 0.00235007307, 0.0189883225, -0.0259882547, -0.0140669141, -0.0156358648, -0.0571795255, -0.0248618294, -0.00528682629, 0.00739552267, -0.000771903491, -0.0108016199, 0.020530453, 0.019336978, 0.0129807172, -0.0181703232, 0.0090248175, 0.0286434013, -0.0118140625, -0.000286635157, -0.0186933056, 0.00249925745, -0.00284623681, 0.00107530097, 0.0343291722, -0.0111502754, -0.00459622, 0.0279460903, -0.00689265365, -0.00331725716, -0.0117872423, -0.00630597351, -0.00154715939, -0.00294848694, 0.0183044206, -0.00441183476, -0.0122230621, 0.0285361223, -0.0194844864, 0.00357372034, 0.00978247263, 0.0153408479, -0.00764360419, -0.00644342462, 0.0233331081, 0.00940699689, 0.002180774, -0.0100640794, 0.0186798964, 0.000452581851, 9.09354276e-05, -0.0294748116, -0.022729665, 0.02711468, 0.0107748006, -0.0119079314, 0.0214155018, 0.00620204723, 0.0164672732, 0.0853401721, -0.0115659805, -0.0243120249, -0.0276510734, -0.00278756884, 0.006879244, 0.0281338282, 0.00283115078, -0.00122029474, -0.0216568783, 0.0347314663, 0.00573270349, -0.00039579958, 0.025223894, 0.00408664625, 0.0102786366, -0.0156760942, 0.011914636, -0.00539075257, -0.00941370241, 0.0062690964, -0.000135565017, 0.014858094, -0.0127728656, 0.0113983573, -8.31828656e-05, -0.00289484742, -0.0179155357, -0.0209193379, 0.00963496417, -0.00986963697, -0.00381174474, 0.00386873656, -0.0130745862, -0.0299843848, 0.00150106312, 0.0213886816, -0.00101998542, -0.0226223879, 0.00664121937, 0.00282779848, 0.00206176168, -0.0262698606, -0.0186128467, -0.00973553862, -0.0126655865, -0.0180228148, 0.0263369102, -0.0167757, -0.00880355481, 0.00668815384, -0.0110899312, 0.0242315661, 0.00936006289, -0.0188274048, 0.0115190456, 0.0190687813, -0.0117738331, -0.00313622458, 0.00246405671, -0.0161320288, -0.000941202627, 0.000748017221, -0.0210534371, -0.0138389468, 0.014254652, -0.0223005507, -0.00180362246, 0.00660769502, 0.0375207104, -0.0352946781, 0.0295820907, -0.00111972098, 0.00887730904, -0.0278119929, 0.00390561367, -0.0124778487, 0.0207316, 0.0134098325, -0.00507562142, 0.00627580145, 0.0109088989, 0.0014851389, 0.039371267, -0.03269317, -0.00513931829, -0.0170707162, 0.0116464393, 0.0191358309, -0.0194308478, -0.021831207, -7.34921632e-05, -0.00645348197, -0.0411145464, 0.000439591066, -0.00427773641, 0.0278119929, -0.0142010124, -0.0406586118, -0.0354824178, 0.00571594108, 0.0229844525, -0.00895776786, -0.0348387435, -0.00679543242, -0.0306280572, 0.0360188112, 0.00435484294, -0.00677196542, -0.00693288306, 0.0414363816, 0.0207852405, 0.0150458319, 0.0110228825, 0.00967519358, 0.0145362578, -0.00447553163, 0.00587685918, 0.0161722582, 0.00509908888, -0.0256396, -0.0175266508, 0.00551814586, -0.0134567665, -0.0170573071, -0.00622551469, -0.00253445818, -0.00252272468, 0.0137853073, 0.0142814713, -0.018250782, 0.0173523221, -0.0090248175, -0.00360053987, -0.0162258968, -0.0165343229, 0.00432802318, 0.0181703232, -0.00108452013, -0.00244058948, 0.00273057702, 0.00892424304, -0.0091388, 0.0139059965, -0.0192833394, -0.00403971178, 0.00732176844, -0.0106407022, 0.0166013725, 0.00185726176, -0.00393913826, -0.0196454041, 0.0272890087, -0.00128734391, 0.0294211712, -0.0269537624, -0.000721197517, -0.00678537507, 0.0398540199, 0.000574946578, 0.0129874228, 0.00922596455, 0.0240706485, -0.00198465516, 0.0162124876, -0.0222335011, 0.00268029026, -0.0172048155, -0.00914550573, 0.00172483968, -0.00680884253, -0.00332899089, -0.0229442231, -0.013262324, -0.00604783418, 0.0249959268, 0.0102786366, -0.0211741254, -2.95435366e-05, -0.0131751606, -0.00332060969, -0.00432131859, -0.00497504789, 0.0102853412, 0.0173523221, 0.0103322761, -0.00958803, -0.0156895034, 0.00018302325, 0.0148849133, 0.00536058052, 0.031298548, 0.0137853073, -0.0135037014, 0.0375743508, 0.0267392062, 0.018746946, -0.00221597473, -0.0197258629, -0.0177143887, -0.031808123, -0.0162795372, 0.0222603213, 0.00752291596, 0.0103054559, -0.0428041853, -0.00846160389, 0.0184117, -0.00486106426, 0.0013661267, 0.0161320288, -0.00952098053, 0.0299307462, -0.0119883902, 0.0119548654, -0.00844819471, 0.00432802318, -0.0140132746, 0.0180764534, 0.0136847338, 0.00476049026, -0.00969530828, -0.00864934176, 0.00500186766, -0.0146703562, -0.0126253571, 0.0284824837, 0.00750280125, 0.0357237943, -0.0157967824, -0.0281606484, 0.0102719311, 0.00925948936, 0.00102166156, -0.00154967373, -0.0316740237, 0.0188944545, -0.0271549094, -0.014858094, 0.0248752385, 0.0107479803, 0.0194844864, 0.0244058948, -0.0001511749, 0.0046666218, -0.000123307604, 0.0164136346, 0.0259077959, -0.00357372034, 0.009373473, 0.00419727759, -0.00519295735, -0.00846160389, -0.0184653383, 0.0152603891, -0.00302894576, -0.00856217742, 0.00597743271, 0.0135238161, -0.0289384183, 0.0248752385, -0.0134701766, 0.00386203174, 0.0108284391, -0.00966848899, -0.00154548313, -0.0190285519, -0.0233733375, -0.00316136796, -0.00254786806, -0.0151665201, 0.00667474419, -0.00222770846, 0.0104864892, 0.0125583075, 0.00455934275, -0.00170053437, 0.0232928786, -0.0299843848, -0.00333737209, -0.0277851727, 0.0169902574, -0.0108887842, -0.0267794356, -0.0251568444, -0.0119347507, 0.000518373854, 0.0105133085, 0.0164806843, 0.00936676748, 0.00449564634, -0.00899799727, 0.0100841941, -0.0217775684, 0.0264844187, 0.0297966469, 0.000559860491, 0.00119431317, -0.000547288801, 0.0365283825, -0.00822693203, -0.0141741922, 0.00484094955, 0.00929301418, 0.0209193379, -0.00504544936, 0.00247243792, -0.00257301168, -0.00746257184, 0.00677867, 0.0392103493, -0.0100976033, -0.0117336037, 0.00479066279, -0.010070784, -0.0215630103, 0.0220189448, -0.0222066827, -0.00591373583, 0.00249422877, -0.0196588133, -0.0124912588, -0.0140937334, -0.00788498111, -0.0149787823, 0.0136646191, 0.00453252345, 0.0230917316, 0.00311275735, -0.0228369441, 0.0379766449, -0.00676526036, -0.00627915375, 0.0247813705, -0.00993668567, 0.00701334234, -0.0284556635, 0.0125784222, 0.0267928448, 0.0240572393, -0.0352678597, 0.0156090446, -0.0290456973, 0.0109558329, 0.00743575208, -0.0201013386, -0.00383185945, 0.0241511073, -0.0155554051, 0.00957462, -0.0152872084, -0.00705357175, 0.00554496562, -0.00173657329, -0.00686248159, 0.0260687135, 0.010520013, 0.0015714647, -0.0139328158, 0.0163197666, -0.0190419611, 0.0151128806, 0.0231721904, -0.013309258, 0.0051627853, -0.00105267181, -0.00133427826, -0.0380302854, 0.0129807172, 0.0421336927, 0.0179289449, -0.0107949153, -0.010768095, 0.0156090446, 0.0220994037, 0.0170036666, 0.00342118344, 0.00796544, -0.0102182925, 0.000436657661, -0.0153140286, -0.00956791546, -0.00109625375, 0.0113111939, -0.0332295634, -0.0341950729, -0.00652723573, 0.03907625, 0.00451911334, -0.0155822253, 0.0371184163, 0.0122230621, 0.0162929464, -0.000718264142, -0.0310035329, 0.00200812239, -0.01081503, 0.00268867146, -0.0171645861, -0.00242885598, -0.020838879, -0.0030725277, -0.0152201597, -0.00296524912, 0.00337424898, 0.00614170311, -0.00444871187, -0.0132422093, 0.026913533, -0.0222066827, 0.00274231075, 0.0131684551, 0.0234672073, -0.0140266847, -0.0223944206, 0.00532035111, 0.00297195418, 0.0100774886, 0.0104060294, 0.0156090446, -0.00392237585, -0.0310303513, -0.0147776352, -0.00838114507, -0.0231990106, -0.0073284735, -0.0149385529, 0.00659093261, 0.0081263585, -0.00498845754, -0.00412352337, -0.00494152308, 0.0121962428, 0.00272219605, -0.0201147478, -0.010473079, 0.0228771735, -0.0121962428, 0.00382515462, -0.0113111939, -0.0143753402, 0.0006223, -0.00732176844, -0.00537734292, 0.0111972103, -0.0205438621, 0.00593049824, 0.000398732984, -0.0165611431, -0.00521977711, 0.0168025196, -0.00758996513, 0.00111804472, 0.00431126123, 0.00724801421, -0.00609476864, -0.0107412757, -0.0117336037, -0.0114117675, -0.0319422185, 0.0238024518, -0.00858899765, 0.0256396, 0.0160113405, 0.0228235349, 0.0307353362, -0.00620875228, -0.00279595, 0.00276242546, 0.0129941273, 0.00637302268, -0.0173255038, 0.0162124876, 0.00420398219, 0.0122968163, -0.0151397008, 0.0196588133, -0.0045459331, -0.00652053114, 0.00847501401, -0.0222871415, 0.0188944545, -0.000144260455, 0.010768095, -0.00897788256, 0.0560531, 0.0100841941, 0.0191224199, 0.0139059965, -0.00914550573, 0.00541086728, -0.0240572393, -0.0196051747, -0.0220457651, -0.0141473729, 0.0228235349, -0.0101512428, -0.00603777682, 0.0045023514, 0.0136243897, -0.0106071774, -0.0113044884, -0.0165879633, 0.000359132071, 0.0141339628, 0.00311443349, -0.00413022842, -0.0109021934, 0.0145764872, 0.00838785, -0.0158638321, -0.0301989429, 0.00172819209, 0.00811294839, -0.000122364712, -0.0023450444, 0.00779781723, 0.00986293145, -0.00814647321, 0.0055919, 0.0274231061, -0.00297195418, -0.000758074573, 0.0126655865, 0.00570253097, 0.00195951178, 0.0234806165, 0.0210802555, -0.0174730122, 0.000606375863, 0.000329798058, 0.00941370241, -0.00994339, -0.00357707264, 0.0150190117, -0.000487782643, -0.0090449322, -0.0100841941, 0.0043581957, -0.00750950584, 0.00542427693, 0.013309258, -0.0130812917, 0.0273158289, 0.00319824507, -0.00903152209, 0.0124711441, 0.0076570143, -0.00286467536, 0.00137953646, -0.00260653603, -0.0124309147, 0.00518625276, -0.0151933404, 0.00853535812, 0.00738881761, -0.0148044545, -0.00866275188, 0.016145438, 0.00745586678, 0.019336978, 0.00121526606, 0.0073284735, 0.0105602425, -0.014858094, 0.0121426033, 0.00124627631, -0.0128466189, 0.00418051518, -0.0202756654, -0.0149385529, -0.00238695019, 0.0117000788, 0.0123303412, 0.0170841254, -0.0107345711, -0.0070669814, 0.0165745523, -0.0147642251, 0.00761678489, 0.00372458086, -0.0108016199, -0.0153944874, -0.0143887503, 0.0307621546, -0.00135187875, 0.0149117336, -0.00245735166, -0.0165879633, 0.0135439308, 0.00486441655, 0.00356031046, 0.00629926892, -0.00323847448, -0.00409335131, -0.00578969484, -0.0274499264, 0.00296357297, -0.00948075112, 0.00911198091, 0.00771735841, -0.00174160197, 0.0114452923, 0.0232794695, -0.0402026772, -0.0349460244, 0.00145999552, 0.0149251437, -0.0101981778, 0.000551060308, 0.016950028, -0.00357372034, -0.00317142531, -0.00335916295, -0.0268330742, 0.0164940935, 0.00612158841, 0.00732176844, -0.00516613806, -0.00387544162, 0.00174830691, 0.0185994375, 0.0102384072, -0.00651047332, 0.000869962852, 0.0120554389, 0.0230112728, 0.000682225218, -0.00125046691, -0.00295351562, 0.0216971077, -0.0087901447, 0.00354354805, 0.00576622784, -0.00854206271, 0.00892424304, -0.0109759476, 0.00247076154, 0.00151614915, 0.00712732598, 0.00233833957, 0.00291328598, -0.0129203731, -0.0175937, -0.0154347168, -0.00239700754, 0.0106675215, 0.00912539102, 0.0214423221, -0.00110547303, 0.0176071096, -0.0139864553, -0.00697311293, 0.0196051747, 0.000657081779, 0.000381132588, -0.0117000788, -0.00434478559, 0.00801907945, -0.0348387435, -0.0144423889, 0.0285093039, -0.0184921585, 0.0155956345, -0.0133293737, -0.0226089768, -0.00298536383, 0.0241376981, -0.0172048155, 0.0020986388, 0.0172852743, -0.00549803115, -0.0138389468, -0.006081359, -0.000270711, 0.00879685, 0.0308962539, -0.0192967486, -0.0111368652, -0.00984281674, -0.0051560807, 0.0274633355, -0.00418051518, -0.0258675665, -0.000222728937, 0.00683901459, -0.00936676748, -0.0109021934, 0.00623557204, 0.0146435369, 0.00813976862, -0.00541757233, -0.00531364605, -0.00227631908, 0.0155151756, -0.0328272693, 0.000739217, 0.00951427594, -0.0020165036, -0.00452917069, 0.0156760942, 0.00233163452, -0.00746927643, -0.00155135, 0.00752291596, 0.0137182586, 0.0132824387, 0.0427505448, 0.00181367982, -0.0045492854, -0.0115324557, -0.00209025759, -0.00263335579, -0.00586344907, -0.00759667, -0.00334072439, 0.0059372033, -0.00174160197, 0.0167354699, 0.030708516, -0.000715330767, -0.00733517809, -0.00125549559, -0.0131282257, -0.00603442453, 0.00533711305, -0.0126186525, -0.0255591404, -0.0148849133, -0.0096617844, -0.0087365061, 0.0222200919, 0.0191090107, 0.0102384072, -2.64137034e-05, 0.00282779848, 0.0209595673, 0.0216032397, -0.0121828327, 0.0104529643, 0.000383437378, 0.0265916977, -0.00788498111, -0.00197459781, -0.0203293059, -0.015756553, -0.0025797165, 0.00700663729, -0.000581232423, 0.0359115303, -0.0128063895, 0.0212143548, -0.00663786707, 0.00722789951, 0.00275907293, -0.00999703, 0.00371117098, -0.00759667, -0.00796544, -0.0106943408, 0.0101579484, -0.00401624478, -0.00263670832, -0.00528012123, 0.0171377659, -0.0117000788, -0.00404641684, -0.00719437515, -0.0171779953, -0.01161962, 0.0123973899, -0.00359383505, 0.0185457971, -0.0274499264, 0.0118207671, 0.0368770398, -0.00519966241, -0.0196990427, -0.0107546858, 0.00614170311, 0.00498845754, -0.00633279327, 0.00457945792, 0.0110832267, 0.00627915375, 0.0124845542, -0.0110899312, -0.0011356452, 0.0291261561, 0.0191760603, 0.0102719311, 0.0247009117, 0.00260988856, 0.000457191461, 0.017647339, 0.00376145798, 0.0283752047, 0.00166114292, 0.0062422771, 0.00246740924, -0.0104261441, 0.013758488, 0.0315399244, -0.004361548, 0.0179289449, 0.0103590954, 0.0195515361, 0.00846830942, 0.0216434691, -0.00382515462, -0.0334709398, 0.00611153105, 0.00182038476, 0.00189413875, 0.0366088413, 0.0131617505, -0.0100908987, -0.0101244235, 0.0208657, -0.0107345711, -0.014053504, 0.00590703124, 0.0278656315, 0.000525078736, 0.0171511751, -0.00910527632, -0.0154749462, -0.0297430083, 0.0190151427, -0.00390226115, -0.0108016199, -0.0154078975, -0.0223676, -0.0105267186, -0.0270610414, -0.00768383406, -0.0107412757, -0.000992327579, -0.00386873656, 0.0314594656, -0.00287473272, 0.0222871415, 0.0022126222, 0.00772406347, 0.0144021595, 0.0191090107, 0.0117872423, -0.0106071774, 0.0125985378, -0.0177412089, 0.00158655073, -0.00301050744, 0.0269403532, 0.0375743508, 0.0162661262, 0.0114989309, 0.00455263816, -0.00837444048, -0.00539075257, -0.00897117797, 0.0178618971, -0.0175266508, 0.0125314882, 0.0165611431, -0.0162124876, 0.00579975266, -0.0161320288, -0.00171394413, 0.00625233445, 0.0106541114, 0.00944052171, -0.0135439308, -0.0084548993, -0.00311778602, 0.0217641573, 0.0105066039, -0.00406317925, -0.0311376303, -0.00611823611, -0.0013208685, 0.0227564853, 0.00432802318, 0.0175266508, 0.0293675326, -0.0056287772, 0.0107010463, -0.0143485209, 0.0109424228, 0.017446192, -0.00949416123, -0.019538125, 0.00933324359, -0.00230816728, 0.00852194801, -0.0204634033, -0.00587015413, -0.0110832267, 0.00317813014, -0.00143569021, 0.0168159287, -0.0180094056, 0.0139998645, 0.00825375132, -0.0215361901, -0.00430790847, -0.0148849133, 0.0104462598, 0.0205438621, 0.0214825515, 0.000362065475, -0.0226089768, -0.0262698606, -0.00374469557, 0.00522313, -0.00135606923, 0.000355360564, -0.000218328831, 0.00958803, -0.00112139725, -0.00261156494, -0.00199471251, -0.000469344115, 0.0195113067, -0.0121828327, 0.00970201381, -0.00295351562, -0.00338765886, 0.00892424304, -0.0116129145, 0.017553471, 0.0194844864, 0.00104680506, -0.0064333668, 0.00505885901, 0.0040732366, 0.0235878956, -0.000964669802, -0.0101311281, 0.00366423675, -0.0214959607, -0.00813976862, 0.00611488335, 0.00447217887, 0.013758488, 0.00717426045, -0.0209595673, 0.00846160389, -0.0117738331, -0.00507562142, 0.00168712449, -0.00555502297, -0.0073485882, -0.00768383406, 0.00420063, 0.0064099, 0.00522983447, -0.00685242424, 0.0184653383, 0.0151665201, 0.0110497018, -0.00712062092, -0.00841467, -0.00352343335, -0.000692701666, 0.0155956345, -0.00364747434, -0.00271213846, 0.017043896, -0.0285897627, 0.0177546181, 0.0345169082, 0.00811294839, 6.42729065e-05, -0.0164806843, -0.00955450535, -0.0048543592, 0.00154380698, 0.00294345827, 0.0138255367, 0.00419392483, -0.0112843737, -0.00181200355, -0.013108111, -0.00213719206, -0.000978917698, -0.0194040276, 0.00747598149, -0.00592044089, -0.0109156035, 0.00825375132, 0.0143217007, -0.0130678816, -0.0174596012, -0.0101914722, -0.0163331758, -3.96271025e-05, 0.018237371, -0.00307588023, 0.0282411072, -0.00852865353, 0.0153676681, -0.00833421107, 0.0128667336, 0.00251266733, 0.0201281589, -0.0116129145, -0.0151262907, 0.00457610516, -0.0160649791, -0.0292870738, 0.0107882097, 5.59441432e-05, -0.00953439064, 0.0218043867, 0.00831409637, -0.00826716144, -0.00970201381, 0.00977576803, 0.013758488, 0.00527006388, -0.00600760477, 0.0123303412, 0.0139864553, -0.0123571604, -0.00506556407, -0.0214825515, -0.00489458861, -0.00826716144, 0.0132824387, -0.00389555632, 0.010861964, 0.00127477222, 0.0247679595, -0.0146837663, 0.0268598944, 0.00616852287, -0.000941202627, 0.00734188315, -0.00519966241, 0.00251099118, 0.00146083359, -0.00376481051, -0.0133897178, 0.0120889638, -0.0220055338, 0.00261826976, -0.0153006185, -0.0296357293, 0.00237354031, -0.0281606484, 0.0045224661, 0.00635290798, 0.00710721128, -0.0101445382, -0.0188810434, 0.0124108, 0.00440848246, 0.00720107974, 0.0150860613, -0.00432131859, -0.00362065481, 0.00190754863, -0.0205840934, 0.00283785583, 0.0055919, -0.0174327828, -0.0132489139, -0.00687253894, -0.0154078975, 0.0217239279, 0.0044051297, 0.00446882658, 0.00263335579, 0.0281338282, 0.00709380116, 0.0091388, -0.00502198236, -0.00147172913, 0.00141641358, -0.0165879633, 0.00924607925, -0.00324015063, 0.0291261561, -0.00321835978, -0.0325858928, -0.0217105187, 0.0171645861, -0.0156895034, 0.00805260427, 0.00191425357, 0.0106474068, -0.0169366188, -0.0107345711, -0.0231721904, -0.0107479803, -0.018733535, 0.0201952066, 0.0302257612, 0.0194978956, -0.0253982227, -0.0103993248, 0.0171377659, -0.00744916173, 0.0318617597, 0.00339939236, -0.00400618743, -0.00567571167, 0.0194978956, 0.00964837428, 0.00943381712, 0.0113782426, 0.00805260427, -0.00627580145, -0.00235174922, -0.0198465511, 0.00778440759, 0.000472277519, -0.0155956345, -0.00303062215, -0.00394249056, -0.0180764534, -0.00627915375, 0.00942711253, -0.00930642337, 0.00276410161, 0.0127326353, -0.0106339967, 0.00426432677, -0.00732176844, 0.00394919561, -0.0119548654, 0.00429114653, 0.0119816847, 0.0176071096, -0.00269872881, -0.0012093992, 6.80968078e-05, -0.0144289797, 0.00973553862, -0.0097087184, -0.0043581957, -0.000891753822, 0.00142563274, 0.0138121275, 0.0202488471, -0.0132824387, -0.00057243224, -0.00236851163, -0.00054058386, -0.0303330403, -0.000726645289, -0.0016376758, -0.0136713237, -0.00959473476, 0.00282444595, 0.00034781752, -0.00859570224, 0.00304403203, 0.0249691084, 0.0040732366, -0.0143753402, 0.0184251089, 0.00132757344, 0.0194308478, -0.0126052424, 0.0284824837, 0.0240438301, 0.00216904026, -0.0203427151, -5.77513265e-06, -0.00280433125, -0.00283282716, 0.00465656444, -0.00312784337, 0.0081531778, -0.0150726512, 0.00427438412, -0.00148430082, -0.0214423221, 0.00137702213, 0.000823866576, -0.00261491723, -0.00817999803, -0.00665462902, 0.00209696242, -0.00518960506, 0.0115928, 0.0137718981, 0.000264006085, -0.012658882, -0.0204902235, -0.0053237034, -0.0134902913, 0.0140937334, -0.0143485209, -0.00728824362, 0.00887730904, -0.0137182586, -0.0276778936, -0.0109424228, -0.0173657332, -0.00172148726, 0.00316472049, -0.0103993248, 0.0203158967, -0.00147675781, -0.016252717, 0.0068189, 0.00490464596, -0.0204365849, 0.00510244118, 0.0205036327, -0.00923266914, 0.0210132077, 0.00657752249, 0.0198599622, -0.0152737992, 0.0111502754, 0.00982270204, 0.00125549559, 0.00220759353, 0.00365753169, 0.00579975266, -0.00944722723, -0.00791850593, 0.0252104849, 0.000751788728, -0.0102920467, -0.0111770956, 0.00786486641, -0.00921255443, -0.00799896475, 0.0215227809, -0.00983611215, 0.000255415391, 0.00699322764, 0.00282444595, 0.0100774886, 0.0177009776, -0.0441451669, -0.0118945213, -0.01685616, 0.00361059722, -0.000384904095, 0.00640319474, -0.00623557204, -0.00265514688, -0.00858229306, 0.0129002584, 0.0166550111, -0.00287305657, -0.00822693203, -0.0110899312, -0.0197124537, 0.0169634372, 0.0006223, 0.0124443239, 0.0013367926, -0.000446295977, -0.0191358309, -0.00757655501, 0.00186899537, 0.0125717176, -0.0110094724, 0.0100439647, 0.00623221975, -0.00846830942, -0.0128466189, 0.0147776352, -0.0270744506, -0.0013661267, 0.00318315881, 0.00662445696, 0.00151447288, -0.00637302268, 0.00777770253, -0.00921255443, -0.00424421206, -0.000707787694, -0.00144239503, -0.00371117098, -0.000293968653, 0.0378961861, -0.0102048824, 0.0170841254, 0.00962826, -0.0116933733, -0.00428444147, 0.00669821119, 0.00303565082, 0.0035100237, 0.0248886477, -0.0121426033, 0.00100322312, 0.0237085838, -0.00666803913, 0.00320159737, 0.00401289249, -0.0178484861, -0.024419304, 0.0124778487, -0.0019092249, -0.0119414553, -0.00747598149, 0.00842137448, 0.000177156457, 0.0172852743, 0.0248216, -0.00142982334, 0.0154883564, -0.0111100459, 0.00568576902, -0.0158370119, 0.00287976139, -0.0125516029, -0.0317276642, 0.0207986496, 0.00171310606, -0.010613882, -0.0243790746, -0.0125985378, 0.00128063897, -0.00711391587, 0.00385197438, -0.0229174029, 0.0022712904, -0.00391567079, -0.0081062438, -0.00712732598, -0.021227764, 0.0030490607, -0.0124040945, -0.000780703675, -0.0105535379, 0.00162510399, -0.0207986496, 0.00988304615, 0.00350667117, 0.00729494868, 0.00391567079, -0.0110631119, -0.00990316086, -0.00467332639, -0.00997021049, -0.00177847897, -0.00606459659, 0.0132287992, -0.00200979854, 0.0218177978, 0.0224882886, -0.0143485209, -0.000823447539, -0.0230112728, -0.0207986496, -0.00526000652, 0.00923937466, 0.0264441893, -0.0225687474, -0.00112391158, -0.0179691743, 0.0021925075, 0.029608909, -0.00778440759, -0.00114402629, -0.0134098325, -0.00258642132, 0.0065708179, -0.0120688491, -0.00542427693, -0.00968860369, 0.00727483397, -0.000631938339, 0.00339939236, 0.0175266508, -0.00887730904, 0.00670156348, -0.0151128806, -0.00569582637, -0.00261994591, 0.00394584332, -0.0242986158, 0.00378157268, 0.00362065481, -0.00652723573, -0.0188810434, -0.0109491283, 0.0178618971, 0.01515311, -0.0109826522, -0.0359651707, 0.00270040496, -0.0252507143, 0.00671832589, 0.0122565869, 0.00919244, 0.00187737646, 0.000351379509, -0.00574611314, 0.00416710554, 0.0128332097, 0.00400618743, 0.0248886477, -0.0248081889, -0.0142278317, 0.00850853883, 0.0183580611, -0.0198465511, 0.00394249056, 0.00165192375, -0.028214287, -0.0246740915, 0.0062456294, -0.0049951626, 0.0126186525, 0.00674514566, -0.0213216338, -0.0103859147, -0.00806601439, -0.0246740915, 0.00976906251, 0.0107613904, -0.0397735611, -0.00533711305, 0.00683566183, 0.00815988332, -0.014750815, 0.00727483397, -0.00393578596, -0.0288847778, -0.000208690515, 0.0223273709, 0.00471355626, 0.0164270438, 0.00107362471, 0.00217071665, 0.00318148267, -0.00892424304, 0.0151397008, 0.00918573514, 0.00391567079, 0.00584668666, -0.0216300599, 0.0230515022, -0.0118341772, -0.00068306335, 0.00467332639, -0.00479401508, 0.00346979406, -0.0320226811, -0.00111301604, -0.0160649791, -0.0156224547, -0.012363865, 0.00673173601, 0.00349661382, -0.00305576553, 0.0131952753, 0.00332060969, 0.0151128806, -0.0178082567, 0.00635626027, -0.00725471927, -0.0129538979, 0.00445206417, 0.0137853073, -0.000688511063, 0.00662110467, 0.0120085049, 0.00517619541, -0.000922764069, 0.0100372592, 0.0253848117, 0.0116062099, -0.00420733495, -0.00172651594, -0.00342453597, 0.0108418493, -0.0133226682, 0.0141205536, -0.0408731699, -0.0133293737, -0.00533711305, 0.014951963, 0.0311644506, 0.0150860613, -0.0190017316, 0.0184251089, -0.00824704673, -0.00990986638, 0.0249020588, 0.0151262907, -0.021227764, 0.0178082567, 0.0349996611, 0.0065942849, 0.00212042965, 0.00141138479, 0.0011809034, 0.0154883564, 0.0165879633, -0.0249959268, 0.0288847778, 0.00765030924, 0.000605537731, -0.00638308, 0.00640319474, 0.00833421107, 0.0164672732, 0.0166684221, -0.00229140511, -0.0166684221, 0.0109021934, -0.00594726065, -0.00460963, 0.00124040945, 0.0031345482, -0.0436355956, 0.00203997083, -0.0121224886, -0.0200745184, -0.0143217007, 0.047148969, 0.0193772074, -0.00256295409, -0.016252717, 0.00707368646, 0.000682644255, -0.0117939478, 0.00554831792, -0.00380504, 0.0140803242, -0.000117650328, 0.0075162109, 0.0259346161, -0.0143217007, -0.0147642251, -0.00535052316, -0.0036776464, 0.00539745763, -0.00208020024, -0.0117805377, 0.00427438412, -0.00660099, -0.0115928, -0.0118609965, -0.0057964, 0.00230481499, 0.0115525704, 0.0107613904, 0.0111636855, 0.00404976914, -0.00385532668, -0.016145438, -0.0087365061, -0.02392314, -0.00826045685, -0.00960144, -0.00868957117, -0.0331759267, -0.0389421545, -0.0157699622, -0.0169902574, 0.00309264264, 0.00706027681, 0.0106742261, 0.00185055682, 0.011666554, 0.00703345705, -0.00411346601, 0.0262698606, 0.0105066039, 0.0153676681, 0.00698652258, 0.00865604635, -0.0214423221, -0.0029702778, -0.0270610414, -0.0104261441, 0.00963496417, -0.0023333109, -0.0152201597, 0.0248886477, -0.0167757, 0.0115928, -0.000331055227, 0.00656076055, -0.01355734, -0.00520301471, 0.00124376197, -0.0116933733, 0.0235208459, -0.0197660923, 0.00714744069, 0.00678537507, 0.00131583982, -0.0140669141, 0.00299374503, -0.0204768144, -0.000744245714, 0.000722454686, -0.00097388908, 0.0156626832, 0.010520013, -0.033900056, 0.0016577905, 0.00755644031, -0.00503539201, 0.0144960284, 0.00317645399, 0.00299877371, -0.0112776691, 0.0140669141, -0.00163935195, 0.015756553, 0.016239306, 0.0186798964, 0.0129807172, 0.0132287992, 0.0005862611, -0.0110832267, -0.00828057155, -0.0229039937, -0.00868286658, 0.00157649338, 0.0025093148, 0.0177412089, -0.0127259307, -0.00107027218, 0.0145630781, 0.0201549772, 0.0174059626, -0.000338807789, 0.00488117896, -0.00164102821, 0.00524324458, 0.00771065336, 0.00361394975, 0.0467734933, -0.00686248159, -0.0319154, -0.000398732984, -0.0204365849, -0.0125113735, -0.0185994375, -0.00941370241, 0.0234135669, 0.00364076952, 0.000947907509, -0.0157297328, -0.0200879294, 0.00182373717, -0.00496163778, 0.000265263254, 0.00988975167, -0.019336978, -0.00527341664, 0.0099903252, 0.0177680273, -0.0310571715, -0.00411681831, 0.00974894781, -0.000187528116, -0.0240170099, 0.0116397347, -0.0196185838, -0.000800818438, -0.0128667336, -0.00433137594, 0.0148983235, -0.0138389468, -0.0305207781, -0.0175266508, -0.00547121139, -0.00717426045, 0.00875662081, -0.0107345711, -0.0178216677, -0.00368770375, 0.00324685569, 0.0282947458, 0.0311912689, 0.00302391709, 0.0117336037, 0.000957964861, 0.0108887842, -0.0141339628, 0.00549467886, -0.0171511751, -0.00400618743, -0.0123102264, -0.00878344, -0.00384191703, 0.0144289797, 0.00651717838, 0.0225419272, -0.00639984244, 0.0081062438, -0.016252717, -0.00690606376, 0.00748939114, -0.028107008, 0.00245232298, 0.00135104056, -0.00347985141, 0.00695299823, -0.00501192501, -0.010318866, -0.00239700754, 0.00437495764, 0.0159174707, 0.00567906396, -0.0145094385, -0.00631603086, 0.0163331758, -0.014053504, 0.0113916527, 0.0173120927, 0.00724130962, 0.00193436828, 0.0334709398, 0.0141205536, -0.013959635, -0.00266688038, 0.00801237486, -0.000315131067, -0.000697730342, 0.0153274378, 0.00338095403, -0.0129471933, 0.0194308478, -0.0119414553, 0.00235677813, 0.0145362578, 0.00842137448, 0.00268029026, 0.00597408041, -0.0147105856, 0.0125784222, 0.0182105526, 0.0247009117, 0.00392572861, 0.0110765211, 0.00789168663, 0.00229978631, -0.00197627395, -0.0120487344, 0.00736199785, -0.015059242, 0.000268406176, 0.0121023739, 0.0036541794, -0.0127728656, -0.0117201935, -0.0136109795, -0.00840796437, -0.0175132416, -0.0171914045, 0.00921255443, -0.00975565333, 0.0025294295, -0.00513261324, 0.00462303963, -0.000955450523, 0.000515440421, 0.00739552267, 0.0117738331, 0.014254652, -0.00725471927, 6.01871e-05, -0.00852865353, -0.0208925195, 0.0440915301, 0.00360724493, 0.00839455519, -0.0257602874, -0.005980785, 0.00660099, -0.00556172803, 0.00372122834, -0.0103926202, -0.0107479803, -0.00333066704, 0.0107546858, 0.00394584332, -0.00418722024, -0.00338598271, 0.00697311293, 0.0245399922, 0.0220189448, -0.00266017555, -0.00582992472, 0.00854876824, -0.0138523569, 0.0032753516, -0.0197258629, -0.0039324332, -0.00239365501, 0.00155721675, -0.0138791762, 0.00100238493, -0.00333066704, -0.00207349542, 0.00777770253, 0.00940699689, -0.00750950584, 0.00149519625, -0.0166952405, 0.0014071943, 0.0238963217, -0.000533459883, 0.00220591738, -0.0208791085, 0.0124510294, -0.00719437515, 0.00570588373, -0.00980258733, 0.012162718, -0.0158638321, 0.0101378327, 0.0126253571, 0.019538125, -0.0091186855, 0.0109558329, 0.00296189659, 0.034409631, 0.0158638321, 0.00217574532, -0.00272554834, -0.017446192, -0.0011767128, -0.0388616957, -0.00789839122, -0.0117067834, -0.00838114507, 0.00824704673, -0.0101043088, 0.00177847897, 2.82863657e-05, -0.00383185945, -0.0189480931, -0.013758488, -0.0101445382, 0.00245902804, -0.0210132077, -0.0177412089, -0.0127125205, -0.0130477669, 0.00746257184, 0.0243924856, 0.000962993596, -0.000890077616, -0.0115190456, -0.00364747434, -0.0115190456, 0.00157900772, 0.0168963894, -0.00572264614, 0.0359115303, -0.00711391587, -0.00778440759, -0.00631938362, 0.0174596012, -0.00440177741, -0.00351672852, -0.00312951952, 0.0253982227, -0.00940699689, -0.0196722243, 0.0113849472, -0.00252775336, -0.00518960506, 0.00128147705, 0.0192699283, -0.0111770956, 0.0154213067, -0.0117805377, 0.00783134159, 0.0189078636, -0.00398942502, -0.0131148156, 0.00908516161, 0.0127862748, -0.00685242424, -0.00385532668, 0.0217507482, 0.0164404549, -0.0196722243, -0.00108452013, 0.0151933404, -0.00282947463, -0.0101981778, -0.00477725267, 0.0048308922, 0.0117872423, 0.00990316086, -0.00518960506, 0.01754006, -0.00477390038, 0.00600089971, 0.0108485539, -0.00590703124, -0.0101445382, 0.00664457167, 0.0315399244, 0.0107613904, -0.00567906396, 0.00146334793, 0.0136981439, -0.021227764, -0.013356193, 0.0100104399, -0.00176004053, 0.0278656315, -0.0153944874, 0.0127259307, 0.00936006289, 0.0266185161, -0.0153944874, 0.0213082228, -0.00145999552, 0.00344297453, 0.00564889191, 0.00710050622, -0.00936676748, 0.00829398166, 0.00771735841, 0.0219116658, 0.0128265042, 0.0117000788, 0.00619199, 0.0113648325, 0.0147910453, -0.0165745523, -0.00224614679, 0.0266453363, 0.00537063787, -0.00573940808, 0.00346979406, 0.0139462259, 0.0200879294, -0.0084817186, -0.0129673081, 0.0110698165, 0.00686248159, 0.00445876922, 0.000828476215, -0.000657500816, 0.0136579145, -0.00710050622, -0.00738211256, -0.000988975167, 0.0152603891, 0.0262564514, 0.0166684221, 0.000964669802, -0.00203326577, -0.0168025196, 0.000131898269, -0.00167706714, -0.0222335011, 0.00482418714, -0.0117268981, -0.00695299823, -4.20366814e-05, -0.00397601537, -0.00974894781, -0.00617187517, -0.0167086516, -0.0222066827, -0.00502868695, 0.0138255367, 0.0093533583, -0.00846830942, -0.00520301471, 0.0045258184]
25 Jan, 2025
Phases of a Compiler 25 Jan, 2025 A compiler is a software tool that converts high-level programming code into machine code that a computer can understand and execute. It acts as a bridge between human-readable code and machine-level instructions, enabling efficient program execution. The process of compilation is divided into six phases: Lexical Analysis: The first phase, where the source code is broken down into tokens such as keywords, operators, and identifiers for easier processing. Syntax Analysis or Parsing: This phase checks if the source code follows the correct syntax rules, building a parse tree or abstract syntax tree (AST). Semantic Analysis: It ensures the program’s logic makes sense, checking for errors like type mismatches or undeclared variables. Intermediate Code Generation: In this phase, the compiler converts the source code into an intermediate, machine-independent representation, simplifying optimization and translation. Code Optimization: This phase improves the intermediate code to make it run more efficiently, reducing resource usage or increasing speed. Target Code Generation: The final phase where the optimized code is translated into the target machine code or assembly language that can be executed on the computer. The whole compilation process is divided into two parts, front-end and back-end. These six phases are divided into two main parts, front-end and back-end with the intermediate code generation phase acting as a link between them. The front end analyzes source code for syntax and semantics, generating intermediate code, while ensuring correctness. The back end optimizes this intermediate code and converts it into efficient machine code for execution. The front end is mostly machine-independent, while the back end is machine-dependent. The compilation process is an essential part of transforming high-level source code into machine-readable code. A compiler performs this transformation through several phases, each with a specific role in making the code efficient and correct. Broadly, the compilation process can be divided into two main parts: Analysis Phase: The analysis phase breaks the source program into its basic components and creates an intermediate representation of the program. It is sometimes referred to as front end. Synthesis Phase: The synthesis phase creates the final target program from the intermediate representation. It is sometimes referred to as back end. Phases of a Compiler The compiler consists of two main parts: the front-end and the back-end. The front-end includes the lexical analyzer, syntax analyzer, semantic analyzer, and intermediate code generator. The back-end takes over from there, handling optimization, code generation, and assembly. Phases of Compiler 1. Lexical Analysis Lexical analysis is the first phase of a compiler, responsible for converting the raw source code into a sequence of tokens. A token is the smallest unit of meaningful data in a programming language. Lexical analysis involves scanning the source code, recognizing patterns, and categorizing groups of characters into distinct tokens. The lexical analyzer scans the source code character by character, grouping these characters into meaningful units (tokens) based on the language’s syntax rules. These tokens can represent keywords, identifiers, constants, operators, or punctuation marks. By converting the source code into tokens, lexical analysis simplifies the process of understanding and processing the code in later stages of compilation. Example: int x = 10; The lexical analyzer would break this line into the following tokens: int – Keyword token (data type)x – Identifier token (variable name)= – Operator token (assignment operator)10 – Numeric literal token (integer value); – Punctuation token (semicolon, used to terminate statements) Each of these tokens is then passed on to the next phase of the compiler for further processing, such as syntax analysis. To know more about Lexical Analysis refer to this article – Lexical Analysis. 2. Syntax Analysis Syntax analysis, also known as parsing, is the second phase of a compiler where the structure of the source code is checked. This phase ensures that the code follows the correct grammatical rules of the programming language. The role of syntax analysis is to verify that the sequence of tokens produced by the lexical analyzer is arranged in a valid way according to the language’s syntax. It checks whether the code adheres to the language’s rules, such as correct use of operators, keywords, and parentheses. If the source code is not structured correctly, the syntax analyzer will generate errors. To represent the structure of the source code, syntax analysis uses parse trees or syntax trees. Parse Tree: A parse tree is a tree-like structure that represents the syntactic structure of the source code. It shows how the tokens relate to each other according to the grammar rules. Each branch in the tree represents a production rule of the language, and the leaves represent the tokens. Syntax Tree: A syntax tree is a more abstract version of the parse tree. It represents the hierarchical structure of the source code but with less detail, focusing on the essential syntactic structure. It helps in understanding how different parts of the code relate to each other. Parse Tree To know more about Syntax Analysis refer to this article – Syntax Analysis. 3. Semantic Analysis Semantic analysis is the phase of the compiler that ensures the source code makes sense logically. It goes beyond the syntax of the code and checks whether the program has any semantic errors, such as type mismatches or undeclared variables. Semantic analysis checks the meaning of the program by validating that the operations performed in the code are logically correct. This phase ensures that the source code follows the rules of the programming language in terms of its logic and data usage. Some key checks performed during semantic analysis include: Type Checking: The compiler ensures that operations are performed on compatible data types. For example, trying to add a string and an integer would be flagged as an error because they are incompatible types. Variable Declaration: It checks whether variables are declared before they are used. For example, using a variable that has not been defined earlier in the code would result in a semantic error. Example: int a = 5;float b = 3.5;a = a + b; Type Checking: a is int and b is float. Adding them (a + b) results in float, which cannot be assigned to int a. Error: Type mismatch: cannot assign float to int. To know more about Semantic Analysis refer to this article – Semantic Analysis. 4. Intermediate Code Generation Intermediate code is a form of code that lies between the high-level source code and the final machine code. It is not specific to any particular machine, making it portable and easier to optimize. Intermediate code acts as a bridge, simplifying the process of converting source code into executable code. The use of intermediate code plays a crucial role in optimizing the program before it is turned into machine code. Platform Independence: Since the intermediate code is not tied to any specific hardware, it can be easily optimized for different platforms without needing to recompile the entire source code. This makes the process more efficient for cross-platform development. Simplifying Optimization: Intermediate code simplifies the optimization process by providing a clearer, more structured view of the program. This makes it easier to apply optimization techniques such as: Dead Code Elimination: Removing parts of the code that don’t affect the program’s output. Loop Optimization: Improving loops to make them run faster or consume less memory. Common Subexpression Elimination: Reusing previously calculated values to avoid redundant calculations. Easier Translation: Intermediate code is often closer to machine code, but not specific to any one machine, making it easier to convert into the target machine code. This step is typically handled in the back end of the compiler, allowing for smoother and more efficient code generation. Example: a = b + c * d; t1 = c * dt2 = b + t1a = t2 To know more about Intermediate Code Generation refer to this article – Intermediate Code Generation. 5. Code Optimization Code Optimization is the process of improving the intermediate or target code to make the program run faster, use less memory, or be more efficient, without altering its functionality. It involves techniques like removing unnecessary computations, reducing redundancy, and reorganizing code to achieve better performance. Optimization is classified broadly into two types: Machine-Independent Machine-Dependent Common Techniques: Constant Folding: Precomputing constant expressions. Dead Code Elimination: Removing unreachable or unused code. Loop Optimization: Improving loop performance through invariant code motion or unrolling. Strength Reduction: Replacing expensive operations with simpler ones. Example: Code Before Optimization Code After Optimization for ( int j = 0 ; j < n ; j ++) { x = y + z ; a[j] = 6 x j; } x = y + z ; for ( int j = 0 ; j < n ; j ++) { a[j] = 6 x j; } To know more about Code Optimization refer to this article – Code Optimization. 6. Code Generation Code Generation is the final phase of a compiler, where the intermediate representation of the source program (e.g., three-address code or abstract syntax tree) is translated into machine code or assembly code. This machine code is specific to the target platform and can be executed directly by the hardware. The code generated by the compiler is an object code of some lower-level programming language, for example, assembly language. The source code written in a higher-level language is transformed into a lower-level language that results in a lower-level object code, which should have the following minimum properties: It should carry the exact meaning of the source code. It should be efficient in terms of CPU usage and memory management. Example: Three Address Code Assembly Code t1 = c * d t2 = b + t1 a = t2 LOAD R1, c ; Load the value of ‘c’ into register R1 LOAD R2, d ; Load the value of ‘d’ into register R2 MUL R1, R2 ; R1 = c * d, store result in R1 LOAD R3, b ; Load the value of ‘b’ into register R3 ADD R3, R1 ; R3 = b + (c * d), store result in R3 STORE a, R3 ; Store the final result in variable ‘a’ Symbol Table – It is a data structure being used and maintained by the compiler, consisting of all the identifier’s names along with their types. It helps the compiler to function smoothly by finding the identifiers quickly. To know more about Symbol Table refer to this article – Symbol Table. Error Handling in Phases of Compiler Error Handling refers to the mechanism in each phase of the compiler to detect, report and recover from errors without terminating the entire compilation process. Lexical Analysis: Detects errors in the character stream and ensures valid token formation. Example: Identifies illegal characters or invalid tokens (e.g., @var as an identifier). Syntax Analysis: Checks for structural or grammatical errors based on the language’s grammar. Example: Detects missing semicolons or unmatched parentheses. Semantic Analysis: Verifies the meaning of the code and ensures it follows language semantics. Example: Reports undeclared variables or type mismatches (e.g., adding a string to an integer). Intermediate Code Generation: Ensures the correctness of intermediate representations used in further stages. Example: Detects invalid operations, such as dividing by zero. Code Optimization: Ensures that the optimization process doesn’t produce errors or alter code functionality. Example: Identifies issues with unreachable or redundant code. Code Generation: Handles errors in generating machine code or allocating resources. Example: Reports insufficient registers or invalid machine instructions. To know more about Error Handling refer to this article – Error Handling. Frequently Asked Questions on Phases of Compiler What is the role of the lexical analyzer? The lexical analyzer (or scanner) reads the source code and breaks it into tokens like identifiers, keywords, operators, etc., while removing whitespace, comments, and illegal characters. What is lex and yacc in compiler design? Lex and Yacc are tools used in compiler design: Lex: Handles lexical analysis. It breaks the source code into tokens using patterns (like keywords, identifiers, numbers, etc.). Example: Identifies 123 as a number or if as a keyword. Yacc: Handles syntax analysis. It uses grammar rules to check if the sequence of tokens is valid and builds a parse tree. Example: Checks if a + b is a valid expression. What are the four types of compilers? Native Compiler: Generates machine code for the same platform it runs on. Cross Compiler: Produces machine code for a different platform than the one it runs on. Just-In-Time (JIT) Compiler: Compiles code at runtime to improve execution speed. Interpreter-Based Compiler (Transpiler): Converts code from one high-level language to another. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler
https://www.geeksforgeeks.org/phases-of-a-compiler?ref=asr10
PHP
Phases of a Compiler
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0162386857, -0.00321406964, -0.0253680535, 0.000423534919, 0.000939557503, 0.03539, -0.0209991112, 0.0287191421, -0.0268243663, 0.0251644831, 0.00120478682, -0.0396180078, 0.0458817258, -0.0129658934, -0.0107187852, 0.0250392072, 0.0337927528, 0.0181178, -0.000646435132, -0.0105387038, -0.00094983395, -0.0116035352, -0.0450674407, 0.00573913055, -0.0276543088, -0.00450987602, 0.0146336081, -0.0103821103, -0.0394927338, -0.00184486038, 0.0298622698, 0.0202944428, -0.0042789015, -0.0390542746, -0.0228625666, -0.0134826507, -0.010429088, -0.0301284771, -0.0288130976, 0.0262293145, 0.00917634554, -0.011838425, 0.0110084824, -0.00729331514, -0.0230035, 0.0303633679, 0.0225650389, -0.00296352105, 0.000691944966, -0.00776700862, -0.0284999106, 0.037425708, 0.0603822283, 0.0134200128, 0.0452866741, 0.0222048759, 0.0318823196, 0.000411790446, 0.0203414205, 0.00932510849, 0.0418729484, -0.00356640364, -0.0106796371, -0.0302537512, 0.04932677, 0.00278148171, -0.020983452, 0.00111278845, 0.0177263189, -0.00365644461, -0.0331350602, -0.00279126875, -0.0490762219, -0.0289383717, -0.0236455314, -0.00849516597, 0.00778658316, 0.0268870052, -0.00497965468, 0.0152521506, -0.0301597957, 0.0146962451, 9.53014751e-05, 0.00434545334, -0.00173230923, 0.00161094964, -0.0277169477, -0.0475729294, 0.0328845121, -0.00593487173, -0.0010266623, 0.0139211109, 0.0295177661, -0.025462009, -0.000823091541, 0.00360555202, 0.0125900712, 0.00223340653, -0.00735203736, 0.0288600754, 0.0170686282, 0.00725025218, -0.0115957055, -0.031036716, 0.0202161465, 0.0163326412, -0.038960319, 0.00119010615, 0.0308018271, 0.068525061, -0.0161917079, -0.0188537873, -0.000242963695, 0.00229212898, 0.00619716477, -0.0302067734, -0.0301441364, -0.0760415196, -0.00882401131, 0.0293924902, 0.0160820931, 0.0210774075, 0.00767305307, 0.0338553898, -0.0557784, 0.0236925092, 0.0202318057, -0.0375196636, 0.00103938556, 0.0175070893, -0.00266599446, 0.0145161636, 0.00185171131, 0.0199499372, 0.0148684978, -0.00781007204, 0.0288600754, 0.0141168516, 0.0191043355, -0.0174131319, 0.0120341657, 0.00242719031, 0.0191826317, -0.00921549369, 0.00494833617, 0.00473693572, -0.0110398009, 0.0668338612, -0.00860478077, -0.0116505129, -0.0321641862, 0.00204940978, 0.0114547722, 0.0173348356, -0.00483089173, 0.0158628635, 0.0154713802, 0.020732902, 0.0123082036, 0.0214375705, 0.00918417517, -0.0271375533, -0.0155340172, -0.0112433713, 0.00655732863, 0.00597010506, 0.00573913055, 0.00500314357, -0.0458190888, 0.0443784334, 0.0193705447, 0.0560289472, 0.0101472214, 0.00650252122, -0.024663385, -0.0141481701, -0.000471002131, 0.0346383527, -0.0058722347, -0.013560947, -0.0237551462, -0.0390855931, 0.00970093161, -0.0127779823, 0.030676553, 0.0126213897, 0.0412152559, 0.000551011355, 0.00656907307, -0.015518358, 0.00628329068, 0.00735986745, 0.0527404957, 0.00684702536, 0.00748514151, 0.00116270245, -0.0631695837, 0.0246320665, -0.0119480398, -0.00981837604, -0.0199499372, -0.00601316802, -0.0291106235, 0.00835423265, 0.0333856121, -0.0276699681, -0.013834984, -0.00304573239, 0.029079305, -0.0185719207, -0.0129972119, 0.018712854, -0.015518358, -0.0101628806, 0.0151503654, -0.023191411, -0.00698404433, -0.0126213897, -0.0178202745, -0.0156279728, -0.0151112163, 0.0152599802, 0.0383965857, -0.0153147876, -0.0287661199, -0.0489509478, -0.0277169477, -0.0714690089, 0.00240761624, -0.0144378673, 0.00199362356, 0.0661448464, -0.000348908594, -0.0242405832, -0.01791423, 0.000962067745, 0.0185249429, -0.00499531394, -0.0305043012, 0.029877929, -0.00282454467, -0.00154831249, -0.0580020174, 0.0020259209, -0.0200282335, 0.00326496246, 0.0107422741, 0.0261510182, -0.0399625115, 0.0206076279, 0.00632243929, 0.0041340529, 0.0563108139, 0.0211870223, -0.0319449566, 0.0251331627, 0.0471344702, 0.00922332332, 0.00836206228, -0.0245067924, 0.00229212898, -0.0203883983, -0.00510884402, 6.19031416e-05, -0.0321328677, -0.0248512961, 0.0504229218, -0.00361533905, -0.0148998164, -0.0529910438, 0.0719701052, -0.0507674254, 0.000896005135, -0.020732902, 0.0406515226, -0.0243032221, -0.00152678101, 0.0249765702, 0.0322894603, 0.0138741331, 0.0135061396, -0.0106248297, 0.0252897572, -0.008557803, 0.0173974726, -0.0355152749, -0.0434701927, 0.00444723899, -0.0514251143, -0.0386158153, -0.0101472214, -0.0076808827, -0.0292515568, 0.0281867255, 0.0297996327, -0.00328257913, -0.00613061292, -0.0234106407, -0.0151347052, -0.0192296114, 0.00770437159, -0.0144378673, 0.0207798798, 0.00477608386, -0.0422174521, 0.0207642205, -0.00257203868, 0.0176793411, 0.0145631414, -0.00683919573, 0.0276856273, -0.0103116436, -0.0147667127, 0.00134767778, 0.00493267691, 0.034231212, 0.00992016122, -0.0287034828, -0.0328218751, -0.0090589, 0.0379581228, -0.00950519, -0.0108988676, 0.0609772839, 0.0373317525, -0.00589572359, 0.0199029595, 0.0170999467, -0.00974008, -0.0225493796, 0.000837772095, -0.0315691344, -0.0379268043, 0.000866154616, 0.0254150312, -0.0434075557, 0.00440417603, 0.0502036884, 0.00426715706, 0.00973225, -0.0380207598, 0.00947387144, -0.0117757879, -0.00314556039, -0.0248512961, -0.0533355474, -0.026808707, 0.0237238277, 0.0516443439, 0.0235359166, 0.0017019693, 0.000594563724, -0.00311619905, -0.011564387, 0.00418886077, -0.00466646906, -0.0151033867, -0.029752655, 0.0347949453, 0.0382399894, -0.00519497, -0.0142264664, 0.0366114229, 0.0232697073, 0.00896494463, -0.0272471681, -0.00886315946, -0.00476825424, 0.00790402759, 0.0051284181, 0.00088475, 0.00404401217, 0.0174287912, 0.0109223565, -0.0248199776, -0.00549641158, 0.00476042461, -0.0121281212, -0.00726199662, 0.0191826317, 0.00860478077, 0.0476982035, 0.044535026, 0.0204510354, -0.00735986745, 0.00373474113, -0.00635375781, -0.049264133, -0.0173035171, -0.00101981137, -0.00468212832, 0.0307705086, -0.0347949453, -0.000573032245, 0.006749155, 0.00282650231, 0.0118071064, 0.00540637039, 0.0377388932, -0.0181804374, 0.0170216504, -0.0077630938, -0.0246790443, 0.0380833969, -0.00969310198, 0.00320428261, -0.0406515226, -0.00326887728, 0.00945038255, -0.00882401131, -0.00825244654, -0.0411839373, -0.0347009897, -0.00956782699, 0.00704276655, 0.0155340172, -0.0178202745, 0.0410899818, -0.0110711195, -0.0107892519, 0.0242249239, 0.0201378502, -0.0339806639, 0.000350131973, 0.0566553175, 0.0356405489, 0.0393361412, 0.010953675, 0.01150175, -0.0279205181, -0.00469778758, 0.000929770467, 0.0226276778, -0.0218133945, 0.0140228961, -0.0523646735, 0.0347323082, 0.00660039159, -0.0181804374, 0.00900409278, 0.0192452706, 0.0105935112, 0.00641248, -0.040557567, -0.0576888323, -0.0208425168, -0.0647041947, -0.0349515378, 0.0292515568, -0.0248043183, -0.0128249601, -0.00870656595, -0.0204980131, 0.0264798626, 0.0448482111, 0.00413013808, 0.0317413844, -0.0300188623, 0.026683433, -0.0385218598, 0.0294238105, 0.0279831551, 0.00279126875, -0.008957115, 0.019871641, 0.0272941459, -0.0156358033, -0.0305669382, -0.0209521335, -0.0172095615, 0.0140620442, -0.0155496765, 0.0594113544, 0.0119558694, 0.0214062519, -0.0128014712, 0.0136705618, -0.00933293812, -0.0247886591, -0.0369559303, 0.0207485612, 0.0264798626, -0.00078394328, -0.0547135659, -0.00719153, 0.0352334082, 0.0169746727, 0.0214375705, 0.0517383, 0.00266990927, 0.00493659172, 0.0362042822, -0.0232070703, -0.0184309874, 0.0151973432, -0.0293298531, -0.0347323082, -0.0167397838, -0.011102438, 0.037363071, -0.0622613467, -0.00424366817, -0.0303477086, 0.0595053099, -0.0238177832, -0.00438851677, -0.0179612078, 0.0362669192, 0.0167241246, -0.0333542936, -0.00787662342, -0.0208425168, -0.00338632194, 0.0577827878, 0.014046385, -0.0137488581, -0.0194801595, 0.0342625305, 0.0225650389, -0.00246046623, 0.0163952783, -0.0180708226, 0.0355152749, 0.00760258641, -0.00369167817, -0.00893362612, 0.0204353761, -0.0114626018, 0.0152521506, -0.015119046, -0.0229408629, -0.00651035085, 0.0123708406, 0.00546509307, 0.00398529, -0.0371125229, 0.00302420068, 0.0252114609, -0.0114782611, 0.0314595178, -0.021046089, 0.0300971586, -0.0409333892, 0.0198090039, -0.0150955571, 0.0075634378, -0.0141403405, 0.00169022486, 0.0228938852, 0.0316161104, -0.00235672342, 0.0188694466, 0.016442256, 0.0171312653, -0.0293924902, 0.0163013227, -0.0244128369, -0.0195271373, -0.00133201852, -0.00950519, 0.00296352105, 0.0230191592, 0.0195427965, 0.0189477429, 0.0231444333, 0.00347636291, 0.0199186187, 0.0132007832, -0.000521650189, 0.00916068535, 0.0174131319, -0.0205449909, 0.0134121832, 0.012762323, 0.0216568, 0.01749143, 0.0053085, -0.01171315, 0.0112590306, -0.00784139056, -0.00680004759, -0.0108832084, 0.0169746727, -0.00313968793, 0.00438068714, -0.0215628445, -0.00139269826, 0.00814283174, 0.0182274152, 0.00739901559, -0.00883184094, 0.0162700042, -0.0107344445, -0.0162700042, 0.00921549369, -0.00189771049, 0.00690966239, -0.00699578878, 0.0349828601, -0.0387097709, 0.0122064184, 0.00573913055, 0.0151738543, 0.00790794287, -0.0204197168, -0.00290675601, -0.00794317573, 0.00176069164, -0.0224241056, 0.0196054336, 0.000427694409, -0.00157278019, 0.0175384078, 0.027059257, 0.00339806639, -0.00212379149, 0.0150329201, -0.00454902416, -0.0141246812, 0.00682745129, 0.00641639484, 0.0124334777, -0.038929, 0.0116035352, -0.00863609929, 0.0273881014, -0.0351081342, -0.0175697263, -0.0125587517, 0.00481523247, -0.00112355419, 0.00070124265, -0.0361416452, -0.00813500211, -0.00659647677, 0.0209521335, -0.0103977695, -0.00164324697, -0.0201221909, -0.00155712082, -0.0276856273, 0.0109458454, 0.0031299009, 0.119261168, -9.13254771e-05, 0.0349202193, -0.0146884155, 0.00999845751, 0.0202161465, 0.00130852964, -0.006749155, -0.00909021869, 0.0219699871, 0.0328531936, 0.00194762449, -0.0161134116, 0.00217468408, 0.00428673113, 0.0108518889, 0.00942689367, -0.0134591619, 0.00481523247, 0.0480427071, 0.0180864818, -0.0242405832, -0.0418416299, -0.0265738182, 0.038897682, -0.0144770155, 0.0205763094, -0.00990450196, -0.021046089, 0.0160037968, 0.0108597185, -0.0166771468, -0.0227372926, 0.00346266082, 0.0279988144, 0.0100062871, -0.00305747683, -0.032759238, 0.00341176824, 0.0220639426, 0.0131303165, -0.0163483, -0.00443157973, -0.0175227486, 0.00171469245, -0.0236298721, 0.00805670582, -0.0115957055, 0.0246320665, -0.00862044, -0.0205919687, -0.0304260049, 0.0101080732, -0.0183213707, -0.0132947387, -0.00362316868, -0.0508300625, 0.0425306372, -0.0142812738, -0.0169590134, -0.00504620699, -0.00241153105, 0.032759238, -0.00215119519, -0.0280771106, -0.00586049, -0.00264642038, 0.00461166166, 0.0160194561, -0.0075086304, 0.00731288921, 0.041528441, 0.0157767367, 0.0132164424, 0.000135550741, -0.0167241246, 0.0131146573, 0.021046089, -0.00312598608, 0.00157571631, -0.042029541, -0.015518358, 0.0109771639, -0.0310680345, 0.0161447302, -0.0263545886, -0.0111885639, 0.016316982, -0.00374452816, 0.00734812254, -0.00769654196, -0.0190416984, -0.0221109204, -0.00390503602, 0.0089023076, -0.0165205523, -0.000244554103, 0.0293455124, 0.00506969588, -0.00948170107, -0.0272784866, 0.00442375, 8.63096138e-05, 0.0364548303, 0.0224241056, -0.0040792455, 0.035891097, 0.0139759183, 0.0161447302, -0.000199044283, -0.0299249068, -0.0123238629, -0.0113686463, -0.0165205523, -0.0137253692, -0.00971659087, -0.000130901899, 0.00560211157, 0.0496712737, 0.0209364742, 0.0208425168, 0.00765739381, -0.0167711023, -0.00331389764, -0.0166614875, 0.0127153452, 0.0185092837, 0.0319292955, 0.00493267691, 0.035891097, -0.0109771639, -0.0206546057, -0.0291889198, -0.0123082036, -0.00549641158, 0.00234302157, -0.00806453545, -0.0692767054, 0.0456311777, 0.00384435616, -0.0181647781, -0.0094347233, -0.0145944599, 0.039868556, -0.00484263618, 0.0173191763, 0.0416850336, 0.0174444504, 0.00791185722, 0.00901975203, 0.0285155699, -0.0195897743, -0.0169590134, -0.00536330743, -0.00289305416, -0.0395866893, -0.0305043012, 0.0407141596, 0.00616193144, -0.00218447112, -0.0165518709, 0.0173974726, -0.0722206533, -0.0366114229, -0.0396180078, 0.0119793583, -0.00861261, 0.0162230264, 0.00383652654, -0.0053554778, 0.0350454971, 0.0555591695, 0.00616193144, 0.00694098137, -0.000899430597, 0.0183057114, 0.00497574, 0.00193294382, 0.0117053203, 0.0391169116, -0.0107266149, 0.0114234537, 0.0227059741, 0.0290323272, 0.0312246289, 0.0284059551, -0.00602882728, -0.000906770874, -0.0426245928, 0.00335304579, -0.00114214956, -0.0278422218, 0.00467038387, -0.00108832074, 0.0103273029, 0.0205136724, -0.000345972483, -0.0323520973, -0.0209364742, 0.0194331817, 0.0181178, -0.00911370758, 0.0447542556, 0.0154009135, 0.00984969456, 0.00834640302, -0.0234263, 0.0185719207, 0.0204823539, 0.00485438062, 0.0191669725, -0.00642422447, 0.0235515758, 0.0182743929, 0.0117914472, 0.0224397648, -0.0162230264, 0.00939557515, -0.00676872907, 0.0041340529, 0.0055003264, 0.00729331514, 0.00944255292, -0.0114704315, 0.00509318477, -0.00333738653, -0.013960259, -0.0308957826, -0.0131224869, -0.00595444581, 0.0376762562, 0.00591529766, 0.00285977824, -0.00516756624, 0.0126918564, 0.00979488716, 0.0197776854, 0.0326026455, 0.00900409278, -0.00154929119, -0.0269496422, -0.00604057172, 0.00957565662, -0.00646337261, -0.0137018804, -0.0159020107, -0.0178046152, -0.0185092837, 0.0169433542, -0.0407767966, 0.00854997337, -0.00893362612, 0.0177263189, -0.019448841, -0.00747339707, -0.0307078715, 0.00525369262, 0.00612669811, 0.00102274748, -0.0144691858, -0.0329158306, 0.00510492921, -0.00641639484, 0.0102490066, 0.00572347129, -0.00629895041, -0.000334717362, 0.00216098223, 0.0210304298, -0.0072815707, -0.0112981787, 0.0198559817, 0.0245537702, -0.00965395384, 0.00140640012, 0.0266364552, 0.0106952963, 0.0138036655, 0.0245224517, 0.0110946083, 0.0165205523, -0.0200438946, -0.00101198175, -0.025399372, -0.0155418469, 0.00902758166, 0.00321602705, 0.00360555202, 0.00450204639, -0.00268165371, -0.0029028412, 0.0158158857, 0.00217468408, 0.0070036184, 0.020670265, -0.0472284257, -0.0176480226, 0.00746948225, 0.0185719207, 0.0224710833, -0.00116661726, -0.0193548854, 0.0152991284, 0.0136627322, 0.023128774, 0.00443549454, 0.0230348185, -0.00218642876, -0.0198246632, 0.00112257549, 0.00492093246, 0.00717978552, -0.0227529518, -0.0201221909, -0.016316982, -0.0192452706, 0.0367680192, 0.0415597595, -0.0181334596, 0.0179925263, 0.00829159468, 0.0360163711, -0.0182587337, -0.0214845482, -0.0336987972, -0.0139054516, -0.00329040876, 0.0206232872, -0.0207642205, 0.0115252389, 0.00266012223, 0.0313812196, -0.0343251675, -0.00930162, -0.0547135659, 0.015980307, 0.0187285133, -0.0155966552, -0.0164109375, -0.01749143, 0.0221578982, -0.0141873183, -0.0364861488, 0.0110319713, -0.0106326593, -0.0259161275, 0.0204197168, -0.0009635358, -0.00787662342, 0.00619325, 0.00783747528, -0.034168575, 0.0109223565, 0.0178829115, 0.0328218751, -0.0341059379, -0.0312402882, -0.042468, -0.0137410285, -0.0216881186, 0.0326966, -0.0126135601, 0.0348575823, 0.0123082036, -0.00799798314, -0.0313029252, 0.0122768851, 0.00105993834, -0.0344191231, -0.0232070703, 0.0140150664, 0.0182587337, 0.0173191763, 0.00624805735, 0.0140855331, 0.00762216048, 0.00512450328, -0.0300658401, 0.00196524104, -0.0168963764, -0.00607972033, 0.0131851239, 0.0190886762, -0.00982620567, 0.00589572359, 0.0129424045, 0.0229878407, 0.034231212, 0.00221774727, 0.00320036779, 0.010617, 0.00959131587, 0.00155516341, 0.0209521335, -0.0458817258, 0.0135374581, 0.0171312653, 0.0141638294, 0.00314360275, 0.0249139331, 0.00833074376, -0.0243188813, -0.0253837127, -0.00441200566, 0.0057273861, -0.010491726, -0.0097792279, 0.0229721814, 0.00119010615, 0.00399311958, 0.00960697606, -0.00235868082, 0.00803321693, -0.0181804374, -0.00133006112, 0.0097244205, 0.00809585396, -0.0301754549, -0.00306922127, 0.0217664167, 0.00486612506, -0.0186188985, 0.0282963403, -0.00606406061, -0.0218290538, 0.00216685445, 0.00480740285, -0.000878877763, -0.0216254815, 0.00124589237, -0.019511478, 0.00501880329, 0.0199499372, -0.0158863515, -0.00987318344, -0.0123708406, 0.00353508512, -0.00636941707, -0.00750080077, -0.00548075233, 0.027482057, -0.0216254815, -0.0313968807, 0.016692806, -0.0075086304, -0.00704668136, -0.0331976973, -0.0114939203, 0.00551207084, -0.0211557038, -0.00955216773, -0.00997496862, -0.0113294981, 0.0283746365, 0.0950832218, -0.00845601782, 0.0155966552, -0.00825244654, -0.00664345454, 0.00661605084, 0.00405967142, 0.00887881871, 0.0204823539, -0.0268556848, 0.0247416813, 0.0107892519, -0.00899626315, 0.00151112163, 0.0157375876, 0.0177419782, 0.00381108024, -0.000156470574, 0.00357031845, 0.000849027245, -0.0203257613, -0.0062323981, 0.0149937719, -0.0195584558, 0.0212183408, -0.010429088, -0.0184779651, -0.0334482491, -0.0177419782, -0.00923898257, 0.0104212584, 0.0019534966, 0.00791968685, 0.00792360213, 0.00214532297, 0.00941906404, 0.0163952783, 0.00508927, -0.0280927699, -0.000547096541, 0.00938774552, -0.000736476097, -0.0290636458, -0.00292241527, -0.00382282468, -0.0276543088, -0.0185092837, -0.00328453653, -0.0228625666, 0.00801755767, -4.81706738e-05, -0.01858758, 0.0404636115, 0.00107168278, -0.0228782259, 0.0197620261, 0.00162758771, -0.0149781127, 0.0318196826, -0.0120576546, 0.0117679583, 0.0102881547, 0.0120498249, -0.0323520973, -0.0160351153, 0.032759238, -0.0232697073, -0.00605623098, -0.0164265968, 0.0045960024, -0.00151405775, 0.00268165371, 0.00180962693, 0.0110241417, -0.0169746727, -0.00180179731, -0.00532024447, -0.00958348624, -0.0121281212, -0.01349831, 0.0107892519, 0.0152364913, 0.00851865485, 0.000670413428, -0.000863707799, -0.0222048759, -0.0171312653, 0.0132869091, 0.00211791927, -0.0319292955, 0.00415754225, -0.0123786703, -0.0112590306, 0.00444723899, -0.0064046504, 0.00606797542, 0.011564387, 0.0107814223, -0.0167397838, -0.00795883499, 0.00338827935, 0.0138428137, -0.0132555906, -0.0271532126, -0.0143987192, -0.0220952611, 0.0262449738, 0.0049835695, -0.0419982225, 0.0110946083, 0.0340119824, -0.0113373278, 0.00182332878, 0.0150642386, 0.0317727029, -0.00953650847, 0.0163326412, 0.00271884468, 0.00854997337, -0.0127310045, -0.0369559303, 0.0145474821, -0.00952867884, -0.031725727, -0.0139132813, 0.00198285794, 0.0109223565, 0.0103507917, -0.0125900712, -0.00463123573, -0.00475259498, 0.0150407497, -0.0206232872, 0.0115565574, -0.0229721814, 0.00444723899, 0.00426324224, 0.0431570075, 0.00976356864, -0.000389280205, -0.00160703482, 0.0235515758, -0.000509905687, 0.0098888427, -0.0285625476, 0.0209677927, -0.0241622869, -0.00460383203, 0.0104134288, -0.0203570798, -0.0280771106, -0.0287504606, -0.00603274209, 0.0052106292, 0.0210304298, 0.00198873016, -0.00607580552, 0.00387175987, 0.0222048759, -0.0234576203, 0.0313812196, 0.0148841571, 0.00105308741, -0.0221578982, -0.0158628635, -0.0319919325, -0.0097792279, -0.00684311055, 0.0120419953, 0.015643632, -0.0154635506, 0.00041276915, -0.0137566878, -0.015894182, 0.01791423, 0.00288130972, 0.0451927148, 0.000992897, 0.0141873183, -0.00800581276, -0.0128327897, -0.0086674178, -0.0307078715, 0.0238177832, 0.00541811483, -0.00917634554, -0.0325086899, -0.00669043232, 0.00945821218, 0.031036716, 0.00147001608, 0.0213436149, 0.0133808646, -0.0148136904, 0.0378015302, 0.00403618254, -0.00151993008, -0.00784922, -0.0216254815, -0.0159020107, -0.0505168773, -0.0225963574, 0.0142029775, 0.00315534743, 0.0249922294, -0.0228312481, -0.0143282525, 0.00897277426, -0.017178243, -0.00742250448, 0.00509709958, 0.000471980835, 0.0179925263, -0.00644379854, 0.0227372926, 0.00700753322, -0.00645554299, -0.018775491, 0.0155575061, 0.0089023076, -0.021234, -0.0298309512, -0.0150955571, 0.0145553118, -0.0274977162, -0.0333542936, 0.0378641672, 0.0168024208, 0.0336987972, 0.00298505253, -0.0418729484, 0.0166145079, 0.0353586823, 0.00187911501, 0.0121907592, -0.00190162531, 0.027732607, -0.0271845311, -0.0233949814, 0.030551279, 0.0200282335, 0.0203257613, -0.00494442135, 0.00726591144, -0.0115487278, 0.000153412126, 0.0142108072, 0.0213592742, -0.0240526721, 0.00792360213, -0.0220796019, -0.00334521616, 0.0171469245, -0.00539071113, 0.0155340172, 0.00967744272, 0.00191728456, 0.00514799217, -0.011165075, -0.0276543088, 0.0335735232, -0.00905107055, 0.00978705753, 0.0264485441, -0.0111572454, 0.0159333292, 0.0156279728, -0.00322777149, 0.0178672522, 0.0153539358, -0.0104682371, 0.0258221719, -0.0037014652, 0.00226081023, -0.0106718075, -0.00907455944, 0.0161760487, 0.0153617654, -0.0262762923, 0.00139465567, -0.0119558694, 0.0173661541, -0.00800972804, -0.024773, -0.0231600925, -0.00496791024, -0.0075086304, 0.00485829543, 0.0173818134, 0.00554730417, 0.00281867245, -0.0157767367, -0.0202161465, -0.0377388932, 0.00166869326, 0.0281084292, 0.00912936684, 0.0030300729, -0.0187911503, 0.0163952783, 0.00287935231, -0.00625197217, -0.00770045677, 0.0115095796, 0.0240526721, -0.00699970359, 0.000231953265, -0.0305356197, -0.0180081856, -0.00782964565, 0.0146336081, -0.0502663255, -0.00381499506, -0.0237081684, 0.00479957322, -0.0171469245, 0.00682745129, -0.0111572454, 0.00589180877, 0.00547683751, -0.0056099412, -0.00122142478, -0.0180395041, -0.0110632898, -0.023802124, 0.0158706922, 0.0259004682, -0.00221187505, 0.00290871342, -0.0170999467, 0.0232853666, -0.014359571, -0.019511478, -0.00257008127, -0.00789228361, -0.0100219473, -0.0126840267, 0.0196680706, 0.0203883983, 0.00696055545, -0.0427185483, 0.00450204639, -0.0132477609, 0.0181647781, 0.021108726, -0.00746948225, 0.00483480655, 0.025462009, -0.0235672351, 0.0147040747, -0.0171625838, -0.00377388927, -0.00960697606, 0.0146022895, 0.00515973661, 0.028593868, 0.00347244809, 0.0249609109, -0.0237864647, -0.00660822121, -0.00840904, 0.0130441906, 0.010703126, -0.00688225869, -0.0176323634, -0.003539, 0.00334325875, -0.00433762372, 0.0339180268, 0.0419042669, 0.00489352876, -0.00976356864, -0.00314556039, 0.0220326241, -0.00625197217, 0.0176793411, -0.00921549369, 0.0128562786, -0.0160116255, -0.010765763, -0.0115957055, -0.00650252122, -0.0110867787, -0.0199499372, -0.0217194371, 0.00213945075, 0.00617759069, 0.0199655965, -0.00722676329, -0.0126213897, 0.0363921933, 0.00737944152, -0.0037817189, 0.0162073672, -0.0355152749, -0.0190416984, -0.00740684522, 0.0190573577, -0.0260257442, 0.00941906404, -0.00803321693, -0.016316982, -0.0137175396, 0.0133338869, 0.011165075, 0.00931727886, 0.00605623098, -0.0270435978, 0.0162073672, -0.0169590134, -0.0110476306, -0.00333151431, 0.00545726344, -0.0347949453, 0.00197013468, 0.0166614875, 0.0135531174, 0.00201026164, 0.0125196036, 0.0258534905, -0.0220796019, -0.0139367701, -0.000807921577, -0.00920766406, -0.0238334425, -0.00876920391, 0.0105935112, 0.0136862211, 0.00435719779, -0.0064594578, 0.00654166937, 0.00993582048, 0.0131303165, 0.00128699804, -0.0307548493, 0.00460383203, 0.00840904, -0.000643009669, 0.010703126, 0.00687834388, 0.00523803337, -0.00839338079, -0.0133965239, -0.01858758, 0.00533981854, -0.000553458114, 0.0126448786, -0.000234767038, -0.00702319248, -0.0112198824, 0.0270122793, -0.00166184234, -0.00266403705, -0.0057821935, -0.0101393918, -0.00806453545, -0.0132869091, -0.011627024, 0.00921549369, -0.0229095444, 0.00306922127, -0.0122142481, 0.00862827, 0.00379737839, 0.0364235118, 0.0157845672, 0.0108518889, 0.00271688704, -0.0193079077, 0.0132790795, 0.012762323, -0.000781985873, 0.00970876124, 0.00808802433, 0.0229252037, -0.00357227609, 0.0271218941, -0.00744599337, 0.0130441906, 0.00491701765, -0.0259161275, 0.0170216504, -0.00843252894, 0.00511275884, 0.0166145079, 0.0497652292, 0.00159431167, 0.01591767, 0.0141481701, -0.0118619138, 0.0169746727, -0.0110632898, -0.0135139693, -0.0142264664, 0.00568823796, 0.00941123441, -0.001403464, 0.00437285751, 0.0114782611, 0.00362316868, -0.00332564209, -0.00795492064, 0.0054142, 0.0214062519, 0.00898843352, 0.00927030109, -0.00920766406, 0.011102438, 0.0117992768, 0.00680787722, -0.00548858196, -0.0487630367, -0.00913719647, 0.00852648448, 0.0142734442, 0.00955216773, -0.0114312833, 0.00759475678, 0.0181334596, -0.00596227543, 0.0225963574, -0.0232697073, -0.010366451, -0.0197150484, 0.00232736231, 0.0182900522, 0.00118814874, 0.0217037778, -0.00844035856, 0.0011264903, -0.00667868787, 0.0232853666, -0.0119245509, 0.000497916539, -0.0179455485, 0.00232931972, 0.00146316504, -0.00472127646, 0.0190886762, 0.000910685689, 0.00127036008, 0.0257595349, -0.0138506433, 0.00205136719, -0.00496008061, -0.000540734909, 0.00723459292, 0.0113764759, 0.00323951594, -0.0121672703, 0.0106796371, -0.0238804203, 0.0158472043, 0.00600142358, 0.0197620261, -0.000787368801, -0.0178046152, -0.0072815707, 0.0116740018, 0.00488961395, 0.0121672703, 0.00505795144, 0.000652307353, 0.00183017971, 0.00687834388, -0.00238999934, -0.00368580595, -0.00679221796, -0.00685485499, -0.0151895136, -0.0135687767, 0.0126527082, 0.0138271544, 0.00482697692, -0.00568432314, 0.0173035171, -0.00939557515, 0.0161134116, -0.0154478913, 0.0156044848, -0.00434153853, -0.0203883983, -0.0189320836, 0.00159039686, -0.000791772967, 0.0116896611, -0.000310983742, 0.0128014712, -0.00999062788, 0.00984969456, 0.00152873842, -0.00575087499, -0.00641248, 0.0103507917, -0.00468604313, 0.0119088916, 0.00716412626, 0.012762323, -0.00410273438, -0.0101315621, 0.00431804964, 0.00905107055, 0.0174287912, -0.0155731663, 0.000595053076, -0.0192452706, -0.00282258727, -0.00336283306, 0.000630775874, -0.000602393411, -0.0112433713, 0.00219621579, -0.00275799283, -0.0102959843, -0.0292358976, 0.0200595539, 0.00854997337, -0.00263859075, -0.0233793221, 0.00579002313, -0.00296743587, 0.00877703354, 0.00483089173, -0.0218290538, 0.00808802433, -0.00475259498, 0.0113294981, -0.00933293812, -0.00227646949, 0.00957565662, 0.0187441725, -0.00283628935, -0.00442375, -0.00139954919, -0.00496399542, -0.0013261463, -0.00934859738, -0.0257438757, -0.0123786703, -0.00980271678, -0.00407141587, -0.00506969588, -0.00590746803, -0.00145827152, -0.0189947207, 0.00302811549, -0.00243502, -0.0138193248, 0.0232540481, 0.0189947207, 0.0272001904, 0.00682353647, 0.00160605612, -0.00167260808, 0.0104760667, -0.025086185, -0.00516365143, -0.000491799612, 0.00853431411, -0.00876137428, 0.0118697435, 0.010092414, -0.00350376661, 0.0256655794, 0.0037993358, -0.013435673, 0.0114782611, 0.00907455944, -0.0200438946, -0.0082132984, -0.00828376506, 0.00265229261, -0.0133808646, -0.00477608386, -0.0236455314, 0.0137410285, 0.0255089868, 0.00113921345, -0.0146727562, 0.0280301329, -0.00177537219, 0.0129032563, 0.00867524743, -0.0329784676, 0.00950519, -0.010765763, -0.00758692715, -0.0203883983, 0.00149839849, 0.0103351325, 0.0110789491, 0.0142108072, -0.0068039624, -0.00609537959, 0.00572347129, -0.0354213193, -0.0118932324, 0.00743424892, 0.00557862269, 0.00747339707, 0.0281084292, -0.000421332836, -0.011901062, -0.00516365143, 0.00203962275, 0.00683528092, -0.00614235736, 0.0402443819, 0.0166771468, -0.00640856521, -0.0119402101, 0.00292045786, 0.0164579153, 0.00257008127, -0.00936425664, -0.00699187396, 0.0112355417, -0.00566474907, 0.0229878407, 0.037300434, -0.0295804031, 0.015894182, 0.00396180106, 0.0043611126, -0.0108205704, 0.0139289405, -0.00681570685, -0.0210930668, -0.00825244654, 0.00752037484, -0.0193705447, 0.0181960966, 0.00141716597, 0.0102646658, -1.48640938e-05, -0.0235672351, 0.00754386373, 0.00596227543, 0.00311424164, -0.0115174092, 0.024663385, 0.0294238105, 0.000693902373, -0.00341568305, 0.000416194613, -0.00880052242, 0.00687442906, -0.0160116255, -0.0188224688, 0.020732902, -0.0108205704, -0.00853431411, -0.0168493986, 0.000975280302, 0.00191336975, 0.00466255425, 0.0115878759, 0.00971659087, -0.00991233159, -0.00469778758, 0.0041966904, 0.0202631243, -0.0218760315, 0.00426324224, 0.00960697606, -0.0190573577, -0.00533198891, 0.00380716543, -0.00062979717, 0.00176069164, 0.016316982, -0.00276973727, 0.0153304469, -0.0132164424, 0.00621282402, 0.0333856121, -0.0159959663, -0.0111885639, 0.000675306947, 0.00351355365, 0.00716804108, -0.0244441554, -0.014758883, -0.00221578986, -0.000652307353, -0.00113529863, -0.0142499553, 0.0161447302, 0.0155809959, -0.000879367115, -0.0049835695, 0.0115565574, 0.0169433542, -0.012112462, 0.0179298893, -0.012237737, 0.00732071884, 0.0121359508, 0.0160507746, -0.0090589, 0.00147001608, -0.0125665814, 0.0167554431, -0.00875354465, 0.00769654196, -0.0268870052, 0.0171625838, -0.00365840201, -0.0140698738, -0.0359850526, -0.00717587071, 0.0161917079, 0.00415362697, -0.00597793469, 0.00577044906, 0.00325126061, 0.000446289807, -0.00293611735, 0.00160899223, -0.0381460339, 0.0157219283, -0.00485438062, 0.0202787835, 0.0198559817, -0.000405428844, -0.018650217, -0.00881618168, -0.0184309874, 0.00677264389, -0.003539, -0.00131048704, 0.0032297289, -0.0279205181, 0.0116818314, -0.021046089, -0.00340393861, -0.00175971293, 0.0103273029, 0.0111494157, 0.0259161275, -0.00583308609, 0.0164735746, 0.0056725787, 0.0208581761, 0.00909021869, 0.0230035, 0.00543768937, -0.0145239932, 0.00163835345, 0.00616584625, 0.00441200566, -0.00542985927, 0.00624805735, 0.00400486402, 0.0133808646, 0.0090589, 0.00432587927, -0.0145318229, -0.0163952783, -0.0065220953, 0.00271492964, -0.00362512609, 0.005445519, 0.016442256, -0.00676481426, -0.00935642701, -0.0122064184, 0.00205919682, -0.0121281212, 0.0120419953, 0.0112120528, -0.00844818819, -0.00270318519, 0.000504033465, 0.0238334425, -0.00537896669, -0.0215785038, -0.00898843352, -0.0145474821, -0.0062049944, 0.0202318057, 0.00511275884, -0.00556296343, 0.021594163, -0.0153147876, 0.00100121601, -0.00792751648, 0.0101707103, 0.010703126, -0.0122220777, -0.00103840674, 0.0090119224, -0.0156592913, -0.0190103799, 0.00221383246, -0.0120968027, -0.0108049111, 0.00241153105, -0.014508334, 0.000638116151, -0.00624805735, 0.00747339707, 0.000700753299, -0.00737552671, -0.0188381281, -0.019448841, 0.0198559817, 0.0115252389, -3.42852873e-05, -0.00304181757, 0.00710540358, -0.00398724712, 0.0148215201, -0.00218838616, -0.0244284961, 0.00152090879, -0.0196210928, 0.00653383974, 0.00137703901, 0.00692923693, 0.00256812386, 0.0199499372, 0.0153382765, -0.00847167708, 0.0256812386, -0.0111807343, -0.00256029423, -0.00225885282, 0.013036361, 0.0137410285, -0.00282845972, 0.00129482767, 0.00637333188, -0.0132712498, -0.00596619025, -0.00406358624, -0.00524977781, -0.0125352629, 0.0119715286, -0.024600748, -0.0277012866, -0.00252114609, 0.00482697692, 0.0141873183, 0.0122220777, -0.0147510534, 0.0104212584, -0.00720718922, -0.0151033867, 0.00762999, -0.00676481426, -0.0102333473, 0.00323168631, 0.000257399603, -0.00627546106, 0.00575087499, -0.000111572452, 0.00660822121, 0.00131146575, 0.0125587517, -0.0136862211, 0.00196328363, -0.00873005483, 0.010155051, 0.0118697435, -0.00795100536, -0.00397354551, 0.0213122964, -0.015369595, 0.00485438062, -0.00532415928, -0.00164128956, -0.00279322616, -0.0146336081, -0.0182743929, -0.00703493692, 0.00945038255, -0.00234497897, -0.000240761612, -0.0216098223, 0.00529284077, 0.00407533068, -0.0114860907, -0.00982620567, -0.0041340529, -0.00425932743, 0.0063772467, -0.0159959663, -0.00172056467, 0.00537505187, 0.0111337565, -0.0280771106, 0.0154165728, -0.000129066815, -0.0279831551, -0.0181804374, -0.0123551814, -0.00655732863, 0.0321328677, 9.12031392e-05, 0.0111180972, 0.00693315174, 0.00949736, -0.00777092343, 0.0148919867, -0.0225963574, -0.0117757879, 0.0130598499, -0.00292241527, -0.017178243, 0.00114606449, 0.00585266, 0.00833857339, 0.000559330336, 0.000646924484, -0.00808802433, 0.0184309874, 0.0139524294, 0.0117366398, 0.00573521573, -0.0112042231, 0.00662779529, -0.00555121899, 0.00330606801, -0.00937208626, -0.0259631053, -0.0136627322, -0.014570971, 0.0208894946, 0.00233519194, 0.0075712679, -0.00715238182, 0.0133025683, -0.00249569956, 0.00984969456, 0.010765763, 0.00659647677, 0.00586832, -0.00406750105, 0.00903541129, -0.00290675601, -0.00647120224, -0.0183526911, -0.00817415, -0.00404792698, 0.00932510849, -0.0117836175, -0.00918417517, 0.0145944599, 0.00568823796, 0.00568432314, 0.016379619, -0.00178124441, -0.0302380919, 0.00256812386, 0.0226903148, -0.00824461691, -0.00146805868, -0.00131929538, -0.00379150617, -0.008557803, 0.0128249601, -0.00896494463, 0.019511478, 0.00113823474, -0.0188381281, -0.00600533839, -0.0262762923, -0.0267773885, 0.0360790081, 0.00470170239, -0.00377976149, -0.0103821103, 0.00298505253, -0.00177537219, -0.00302224327, 0.00986535382, 0.00888664834, 0.0231600925, -0.00818198, 0.00883967057, -0.0110006528, 0.0217664167, -0.0155261876, -0.0263232701, -0.0202161465, 0.00401269365, -0.0107501037, -0.00405967142, -0.000729625113, 0.00205136719, -0.0104525778, 0.0111102676, -0.0209364742, -0.0115174092, -0.00561385602, 0.00910587795, 0.0251801424, 0.0180551633, -0.0232540481, -0.0112903491, -0.00509318477, 0.00288913934, 0.00761433085, 0.00429064594, -0.0135217989, -0.0121907592, 0.00660039159, 0.0146884155, 0.021844713, 0.00625197217, 0.000346951187, 0.00285390601, -0.0301597957, -0.0356092304, 0.00476825424, -0.0044511538, -0.0059270421, 0.0011255116, 0.00556296343, -0.00441983528, -0.00115585153, 0.00726591144, -0.0185406022, -0.00273646135, 0.0118305953, -0.0166771468, -0.0106718075, -0.00257595349, 0.00339219416, 0.00633418374, 0.00188792334, -0.0127701527, 0.00177145738, -0.0193235669, 0.00676089944, -0.00528109632, -0.0321641862, -0.00324343075, 0.015855033, 0.00893362612, -0.0122533962, -0.0139837479, -0.00229995861, 0.0242092647, -0.00240957364, -0.0109771639, 0.00827593543, 0.0207642205, -0.0189947207, -0.0018272436, -0.010953675, -0.00118912745, -0.013834984, 0.00447464269, 0.00851082522, -0.00859695114, -0.0145396525, 0.0357971415, 0.0108440593, -0.00997496862, 0.00832291413, 0.024663385, 0.00754777854, -0.0052106292, 0.0178829115, 0.0305669382, 0.00179103157, -0.0184623059, -1.57816303e-05, 0.00236455305, 0.00681179203, 0.0206076279, 0.0179925263, -0.0116818314, -0.00865175854, 0.01370971, 0.00368776335, 0.000473693595, 0.00565691944, 0.000494246429, 0.0076808827, 7.6216711e-05, 0.00322777149, 0.0245224517, -0.0118854027, 0.0144065488, 0.012911086, -0.0102411769, -0.0203727391, -0.007653479, -0.00517539587, -0.0116348537, 0.0114077944, 0.00169316097, -0.0155105283, -0.0125900712, -0.0109849935, -0.0229095444, -0.0180551633, -0.00125665823, 0.000135306065, 0.0100532658, -0.00261118682, 0.000859793, -0.00986535382, -0.0316787474, 0.00581351202, 0.0146805858, -0.020310102, 0.0148919867, -0.00405967142, -0.00156299304, 0.0405262485, 0.00501880329, -0.00681179203, -0.0150955571, -0.00142793171, 0.0113999648, 0.00754386373, 0.00150916423, -0.00289501157, 0.0075712679, -0.00135942234, -0.0183683503, -0.0149467941, -0.00784922, -0.0181960966, 0.017178243, 0.0228155889, -0.000834836, 0.000526543707, -0.00922332332, -0.030613916, -0.0111337565, 0.0317413844, -0.00184388168, -0.0135452878, 0.023128774, -0.00340393861, -0.0282337032, 0.0107970815, 0.00161780056, 0.00468212832, -0.000152066408, -0.0257908534, 0.00941123441, 0.00191239105, 0.00199362356, 0.00969310198, -8.77165e-05, -0.0185562614, -0.0133808646, -0.00389524898, -0.00711714802, 0.0120185064, 0.012300374, 0.020670265, -0.00258574053, -0.00453727972, 0.00582134165, 0.00260139978, 0.00476042461, -0.00118912745, 0.00365252979, -0.00835423265, -0.0106718075, -0.0105308741, 0.0308018271, -0.0408394337, -0.00280105579, -0.00384631357, 0.010554363, -0.0152834691, 0.0193235669, -0.00124295626, -0.00402443809, 0.008957115, -0.00596227543, -0.0230035, 0.00648294669, 0.00338827935, -0.00580176758, -0.00605231617, 0.0233480036, 0.0190573577, 0.00945038255, -0.00143184653, 0.00759084197, -0.00064056291, 0.0118775731, 0.00909804832, -0.00539071113, -8.44133683e-05, -0.00373865594, 0.00438851677, 0.0104682371, 0.00720718922, -0.0113373278, 0.00196426245, -0.0125274332, -0.00864392892, -0.00323755853, -0.00222949171, 0.00312794349, 0.00258182571, 0.0135452878, 0.00922332332, -0.0221422389, 0.015831545, 0.0107266149, -0.00357814832, -0.00343525712, -0.00933293812, -0.0191982929, -0.0202318057, 0.00711323321, -0.0117992768, -0.0105387038, -0.0272158496, -0.00746948225, 0.0103116436, 0.00497965468, 0.0180551633, 0.0108597185, 0.0190730169, -0.0136079248, -0.0156671219, -0.0180864818, -0.0287504606, -0.0109928232, -0.0221422389, 0.0210304298, -0.0113216685, -0.0135687767, -0.00571564166, -0.000237336149, -0.00570781203, -0.010429088, -0.00435328297, -0.0150250904, -0.00833074376, -0.0140933627, -0.00579393795, 0.00254463498, 0.00262097409, 0.0151738543, -0.00506186625, 0.0178202745, 0.0120576546, -0.0326652825, -0.00236259564, -0.018775491, 0.00696838507, -0.0154792098, 0.0201221909, 0.00976356864, -0.0277012866, 0.00406750105, -0.0229095444, -0.00468604313, 0.00810368359, 0.00450204639, -0.0180238448, -0.00428281631, -0.00753994891, 0.0240996499, -0.00446289824, 0.00460774684, -0.00330606801, 0.0168337394, 0.01791423, -0.0121359508, 0.00253093312, 0.00230583083, 0.0065769027, 0.00356640364, 0.0149781127, -0.00199068757, 0.0100454362, -0.00408707513, 0.00265229261, -0.0303007308, -0.013310398, -0.00477608386, 0.0172095615, -0.00326104765, 0.0102646658, 0.0134669915, -0.0135687767, -0.00451379083, -0.0719701052, -0.024600748, 0.0314282, 0.0137566878, 0.0168963764, 0.00786096416, 0.00190749753, 0.0282963403, 0.00440026121, -0.00766913826, 0.0289696902, 0.0148371793, -0.0055551338, 0.0188694466, 0.0120889731, -0.00701536285, 0.011102438, 0.00204158016, -0.0259631053, -0.0245850887, 0.0216568, -0.00230974564, -0.0125509221, -0.00133299723, 0.00592312729, -0.00460383203, 0.0138036655, 0.00560211157, -0.0144143784, -0.00481914729, -0.0102724954, -0.0125274332, 0.000569606724, 0.00463515054, -0.0212809779, 0.00650252122, -0.0222831722, -0.025884809, 0.00533590373, 0.00768479751, -0.00199460238, -0.00899626315, 0.00586049, -0.0257282164, 0.00128014712, 0.0164892338, 0.00639682077, 0.0170686282, 0.00458817277, 0.0244598147, -0.00394809898, 0.0266051367, -0.00352334068, 0.0079157725, 0.0047056172, -0.0080801947, 0.0101628806, -0.0234732796, -0.00501880329, -0.00836206228, -0.00820546877, -0.00354095735, -0.00931727886, 0.00254267757, 0.00840121, -0.00392069528, -0.00242327549, 0.00908238906, -0.00746948225, 0.0210930668, -0.00953650847, -0.0252584387, 0.00357814832, 0.0111259269, 0.00737552671, 0.0110789491, 0.0132086128, -0.00663953973, 0.0312716067, 0.0330411047, 0.0202787835, 0.0104447473, 0.00669826195, -0.0173348356, 0.00204353756, 0.00464689499, -0.00540245557, 0.00309075275, 0.00600142358, -0.00557470787, 0.00517148105, -0.00397746032, 0.0313968807, 0.00252114609, -0.0153539358, -0.00377976149, -1.0681656e-05, -0.00100513082, 0.0229565222, 0.0113216685, -0.0232697073, -0.00176558516, 0.00618542032, 0.00495225098, 0.00970876124, -0.0243658591, -0.00490527321, 0.0016775016, 0.000100195, 0.00591138285, 0.0301597957, 0.00302224327, 0.0157297589, -0.0148841571, 0.0339806639, 0.00442766491, 0.0163952783, 0.00812717248, 0.0191669725, 0.0170059912, -0.00149937719, 0.0017283943, 0.000546607189, -0.0146179488, 0.0147667127, -0.0178046152, -0.0295334253, 0.00266599446, -0.010491726, -0.0064594578, 0.0378954858, 0.0146257784, 0.00459208759, -0.0295021068, 0.00099387567, 0.00381890987, 0.00591138285, 0.013834984, -0.0193235669, 0.0143125933, 0.00434545334, -0.00960697606, 0.00413013808, -0.0246477257, -0.0118071064, -0.0258378312, -0.0144378673, 0.00812717248, -0.0126683675, -0.0138584739, 0.0149154756, -0.0204197168, -0.0102098584, 0.00162269408, -0.0141246812, 0.00842469931, 0.0025779109, 0.0223144908, 0.0241622869, 0.0132634202, -0.00753211929, -0.0120498249, -0.0260570627, -0.0220169649, 0.00171664986, -0.00537505187, -0.00213162112, -0.00199460238, -0.0183840096, -0.0161917079, 0.0211557038, 0.00466255425, 0.0211243853, 0.00723850774, 0.000291654316, 0.0200125743, 0.000747731188, -0.011564387, 0.0214219112, 0.0100141168, 0.00638507633, 0.00917634554, -0.00506969588, -0.00656124344, 0.00734420773, -0.0349515378, -0.000251772057, 0.00487395469, -0.00883967057, 0.0095443381, -0.00278343912, 0.0260100849, -0.0125274332, -0.00539462594, 0.0017499259, -0.0174287912, -0.000190358274, 0.00780615723, -0.00969310198, 0.0156827811, -0.00476042461, 0.015894182, -0.0104212584, 0.00487395469, -0.00968527235, -0.0330411047, -0.0124804555, 0.0352647267, -0.0161447302, 0.00685877, -0.00113823474, -0.000835325336, -0.0303320494, 0.00186247705, -0.0029498192, -0.0146257784, -0.00880052242, -0.015894182, -0.020184828, 0.0151112163, 0.0139524294, -0.0016775016, 0.00755169336, -0.0163013227, 0.0319919325, -0.00366231683, 0.00459208759, 0.00819763914, 0.0245537702, 0.00257986831, -0.0174444504, -0.02699662, 0.00655732863, 0.00968527235, -0.00513624772, 0.0114860907, 0.00273058913, 0.0211870223, 0.0202944428, 0.0248356368, 0.0100062871, 0.00215511, -0.00645162817, 0.0132164424, -0.0195584558, 0.00887098908, 0.0277169477, -0.0118227657, -0.033260338, -0.0143517414, 0.0131381461, 0.00203962275, 0.000357227604, -0.0056999824, 0.0220796019, -0.00606797542, 0.0147510534, 0.00214532297, -0.0171312653, 0.0181960966, -0.00569215277, 0.0029498192, 0.0294238105, 0.00784139056, -0.00651818048, 0.00303986017, 0.00514799217, -0.0133495461, -0.0179455485, -0.0054102852, 0.00340589602, 0.00591921248, 0.000101968908, -0.0120028472, 0.000525565, -0.0109693343, 0.0116426833, 0.00265620742, 0.00125078589, -0.0201221909, -0.0416537151, -0.0226120185, -0.0156358033, -0.0129815526, -0.0178672522, -0.00618933514, 0.00363491313, 0.00597402, -0.00032297289, 0.0133808646, 0.0146727562, -0.0104212584, 0.000672860187, 0.0106248297, -0.0152286617, 0.00551598566, -0.00843252894, -0.000390503585, -0.00269535556, -0.00296939327, -0.00373474113, 0.0088475, -0.00685485499, 0.0156279728, -0.00791968685, -0.00669434713, -0.019934278, -0.0147667127, 0.014907646, -0.0152756395, -0.00758692715, 0.00801755767, 0.00615801662, 0.00231170305, -0.00395201379, 0.00351159624, 0.00734029291, -0.00250744424, -0.000549053948, -0.0118305953, -0.00965395384, 0.0131694647, 0.00611886848, 0.000904324115, 0.00838555116, 0.00369363558, 0.0256499201, -0.00171860727, -0.00679613277, 0.0187598318, -0.0250078887, 0.00769262714, -0.00326300506, -0.0261510182, -0.00224906579, 0.00970876124, 0.00523411855, -0.0301441364, 0.0197150484, -0.0169433542, 0.00652992493, 0.0164892338, 0.0133886943, -0.0157141, 0.0230191592, -0.00772786047, 0.00777483825, -0.0163952783, 0.0381147154, -0.0167554431, -0.00937991589, 0.0134043535, 0.0106248297, 0.00314164534, -0.0152051728, 0.0176167041, -0.00760258641, -0.00615018699, 0.00876920391, 0.00676089944, 0.00315143261, -0.0242719017, -0.012574411, 0.00128112582, 0.0139837479, -0.016254345, -0.00128699804, 0.00234497897, -0.0185092837, -0.00519105513, -0.00208855816, -0.0191199947, -0.0137958359, 0.0880052224, 0.0133886943, 0.0190260392, -0.0152130025, 0.00673349574, 0.00559428195, -0.00939557515, 0.0472284257, 0.00010306995, -0.00211400446, -0.00103742804, 0.0154009135, -0.0142812738, 0.00952084921, -0.017115606, -0.0174601097, -0.0220013056, -0.00823678728, -0.00194664579, -0.00611495366, 0.00735203736, -0.0135061396, 0.0069723, 0.00470170239, 0.017976867, 0.00472519128, -0.0209991112, -0.0109615047, -0.0120654842, 0.00612278329, 0.00381303765, 0.0197776854, -0.000724242243, 0.0120185064, -0.0161447302, -0.0100845844, 0.0143752303, 0.021046089, 0.0189164244, -0.00911370758, -0.010703126, 0.000817708671, 0.000704668113, -0.00683528092, 0.0158080552, 0.00981054641, -0.0038267395, -0.0200125743, -0.00988101307, -0.013161635, -0.00578610832, -0.00185660482, 0.0115957055, -0.0260257442, 0.0192452706, 0.000332025927, 0.0108205704, -0.00179690379, 0.0127310045, 0.0225963574, 0.0225024018, 0.0107266149, 0.0048504658, -0.0116896611, 0.0156358033, -0.0201691687, -0.0309271012, 0.00470170239, 0.00392656727, 0.00455685379, 0.00188400852, -0.00373278372, 0.0033021532, -0.0146336081, -0.0120028472, 0.00286760787, -0.0168337394, 0.00438851677, -0.00615018699, -0.0212966371, -0.0108049111, -0.00692923693, -0.0180551633, -0.00618150551, -0.00962263532, 0.00171273504, -0.0159255, -0.00608755, -0.00891013723, -0.0107266149, 0.00381499506, 0.014907646, -0.0208111983, 0.0265111811, -0.00398920476, 0.00968527235, -0.00296156364, 0.0398998745, -0.00575087499, -0.00566083426, 0.00279126875, -0.000799113244, -0.0181491189, -0.00336479046, 0.00164422567, 0.0122612258, 0.00833074376, -0.00118423393, 0.0217350964, -0.0134826507, 0.0275760125, -0.0110398009, -0.00500705838, 0.0188224688, -0.00975573901, -0.00649469113, -0.00604057172, -0.000255686871, 0.00177537219, 0.00402835291, 0.0130207017, 0.0311619919, -0.019996915, 0.00452945, 0.0106326593, -0.0110789491, 0.000523607596, 0.00561777083, 0.0119558694, -0.0167084653, 0.0241779462, -0.000494001724, 0.0024506792, -0.00652601, 0.0203727391, 0.0176167041, 0.00661213603, -0.0331663787, 0.00674132537, 0.0228782259, 0.034293849, -0.00608755, 0.00512450328, -0.00532024447, -0.0106404889, -0.0281084292, 0.00848733634, 0.0113138389, -0.00121848867, -0.00423583854, 0.0117679583, -0.000731093169, 0.00660822121, -0.0045059612, 0.0149781127, -0.0192765892, 0.00927030109, -0.024726022, -0.00566083426, -0.00628329068, -0.00537896669, 0.0014514206, 0.0219230093, -0.00553555973, 0.0179612078, -0.0204666946, 0.021234, 0.0245537702, 0.000715923263, 0.00320819742, 0.025947446, -0.0192452706, 0.00204549497, -0.00961480569, -0.000642030966, 0.0158863515, -0.00319645298, -0.0244754739, -0.00216881186, 0.000583798, 0.0230191592, -0.00395201379, -0.00280692801, 0.0380520783, -0.0133965239, -0.00330019579, -0.0142812738, 0.00479957322, 0.0239117388, 0.00784139056, 0.00255637942, -0.0132164424, -0.0196367521, 0.00381890987, -0.0118932324, -0.0115800463, 0.0117914472, -0.0193705447, -0.00239587156, -0.0140307257, -0.00875354465, 0.00828376506, -0.00829159468, 0.00434936816, 0.00337066269, 0.0118462546, -0.00372299668, -0.0125587517, 0.00754777854, 0.00281867245, -0.0196680706]
04 Feb, 2025
Shift Reduce Parser in Compiler 04 Feb, 2025 Shift-reduce parsing is a popular bottom-up technique used in syntax analysis, where the goal is to create a parse tree for a given input based on grammar rules. The process works by reading a stream of tokens (the input), and then working backwards through the grammar rules to discover how the input can be generated. Input Buffer: This stores the string or sequence of tokens that needs to be parsed.Stack: The parser uses a stack to keep track of which symbols or parts of the parse it has already processed. As it processes the input, symbols are pushed onto and popped off the stack.Parsing Table: Similar to a predictive parser, a parsing table helps the parser decide what action to take next.Shift-reduce parsing works by processing the input left to right and gradually building up a parse tree by shifting tokens onto the stack and reducing them using grammar rules, until it reaches the start symbol of the grammar. Four Main Operations of Shift Reduce ParserShift: Move the next input symbol onto the stack when no reduction is possible. Reduce: Replace a sequence of symbols at the top of the stack with the left-hand side of a grammar rule. Accept: Successfully complete parsing when the entire input is processed and the stack contains only the start symbol. Error: Handle unexpected or invalid input when no shift or reduce action is possible. Working of Shift Reduce ParserShift-reduce parsers use a Deterministic Finite Automaton (DFA) to help recognize these handles. The DFA helps track what symbols are on the stack and decides when to shift or reduce by following a set of rules. Instead of directly analyzing the structure, the DFA helps the parser determine when reductions should occur based on the stack’s contents. The shift-reduce parser is a bottom-up parsing technique that breaks down a string into two parts: the undigested part and the semi-digested part. Here’s how it works: Undigested Part: This part contains the remaining tokens that still need to be processed. It is the input that hasn’t been handled yet.Semi-Digested Part: This part is on a stack. It’s where tokens or parts of the string that have been processed are stored.Parsing Process At the beginning, the input string is entirely undigested, and the stack is empty. The parser performs one of three actions at each step: 1. ShiftWhen the parser can’t reduce the sequence on the stack (because the stack doesn’t match any production rule), it shifts the next token from the input to the stack.This means the parser takes one token from the undigested part (the input) and places it on the stack.The stack keeps growing as tokens are added until a valid reduction is possible.2. ReduceIf the sequence of tokens on the stack matches the right side of a production rule, the parser can reduce it. This means the sequence of tokens on the stack is replaced with a non-terminal symbol (the left side of the production rule).For example, if the stack has id, and there’s a production rule T → id, the stack would change from id to T.This process is like reversing the rule. It’s called a reduction.The reduction continues until the stack is reduced all the way to the start symbol of the grammar, which indicates that the input has been successfully parsed.There’s one special case of reduction: If the entire stack contains the start symbol and there’s no more input left, the parse is successful (the input is valid).The sequence being reduced (e.g., id in the rule T → id) is called a handle. Identifying the handle is one of the most important tasks of a shift-reduce parser.3. ErrorIf neither shift nor reduce actions are possible, the parser encounters an error.An error happens when: The sequence on the stack doesn’t match any rule in the grammar (so no reduction can be made).If shifting a token would create a sequence on the stack that cannot eventually be reduced to the start symbol, continuing the shift would be pointless.For example, if the parser has E + on the stack and the next input token is ), no reduction is possible, and shifting ) would result in an invalid sequence.Example 1 – Consider the grammar         S –> S + S         S –> S * S         S –> id Perform Shift Reduce parsing for input string “id + id + id”. Example 2 – Consider the grammar         E –> 2E2         E –> 3E3         E –> 4 Perform Shift Reduce parsing for input string “32423”. Example 3 – Consider the grammar                         S –>  ( L ) | a                                 L –>  L , S | S    Perform Shift Reduce parsing for input string “( a, ( a, a ) ) “. Stack                                                   Input Buffer                                                   Parsing Action                              $  ( a , ( a , a ) ) $Shift$ (  a , ( a , a ) ) $Shift$ ( a , ( a , a ) ) $Reduce S → a$ ( S , ( a , a ) ) $Reduce L → S$ ( L , ( a , a ) ) $Shift$ ( L , ( a , a ) ) $Shift$ ( L , ( a , a ) ) $Shift$ ( L , ( a , a ) ) $Reduce S → a$ ( L , ( S , a ) ) $Reduce L → S$ ( L , ( L , a ) ) $Shift$ ( L , ( L , a ) ) $Shift$ ( L , ( L , a ) ) $Reduce S → a$ ( L, ( L, S  ) ) $Reduce L →L, S$ ( L, ( L ) ) $Shift$ ( L, ( L ) ) $Reduce S → (L)$ ( L, S ) $Reduce L → L, S$ ( L ) $Shift$ ( L ) $Reduce S → (L)$ S $AcceptProgram to Simulate Shift-Reduce Parsing Following is the implementation- C++ // Including Libraries #include <bits/stdc++.h> using namespace std; // Global Variables int z = 0, i = 0, j = 0, c = 0; // Modify array size to increase // length of string to be parsed char a[16], ac[20], stk[15], act[10]; // This Function will check whether // the stack contain a production rule // which is to be Reduce. // Rules can be E->2E2 , E->3E3 , E->4 void check() { // Copying string to be printed as action strcpy(ac,"REDUCE TO E -> "); // c=length of input string for(z = 0; z < c; z++) { // checking for producing rule E->4 if(stk[z] == '4') { printf("%s4", ac); stk[z] = 'E'; stk[z + 1] = '\0'; //printing action printf("\n$%s\t%s$\t", stk, a); } } for(z = 0; z < c - 2; z++) { // checking for another production if(stk[z] == '2' && stk[z + 1] == 'E' && stk[z + 2] == '2') { printf("%s2E2", ac); stk[z] = 'E'; stk[z + 1] = '\0'; stk[z + 2] = '\0'; printf("\n$%s\t%s$\t", stk, a); i = i - 2; } } for(z = 0; z < c - 2; z++) { //checking for E->3E3 if(stk[z] == '3' && stk[z + 1] == 'E' && stk[z + 2] == '3') { printf("%s3E3", ac); stk[z]='E'; stk[z + 1]='\0'; stk[z + 2]='\0'; printf("\n$%s\t%s$\t", stk, a); i = i - 2; } } return ; // return to main } // Driver Function int main() { printf("GRAMMAR is -\nE->2E2 \nE->3E3 \nE->4\n"); // a is input string strcpy(a,"32423"); // strlen(a) will return the length of a to c c=strlen(a); // "SHIFT" is copied to act to be printed strcpy(act,"SHIFT"); // This will print Labels (column name) printf("\nstack \t input \t action"); // This will print the initial // values of stack and input printf("\n$\t%s$\t", a); // This will Run upto length of input string for(i = 0; j < c; i++, j++) { // Printing action printf("%s", act); // Pushing into stack stk[i] = a[j]; stk[i + 1] = '\0'; // Moving the pointer a[j]=' '; // Printing action printf("\n$%s\t%s$\t", stk, a); // Call check function ..which will // check the stack whether its contain // any production or not check(); } // Rechecking last time if contain // any valid production then it will // replace otherwise invalid check(); // if top of the stack is E(starting symbol) // then it will accept the input if(stk[0] == 'E' && stk[1] == '\0') printf("Accept\n"); else //else reject printf("Reject\n"); } C //Including Libraries #include<stdio.h> #include<stdlib.h> #include<string.h> //Global Variables int z = 0, i = 0, j = 0, c = 0; // Modify array size to increase // length of string to be parsed char a[16], ac[20], stk[15], act[10]; // This Function will check whether // the stack contain a production rule // which is to be Reduce. // Rules can be E->2E2 , E->3E3 , E->4 void check() { // Copying string to be printed as action strcpy(ac,"REDUCE TO E -> "); // c=length of input string for(z = 0; z < c; z++) { //checking for producing rule E->4 if(stk[z] == '4') { printf("%s4", ac); stk[z] = 'E'; stk[z + 1] = '\0'; //printing action printf("\n$%s\t%s$\t", stk, a); } } for(z = 0; z < c - 2; z++) { //checking for another production if(stk[z] == '2' && stk[z + 1] == 'E' && stk[z + 2] == '2') { printf("%s2E2", ac); stk[z] = 'E'; stk[z + 1] = '\0'; stk[z + 2] = '\0'; printf("\n$%s\t%s$\t", stk, a); i = i - 2; } } for(z=0; z<c-2; z++) { //checking for E->3E3 if(stk[z] == '3' && stk[z + 1] == 'E' && stk[z + 2] == '3') { printf("%s3E3", ac); stk[z]='E'; stk[z + 1]='\0'; stk[z + 1]='\0'; printf("\n$%s\t%s$\t", stk, a); i = i - 2; } } return ; //return to main } //Driver Function int main() { printf("GRAMMAR is -\nE->2E2 \nE->3E3 \nE->4\n"); // a is input string strcpy(a,"32423"); // strlen(a) will return the length of a to c c=strlen(a); // "SHIFT" is copied to act to be printed strcpy(act,"SHIFT"); // This will print Labels (column name) printf("\nstack \t input \t action"); // This will print the initial // values of stack and input printf("\n$\t%s$\t", a); // This will Run upto length of input string for(i = 0; j < c; i++, j++) { // Printing action printf("%s", act); // Pushing into stack stk[i] = a[j]; stk[i + 1] = '\0'; // Moving the pointer a[j]=' '; // Printing action printf("\n$%s\t%s$\t", stk, a); // Call check function ..which will // check the stack whether its contain // any production or not check(); } // Rechecking last time if contain // any valid production then it will // replace otherwise invalid check(); // if top of the stack is E(starting symbol) // then it will accept the input if(stk[0] == 'E' && stk[1] == '\0') printf("Accept\n"); else //else reject printf("Reject\n"); } // This code is contributed by Ritesh Aggarwal OutputGRAMMAR is - E->2E2 E->3E3 E->4 stack input action $ 32423$ SHIFT $3 2423$ SHIFT $32 423$ SHIFT $324 23$ REDUCE TO E -> 4 $32E 23$ SHIFT $32E2 3$ REDUCE TO E -> 2E2 $3E 3$ SHIFT $3E3 $ REDUCE TO E -> 3E3 $E $ AcceptAdvantages:Shift-reduce parsing is efficient and can handle a wide range of context-free grammars. It can parse a large variety of programming languages and is widely used in practice. It is capable of handling both left- and right-recursive grammars, which can be important in parsing certain programming languages. The parse table generated for shift-reduce parsing is typically small, which makes the parser efficient in terms of memory usage. Disadvantages:Shift-reduce parsing has a limited lookahead, which means that it may miss some syntax errors that require a larger lookahead. It may also generate false-positive shift-reduce conflicts, which can require additional manual intervention to resolve. Shift-reduce parsers may have difficulty in parsing ambiguous grammars, where there are multiple possible parse trees for a given input sequence. In some cases, the parse tree generated by shift-reduce parsing may be more complex than other parsing techniques.Frequently Asked Questions on Shift Reduce Parser in CompilerWhat is the use of LR parser?An LR parser is a type of bottom-up parser used for syntax analysis in compiler construction. It is designed to parse context-free grammars (CFGs), and it is particularly efficient and powerful in handling a wide range of grammars. What is shift-reduce conflict with examples?A shift-reduce conflict arises when the parser cannot decide whether to shift or reduce based on the current state. It typically occurs in grammars that are not LR(1) or have ambiguous rules. Resolving this conflict requires additional rules such as precedence and associativity to guide the parser’s decision-making process. What is the difference between LR and LL parsers?LR Parser: Bottom-up, can handle more complex grammars, uses right-to-left derivation with one symbol lookahead.LL Parser: Top-down, simpler, handles less complex grammars, uses left-to-right derivation with one symbol lookahead. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler
https://www.geeksforgeeks.org/shift-reduce-parser-compiler?ref=asr10
PHP
Shift Reduce Parser in Compiler
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0175316799, 0.017922027, -0.0192627851, 0.0182444882, -0.017429851, 0.0109466929, 0.00395226525, 0.01081092, -0.0243542697, 0.0273243021, -0.00123150297, -0.0245409571, 0.0427005887, -0.0221819021, 0.0110315504, 0.00748448307, 0.0213502944, -0.00567276264, -0.0182784311, -0.024184553, 0.0305489097, -0.0164709538, -0.0447371826, -0.00741235353, -0.0247276463, 0.0103696575, -0.0180578, -0.0165727828, -0.0412070863, -0.00501087, 0.0309901722, 0.0198737625, 0.000780164, -0.0361156, -0.0180747714, -0.00859188102, 0.0145446751, -0.0274091605, -0.0446353517, 0.0332304239, -0.0270188134, 0.0122110778, -0.0195343308, -0.0172092188, -0.01228745, 0.0344184376, 0.00149350229, -0.0195852462, -0.02267408, -0.014188271, -0.0310750306, 0.0366586931, 0.0602492392, -0.0063685989, 0.0290554073, 0.0200604517, -0.00363616878, -0.00471386639, 0.00393529376, 0.00394802215, 0.0478939, -0.00613099663, -0.0455518179, -0.0507111885, 0.0337735154, -0.0130257159, -0.0522046909, 0.00269424403, 0.0125505105, -0.0220291577, -0.0449408405, -0.000175682755, 0.00416016765, -0.0182614587, -0.00865976699, 0.024014838, 0.00505754165, 0.0156223727, -0.00241633388, 0.0279013384, -0.0190421529, 0.0398493558, -0.0318896659, -0.0332643688, 0.0119904475, -0.00445929216, -0.000642269617, -0.0542752296, 0.0754218623, -0.00187854585, 0.0121516772, 0.0117867878, 0.0213333219, -0.0207732581, -0.00344523811, -0.0206714291, 0.0318896659, 0.0100896256, -0.0112182386, 0.0433115661, -0.016513383, -0.0138488393, -0.0159618054, 0.0168188717, 0.0438207127, 0.017183762, -0.0525441244, 0.00904587191, 0.0178541411, 0.0803775787, -0.00984353758, -0.0037634559, 0.0281728841, 0.0119140744, -0.0356403962, -0.0152914263, -0.0113964407, -0.0676828101, -0.00669530267, 0.018872438, -0.000558472238, 0.0340959765, -0.0165982414, 0.0246597584, -0.0742678, 0.0256441124, 0.0169631299, -0.0342826657, -0.0143070724, -0.0105393743, -0.0224025343, 0.0190251824, 0.0108024338, -0.00516785728, 0.00385892135, 0.0439564884, 0.0245749, 0.00410713116, 0.0124401953, -0.015630858, 0.00295518269, -0.0143749593, 0.0547164902, 0.0104375444, 0.000345531502, 0.00801060256, -0.0154187139, 0.068768993, -0.0285971742, -0.000573852798, -0.0267981831, -0.00571094919, 0.00883372687, 0.02929301, -0.00124847458, -0.00509572774, -0.00954653416, 0.0313635468, -0.0270188134, 0.00742083928, 0.00361283286, -0.00424078247, -0.00137151871, -0.017497737, -0.028800834, 0.0357422233, 0.000123309408, -0.0131105734, -0.055768732, 0.0543091744, -0.0361156, 0.0210957192, 0.00180005212, 0.0130766304, -0.0122789647, -0.00628374098, 0.0157496594, 0.000359320955, 0.00383982831, -0.0108278915, -0.0132463463, -0.0483691059, 0.00553699, -0.0114897843, 0.024999192, 0.00596552342, 0.0341638625, 0.0101999417, 0.0104630012, -0.0277485922, -0.0141288703, 0.0141967572, 0.0207562875, 0.0244051851, -0.00888464134, 0.010106598, -0.0663250759, 0.0126438541, 0.0179050546, 0.00863431, -0.00986050908, -0.0412749723, -0.0255422834, 0.0185160339, 0.0454839319, -0.0181426574, 0.00714080781, 0.00745902536, 0.0358101092, -0.00476902444, -0.0400190726, -0.0111079235, -0.010174484, -0.0117698163, -0.0209260024, 0.011515242, -0.0174468216, -0.00382709946, 0.0037634559, 0.0109976074, -0.0191779267, 0.0201962236, 0.0392383784, -0.0166831, -0.027952252, -0.0109297214, -0.0394759811, -0.0414786302, -0.00442110607, -0.0136112366, -0.0142816156, 0.0597061478, 0.0288178045, -0.0111079235, -0.0187196936, 0.00188278873, -0.0326703601, -0.00964836404, -0.0433455072, 0.0211296622, -0.0071789939, -0.0148077356, -0.0832288042, 0.008273663, 0.0170734469, 0.0267981831, 0.0558366179, 0.0219612718, 0.00120180263, 0.00407106662, -0.0351651907, -0.00954653416, 0.0244900435, 0.00732749561, -0.0281219687, 0.0133566624, 0.0380503647, 0.000191726227, 0.0214521233, -2.06841578e-05, 0.010632718, -0.028342599, -0.00297215441, 0.0130851166, -0.0169631299, 0.00744629698, 0.024184553, 0.0100471973, 0.00833306368, -0.0542752296, 0.064424254, -0.0611657053, -0.0146974195, -0.0307186265, -0.0264926925, -0.0365568623, -0.00356403948, 0.0137639809, 0.0514579415, 0.00124317093, 0.00848156493, 0.00518907188, 0.0112861246, 0.0137130665, 0.040697936, -0.0343675241, -0.021689726, 0.008273663, -0.0847223103, -0.0272224732, -0.00646618614, -0.018804552, -0.00398408715, 0.00819729082, 0.01228745, 0.0122280493, 0.0332643688, -0.0244730711, -0.029394839, -0.0122789647, -0.00203447253, 0.00118483102, 0.0191270113, -0.0185669493, -0.0416483469, -0.0129663153, -0.0149689661, 0.0331964828, -0.0150283668, -0.0109297214, 0.0609959885, -0.0422932692, -0.0469434932, 0.00299336878, -0.0134924352, 0.047215037, 0.0190082099, -0.0362174287, -0.0209938902, -0.0106157465, 0.0459930822, -0.01605515, -0.0299888458, 0.0541734, 0.0553614125, -0.00885918364, 0.0156138875, 0.00481993891, -0.0224873926, -0.00523998681, -0.0126947695, -0.00651285797, 0.00802757498, 0.00522725796, 0.0110400366, -0.0559384488, 0.0257629137, 0.0434133969, 1.48584513e-05, -0.0188554656, -0.0456875935, 0.0152320256, 0.0114134122, -0.00837125, 0.0157836042, -0.0337904878, -0.00531211589, -0.00357252522, 0.0248294752, 0.00552426139, 0.00179686991, 0.0271376148, 0.00764995627, 0.000445239741, 0.032212127, -0.0454839319, -0.0050448128, -0.0158175472, 0.0343675241, 0.00622434029, 0.0108703207, -0.0149519946, -0.0259835441, 0.0114643266, -0.00795544498, -0.00854945183, -0.0206205137, -0.010140541, 0.0139676407, -0.00332007254, -0.00749296881, -0.0154696284, 0.0419877805, -0.0194834154, -0.028834777, -0.0079512028, 0.0346899852, -0.000905329653, 0.0247446168, 0.00627949834, -0.0105563458, 0.0389328897, -0.0157836042, 0.0113115823, 0.00403712317, 0.0100981118, 0.014612562, 0.0126777971, -0.00158578542, -0.00476478133, -0.00725536607, 0.0258138292, -0.0267302953, -0.0100471973, -0.00356403948, -0.0188215226, 0.00137682236, 0.0138403531, 0.0255762264, -0.0281389412, 0.0183123741, 0.0327212773, -0.00815061852, 0.0273243021, -0.0294457544, 0.0417162329, -0.0399511866, 5.47268355e-05, 0.0101490263, 0.0214012079, 0.0146634765, 0.000406788429, -0.0286141448, -0.0107515194, 0.0244560987, 0.0323648714, 0.00253725657, 0.0578732118, -0.00465446571, 0.00679288944, 0.00893555582, 0.0261362903, -0.0291402657, -0.00198567915, 0.0431418493, 0.0276637357, 0.051050622, -0.00690744817, -0.00178520195, -0.020348968, -0.0124317091, 0.0206544567, -0.0109551782, 0.0247785598, -0.0118207308, -0.0751503184, 0.00506178476, 0.0459591374, -0.00470962375, 0.0132124033, -0.0102932854, 0.0127032548, -0.00545637449, -0.0505754165, -0.0500662699, 0.0124911098, -0.0332813412, 0.00364677608, 0.018838495, 0.00181172008, -0.0152999125, 0.0052781729, -0.0431079045, 0.020315025, 0.0460949093, 0.0052993875, 0.024048781, -0.0357422233, 0.0128559992, -0.00780694373, 0.023319, 0.0237432923, 0.00258392864, -0.0123044224, 0.0284953434, 0.0152065689, 0.00756934099, 0.0100811403, -0.0212993789, 0.00714929355, 0.024116667, -0.035878, 0.0242015254, 0.0012304422, 0.0242354684, -0.00772632845, 0.0195173584, -0.0182954036, -0.0308204554, -0.00359373982, 0.0265605804, 0.0260174889, -0.0242184959, -0.0574998371, -0.0226910505, 0.0256610848, 0.0166576412, 0.00507875625, 0.0543091744, 0.001126491, 0.009436219, 0.0289535783, -0.034927588, -0.0237263199, 0.0162248649, 0.010632718, -0.0453142151, -0.0170649607, 0.00071917224, 0.0280710533, -0.0264587495, 0.00285547459, -0.0220970456, 0.0389328897, -0.0202131961, -0.0239469502, 0.0086724963, 0.0457215346, -0.0101999417, -0.0249652471, 0.0181596298, -0.0304810237, -0.01443436, 0.0321951583, 0.013450006, 0.0049260119, 0.00387165, 0.0208750889, -0.00534605933, -0.0051126997, -0.00937681831, 0.00411773846, 0.00526968716, 0.00919861626, -0.0038780144, 0.0234378017, 0.0308713708, -0.0357761681, 0.0173110496, -0.00541394576, -0.00016799249, 0.00312914187, 0.000227525728, 0.0123044224, 0.005087242, -0.00756085524, 0.0230474547, 0.0266963523, -0.00119225611, 0.043447338, -0.00477751, 0.0175316799, -0.0431079045, 0.00986050908, -0.00292548235, 0.00155926729, -0.0253386237, -0.00740386778, 0.0223007035, 0.0256780554, 0.00682683289, 0.0186348353, -0.0131530026, 0.00707292138, -0.00969079323, 0.00479872478, -0.0247955322, 0.00600370951, -0.0102508562, -0.027782537, -0.00284698862, 0.00441262033, -0.00611402467, 0.0102678277, 0.00378467049, -0.0359458849, -0.00236541894, 0.00945319049, -0.00604613824, 0.0162248649, -0.0301246196, -0.0171667896, 0.0264248066, -0.00503208442, 0.0326533914, 0.036794465, 0.00848580804, -0.0175656229, -0.00219570287, 0.0112267239, -0.0013237861, -0.0115322135, -0.00519331452, -0.00233996171, 0.00475629559, -0.0275619049, 0.0123213939, 0.004505964, 0.0258817151, 0.00794271659, -0.0140440129, 0.0215369817, -0.0119989328, -0.0181087144, -0.0174128786, -0.0175147075, -0.00331158657, -0.0054648607, -0.00815910473, -0.0262550917, 0.0134245483, 0.0402906165, 0.0379485339, 0.00011674616, -0.0141288703, -0.0218933858, 0.0082269907, 0.00574064953, 0.0272055, -0.00307186251, 0.00138849043, 0.0145446751, 0.00566427689, 0.015350827, -0.00722142262, 0.00733173825, 0.00795544498, 0.00986050908, -0.0063940566, -0.00725536607, 0.0251349639, -0.00756509788, -0.0150283668, -0.0128050847, 0.0212145206, 0.040697936, -0.0289875213, -0.0127626555, -0.00403075898, -0.0049005542, -0.0280710533, 0.00995385274, -0.0380503647, -0.0340620354, -0.00991991, -0.00940227602, -0.0390347168, 0.0100471973, 0.00436594849, -0.00535878772, 0.000931317452, 0.0169037301, -0.0101490263, 0.0660195872, -0.0144428452, 0.00117740594, 0.0173449926, 0.00725112297, 0.0307865124, -0.00885918364, -0.0370660089, -0.00932590291, 0.0297173, 0.0309222862, 0.0206374861, -0.03591194, 0.00462052273, -0.0303282794, 0.00495571224, -0.0142052434, -0.0161994081, 0.00600370951, 0.0204677694, 0.0143325301, 0.000691063, -0.0377109312, -0.011303097, 0.0346899852, 0.0104120867, 0.0344354101, -0.0239639226, 0.00995385274, 0.00788755901, 0.0129154, -0.0246427879, -0.0252877083, -0.00274728052, 0.0330776796, 0.0155544868, 0.0301585626, -0.0299718753, 0.0151641397, 0.0303282794, -0.00218721712, -0.0208750889, -0.00417501759, -0.0279013384, -0.00666560233, -0.0368284062, -0.010598775, 1.97063e-05, -0.00857066642, 0.0304131377, 0.0054818322, -0.0062285834, -5.70803204e-05, 0.00544364611, 0.0128984284, 0.0169546455, -0.0368284062, 0.0128899431, -0.0191100407, 0.00164412532, -0.0114643266, -0.00236117607, 0.0307186265, -0.00319278543, -0.018804552, -0.020315025, 0.00194112863, -0.00358313252, 0.026967898, 0.0171413328, 0.00835427828, 0.0390686616, 0.0267981831, -0.00211720914, 0.00432564085, -0.000920710212, -0.0164285246, -0.00422805408, -0.00101034157, -0.0205017123, -0.0333492272, -0.0337735154, 0.0338074602, -0.0149519946, 0.0135009214, -0.0155290291, -0.0130087445, -0.0161315221, 0.00672076037, -0.00236117607, -0.0082779061, -0.000969503599, -0.0104630012, -0.000308671268, 0.0106921187, -0.0109806359, -0.00111800525, 0.0340959765, -0.00788331591, 0.00331795099, 0.00498965522, 0.00392468646, 0.00561336195, 0.0178711116, 0.00743781077, -0.00634314166, 0.0419198945, 0.0188215226, 0.00471386639, 0.00166958279, -0.00567276264, -0.0151641397, -0.00069265411, 0.000391673093, 0.00407318817, 0.0100556826, 0.0075269118, -0.0121177342, 0.0310580581, -0.00855369493, -0.00782391522, -0.00969927851, 0.0075056972, -0.0160212051, -0.0112946108, 0.0340790078, -0.0213163495, 0.0225213356, 0.0112436963, 0.0380164199, -0.0356064513, 0.0110145789, -0.0321103, -0.0230983701, -0.0127287125, -0.00200689374, 0.00603341, -0.0463664569, 0.0403585024, 0.0187706072, 0.00762449857, 0.0222497899, -0.00184778473, 0.0166915841, 0.00223813183, 0.0314144641, 0.00870643929, -0.00393741485, 0.025457425, 0.00183823821, 0.039679639, 0.000669848465, -0.0164624676, -0.0274431035, -0.00673773186, -0.0459930822, -0.0371339, 0.0155799435, 0.00568549149, -0.0287329461, 0.00388862169, 0.00266030082, -0.0410034247, 0.0183632895, -0.0456536487, -0.0275279619, 0.0117104156, 0.00121240981, 0.0149774514, 0.00204614061, 0.0103951152, 0.0466040596, 0.00046353729, 0.0147398487, 0.00076584419, -0.0210957192, 0.017939, 0.0019803755, 0.0199755933, 0.00982656609, -0.0262211468, -0.0125759682, 0.00654680096, -0.0105478596, 0.00818456244, 0.0159787778, 0.000257226056, 0.0193476435, 0.00520604337, -0.0133736338, -0.00425563287, -0.026967898, -0.0162078943, -0.00241633388, 0.0098520238, 0.0269848704, 0.0139676407, -0.0326873325, -0.021791555, 0.00863006711, 0.0235735755, 0.00369344815, 0.00365738338, -0.00524422945, 0.0090628434, 0.0229795687, -0.00158684619, 0.0220461302, 0.0124317091, -0.00432988349, 0.0397135839, -0.0366586931, 0.0117952731, -0.0019283999, 0.00796817429, 0.0093683321, 0.00775602879, 0.0180408284, 0.0116934441, -0.0247106738, 0.00574489217, 0.00319278543, 0.0145616466, -0.00266454369, -0.00542667462, 0.000357995043, -0.0111418664, -0.0100471973, -0.00840943586, -0.0151301958, 0.0198398195, 0.013976126, 0.0185160339, 0.00389922899, 0.000638557074, 0.00316308509, 0.00549031794, 0.0312956609, -0.0126014249, -0.0093683321, -0.0209938902, 0.0197210182, 0.0191779267, 0.00673773186, -0.0368284062, 0.020315025, -0.0235056896, -0.0402906165, 0.0152489971, -0.0499644391, -0.0140609844, -0.00248209899, 0.0515597723, 0.00357464678, 0.0167679563, -0.0229965411, 0.000454255933, 0.0086215809, 0.0067886468, -0.0144428452, -0.0232511144, 0.0195343308, -0.0372017846, 0.00370193389, 0.00610129628, 0.0221819021, -0.0154781146, 0.00443807757, 0.0274261329, -0.00170140457, -0.0286650602, 0.0320424102, 0.0109382067, -0.0300567336, -0.032432761, 0.0184311755, 0.0167425, 0.014154328, 0.0045526363, 0.00441686343, 0.0246937014, -0.0282237977, 0.00244391267, -0.0245239865, -0.0342996381, 0.00281092408, 0.0232680868, 0.0247106738, 0.00598249491, 0.00795968808, -0.020382911, 0.00630495558, -0.00930893142, -0.0116764726, -0.0069498769, -0.0617087968, 0.0108278915, -0.0100556826, 0.00367647642, 0.0216388106, -0.021265436, -0.0130342012, 0.0193815865, 0.00608856743, 0.0185669493, -0.00730203791, -0.0100981118, -0.00402439479, -0.0445335209, -0.00444656331, -0.0158854332, 0.0182784311, -0.0365908071, -0.0170819312, -0.0399511866, -0.0304301083, 0.0313805193, -0.0148162208, -0.00495995488, 0.00363829033, -0.000684168306, 0.016615212, 0.00907132868, -0.0218424704, -0.0345881544, -0.0306167956, 0.00669106, 0.00838397816, -0.013976126, -0.00986050908, 0.00142561574, 0.015876947, 0.00389922899, -0.0380843058, -0.0430739634, 0.000272341422, 0.0200943947, -0.00327127916, 0.0056473054, -0.0220970456, 0.0188554656, 0.0225552786, -0.0163776092, -0.00947016198, -0.0167425, -0.0297003295, -0.00147546991, -0.0215539522, 0.000917528, -0.0136621511, -0.0258308, -0.0107769761, 0.0175147075, 0.0418859497, 0.00801060256, -0.0243712422, -0.00346220983, -0.0229625981, -0.0233359728, -0.020247139, 0.0254743956, -0.0210617762, 0.028800834, -0.0120159043, -0.00246300595, -0.00935136061, 0.026407836, 0.0223176759, -0.0119310468, -0.00835852139, -0.0089949565, -0.00283001713, 0.0285971742, -0.000385839085, -0.0242354684, -0.00830336381, 0.00231238268, -0.0280710533, -0.000339697523, 0.00959745, -0.0290384367, 0.0103951152, 0.00379527779, -0.0133481761, -0.00652982946, -0.00447626365, 0.0153677985, 0.014468303, -0.0160127208, -0.00609281054, 0.00281092408, 0.0015656316, -0.00660620164, -0.0154017424, -0.0272055, -0.00381437084, 0.0115746427, 0.0312447455, -0.00495571224, 0.00462900847, 0.01133704, -0.0224704202, -0.018906381, -0.0138658108, 0.00703473529, 0.0126268826, -0.0248634182, 0.00875735376, 0.000140811375, 0.0144513315, 0.00291911815, -0.0016865544, 0.0113115823, -0.0178541411, -0.0121771349, 0.0115237273, 0.00804879, -0.0229456257, -0.036047712, 0.0155375153, -0.00343675236, -0.0337395743, 0.0311768595, -0.0043341266, -0.00358949695, 0.0321612135, 0.0182275157, -0.000516043219, -0.0233359728, -0.0148331933, -0.0206205137, -0.0163266957, 0.0301585626, -0.0161654651, -0.0250670779, -0.00292548235, 0.0150283668, -0.0254743956, -0.0103357146, 0.0157242026, 0.0256101694, -0.00267727254, -0.023132313, 0.00761601282, -0.0132802902, -0.00819304772, -0.0402227305, -0.0090883011, 0.0187706072, -0.0200604517, -0.00948713347, 0.00826517772, 0.00577459252, 0.0123298792, 0.113913491, -0.0105478596, -0.00710686436, -0.0333492272, 0.00986899529, 0.0310580581, 0.010632718, -0.0309053138, 0.0319745243, 0.00654255832, 0.0465701148, 0.0108194053, 0.000705382787, -0.015843004, 0.000518164656, 0.00834155, -0.0126099112, -0.0116085857, 0.00825669151, -0.00409015967, -0.00575762102, -0.00478599593, 0.0138148963, -0.0134245483, 0.011549185, -0.000913815456, -0.0223346483, -0.0250501055, -0.0334001407, -0.00326279318, 0.00940227602, -0.000359851314, 0.0116934441, 0.00411349535, -0.00632192707, 0.0150029091, 0.000311057898, -0.000379739911, -0.0235226601, 0.0203659404, 0.00873189699, 0.000662953767, -0.0163691249, 0.00327340048, -0.0299209598, -0.00712807896, -0.0273243021, 0.000694775546, -0.0265945233, 0.0105393743, -0.000195969129, -0.017497737, 0.0108194053, 0.000712277542, -0.0149265369, 0.0248634182, 0.00504905591, -0.0119480183, 0.0167085566, -0.0130002582, -0.0178032257, -0.0200434793, -0.0027303088, -0.0169037301, 0.00729355216, 0.00468416605, -0.0126183974, -0.00703049218, 0.00925801694, -0.00844762195, -0.0327212773, 0.0181426574, -0.0031142917, 0.0181426574, -0.0224873926, -0.00365101895, -0.0128475139, -0.00647042878, 0.00424078247, 0.0123807946, 0.00291063217, 0.00232299, 0.00546910334, 0.0158005748, -0.00966533553, -0.00475205248, -0.0197889041, 0.0043341266, 0.0123129077, -0.0107684908, 0.00177353388, -0.0150113944, -0.00784937292, -0.0169546455, -0.00481145317, 0.0114897843, 0.0260684025, -0.00742083928, -0.0144937607, -0.0120243905, 0.00410076696, 0.00683107553, -0.0133990915, -0.0132293748, -0.00470538065, -0.0127032548, 0.0323648714, 0.00338583742, 0.00533757359, -0.00174277287, 0.0333831683, 0.00675470335, 0.0198058765, 0.0155205438, 0.0146040758, -0.00881675445, -0.0017936877, -0.00666135969, 0.000271811034, 0.0109466929, -0.0391704924, 0.0102763139, 0.00211827, -0.0190251824, 0.00519331452, -0.00585096469, 0.0317538939, 0.00681410404, 0.0123129077, 0.0148247071, 0.00727658067, 0.0374393873, -0.0326024741, -0.00758631248, 0.0101914555, 0.00149244152, 0.00189021381, 0.0240318086, 0.0196361598, 0.0196870752, 0.0136197219, 0.0226571076, 0.00744205387, -0.00681834714, -0.0101999417, 0.0073656817, -0.0142561579, 0.0125250528, 0.00695836265, -0.0140270414, -0.00154547789, -0.0193476435, 0.0192797557, 0.00341978064, 0.031261716, -0.0111758094, -0.0097841369, 0.0243542697, 0.0265775509, -0.00848580804, 0.0184651185, 0.0114218984, -0.0005632455, 0.00319066388, -0.00976716541, -0.00997931, 0.00919013, -0.0286480896, -0.0187706072, -0.00205886923, 0.010632718, 0.0100726541, -0.00847732276, -0.0227928814, 0.0192627851, 0.00814213324, 0.0229795687, 0.0147059057, 0.0168103855, 0.0141628142, 0.00662317313, -0.0111164087, -0.000311057898, 0.0217066985, 0.00375072728, 0.00633889856, -0.012779627, -0.00584672205, 0.018872438, 0.0147822779, 0.0050448128, 0.0117358733, -0.00987748057, 0.00531635899, 0.0394420363, 0.00355131086, 0.0116085857, 0.00502784131, -0.00785361603, -0.0111588379, -0.0316520631, 0.00393741485, 0.017285591, 0.0168443304, 0.00750145456, -0.0285123158, -0.0320424102, -0.0152235404, -0.00815061852, -0.00661893049, 0.0071365647, -0.0086894678, 0.00728930952, 0.0140440129, 0.0152150542, -0.00231026136, 0.00991142448, -0.0228098519, 0.00664863084, 0.0102848, 0.00709837861, -0.01443436, 0.00186687778, -0.00161018211, 0.00650437223, -0.0206205137, 0.0178371686, -0.00808697566, 0.0167170428, 0.0140694706, -0.0290893503, 0.0159702916, 0.025525311, -0.00960593484, 0.00478175282, -0.00658498704, 0.0356743373, -0.0370999537, -0.0383898, 0.0143579878, 0.021825498, 0.0148331933, 0.012991772, -0.00208008382, -0.00266878679, 6.53672396e-05, 0.00386316422, 0.0254234821, 0.00039326417, 0.0152914263, -0.00462052273, -0.00713232206, 0.0102932854, -0.0210108608, 0.0137385232, -0.0111927809, 0.00404773047, 0.0374054424, 0.0159872621, -0.0423951, 0.0242524408, -0.0116764726, 0.0227419659, 0.00297851861, -0.00694563426, 0.00806151796, -0.011090951, -0.00942773279, 0.00789604429, -0.00619464, -0.0431418493, 0.0335189439, -0.030209478, 0.0140694706, 0.0111418664, 0.00553699, 0.00296154711, 0.00942773279, -0.0317538939, -0.000574383128, -0.0281559117, 0.0118207308, -0.00272606593, -0.0225213356, 0.00683956128, 0.00459506502, -0.0265945233, 0.0275958478, 0.0112267239, 0.0079257451, -0.00717475079, -0.0186518058, -0.00879978295, -0.0130851166, -0.000216785877, 0.0393402055, 0.00256271404, 0.00208856957, -0.0161654651, 0.0108024338, 0.00708140712, -0.0213163495, 0.00529090129, 0.00595279457, 0.0161569789, -0.0151980827, 0.00557093322, -0.0118122455, -0.0147228772, -0.0241336394, 0.0309222862, -0.0501341559, -0.0137385232, -0.0136621511, -0.00863006711, 0.00406894507, 0.0194494724, -0.018023856, -0.0143749593, 0.00283638132, -0.01591089, 0.0138742961, -0.0350633599, 0.000458233641, -0.010666661, 0.00011455841, -0.00802333187, 0.00129090354, -0.0207223445, -0.00320339273, 0.0345542096, -0.0193815865, 0.0101999417, 0.0371339, -0.0279013384, 0.0233020298, -0.0354706794, 0.0114982706, 0.0325515606, -0.00505329901, -0.0283256285, 0.0260853749, -0.0184311755, 0.0199755933, -0.00349615305, -0.0475884117, -0.00747175422, 0.0292420946, -0.0123129077, 0.0149689661, -0.0271376148, -0.026933955, -0.00148395577, 0.00924104545, 0.0148162208, 0.0220631, 0.0120837912, 0.0272903591, -0.0224364772, 0.0330437385, -0.031618122, 0.0258477721, -0.00147016626, -7.617339e-05, -0.00194855372, -0.00561760506, -0.0183123741, 0.00630071247, 0.00878281146, 0.0286311172, 0.0116595, -0.00174489431, -0.00919013, 0.0111503517, 0.00146380195, -0.00756934099, -0.0204168539, -0.00506178476, -0.0026581795, -0.00703049218, -0.0230813976, -0.0245579295, 0.0108194053, 0.00276425201, -0.00673348876, 0.0078790728, 0.0156223727, 0.0252537653, -0.00201750081, -0.0185499769, 0.0299718753, 0.00731052365, 0.0221649315, 0.000181516749, -0.0197210182, -0.00819304772, -0.024999192, -0.00220418861, -0.01485865, 0.00831184909, -0.0173449926, -0.00325430743, -0.00953804888, 0.0197379906, 0.0115661565, -0.00580004975, -0.0266793817, -0.0216727536, 0.0360137708, -0.0318896659, 0.0164539814, 0.000228056102, -0.00941924751, -0.0136197219, -0.0104375444, 0.0148671363, 0.0282916855, -0.0233868882, 0.005087242, 0.0239639226, 0.0130851166, -0.036930237, -0.0255083404, -0.0201622806, -0.00919013, -0.017285591, 0.00897798501, -0.00242057675, -0.0158514902, 0.00162078941, -0.00719172275, 0.00987748057, 0.0075523695, 0.0108278915, -0.0122789647, -0.0176335089, 0.00932590291, -0.0105478596, -0.00167276501, -0.00161760719, 0.000633783813, 0.00163563958, -0.0247955322, -0.0310241152, 0.0157836042, -0.0176335089, 0.0144428452, 0.0271036718, 0.0031036844, -0.0119734751, 0.0248634182, -0.00728082331, -0.0141118988, -0.000250066165, 0.00664438773, 0.00184460252, -0.00701776333, 0.00230601849, 2.8838489e-05, -0.0251349639, 0.00663590198, -0.0312447455, 0.00799363106, -0.00720445113, 0.0146549912, 0.0291572381, -0.000811985752, 0.00566427689, 0.0020631121, -0.00429169741, 0.00836276449, -0.00232511153, -0.000265048904, 0.000392203452, 0.0158175472, -0.0104120867, 0.0118886176, 0.00458233664, 0.00768814236, -0.00152638473, -0.00886767, 0.0167849287, 0.00339644472, 0.0228947103, 0.00991142448, 0.0454839319, 0.0125844534, 0.0182614587, -0.00130151084, -0.0150453383, 0.00874038227, -0.00924104545, -0.0171752758, -0.011404926, -0.0122025926, 0.0176335089, 0.00876584, -0.00165579328, -0.00232511153, 0.0143495016, 0.00738689629, -0.015104739, 0.00121559203, 0.0159957483, 0.0149604799, 0.00312702032, -0.0144173885, 0.0302943364, 0.00669530267, 0.00802333187, -0.0154356854, -0.0157836042, -0.00110315508, 0.00406894507, 0.013450006, 0.00251392066, -0.0090883011, 0.00777300028, 0.0149689661, 0.00834579207, 0.0130936019, 0.001126491, 0.00767117087, -0.00600795215, 0.00352797471, 0.0236075185, 0.0183293466, -0.0058339932, 0.000547865, -0.0043383697, -0.0118886176, 0.0169037301, -0.0154611431, -0.00820153393, -0.0118801314, -0.0209260024, -0.000628480164, -0.00571943494, 0.0146889342, -0.00706867827, -0.00557517586, 0.0218085274, 0.00229541119, 0.00358313252, -0.00988596678, -0.0218933858, 0.00387165, 0.00622009765, -0.020382911, -0.003124899, 0.00538424542, -0.0106921187, 0.0310241152, 0.00257756421, 0.0261362903, 0.0140270414, -0.015138682, -0.00205993, 0.0138827823, 0.00577883562, 0.0128135709, -0.00609705318, 0.0089949565, 6.91460809e-05, 0.0149859376, 0.00710262172, 0.0103272283, -0.0128390277, -0.00585945044, -0.0102593424, -0.017183762, 0.017183762, -0.00144470891, 0.0140949273, -0.00124635315, 0.002350569, 0.000640148181, 0.0112606678, -0.0160890929, -0.00268151541, -0.00490904, -0.00911375787, 0.00714929355, 0.000116547271, 0.00403288053, -0.00193582498, 0.0211126916, 0.0214521233, -0.0220121872, 0.00918164477, -0.000892070588, -0.00968230702, -0.00394165795, 0.00746326847, 0.00059347623, 0.0157581456, -0.0109212352, 0.0159278624, -0.00630495558, -0.00289790356, 0.000622646185, -0.0142476717, -0.000568018819, -0.00543091726, -0.0314144641, -0.0242184959, -0.00808273256, 0.00225086068, -0.0223855618, -0.015775118, -0.00264969375, -0.00981808, -0.0082948776, 0.00368920504, -0.015775118, 0.0054648607, 0.00593158, -0.0129493438, 0.00107928878, -0.00163563958, 0.00224237493, 5.10805876e-05, 0.0131105734, -0.0039183218, 0.0213672649, 0.0075269118, 0.00669106, -0.0242015254, -0.000342084153, -0.00295942556, 0.031618122, -0.00268575829, 0.00652982946, 0.0185499769, -0.0346051268, 0.0147398487, -0.0392044336, -0.0163945816, -0.00784088671, 0.00992839597, -0.00764571317, 0.0123298792, 0.000737734954, -0.0028024381, -0.0263399482, 0.00111694448, 0.000972685753, -0.000722354453, 0.021791555, 0.00136409362, 0.0290384367, -0.0159024056, -0.016513383, 0.0232680868, 0.00294881826, 0.000195969129, -0.00237390492, 0.00686926162, 1.08973029e-06, -0.00237814779, 0.000983293, 0.0264248066, 0.00249270629, 0.0184142031, -0.00423866138, -0.0152489971, 0.006601959, 0.0111079235, -0.016615212, -0.00229965406, 0.00297851861, 0.00137364026, -0.0249143336, -0.012007419, -0.00832457747, 0.0114643266, 0.0244051851, -0.00103526865, 0.00443807757, 0.0107430331, -0.0161315221, 0.0103781438, -0.0205526277, -0.0227589384, -0.00528665865, -0.00375921302, -0.0017417121, -0.00239511929, -0.00142455508, -0.00191673194, 0.0105648311, 0.00561336195, 0.00810819, 0.00165473262, 0.0157920886, -0.0399172418, -0.0305998251, 0.0198567919, -0.00654680096, 0.00237602624, 0.0305658821, -0.00538424542, -0.00425138976, -0.00775602879, 0.00154653855, 0.00113921973, 0.00465870881, 0.0529175, -0.00726385182, 0.00159957481, -0.00784937292, -0.01390824, -0.00909678638, -0.00404985202, 0.0026263576, 0.00516361417, 0.00625404064, -0.00463325111, 0.0276976787, 0.0115237273, -0.00818031933, 0.0082991207, -0.00821850542, -0.00290851085, -0.00599098066, 0.0134075768, -0.00516361417, -0.0414786302, -0.0117019294, -0.0166831, -0.0202131961, 0.00865128171, 0.0319066383, 0.00413046731, -1.82643762e-05, 0.010386629, 0.00393105065, -0.0153932562, -0.00788755901, 0.014154328, 0.0231153425, 0.0211126916, 0.0227589384, 0.00426624, -0.010844863, -0.00152108108, -4.40864242e-05, -0.012533539, -0.0138233816, 0.0213672649, -0.00855369493, 0.0137215517, -0.0142901009, 0.0145361898, 0.00344099523, 0.00855369493, -0.0161060635, 0.01591089, -7.82285424e-05, -0.00988596678, -0.00189339602, -0.00602916675, -0.00536727393, 0.00548607484, 0.0207902305, -0.0162503235, -0.0106242318, 0.00904587191, 0.0112352101, 0.00935984682, -0.00994536746, -0.00277698087, 0.0152405119, -0.0113794692, 0.0188894086, 0.0279013384, -0.00619039731, -0.00853248, -0.00579580711, 0.00982656609, -0.0127711417, -0.0182275157, -0.0112267239, 0.0106921187, 0.0198737625, -0.00663590198, -0.00382709946, 0.0109976074, 0.0285462588, 0.00406045932, -0.0105139166, 0.0198398195, 0.0147313634, -0.00374648441, 0.0153762847, -0.00894404203, 0.00388650014, 0.00347281713, 0.00591460848, 0.00100928079, -0.0222497899, -0.004312912, -0.0178371686, -0.0169376731, 0.012533539, -0.0182954036, 0.0087149255, 0.000477061549, -0.00924953073, -0.00698382035, -0.023319, 0.0126268826, 0.00137470092, -0.0121177342, 0.0022635893, 0.0136706373, 0.00178732339, 0.00378254894, 0.00675470335, -0.0218424704, 0.000424290425, -0.00140015839, 0.0107684908, 0.0128729716, 0.00847732276, 0.00605886709, -0.0266284663, -0.0052315006, 0.00427472591, -0.00991991, -0.000852293393, -0.00887615513, -0.0201962236, -0.000691063, -0.0248803906, 0.0056515485, -0.00210660184, 0.00418138225, -0.00493449764, 0.0133142332, 0.00422593253, 0.0004476264, 0.0106157465, -0.0187875796, 0.00275788759, 0.0223516189, 0.0341808349, -0.0140949273, -0.0132802902, -0.0169291869, 0.0125505105, 0.00612251088, 0.000943515799, 0.0103781438, 0.0119734751, 0.0158345178, -0.00998779666, -0.0205526277, -0.0143834455, 0.00147546991, 0.0249822196, -0.0243542697, 0.00749721145, 0.0191439837, -0.00642375695, -0.0089695, -0.00960593484, -0.0065552867, -0.00757782673, 0.0077135996, 0.00651710061, -0.00756934099, -0.000988066313, 0.00665711658, 0.00901192799, 0.00879978295, 0.0016069999, -0.00739113893, -0.0086003663, -0.00423017563, 0.0152914263, 0.012711741, 0.00203659409, 0.0256610848, -0.010912749, 0.00616493961, -0.0144089023, 0.0100132534, 0.0113794692, -0.0156223727, 0.00439140573, -0.00150941312, -0.0114388699, -0.00971625093, -0.0134415207, -0.00737416744, 0.00122726, 0.0176844243, -0.0107939485, 0.00923255924, -0.00381861371, 0.0121007627, 0.00415380299, -0.00512118544, -0.00394165795, -0.0107684908, 0.00256271404, 0.0166576412, 0.0148416786, 0.0164624676, 0.00481993891, 0.00732749561, 0.00533757359, 0.0102338847, -0.0258647446, 4.29262582e-05, -0.0119225606, 0.00467992341, -0.00107027253, 0.00562184816, 0.0126014249, -0.0137639809, 0.00383134233, 0.00661044475, 0.0190930683, -0.0130172297, 0.010912749, -0.0116679864, 0.0178541411, 0.0255083404, -0.00515088579, -0.00708564976, -0.00406258088, 0.00280880253, -0.0125080813, 0.00481145317, 0.00229328964, -0.00618191157, 0.0135263782, -0.0256101694, -0.0401887894, 0.00875735376, 0.00665711658, 0.0217745844, 0.0166321844, -0.01390824, 0.0100471973, -0.0201283377, -0.0139252115, 0.00951259118, 0.0220800731, -0.0211126916, 0.0104799736, -0.00807424635, -0.0118461885, 0.00763298478, 0.00901192799, 0.00677591795, -0.000859188091, 0.00344311679, -0.0128984284, 0.00966533553, 0.00867673941, 0.00967382174, 0.00831609219, -0.00596976606, -0.00285971747, 0.00299761188, -0.030735597, 0.0199246779, -0.0097841369, 0.0037740632, -0.00642799959, -0.0211126916, 0.00380588509, -0.00497268373, 0.00860885251, -0.017497737, 0.0170140453, -0.00809546094, -0.00896101352, 0.0117443586, 0.00803181715, 0.0112267239, 0.00084911118, -0.0185669493, -0.00596552342, -0.0172346774, 0.00160169636, 0.00487085385, 0.0030824698, -0.0192797557, 0.000370458554, 0.00333280116, -0.0360816568, -0.0035767681, 0.0136451796, -0.0216048677, 0.0252707377, -0.0153677985, 0.0136876088, 0.0159872621, 0.023200199, 0.0230813976, 0.0268151537, -0.01390824, -0.0052527152, 0.000514717307, 0.000461946183, -0.00916467328, -0.00260090013, -0.00122726, -0.00263060047, 0.00776451454, -0.00249694916, 0.00676743221, 0.00242057675, 0.00746326847, 0.0275958478, 0.0127711417, -0.0126947695, -0.000795544533, 0.00545637449, 0.00357464678, 0.00277061644, -0.0291232932, -0.0011127016, 0.00789180212, 0.0113879545, 0.00213948451, -0.00199204357, 0.00200265064, 0.0210787486, -0.00536727393, 0.0186518058, 0.0177523103, 0.010174484, 0.0131614888, 4.68625467e-06, 0.0192627851, -0.0118377022, -0.0108533492, -0.0229795687, -0.00251392066, -0.0123468507, 0.00835003518, -0.0128390277, -0.0156393442, 0.00367435487, -0.0341468938, -0.00691169081, 0.0186857507, -0.0146719627, -0.030243421, -0.0115661565, 0.00338583742, -0.0136791226, -0.00311641302, 0.00118695246, 0.00203871541, -0.00651285797, 0.000805621443, -0.0236584339, 0.0048835827, 0.00487509696, -0.0236075185, 0.00070326135, -0.0218424704, -0.0274261329, 0.0423611552, 0.0238790642, 0.0143919308, -0.0137215517, 0.00111588382, -0.0181935728, -0.0114728129, -0.0239299797, 0.00471386639, 0.0138403531, -0.0134330345, 0.00587217929, -0.00759479823, 0.0162248649, -0.0170564745, -0.00466719456, -0.0209938902, 0.000308671268, -0.00619464, 0.0200604517, 0.0239299797, -0.00377194188, -0.00803606, 0.00958047714, -0.0342826657, -0.0101999417, -0.00677167485, 0.0104036005, 0.031686008, 0.0123129077, -0.0198058765, -0.00885069836, -0.000528771954, 0.00332219386, -0.00242057675, -0.00955502, -0.0203998834, -0.0125165675, -0.00646194303, -0.000484486605, 0.00703049218, 0.0251179934, 0.0129748005, -0.00672500301, -0.021265436, -0.0276976787, 0.00724263722, -3.26836198e-05, -0.0177692827, 0.010632718, 0.0145871043, -0.0108872922, -0.00656377291, 0.00804454647, -0.00897798501, -0.011370983, -0.00103739009, -0.0274091605, -0.00363404746, -0.0147822779, 0.0209599473, -0.0213502944, 0.010386629, 0.00990293827, 0.0146295335, -0.00921558775, -0.0136366943, 0.0110230651, -0.0225722492, -0.0190421529, -0.00542243151, -0.0145955905, -0.00846883655, -0.00981808, 0.0104290582, 0.0114473552, -0.0168867577, -0.0189742669, -0.00259241438, 0.00607159594, -0.012567482, 0.00496419799, -0.00151683821, -0.0034834242, -0.00578732137, 0.00691169081, 0.000809334, -0.0182614587, -0.00141606922, 0.0050702705, -0.000718111522, -0.00312914187, -0.00272182305, 0.00991991, 0.00648315763, -0.0073444671, 0.0147653064, 0.0228947103, -0.00737416744, -0.00142031221, -1.67893049e-05, -0.0236584339, -0.01133704, 0.0168952439, 0.0304640513, 0.00680137519, -0.00991991, 0.0126523403, 0.00614372501, -0.00574489217, -0.0073656817, 0.00227207527, 0.00965685, -0.000814107247, -0.00772208534, 0.00628374098, 0.0119310468, 0.0117273871, 0.0114812991, -0.0134754637, 0.00799787417, -0.00920710154, 0.0038567998, -0.00767965661, 0.00677167485, -0.00498116948, -0.0224873926, -0.0209769178, -0.00230813981, -0.0126523403, -0.0191779267, -0.00463325111, 0.00191142829, 0.00166852202, -0.0127626555, 0.0160296913, 0.0112097524, -0.0183632895, 0.00515088579, 0.0107260616, -0.0237772353, 0.0116340434, -0.0018976389, 0.00389074301, 0.049047973, 0.00622434029, -0.0144089023, -0.0146295335, 0.00184248108, 0.0183632895, 0.00608008169, 0.0028024381, -0.0114388699, 0.00406258088, -0.0161739513, -0.0167170428, 0.000764253084, 0.000581808214, -0.0191609543, -0.000472288259, 0.0256610848, 0.00421532523, -0.0169885885, 0.00224237493, -0.0229625981, 0.0109042637, 0.014188271, 0.00924953073, -0.00619888306, 0.0395438671, -0.0237263199, -0.0184820909, 0.00200265064, 0.00333280116, 0.0119395321, 0.0193306711, -0.0147568202, 0.0116595, -0.0143240448, 0.0194664448, 0.0100387111, -0.000109652552, 0.00414107461, -0.0086427955, -0.0110060936, 0.0169122163, 0.0100217396, 0.0202131961, 0.000668257417, -0.00799787417, -0.0078578582, 0.00937681831, 0.00360646844, 0.0033731088, -0.0151217105, 0.0221649315, 0.00116998085, -0.00434897654, -0.00945319049, 0.00999628194, -0.0253895391, 0.00337947323, 0.00440413458, 0.00705170678, 0.00603341, 0.0190591253, 0.0177353397, -0.00638132775, -0.000413683156, -0.00880826917, -0.0152829411, 0.000819410838, 0.00356616103, 0.014680448, -0.0181256868, 0.0162588079, 0.0162333511, -0.00364041165, -0.0216218401, 0.0273412745, 0.0109382067, 0.00963139255, 0.00885918364, 0.0027515234, -0.010666661, 0.0258308, -0.0103187431, 0.0173789356, -0.00613948237, -0.0102593424, 0.00293184677, 0.0209938902, 0.0102423709, 0.000941394363, 0.0098095946, 0.00927498844, -0.0143410163, 0.00868098158, -0.00178626261, -0.0224704202, -0.00328400778, 0.021231493, -0.00885069836, -0.0128559992, 0.019822849, -0.0333831683, -0.0243203267, 0.00737416744, -0.00372526981, -0.00580853596, -0.0168188717, 0.0104884589, 0.00952956267, -0.00123574585, 0.0135094067, 0.0056260908, 0.0052993875, 6.50109041e-06, -0.00345372409, -0.0144428452, -0.0349954739, -0.00418350333, -0.0125080813, 0.0082948776, -0.0050448128, 0.00338795898, -0.0283595715, -0.00304216216, 0.00315247779, 0.0164964106, 0.00297851861, -0.0186687782, -0.000102094884, -0.00432776241, -0.0026263576, -0.00458233664, -0.00478175282, -0.00205144426, -0.00431503356, 0.00644497154, 0.0149265369, -0.0283256285, -0.0199246779, 0.00480721053, -0.0126014249, -0.0223176759, 0.0216388106, 0.00722142262, -0.00265393662, 0.0103272283, -0.0144258738, 0.00224449625, 0.0140100699, 0.0035810112, -0.0199925639, -0.0220291577, 0.00132272532, 2.73799906e-05, 0.00737841, 0.00534181623, -0.0107260616, 0.0240657516, 0.00267515099, -0.0171583053, 0.0141628142, 0.00270485133, 0.00599522376, -0.0301925056, -0.00347706, -0.00767117087, -0.0136451796, -0.00818456244, 0.0145361898, -0.00502359867, 0.00213099853, -0.0105902888, 0.014892594, 0.00714505045, 0.0239299797, -0.000549986435, -0.00628798408, -0.00561760506, -0.0632023, -0.00874038227, 0.00795544498, -0.000110779576, 0.0170649607, -0.0127202263, -0.012711741, 0.00650437223, 0.00937681831, 0.0177523103, 0.00734022399, -0.0101999417, 0.00669106, 0.00851126574, 0.00990293827, -0.0167849287, 0.0123468507, 0.0220970456, -0.0118207308, -0.019398557, 0.0309053138, -0.00483691087, -0.0151556535, 0.00842216518, 0.00898647122, -0.0195513014, 0.0102848, -0.00727658067, -0.0133312047, -0.0122619933, -0.00893555582, 0.000262264512, -0.00146698416, 0.00105754391, -0.0154781146, -0.00859188102, -0.000661362661, -0.0211805776, -0.0012198349, -0.00245239865, 0.00127499271, 0.0135772936, 0.00512967119, -0.0185499769, 0.0147228772, 0.00422381097, 0.0194494724, 0.000738265342, 0.00660620164, 0.0215369817, -0.00958896335, 0.0206884, -0.0308543984, 0.0122704785, 0.0284104869, -0.00294881826, 0.0170479883, -0.0327043049, 0.00543516036, -0.00140334049, -0.0184311755, -0.0109297214, -0.00217873137, -0.000221691735, -0.0142137287, 0.0172771048, -2.45292904e-05, 0.0199586209, -0.01538477, 0.015316884, 0.00537575968, -0.00728930952, 0.000218509565, -0.0116255572, -0.00903738569, 0.0209429748, 0.00220206729, -0.00276637357, 0.0195003878, 0.0145871043, 0.0148077356, -0.00375497015, -0.00219358155, 0.00656801555, 0.00355767505, 0.0156138875, -0.0183293466, 0.0015518422, -0.00242906273, 0.000702200632, 0.0130172297, 0.00434897654, 0.0228098519, 0.00523574371, -0.0172940772, -0.00437443424, -0.004505964, 0.00438716309, 0.0183293466, 0.0027197015, -0.0205526277, 0.00945319049, 0.0300397612, 0.013450006, 0.0177183673, -0.0262211468, -0.0151980827, 0.00923255924, -0.00205144426, -0.0017417121, 0.00685229, 0.00341978064, 0.0069498769, 0.00535878772, 0.0283086561, 0.0158599764, 0.00728506641, 0.0128814569, 0.00653407257, -0.0075056972, 0.00656801555, -0.00295093982, -0.0039077145, -0.00867673941, 0.0211805776, -0.0172431618, -0.0172771048, 0.000324582157, -0.0171243604, -0.0146040758, 0.0274261329, 0.0217066985, 0.0128050847, -0.0173110496, -0.00651710061, -0.00837973598, -0.006020681, -0.000531423721, -0.00997082517, 0.0109806359, 0.00915618706, -0.0101235695, 0.0229456257, -0.0090628434, -0.0150029091, -0.0236584339, -0.00251179934, 0.00715353619, -0.00994536746, -0.0183802601, -0.00381861371, -0.0240996964, -0.028800834, 0.00647042878, -0.0182784311, 0.0172346774, 0.00979262311, 0.0139336968, 0.00714505045, 0.00185414916, -0.00594855146, 1.17342815e-05, -0.0223007035, -0.0143240448, -0.00588915078, 0.00445504952, -0.00124953524, -0.021231493, -0.0213502944, -0.0103781438, -0.00424078247, 0.00167382567, 0.012253507, 0.0121262204, 0.00765419891, 0.00284274574, 0.0141458428, -0.0071365647, 0.0180068854, 0.00376133458, 0.00176186592, -0.00200159, -0.00267090811, -0.000204057171, -0.0190421529, -0.0274431035, 0.0043383697, -0.00646194303, -0.012075305, -0.0189742669, 0.0192288421, 0.0104545159, -0.0147143919, -0.000621055078, 0.002543621, -0.0100811403, -0.000768496, 0.0207902305, -0.00329673663, 0.0197040476, -0.00410076696, -0.00395862944, 0.0144258738, -0.00900344271, -0.00836276449, -0.0133736338, -0.0360137708, 0.0159957483, -0.00408379501, -0.0150029091, 0.00201962236, 0.0171922483, -0.0161994081, -0.00240572658, 0.0031036844, 0.00212357356, -0.00835427828, 0.0166321844, 0.000740917108, 0.0041686534, 0.0214521233, 0.00690320507, 0.00413895305, -0.0129748005, 0.0234717466, -0.00172155839, 0.0037634559, -0.0109721497, 0.010140541, -0.00913072936, -0.008625824, -0.00418562489, 0.0205696, 0.00654255832, -0.00958896335, -0.00935984682, 0.00438716309, 0.00437867688, -0.00209599454, 0.0119395321, 0.0179050546, -0.00114134117, -0.0140015837, 0.0164285246, 0.00203977618, 0.0111164087, 0.0119565036, -0.00322885, -0.0118716462, -0.0209769178, -0.00336674438, -0.0128814569, -0.0351991318, 0.0007759211, 0.0183123741, 0.00994536746, -0.0141034136, 0.00721293688, -0.0194494724, 0.0182105452, -0.0139846122, 0.00663165934, 0.0308713708, -0.0154696284, -0.0107260616, -0.00390135031, 0.0145616466, -0.00919861626, -0.00904587191, 0.00500238407, -0.00578732137, -0.011549185, 0.00976716541, -0.00631344132, 0.00957199186, -0.0166915841, 0.00338159455, 0.0201962236, -0.00619464, -0.0219273288, -0.0160636343, -0.0199077055, -0.00824396312, -0.00398620823, -0.000758419104, -0.0193815865, -0.0114388699, 0.00580429286, 0.0022572251, 0.0286480896, 0.0150707951, 0.0049047973, 0.02267408, 0.00224449625, -0.0133990915, -0.0173449926, 0.00324157882, -0.0106072603, 0.00235905475, -0.00544788875, -0.0021596381, -0.0120243905, -0.00152320263, -0.00612675352, -0.0281559117, -0.0253386237, -0.0212993789, -0.0140100699, 0.00202598679, -0.0171922483, -0.0223855618, 0.0103611723, -0.00537151657, 0.00662741624, -0.000387165, -0.00780270062, 0.00150835246, 0.00284911017, 0.0202301666, -0.008273663, -0.01633518, -0.00077645143, -0.00557093322, -0.00496419799, -0.00402227324, 0.00538000232, 0.0195852462, -0.00429169741, -0.0106751472, 0.00888464134, -0.0214012079, -0.00284062442, -0.027850423, -0.0060418956, -0.00674621761, 0.00321399979, -0.00456536468, -0.0164454971, 0.010632718, -0.0225213356, -0.00637708511, 0.00178838405, -0.0064152712, -0.0108194053, 0.0212145206, -0.0222667605, 0.00824396312, 0.00573640643, 0.0242524408, -0.00879978295, 0.00918164477, -0.00290851085, -0.000826305593, -0.00491752569, -0.00545637449, -0.000769556733, -0.0245409571, 0.00308883423, -0.00104905805, 0.0103696575, 0.00799363106, -0.0190591253, -0.0161145497, -0.00279819523, -0.0163945816, -0.00117740594, 0.00725536607, -0.00457809353, 0.00747175422, 0.0069286623, -5.94338053e-05, -0.0147143919, -0.0175316799, 0.0840434432, 0.0197889041, 0.0139336968, -0.00512118544, 0.00329673663, -0.00340068759, -0.0150453383, 0.0538679101, 0.011829217, 0.00795544498, 3.26504742e-05, 0.00577459252, 0.00675046071, 0.0267981831, -0.000944576517, -0.0182105452, -0.0325855054, 0.0154950861, -0.00770511385, -0.017183762, 0.00633041281, -0.0126099112, 0.0127711417, 0.00660620164, -0.00292123947, -0.00832882058, -0.0134924352, -0.00945319049, -0.00996233895, 0.0134415207, 0.00326067186, 0.00731052365, 0.00369344815, 0.0090883011, -0.0239978656, -0.0103951152, 0.00661893049, 9.5597934e-05, 0.00658498704, -0.0197379906, 0.0175656229, 0.00534605933, -0.00630919868, 0.0232850574, 0.0240657516, -0.00672924612, -0.00757358409, -0.0196531322, 0.00778572913, -0.0031036844, -0.00518058613, -0.0301925056, 0.00544364611, -0.0169037301, 0.00803181715, 0.0234378017, 0.020382911, 0.00284274574, 0.00560911931, 0.00413895305, 0.00404348783, 0.0288178045, -0.000100039724, -0.0136876088, 0.00447626365, -0.0230474547, -0.00344948098, 0.000900556392, -0.0162333511, 0.00688199047, -0.0156054012, -0.00661893049, 0.00817607623, -0.0116085857, -0.00930893142, -0.000446565653, -0.00579580711, -0.00820153393, 0.00425775442, -0.0259835441, -0.00748024, -0.0122704785, -0.0223346483, 0.00040625807, 0.0112606678, -0.00889312662, -0.0246258155, -0.0225213356, -0.00589339389, -0.0128814569, 0.00164412532, 0.0211466346, -0.0337735154, 0.0211466346, -0.00576186366, 0.00132272532, -0.00424078247, 0.0364889763, 0.0113115823, -0.0124232229, 0.00288941781, -0.00706019253, 0.00142561574, -0.00651285797, 0.0140609844, 0.0227759089, -0.0166067276, 0.0228777397, 0.0156563167, -0.00481993891, 0.0184481479, -0.0160127208, 0.0175656229, 0.0248634182, 0.00876584, -0.00564306229, 0.026933955, 0.00848156493, 0.00439564884, -0.015104739, 0.0165642984, 0.0306846835, -0.0372017846, -0.00804030336, 0.01443436, 0.00325642899, 0.00894404203, 0.00768814236, 0.0135178929, -0.017497737, -0.00343463081, -0.00622434029, 0.00843489356, -0.00354494643, 0.012041362, 0.0064152712, -0.0309901722, -0.00796393119, 8.13444276e-05, 0.0137045803, 0.0252028499, 0.0108024338, -0.00949562, 0.00924104545, -8.6648055e-05, -0.00798938889, 0.00677591795, -0.0108533492, -0.006020681, -0.0101999417, -0.00711959321, 0.00685653323, 0.0292420946, -0.00571943494, 0.0252028499, -0.00531635899, -0.00211827, -0.0178711116, 0.0114897843, -0.0130342012, -0.0111758094, 0.00962290633, 0.00843489356, -0.00287881051, 0.00647891453, -0.0157666318, 0.0110400366, 0.0121262204, -0.00317369238, -0.0016971617, 0.026475722, -0.00348554575, 0.0126777971, 0.017922027, 0.00403288053, 0.0241675824, 0.00440413458, -0.0230135117, -0.00429594051, -0.0186178628, 0.00896101352, 0.0186178628, 0.00999628194, 0.033451058, -0.0077390573, -0.0125589967, -0.00318854256, 0.013305747, 0.0311768595, 0.00488782534, 0.0175147075, 0.00991991, -0.0242354684, 0.00103473826, -0.0145955905, 0.00363404746, 0.0110060936, 0.00309944153, -0.00335825863, -0.0304979943, 0.00685229, 0.0262381192, -0.00816759, 0.00582975, -0.00644497154, 0.0100811403, 0.00861733872, -0.00267727254, -0.00130257162, -0.0031970283, 0.00808697566]
31 Mar, 2021
LR Parser 31 Mar, 2021 In this article, we will discuss LR parser, and it’s overview and then will discuss the algorithm. Also, we will discuss the parsing table and LR parser working diagram. Let’s discuss it one by one. LR parser :LR parser is a bottom-up parser for context-free grammar that is very generally used by computer programming language compiler and other associated tools. LR parser reads their input from left to right and produces a right-most derivation. It is called a Bottom-up parser because it attempts to reduce the top-level grammar productions by building up from the leaves. LR parsers are the most powerful parser of all deterministic parsers in practice. Description of LR parser :The term parser LR(k) parser, here the L refers to the left-to-right scanning, R refers to the rightmost derivation in reverse and k refers to the number of unconsumed “look ahead” input symbols that are used in making parser decisions. Typically, k is 1 and is often omitted. A context-free grammar is called LR (k) if the LR (k) parser exists for it. This first reduces the sequence of tokens to the left. But when we read from above, the derivation order first extends to non-terminal. The stack is empty, and we are looking to reduce the rule by S’→S$. Using a “.” in the rule represents how many of the rules are already on the stack. A dotted item, or simply, the item is a production rule with a dot indicating how much RHS has so far been recognized. Closing an item is used to see what production rules can be used to expand the current structure. It is calculated as follows: Rules for LR parser :The rules of LR parser as follows. The first item from the given grammar rules adds itself as the first closed set. If an object is present in the closure of the form A→ α. β. γ, where the next symbol after the symbol is non-terminal, add the symbol’s production rules where the dot precedes the first item. Repeat steps (B) and (C) for new items added under (B). LR parser algorithm :LR Parsing algorithm is the same for all the parser, but the parsing table is different for each parser. It consists following components as follows. Input Buffer – It contains the given string, and it ends with a $ symbol. Stack – The combination of state symbol and current input symbol is used to refer to the parsing table in order to take the parsing decisions. Parsing Table : Parsing table is divided into two parts- Action table and Go-To table. The action table gives a grammar rule to implement the given current state and current terminal in the input stream. There are four cases used in action table as follows. Shift Action- In shift action the present terminal is removed from the input stream and the state n is pushed onto the stack, and it becomes the new present state. Reduce Action- The number m is written to the output stream. The symbol m mentioned in the left-hand side of rule m says that state is removed from the stack. The symbol m mentioned in the left-hand side of rule m says that a new state is looked up in the goto table and made the new current state by pushing it onto the stack. An accept - the string is accepted No action - a syntax error is reported Note –The go-to table indicates which state should proceed. LR parser diagram : Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser
https://www.geeksforgeeks.org/lr-parser?ref=asr10
PHP
LR Parser
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0299598668, 0.00493887812, -0.0177378654, -0.00314985029, -0.00326415943, 0.00143339962, -0.00527636195, 0.018333, -0.0228327848, 0.0377691723, 0.0211635102, -0.0284938067, 0.0326016769, -0.0148638096, -0.0217150971, 0.00289583, 0.00726134842, -0.0170411244, -0.0100229103, -0.0184200928, 0.0043401164, 0.00408972474, -0.0102769304, 0.0111115687, -1.23324526e-05, -0.0108648064, 0.00400263211, -0.0273035411, -0.00817944948, 0.0169250015, 0.0590778366, 0.0412819088, 0.0100519415, -0.0353886411, -0.0337048508, -0.0146025317, 0.00584972184, 0.00181170821, -0.0176943205, 0.0164750237, -0.0169975795, 0.0444462746, -0.0113075273, 0.0312081929, -0.0411948152, 0.0282034986, 0.0346919, -0.0142686768, -0.0280728582, -0.0389884673, -0.0175927114, 0.000147422426, 0.0509201586, -0.00445986865, 0.0268245302, 0.00833186228, 0.0235730726, 0.0457526632, 0.00572634069, 0.0124905352, 0.0478719175, -0.00342201465, -0.0322823375, -0.0508330688, 0.0106543321, -0.0128751947, -0.0383497886, 0.0110172182, 0.00841895491, -0.0112784961, -0.00713796727, -0.00497153774, -0.0326887667, -0.0455494486, -0.0053961142, 0.0089342529, -0.0224263538, 0.0290018469, 0.00100247248, -0.00455421908, -0.0371014625, 0.0257649049, -0.0355047621, -0.0416593105, -0.00155315199, 0.0049062185, 0.00664081331, -0.059571363, 0.0456655696, -0.00169558474, 0.00775124459, 0.047523547, -0.0242988449, -0.0196539052, 0.0258955434, -0.044765614, 0.0068404004, -0.000644576212, 6.1804014e-05, 0.0284067132, -0.000450659019, -0.0294808559, -0.0223247446, 0.0106325587, 0.0222086217, -0.00953664351, -0.0483654439, 0.00652831886, -0.0235150103, 0.0377401412, -0.0196539052, 0.0187829789, 0.0224844143, 0.00672427705, -0.0160685908, -0.00958018936, -0.0199006665, -0.0913892, -0.0354757309, 0.00257104705, -0.00707627647, -0.0136299971, -0.00466671353, -0.0116921859, -0.0471751764, 0.0390465297, 0.0144573776, -0.0140582025, -0.0031425925, 0.00952938572, -0.0109736715, 0.0191313494, 0.00143975008, -0.0227602087, 0.0054686917, 0.051820118, 0.00848427415, -0.0376820788, 0.0544038638, 0.00967454, 0.0209022313, -0.0384949446, 0.0489170291, -0.0162572917, -0.00335125206, 0.0164024457, -0.0251262244, 0.0253149252, -0.0235150103, 0.0299888961, -0.0326887667, 0.00736295618, 0.0289583, -0.00340024149, 0.0102406424, -0.0110099604, -0.0106906211, 0.0140364291, 0.0152266957, 0.0325436145, -0.00857136678, 0.000836452178, 0.00628518499, 0.0245310925, -0.021352211, 0.0444753058, -0.00473929103, -0.000763421354, -0.0225134455, 0.0280147977, -0.0287841149, 0.0117792785, 0.00851330534, -0.00841169711, -0.0467397124, -0.0057844026, 0.0330661684, 0.0139711099, 0.0034510456, -0.0116631556, 0.0089269951, -0.0170411244, 0.0109373834, -0.0188845862, 0.00799075, -0.011358331, 0.0537942164, 0.008048811, 0.0249230079, -0.0233988874, -0.00830283109, -0.00704724574, -0.0157782827, -0.00598036079, -0.00523281563, 0.0152992727, -0.025837481, -0.0171572492, 0.0122800609, -0.0146823665, -0.00626341207, -0.0249375235, -0.00423487928, 0.0236166194, 0.0136082238, -0.0316146277, 0.00486993, -0.00882538687, 0.0148420362, -0.0192329567, -0.0315275341, -0.0201909747, -0.000101778176, -0.00898505654, -0.0291034542, -0.00430019898, -0.0468558371, -0.00762060564, 0.0314985029, 0.00720691541, 0.0164459925, 0.00423850818, 0.0617196448, 0.000896328362, -0.0158073138, -0.00777301751, -0.0402658284, -0.0396561809, -0.0305114519, -0.00939148944, -0.00367059163, 0.0510943457, 0.0312372241, -0.0184636377, -0.0337919407, 0.0018579762, -0.00903586112, 0.00423850818, -0.00528724864, 0.0216280036, -0.0265051909, -0.0280438289, -0.0553909168, 0.0178539902, 0.00318795326, 0.0188410394, 0.0168814547, 0.00308090192, 0.0175056197, -0.00522192894, -0.032891985, -0.00267265528, 0.0140509447, 0.014297707, -0.00939148944, 0.0300759897, 0.0407883823, 0.00645574136, 0.0254165344, 0.043923717, -0.00240230514, -0.0116631556, -0.018303968, -0.0187104, -0.0302501749, -0.00187612046, 0.0471751764, -0.00991404522, 0.00296296389, -0.0405271053, 0.0157492515, -0.062706694, 0.011467197, -0.0167363, -0.0275212731, -0.0264761597, -0.0128824525, 0.0258084498, 0.0467397124, 0.0307146683, 0.0033022624, -0.0383497886, 0.00428205449, 0.0178394746, 0.046304252, -0.0117720207, -0.00559570175, 0.00118210108, -0.0751899704, -0.00172824448, -0.0175781958, 0.00694200862, 0.00951487, -0.0177814122, 0.0156186121, 0.015546035, 0.0483944751, -0.0364047214, -0.0229779407, -0.0043437453, 0.0277099721, 0.00297566503, 0.0118373409, -0.0150234792, -0.00823025405, -0.0159524679, -0.0329790786, 0.0288276616, -0.00286679924, -0.00849879, 0.0275938492, -0.0455494486, -0.0332984179, 0.000772947096, -0.00163117249, 0.0141525529, 0.0166782402, -0.0211054478, -0.0353886411, -0.0157782827, 0.0461881272, -0.0257503893, -0.0423560515, 0.0526620112, 0.0533297211, -0.0033294789, 0.0400916412, -0.00301558245, -0.00786011, -0.0170411244, -0.0201183986, 0.00757705932, 0.00470663095, 0.0173894949, 0.0128969671, -0.0665387735, 0.0159234367, 0.0418334939, 0.0209893249, -0.0197990593, -0.0438366272, -0.00525821792, 0.0179991443, -0.0476977341, -0.00261459337, -0.0494976453, 0.0117067015, 0.00668435963, -0.00157129625, 0.02962601, 0.000948946807, 0.0161411688, 0.0500492342, 0.0152266957, 0.0357370116, -0.0664807111, -0.019334564, -0.028667992, 0.0194652043, 0.0121349068, 0.0210328717, -0.0364337526, -0.000877730432, 0.00250391313, -0.00764237856, -0.0337919407, -0.024806885, -0.00780204823, 0.0241972376, -0.0289147552, 0.000345195294, -0.0208441708, 0.0270132311, -0.0284938067, -0.00652106106, -0.0157492515, 0.0127082672, 0.00100973027, 0.0266358312, 0.0115180006, 0.0144936657, 0.0492363684, -0.0143920574, 0.0190152247, -0.00310267508, 0.0104583735, 0.0172298253, -0.0217441283, 0.00289764442, 0.0255616885, 0.0126937516, 0.0125268241, -0.014297707, -0.0139493365, 0.0144646345, -0.0273035411, 0.00259100576, 0.0224553831, -0.0152847571, 0.00148692529, 0.0198135749, 0.0103132194, -0.0250391327, -0.0018779349, -0.0365498737, 0.0292631257, -0.0374208, 0.0133034, 0.0202925839, 0.0167653318, 0.0310630389, 0.0161121376, -0.00404980732, -0.0411077216, 0.0197700281, 0.0112422071, 0.00374498335, 0.0523136407, -0.0229198784, 0.0240811128, 0.0120115262, 0.0242262669, -0.0224118382, -0.0114236502, 0.0200458206, 0.0625325143, 0.0822735056, -0.00989227183, -0.0308888536, -0.0327758603, 0.00728312135, 0.0398013331, 0.00135719357, -0.00591867045, 0.00604205159, -0.0734481215, 0.00184164627, 0.0317017175, 0.00208478, 0.0296695568, -0.00966728199, -0.000369463291, -0.0026073358, -0.0161266532, -0.0491492748, 0.00341475708, -0.0273761172, 0.0208877157, -0.0042602811, -0.0164024457, -0.0250826776, 0.0114236502, -0.0241536908, 0.0089342529, 0.0266358312, 0.00566827878, 0.0223247446, -0.020031305, -0.0229053628, -0.0239359587, 0.0257939342, 0.0219618585, 0.0267809853, -0.0038574778, 0.00143067795, 0.0115180006, -0.00165203842, 0.0433431, -0.000954390096, -0.00132453383, 0.0244585145, -0.0768737644, 0.0199442133, 0.00417318847, 0.00638316432, -0.00222630543, 0.0137170898, 0.00785285234, -0.0313243158, -0.00193055335, 0.00733392546, 0.0371014625, -0.0357370116, -0.0117647629, -0.0347209312, 0.000305958238, 0.0504847, 0.00598036079, 0.0329210162, 0.0168088786, 0.00841169711, 0.0267229229, -0.0363176279, -0.0378562659, 0.0085205622, 0.00221179, -0.00897054095, -0.0101317763, -0.00387199339, -0.0184926689, -0.0396271497, 0.0186813697, -0.0181588139, 0.0475816093, -0.00734118326, 0.00148057472, -0.0013626368, 0.0345467441, -0.0240520816, -0.0091665, 0.0173024032, -0.0425012037, -0.0377401412, 0.0255326573, 0.0238198359, 0.0292340945, 0.00140073989, 0.0149654178, 0.00394094177, -0.00120024534, -0.0244875457, 0.00685128709, 0.00047764866, -0.00221541896, -0.00999388, 0.0419786498, 0.0333564803, -0.0225569922, 0.0109809292, 0.00681862747, 0.0197845437, -0.00729037914, 0.0245746374, 0.0297131035, -0.00153319328, -0.00413327105, 0.0199587289, 0.0193055347, 0.00056474132, 0.0280147977, -0.00961647835, 0.0186668541, 0.000267174793, -0.0023025116, -0.0105817551, -0.0236021038, -0.0385820381, -0.00902134553, 0.00461228052, 0.0259245746, -0.00278152106, 0.0159669835, -0.00319702551, 0.00673516374, -0.00783107895, -0.00237327418, -0.0256052334, 0.00626704097, -0.0133614615, -0.0194361731, 0.0192765035, -0.014515439, -0.0187974926, 0.00543966051, 0.0201909747, -0.0332693867, 0.0102551579, 0.000256515021, 0.00501145516, 0.0454042926, -0.00818670727, -0.0347789899, 0.00766415196, 0.0275793336, 0.0328339227, 0.0208877157, -0.0192765035, -0.0125340819, -0.0297856815, -0.0124324737, -0.0126139168, -0.000226917138, 0.00905763358, -0.00101063738, 0.0338209718, -0.0280438289, -0.00501145516, 0.0159234367, 0.0474654846, -0.0245165769, -0.00416956, 0.0205393452, 0.0100737149, -0.0166927539, -0.0340241902, -0.0023388, 0.00960922055, 0.0151396031, 0.0208296552, -0.0380594805, 0.00408609584, 0.00149962632, 0.029364733, 0.00689120451, 0.0045868787, -0.00776575971, 0.0255471729, -0.00708353426, 0.00737384288, -0.0247343071, -0.0192184411, 0.00995759107, 0.00432560081, 0.0170846712, 0.006027536, -0.00753351301, 0.0157927983, 0.0123889269, -0.000950761256, -0.0187249165, 0.0353886411, 0.00420584856, -0.0169830639, -0.0175636802, -0.010327735, 0.0077875331, -0.0417173728, -0.0182168763, -0.0231230948, -0.0155170038, -0.0187104, 0.012642947, -0.0329500474, -0.0324274898, 0.00453607459, -0.00516749639, -0.0449397974, 0.00948583893, 0.00394094177, -0.0166782402, 0.00135537912, 0.00333129312, -0.00414415775, 0.0551877, -0.0167653318, -0.0040244055, 0.0253729876, 0.0129477717, 0.0280873738, -0.0176652893, -0.0180281755, 0.00731578143, 0.0351854227, 0.0284067132, 0.00246581016, -0.02036516, 0.0114744548, -0.0270422623, 0.00132362661, 0.0159960128, -0.00615817495, 0.0197119657, 0.0175927114, 0.00676419446, 0.00701821456, -0.00377401407, 0.00211743964, 0.0180136599, 0.00599850528, 0.0001517317, -0.018594278, 0.000865029462, -0.00995759107, -0.0238633808, -0.00945680868, -0.0302792061, 0.0195377804, 0.0359692574, -0.00181080098, 0.0447946452, -0.0442720875, -0.0106398165, 0.0389594398, -0.00054977223, -0.00966728199, 0.0148783252, -0.036491815, -0.0131074414, -0.0270712934, -0.00933342706, -0.00356354029, 0.0120768454, 0.0183910616, -0.00260552135, 0.00869474746, 0.00534168165, 0.0204667691, 0.0287696, 0.024037566, -0.0453172, 0.0051566097, -0.0193781108, -0.00700732833, -0.0139783677, -0.00125104934, 0.0421528332, -0.00841895491, -0.0298727732, -0.0312952846, -0.0132017918, -0.00826654211, 0.00759157445, 0.0181297828, 0.0141017493, 0.0388433151, 0.00813590363, -0.00859314, 0.00651743216, 0.00415504444, -0.0164169613, 0.00607834, -0.00946406648, -0.00860039797, -0.0164459925, -0.0407593511, 0.0272454787, 0.00496065104, -0.000203442949, 0.0171717647, -0.0121566802, -0.0239069276, 0.00850604754, -0.0282180142, -0.00108775066, 0.0202925839, 0.0256778114, -0.000253112958, -0.00444172416, -0.0236456506, 0.0103857964, 0.0175346509, 0.0025764904, -0.00557392836, -0.0156331286, -0.0144791501, 0.012679236, -0.00959470496, 0.0245456081, -0.0210473873, 0.0318468735, 0.0362305343, 0.00395908579, 0.00346556096, 0.00168832694, -0.00469211582, -0.000716246199, 0.0202490371, -0.00786011, 0.00171282177, 0.0180281755, -0.0297856815, 0.0348660834, 0.00653194729, -0.00607834, -0.0158508588, 0.0159379523, -0.000358576712, 0.00318069546, 0.0174765885, 1.17937943e-05, 0.0114744548, 0.00759883225, 0.0259826351, -0.0281599518, 0.0142686768, -0.0214828495, -0.0164750237, 0.0031462214, -0.0152992727, -0.0130493799, -0.041049663, 0.0181152672, 0.0246907622, 0.0187104, 0.00686217379, 0.0104656313, 0.0112059191, -0.00353450933, 0.0341403112, 0.00431108521, 0.00870926306, 0.0210183561, -0.00997936446, 0.045607511, -0.000588328869, -0.00622712309, -0.0350693, 0.00810687244, -0.017752381, -0.0300759897, 0.0165911466, 0.00422399258, -0.00910843816, 0.0117357327, 0.00944229309, -0.048481565, 0.0275212731, -0.0333274491, -0.0277825501, -0.0186233073, -0.00328593259, 0.00238234643, -0.0186668541, 0.00668435963, 0.0391336232, 0.0150525104, 0.0102841882, -0.0074827089, 0.00061645254, -0.000739833806, 0.0117720207, 0.000853235659, 0.0161556844, 0.010509178, -0.0196103584, 0.0121421646, 0.0182894524, 0.000411875575, 0.00284502609, -0.00913746841, 0.0234279186, 0.0333564803, 0.00527273305, -0.0280293133, -0.0308017619, -0.00773672899, 0.0110752797, 0.0247778539, 0.0264471304, 0.0276228804, -0.0413690023, -0.0150379948, -0.00336032407, 0.00746093551, -0.0139928833, -0.00106507028, 0.00807784218, -0.0128534213, 0.0257213581, 0.0208151396, 0.0203506462, 0.0124034425, -0.0133469459, 0.0140872337, -0.0202490371, 0.00996484887, 0.00698555494, 0.0156476423, 0.0107051358, -0.00606382452, 0.0190152247, 0.000675421499, -0.0129622873, 0.000771132705, 0.0024204494, 0.0196539052, 0.00224989303, -0.00881812908, 0.00954390131, 0.00120024534, -0.00442720903, -0.0032677881, -0.00499694, 0.0272019319, -0.00463405391, 0.0282325279, 0.00923907664, 0.00226440839, 0.00150053354, -0.00151323446, 0.0384949446, 0.00775124459, -0.0120623298, 0.001350843, 0.0292340945, 0.00530176423, 0.00458325, -0.0276519116, 0.020176461, -0.0291179698, -0.0317597799, 0.001506884, -0.0176943205, -0.00694926642, 0.00538885687, 0.0640421137, 0.0280293133, 0.0198571198, -0.0156186121, -0.00620172126, 0.00995033327, -0.00291397446, -0.00786736794, -0.026940655, 0.036491815, -0.0433431, 0.0231666397, 0.000152979119, -0.00387199339, -0.0128824525, 0.0206264388, 0.0101753231, -0.00844798516, -0.00639405102, 0.0590778366, -0.0235730726, -0.0294082798, -0.0402367972, 0.0216425192, 0.030395329, 0.0207280461, 0.000170443, 0.000637772086, 0.00441269344, -0.0126284314, 0.00882538687, -0.0303372666, -0.0280728582, 0.0172298253, 0.0311501324, 0.0122002261, 0.00470300205, 0.00119026599, -0.0124252159, 0.0071524824, 0.0204377379, -0.0149944481, 0.0117429905, -0.043923717, -0.00735569885, -0.00623438088, -0.00522555783, 0.00812138803, -0.0110825375, -0.0167508163, 0.00953664351, -0.00733392546, 0.0314404406, -0.00875281, 0.0184926689, 0.00316799455, -0.0504266359, 0.0156766735, -0.00998662226, 0.00724320393, -0.0325145833, -0.00966728199, -0.0472042076, -0.0321662128, 0.0335306637, 0.00615091715, 0.0113147851, 0.0115833199, 0.00464856951, 0.00672790594, 0.00543966051, -0.00647388585, -0.0112930117, -0.0323694274, 0.0111696301, 0.0204232223, 0.0052146716, -0.027898673, -0.00352725177, 0.0282470435, 0.00696378201, -0.015067026, -0.040207766, -0.00507314596, 0.00304098451, 0.0132380798, -0.00190515141, -0.0252568629, 0.0393949, 0.0206119232, 0.0159669835, -0.0188991018, 0.0156476423, -0.0112857539, 0.00262910896, -0.0335016325, 0.0178685058, -0.0220924988, -0.0284647755, 0.00166473945, 0.0173169188, 0.0233698562, -0.0122655462, -0.0361434445, -0.0156476423, -0.0281454362, 1.98595026e-05, -0.00407520961, 0.0187684633, -0.0334435701, 0.013230823, -0.00932616927, -0.00997210667, -0.00559207285, 0.0221360438, 0.0204522535, -0.0286825076, 0.0103857964, -0.0307146683, 0.0159669835, 0.0199151821, 0.0175346509, -0.012018783, -0.00396634359, 0.0122437729, -0.0133832349, -0.002287996, 0.0134485541, -0.0299308356, 0.00568279438, -0.00469574472, -0.0249955859, -0.00574085629, 0.0278841574, 0.0141598107, 0.0173314344, -0.0155170038, -0.0108865788, 0.0372175872, -0.0141743263, -0.016097622, -0.0234424341, -0.0455494486, -0.00418044627, 0.0158508588, 0.0192039255, -0.0138114402, 0.00452881679, 0.0117284749, -0.0225569922, -0.0283776838, -0.00735569885, -0.00677145226, -0.00144791498, -0.0190152247, 0.0109010944, -0.0256342646, 0.0174620729, 0.00735207, -0.00244222255, 0.0208586864, -0.0134848431, -0.00222993433, 0.0112131769, 0.0222666841, -0.00844072737, -0.0286389608, 0.0115470318, -0.00610374194, -0.0276228804, 0.0253004096, -0.00442720903, 0.00676419446, -0.0135356467, 0.0233263113, 0.00508766156, -0.0140146567, -0.0159669835, -0.0397142395, -0.012091361, 0.0419786498, -0.0264471304, -0.0100446837, -0.00698555494, 0.0267229229, -0.00731215253, -0.0190587714, 0.0238053203, 0.0109010944, -0.008048811, -0.0231666397, 0.0137606366, -0.00206300686, -0.0106543321, -0.048220288, -0.0196103584, 0.0341403112, 0.000242453185, -0.0378272347, 0.00497153774, -0.0262729451, 0.00741376029, 0.0609067827, -0.0113365576, -0.00667347293, -0.0201474298, 0.0200748518, 0.0261277892, 0.0094060041, -0.0208877157, 0.0220489521, -0.00959470496, 0.0564069971, -0.0135066155, -0.00561021734, -0.0398303643, 0.00668798853, 0.00536708347, 0.0147767169, -0.00295752077, 0.0186233073, -0.00499331113, 0.00451793056, 0.00453244569, -0.00741738919, -0.00176362589, 0.0235730726, 0.0106761055, -0.0293792486, -0.0330371372, -0.0229198784, 0.00737021398, 0.000748905935, -0.0106398165, 0.033995159, -0.00690209121, 0.00137896673, 0.019552296, 0.0203941911, -0.00842621271, -0.0222957134, 0.0310049783, 0.00123109063, 0.010327735, -0.0318178423, 0.00269442843, -0.0320791192, -0.0124905352, -0.0334435701, -0.0032677881, 0.00131001836, -0.00221179, -0.00211925409, -0.0106543321, 0.0062815561, 0.00440543564, 0.00400989, 0.027419664, 0.0110752797, -0.015067026, 0.0252568629, 0.00561747467, -0.0123671535, -0.018928133, -0.00988501403, -0.0191458631, 0.00327867479, 0.011503485, -0.00849879, -0.0170120951, 0.0265632533, 0.00756254373, -0.0416012481, 0.0373627394, -0.0273035411, 0.0123236077, -0.0240520816, 0.000488988822, -0.0135646779, 0.00425665267, 0.00526910415, 0.0119607216, 0.00068857614, 0.00315166474, -0.0062815561, 0.0200603362, -0.0140146567, -0.000751173939, -0.0150089636, 0.0131074414, 0.0108212596, -0.00939148944, -0.00416956, 0.0119026601, 0.00661178259, -0.00542151649, -0.00708716316, 0.00217913021, 0.0192474723, -0.00248214, -0.0134412963, 0.000976163254, 0.0206264388, 0.0113946199, -0.00816493481, -0.0127808442, 0.0170411244, -0.00449615717, 0.00472477544, -0.00216461485, -0.0118954023, -0.00399900321, 0.0316146277, -0.000801070768, 0.0146823665, 0.0177378654, 0.0198571198, -0.0120841032, 0.00707990536, -0.00453970348, 0.00938423164, 0.0105019202, -0.0436914712, 0.00588238146, -0.000684040075, -0.0063432469, -0.0132453376, -0.0158363432, 0.0343725607, 0.00410424033, 0.00697103934, 0.000865936629, -0.0179410819, 0.021279633, -0.0186813697, -0.0177668966, 0.00461228052, -0.00724683283, 0.0153718498, 0.0231085792, 0.0102841882, 0.00781656429, 0.0131437303, 0.000747998711, 0.0187829789, 0.00361253, -0.053474877, 0.00780204823, -0.0135501623, -0.00673516374, 0.00287224259, 0.00825928431, 0.0153137883, -0.00205030572, 0.00855685119, 0.00373046775, 0.0180862378, -0.0172007959, -0.00776575971, 0.0251117088, 0.0204232223, -0.0219183136, 0.040469043, 0.00922456104, 0.0057081962, 0.0111841457, -0.00396997249, 0.0012728225, 0.0116558978, 0.00934794266, -0.0176362582, -0.00510943448, 0.0200167894, 0.0171862803, -0.0172443409, -0.00816493481, 0.0140799759, 0.0149509022, 0.00942052, -0.00971082877, 0.0228037555, 0.0169104859, 0.00475380616, -0.00219364581, -0.0126864938, 0.022861816, 0.00179356395, 0.0114744548, -0.0116196088, -0.0162863228, 0.00220271782, 0.0206264388, -0.00342927244, 0.0155605506, 0.011467197, -0.0085350778, 0.0350402705, -0.0253439564, -0.00444535306, 0.00524370233, -0.0156040965, -0.0170411244, -0.0362015031, -0.0145299546, 0.00997936446, -0.00133088429, -0.000594679383, -0.0178685058, 0.000570184609, 0.00653194729, 0.0019795429, 0.00909392256, 0.000279422209, -0.00802703761, 0.0234279186, -0.0160540752, 0.0220779832, -0.00391916838, 0.0197990593, -0.0184926689, 0.0139856255, 0.0196684189, 0.00317525235, -0.0144864079, -0.0091737574, 0.00604568049, 0.000159329618, -0.0222086217, 0.0233988874, -0.00644122623, 0.0316726863, 0.0155170038, -0.0255907197, 0.0160540752, 0.0184200928, -0.0231956709, 0.00254201633, -0.0207135305, 0.0224553831, -0.0293066707, -0.0219328273, 0.0191603787, 0.0510653146, 0.0105672395, 0.022310229, -0.0010696064, 0.00245855236, -0.000205143981, -0.0082883155, 0.0267084073, -0.00213739835, -0.00293211872, 0.0137896668, -0.0202490371, -0.0163298696, -0.0128389057, -0.0124832774, -0.000561112422, -0.00951487, 0.0299308356, 0.0212941486, -0.0231376104, 0.00911569595, 0.0102479, 0.0293066707, -0.0128243901, -0.0157057047, 0.00298473705, 0.00136535848, 0.00653194729, 0.000398040545, -0.0152266957, -0.0476106405, 0.0298147108, -0.00924633443, 0.0340532213, 0.0116196088, 0.00297203613, 0.00178993505, 0.00599124748, -0.0371014625, 0.0113365576, -0.0176507737, 0.0152702415, 0.0192910191, -0.033995159, 0.00773672899, 0.00684765819, -0.0202345215, 0.0173169188, 0.0150089636, 0.0136590283, -0.00480098138, -0.0220779832, -0.00105327659, -0.00949309673, 3.20076761e-05, 0.05263298, 0.00535256788, 0.000389195193, -0.0077875331, 0.0174040105, -0.00709442096, -0.0181588139, 0.00135175022, 0.00944229309, 0.020103883, -0.0123744113, 0.00729400804, -0.0249375235, -0.0112349493, -0.0167217851, 0.0355047621, -0.0272890255, -0.00299743819, 0.00400626101, -0.0118083097, -0.012497793, 0.00107504975, -0.0283341371, -0.00014719562, -0.00372683886, -0.0195958428, 0.0214973651, 0.0104511157, -0.0265051909, -0.0161701981, 0.00180989376, 0.00344923115, 0.00615454605, -0.0347789899, -0.00962373614, 0.0153863654, -0.0193200484, 0.00995033327, 0.0367240608, -0.0134267807, 0.0447365828, -0.0128534213, 0.02962601, 0.00822299626, -0.0174620729, -0.0260406975, 0.0226440839, -0.0225279611, 0.0128171323, -0.00918827299, -0.0443882123, 0.0100374259, 0.0477267615, -0.0169540327, 0.0128098745, -0.0140799759, -0.0253149252, -0.00921004638, 0.00083282328, -0.0143557694, 0.00494613592, 0.0226150546, 0.0156766735, -0.00441269344, 0.0218602512, -0.0138041824, 0.0189136174, -0.0123526389, 0.0121131334, -0.0106180431, 0.0174475573, 0.00089043146, 0.0114526814, 0.012606659, 0.0351563916, 0.025910059, 0.00156403857, -0.00248939777, 0.0247488227, 0.000683586462, 0.00735569885, -0.0106543321, 0.00569731, -0.00906489138, 0.0138114402, -0.0185797624, -0.0379723869, 0.0153283039, 0.00321154087, -0.0182313919, 0.0207280461, 0.0200603362, -0.00392642617, -0.0103495084, -0.00611099973, 0.0454333238, 0.0206264388, 0.00362704531, 0.00349640637, -0.00550860912, -0.00958018936, -0.0234424341, -0.00662629772, -0.0196684189, -0.00977614801, -0.00757705932, -0.0222521685, -0.0205103159, 0.00869474746, 0.0273470879, -0.026650345, -0.0144791501, -0.0223537758, 0.0118736289, -0.0294663403, 0.000721235876, 0.0116631556, 0.000532081584, -0.018594278, -0.0290744249, 0.00396634359, 0.0225134455, -0.0176217426, 0.017128218, 0.0136082238, 0.0122873187, -0.0283196215, -0.0161556844, -0.00322787068, -0.0212941486, -0.00813590363, 0.0145735005, 0.0013581008, -0.00749722403, 0.000710349297, -0.027564818, 0.0173314344, 0.000396226125, -0.00252931518, -0.0147476858, -0.0117429905, -0.00280692289, 0.00711982278, -0.00411875593, -0.000455875503, 0.00166201778, -0.0118155675, -0.0335306637, -0.035795074, 0.0128679369, -0.0188845862, 0.0147912325, 0.0197119657, -0.00948583893, 0.00734118326, 0.00620897906, -0.00846975856, -0.0162137449, -0.0151541186, 0.00291034556, -0.00938423164, 0.00549772242, -0.0051420941, -0.0130784102, -0.0249955859, 0.0132961422, -0.0126284314, 0.00371050905, 0.00275793346, 0.0162137449, 0.0318468735, 0.00253475853, -0.00152412103, -0.00575174252, 0.00417681737, 0.00542151649, -0.00742464699, 0.0147694591, -0.0136082238, 0.0177814122, -0.00140436867, 0.015473458, 0.00572634069, 0.00841895491, 0.00298110838, 0.00995033327, 0.00869474746, 0.0258810278, 0.0294227954, 0.0156040965, 0.0483944751, 0.0231956709, 0.0248214, -0.00190152251, -0.0193055347, -0.0106906211, -0.00398811698, -0.00733029656, -0.00599487638, -0.0124252159, 0.00182259479, -0.00784559455, -0.015067026, -0.00749722403, 0.0222521685, 0.00760609, -0.0116849281, -0.0069202357, 0.00324420049, 0.0191168338, 0.020103883, -0.0204812847, 0.0174911041, -0.0102696726, 0.00741376029, -0.0140364291, 0.00149055419, -0.00927536562, -0.00192148122, 0.0224408694, 0.0122945765, -0.000645937049, 0.00237327418, 0.0128534213, 0.0184926689, 0.000793813088, 0.00231702696, 0.0071924, -0.00799800642, -0.00153954374, 0.00678959675, 0.00958744716, -0.00268354174, 0.010879321, -0.000109829707, -0.012497793, 0.012091361, -0.0117502483, 0.00428568339, -0.00915198401, -0.0189426485, -0.0249665547, 0.000937153, 0.0106761055, -0.0124034425, -0.011982495, 0.018594278, -0.00442720903, -0.0128897093, 0.01164864, -0.0207135305, -0.000726225553, -0.00569368107, -0.0105817551, -0.0112059191, 0.00836089253, -0.0128534213, 0.0230214857, 0.000247669668, 0.026868077, 0.00548683573, -0.0134993577, 0.00263999542, 0.016097622, 0.0195087492, 0.00869474746, -0.00198317179, -0.0062706694, 0.00656097848, 0.0245310925, 0.0133034, 0.00328593259, -0.0231230948, -0.00815767702, -0.0210038405, -0.0124397315, -0.00781656429, -0.010436601, 0.0318759046, 0.0181733295, -0.00293030427, 0.0161556844, -0.00619809236, -0.00725409063, -0.000207185207, 0.00687668938, 0.000217731591, -0.0014442862, -0.00204486237, -0.00145426556, 0.0049025896, 0.0263310056, 0.0057807737, -0.0201619454, 0.00553764, 0.000399628188, -0.00334762316, 0.000368556066, 0.0113002695, 0.017607227, -4.60411575e-05, 0.0120332986, 0.0111405989, -0.029219579, -0.0178539902, -0.00370143703, -0.0124905352, 0.0117212171, 0.00487718731, -0.0345177129, -0.0243133605, -0.00692749303, 0.0106543321, -0.00271620159, -0.0196829345, 0.0095584169, -0.00123109063, -0.00702547235, 0.00950761233, -0.00910118, 0.0171137024, 0.0100301681, 0.00194143993, -0.00356535474, 0.00944955088, 0.00173005892, -0.00320791197, 0.0153863654, 0.0106761055, 0.0141961, 0.0205974076, 0.020582892, -0.0375369266, -0.0117937941, -0.00258919131, 0.0175346509, -0.0217876732, -0.00429294119, 0.0133469459, -0.0247778539, 0.00359982881, -0.0323694274, -0.00103150343, -0.011982495, -0.00873829424, -0.0134195229, 0.00711256498, 0.00348914857, -0.0218457356, 0.00247488241, -0.00553038204, 0.0130929258, 0.00385384914, 0.0218747668, -0.00392642617, 0.0315275341, -0.0149509022, -0.00397723028, 0.0137388632, 0.00139076053, -0.021279633, -0.0136880586, 0.00767140929, -0.00529813534, -0.00605293782, -0.0107631981, 0.0203506462, -0.00575900031, -0.00125377101, -0.000387380773, -0.00137624505, 0.0123526389, 0.017897537, -0.0219473429, 0.00773672899, 0.00502597075, 0.0107414247, -0.0157927983, -0.00308815972, 0.00040733951, 0.0115325162, 0.0164314769, -0.00614365935, -0.00293211872, -0.00052754546, -0.00981969479, 0.0146025317, -0.0263455212, -0.0237472579, 0.000371504517, 0.0109664137, -0.00770769827, -0.000284638692, -0.0093552, 0.000601029897, 0.0185362156, 0.027158387, 0.0185797624, 0.00792542938, 0.00763512077, -0.0230214857, -0.0136590283, 0.00610011304, 0.00601664931, 0.000741194584, 0.0142686768, 0.00443083793, -0.0127082672, -0.00950035453, 0.0132598532, -0.00463768281, 0.0125050507, 0.0456655696, -0.0266068, -0.0111260843, -0.0019287389, -0.0123744113, -0.00584246404, 0.00502597075, -0.0107123936, -0.00582069112, 0.00976163242, -0.0130638946, 0.0136517705, 0.00522555783, 0.00488444511, -0.00377401407, -0.0200458206, -0.000183370823, -0.000395092095, 0.00798349176, -0.018855555, -0.0275938492, -0.00937697385, -0.00381393149, -0.0146823665, 0.0132598532, 0.0163734145, 0.0166346934, -2.28079498e-05, 0.000700369943, 0.00899231434, 0.00129822455, -0.0106688477, 0.00167653314, 0.020873202, 0.0280002821, 0.0118228253, -0.00823751185, -0.0134848431, -0.000300968561, 0.0049098474, -0.0132816266, -0.00303554116, 0.0164750237, 0.00359801436, 0.000522102171, -0.0186958853, 0.0298727732, 0.00163389405, -0.00863668602, -0.00185253285, 0.0111841457, 0.00299743819, -0.0230505168, 0.00923907664, -0.00231521251, -0.0144718923, -0.00725771952, 0.0236601662, -0.00792542938, 0.00583883515, 0.00604930939, 0.00987049844, -0.00749722403, -0.00883990247, -0.00979066361, 0.0222666841, -0.0282325279, 0.0241246596, 0.0408754759, -0.00614003045, -0.022600539, -0.0167217851, -0.00505137257, -0.0124905352, -0.0278260969, -0.0230360013, 0.0125485966, 0.0152121801, -0.00621260796, -0.00786736794, 0.015067026, 0.0215989724, 0.00147966761, -0.00654646289, 0.01091561, 0.0168814547, -0.00775124459, 0.0145662427, -0.00841169711, 0.0033022624, 0.00394457066, 0.00391553948, 0.00151777058, -0.0093987463, 0.018594278, -0.00221541896, -0.0262293983, -0.00936245825, -0.0168233942, 0.00906489138, -0.000610102, -0.0045905076, -0.00796171837, -0.0253875032, 0.0139638521, 0.00303554116, -0.0151396031, 0.0190297402, 0.0210183561, -0.00760609, 0.00815767702, 0.00780930603, -0.0274777263, -0.00182168756, -0.00337121077, 0.013230823, -0.000233154235, 0.0199732445, 0.00131364726, -0.0277535189, -0.019407142, 0.0164459925, -0.0221505594, 0.00345648895, -0.00597673189, 0.00312626269, 0.00590415485, -0.0204667691, 0.00962373614, -0.0143848, -0.00933342706, -0.00739561627, -0.0124179581, -0.0118881445, -0.000194144, 0.00737384288, -0.00485904329, -0.00291034556, 0.0298727732, 0.0321371816, -0.0344015919, -0.00438003382, 0.00254020188, 0.00247125351, -0.0146605931, 0.0146170473, -0.00884716, 0.0245165769, 0.0103059616, -0.0114744548, -0.00404254952, -0.0226440839, -0.00865845941, 0.00723957503, -0.00493162032, 0.012055072, 0.0270422623, 0.00706176087, -0.0252713785, 0.00182985247, 0.00608922681, -0.000926266424, 0.0119316904, 0.000548411452, -0.00732303876, 0.00270712934, -0.00369055034, 0.0142759345, -0.00727223512, 0.00737384288, -0.00664807111, 0.0211489946, 0.00715974, 0.0141452951, 0.0106180431, 0.00904311892, 0.0284792911, -0.00551949581, 0.00194688328, 0.00147785316, 0.00816493481, 0.0161121376, -0.0123598967, -0.013782409, -0.00823025405, -0.00749722403, -0.0285808984, -0.00153591484, -0.0107123936, 0.0127155241, 0.0278841574, -0.0095656747, 0.0134122651, -0.00696015311, 0.0112059191, 0.0151250875, 0.00365244737, -0.00944229309, -0.0103712808, -0.00613640202, -0.00646299915, 0.00620172126, 0.00427842559, -0.0192765035, 0.00422036368, 0.00151686335, 0.00884716, -0.0091737574, 0.00385022024, -0.0222811978, 0.00700732833, 0.0153283039, 0.00445261085, 0.00416593114, -0.0126864938, -0.00478283735, -0.00837540813, 0.00335306628, -0.00901408773, -0.000224195494, -0.0051529808, 0.0036107155, 0.00518564042, 0.00516386749, 0.0104438579, -0.00553764, 0.000984328217, 0.0167653318, 0.0145952739, -0.00133542041, -0.00883990247, 0.00203216146, -0.0122655462, -0.0317017175, 0.00341112819, -0.00502597075, 0.00263273763, 0.00931891147, -0.00767140929, 0.00565013476, -0.00797623396, -0.0310049783, 0.0097979214, 0.00841169711, -0.0226295702, 0.00784559455, 0.00261640782, -0.0125631122, -0.00106688472, -0.0114091346, 0.0114091346, 0.00040733951, 0.00405706512, -0.00620172126, -0.00962373614, 0.0121711958, 0.000928080874, 0.00789639913, -0.00826654211, -0.0138985328, 0.00502234185, -0.029147001, 0.0190152247, 0.0228182692, 0.0162427761, -0.00857862458, 0.00378127187, -0.0184926689, 0.0103930542, 0.0117792785, -0.0172153097, -0.000489896047, -0.0068404004, -0.0091665, 0.0024476659, 0.018376546, 0.0233117957, -0.00897054095, -0.0199151821, -0.00285228365, -0.0226586, 0.000534803199, 0.002701686, 0.00361978752, -0.00989953, -0.0141452951, 0.0114381658, -0.0280438289, -0.00281599513, 0.0151831489, -0.0222086217, 0.0301050209, -0.00780204823, 0.00929713901, 0.0248214, 0.0121566802, 0.0175636802, 0.0185071845, -1.72512591e-05, -0.00154680142, -0.0155750662, -0.010806744, -0.00756254373, -0.00878909789, -0.00137352338, 0.0118663711, 0.0182894524, -0.000674967887, -0.0153718498, 0.00190333696, 0.00610737083, 0.000849153206, 0.0134122651, -0.00529087754, -0.00218457356, 0.0139348218, 0.00922456104, 0.00324964384, -0.0224118382, -0.0057807737, 0.0265777688, 0.0362595655, 0.0115325162, -0.0074754511, -0.00852782, 0.0122002261, -0.003583499, 0.0121494224, 0.0230214857, 0.00668073073, 0.013818698, -0.0108648064, 0.0141307795, -0.00477557955, -0.00614365935, -0.0277680345, 0.0112639805, 0.00281236623, 0.009812437, -0.016576631, -0.0202490371, 6.40153521e-05, -0.0317307487, 0.00175908976, 0.0266358312, -0.0160831064, -0.012788102, -0.0330661684, -0.00389376655, -0.00624163868, -0.00451067276, -0.00463405391, -0.00881087128, -0.0107777137, -0.0107486825, -0.024661731, -0.000349958165, -0.00470663095, -0.0101535497, -0.0002244223, -0.0218167044, -0.0250101015, 0.0348951146, 0.0200893674, 0.0315855965, -0.0069202357, 0.0133977504, -0.0132961422, -0.0115325162, -0.0334726, -0.0103132194, 0.00745367771, -0.0123744113, 0.00531265046, 0.0124397315, -0.000402576639, -0.0147186555, -0.0147113977, -0.0207715929, 0.0133034, -0.00887619052, 0.010218869, 0.0157492515, 0.0104438579, -0.0101680653, -0.00371413794, -0.0244730301, 0.00369962258, -0.00419496186, 0.00841895491, 0.0225424767, 0.0150960563, -0.0248359162, -0.00277607772, 0.010218869, -0.00506588817, 0.00572634069, -0.0104075698, 0.00497153774, -0.002287996, 0.0137606366, -0.0085205622, -0.00973986, 0.0198280904, -0.00472840434, 0.00665532891, -0.0142323878, -0.0306856371, 0.0244004522, 0.00507314596, -0.0125558544, 0.00677508116, 0.0095584169, -0.00668073073, -0.0233843718, 0.00873103645, -0.00373772555, -0.010988187, 0.0144138308, -0.00713070948, -0.00574448518, -0.00200131605, 0.0209457781, -0.0411077216, -0.0109083522, 0.00427842559, 0.0126647204, 0.00262185116, -0.0209022313, -0.00101608073, -0.0204232223, -0.0286825076, 0.00124288443, -0.00533442385, -0.000122133817, -0.0239795055, 0.0303372666, 0.0211925413, -0.026389068, -0.0108865788, -0.0205974076, -0.0129550295, -0.013746121, 0.0115542896, -0.00308634527, -0.0151396031, -0.0136082238, 0.00222086208, 0.00569368107, -0.00694563752, 0.00274341786, 0.00526184682, -0.000195731627, -0.0103857964, 0.00358168455, 0.00414415775, 0.0108720642, -0.0292486101, 0.0144501198, 0.00599850528, -0.0175346509, -0.021134479, -1.22757519e-05, -0.00820848066, -0.00762786297, 0.0142033566, 0.00416593114, 0.00918827299, -0.000166814149, 0.0080342954, -0.00644848356, -0.0143049648, -0.0277099721, 0.0136662861, 0.0151105719, -0.0211925413, -0.0161701981, 0.00166473945, 0.0305695143, 0.00111043104, 0.0135283889, -0.0199877601, 0.00648477254, -0.0181588139, 0.00439454895, -0.0191313494, -0.00579891773, -0.00929713901, -0.013158245, -0.00240593404, 0.00104148278, -0.00905037578, -0.00802703761, -0.0176217426, 0.0162427761, -0.0173749812, -0.0245456081, 0.0120405564, -0.0174330417, -0.0267084073, 0.015546035, 0.00428568339, -0.012642947, 0.00937697385, -0.000234061459, 0.0154444268, 0.0270712934, -0.00310448953, 4.59277544e-05, -0.0135574201, 0.0143993152, 0.00305187097, 0.00661541149, 0.00839718152, -0.00140709034, 0.0175781958, 0.00543603208, -0.0117647629, -0.00896328315, 0.000485359982, -0.00703998795, 0.000239958346, 0.0122219995, 0.00112222484, -0.0137969246, -0.00475380616, -0.0141090071, 0.0190297402, 0.000992493122, 0.0133977504, -0.00345648895, 0.0177668966, 0.00334399426, -0.00330770575, -0.00236601662, -0.00173278048, 0.0189861935, 0.00416230224, -0.0114526814, 0.00754802814, -0.00819396507, 0.0170846712, 0.00397723028, -0.00127463695, -0.0173894949, -0.00963099394, -0.00711256498, 0.00542151649, 0.00480461027, 0.0164024457, 0.000887709786, -0.00153047161, 0.000580617576, 0.00200131605, 0.00486267218, 0.00352362287, -0.0175781958, 0.0107341669, 0.0105672395, -0.0143485116, -0.0167072695, 0.0049062185, -0.0259681195, 0.00580617553, 0.0156911891, -0.00117937941, -0.00143158517, 0.00497879554, 0.0245310925, 0.00264362432, -0.0108285174, 0.00512757897, -0.0151541186, 0.00463405391, 0.00902860332, 0.0243859366, -0.0266358312, 0.00168288371, 0.0287260544, -0.00959470496, -0.0400916412, 0.00865845941, 0.00135175022, 0.0145299546, 0.0149073554, -0.017824959, 0.00550860912, 0.034808021, -0.0104220854, 0.0123453811, 0.00170284242, -0.0261568204, 0.00461953832, 0.0120332986, 0.00407520961, -0.00569368107, 0.0040280344, 0.0176217426, -0.00685128709, -0.000470390951, -0.0021664293, -0.00273797475, -0.00749722403, 0.00925359223, -0.0208877157, -0.00995759107, 0.00849153195, -0.0115252584, -0.0315275341, 0.00582432, 0.000929895323, -0.00636139093, -0.0192474723, 0.0112494649, 0.0209748093, -0.0129477717, 0.0211489946, -0.00832460448, 0.0218021888, -0.0188700706, 0.0145662427, -0.0169830639, -0.00200494495, -0.0117284749, -0.0108720642, 0.0179846287, 0.00793268718, -0.00195958419, -0.00623075198, -0.00662629772, 0.00936245825, 0.0151541186, 0.0163879301, -0.0012220185, -0.00590052595, -0.00338028278, -0.0153718498, -0.0126719782, -0.0367821231, 0.0103204772, -0.010879321, 0.00250935648, 0.00137352338, -0.000141979137, -0.0127082672, -0.0187974926, -0.0289583, -0.00812138803, 0.0240811128, 0.0102987038, -0.00959470496, 0.0103857964, 0.00332585, 0.00930439681, 0.0165330842, 0.0121058756, -0.00946406648, -0.00742827589, 0.00678233895, -0.00785285234, 0.00146605936, 0.0172298253, -0.0168379098, 0.0226586, 0.000611009251, -0.00824477, 0.00343834469, 0.00683677197, 0.0282470435, -0.0251262244, -0.00202127476, -0.0093987463, -0.00366696273, -0.00726860622, 0.0132525954, -0.0108285174, -0.0166782402, -0.00579166, 0.00872377865, 0.00720328651, 0.011946206, -0.0122510307, -0.0175201353, -0.0174620729, -0.0442720875, -0.00106779195, 0.00572634069, 7.8644196e-05, 0.00989953, -0.00266721193, -0.00756254373, -0.00482638367, 0.00921004638, 0.0206699856, 0.0071452246, -0.00776575971, -0.0189571641, -0.000611462863, -0.00071443175, -0.0210183561, 0.00787462573, 0.0147259124, -0.0268245302, -0.0221360438, 0.018855555, -0.00549046462, -0.00340931374, 0.0165330842, -0.0136517705, -0.0095584169, 0.00683677197, -0.0113002695, -0.00406069402, -0.0124107, -0.0205103159, 0.00299018039, 0.00831734668, 0.000134381218, -0.00346011785, -0.0145226968, 0.00789639913, 0.00530539313, -0.00800526422, 0.01734595, 0.00208840868, 0.0252278335, -0.00721780211, -0.0221215282, -0.00662629772, 0.00395545689, 0.0332693867, -0.00895602535, 0.00639042212, 0.0187104, 0.00524370233, 0.0112784961, -0.00353088044, 0.00796897616, 0.0350983329, -0.0101535497, 0.00464856951, -0.0280728582, 0.00732303876, -0.00958018936, -0.0163298696, -0.00432560081, 0.000317298429, 0.00462316722, -0.00977614801, 0.0105382083, 0.0179991443, 0.0266793761, -0.00576988701, 0.0121784536, 0.00652831886, -0.0119679794, -0.0113510732, 0.00591867045, 0.0249810703, 0.0177233517, 0.00738110067, 0.0121711958, -3.88401386e-05, 0.000163412085, 0.00655734958, 0.0016511312, -0.000212174898, -0.00953664351, 0.00793994498, 0.0145372124, -0.005715454, -0.00649565877, -0.00696378201, -0.00387925096, 0.00511669228, 0.0136154816, 0.0275793336, 0.00798349176, -0.0156331286, 0.0122292573, -0.00134086364, -0.0010070086, 0.0182023607, 0.018303968, -0.00902134553, 0.00548683573, 0.00949309673, 0.00752625521, -0.00407158071, -0.0277970657, -0.000357669487, -0.00707627647, -0.00475743506, 0.00858588237, 0.0246907622, 0.00455421908, 0.0166927539, 0.0146315629, 0.0148638096, 0.00406795181, 0.00765689416, 0.0138695017, 0.00551223801, -7.08761654e-05, 0.0147476858, 0.000733936904, -0.00847701635, -0.0169395171, 0.0235150103, -0.0143049648, 0.00417318847, 0.00336576742, -0.0291179698, -0.00193055335, 0.0273035411, 0.0231666397, 0.0199151821, -0.0024476659, -0.0126574626, -0.000630967959, -0.00885441806, 0.00788914133, 0.00149962632, 0.0254020188, 0.00906489138, -7.21802862e-05, 0.00271620159, -0.0104220854, -0.0141888419, -0.0434882566, -0.0143267382, -0.000799256377, 0.0112857539, 0.00190333696, -0.0241246596, -0.0360563509, -0.0252423491, -0.00746093551, -0.0163443834, 0.0173604656, 0.00431834301, 0.0279131886, 0.00214284169, -0.0111188265, -0.00881812908, -0.00446712645, -0.0197264813, -0.0230214857, 0.00116032793, 0.000787008961, -0.0170120951, -0.0185507312, -0.0305985454, -0.0148565518, 0.0115470318, 0.0231956709, 0.0144356042, 0.0150379948, 0.00115760625, -0.00938423164, 0.0182749368, -0.0140727181, 0.00640493724, 0.013709832, 0.00310630398, -0.0108648064, -0.00783833675, -0.0019359967, -0.0155605506, -0.0191023182, 0.00152684271, -0.0062706694, -0.0106107863, -0.010509178, 0.00919553079, -0.0107559403, -0.0259826351, 0.0139856255, 0.0257794186, -0.00552312471, 0.00139711099, 0.0364047214, -0.000991585897, 0.0138622439, -0.00470663095, -0.00694563752, 0.0171572492, 4.92164108e-05, -0.0167363, -0.013782409, -0.0317017175, 0.0120986188, 0.00652106106, -0.0162282605, 0.000602844346, 0.013121957, -0.0204667691, 0.00707627647, 0.00720691541, 0.0100809727, -0.00681862747, 0.0219183136, 0.0135646779, 0.00431834301, 0.0217441283, 0.00823025405, 0.000723050325, -0.00447075535, 0.0143848, 0.00601302041, 0.0159524679, 0.00105146214, 0.0026037069, -0.00344560225, 0.00130911113, -0.0217876732, 0.0223973226, -0.00719602872, -0.006339618, 0.00744642038, 0.0107123936, -0.00275611901, -0.00168741972, 0.0038611067, -0.0126719782, 0.000988864223, 0.00288675795, 0.0157492515, 0.0174185261, -0.0112567227, 0.0378272347, -0.00468122913, -0.0189716779, -0.0167217851, -0.00844072737, -0.0164169613, -0.0223973226, -0.0178685058, 0.0167653318, 0.00511669228, -0.00632873131, -0.00392279727, -0.0326307081, 0.0045868787, -0.02065547, 0.00250572758, 0.0329210162, -0.0167363, -3.66288041e-05, 0.00265813968, 0.00124288443, -0.00128098752, -0.0102696726, 0.00268898509, -0.0127300397, 0.014261419, 0.00164024462, -0.00802703761, 0.023848867, -0.00950761233, -0.0171717647, 0.0174620729, -0.00651017437, -0.0196974501, -0.0167072695, -0.0215118807, 0.00338391168, 0.00680774078, 0.00805606879, -0.0205393452, -0.0207135305, 0.0116994437, 1.91365643e-07, 0.0332984179, 0.00441632234, 0.0176943205, 0.00373772555, 0.00586786633, -0.00904311892, 0.00132453383, -0.00244040811, -0.00945680868, 0.00396271469, 0.00973986, -0.00496065104, 0.0190152247, 0.00113492587, -0.00461590942, -0.00451430166, -0.02065547, -0.0287260544, -0.0148638096, -0.00547957839, -0.0180281755, -0.0260406975, 0.0244875457, 0.00418044627, -0.0173604656, -0.00713433838, 0.00280147977, 0.0291615166, -0.00374861201, 0.00743916258, -0.0149073554, -0.0204087067, 0.00618720567, 0.00325327273, -0.0130784102, -0.00749722403, 0.0110970531, 0.0201909747, -8.40307839e-05, -0.0028922013, 0.0013036679, -0.0140872337, 0.0139493365, -0.00886893272, -0.00696741091, -0.00900683, 0.00542514538, -0.00505137257, -0.017897537, 0.0179555975, -0.0141961, -0.00989953, 0.00277970661, -0.00141888415, 0.00914472621, 0.024589153, -0.0178104434, 0.00465582684, 0.0162572917, 0.027637396, -0.0101680653, 0.00337121077, -0.00715974, 0.00987049844, -0.00611099973, -0.0197409969, -0.00751899742, -0.00233517122, 0.00770044047, 0.00013460801, -0.00858588237, 0.00780930603, -0.0170120951, -0.0196829345, 0.00014719562, -0.00965276733, -0.00883990247, 0.0206409544, -0.00591141265, 0.0034238291, 0.00549046462, -0.0179991443, -0.016097622, -0.0308017619, 0.0126502048, 0.00530539313, 0.00500419736, -0.000613730925, -0.00605656672, -0.0125848856, -0.00735932775, 0.0365208462, 0.0197555125, -0.00271801604, -0.0279277042, 0.0062742983, 0.00259826356, 0.0151396031, -0.00162028591, -0.00666258624, -0.013709832, 0.0145517271, -0.0195232648, -0.00985598285, -0.00830283109, 0.000172484244, -0.00721417321, 0.00561384577, -0.0151250875, -0.00183166692, -0.0217876732, -0.00723231724, -0.00923181884, 0.00407158071, -0.00294481963, 0.013158245, -0.00223174877, -0.000190855339, -0.0209022313, -0.00809235685, -0.00538522797, -0.00462316722, 0.000787008961, -0.00460139429, 0.000956204545, 0.000462906406, -0.0165621154, 0.0288276616, 0.032195244, 0.00379578723, 0.0031425925, -0.0290744249, 0.0130638946, 0.000871379918, -0.0030446134, -0.0239504743, -0.0165040549, -0.0114817126, 0.00246036681, 0.0213231798, 0.00672427705, 0.0100374259, 0.0100809727, -0.0106325587, 0.0062742983, 0.0284212288, 0.0112784961, -0.0242552981, 0.00203216146, -0.0101245185, -0.00981969479, -0.0024204494, -0.0171572492, -0.00968179759, -0.0125848856, -0.00127191539, 0.00287950016, -0.00204486237, -0.0169104859, -0.00966728199, 0.00469211582, -0.0095656747, -0.000115953408, -0.00095711177, -0.0049134763, -0.0117284749, -0.0267519541, -0.00541425869, 0.0102333846, -0.0145807583, -0.012461504, -0.00810687244, 0.00187974935, -0.0220054053, 0.00936245825, 0.0165621154, -0.0272454787, 0.0253875032, -0.00467397133, 0.0121857114, 0.0121857114, 0.00731578143, 0.0138477292, -0.00321516977, 0.00369962258, 0.00391916838, 0.00535619678, -9.36132419e-05, -0.0049098474, -0.00324238627, -0.0109373834, 0.0152847571, 0.00989953, -0.00172733725, 0.0129042249, -0.016315354, 0.0082810577, 0.0177233517, -0.00196684198, -8.49946955e-05, 0.0213086642, -0.00439092, 0.00468848692, -0.00593681447, 0.000675875111, 0.0399174578, -0.0416012481, -0.0071488535, 0.0272019319, 0.0109010944, 0.00162845082, 0.00717788469, -0.00609285571, -0.00190152251, -0.010327735, 0.00282869628, -0.0014170697, 0.00649203, 0.0154879736, 0.0209022313, -0.0336177573, -0.0114889704, -0.00182985247, 0.0191894099, 0.0210473873, 0.0181297828, -0.00072804, 0.000850060373, 0.0169685483, 0.00174185273, 0.00555941323, 0.00161393534, 0.017752381, -0.00243859366, 0.00801252201, 0.0117647629, 0.0296550412, -0.013927564, 0.0239359587, -0.00814316142, 0.0153428186, -0.00378852966, 0.00987049844, 0.00143793563, 0.00300469575, 0.0068440293, 0.00207026443, -0.0120478142, 0.00968179759, -0.0252858941, -0.00222630543, 0.0136154816, 0.00502597075, -0.00528724864, 0.0184491221, -0.0138259558, 0.0146533353, 0.0240956284, 0.0162137449, 0.013927564, 0.00958018936, -0.013121957, -0.0122147417, -0.0241536908, -0.00349640637, 0.0063541336, 0.00373046775, 0.0123381233, -0.00203579036, -0.008672975, -0.0151976645, 0.0279712509, 0.0218167044, 0.0136808008, 0.0111260843, -0.00365244737, -0.012497793, 0.00719965762, -0.00476832176, -0.00711982278, 0.00915198401, 0.00934068486, -0.00886167586, -0.0217441283, 0.000420947734, 0.0279712509, 0.00268717064, -0.010806744, -0.0176652893, -0.0156911891, 0.0112857539, 0.00710167829, -0.00586060854, -0.0101680653, 0.0182313919]
05 Feb, 2025
Recursive Descent Parser 05 Feb, 2025 A recursive descent parser is a top-down parser that processes input based on a set of recursive functions, where each function corresponds to a grammar rule. It parses the input from left to right, constructing a parse tree by matching the grammar’s production rules. This parser is simple to implement and is suitable for LL(1) grammars, where decisions can be made based on a single lookahead token. While straightforward, recursive descent parsers struggle with left-recursive grammars and may require grammar transformations to handle such cases effectively. A Predictive Parser is a special case of Recursive Descent Parser, where no Back Tracking is required. By carefully writing a grammar, means eliminating left recursion and left factoring from it, the resulting grammar will be a grammar that can be parsed by a recursive descent parser. By carefully writing a grammar means eliminating left recursion and left factoring from it, the resulting grammar will be a grammar that can be parsed by a recursive descent parser. Example: Before removing left recursionAfter removing left recursionE –> E + T | T T –> T * F | F F –> ( E ) | idE –> T E’ E’ –> + T E’ | e T –> F T’ T’ –> * F T’ | e F –> ( E ) | idAlgorithm for Recursive Descent ParserS(){ Choose any S production, S ->X1X2…..Xk; for (i = 1 to k) { If ( Xi is a non-terminal) Call procedure Xi(); else if ( Xi equals the current input, increment input) Else /* error has occurred, backtrack and try another possibility */ }}Let’s understand it better with an example: The given grammar is: E → i E'E' → + i E' | εFunction E() E(){ if (input == 'i') { // If the input is 'i' (identifier) input++; // Consume 'i' } E'(); // Call E' to check for further expressions}It checks for i (identifier).If found, it moves the input pointer ahead.Calls E'() to check if a + operation exists.Function E'() void E`() { if (input == '+') { input++; // Consume the '+' if (input == 'i') { input++; // Consume the 'i' } E`(); // Recursively process more additions } else { return; // If no '+', return (ε production) }}It checks for + i.If found, it consumes them and calls E'() recursively.If no +, it returns (ε production).Main Function Main(){ E(); // Start parsing from E if (input == '$') // If we reach end of input Parsing Successful;}Calls E() to start parsing.Checks if the input ends with $, which indicates a successful parse.Example Input Parsing Let’s consider the example input: i + i $Processing step by step: E() starts → input == i, so consume iCall E'() → input == +, so consume +input == i, so consume iCall E'() again → no +, so return.Back to Main(), input == $ → Parsing SuccessfulImportant points about recursive descent parsersTop-Down Parsing: It starts from the start symbol and recursively applies grammar rules to break down the input.One Function per Non-Terminal: Each grammar rule has a corresponding function in the parser, making the implementation straightforward.Uses Recursion: The parser calls functions within themselves to process different parts of the input, matching the recursive nature of grammar rules.Works Best with LL(1) Grammars: It’s most effective for grammars that can be parsed with a single token lookahead, typically simple, non-left-recursive grammars.Easy to Implement: The structure is easy to follow and implement, making it a good choice for small compilers or interpreters.Error Handling: It can detect syntax errors and report them, making it useful for debugging input strings.Code Implementation of a Recursive Descent Parser C #include <stdio.h> #include <string.h> #define SUCCESS 1 #define FAILED 0 // Function prototypes int E(), Edash(), T(), Tdash(), F(); const char *cursor; char string[64]; int main() { puts("Enter the string"); scanf("%s", string); // Read input from the user cursor = string; puts(""); puts("Input Action"); puts("--------------------------------"); // Call the starting non-terminal E if (E() && *cursor == '\0') { // If parsing is successful and the cursor has reached the end puts("--------------------------------"); puts("String is successfully parsed"); return 0; } else { puts("--------------------------------"); puts("Error in parsing String"); return 1; } } // Grammar rule: E -> T E' int E() { printf("%-16s E -> T E'\n", cursor); if (T()) { // Call non-terminal T if (Edash()) { // Call non-terminal E' return SUCCESS; } else { return FAILED; } } else { return FAILED; } } // Grammar rule: E' -> + T E' | $ int Edash() { if (*cursor == '+') { printf("%-16s E' -> + T E'\n", cursor); cursor++; if (T()) { // Call non-terminal T if (Edash()) { // Call non-terminal E' return SUCCESS; } else { return FAILED; } } else { return FAILED; } } else { printf("%-16s E' -> $\n", cursor); return SUCCESS; } } // Grammar rule: T -> F T' int T() { printf("%-16s T -> F T'\n", cursor); if (F()) { // Call non-terminal F if (Tdash()) { // Call non-terminal T' return SUCCESS; } else { return FAILED; } } else { return FAILED; } } // Grammar rule: T' -> * F T' | $ int Tdash() { if (*cursor == '*') { printf("%-16s T' -> * F T'\n", cursor); cursor++; if (F()) { // Call non-terminal F if (Tdash()) { // Call non-terminal T' return SUCCESS; } else { return FAILED; } } else { return FAILED; } } else { printf("%-16s T' -> $\n", cursor); return SUCCESS; } } // Grammar rule: F -> ( E ) | i int F() { if (*cursor == '(') { printf("%-16s F -> ( E )\n", cursor); cursor++; if (E()) { // Call non-terminal E if (*cursor == ')') { cursor++; return SUCCESS; } else { return FAILED; } } else { return FAILED; } } else if (*cursor == 'i') { printf("%-16s F -> i\n", cursor); cursor++; return SUCCESS; } else { return FAILED; } } Frequently Asked Questions on Recursive Descent ParserDoes GCC use recursive-descent?No, GCC (GNU Compiler Collection) does not use a recursive descent parser. Instead, GCC uses a more complex parsing technique known as an LR parser (specifically, an LALR parser—Look-Ahead LR parser). What is top-down recursive parsing?Top-down recursive parsing is a parsing technique where the parser begins with the start symbol of the grammar and works its way down, recursively applying grammar rules to break down the input. Is LL-1 a recursive descent parser?Yes, LL(1) parsing is a specific type of recursive descent parser, but with some important constraints. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser
https://www.geeksforgeeks.org/recursive-descent-parser?ref=asr10
PHP
Recursive Descent Parser
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0266008675, 0.0354024209, -0.0199436434, -0.0133635029, 0.012795887, 0.0208966769, 0.00540286349, 0.0198175069, -0.0387100093, 0.00335664279, 0.0221580472, -0.0382615216, 0.0429986641, -0.0213872101, -0.00221965881, 0.0336925648, 0.0292637572, -0.00721783284, 0.00268741651, -0.0158652179, 0.0182478037, -0.0248209368, -0.0125856586, -0.00379461795, 0.00835306477, -0.00375257246, 0.010322202, -0.0310857352, -0.0151784718, -0.00964947231, 0.0562850833, 0.0161315072, 0.0366637893, -0.0311698262, -0.0230970662, 0.0173648447, 0.0109598944, -0.0122633083, -0.025535712, 0.00796063896, -0.0144076357, 0.0114854649, -0.00224418542, 0.00461450778, -0.0179675, 0.0263485946, 0.0316463448, -0.00941822119, -0.020560313, -0.0239519943, -0.0308334623, 0.0398031957, 0.0668245181, 0.000811568229, 0.00306757912, 0.00292041944, 0.0114714494, 0.00130429049, 0.007393023, 0.0193830356, 0.0361872725, 0.0337205939, -0.0466706492, -0.0450729132, 0.0292076971, 0.00384367118, -0.0502024814, 0.00848620944, 0.0263906401, -0.043419119, -0.0240641143, -0.0281986017, -0.0623957142, -0.0056130914, -0.0256898794, -0.00710921502, -0.000770836545, 0.00809378363, 0.00299750292, 0.00768033508, -0.0520524904, 0.0210648607, -0.0373365171, -0.0381213725, 0.00999284443, -0.00262259622, 0.00163627579, -0.0512956679, 0.0770276, 0.00478269, 0.00819889735, 0.0142955137, 0.0280584507, -0.0103572402, 0.0102030728, -0.0176031031, 0.0216955449, 0.0240360852, -0.0243304037, 0.0381494, -0.00544140534, -0.00397681585, -0.00185000768, 0.00645050034, 0.0112401983, -0.00128501956, -0.0533138588, 0.0207425114, 0.0132653965, 0.0737760663, -0.0161455218, 0.0111981528, 0.00779946428, 0.0122422855, 0.0108127343, -0.00367548876, -0.0229428988, -0.0738881826, -0.00612464687, -0.0032445211, 0.0144216511, -0.00203045341, -0.00552549632, 0.0436153337, -0.0329918042, 0.022606533, 0.015640974, -0.0347296894, -0.00511905551, -0.00892068073, -0.00775041105, 0.0192288682, -0.0179114379, 0.00276450021, 0.0329077132, 0.0473994389, 0.00861935411, 0.00284333574, 0.0259982143, -0.0105744759, 0.00547293946, 0.00250872248, 0.0415130518, -0.024540633, 0.00471261423, 0.0199436434, -0.0129430462, 0.0439797267, -0.0212190282, 0.00744908396, -0.0322349817, 0.0055535268, 0.0280023888, -0.00151539454, -0.0312258881, 0.00558506092, 0.00319546787, 0.0349259041, 0.00339868828, 0.0408122912, 0.000192818625, 0.0149682444, 0.00311663235, -0.0264326856, -0.0247929059, 0.0377009138, -0.0220038798, -0.00753317541, -0.0522767343, 0.0191307608, -0.00742105348, 0.0260823052, 0.0267129894, 0.0179394688, -0.00173525815, -0.0211909972, 0.0269792788, 0.0232091881, 0.0204201601, -0.0299364887, -0.00894170348, -0.0483524725, -0.00770135783, -0.0264887456, 0.0135667231, 0.0100699281, 0.047063075, 0.00437274529, -0.0170845408, -0.0428585112, -0.0558646247, 0.0311417952, 0.00387170166, 0.0141133163, 0.00367899262, 0.00525219971, -0.0595366098, 0.0292637572, -0.00592493, 0.014701955, 0.00328306295, -0.0457456447, -0.0385698564, 0.0358228758, 0.0473153479, -0.0103852702, -0.000428120868, 0.0238959324, 0.0498380847, -0.0203641, -0.00629282929, -0.0134686166, 0.0045269127, -0.0178413615, -0.0174489357, -0.0217796359, -0.0259701833, -0.0236016139, 0.0315061919, 0.00515759736, -0.00459698867, 0.0163557492, 0.0288993623, -0.00525920745, -0.0273717046, -0.00779245654, -0.0121652018, -0.0514077879, -5.02029179e-05, -0.0122422855, 0.0109669017, 0.0277220849, 0.00735798525, -0.0394668318, -0.0103362175, -0.0154868066, -0.0250311643, -0.0221860763, -0.0445963964, 0.00416251738, -0.0101119736, -0.0173228, -0.0535941608, 0.0213591792, 0.0271754917, 0.0344493873, 0.0366918184, -0.00315867784, -0.000942522835, 0.00354584819, -0.0193690192, 0.00194285845, 0.027609963, 0.00176679238, 0.00440077577, -0.0129921, 0.0354584791, 0.0155849131, -0.000462501921, 0.000495788059, -0.0121161491, -0.0195652321, -0.0010441331, -0.0164678711, -7.65909281e-05, -0.0161875673, 0.0564812943, -0.00751215266, 0.00716527598, -0.03338423, 0.0691230148, -0.0497820266, -0.0285069365, -0.0321789235, 0.00267515308, -0.0252273772, 0.000427901861, 0.000344467582, 0.0481842905, -0.000828649267, 0.0243584346, -0.0207425114, 0.00634188252, 0.00638042437, 0.0459418595, -0.0281004962, -0.0227326695, 0.0365236364, -0.0487168692, -0.00635239389, -0.0220459253, -0.00462151552, -0.0197754614, 0.0120951263, 0.00241762376, 0.033300139, 0.0149542289, -0.0310857352, 0.00123246247, 0.00928507652, -0.0167201459, 0.00530125294, 0.0115765631, 0.00900477264, -0.0529494621, -0.00687446026, -0.0326274075, 0.0224383511, -0.0178974234, 0.000854051847, 0.0545191653, -0.0208686478, -0.0438676067, 0.0102451183, -0.000571557786, 0.0421577506, 0.0199296288, -0.0400554687, -0.0363554545, 0.0139661562, 0.0288993623, -0.00559206866, -0.0303849746, 0.0531737059, 0.0268110968, 5.9017173e-05, 0.0302728526, -0.00854927767, -0.0283808, 0.0181917418, 0.00920098554, -0.00651707267, 0.00900477264, 0.00591792213, 1.97499485e-05, -0.0606017672, 0.0199856889, 0.0251012407, 0.0301887617, -0.0145898331, -0.0419615395, 0.0132864192, 0.0102030728, -0.0240360852, -0.00547293946, -0.0138400197, -0.019537203, -0.0190186389, 0.00792560074, 0.00656962954, 0.000938143115, 0.0325152874, 0.018682275, -0.0148561224, 0.0515479408, -0.0599290356, -0.019677354, -0.0283107236, 0.0296561848, 0.0190747, 0.0181637127, -0.0121652018, -0.0194951575, -0.0202800091, -0.0013883817, -0.0353743881, -0.00305181183, -0.0110019399, 0.0305251274, 0.00260507711, 0.000494912092, 0.0062472797, 0.00946026668, -0.0285770129, -0.00720381783, -0.0063664089, -0.00493685761, 0.013335472, 0.0120250499, 0.00683942251, -0.00160211371, 0.0199716743, -0.0341690816, 0.00823393557, -0.00178781524, -0.0184019711, 0.000217564229, 0.0132934265, 0.0216535, -0.00704264315, -0.0122913392, 0.0433910899, -0.031618312, -0.0102451183, 0.0110229626, -0.0275539029, -0.00601953268, 0.00699709356, 0.0134616094, -0.00943924394, 0.0400835, 0.023629643, -0.00865439232, 0.0226766095, -0.0382054634, 0.0340849906, -0.0454933718, -0.0231671426, 0.00247018063, 0.0168743134, 0.00784151, -0.0424941145, 0.00559206866, 0.00263135554, 0.0180656053, 0.0262224581, 0.00955136586, 0.0648063272, -0.0199576579, 0.0094953049, -0.00429566158, 0.0239239633, 0.0017921949, -0.00221440312, 0.0315902829, 0.0436713919, 0.0440077595, 0.00903981, -0.0479880795, -0.0102451183, -0.0161595363, 0.0170705263, 0.00201994204, 0.0336925648, -0.0108758025, -0.0871746, -0.0135947531, 0.0119479662, 0.00151451863, 0.0259561688, 0.0105884913, 0.00775041105, -0.0398312248, -0.0302448235, -0.0293198191, 0.0331039242, 0.000293881429, -0.00028534091, 0.0168182515, -0.0191587918, -0.0160334, 0.000631560397, -0.0133214565, 0.0121581946, 0.0410365351, 0.0044673481, 0.00427814294, -0.0240080543, -0.0025209859, -0.0132303583, 0.00668175146, 0.0226625949, -0.00453742407, -0.0244425256, 0.00510854414, 0.037392579, 0.0184159856, 0.0181356817, -0.00874549057, 0.0124735367, 0.0256338194, -0.0318986177, 0.0028293205, 0.0384016745, 0.0182618182, -0.00901878718, 0.0195792485, -0.0338327177, -0.0558646247, -0.000224133866, 0.0109038334, 0.0397471339, -0.00963545684, -0.0475956537, -0.0261523817, -0.0218076669, 0.0408122912, -0.0281986017, 0.0577987246, 0.00113435602, 0.00208125869, 0.00872446783, -0.0297963358, -0.0590320639, 0.0154727912, -0.00594244897, -0.029572092, -0.00721082557, -0.00817787461, -0.00427463884, -0.0158652179, 0.0114364112, -0.0138400197, 0.00539235212, -0.0259141233, -0.0159633234, -0.0196072776, 0.0241482072, 0.01316729, -0.016608024, 0.0109038334, -0.0374486409, -0.0112962592, 0.0350940861, -0.00290990784, 0.0205322821, -0.0026103328, 0.0275679175, -0.0116536468, 0.0103852702, -0.00422558561, 0.0240781307, 0.0115835713, -0.0157951415, -0.0298523977, 0.031786494, 0.0198034924, -0.0235595684, 0.0246667694, 0.0101259891, 0.0234614611, 0.00699008582, 0.0216535, 0.0239660088, -0.010833757, -0.00947428215, 0.0275959484, 0.0318145268, -0.0040118536, 0.0388781913, -0.015809156, 0.0116256168, -0.0297402758, -0.00651356857, -0.0350380242, -0.00879454426, -0.0404478945, -0.00435172254, 0.00376308383, 0.022774715, -0.00382965617, 0.0206023585, 0.0066256905, 0.0098597, 0.00166868593, -0.00509102503, -0.035150148, -0.00181672152, 0.0145758186, -0.0318705887, 0.007904578, 0.013790966, -0.0311698262, -0.00594945671, -0.00681839976, -0.0152765783, 0.0253254846, 0.0042711352, 0.00175628101, 0.0399433486, -0.0209807698, -0.0320107378, 0.0261944272, -0.00465655327, 0.020476222, 0.0171686318, 0.025479652, -0.018570153, 0.00141641218, -0.0313099772, 0.00908185635, 0.0139100961, -0.0142955137, 0.0135597158, 0.0224944111, -0.0229849443, -0.00408543367, -0.0142114228, 0.02934785, -0.0189345479, -0.0111561073, 0.00756821316, 0.00379812182, -0.0116466396, -0.0280023888, -0.00147685269, -0.0118358443, 0.0160053689, -0.00538884802, -0.0303849746, 0.0272735991, 0.0354024209, 0.0437554866, 0.00671328558, 0.000851861958, 0.00797465444, 0.01421843, -0.0145057421, 0.0139591489, -0.00177467591, -0.0179815143, 0.0205743276, 0.0107356505, 0.000531264057, -0.00349153904, -0.00987371523, -0.00252974546, 0.0135316849, -0.0133214565, -0.0198315214, 0.0134896394, -0.00671328558, -0.0129921, -0.00974757876, -0.0288152713, 0.00536081754, -0.0248069204, -0.0347016603, -0.0202099327, -0.0166500695, -0.016664084, 0.0178413615, -0.010294172, -0.00235630712, -0.00795363169, 0.00564112188, -0.0396910757, 0.0171686318, 0.00961443409, 0.0159072634, -0.00577076245, 0.0224383511, 0.00514358189, 0.0478479266, -0.0299364887, 0.00217060558, -0.00273296586, 0.0278061759, 0.027497841, -0.00613165414, -0.0302448235, -0.00572871696, 0.0392706171, 0.0298243668, 0.00934814475, -0.0466145873, 0.0149261989, -0.0180095453, 0.0054203826, -0.00170635176, -0.00787654798, -0.00929909199, 0.0113733429, 0.0119830044, 0.00248244405, -0.0482123233, 0.0123193692, 0.0249470733, 0.0101400046, 0.043307, -0.0135106621, 0.00812882185, 0.0107216351, 0.0127538405, -0.0230970662, -0.0275679175, -0.00768734235, 0.0321508907, 0.020560313, 0.0341971107, -0.0215413775, 0.0103081865, 0.0116466396, 0.00288012554, -0.0210368298, 0.0171686318, -0.0348698422, -0.00659415638, 0.0038261523, -0.00510504, -0.00317444513, -0.00754018268, 0.0144496812, -0.00759624364, 0.011912928, 0.00588989211, 0.0061106314, 0.00881556701, 0.0131462663, -0.0196072776, 0.0169864334, -0.0158371869, -0.0109388717, -0.0294599701, -0.00651707267, 0.0364675745, 0.00210052961, -0.00246667699, -0.0277220849, -0.0013165538, 0.00756821316, 0.0110650081, 0.0406721383, -0.00742105348, 0.0496979356, -0.00610362366, 0.0175610576, -0.0141623691, 0.0273997355, -0.0298243668, 0.0113032665, -0.0259141233, -0.0309455823, -0.00974057056, -0.0199716743, 0.00189030147, -0.0430266932, 0.0078345025, 0.0126417195, -0.00325853634, -0.038990315, 0.0192849282, -0.0110860309, -0.000631560397, -0.0297963358, -0.00055929448, -0.000609661627, 0.00323050586, -0.0049824072, -0.00499642221, 0.000184278106, -0.014729985, 0.0201398563, 0.000639443926, -0.00103099388, 0.000679737655, 0.0052977493, 0.0280724652, 0.0104203084, 0.0391865261, 0.0023019982, -0.0015723313, 0.0207425114, -0.0180515908, -0.0149261989, -0.0119409589, 0.000620173058, -0.0275118575, -0.00118428527, 0.0136718368, -0.0239519943, 0.0484926254, -0.0112121683, -0.0144777121, -0.00237732986, -0.0135947531, -0.0462782234, -0.00867541507, 0.00957939588, -0.0205042511, 0.0103362175, 0.00121231563, 0.0446244292, -0.0423819944, 0.00336014666, -0.021667514, 0.0117237233, 0.00103362172, 0.00576025108, 0.00964246411, -0.0379531868, 0.0128309242, 0.0180515908, 0.0052206656, 0.00101347489, -0.0110229626, 0.0103922784, -0.000886024034, 0.0296561848, -0.011261221, 0.00588288438, 0.00819189, -0.00254200865, 0.0279883742, 0.0178553779, -0.0109038334, -0.0224803966, 0.00983167, -0.03349635, -0.0323751345, 0.017799316, -0.00457246229, -0.0260262452, -0.0164118111, 0.00252273772, -0.0248629823, 0.0146879395, -0.0169584043, -0.0311417952, -0.00088208227, 0.0257179104, 0.00475816382, -0.0369721241, -0.0274557956, 0.0296842139, 0.0129570616, 0.0141273318, 0.00660116365, -0.0117517533, 0.0194390956, 0.0292357281, 0.00716527598, 0.0050384677, 0.0168462824, 0.00935515296, -0.0135106621, -0.00255952775, 0.00137261464, -0.00716177234, -0.00554651907, 0.0252413936, 0.00461450778, 0.0115345176, -0.0136508141, -0.0333562, -0.033468321, -0.00514007825, 0.0120600881, 0.0299364887, 0.0184720457, -0.0165519621, -0.031253919, -0.0104343239, 0.0181777272, -0.019537203, -0.0032147388, 0.00421507424, 0.00408193, 0.0167621914, 0.00290114852, 0.0145758186, 0.0187523514, -0.0108407652, 0.0186402295, -0.0199856889, 0.0216254685, 0.0224243365, 0.00828298926, -0.00816386, 0.00247018063, 0.0170144644, 0.0415971428, -0.0128099015, 0.00211629667, 0.0129430462, -0.00173788599, 0.0142814992, 0.0163417347, -0.0126627423, -0.0269792788, -0.0248769969, -0.0185281076, 0.0122072473, 0.0153606702, 0.00336189847, 0.0184019711, -0.0204622056, -0.00419054786, 0.0142814992, 0.00239660079, 0.0560328104, -0.0168743134, -0.0109458789, -0.0173788592, 0.0175610576, 0.0111490991, -0.00563761825, -0.0160614308, 0.0190046243, 0.00999284443, -0.0324031636, 0.0104623539, -0.0323471054, -0.0193269737, 0.0269652642, 0.0526971892, -0.00435172254, -0.00269442401, -0.0281845871, -0.00426412746, 0.00749813719, -0.0149682444, 0.00626830244, -0.0185841676, 0.00571119785, -0.0381213725, 0.0142534683, -0.00220914744, -8.39680797e-06, -0.00462501915, 0.00448136311, 0.0164538566, -0.0140502481, -0.0188364424, 0.045016855, -0.0114223957, -0.0208826624, -0.0130131226, 0.0281004962, 0.0337205939, 0.0354024209, 0.00520314649, -0.0134405866, 0.0178974234, -0.000709957967, -0.0054799472, 0.00945325941, -0.018514093, 0.0077854488, 0.00432719616, 0.0128799779, 0.00902579539, 0.0187243205, -0.0123193692, 0.00699358946, -0.0181216653, -0.0140993008, 0.00478269, -0.0578547865, -0.0230269898, -0.0177432559, 0.0131392591, -0.0037070231, 0.014106309, -0.00246492494, 0.00379461795, 0.0149962744, 0.0349259041, 0.0113663347, -0.0252834391, -0.0106865978, -0.062507838, -0.00711622275, -6.53130701e-05, 0.0145898331, -0.0375047028, -0.00849321671, -0.0301327016, -0.0155849131, 0.0281705726, 0.00154955662, 0.000977560878, 0.0217095595, -0.00390323601, 0.0271754917, 0.00119742448, -0.0201959182, -0.0180235598, -0.00344598969, 0.0129780844, 0.0208826624, 0.00651006494, 0.013678845, 0.0205322821, 0.0114083812, 0.0146599095, -0.00552199269, -0.049025204, -0.00297648017, -0.0135106621, -0.00348803541, 0.01843, -0.0223963056, 0.0195512176, 0.00559907639, 0.00237557804, 0.00330758956, 0.0117237233, -0.00503496407, -0.0114714494, -0.0120670954, 0.0207705405, 0.00480721705, -0.0370001532, -0.0112121683, 0.0112752365, 0.0174068902, 0.00784151, -0.00712323049, 0.00467757648, -0.0173788592, 0.00549746584, -0.0180515908, -0.0169023424, -0.0233633555, 0.0306652784, 0.0026401151, -0.00374206109, -0.000994204, 0.00248769973, 0.00678336155, -0.0207985714, -0.0185421221, -0.015809156, 0.0216955449, 0.0269512478, 0.00667474372, -0.00342847081, -0.0158512015, 0.0336645357, -0.0424380563, 0.0280864798, -0.001471597, -0.0182197727, 0.00799567718, -0.00436573802, -0.0367198512, -0.0124805439, 0.00819889735, 0.00853526313, 0.0290675443, -0.0212050118, -0.0101680346, 0.00499291858, -0.00427814294, -0.0275118575, -0.0119059207, -0.0320668, 0.00672379695, 0.0111210691, 0.0221160017, -0.0192428827, -0.00117990549, 0.00100559136, -0.0424660854, -0.00888564344, 0.0215553921, -0.0126417195, -0.00922901556, -0.0388501622, 0.027469812, -0.0193550047, 0.0194811411, 0.00507350592, 0.00273471791, 0.0380372778, -0.0136438068, -0.0190046243, 0.00102573819, -0.0155568831, -0.00997882895, -0.020476222, 0.0236156285, -0.00704264315, -0.0123474, 0.0218497124, -0.0281845871, -0.026642913, 0.0108477725, 0.0115905786, 0.0160334, -0.0130621754, -0.0202800091, -0.029572092, 0.00716177234, 0.0262504872, -0.0404198654, -0.0147720315, 0.0094882967, 0.0139311189, -0.0234194156, -0.0179675, -0.017883407, 0.00584083889, -0.0287592113, -0.0305531565, 0.0190466698, -0.0114153884, 0.00310787279, -0.0499502085, -0.0195231866, 0.0366357602, -0.00767332735, -0.0221019853, 0.00604405906, -0.000491846295, -0.00672379695, 0.0906503797, -0.0343092345, -0.00346350879, -0.0166220386, 0.0202239472, 0.00215133466, 0.00829700381, -0.0113242893, 0.0421577506, -0.0129500534, 0.0390183441, 0.0043307, -0.0260542743, -0.00508051366, 0.00619472284, 0.0183038637, -0.00989473797, -0.00435522664, 0.00735097751, 0.00173263031, -0.0080307154, -0.00682540704, 0.000669226283, -0.00153291353, 0.0331599861, -0.00756120589, 0.0115835713, -0.0207565259, -0.045100946, -0.0115695558, 0.0202940237, -0.0150663508, 0.0129150162, -0.00932712201, -0.0151364263, -0.00583383115, 0.0328236222, -0.0117517533, -0.0296281539, 0.017631134, 0.00458297366, -0.000576813472, -0.0129921, 0.00398031948, -0.0203360692, -0.0079115862, 0.0103642475, -0.0124384984, -0.0187243205, 0.00202344591, 0.0174629521, -0.0167621914, 0.00525219971, 0.0174629521, -0.00360190892, 0.0258860923, 0.00329883, -0.0136157759, 0.0244705565, -7.62624477e-05, -0.0121441791, -0.00872446783, -0.00131217402, -0.0228868369, -0.00538884802, 0.0122703165, 0.00751215266, 0.00983867701, 0.00600201357, 0.0169584043, -0.0165379476, 0.00189380522, -0.00954435766, 0.0170424953, -0.0235175211, 0.011317282, -0.0010266141, 0.00781348, -0.0166500695, 0.0168883279, -0.00387170166, 0.0173788592, 0.00947428215, 0.0296842139, -0.00821291283, -0.00614216551, -0.0347857513, 0.0325433165, 0.0120881181, -0.0180375744, -0.00629282929, 0.0010082192, -0.00852124766, -0.0156549886, 0.00806575362, -0.00686044525, 0.0298804268, -0.0219758488, -0.00567616, -0.00450589, 0.0228167623, 0.00753317541, -0.00995079894, -0.0250732098, 0.00649605, -0.00818488281, 0.0222000927, -0.00437975302, 0.0124384984, 0.00771537283, 0.0328516513, 0.0025577757, 0.00142692355, 0.00468108, -0.00540636713, -0.0205182675, -0.00850022491, 0.0116045941, -0.013706875, 0.00490882713, -0.0229428988, 0.00898375, -0.00182723301, -0.0310577042, -0.00762427412, -0.0148701379, 0.0251853317, 0.017575074, 0.00100559136, -0.00272070267, -0.00800268445, 0.00511204777, -0.00853526313, -0.0200417507, 0.00738601573, -0.00523117697, -0.0128589552, 0.00950931944, 0.00437274529, 0.0167621914, -0.0170705263, 0.0122913392, 0.0144496812, -0.00658364501, -0.0137979742, 0.0199015979, 0.00939019, 0.0162015818, 0.00754719041, -0.0232652482, 0.000305706752, 0.00823393557, 0.0126627423, 0.0226625949, 0.0324311964, -0.0135316849, 0.00158985041, 0.00673781196, 0.0112401983, -0.0240220688, 0.0098597, 0.0292357281, -0.00920098554, -0.017687194, -0.0107006123, 0.00527672656, 0.00580229703, -0.00091098866, -0.0030027586, 0.00961443409, 0.00299925497, 0.0231811572, 0.000376220793, -0.0269652642, 0.0261944272, 0.0164398402, 0.0177572705, -0.0150383199, -0.00343723013, 0.00658364501, -0.0119619817, -0.0093691675, -0.000886462047, 0.0136998678, 0.0105394376, 0.0097615933, -0.026642913, -0.0130972136, 0.0228167623, 0.0376168229, 0.0109739089, 0.00632436341, 0.0131322518, 0.00392425852, 0.0378971286, 0.00763828913, 0.0185561385, 0.0119409589, -0.0085703, -0.00239484897, -0.0324031636, -0.0193970501, 0.0184019711, 0.0072598788, -0.00572170923, -0.0137839587, -0.0163697656, -0.0239660088, 0.00294144219, -0.00859833136, 0.0108197415, 0.000903981039, 0.00519263512, 0.00411346415, 0.0125295976, 0.0179955289, 0.0110650081, -0.00199716748, 0.0188084114, 0.00756120589, -0.0174769666, -0.0101890573, -0.00177642785, 0.00413098326, 0.000497539935, -0.020644404, 0.0145758186, -0.00463553052, 0.0040749223, 0.00198490405, -0.0115905786, 0.00695154397, 0.00122895872, -0.00553600769, -0.00967049506, -0.0223542601, 0.0215694085, -0.0354584791, -0.0218497124, 0.0271895062, 0.0363274254, -0.00101347489, 0.00365796965, 0.000936391181, 0.000359577738, -0.000138181204, 0.0192148518, 0.00701461267, 0.00104763696, -0.0134335784, -0.00154868071, -0.0154447611, 0.0101400046, -0.0108828107, -0.0118568679, -0.00527322246, -0.00108267495, 0.0245546475, 0.00274522929, -0.0455774628, 0.0413729, 0.00426412746, 0.0145337721, -0.00485627027, -0.0243023746, 0.00974057056, -0.0187523514, -0.017799316, 0.0133284647, -0.00182898482, -0.0369721241, 0.0204902366, -0.02633458, 0.0374206118, 0.0142534683, -0.00662919413, -0.00984568521, 0.00101960648, -0.0224103201, 0.00641195849, -0.0315622538, 0.000939019083, 0.0126206968, -0.0309455823, -0.00964947231, -0.0171686318, -0.03349635, 0.0141904, 0.0130271371, 0.00237732986, 0.00324101723, -0.0188784879, -0.000673168048, -0.0168602969, 0.0181356817, 0.0444562472, 0.0143796057, -0.00317269308, -0.0080167, 0.00851424, 0.00261383667, -0.0198175069, -0.00664671324, 0.0297683049, 0.0202940237, 0.00122720678, 0.00838109571, -0.0258160159, -0.00590040348, -0.0138680497, 0.0438395776, -0.0401115306, 0.00449537858, -0.013762936, -0.00374556473, 0.0027995382, 0.0297122449, -0.0240080543, -0.00900477264, 0.0165940076, -0.0110159544, 0.0133564947, 0.00115625479, 0.00652408, -0.021751605, -0.000343810621, -0.0071372455, 0.014758016, -0.0178974234, -0.0165940076, 0.03338423, 0.0057952893, 0.0110509926, 0.0310296752, -0.0258580614, 0.0170565099, -0.018654244, -0.00408193, 0.0290395152, -0.0232932791, -0.0260542743, 0.043335028, -0.0223262291, 0.027441781, -0.0130201299, -0.035262268, -0.0114924721, 0.0455214, -0.00887162797, 0.00647853082, -0.0244004801, -0.021835696, 0.00929909199, 0.00990174618, -0.0139311189, 0.0199856889, 0.0119830044, 0.00996481441, -0.0166360531, 0.0264326856, -0.0144356657, 0.00493685761, -0.0094882967, 0.00371403061, -0.00895571895, -0.00500693358, -0.0256338194, 0.0135737304, -0.000729666848, 0.0375887938, 0.0159352943, 0.00752616767, 0.0172387082, -0.00309385755, -0.00543439761, 0.0101890573, -0.00779946428, 3.16847763e-06, -0.0040749223, -0.00924303103, -0.00336715416, -0.00814984459, 0.0203360692, -0.00397331174, -0.0133424802, 0.0108127343, 0.0221019853, 0.0169443879, 0.00173350621, -0.00533629116, 0.0379531868, 0.043250937, 0.0217936505, -0.0230129752, -0.00840211846, 0.000864563277, -0.0232652482, 0.0209247079, -0.0362433307, 0.0040889373, 0.00428865431, -0.00305881957, -0.0047266297, 0.0112472055, -0.00110982941, -0.00371052674, -0.0308054313, -0.0343092345, 0.0191587918, -0.0431107841, -0.0072738938, 0.0205042511, -0.0105464449, -0.0405039564, -0.0308334623, 0.00543089397, 0.0197894759, -0.0112542138, 0.0257599559, 0.0310296752, 0.00729491655, -0.0272315517, -0.0117867915, -0.0175049976, -0.00750514492, -0.0251993481, 0.00967750233, -0.00621924922, -0.00607909728, -0.0213872101, -0.00610362366, 0.00424310472, 0.00595296035, 0.0193690192, -0.00747010671, 0.00283983187, 0.0182057582, -0.00374556473, -0.00577076245, 0.00320597924, -0.00556403818, 0.0196493249, -0.00478969794, -0.0246107075, 0.0212330427, -0.0158792324, 0.012795887, 0.0139871789, -0.0155708976, 0.0049053235, 0.0148140769, -0.0128589552, -0.000938143115, -0.00990174618, -0.0149402134, 0.0308895223, -0.00391725125, -0.0160334, -0.000105716288, -0.0237417649, -0.00268040877, -0.010749666, 0.00391374715, -0.00820590556, 0.00560258, 0.0218216814, -0.000282275083, -0.00607208954, -0.00550097, -0.00372103811, 0.013335472, -0.0163697656, 0.0249891188, 0.0061281505, 0.00107303949, -0.00463202689, 0.00970553234, -0.00453742407, 0.00380863319, 0.00355811138, -0.014246461, 0.0222561527, 0.014330552, 0.0172246937, 0.00360541278, 0.0447926112, 0.0134686166, 0.0301887617, 0.00614216551, -0.01843, -0.00676934654, -0.00713374186, -0.0155008221, -0.00992276892, 1.63008935e-05, 0.00130166265, -0.00260858098, 0.0111420918, 0.0194811411, 0.0106795896, -0.0137489205, -0.00756821316, -0.0160334, -0.0185000766, 0.0186262131, 0.0212190282, -0.00494386535, 0.0178693924, 0.0154447611, 0.0069585517, -0.0209667534, -0.0400835, 0.0061141355, 0.00247368449, 0.0177292395, -0.000818137894, -0.00812882185, 0.00747711444, 0.0148841524, 0.000288625713, 0.0204481911, -0.00340569601, 0.014701955, -0.00516460463, 0.0116606541, 0.010665575, 0.0225925185, 0.00126837648, -0.0124735367, -0.0119689889, -0.00969852507, 0.0179955289, -0.0105254222, 0.00482123205, -0.00535381027, -0.00870344508, 0.000667036395, -0.00641546212, 0.0159493089, -0.0183739401, -0.00574973971, 0.0428865403, -0.0149542289, 0.0120320572, 0.00471962197, -0.00954435766, 0.0133284647, -0.00211454486, -0.0140432399, -0.0138820652, 0.0150523353, -0.0074560917, 0.00744207622, 0.00751916, 0.0125576276, -0.00460049277, -0.0211349372, 0.00544490898, 0.00265588216, 0.0129430462, 0.0186402295, -0.00215133466, -0.0144496812, 0.00841613393, 0.0190747, -0.00654159905, -0.0140782781, -0.0137699433, -0.0100839436, -0.0156830195, -0.00811480638, 0.000307677663, 0.0148000615, 0.00278201909, 0.0116045941, -0.00532227615, 0.00314115896, 0.0148280924, -0.0165940076, 0.0092500383, 0.00692351349, 0.00430967705, 0.00283808, 0.000801494811, 0.0105043994, -0.00256303139, 0.00498591084, 0.0054799472, -0.0235175211, -0.00531176431, -0.00944625121, -0.0202519782, -0.000685869309, 0.00692351349, 0.00617720373, -0.000326948561, -0.00761025911, 0.00738601573, -0.00511555141, 0.00487378938, 0.00436223391, -0.0182197727, 0.00633487478, 0.00471611787, -0.028408831, -0.0222701691, 0.0126136886, 0.0102451183, -0.0152765783, -0.0177853014, 0.0111280764, -0.0109949317, -0.00583032705, 0.00100909511, -0.0187943969, 0.0162716582, -0.0146038486, -0.0133284647, -0.0122352783, 0.0121371718, -0.0093691675, 0.00494386535, 0.00894871168, -0.00998583715, 0.0141974073, 0.0119970199, 0.0200978108, -0.0139731644, -0.0167341605, -0.00544841262, 0.00316393352, -0.00431668479, -0.00649955356, 0.00839511, -0.0220319089, 0.00293093082, -0.0289273933, -0.00381213706, 0.00468808785, -0.00105201674, -0.00529424567, 0.00615618099, 0.00918697, -0.0194811411, -0.0174349211, -0.0100629209, -0.0105604604, 0.00875950605, 0.0119409589, -0.017687194, 0.0221300162, -0.00437624939, -0.0168042369, 0.013734906, 0.00226696022, -0.0213171337, 0.00326904771, -0.0225364566, -0.00469859922, -0.00634188252, 0.00112034078, 0.025535712, -0.0126417195, 0.00268391264, -0.0176451486, -0.0282546636, -0.00213381578, 0.0296281539, -0.0173928756, 0.00323926541, -0.0101680346, 0.00215308671, -0.0191307608, -0.00566915236, 0.00220214, 0.00347577198, -0.00214432715, -0.00576025108, 0.00265062647, -0.0118848979, -0.00740703847, 0.0136297913, -0.0517721847, -0.0172387082, -0.0127748633, -0.00165379478, -0.0162015818, 0.0122983465, 0.00934814475, -0.00159948587, 0.0120811108, 0.0315622538, 0.000911864568, 0.000664408552, 0.000684117433, -0.0388221294, -0.0156970341, 0.00916594733, -0.0180515908, 0.0116536468, 0.00772938831, -0.00463553052, -0.0081007909, -0.0174909811, -0.009810647, 0.00630334066, -0.00118603709, 0.0485206544, -0.0059915022, 0.000489218393, -0.0150803654, -0.0145477876, -0.00576725882, 0.00356336706, -0.00615618099, 0.00412747916, 0.0317304358, -0.00653459178, 0.00749813719, 0.024428511, 0.00233703619, 0.00306407525, 0.00897674169, 0.00435522664, -0.00920799281, 0.000189095837, -0.00784851704, -0.0206864495, -0.0261663962, -0.0165659785, -0.0365236364, 0.021667514, 0.0299925487, 0.0238538869, -2.44308103e-05, 0.0176171195, 0.0118708825, 0.0194951575, -0.00824094377, -0.00165379478, 0.0148701379, 0.0138820652, 0.0261944272, -0.00648203446, -0.0210508443, -0.0188084114, -0.00533278752, -0.00206724345, -0.00335664279, 0.00730893202, -0.00874549057, 0.0145618031, -0.0253114682, 0.0214292556, -0.0188784879, 0.00469859922, 0.00423960108, 0.00871045329, 0.0145758186, -0.00720381783, 3.87334403e-05, -0.00295545743, -0.0288433023, -0.0001490211, 0.0213591792, -0.00761726638, 0.00704965042, 0.00548695447, 0.00482473616, -0.00692351349, 0.000844416383, -0.0063664089, 0.00583383115, -0.0284228455, 0.0284368601, 0.0381494, -0.0164118111, -0.00982466247, -0.0130411526, 0.00433420343, -0.0121441791, -0.0324031636, -0.00382965617, 0.00506649818, 0.0127188032, 0.00859833136, 0.00775041105, 0.0291796662, 0.0194110647, 0.0105394376, -0.0075892359, 0.0135386931, 0.00784851704, -0.00217586127, 0.0203781147, -0.00795363169, 0.0371403061, -0.000974933035, -0.00895571895, -0.00578127382, -0.0171546172, 0.00610712776, -0.0114784567, -0.0154027157, 0.026642913, 0.0133284647, 0.03338423, 0.00599500583, -0.0160754453, -0.00752616767, -0.0188364424, 0.019705385, 0.000160517957, -0.0156970341, 0.0219618343, 0.0176731795, -0.0101400046, 0.0013769943, 0.0248489678, -0.017547043, -0.00913791638, 0.00612114277, 0.00861234684, -0.000321473868, 0.0082269283, -0.0159633234, -0.0106795896, -0.0232652482, 0.00340919988, -0.00523117697, -0.00387870939, -0.00979663152, 0.00574973971, 0.0100208754, -0.0114223957, 0.000124932456, -0.0214432701, -0.00304305251, -0.000259281369, -0.00154868071, -0.00229674252, 0.00371403061, 0.0139241107, 0.0104973922, -0.00105114072, 0.0252974536, 0.0211209208, -0.0260823052, -0.00693052122, -0.00458297366, 0.00249996316, 0.00670627784, 0.00621224195, -0.00574623607, 0.0197334159, 0.00997182168, -0.000387608132, -0.009215, -0.0109598944, 0.00665722461, 0.0246107075, -0.00660116365, 0.0175610576, -0.000121538149, 0.0241622217, -0.000573309662, 0.00265938602, -0.000645575579, -0.0160894617, 0.0203500837, -0.0131112291, -0.0163977947, 0.00688847573, 0.0133985402, 0.00845117122, -0.00274873292, -0.00372804585, -0.00784851704, 0.00305881957, -0.003952289, 0.011233191, 0.00185351155, 0.018682275, 0.0244845711, -0.00183774438, 0.0237838104, -0.0118358443, 0.0255216975, 0.0268251114, -0.0121301636, 0.0057357247, -0.00342321489, -0.000658276898, -0.00851424, -0.00995079894, 0.00965648, 0.0123754302, -0.00150751101, 0.00282231276, -0.000116720417, -0.00406090682, 0.017547043, -0.0190747, -0.00971954782, -0.00845817942, -0.0174629521, -0.0123193692, 0.00929909199, -0.00364045077, 0.00981765427, -0.0317304358, -0.00661868276, 0.00680438429, 0.00747010671, 0.00298523973, -0.00757522089, -0.0112401983, 0.00155744015, 0.0153746847, 0.0151224118, 0.0174209066, -0.00393126626, 0.00899776444, -0.00199191179, 0.00471611787, -0.0185841676, 0.0124104684, -0.000861935376, 0.000247018063, 0.0173508301, -0.00708468864, -0.0126206968, 0.0201258417, 0.00188154192, -0.00707067316, -0.00374556473, -0.00122457894, -0.0290114842, 0.00314466259, -0.0162155982, -0.0447085202, -0.0054203826, 0.00787654798, -5.97836297e-05, 0.00468108, -0.0178553779, 0.00932712201, 0.00116413832, -0.0137208905, 0.0104203084, -0.00053739571, -0.00465655327, 0.0093761757, 0.0029064042, -0.0154307457, 0.00267865695, -0.00725287106, 0.00664320961, 0.0105464449, 0.00241061603, -0.00233353232, -0.00747010671, -0.00497539947, 0.00525920745, 0.00861935411, -0.0061281505, -0.000893469609, 0.0241482072, -0.0242603272, 0.0203921311, 0.0148140769, 0.0142044155, -0.0144777121, -0.0080237072, -0.0120600881, -0.00391374715, 0.00390323601, -0.026586853, 0.0044673481, -0.00568316737, -0.0143655902, 0.00672379695, -0.0115275104, -0.00970553234, -0.0115835713, -0.0257739704, -0.0131392591, -0.0121932328, 0.00091098866, 0.00717228372, 0.00897674169, -0.00401886133, 0.000286654831, -0.00826897379, -0.0262364727, -0.0180936363, 0.0269932933, -0.0182618182, 0.014729985, -0.00901178, 0.0211489517, 0.0179534834, 0.00201118272, 0.00687446026, 0.0219618343, -0.00171773916, -0.0136718368, 0.0090538254, 0.016608024, -0.0128379324, 0.0106936051, -0.0110580008, 0.00314291078, 0.0271614771, -0.00741404621, -0.00598799856, 0.00660817139, -0.000912740536, 0.00413098326, -0.00574273244, -0.0162716582, 0.00904681813, 0.0173648447, -0.00457947, 0.00974757876, -0.00446384447, -0.0124104684, 0.00906083267, 0.0292917881, -0.00230900571, 0.00742105348, 0.00895571895, 0.00927106105, 0.019593263, 0.0148280924, 0.0298523977, 0.00125260942, 0.0254936665, -0.0291236062, 0.0153186247, -0.00438325666, -0.0215974376, -0.0304130055, -0.00288187759, -0.0150803654, 0.000208257261, -0.0124244839, -0.0180656053, -0.000626742665, -0.0296842139, -0.00122282701, 0.0152065028, -0.0108617879, -0.0297683049, -0.00536432164, -0.00697607081, -0.0181496963, 0.018598184, 0.000679299701, -0.00339693646, -0.00697607081, 0.00953034312, -0.00570068648, -0.013790966, 0.0173368137, -0.00992276892, 0.00676584244, -0.00812882185, -0.0201819018, 0.033468321, 0.0027101913, 0.0178974234, -0.00702512404, 0.00435522664, -0.00691300211, -0.0176731795, -0.00828999653, 0.0217095595, -0.00557104591, -0.0199436434, 0.0126557341, 0.00106340402, 0.0235595684, -0.0183178801, -0.0145337721, -0.0216815304, -0.0034109517, -0.0111911446, 0.0131252436, 0.0071372455, -0.00206023594, 0.0110860309, 0.000571119774, -0.0281986017, -0.00454443181, -0.0109318634, 0.00585485389, -0.000202235096, 0.0191868227, -0.000308334624, -0.0136998678, -0.0179955289, 0.00625779107, 0.011345312, -0.0103081865, -0.00332335662, -0.000578127394, -0.00597398309, -0.0067588347, 0.00374556473, 0.00431668479, 0.0107216351, -0.0154027157, -0.0203921311, -0.0115905786, 0.0138820652, -0.00451289769, 0.00243689469, 0.00443231, -0.00857730862, 0.0026103328, -0.00883659, 0.0148140769, -0.0069410326, -0.0274277665, -0.000753317552, -0.0177012105, -0.00943924394, -0.00285910279, 0.0267970804, -0.0219478179, -0.0180796199, -0.00683591841, 0.0211349372, -0.0298243668, -0.0172246937, 0.00805874541, -0.0279883742, -0.00793961622, 0.0141483545, -0.00649254583, -0.0180235598, -0.000281180139, 0.014274491, 0.0156970341, -0.0150803654, -0.0144496812, -0.00448837085, 0.00501394132, 0.000818137894, 0.0074560917, 0.0131742973, -0.00330934138, 0.00164503523, -0.00190256478, -0.00527672656, -0.000974933035, 0.000163693272, 0.0057952893, -9.02229149e-05, -0.0134335784, 0.00253850478, -0.00658364501, 0.0144496812, -0.00421507424, -0.00793260895, 0.017575074, -0.0111631146, -0.00386819779, -1.2078538e-05, -0.0135667231, -0.0187523514, 0.00728790928, 0.00849321671, 0.00482473616, -0.0152345328, -0.0011509991, -0.016692115, 0.00128326763, -0.000967925414, 0.0056130914, 0.0225084275, 0.00450939359, -0.0222841837, 0.0143235447, 0.00916594733, 0.00846518669, 0.0222981982, -0.0194811411, -0.00319021218, -0.00806575362, -0.00861935411, -0.0247368459, -0.0110229626, -0.0101329964, -0.014330552, -0.00726688607, 0.0151083963, -0.0178133324, -0.00194986607, -0.011800807, 0.00941121299, -0.00511555141, -0.0253395, 0.0328516513, 0.00553600769, -0.0272175372, 0.0118778907, 0.0127748633, -0.0172246937, -0.00245791744, 0.00485276617, 0.0092500383, 0.0401395597, 0.00824094377, 0.001595982, -0.00483174343, 0.00299049541, 0.0176731795, -0.00410645641, 0.00389973214, -0.0151083963, 0.00692701759, -0.0156549886, 0.000815072039, -0.000127888794, -0.00310086505, -0.00365096214, -0.00552549632, 0.00909587089, -0.00289063691, -0.0064469967, -0.00740003074, -0.0171406, 0.0268951878, 0.00399783859, 0.0310577042, -0.00103099388, 0.0261243507, -0.0139381262, 0.00521015422, -0.0125436131, 0.00549396221, 0.000699446537, -0.00567966374, -0.00373855722, 0.00811480638, -0.0205182675, 0.0233633555, 0.0113663347, 0.00743506895, -0.00523468107, -0.00878753699, 0.00125260942, 0.000500605791, -0.00247018063, 0.0139451334, -0.00451289769, 0.00296947267, 0.00350555428, 0.0162716582, 0.000485714612, -0.00156795164, -0.0303008836, 0.00298523973, 0.00412047189, -0.00377359521, -0.00214607897, 0.00109406235, -0.0251012407, -0.00534329889, -0.00244565401, 0.0038857169, -0.00166343024, 0.0116045941, 0.00746309943, 0.0109949317, -0.00371403061, 0.00747010671, 0.00255427207, -0.00771537283, -0.0070776809, 0.0125436131, -0.00837408751, -0.00466706464, 0.000645575579, -0.00487729302, -0.0198315214, 0.0118708825, -0.00547293946, 0.00866840687, 0.0256618485, -0.00646101171, -0.00817086734, 0.00661868276, -0.011828837, 0.0121441791, -0.00679036928, -0.0207705405, -0.00258230232, 0.0223542601, -0.00350205065, 0.0135316849, 0.00959341135, -0.0105604604, 0.00701110857, 0.00148824009, -0.00653809542, -0.00471611787, 0.00424310472, 0.00624027196, -0.000465129764, -0.0105604604, 0.0197334159, -0.0189065188, -0.0194671266, -0.000310962467, -0.00667824736, -0.0139100961, -0.0194110647, 0.0122633083, 0.00315692602, 0.00580580067, 0.0236857049, -0.00313590327, 0.0228167623, 0.00280304207, -0.00685343752, -0.00810779911, -0.0103852702, -0.00150050339, -0.0172947682, 0.00282581663, 0.00207775482, -0.00113348011, 0.00681139203, 0.0061106314, 0.0208826624, 0.00512606278, 0.00668175146, -0.00553600769, 0.00294844969, -0.000228842095, -0.0213591792, -0.00475816382, -0.00250346679, -0.00408193, -0.0180936363, 0.00303429295, 0.00794662349, -0.0128099015, -0.0208406169, -0.0205182675, -0.0209947843, -0.0228307769, 0.0126487268, 0.0138330124, -0.0301607307, 0.0112682283, -0.00683241477, 0.00981765427, 0.0234334301, 0.0169584043, -0.000842664507, -0.0136297913, 0.0126066813, 0.00857730862, 0.0113383047, -0.00489481213, -0.0128099015, 0.00815685187, -0.01220024, -0.0129640689, 0.0126136886, 0.00501744496, 0.0178693924, -0.0242743436, -0.00670627784, -0.00403287681, -0.0260122288, -0.00734397, 0.00376308383, -0.0280023888, 0.0101259891, -0.0271054152, -0.003440734, 0.0198315214, 0.0313940682, 0.0161034763, -0.0147720315, 0.00422558561, -0.0128309242, -0.0198315214, -0.00194811414, 0.0040153577, 5.77032479e-05, -0.0105254222, -0.0164959021, 0.00111946487, 0.0206023585, 0.0159493089, -0.00614566961, 0.00871746056, 0.00611763913, -0.00992977619, -0.00832503475, 0.0046075, -0.00732294703, 0.00510854414, -0.0200697798, -0.0353743881, 0.0296561848, -0.0134966467, 0.00648904219, 0.0041485019, 0.00378761045, 0.00150488317, 0.0065030572, -0.0214853175, 0.00566564873, -0.0122212628, -0.0129220234, 0.000739302312, 0.0209667534, 0.00180270639, -0.0189906098, 0.000934639305, -0.011345312, -0.0192428827, -0.0104693621, -0.00793260895, 0.000475641194, 0.0145618031, -6.54773103e-05, -0.00621224195, -0.0119619817, -0.00224068156, 0.0345054455, 0.0164818875, 0.0085703, 0.00127275626, -0.0108828107, 0.0314781629, -0.0322069526, -0.0111000463, 0.0204902366, -0.0128309242, 0.0118428525, -0.00245616562, 0.0102591338, -0.00824795105, -0.0110159544, 0.00329357432, 0.00721082557, 0.00943924394, -0.00824094377, 0.00843014847, 0.014617864, 0.0233072937, 0.00474765245, -0.00115888263, 0.0100699281, -0.0206584185, 0.00289238896, -0.006369913, 0.0098807225, 0.00788355526, -0.00564462552, 0.0107426587, 0.0163417347, 0.0445123054, 0.00432719616, 0.0151504418, -0.0155708976, -0.00256828731, 0.0077714338, 0.00364045077, -0.0170144644, -0.013678845, -0.0194811411, 0.0155989286, -0.00242988695, 0.0157390814, 0.0267970804, 0.00109931803, -0.0103642475, -0.00356687093, -0.0126907723, 0.00297998404, 0.0176171195, 0.0128028942, -0.00696205534, 0.0129220234, 0.0237417649, 0.0005014817, 0.0145898331, -0.00798867, -0.00680788793, -0.0138610424, -0.0102311028, 0.006369913, 0.0214432701, 0.00679387292, 0.00850723218, -0.00680438429, 0.0173788592, 0.0181356817, 0.00353708863, 0.010889818, -0.00187103054, 0.0026698974, 0.0100909509, 0.0085703, -0.0140082026, 0.00547293946, 0.0179254524, -0.00637692027, 0.0020462207, -0.0157110505, -0.0162856746, -0.014758016, 0.031786494, 0.0152345328, 0.0191587918, -0.00254726433, -0.00275749248, -0.00659065228, -0.00638743164, 0.0159212779, -0.00688847573, 0.0268671568, 0.00336365029, 0.0145898331, 0.00866840687, 0.00114837126, -0.0171406, -0.013335472, -0.00872446783, 0.00811480638, -0.0103572402, -0.0112401983, -0.0247088149, -0.031702403, -0.0183459092, 0.00195687357, 0.00567616, 0.0122773238, 0.0107356505, 0.0124805439, 0.0121511873, -0.0195512176, 0.00114837126, -0.00689898711, 0.000142451463, -0.0174349211, -0.00827598106, -0.00835306477, -0.0136858523, -0.0183739401, -0.0208686478, 0.00947428215, 0.00912390184, -0.0123544075, 0.010917848, -0.00929909199, 0.0038331598, 0.0157671105, -0.00852124766, -0.0093691675, 0.0124595212, 0.0188925024, 0.00855628587, -0.00614216551, 0.00394528173, -0.0159072634, -0.0336084738, -0.0137699433, -0.00296071311, -0.00098106463, -0.00045199052, -0.0206584185, 0.0155008221, 0.00454092817, -0.0284508765, -0.000406660081, 0.00086368731, -0.0171546172, -0.00836007297, 0.017631134, -0.010749666, 0.0224243365, -0.0106515596, -0.0057952893, 0.0155428676, -0.00358088617, 0.00831101928, -0.0120951263, -0.0198875833, -0.00524168834, 0.00334613142, -0.0149962744, 0.0031323994, 0.0258300323, -0.0162996892, -0.00583733479, 0.00776442606, -0.0015723313, 0.0023545553, -0.0072738938, 0.00308334618, 0.003085098, 0.0212750882, -0.00416952511, 0.003440734, 0.00494736899, 0.0293758791, 0.0114574339, 0.0127818715, 0.0173928756, 0.00609311229, -0.0103292093, 0.000969677349, -0.021835696, 0.020644404, 0.00398382358, -0.00502795633, -0.0119479662, 0.00632436341, 0.0234334301, 0.00660116365, 0.000806750497, -0.0128659625, 0.0034705163, 0.00608260091, 0.0135106621, 0.00584083889, 0.0127888788, 0.0411486551, -0.00350380247, -0.0246667694, -0.0253535137, -0.00681139203, -0.0239379779, -0.0155568831, -0.017659165, 0.0247788914, 0.0108828107, -0.0115555404, -0.000271106721, -0.0166360531, 0.00304830819, -0.00653809542, 0.00406441092, 0.0214432701, -0.0065065613, -0.00819889735, -0.000806750497, 0.00525219971, -0.0162296128, -0.0142254382, 0.00261558848, -0.0065626218, -0.00456545455, 0.00985269248, -0.00134020438, 0.00691300211, 0.000697694661, -0.00571119785, 0.00848620944, -0.0256478339, -0.0136718368, -0.0122492937, -0.0108407652, 0.00120706, 0.00161174918, -0.00394177763, -0.0036965115, -0.00419755513, 0.0154447611, 0.0125506204, 0.0461380705, 0.0217375904, 0.016523933, 0.0153466547, 0.00221615494, -0.029516032, -0.00603354769, 0.0100068599, -0.00336014666, 0.00453392044, 0.0122703165, 0.0144076357, -0.0021951322, 0.0072598788, 0.00927806925, -0.0201678872, -0.00854227, -0.0330758952, -0.0100839436, -0.010917848, -0.0181777272, 0.00108004711, 0.0171546172, -0.00614917325, 0.011800807, 0.00659766, 0.00665372098, 0.000130188157, -0.0152765783, 0.00770135783, -0.028520951, -0.0182898492, 0.0116186086, -0.0061737, -0.0101610273, 0.000909236725, 0.0177432559, 0.00466005737, -0.0116116013, 0.00400835, 0.00196738518, -0.0186962895, -0.00174927339, -0.019761445, -0.000966173538, 3.80764795e-05, 0.0105324304, -0.0119549744, -0.0093691675, 0.0215974376, -0.0280304197, 0.00819889735, -0.00608260091, -0.0094882967, -0.00560258, 0.0129080079, -0.0215413775, 0.0177572705, -0.00126049295, 0.0281565562, -0.010294172, 0.00626479881, -0.0121511873, 0.00384367118, -0.00974057056, -0.00284508755, 0.0155008221, -0.0098597, -0.0034477415, 0.00887162797, -0.00273646973, 0.00629633293, 0.0148280924, -0.0267410204, 0.00295720925, -0.00761025911, 0.00805173814, 0.00106340402, -0.0189485643, 0.00352657726, -0.0141203236, -0.0178273469, -0.00649254583, -0.0250031333, 0.0146038486, 0.0100138672, 0.0147159705, 0.013818997, -0.00962845, -0.0195512176, -0.0197334159, 0.0460820086, 0.0227607, 0.00387170166, -0.0180375744, 0.0170004498, 0.0151924873, 0.0133705102, -0.0127468333, -0.0392706171, -0.0109598944, -0.00254726433, -0.00796063896, -0.00208125869, -0.00177117216, -0.00853526313, 0.00550447358, 0.0143936202, 0.0126277041, -0.0139451334, -0.0174489357, 0.00149612362, -0.014701955, 0.0153466547, -0.0179675, -0.00469509512, -0.00904681813, 0.0069410326, -0.00961443409, -0.00318670832, 0.0169864334, -0.00421857834, 0.00431318069, -0.0164959021, -0.0149402134, -0.0131182363, -0.0261663962, 0.00710220775, 0.0221440308, -0.00750514492, -0.00296772062, -0.0363554545, 0.0155568831, -0.00105902425, -0.00431318069, -0.0287592113, -0.00160123769, -0.0234194156, 0.0129430462, 0.0239239633, -0.00334262755, 0.00766631961, 0.00812882185, 0.0214853175, 0.0249330588, 0.0208546314, -0.0139801716, -0.0130481599, 0.021639483, -0.01322335, 0.00114661932, -0.00926405378, -0.00249996316, -0.0159633234, -0.00375607633, -0.0065065613, -0.00296246493, -0.00863337, -0.00448837085, 0.00134195632, -0.0132653965, -0.000466881669, -0.000380381563, -0.00717578735, -0.00612464687, -0.0273997355, -0.0349259041, 0.00475115608, 0.00688497163, 0.00244915788, 0.00140502478, -0.0181637127, -0.0265448075, -0.015725065, 0.00421857834, 0.00775741879, -0.0301046707, 0.0110439854, -0.000579441315, 0.00539935939, 0.0104483385, 0.0221860763, 0.0196493249, -0.013279411, 0.00424660835, 0.00699709356, -0.00950231217, -0.00685343752, -0.00693752896, -0.00169321254, -0.0143515747, 0.0244144946, 0.0111000463, 0.0093691675, -0.00394177763, 0.00192533946, 0.00978962425, 0.0182898492, -0.0109528862, 0.00494736899, 0.0315061919, 0.0113032665, 0.00735798525, 0.00433420343, 0.0240641143, 0.0343092345, -0.0273296591, -0.0108477725, 0.0129921, 0.00852825493, 0.0193409901, 0.00516460463, -0.00443231, -0.000254463666, 0.0125366049, -0.0151504418, -0.0194110647, -1.40083666e-05, 0.0226485785, 0.0143796057, -0.016523933, -0.0115905786, -0.00797465444, 0.0143165365, 0.00672730058, 0.0244845711, 0.00252273772, -0.016608024, -0.000566302042, -0.0146879395, 0.0133494874, 0.00901178, 0.0187523514, -0.00218812469, 0.0161315072, -2.7537697e-05, 0.0256618485, -0.0176731795, 0.0386819802, -0.00185351155, -0.00285559893, -0.0227887314, 0.0105394376, -0.00744908396, -0.00337591371, 0.00847219396, 0.00675182743, -0.0126487268, 0.00877352152, -0.0244004801, 0.00378060294, 0.0300205797, -0.0115625476, -0.000150663502, 0.00215834239, -0.00378761045, 0.0107286433, 0.0160053689, -0.00456195092, 0.011744746, 0.0213451646, -0.00522767333, -0.0092500383, -0.0108968252, -0.00127275626, -0.000248331984, 0.0108828107, 0.0111561073, 0.0126136886, -0.00728790928, -0.00225644885, 0.0304130055, 0.0319546796, 0.00679737655, 0.00340919988, -0.0149542289, -0.0158231724, 0.00170547585, -0.0087384833, -0.0108407652, 0.009215, 0.010805727, -0.023629643, -0.0156970341, -0.00669576647, 0.00737200025, -0.0120951263, -0.00608610502, -0.0320668, -0.00770836556, 0.0127888788, -0.000821641646, -0.00964947231, -0.0214012247, 0.0177853014]
30 Jul, 2024
SLR Parser (with Examples) 30 Jul, 2024 LR parsers is an efficient bottom-up syntax analysis technique that can be used to parse large classes of context-free grammar is called LR(k) parsing. L stands for left-to-right scanningR stands for rightmost derivation in reversek is several input symbols. when k is omitted k is assumed to be 1. Advantages of LR parsing LR parsers handle context-free grammars. These grammars describe the structure of programming languages-how statements, expressions, and other language constructs fit together. LR parsers ensure that your code adheres to these rules. It is able to detect syntactic errors It is an efficient non-backtracking shift shift-reducing parsing method. Types of LR Parsing Methods SLR parser LALR parser Canonical LR parser SLR Parser LR parser is also called as SLR parser it is weakest of the three methods but easier to implement a grammar for which SLR parser can be constructed is called SLR grammar Steps for constructing the SLR parsing table Writing augmented grammar LR(0) collection of items to be found Find FOLLOW of LHS of production Defining 2 functions:goto[list of terminals] and action[list of non-terminals] in the parsing table EXAMPLE – Construct LR parsing table for the given context-free grammar S–>AA    A–>aA|b Solution: STEP1: Find augmented grammarThe augmented grammar of the given grammar is:- S’–>.S    [0th production]     S–>.AA  [1st production]      A–>.aA [2nd production]       A–>.b  [3rd production] STEP2: Find LR(0) collection of itemsBelow is the figure showing the LR(0) collection of items. We will understand everything one by one. The terminals of this grammar are {a,b}.The non-terminals of this grammar are {S,A} RULE – If any non-terminal has ‘ . ‘ preceding it, we have to write all its production and add ‘ . ‘ preceding each of its production. RULE – from each state to the next state, the ‘ . ‘ shifts to one place to the right. In the figure, I0 consists of augmented grammar. Io goes to I1 when  ‘ . ‘ of 0th production is shifted towards the right of S(S’->S.). this state is the accepted state. S is seen by the compiler. Io goes to I2 when  ‘ . ‘ of 1st production is shifted towards right (S->A.A) . A is seen by the compiler I0 goes to I3 when  ‘ . ‘ of the 2nd production is shifted towards right (A->a.A) . a is seen by the compiler. I0 goes to I4 when  ‘ . ‘ of the 3rd production is shifted towards right (A->b.) . b is seen by the compiler. I2 goes to I5 when  ‘ . ‘ of 1st production is shifted towards right (S->AA.) . A is seen by the compiler I2 goes to I4 when  ‘ . ‘ of 3rd production is shifted towards right (A->b.) . b is seen by the compiler. I2 goes to I3 when  ‘ . ‘ of the 2nd production is shifted towards right (A->a.A) . a is seen by the compiler. I3 goes to I4 when  ‘ . ‘ of the 3rd production is shifted towards right (A->b.) . b is seen by the compiler. I3 goes to I6 when  ‘ . ‘ of 2nd production is shifted towards the right (A->aA.) . A is seen by the compiler I3 goes to I3 when  ‘ . ‘ of the 2nd production is shifted towards right (A->a.A) . a is seen by the compiler. STEP3: Find FOLLOW of LHS of production FOLLOW(S)=$FOLLOW(A)=a,b,$ To find FOLLOW of non-terminals, please read follow set in syntax analysis. STEP 4: Defining 2 functions:goto[list of non-terminals] and action[list of terminals] in the parsing table. Below is the SLR parsing table. $ is by default a nonterminal that takes accepting state. 0,1,2,3,4,5,6 denotes I0,I1,I2,I3,I4,I5,I6 I0 gives A in I2, so 2 is added to the A column and 0 rows. I0 gives S in I1,so 1 is added to the S column and 1 row. similarly  5 is written in  A column and 2 row, 6 is written in A column and 3 row. I0 gives a in I3 .so S3(shift 3) is added to a column and 0 row. I0 gives b in I4 .so S4(shift 4) is added to the b column and 0 row. Similarly, S3(shift 3) is added on a column and 2,3 row ,S4(shift 4) is added on b column and 2,3 rows. I4 is reduced state as ‘ . ‘ is at the end. I4 is the 3rd production of grammar(A–>.b).LHS of this production is A. FOLLOW(A)=a,b,$  . write r3(reduced 3) in the columns of a,b,$ and 4th row I5 is reduced state as ‘ . ‘ is at the end. I5 is the 1st production of grammar(S–>.AA). LHS of this production is S.FOLLOW(S)=$  . write r1(reduced 1) in the column of $ and 5th row I6 is a reduced state as ‘ . ‘ is at the end. I6 is the 2nd production of grammar( A–>.aA). The LHS of this production is A.FOLLOW(A)=a,b,$  . write r2(reduced 2) in the columns of a,b,$ and 6th row APPLICATIONS GALORE: Compiler Data Validation Natural Language Processing(NLP) Protocol Parsing Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)
https://www.geeksforgeeks.org/slr-parser-with-examples?ref=asr10
PHP
SLR Parser (with Examples)
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0133726951, 0.027210135, -0.015726408, 0.000301007443, -0.00248489249, 0.00627407245, 0.00936238561, 0.0155614987, -0.0278997589, 0.0158163588, 0.00280721649, -0.0160262454, 0.0193544272, -0.00796065107, -0.0172855575, 0.00315202819, 0.019594295, -0.00126493396, -0.00820052, -0.00551698636, -0.00425767386, 0.0143246744, -0.0282295793, 0.0108390786, -0.01598127, -0.0107116485, -0.00629281253, -0.0148119088, -0.014691974, -0.00615039, 0.0396683291, 0.0284544565, 0.0176903363, -0.027779825, -0.0358604081, -0.0117086042, 0.00511970324, 0.0100819925, -0.0224577319, 0.030448366, -0.0152691584, 0.0187547542, -0.00617287774, 0.0364001133, -0.0186198279, 0.0075971, 0.0359803438, -0.0261007417, -0.030763194, -0.0278847665, -0.0240618549, 0.0241068304, 0.0558894686, -0.0138824163, 0.0271201842, 0.0132302726, 0.0211534444, 0.0155465072, 0.00377606228, 0.0101119755, 0.0405078717, -0.00706114247, -0.0337315723, -0.0489332676, 0.0219180267, -0.0114312554, -0.032652162, -0.000563598354, 0.0142572112, -0.00272476161, -0.0253811348, -0.00868025795, -0.0108915502, -0.00465120887, 0.004119, 0.0308831297, -0.0234321989, 0.0277348496, -0.0209285673, -0.00210072729, -0.0412574597, 0.0224427395, -0.0150892567, -0.0420370363, -0.00768330274, 0.00574561115, 0.0285444073, -0.0560993552, 0.0452452824, 0.00175872678, 0.0108015994, 0.0208386164, 0.00266104634, -0.0263556018, 0.0289341938, -0.0373895727, 0.0101794386, -0.00350433565, -0.00931741, 0.042216938, -0.00910752453, -0.0335816555, -0.0120759029, 0.0131927934, 0.0112813376, 0.016476, -0.0617662594, -0.00793816335, -0.0336716063, 0.0514518917, -0.00596674066, 0.00147200841, 0.022052953, -0.0021925522, -0.00826048758, -0.020793641, -0.0462947115, -0.0817353502, -0.0194893535, 0.0261007417, -0.0138299447, 0.00543453125, -0.021768108, -0.0154565563, -0.0505224019, 0.0186198279, 0.0330419503, -0.0086127948, 0.00695994776, -0.0127730221, -0.00256734737, 0.00611665845, -0.0090475576, -0.0171356387, -0.00194706139, 0.0349309184, 0.00308831292, -0.0413474105, 0.0399381816, 0.00964723, -0.0130878501, -0.0313628651, 0.062665768, -0.0143471621, 0.00982713141, -0.0140923019, -0.0270452257, 0.0444057435, -0.0350808352, 0.0225027073, -0.0226376336, 0.003318812, 0.026265651, 0.00441883598, 0.00454626651, -0.00494729728, 0.000654954696, 0.0120309275, 0.025950823, 0.0195493195, -0.0175704, -0.00990958605, -0.000912626449, 0.00457250187, -0.00962474197, 0.0468044318, 0.0141522689, 0.00176997064, -0.0215732139, 0.0297737345, -0.0407477394, 0.0263256188, 0.00870274566, -0.0222328547, -0.0281995945, -0.00625533285, 0.0118960012, -0.0131253302, 0.0178852286, -0.00884516817, -0.00568939187, -0.0218730513, -0.000919185346, -0.0177652948, -0.00835043844, 0.00112063775, 0.062905632, -0.00643898267, 0.011955969, -0.022712592, -0.0200740341, 0.00987960305, -0.00885266345, 0.0143096829, 0.00220192201, 0.021168435, -0.0580782741, -0.019534329, 0.0192944594, -0.0123232678, 0.00747341756, -0.0370597541, -0.0173155405, 0.0268053561, 0.0225476827, -0.0167308599, -0.00863528252, 0.0196692552, 0.00935488939, -0.00711361412, -0.0206437223, -0.0208086316, -0.0189196635, -0.0260407738, -0.0175404176, -0.00242492533, -0.0252162255, 0.00981963519, 0.032712128, 0.0161161963, 0.00185429957, 0.011356296, 0.0568489432, 0.00213633291, -0.0171656217, -0.0199840833, -0.0295338668, -0.0425167717, -0.00380417192, -0.0167458523, -0.0228325278, 0.0417971648, 0.0185298771, -0.014279699, -0.0206737053, 0.0017118773, -0.00507847546, -0.0126830712, -0.0355605744, 0.00584680587, -0.0167908277, -0.027464997, -0.053790614, 0.00572312344, 0.0152541669, 0.0248564221, 0.0122033339, -0.014062318, 0.0115961656, 0.00942235254, -0.0388287865, -0.00169501151, 0.00136706571, 0.0185598601, -0.016296098, 0.0173605159, 0.0289791692, -0.0136200599, 0.0289192013, 0.0213183537, 0.000506442098, -0.0221728869, 0.00393909821, -0.0199241154, -0.0265055206, -0.0156364571, 0.0224427395, -0.0330419503, 0.00553572597, -0.019564312, 0.0256959628, -0.0583181418, -0.000274303282, -0.00210260134, -0.0369398184, -0.0176903363, -0.0257409383, 0.0214382876, 0.0539405346, 0.0209285673, -0.0136200599, -0.0100744963, 0.015381597, 0.0140997972, 0.0485135, -0.0132227764, -0.0224727243, 0.0334317349, -0.0618262254, -0.00975217205, -0.0135451006, 0.00449754298, 0.00406652829, -0.00542703504, 0.0209885333, 0.0187697466, 0.031452816, -0.0173605159, -0.0142422197, 0.0167908277, 0.00749590527, 0.019594295, -0.00407027639, -0.0161911547, -0.0186198279, 0.0141072934, -0.0186947864, 0.0319325551, -0.0151792075, -0.0229824446, 0.038978707, -0.0302984491, -0.0206886977, -0.00673507061, -0.00208948343, 0.0438360535, 0.0107941031, -0.0276149139, -0.0361902304, -0.0299086608, 0.0454251841, -0.0120009445, -0.0445856452, 0.0506723188, 0.0521715, 0.00752963684, 0.0423968397, 0.00384914735, -0.0127955098, 0.00659639668, -0.0143921375, 0.00370485103, -0.000198290116, 0.0193994027, 0.010411812, -0.0634453371, 0.0273750462, 0.038468983, 0.0243916754, -0.0168807786, -0.030763194, -0.0128704691, 0.0286943242, -0.0174804498, -0.0109815011, -0.00799813, 0.00735348277, -0.0114087677, -0.00473366398, 0.00772078242, 0.00105973356, 0.0322024077, 0.0575685501, -0.00699742744, 0.0495029576, -0.0764582306, -0.0146170147, -0.0174054913, 0.0133577026, 0.00220379606, 0.025291184, -0.0204188451, -0.0216331817, -0.00179433229, -0.00381166767, -0.0454251841, -0.0181850661, 0.0102993734, 0.0346310809, -0.0267903656, -0.0196092874, -0.0105917137, 0.0376594253, -0.0404778868, 0.00126774493, -0.00429890165, 0.0354406387, 0.00815554429, 0.0436861366, 0.00901757367, 0.0236420855, 0.0537006631, -0.0110189803, 0.0109365257, -0.00260107894, -0.00880768802, 0.0208086316, -0.0060304557, -0.0100744963, 0.0148269, 0.0152466707, 0.0361602455, -0.016610926, -0.0222928226, 0.0215882063, -0.00621035742, 0.0233722329, -0.000953853945, 0.0102993734, -0.00497728074, 0.00820052, -0.000603888824, -0.00982713141, 0.0072447923, -0.0296388082, 0.0280196927, -0.0334017538, 0.0059704883, 0.0198341645, 0.0194893535, 0.00741719827, -0.00502975238, -0.0136575392, -0.0103443488, 0.0349908844, 0.00343125057, -0.00610166695, 0.0578084216, 0.0140848057, 0.0409276411, 0.0168058183, 0.0322923586, -0.0151117444, -0.00901757367, 0.0349908844, 0.0583481267, 0.0482436456, 0.0181250982, -0.0209435578, -0.0335816555, -0.00858281087, 0.0340913758, 0.00716233719, -0.00701616704, 0.0195043441, -0.0739995763, 0.00751464488, 0.0288892183, 0.0161911547, 0.0311829653, -0.0178402532, 0.00311642257, -0.00924994703, -0.0206137393, -0.0325322263, 0.000877489394, -0.0240018889, 0.0114612393, 0.00292152911, -0.0187697466, -0.00741719827, 0.0124207148, -0.0343312435, 0.0219330192, 0.0394884273, 0.00619536545, 0.00510471128, -0.00963223819, -0.0149618266, -0.0135675883, 0.0373296067, 0.0229824446, 0.0126605835, -0.0241518058, 0.00460623344, 0.00811806507, -0.00954978261, 0.0371796899, -0.0135825798, -0.00183087483, 0.0180501398, -0.0739995763, 0.00236495794, -0.00736472663, 0.00478238752, 0.00104286778, 0.0145870317, -0.00326821464, -0.0444657095, -0.00930991396, 0.0153666055, 0.0560094044, -0.0233272575, -0.0232672896, -0.0184399262, -0.00629281253, 0.0134776374, -0.000593582, 0.0318426043, 0.0141522689, 0.0114387516, 0.0404479019, -0.0110714519, -0.0343012623, 0.0156214666, -0.0228924938, -0.0450354, -0.0150817614, 0.00164816214, -0.00824549515, -0.0513919257, 0.0102244141, 0.00011987592, 0.0356505252, -0.00631904788, -0.027180152, 0.0047599, 0.0170756709, -0.0261307247, 0.00499602081, 0.00871024188, -0.0397282951, -0.0305982847, 0.0290241446, 0.0106741684, 0.0530710071, 0.012330764, 0.00648770574, 0.00116936117, -0.0113113206, -0.0303284321, 0.00733474316, -0.00163598126, -0.0257709213, -0.00622534938, 0.027839791, 0.0360403098, -0.0200290587, 0.0135975722, 0.0103068696, 0.0264455527, -0.000500351656, 0.0125931203, 0.0343312435, -0.0108390786, -0.00405528443, 0.0188746881, 0.0202839188, -0.00672757486, 0.0364900641, -0.0118885059, 0.026580479, -0.00551698636, -0.00987960305, -0.000939799123, -0.0140098464, -0.0535207614, -0.00489857374, -0.0121583585, 0.0305233262, 0.00463996502, 0.020223951, -0.0232672896, -0.000815648178, -0.0174804498, 0.00189552701, -0.0313628651, 0.0125106657, -0.0158913191, -0.0196992382, -0.00112625968, -0.00963973347, -0.0225626752, 0.0122782923, 0.0240768474, -0.0345111452, 0.0118510257, 0.0168657862, -0.0115886694, 0.0308831297, -0.0272701029, -0.00856781937, 0.0271051936, 0.0151417283, 0.00398407364, 0.0224277489, -0.0104942666, -0.0266854223, -0.0271051936, -0.00427641394, -0.00819302443, -0.0137399938, 0.00121995853, -0.00155821128, 0.00525088143, -0.013117834, -0.00712485798, -0.000700867153, 0.0349609, -0.0125181619, -0.00620660931, 0.0178102702, -0.00653642928, -0.0231173709, -0.0385889187, 0.00703115901, 0.00403654482, 0.0150442813, 0.0105167544, -0.0441958569, 0.0155165233, 0.00531834457, 0.0292939972, -0.00143265491, 0.00192644761, -0.0177952778, 0.0133876866, -0.0113338083, 0.0207486656, -0.0144521054, -0.00234247022, 0.00713984948, 0.0189646389, 0.00558444951, 0.00278660282, -0.0218580589, 0.0256659798, 0.0296238177, 0.000671351969, 0.00333005586, 0.0191595331, 0.00768330274, -0.0164160319, -0.0240768474, -0.00335254357, 0.0201040171, -0.0317226686, -0.0203738697, 0.00192269962, -0.0241967812, -0.0213783216, 0.00730850734, -0.0362501964, -0.0355605744, -0.00345561234, -0.000163855802, -0.0438360535, 0.0246615279, 0.0161761623, -0.00668634754, 0.00598173216, 0.00850785244, -0.00414148765, 0.0502225645, -0.0160262454, -0.0109815011, 0.00519466214, 0.0228475183, 0.0369997881, -0.0154115809, -0.0133502074, -0.0208086316, 0.0592476353, 0.03397144, 0.00491731381, -0.0375994593, -0.00196205312, -0.0402380191, 0.0104492912, 0.0175704, 1.61410844e-06, 0.0123832356, 0.0137774739, 0.00597798452, 0.00737222284, -0.00447130715, -0.00105130067, 0.0256809704, -0.000490981794, 0.00819302443, -0.0246615279, 0.0118660182, 0.00641274685, -0.0267154053, 3.50492119e-05, -0.0396383442, 0.014377146, 0.0359203778, 0.0100744963, 0.0546001717, -0.0316627026, -0.00690747658, 0.0297887269, 0.00537081575, -0.00452003069, 0.0127280466, -0.0439260043, -0.00455001416, -0.0310330465, -0.0196092874, 0.00362239615, 0.0148119088, 0.0078707, 0.00544952322, 0.0243766829, -0.00476364745, 0.00784071628, 0.0219030343, 0.00226001535, -0.0540304855, 0.0302834567, -0.0063415356, -0.00691122469, -0.0370597541, 0.0145270638, 0.0295638498, -0.00636777142, -0.0258458816, -0.0273900367, -0.0054232874, -0.0035849167, 0.00721106073, 0.0159962606, 0.01987914, 0.0547201075, 0.0164010394, 0.0210784841, 0.0120534152, 0.0109889973, -0.00608667498, 0.00769079849, -0.0286793336, -0.0301035549, -0.00597798452, -0.0365500338, 0.0247214958, -0.00240993337, -0.0171656217, -0.000665261585, -0.0140848057, -0.015224183, 0.00052049692, -0.0136050675, -0.00463996502, 0.0221129209, -0.00631904788, -0.0134476535, -0.00269477791, -0.0179901719, -0.00382291153, 0.0303284321, -0.0206737053, 0.00517967, -0.00322136516, -0.00215694658, 0.0297587439, 0.00873273, -0.00132677518, -0.00877770502, 0.0311829653, 0.0310030635, 0.00137737254, 5.43160313e-05, -0.0240018889, -0.0290241446, -0.00313891028, 0.0101719433, -0.00971469283, -0.0121508623, 0.0113937762, -0.0123082763, 0.0381091796, 0.00543453125, -0.0114012714, 0.0123457555, 0.016925754, -0.00659639668, -0.0030527073, 0.0389187373, -0.0108915502, 0.0264305621, 0.00768330274, 0.0203738697, -0.0371796899, 0.0111464113, -0.0135975722, -0.0276748817, 0.00322136516, -0.00339939306, 0.0084403893, -0.0301935058, 0.0164010394, 0.0186048355, -0.00710237026, -0.00232185656, 0.0165059827, -0.014594527, -0.0141672604, 0.0255610365, 0.00307332119, 0.0284244716, 0.0152616631, -0.00321386941, 0.0409276411, 0.0130878501, -0.011168899, -0.0168358032, 0.00937737711, -0.0357104912, -0.0455451198, 0.0257709213, 0.0172855575, -0.00706114247, 0.0041527315, 0.0171956066, -0.0488133356, 0.0350508504, -0.0336416215, -0.0342113115, 0.000751932967, -0.00642773882, -0.00410026, -0.00468494045, 0.0344811641, 0.039038673, 0.00804310571, 0.0103368526, -0.0046811928, 0.0043063974, -0.00711736176, 0.0106816646, 0.00593300909, 0.0267303977, 0.000636683428, -0.0142647075, 0.016011253, 0.00648021, 0.0125706326, 0.016041236, 0.0111089312, 0.0127505343, 0.0218130834, 0.0185148846, -0.00908503681, -0.0443457738, -0.0165659506, 0.0202989113, 0.00575685501, 0.0238369778, 0.0249313805, -0.0525013208, -0.00940736104, 0.00851534773, 0.0150592737, -0.00799813, 0.00528836111, 0.00558819715, -0.00880019274, 0.0253661424, 0.0119709605, 0.0290541276, 0.0264605451, -0.00355118513, 0.0256659798, -0.0438960195, 0.0161311869, 0.00111033092, 0.025606012, 0.00956477504, -0.00151417288, 0.0150217935, 0.0217531156, -0.00564066879, 0.000572968216, -0.00419021072, -0.00579058658, 0.00252237194, -0.00413773954, 0.00162661145, -0.0286043733, 0.00487608602, 0.00121058861, -0.0344811641, 0.00814055279, 0.0136950184, 0.0311529823, -0.014751941, 0.00591801712, -0.00601171609, 0.00538205961, 0.0277348496, 0.0118060503, -0.0200140662, 0.00437011244, 0.0403279699, 0.0156814326, -0.0192195009, -0.0328620486, 0.0136275552, -0.0435062312, -0.0267154053, 0.0118510257, -0.0393684916, -0.00446755951, 0.02202297, 0.0645247474, -0.00128086272, 0.0228775032, -0.0227575675, -0.00781822857, 0.00306582521, -0.000169126361, -0.026205685, -0.0376294442, 0.0279897097, -0.054360304, 0.0157414, 0.00589927752, -0.0287393, -0.00793066714, -0.00341438479, 0.00576809887, -0.00521715, -0.0121058868, 0.0387688205, -0.0140997972, -0.0212433953, -0.0369997881, 0.0366399847, 0.0340613909, 0.0182300415, 0.00342562865, -0.0152691584, 0.00818552822, -0.00705364672, 0.0102094226, -0.0105617298, -0.0132452641, 0.00873273, 0.0250363238, 0.0201489925, 0.012015936, 0.0209135748, -0.000827360549, 0.00817053672, 0.0196542628, -0.0177802872, -0.00283345208, -0.0509721562, 0.0153666055, 0.00617662584, -0.00218693027, 0.0252761915, -0.037149705, -0.0127355428, -0.000357226731, 0.00537831197, 0.0177952778, -0.000399391196, 0.00681752572, 0.00317264185, -0.0506723188, 0.0185148846, -0.0134476535, 0.0117610749, -0.0325622112, -0.0103818281, -0.0518116951, -0.048033759, 0.0356205404, 0.00265355036, 0.00631530024, 0.0216181893, 0.0154415648, 0.00650269771, 0.0139273917, -0.0024549088, -0.0396083631, -0.0199540984, 0.00293089892, 0.0147294533, 0.00348184793, -0.0133202234, 0.00545327086, 0.03196254, -0.0122033339, -0.0253511518, -0.0504624322, 0.00439634826, -0.00203888607, 0.00953479111, -0.00332443393, -0.0229524616, 0.0346010961, 0.0231023803, -0.0090625491, -0.0095123034, 0.0112963291, -0.0276598893, 0.0100145293, -0.0121808462, 0.00850035623, -0.00240056356, -0.0188896805, -0.012270797, 0.0145720392, 0.0394584425, -0.00310705276, -0.0157563929, -0.0263556018, -0.026580479, -0.00858281087, -0.0108015994, 0.0341813266, -0.0325022452, 0.0249313805, 0.00877020881, 0.0114012714, -0.00798313878, 0.02202297, 0.0300285965, -0.00605669152, -0.00941485632, -0.0327720977, 0.0316926874, 0.0158613343, 0.00900258217, -0.0105467383, -0.00672007911, 0.0360702947, -0.0180201549, 0.00102600199, 0.00842539687, -0.017900221, 0.00924245082, -0.00826048758, -0.00706489058, -0.00137362466, 0.0286343582, 0.0236870609, 0.0308531448, -0.0126755759, -0.00231248676, 0.0234471913, -0.0111763943, -0.00303584151, -0.015666442, -0.0438660383, -0.0110939397, 0.00713984948, 0.0167908277, -0.0145120723, 0.00918997917, 0.00294401683, -0.026520513, -0.015381597, 0.00549824629, -0.00995456148, -0.0103668366, -0.0228924938, 0.0171656217, -0.014879372, 0.00718482491, 0.0057343673, -0.00617662584, 0.013904904, -0.0100295208, 0.000595455931, 0.00348559581, 0.0255310535, -0.00409276411, -0.0291440785, 0.0189046729, -0.00471492438, -0.0361902304, 0.0210185181, -0.0120908953, 0.00131272036, 0.00285593979, 0.0241817906, 0.00292715104, -0.0191295501, -0.0103668366, -0.0324422754, 0.00230499078, 0.0372396559, -0.0299086608, -0.00534832804, 0.0146020232, 0.0124132186, -0.0215882063, -0.0224277489, 0.02145328, 0.0153141338, 0.00180557615, -0.0161461793, 0.00877770502, -0.0171056557, 0.00360553036, -0.0360702947, -0.0192644764, 0.0196242798, -0.000996955321, -0.0353207029, -0.00306769926, -0.00659639668, 0.0117910588, 0.0837142691, -0.0287842751, -0.0276448987, -0.00925744232, 0.00301335379, 0.030418383, 0.0231773388, -0.0313029, 0.0275099725, 0.00366549753, 0.0406877734, -0.00303021958, -0.0115062147, -0.0323823094, 0.00240805955, 0.00825299136, 0.00855282787, -0.0131778009, 0.0219630022, -0.00139236439, -0.0154715478, 0.000425392616, 0.00616163388, -0.00642399071, 0.0190695822, 0.00343125057, -0.0269852579, -0.0164610073, -0.0349309184, 0.000407589832, -0.00562192872, -0.00556570943, 0.038409017, -0.00924994703, -0.00399156939, 0.025950823, 0.0165359657, -0.00948981568, -0.0258308891, 0.0229824446, 0.00576060312, -0.00303584151, -0.0250663068, -0.00608292688, -0.0287093166, -0.00766456313, -0.0144820884, 0.0114612393, -0.00858281087, 0.00333193, 0.00172031019, 0.00308831292, 0.0059554968, 0.00456875423, -0.0113862799, 0.0164010394, 0.00108034734, -0.00279784668, 0.0161911547, -0.000414383016, -0.012803006, -0.00550574251, 0.00892762281, -0.0280196927, -0.00630780403, 0.021423297, -0.0122483093, -0.00568189612, 0.0323523246, 0.00452752644, -0.0356805064, 0.0240468644, -0.0131478179, 0.0124432025, -0.02749498, -0.0245715771, -0.0200890247, 0.00318575976, 0.000129655731, 0.00478613516, 0.0091525, 0.0105767222, 0.00616538199, 0.0309131127, -0.0204038527, -0.00584305823, -0.00936988089, 0.0143996337, 0.0108015994, -0.0274050292, -0.00570813194, 0.00341813266, 0.00392410625, -0.0138524324, -0.00643148646, 0.00747341756, 0.0215732139, 0.00147669332, -0.0275099725, -0.0233122651, 0.0240618549, 0.022712592, -0.00472242, -0.0131028425, 0.0219330192, -0.00737597048, 0.00221129204, 0.00132209028, 0.00618412159, 0.00575310737, 0.0277648326, -0.0025729693, 0.0228924938, 0.0186797958, 0.0119334813, -0.0167608429, 0.00545327086, 0.0195193365, 0.00319512957, 0.014594527, -0.0383190662, -0.00297400029, -0.00442633172, -0.0224877149, -0.0195493195, -0.0303584151, 0.0234172083, 0.0184549186, 0.0176003855, 0.00999953691, -0.0188596975, 0.0142946914, -0.00793816335, -0.0063415356, 0.00375732244, -0.0163410734, 0.00978965219, 0.0190695822, 0.017900221, 0.0188746881, 0.00619911356, -0.00172405818, 0.0147969164, 0.00192457368, -0.0421269871, 0.0196692552, 0.0071660853, -0.00243242108, 0.00561818108, 0.0078707, 0.00851534773, -0.00465495698, 0.00820052, 0.00153384963, 0.0311829653, -0.0141147897, -0.0139348879, 0.00885266345, 0.0293089896, -0.00413399143, 0.0388587713, 0.00157788803, 0.00616538199, 0.0183799583, 0.00856032316, -0.0162511226, -0.00865027402, -0.00543827889, -0.0064052511, 0.00317826378, 0.0101344632, 0.0103968205, -0.00855282787, 0.00362989213, 0.0124357063, 0.0240018889, 0.0059704883, 0.000452331034, 0.00761209149, 0.00826048758, -0.00255048159, -0.0144446092, -0.00588053744, 0.0196242798, 0.022712592, 0.0120384237, -0.00996955391, -0.00578683894, 0.00556945754, 0.0294738989, 0.0153366216, 0.0208086316, 0.0132527603, 0.00898009446, 0.0397282951, -0.0167308599, 0.00722230459, 0.00118716399, -0.0161461793, -0.0200590417, -0.0378693119, -0.016356064, 0.0163710564, 0.00374420453, -0.00819302443, 0.00725603616, -0.0266404469, -0.0168657862, -0.00456125801, 0.00174092397, -0.00434762472, 0.00196392718, 0.0102843819, 0.0177503023, 0.0104792751, 0.000687280786, 0.00997704919, -0.0182000566, 0.0180351473, 0.0369997881, -0.0016247374, -0.0195043441, -0.00239681569, -0.0137849692, -0.00926493853, -0.0453652181, 0.0115886694, 0.00458374573, 0.0202089604, 0.0251112822, -0.0137025146, 0.036460083, 0.02145328, -0.0220379606, 0.00445631566, -0.0112513537, 0.0312729143, -0.0298037194, -0.0239569135, 0.00742844213, 0.0421569683, 0.0110789482, 0.00170719239, 0.0064839581, 0.00396533357, -0.000215741515, -0.000923401793, 0.026520513, -0.00520215789, -0.00820801593, 0.00429140544, -0.00838791765, -0.0294888914, -0.0225626752, 0.00788569171, -0.00321949134, -0.0117835626, 0.0424268208, 0.0266554393, -0.0188447051, 0.00538955582, -0.00674631447, 0.0277498402, -0.0190695822, -0.00213820697, -0.00304895942, -0.0118960012, -0.00776575785, 0.00129960256, -0.00593675673, -0.0380792, 0.0262506604, -0.0291890539, 0.0323523246, 0.0208386164, 0.0224277489, 0.00440384401, -0.00190021191, -0.0481836796, 0.00627782056, -0.0260107908, 0.0232972726, -0.00796065107, -0.0361602455, 0.0111614028, -0.00635652756, -0.0193844102, 0.0325622112, 0.0230424125, -0.00247927057, -0.0176603515, -0.0132377688, 0.0155914826, -0.0168507937, 0.000215390144, 0.0242567491, 0.00821551215, 0.000554228493, -0.00348184793, 0.00651019346, -0.0111763943, -0.0128929568, 0.00457250187, 0.0178702381, 0.00987210684, -0.0165359657, -0.0128329899, 0.00614664238, -0.00774327, -0.0353207029, 0.0253511518, -0.0090775406, -0.0131927934, 0.00681377761, -0.00961724576, -0.00739471056, 0.00397657743, -0.0346310809, -0.00729351584, -0.0107791116, -0.0261457171, 0.0177053269, 0.0121658538, -0.00756336842, -0.0170456879, 0.000513469509, -0.0011093939, 0.00155352638, -0.0154415648, -0.0271051936, 0.0180801228, -0.00611291081, 0.00341813266, 0.027779825, -0.0308531448, 0.0368198864, -0.0258608721, 0.0171656217, 0.0166559014, -0.0197142307, -0.0282895453, 0.013432662, -0.0244816262, 0.027180152, -0.0130803548, -0.0471342504, 0.0152541669, 0.0228475183, -0.00442258408, 0.0143246744, -0.0271201842, -0.00424643, 0.00493605342, -0.0137849692, -0.00222628377, 0.0155764911, 0.0214982554, 0.021423297, -0.00689623272, 0.0168058183, -0.0177203193, 0.00598548027, 0.00354743702, 0.0264155697, -0.00155727426, 0.00582057051, -0.00275661913, 0.0246315449, 0.013275248, 0.0303434245, 0.0104193082, -0.00776575785, -0.000475989975, 0.022397764, -0.00621035742, 0.00410400797, -0.00806559343, 0.0031707678, -0.00236870605, -0.00252799387, -0.0140173426, -0.0204638205, 0.00113937759, 0.00696369587, -0.0130578671, 0.0281995945, 0.0154115809, 0.00369360717, -0.00293089892, -0.0161761623, 0.0312429331, 0.0451853164, 0.0166559014, 0.000418130949, -0.00571187958, 0.00280346861, -0.0164010394, -0.00226001535, -0.0140698142, -0.0069337124, -0.00284094806, -0.0256659798, -0.0214083046, 0.00624408899, 0.00429515354, -0.022397764, -0.0172105972, -0.0153216301, 0.0242567491, -0.0360103287, -0.0113488007, 0.0090475576, 0.0196542628, -0.00705739483, -0.0335216857, 0.0101344632, 0.0203738697, -0.0137250023, 0.0294888914, 0.0176003855, 0.00833544601, -0.0259358324, -0.0263406113, -0.00901757367, -0.0207636561, -0.00450503873, 0.00284469593, 0.0029477647, -0.00111501582, 0.00543453125, -0.0262956358, 0.0129079483, 0.0277348496, 0.00822300743, -0.00963223819, -0.0317526534, 0.00989459455, -0.00483860681, 0.00445256755, -0.00346123427, 0.00115530635, 0.00627032481, -0.0352907218, -0.0323223434, 0.00891263131, -0.0186498109, 0.0145045761, 0.0151867038, -0.00629281253, 0.00634528371, 0.00705739483, 0.00225626747, -0.0134401582, -0.012645592, -0.00112344872, 0.00198079296, 0.00745093, -0.00174560887, -0.0149693228, -0.0283045378, 0.00775076589, -0.0264455527, 0.00670883525, -0.0104717789, 0.0070274109, 0.0186498109, 0.00917498767, -0.00443382794, -0.0067762984, 0.0106891608, 0.007833221, -0.00464371312, 0.0182900075, -0.0163710564, 0.0129304361, 0.00198266678, 0.0167608429, 0.00582806626, 0.00405903254, 0.00561443297, 0.00688124076, 0.0107716154, 0.0189796314, 0.0378992967, 0.00901757367, 0.0621260628, 0.0178552456, 0.0237320364, -0.00799813, -0.0135825798, -0.00186366937, -0.00698243547, -0.00361490017, -0.014594527, -0.0117160995, 0.00856032316, -0.0112288659, -0.0064052511, -0.00015460304, 0.0276149139, 0.00315952394, -0.00987960305, -0.0092049716, 0.00360178249, 0.0144521054, 0.0211984199, -0.0138149532, 0.0136050675, 0.00596674066, 0.0176453609, -0.0129229408, -0.0091525, 0.00471492438, -0.00234996621, 0.00486109452, 0.00253548985, -0.00440384401, 0.00548325479, 0.00441883598, 0.021483263, 0.00386413909, -0.00620286167, -0.00238931971, -0.00612415466, -0.00359241245, -0.000905130524, 0.0151717123, -0.00381166767, -0.00578683894, 0.00982713141, -0.0135451006, 0.00853783544, -0.00872523338, -0.003931602, -0.00262356666, -0.0173455235, -0.0194143932, -0.00770579046, 0.00942235254, -0.011011485, -0.0232972726, 0.0195493195, -0.0171056557, -0.00650644582, 0.0146095194, -0.0267303977, 0.00667510368, -0.0134251658, -0.0222178623, -0.0213183537, -0.000307566341, -0.0174354743, 0.0261457171, -0.00449004723, 0.030448366, 0.00514968671, -0.00601546373, -0.00045584474, 0.0126380958, 0.0131703056, 0.0090775406, 0.0130128916, -0.0207786486, -0.00108128425, 0.0151042491, 0.00607168302, -0.00560318911, -0.0224427395, -0.00261607091, -0.0192494839, -0.00856781937, -0.00972968433, 0.00327758444, 0.0167608429, 0.00246802671, -0.0177203193, 0.0132452641, -0.00301335379, 0.000965097803, 0.021138452, 0.0140923019, -0.0041527315, -0.00362239615, -0.0127955098, 0.0111164274, -0.00146919745, 0.0273300707, 0.00660014432, -0.0259957984, 0.00286530983, 0.0121883415, -0.00135582185, -0.00290091522, 0.00354181509, 0.00823050365, 0.00417896686, 0.00627032481, 0.0156214666, -0.0198941324, -0.00916749146, -0.00797564257, -0.0143696498, 0.00892762281, 0.00360365631, -0.0299836211, -0.0241667982, 0.00482736295, 0.00868025795, -0.0239119381, -0.0091525, 0.00168001978, 0.0109964926, -0.00695245201, -0.00228812499, -0.0209285673, 0.00505224, 0.00518716639, -0.000177910624, 0.00329632428, 0.0193544272, -0.00966222119, -0.00446755951, 0.00966222119, 0.00398782128, 0.014564544, 0.0200440492, 0.0104792751, -0.0275099725, -0.00323823094, -0.00689248461, 0.0233272575, -0.0283794962, -0.00239494164, 0.008020618, -0.0144146252, 0.00737597048, -0.0249313805, 0.000616069708, -0.00596299255, 0.00126024906, -0.0173605159, 0.000301007443, 0.000757554895, -0.0162511226, 0.00237807585, 0.005205906, -0.00234247022, -0.00429890165, 0.0155315157, -0.0102693895, 0.0173455235, -0.0228475183, 0.00912251603, 0.0127880145, 0.00630780403, -0.00552823, -0.0108765578, 0.00135301088, -0.0116786202, -0.0222478472, -0.0057343673, 0.0331918672, -0.0123532517, 0.0136800269, -0.016011253, -0.00455751037, 0.0139273917, 0.0247964542, -0.0228475183, -0.00907004531, -0.0024942623, 0.0160562284, -0.00868775416, -0.0020744917, 0.000732724729, 0.00547950668, 0.0152616631, -0.00540079968, -0.00125556404, -0.00543453125, 0.010884054, 0.0122333169, -0.0143171791, -0.026865324, 0.00106254453, 0.0104492912, -0.0105842175, -0.00840290915, -0.00156851811, -0.00948231947, 0.0193094518, 0.0153141338, 0.0188896805, 0.0149543304, 0.00521340175, -0.0447355621, -0.0183949508, 0.0166559014, 0.00881518424, 0.00700492319, 0.0108240871, 0.00135207386, -0.0108915502, -0.00476364745, 0.0108165909, 0.00267978595, 0.0114687346, 0.0557995178, -0.0351108201, -0.00629656, 0.00395783782, -0.0117385872, -0.00667135557, -0.00221504, -0.00111314189, -0.007833221, 0.00547201093, -0.0138374409, 0.00792317186, 0.0203588773, 0.00186648034, 0.00432138937, -0.0122857885, -0.00862029102, -0.00796065107, 0.00201452454, -0.00228250306, -0.0217081401, -0.00930991396, -0.00462497352, -0.00998454541, 0.00975217205, 0.0175704, 0.0187697466, -2.25023559e-05, 0.013590076, 0.0102768857, -0.00150574, -0.00477489131, 0.00109533907, 0.019909123, 0.0316027366, 0.0129304361, -0.00745467748, -0.021138452, -0.0038866268, 0.00325884484, 0.000920590828, -0.0131028425, 0.0270302333, 0.00221504, 0.006637624, -0.0236121, 0.0218580589, 0.0120684076, -0.000789881, -0.0178402532, 0.00850035623, -0.004119, -0.00991708227, -0.00232747849, 0.00560318911, -0.00814055279, -0.00841040537, 0.0302084982, -0.0216031987, 0.00274350122, -0.000917311409, 0.016326081, -0.00715109333, -0.00404029293, -0.0123157725, -0.00359803438, -0.00815554429, 0.0265954714, 0.0321124569, -0.00244928687, -0.0117535796, -0.0125481449, 0.00420145458, -0.0197592061, -0.0277348496, -0.00607917923, 0.0117310919, 0.0229374692, 0.000472710526, 0.00716233719, 0.0139723672, 0.0477339253, 0.000173108565, -0.0109815011, 0.011955969, 0.0239419211, 0.00428390969, 0.0237320364, -0.00157695101, 0.0209885333, 0.00865777, -0.00152260577, -0.00129210658, -0.0138599286, 0.0184399262, -0.00245678285, -0.0273300707, 0.0084703723, -0.0243766829, 0.0155465072, 0.00443757558, 0.00539330347, -0.0182750169, -0.0197442137, 0.00929492246, 0.0142347235, -0.0207486656, 0.0154265724, 0.00851534773, 0.00183181185, -0.00266854209, 0.0043063974, -0.022652626, 0.00154790445, 0.000964160776, 0.0166259166, 0.00653268117, 0.0305083338, 0.00664137211, -0.0232373066, -0.0211534444, 0.0154865403, -0.0177053269, -0.00329070236, 0.000435231, -0.0137100108, -0.00856781937, -0.0116261486, 0.0134026781, -0.0116636287, -0.00141297816, -0.0129229408, 0.00416397536, -0.00690747658, 0.00933240168, 0.00140829314, 0.0024193034, 0.00585055398, 0.0187097788, 0.035950359, -0.0185598601, -0.0157114174, 0.0112738414, 0.00582431816, -0.0113113206, 0.00190489693, -0.000380651443, 0.0295038819, 0.0109515171, -0.00541579118, -0.0272701029, -0.0179601889, -0.00666011171, 0.0259358324, -0.0189646389, 0.0055019944, 0.0202389434, -0.00471492438, -0.0178102702, -0.0167158674, -0.00525837718, -0.00963223819, 0.0080056265, -0.000263293652, -0.00571562769, 0.0159063097, -0.00987210684, 0.00295900856, 0.0106966561, 0.000943078543, -0.0146619901, 0.00510096317, -0.0081630405, 0.0308231618, 0.027180152, 0.00985711534, 0.0213783216, -0.0174804498, -0.00930991396, -0.0185148846, -0.00217756047, 0.0115062147, -0.00335629145, -0.0130278831, -0.0147369495, -0.00455001416, -0.00743219, -0.0125931203, -0.00841040537, -0.000980089535, 0.0314828, -0.00860529859, 0.0073834667, -0.00806559343, 0.00697493972, 0.0203139018, 0.00239119376, 0.00147294533, -0.00150574, 0.00863528252, -0.000368470588, 0.00913750846, 0.00527336914, -0.0251712501, 0.00544952322, -0.00892012659, 0.0216181893, -0.00993207376, 0.0128404852, -0.0154415648, 0.00485734642, 0.00386039121, 0.00412649568, 0.0208985824, -0.00643898267, -0.00201639836, -0.00639775489, -0.00349496584, -0.00292527699, -1.93693013e-05, 0.00533708418, 0.00913001224, 0.00707613444, -0.00127242983, 0.00948981568, -0.00217756047, 0.0034668562, 0.0153965894, 0.00829047058, -0.00883017574, -0.00917498767, -0.00719606876, -0.0133801904, -0.0242267661, 0.00431014551, -0.00355305895, 0.0147294533, -0.0020744917, -0.00820801593, 0.0181550812, -0.00361302635, -0.0241518058, 0.00070274109, 0.0103218611, -0.0158913191, 0.0145195685, -0.000142187942, -0.00487233838, -0.00680253375, -0.0238219872, 0.0102618942, 0.000552823, 0.0121358708, -0.0019433134, 0.00518716639, -0.012428211, -0.00574186351, 0.0100894878, -0.0125856251, -0.0153441178, 0.0132227764, -0.032712128, 0.0193544272, 0.0109215342, 0.0130428746, 0.00849286, 0.008178032, -0.00298899226, -0.00278472877, 0.00632279599, -0.0264455527, 0.00428016158, -0.0102693895, -0.00647271425, 0.00730101159, 0.00567814801, 0.00700867129, -0.0170157049, -0.016296098, -0.00200140662, -0.0224877149, 0.000999766286, 0.0134701412, 0.00209510536, -0.0117910588, -0.0127055589, 0.00218693027, -0.0219030343, -0.00598173216, 0.0118885059, -0.0164460149, 0.0299986117, -0.0105617298, 0.0324422754, 0.0237920024, 0.00728227198, 0.0129229408, 0.0190995652, -0.00832045451, -0.00258796127, -0.00851534773, -0.0031707678, -0.0184849016, -0.00856032316, 0.0021963, 0.0149018597, 0.0285593979, 0.00385289523, -0.0160562284, -0.0122408131, -0.00745093, 0.00163504435, 0.00794566, -0.00790817942, 0.020508796, 0.00659639668, 0.00434762472, -0.00591426902, -0.0183499753, 0.000309908821, 0.0216481742, 0.0284544565, -0.000986648491, -0.00639400724, -0.00647646189, 0.0236270931, -0.00285781384, 0.0222028717, 0.0134926289, 0.00158913189, 0.0107491277, -0.0149168512, 0.0111838905, -0.00488733, -0.00161255663, -0.0184549186, 0.0127055589, -0.00956477504, 0.0144221215, -0.0137399938, -0.0114162639, 0.00960975047, -0.0369098373, 0.00513844285, 0.0108915502, -0.00806559343, -0.00623659324, -0.0241068304, 0.00110845699, -0.0108990464, 0.0101419594, -0.008238, -0.000814242696, -0.0138824163, -0.00710237026, -0.0235371422, -0.0041489834, 0.00720731262, -0.0143921375, -0.00167064986, -0.0198041815, -0.0089051351, 0.0330719315, 0.0225776657, 0.0273900367, -0.00587679, 0.011483727, -0.00445631566, -0.00667135557, -0.0385889187, 0.0177203193, 0.00786320399, -0.00504849199, -0.000958538847, 0.0100070331, 0.0104492912, -0.0127730221, -0.0282745548, -0.0193244424, 0.0125481449, -0.0130428746, 0.0084703723, 0.0231623463, 0.0119259851, -0.00680253375, 0.00992457848, -0.0219630022, -0.000958538847, -0.00684001343, 0.00818552822, 0.0114162639, 0.00895760674, -0.0296837837, -0.0158463437, -0.0049922727, -0.00575685501, 0.00191239279, -0.011955969, 0.00443382794, -0.00180745008, 0.00331131602, 0.00108128425, -0.00721480884, 0.0256659798, 0.0168208107, 0.00184867764, -0.0129154446, -0.0179751795, 0.03139285, -0.000894823694, -0.0134701412, 0.00459873769, 0.00208011363, -0.0149693228, -0.0173155405, 0.0140173426, 0.000118119067, 0.00199203682, 0.00291403313, -0.0187547542, -0.00133895606, -0.00839541387, 0.0300136041, -0.0356205404, -0.00365425367, 0.00850035623, 0.00588053744, -0.0147819249, -0.0133427111, 0.0038566431, -0.017270565, -0.019534329, 0.00784071628, -0.0221129209, -0.00392785436, -0.00452752644, 0.020134, 0.0351408, -0.00622160127, -0.0173155405, -0.00875521731, -0.013117834, -0.0156064741, 0.00286156172, -0.00122558046, -0.00737597048, -0.0142047405, 0.0190995652, -0.00186835439, 0.00155352638, -0.0121058868, -0.00230873865, 0.00203888607, -0.0143696498, 0.00244741305, -0.0102469018, 0.0086127948, -0.0212433953, 0.0107941031, 0.0158163588, -0.00945983175, -0.0184099432, -1.43256702e-05, -0.00328133255, -0.000394706265, 0.0228475183, 0.00025392379, 0.0184549186, -0.0138749201, 0.016610926, -0.0105917137, -0.014594527, -0.012270797, 0.0129079483, 0.0126755759, -0.00556570943, -0.0115661817, 0.0131553132, 0.0216181893, -0.00156477024, -0.00298337033, -0.0133951828, -0.00568939187, -0.0061091627, 0.00780323707, -0.0223527886, -0.0112588499, -0.000816116692, -0.00249238848, 0.00772078242, 0.00420895079, -0.0130953463, -0.0104343, -0.0114012714, -0.00211009732, -0.0212134104, -0.0149768181, 0.00787819643, -0.00869524945, -0.0259808078, 0.011955969, 0.0095198, -0.0244816262, 0.000606231333, 0.00250738021, 0.0219480097, 0.0357404761, 0.00356992474, 0.00293652085, -0.0111913867, 0.0148269, 0.00223377976, 0.0161161963, 0.000758491922, 0.0027509972, 0.0155315157, -0.00304146344, -0.00136612868, 0.00136706571, -0.00245865691, -0.00393535, -0.0070124194, 0.0222478472, 0.000273132027, -0.00813305657, -0.00375544839, -0.0225177, 0.0253061764, 0.00913001224, 0.0127655268, -0.00722980034, 0.021768108, -0.0108015994, -4.3774915e-05, -0.00135394779, -0.00169126363, 0.0221429039, 0.00310892658, -0.0102394065, 0.0170007125, -0.0167158674, 0.0165659506, 0.000296088256, -0.0194293857, -0.0108690625, -0.0173605159, -0.00340126688, 0.0125856251, 0.0153666055, 0.00991708227, 0.00134832587, 0.00480487524, -0.0131927934, 0.00874772109, -0.00975966826, 0.00798313878, -0.0297737345, 0.00271539157, 0.00712860562, -0.0151492245, -0.0149318427, -0.00510845939, -0.0346310809, 0.000268447096, 0.00460998155, -0.0104417959, 0.00256172544, 0.0127955098, 0.016476, -0.00439634826, -0.00132864912, 0.00750340102, -0.0216931496, 0.00493230531, 0.0137549862, 0.0270302333, -0.0267453901, 0.00105598557, 0.0274799876, -0.0128329899, -0.0264005773, 0.020508796, -0.00115718029, 0.000822675589, 0.006716331, -0.0128479814, 0.00534458039, 0.0269852579, -0.00974467676, 0.0148643795, 0.017585393, -0.0226226412, 0.0213333461, 0.00681377761, 0.00129585457, -0.0167458523, 0.00835043844, 0.0202839188, -0.0115287025, 0.0167758353, 0.006558917, -0.00589552941, -0.00901757367, -0.00115530635, -0.0217831, -0.0120983906, 0.000845163304, -0.0253961273, -0.0344811641, 0.0162511226, -0.00187585026, -0.00720356498, -0.00550949, 0.002044508, 0.00756711606, -0.00709862215, 0.0202089604, -0.00600047223, -0.000698056188, -0.00235558813, 0.00767205888, -0.0234172083, -0.0131328255, -0.0126680797, -0.0144146252, -0.00276411511, -0.00205200398, -0.00022792237, -0.00619161781, 0.000486765348, 0.014849388, 0.033911474, 0.0110714519, -0.0180951152, 0.00276973704, 0.00541953929, -0.0141297812, -0.0122333169, -0.0203438867, 0.0155165233, 0.00325697078, 0.0135675883, -0.00067509996, -0.0106216976, -0.0153141338, -0.00411150372, -0.0196842458, -0.019564312, 0.0185448695, 0.008238, -0.0191445407, 0.00457625, -0.0126680797, 0.0106441854, 0.0154865403, 0.0145795355, -0.0225326903, -0.0165359657, -0.00281283841, -0.0119934482, -0.00363926194, 0.00395034207, 0.00100726227, 0.00666386, 0.00401405711, -0.0191145577, 0.00212508906, 0.0102244141, 0.0167608429, -0.0199690908, -0.00286718365, 0.00789318793, -0.0043063974, -0.00834294222, 0.020853607, -0.0225626752, -0.00699742744, -0.00771328621, 0.00380417192, 0.0162811056, 0.020163985, 0.00755212456, -0.0216181893, -0.0135600921, -0.020163985, 0.00939986482, 0.0134701412, -0.00162380049, 0.00175966369, -0.00731225545, -0.00811806507, -0.0115361977, 0.0141522689, 0.0100520086, 0.00302459765, -0.00930241775, -0.00797564257, 0.00782572478, 0.0200590417, -0.0283045378, 0.0231773388, 0.0170906633, -0.0261157341, -0.0222628377, 0.0126980636, -0.00933989789, -0.000922464824, 0.0131553132, -0.00716983341, -0.0203588773, 0.00492855767, -0.0188447051, 0.0036242702, -0.00537456386, -0.0168507937, -0.00280721649, 0.016041236, -0.00523214182, 0.00518341828, -0.0105392421, 0.0168058183, -0.0020051545, -0.00905505288, 0.00964723, -0.00402155286, 0.0134626459, 0.00957976654, -0.0224127565, 0.00748466142, 0.00651394157, 0.0382291153, -0.00309955678, 0.0254710857, 0.0210634936, -0.0127055589, 0.0111014359, -0.0064202426, 0.00915999617, 0.0256809704, -0.006558917, 0.00424643, -0.0169107616, -0.00152260577, -0.0190246068, -0.0176003855, -0.014437113, -0.00909253303, 0.00367111946, -0.00889763888, 0.00857531559, 0.00441883598, 0.0146469986, -0.00535582425, 0.0167008769, 0.000195244909, -0.0146844778, -0.00302459765, 0.00676505454, 0.00462497352, 0.0280047022, 0.00390536664, 0.00767580699, 0.00860529859, 0.0136350514, 0.0132527603, 0.0112888329, 0.0049135657, -0.00779574132, 0.0137624815, 0.0111089312, -0.0154865403, -0.00134738896, -0.0189796314, -0.00763832731, 0.0122033339, 0.00640150299, 0.0230124295, 0.0140248388, -0.0186048355, 0.00676880218, -0.00167252379, -0.000602951855, 0.0228325278, 0.0166858844, -0.015006802, 0.00914500374, 0.0157114174, 0.00947482418, -0.00664511975, -0.0280796606, -0.000413446018, -0.0147744287, -0.00237807585, 0.0128329899, 0.0134926289, 0.00120309275, 0.0113413045, 0.00546451472, 0.0223078132, 0.0110264765, 0.00703115901, 0.00827547908, -0.00590677327, -0.0161012039, 0.00853783544, 0.011828538, -0.0109140379, -0.0112513537, 0.0180351473, -0.0140473265, -0.00373670878, 0.000833919446, -0.016640909, -0.0217081401, 0.0165809412, 0.0286943242, 0.0119259851, -0.0140698142, -0.0049885246, -0.00339377113, -0.0154265724, 0.0132527603, 0.00226938515, 0.0164460149, -0.00454626651, 0.00293652085, 0.0173904989, 0.00237245392, -0.0125556411, -0.0296687931, -0.00013012423, 0.0252761915, 0.008238, -0.00389037468, -0.0234921668, -0.012458194, -0.0340314098, 0.00195455714, -0.00881518424, 0.0141222849, 0.000138322866, 0.0206437223, -0.00487983413, -0.00606418727, -0.00375544839, 0.00344062038, -0.00827547908, -0.020223951, 0.00160131278, 0.00578683894, -0.00969970133, -0.0240468644, -0.0174354743, -0.00511595514, 0.0155764911, 0.00904006138, 0.0167158674, 0.0223228056, -0.00258983509, 0.00637901528, 0.00525837718, 0.00244179112, 0.0218580589, 0.0197142307, 0.0110714519, -0.00415647915, -0.00884516817, -0.00563317258, -0.00189740094, -0.0127205513, -0.00355493301, -0.0181700736, -0.00603795145, -0.0226376336, 0.0221429039, -0.0049135657, -0.0155315157, 0.00828297529, 0.0229224786, -0.00820801593, 0.00081705366, 0.0349609, -0.0092049716, 0.00364488387, -0.0134776374, -0.00108503224, 0.00652143732, -0.00721480884, -0.00843289308, -0.000728508283, -0.0319325551, 0.0120009445, 0.0123682432, -0.00835043844, -0.00421269843, 0.0110339727, -0.0223228056, 0.00649145385, 0.00669384329, 0.0196392704, -0.0021138452, 0.00950480718, 0.000463106378, 0.00831295829, 0.00853783544, -0.00757461227, 0.00360178249, -0.0064989496, 0.016925754, 0.00957976654, 0.0115811732, 0.00532584032, -0.00308081694, -0.0152766546, 0.00141297816, -0.0057381154, 0.0150142983, -0.00862029102, -0.00872523338, -0.00376294437, 0.00580557855, 0.0043063974, -0.000949169, -0.00431389315, -0.00653268117, -0.00425392622, -0.00868775416, 0.0111913867, 0.00324385287, 0.000710705528, 0.0537006631, -0.0132602565, -0.0161911547, -0.0159962606, -0.00978215598, -0.00681752572, -0.0228325278, -0.0151267368, 0.0178552456, 0.00636027567, -0.00162754836, 0.00600796798, -0.0245415941, 0.00744343363, -0.0270602182, 0.00564816454, 0.027210135, -0.0113113206, -0.00458749384, -0.00552448211, 0.0192494839, -0.0158013683, -0.00207636575, 0.0106741684, -0.00529585686, -0.000537362706, 0.0137774739, 0.00106910348, 0.0139648709, -0.0180951152, -0.0085978033, 0.0183649678, -0.0174354743, -0.0266254544, -0.0108915502, -0.0252162255, 0.00559194526, -0.00216444256, -0.00397283, -0.0199990738, -0.0020744917, -0.0109065417, -0.00137268764, 0.0295488574, -0.000318575971, 0.00460623344, 0.00842539687, 0.00381916366, -0.0125331534, -0.000125322156, -0.00886765588, -0.00170719239, 0.00102600199, 6.78145152e-05, 0.000444366626, 0.0165059827, 0.000397282973, -0.0058130743, -0.00822300743, -0.020193968, -0.0227575675, -0.00595924444, -0.00760459574, -0.0311829653, -0.0146095194, 0.0167758353, -0.00847786851, 0.000698056188, -0.00509346742, 0.00908503681, 0.0184249338, -0.000293980032, 0.0124207148, -0.0071061179, -0.0176753439, -0.00805809814, 0.008020618, -0.0169407446, -0.00200140662, 0.0134701412, 0.0152916461, -0.00306957308, 0.00117779407, 0.00360178249, -0.0181250982, 0.00144577271, -0.0142422197, -0.00277348491, -0.0168807786, 0.0139873587, 0.00434762472, -0.0209135748, 0.0234471913, -0.00612415466, -0.017270565, 0.00649520196, -0.00839541387, 0.0068550054, 0.0224277489, -0.0226376336, 0.00615788624, 0.013117834, 0.0136200599, 0.00333005586, 0.0150442813, 0.00268728193, 0.00680628186, 0.00132864912, -0.0118510257, -0.00640899874, -0.0200590417, -0.0136050675, 0.0148718758, -0.00404404057, 0.00689998083, -0.0207636561, -0.0078707, -0.0141222849, -0.0139573757, -0.0126755759, 0.0105242506, -0.0110714519, 0.0039953175, 0.00640150299, -0.00956477504, -0.0105542345, -0.0376594253, 0.011641141, 0.0220679455, 0.00808808114, -0.0124956742, 0.00267978595, 0.00728601962, -0.0105392421, 0.0476739556, 0.0146095194, 0.00574186351, -0.0204488281, 0.0199391078, 0.0182000566, 0.0177952778, -0.00315202819, -0.0195493195, -0.028439464, 0.00898009446, -0.0167158674, -0.00201077643, 0.00310143083, 0.0120009445, 0.00021527303, 0.0159512851, -0.0120684076, 0.00159662776, -0.0220379606, 0.0121058868, -0.00794566, 0.0109740049, -0.0137175061, 0.00359241245, -0.00248676655, -0.00258233934, -0.0100445123, -0.0121658538, -0.0132452641, 0.0149843143, -0.00786320399, -0.0176003855, 0.00510471128, 0.00252612, 0.000694308197, 0.0176903363, 0.0334917046, 0.00204263418, -0.00797564257, -0.0257259458, 0.0116111571, 0.00347060408, -0.00404778868, -0.0160712209, -0.00944484, -0.00587304169, 0.000532209233, 0.00876271259, 0.0129304361, 0.00207636575, 0.0207786486, -0.00632279599, 0.00285219192, 0.00924994703, -0.00295900856, -0.0159662776, -0.0027997205, 0.00423518615, -0.00331131602, -0.00585055398, -0.0279747173, 0.00409276411, -0.00207636575, -0.00895760674, 0.0146844778, -0.0177652948, -0.0191145577, -0.00935488939, -0.0134476535, 0.000660576625, -0.00408526836, -0.01698572, -0.00734223891, -0.00633404, -0.0295788422, -0.0108390786, 0.00435512094, -0.00743219, -0.0167308599, -0.0106891608, 0.00351745356, -0.0080056265, 0.00745467748, 0.0171506312, -0.0329220146, 0.0325322263, -0.015006802, 0.00258421316, 0.0144221215, 0.0153366216, 0.00601921184, -0.0149543304, -0.00874022488, 0.000505505071, -0.0038566431, -0.013275248, 0.00901007745, 0.000460061186, -0.00297400029, 0.0116336448, 0.0215432309, 0.0131703056, 0.0109215342, -0.0116186533, -0.00583181437, 0.0384989679, -0.00155540032, -0.00395034207, 0.0290991031, 0.00746966945, 0.00260857493, -0.00022124633, 0.00989459455, 0.0442858078, -0.0265055206, -0.0138374409, 0.0164460149, 0.0102693895, 0.00645772228, 0.0143546583, -0.00543453125, -0.00733474316, -0.0105317468, -0.0043663648, -0.00311080064, 0.0117910588, 0.00160787161, 0.00950480718, -0.0306882355, -0.0132677518, -0.000226985372, 0.0160562284, 0.011828538, 0.0118060503, 0.00585804973, 0.00385289523, -0.00238369778, -0.000300304702, -0.00326634059, -0.00641649496, 0.0396083631, 0.00264605437, 0.0155165233, 0.00350433565, 0.0291890539, -0.0155614987, 0.0268503316, -0.00927993, 0.00484235445, -0.00349121774, 0.0109815011, -0.00559194526, 0.000732724729, 0.00826798286, -0.00145701657, -0.0113038253, 0.0198191721, -0.0102768857, 0.00583931, 0.0189346559, -0.00152073172, -0.00360927824, 0.0385289527, 0.00396533357, 0.0108240871, 0.0144446092, 0.0239868965, 0.00880019274, -0.00684750918, -0.0190545898, 0.00392035814, -0.0114987185, 0.00417521922, 0.00108222128, 0.00758960377, 0.0078482125, 0.00544577511, -0.00871024188, -0.0095272949, 0.0291140955, 0.0141147897, 0.00685125729, 0.00860529859, -0.0045237788, -0.0238069948, 0.00170906633, -0.00376294437, -0.00904006138, 0.00996955391, 0.01440713, -0.0190396, -0.0162061471, 0.00343312463, 0.0105842175, -0.00915999617, -0.00581682241, -0.00591801712, -0.0213183537, 0.0112513537, 0.0095198, -0.00448629912, -0.0131403217, 0.0163710564]
29 Oct, 2022
CLR Parser (with Examples) 29 Oct, 2022 LR parsers :It is an efficient bottom-up syntax analysis technique that can be used to parse large classes of context-free grammar is called LR(k) parsing. L stands for the left to right scanningR stands for rightmost  derivation in reversek stands for no. of input symbols of lookahead Advantages of LR parsing : It recognizes virtually  all programming language constructs for which CFG can be written It is able to detect syntactic errors It is an efficient non-backtracking shift reducing parsing method. Types of LR parsing methods : SLR CLR LALR CLR Parser :The CLR parser stands for canonical LR parser.It is a more powerful LR parser.It makes use of lookahead symbols. This method uses a large set of items called LR(1) items.The main difference between LR(0)  and LR(1) items is that, in LR(1) items, it is possible to carry more information in a state, which will rule out useless reduction states.This extra information is incorporated into the state by the lookahead symbol. The general syntax becomes  [A->∝.B, a ]where A->∝.B is the production and a is a terminal or right end marker $LR(1) items=LR(0) items + look ahead How to add lookahead with the production?CASE 1 – A->∝.BC, a Suppose this is the 0th production.Now, since ‘ . ‘ precedes B,so we have to write B’s productions as well. B->.D [1st production] Suppose this is B’s production. The look ahead of this production is given as we look at previous productions ie 0th production. Whatever is after B, we find FIRST(of that value) , that is the lookahead of 1st production.So,here in 0th production, after B, C is there. assume FIRST(C)=d, then 1st production become B->.D, d CASE 2 –Now if the 0th production was like this, A->∝.B, a Here, we can see there’s nothing after B. So the lookahead of 0th production will be the lookahead of 1st production. ie- B->.D, a CASE 3 –Assume a production A->a|b A->a,$ [0th production] A->b,$ [1st production] Here, the 1st production is a part of the previous production, so the lookahead will be the same as that of its previous production.These are the 2 rules of look ahead. Steps for constructing CLR parsing table : Writing augmented grammar LR(1) collection of items to be found Defining 2 functions: goto[list of terminals] and action[list of non-terminals] in the CLR parsing table EXAMPLE Construct a CLR parsing table for the given context-free grammar S-->AA A-->aA|b Solution :STEP 1 – Find augmented grammar The augmented grammar of the given grammar is:- S'-->.S ,$ [0th production] S-->.AA ,$ [1st production] A-->.aA ,a|b [2nd production] A-->.b ,a|b [3rd production] Let’s apply the rule of lookahead to the above productions The initial look ahead is always $ Now, the 1st production came into existence because of ‘ . ‘ Before ‘S’ in 0th production.There is nothing after ‘S’, so the lookahead of 0th production will be the lookahead of 1st production. ie:  S–>.AA ,$ Now, the 2nd production came into existence because of ‘ . ‘ Before ‘A’ in the 1st production.After ‘A’, there’s  ‘A’. So, FIRST(A) is a,bTherefore,the look ahead for the 2nd production becomes a|b. Now, the 3rd production is a part of the 2nd production.So, the look ahead will be the same. STEP 2 – Find LR(1) collection of itemsBelow is the figure showing the LR(1) collection of items. We will understand everything one by one. The terminals of this grammar are {a,b}The non-terminals of this grammar are {S,A} RULE- If any non-terminal has ‘ . ‘ preceding it, we have to write all its production and add ‘ . ‘ preceding each of its production. from each state to the next state, the ‘ . ‘ shifts to one place to the right. All the rules of lookahead apply here. In the figure, I0 consists of augmented grammar. Io goes to I1 when  ‘ . ‘ of 0th production is shifted towards the right of S(S’->S.). This state is the accept state . S is seen by the compiler. Since I1 is a part of the 0th production, the lookahead is the same ie $ Io goes to I2 when  ‘ . ‘ of 1st production is shifted towards right (S->A.A) . A is seen by the compiler. Since I2 is a part of the 1st production, the lookahead is the same i.e. $. I0 goes to I3 when  ‘ . ‘ of the 2nd production is shifted towards right (A->a.A) . a is seen by the compiler. Since I3 is a part of the 2nd production, the lookahead is the same ie a|b. I0 goes to I4 when  ‘ . ‘ of the 3rd production is shifted towards right (A->b.) . b is seen by the compiler. Since I4 is a part of the 3rd production, the lookahead is the same i.e. a | b. I2 goes to I5 when  ‘ . ‘ of 1st production is shifted towards right (S->AA.) . A is seen by the compiler. Since I5 is a part of the 1st production, the lookahead is the same i.e. $. I2 goes to I6 when  ‘ . ‘ of 2nd production is shifted towards the right (A->a.A) . A is seen by the compiler. Since I6 is a part of the 2nd production, the lookahead is the same i.e. $. I2 goes to I7 when  ‘ . ‘ of 3rd production is shifted towards right (A->b.) . A is seen by the compiler. Since I6 is a part of the 3rd production, the lookahead is the same i.e. $. I3 goes to I3 when  ‘ . ‘ of the 2nd production is shifted towards right (A->a.A) . a is seen by the compiler. Since I3 is a part of the 2nd production, the lookahead is the same i.e. a|b. I3 goes to I8 when  ‘ . ‘ of 2nd production is shifted towards the right (A->aA.) . A is seen by the compiler. Since I8 is a part of the 2nd production, the lookahead is the same i.e. a|b. I6 goes to I9 when  ‘ . ‘ of 2nd production is shifted towards the right (A->aA.) . A is seen by the compiler. Since I9 is a part of the 2nd production, the lookahead is the same i.e. $. I6 goes to I6 when  ‘ . ‘ of the 2nd production is shifted towards right (A->a.A) . a is seen by the compiler. Since I6 is a part of the 2nd production, the lookahead is the same i.e. $. I6 goes to I7 when  ‘ . ‘ of the 3rd production is shifted towards right (A->b.) . b is seen by the compiler. Since I6 is a part of the 3rd production, the lookahead is the same ie $. STEP 3-  defining 2 functions:goto[list of terminals] and action[list of non-terminals] in the parsing table.Below is the CLR parsing table $ is by default a non terminal which takes accepting state. 0,1,2,3,4,5,6,7,8,9 denotes I0,I1,I2,I3,I4,I5,I6,I7,I8,I9 I0 gives A in I2, so 2 is added to the A column and 0 row. I0 gives S in I1,so 1 is added to the S column and 1st row. similarly  5 is written in  A column and 2nd  row, 8 is written in A column and 3rd row, 9 is written in A column and 6th row. I0 gives a in I3, so S3(shift 3) is added to a column and 0 row. I0 gives b in I4, so S4(shift 4) is added to the b column and 0 row. Similarly, S6(shift 6) is added on ‘a’ column and 2,6 row ,S7(shift 7) is added on b column and 2,6 row,S3(shift 3) is added on ‘a’ column and 3 row ,S4(shift 4) is added on b column and 3 row. I4 is reduced as ‘ . ‘ is at the end. I4 is the 3rd production of grammar. So write r3(reduce 3) in lookahead columns. The lookahead of I4 are a and b, so write R3 in a and b column. I5 is reduced as ‘ . ‘ is at the end. I5 is the 1st production of grammar. So write r1(reduce 1) in lookahead columns. The lookahead of I5 is $ so write R1 in $ column. Similarly, write R2 in a,b column and 8th row, write R2 in $ column and 9th row. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)
https://www.geeksforgeeks.org/clr-parser-with-examples?ref=asr5
PHP
CLR Parser (with Examples)
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0146695273, 0.00949503109, -0.0190577041, 0.0202414114, 0.0104673635, 0.00453191157, -0.00887781195, 0.0341246203, -0.0167917479, 0.0275804028, 0.00626097154, -0.0292714145, 0.0403813645, -0.0331438333, -0.00270984648, 0.00818449724, 0.0171722248, 0.00342429895, -0.0186180398, -0.0135111846, 0.00609187037, 0.0036969746, -0.0197510179, 0.0126741342, -0.018854782, -0.00348137063, 0.0036229929, -0.014897814, -0.0292375945, 0.0140523082, 0.0490393452, 0.0329747312, 0.0297787189, -0.0372022614, -0.0522522666, -0.013435089, 0.00556342909, -0.0119131785, -0.0209516361, 0.0279186051, -0.0181276463, 0.0131307067, 0.000851318764, 0.0263628755, -0.0237418059, 0.00360608264, 0.0239447281, -0.033617314, -0.0217971429, -0.016462, -0.0402460806, 0.0220000632, 0.0657127202, -0.007913935, 0.0241645593, 0.0101376157, 0.00304593518, 0.0260415822, -0.00454459433, 0.0121161, 0.0475850739, -0.00178401754, -0.0421738364, -0.0400769822, 0.0325519778, -0.008231, -0.0363229327, -0.0155065786, 0.0108647514, -0.018854782, -0.0181952883, -0.0158363264, -0.0216956828, -0.0480247363, 0.00318544358, 0.0391300134, -0.0251115263, 0.0152106518, -0.0113805095, 0.0137986569, -0.0359509103, 0.0152106518, -0.0187871419, -0.0176034328, -0.00296349823, 0.016343629, 0.00918219425, -0.0597941801, 0.0595912561, 0.00917374, 0.0145934327, 0.0334143937, 0.0306749549, -0.0223889966, 0.0184658486, -0.036728777, 0.0219831541, 0.00770255877, -0.028831752, 0.0558372103, -0.0132828979, -0.0102137113, -0.00454882206, -0.00815913174, 0.0150077296, 0.0230654012, -0.041801814, 0.00715298, -0.00119639083, 0.0433913656, -0.00821831729, 0.00647234777, 0.0152529264, -0.00334820338, 0.000128873595, -0.0399755202, -0.0386227109, -0.0665582269, -0.00265911617, 0.0194804557, -0.0156841353, -0.0018717387, -0.0191591643, 0.0130292466, -0.0697373301, 0.0440677702, 0.01992012, -0.0290177632, 0.0196326468, 0.00332706585, -0.0363567546, -0.0120315496, -0.0223213565, -0.0151768317, 0.00902154855, 0.0250777062, 0.0341077074, -0.0186518598, 0.0402122624, -0.00339470617, -0.0116426162, -0.0320446752, 0.0550931655, -0.000553277961, -0.0113382339, 0.00760109816, -0.0146357073, 0.0721047446, -0.0203259625, 0.0230146721, -0.0220338851, 0.00861147791, 0.0332622044, 0.0030776416, 0.00798157603, -0.0319432132, -0.0138916625, 0.0344966426, 0.00266545732, -0.0129446955, -0.000496734749, -0.0142636849, -0.0217633229, -0.0199877601, -0.0182967484, 0.0341753475, -0.0031283719, 0.0026760262, -0.0513052978, 0.0522522666, -0.0225919187, 0.0306411348, 0.0404828228, -0.00655267108, -0.033684954, 0.00963031221, 0.0209685471, -0.00328690419, 0.0176541638, 0.00140671048, -0.0287133809, -0.0360861942, 0.0123190209, -0.0172314104, 0.0123021109, 0.0111691328, 0.0425120369, 0.00427191844, -0.00979095884, -0.0298294481, -0.0256864708, 0.0156503152, 0.0112029538, 0.0391300134, 0.0046671927, 0.0142383194, -0.0678433925, -0.000193409476, -0.00332072447, 4.84844786e-05, -0.0077997921, -0.0444736108, 0.00466296496, 0.0325181559, 0.0308440551, 0.00887781195, -0.0190407932, 0.0187533218, 0.0174681526, 0.00970640779, -0.0524551868, 0.000440984179, -0.00898772758, 0.0101714358, -0.00872562081, 0.00161174568, -0.043831028, -0.00496312, 0.0144074205, -0.011388965, 0.000237666434, -0.00436703814, 0.0399078801, -0.000981843797, -0.0351054072, -0.0234036036, -0.0175188836, -0.0303874835, 0.00161597319, -0.0229808502, -0.0205965247, 0.0388256311, 0.00438394817, -0.00358494511, -0.0140438536, -0.0068020951, -0.0251284353, 0.0106026446, 0.0060707326, 0.018939333, -0.0153882075, -0.0297279879, -0.0677081123, 0.0183813, 0.00595658924, 0.0125050321, 0.0233697835, 0.00829441287, 0.0160054266, 0.0118286274, -0.0092160143, 0.010873206, 0.00853538234, 0.0236741658, 0.0150922807, 0.0390961953, 0.0365258567, 0.00302268378, 0.0249255151, 0.0111691328, -0.0111014927, -0.0187702309, 0.0170200337, -0.0192606244, -0.00818027, 0.011870903, 0.0179754552, -0.0312160794, 0.00880171638, -0.0165127311, 0.0523199067, -0.0420385562, 0.0173836015, -0.00968949776, -0.0234374236, -0.0322814174, -0.0174174216, 0.0070599746, 0.0107463803, 0.0252806265, -0.01288551, -0.00718257297, 0.0389609113, 0.011388965, 0.0220338851, -0.0250100642, -0.0301676504, 0.0184658486, -0.0877973363, -0.0145088816, -0.0253651775, 0.00679364, 0.0082225455, 0.00876789633, 0.0256357398, 0.0209854562, 0.0370669812, -0.0173159614, -0.0103489924, 0.00273098424, 0.00710647739, -0.0015039437, 0.00685705291, -0.024824053, -0.0193282645, 0.00385973463, -0.00057705777, 5.02679686e-05, -0.00010185704, -0.0133505389, 0.0311146174, -0.0561754145, -0.0245365817, -0.00787166, -0.0128770554, 0.0235219747, 0.0280538872, -0.0213743895, -0.0710224956, -0.0154051175, 0.0513391197, -0.0109323915, -0.0297110789, 0.0543829426, 0.0465028249, -0.0197171979, 0.0201737713, 0.0100277, 0.0102052568, -0.0226933789, -0.0212391093, 0.00151662622, 0.00886090193, 0.0116003416, 0.0221522544, -0.0757573321, 0.0229132101, 0.0269716382, 0.0218986031, -0.0155319441, -0.0400093384, -0.000448646577, 0.0226257388, -0.0289501231, -0.0208163559, -0.0350039452, 0.01291933, -0.0180261862, 0.0122767463, 0.0150584606, 0.00172483211, 0.0370331593, 0.0365258567, -0.00355112483, 0.038757991, -0.0353759676, -0.0242491104, -0.0316895619, 0.0184827596, 0.0291699544, 0.0179585461, -0.0262106843, 0.00194889109, 0.0214251205, -0.00715720747, -0.0405166447, -0.00285146874, 0.00866643526, 0.0167748369, 0.0100446101, -0.0341246203, -0.0133928135, 0.0223382656, -0.0135957357, -0.0156503152, -0.0249762442, 0.0374728218, 0.00953730661, 0.00513644842, -0.00902154855, 0.00576635031, 0.0399755202, 0.023910908, 0.0180092752, -0.0106956502, -0.00364413043, -0.00248367363, -0.0106026446, -0.0143566905, 0.00572407525, 0.0090553686, 0.0104673635, -0.0147794439, 0.00789702497, 0.00730517134, -0.0124965776, 0.0161998942, 0.0193451755, 0.00566066196, 0.00368429208, 0.0323490575, 0.00607918762, 0.00322771887, 0.0285104588, -0.0234543346, 0.0229132101, -0.0281722564, 0.0103151724, 0.0223720875, 0.0262614135, 0.0213236585, -0.0263290536, -0.0196326468, 0.0141706793, 0.0260246731, 0.00555920135, -0.000503076, 0.0552622676, -0.00787166, 0.0232683234, 0.0172736868, 0.0264981557, -0.0159969721, -0.00554229133, 0.0453191176, 0.0523875467, 0.0577311441, 0.0181107372, -0.0276649538, -0.030827146, -0.000900992251, 0.0323152356, 0.000212829691, 0.00240335055, 0.0175527036, -0.0532330535, 0.0226257388, 0.0332452916, -0.0107294703, 0.0321968645, -0.00681477785, 0.00856074784, 0.00671331724, -0.0364920348, -0.0415312499, 0.00283244485, -0.0533345118, 0.00692469347, -0.00741931424, 0.00150711427, -0.0131560722, 0.00487856939, -0.0239616372, 0.0130038811, 0.0332114734, 0.0286119208, 0.00693737622, -0.0176541638, -0.00278171455, -0.00209474098, 0.0136295557, 0.0251622554, -0.0120907351, -0.0132068023, 0.000981843797, 0.0186518598, -0.000575472484, 0.0232852325, -0.0179416351, 0.0124289375, 0.0199877601, -0.0701431707, 0.0225411877, -0.0058043981, 0.0105857337, -0.00922447, 0.0141791347, 0.0208670869, -0.0468748473, -0.0259570312, 0.0147794439, 0.0346319228, -0.0331945643, -0.0211545583, -0.00908073317, 0.0444059707, 0.012420482, -0.00681900512, 0.0241814703, 0.0172652304, -0.00164662278, 0.0432222635, -0.027766414, -0.0418694541, 0.0116172517, -0.0323997885, -0.0257033799, -0.016859388, -0.00294870185, 0.0151937418, -0.0436619259, 0.0161998942, -0.0389270931, 0.0436957479, -0.0226257388, -0.029761808, -0.00949503109, 0.024790233, -0.0201399513, 0.00556342909, 0.0112959594, -0.0264981557, -0.00648503052, 0.0346319228, 0.0240800083, 0.0215942208, -0.0048616589, 0.02281175, 0.00708111189, -0.0108647514, -0.0177387148, -0.0103997225, -0.0128432354, -0.0257372, -0.00312414439, 0.0290515833, 0.0549917035, -0.0390285552, 0.00265488867, -0.0136718303, 0.00727980584, 0.0040288358, 0.0126572233, 0.0229132101, -0.0203259625, -0.016377449, 0.0115580661, 0.0118370829, -0.00254497281, 0.0321461335, -0.0246211328, 0.0561754145, -0.0259232111, -0.00706420187, 0.00649771281, 0.00461223489, -0.0548564233, 0.0132068023, 0.0127502289, 0.0428164192, 0.0166818313, 0.0277156848, -0.0151007362, -0.0015039437, -0.0102559868, -0.0029613846, -0.0245027617, 0.00983323343, -0.0222368054, -0.013333628, 0.00366104068, -0.0091230087, -0.00479824608, 0.0122260153, 0.0204950627, -0.0200046692, 0.0186687708, 0.0119892741, -0.00551692629, 0.0142467748, -0.0194973666, -0.0244351216, 0.0352068655, 0.023877088, 0.00719948299, 0.0284597296, 0.000503604475, -0.00951194204, -0.0294574257, 0.0117102573, -0.0144835161, -0.0183136575, 0.00525481952, -0.00602423, 0.00706420187, -0.0303536635, -0.00410070363, 0.0223551765, 0.0161576178, -0.0134858191, -0.00495889224, 0.0191760734, 0.013418179, -0.0226426478, -0.00731785363, 0.013401269, -0.011972364, 0.0127164088, 0.00971486326, -0.0386227109, 0.00262740976, 0.00850579, 0.0188209619, -0.00395274, -0.00556342909, -0.0048616589, 0.0144666061, -0.0237587169, 0.0165127311, -0.00928365532, 0.0016202007, 0.00532245962, 0.00206303434, 0.0119469985, 0.00358494511, -0.0275804028, 0.0229470301, 0.0126149487, -0.00489547942, -0.0375066437, 0.0313175395, -0.00498848502, -0.00358705898, -0.0116003416, 0.020799445, 1.16257061e-05, -0.0334313028, -0.0328225382, -0.0106956502, -0.0155657642, -0.0147287128, -0.00870871078, -0.0271576494, -0.0383521467, 0.00420639198, -0.00566911697, -0.0325350687, 0.00601154706, 0.00113720552, -0.0193113554, 0.0112114083, -0.000898878498, 0.00514067616, 0.0752162039, -0.0221353453, 0.00735167414, -0.00175336795, 0.0220000632, 0.0155150341, -0.0156925898, -0.0204274226, -0.0259739421, 0.0444397926, 0.0358832702, 0.000472426444, -0.0287641119, -0.0183136575, -0.0291530434, 0.000390782254, 0.0131898923, -0.0136718303, -0.0203259625, 0.0152613819, 0.0121921953, -0.00878480636, -0.00658649113, -0.00806189887, 0.0253482684, 0.00099558325, 0.0251284353, -0.0139846681, 0.0183474794, -0.000746159, -0.00593122421, -0.00709802238, -0.0358832702, 0.0152952019, 0.0245027617, 0.00418314058, 0.0299309101, -0.0496142879, 0.00101460714, 0.0368978791, -0.00799848605, -0.00217929156, 0.0017628799, -0.0420385562, 0.0171468593, -0.0290008523, -0.0101714358, 0.00770678651, 0.0225919187, 0.00603691209, -0.0229977611, -0.0128263244, 0.0153459329, -0.00137606089, 0.011405875, 0.0146526173, -0.0483629405, 0.0221691653, -0.0013147617, -0.0216956828, 0.00219620159, -0.00494198222, 0.0273774825, -0.00733053638, -0.0233190525, -0.0191760734, 0.0142805949, -0.00876789633, 0.0195650067, 0.0150922807, 0.0081041744, 0.0364243947, 0.00968104322, 0.00476865331, -0.00255765533, 0.0135619147, -0.00862838794, 0.00264854729, -0.0037434774, -0.0187025908, -0.00910609867, -0.0277156848, 0.034665741, -0.0105519136, -0.00527172955, 0.0157264099, -0.0123782065, -0.0242491104, -0.0172567759, -0.00591854146, -0.00653998833, -0.00264643342, -0.0148048084, 0.0203936026, -0.00499694, -0.0140438536, 0.0193620864, 0.029914, -0.0029888635, 0.00897927303, -0.00704306411, 0.0215265807, 0.0145849772, -0.00264643342, 0.0157855954, 0.0059227692, 0.0229808502, 0.027850965, -0.00641316222, -0.00305227633, -0.0160646122, -0.0266503468, 0.00112980732, 0.00392737519, -0.011422785, -0.00604536757, 0.0187195018, -0.0269378182, 0.0397049598, 0.0113805095, 0.000219699432, -0.00249635614, 0.00533091463, -0.0202583224, 0.00378786656, 0.02989709, -0.0210023671, 0.0295250677, 0.0146272527, 0.0501215905, -0.0414636098, 0.0210192781, -0.0189900622, -0.0174681526, -0.0127079543, 0.00316641969, -0.0210023671, -0.0270054583, 0.0481600165, 0.0103743579, -0.0147794439, -0.0223720875, 0.017789444, 0.00528863957, -0.00879326183, 0.0380815864, 0.0266334359, 0.00643007271, 0.0167325623, -0.000120418539, 0.0474836119, 0.00770678651, -0.0110084871, -0.0320277661, 0.00409224862, -0.0430531614, -0.0431884415, 0.0185334906, -0.000346128974, -0.0110507626, 0.0126741342, 0.00974022783, -0.0354774296, 0.0206303447, -0.0337525979, -0.0232006833, -0.00860725064, 0.00366949569, 0.00510262838, 0.00382168684, 0.00882708188, 0.0524890088, -0.00299943215, 0.00256611058, -0.00856497511, -0.0121921953, -0.00433744537, 0.0157010444, 0.010509639, 0.0394005775, -0.00864107069, -0.01992012, 0.032636527, -0.00470524048, -0.00107590633, 0.0155911287, 0.0121583752, 0.00623560604, 0.0210530981, 0.006442755, -0.00389355468, -0.0439324863, 0.00383859687, -0.00867489073, -0.00428671483, 0.0355788879, 0.0113805095, -0.0304551236, -0.0112959594, -0.00153776386, 0.0124796676, 0.0154896686, 0.0232683234, -0.0142890504, -0.0135534601, 0.0103574479, -0.00814222172, 0.0131645268, 0.0269547291, -0.00276691816, 0.0262952335, -0.0334820338, 0.0162337143, -0.0122429254, 0.00118053763, 0.0344290026, -0.00399501529, 0.0273774825, 0.0132237123, -0.0199539401, 0.0131391622, 0.00114566053, 0.0177048948, -0.00633706711, -0.00780824712, 0.0115242461, -0.025821751, 0.00409647636, -0.0161576178, -0.0213574804, 0.023860177, 0.0166395567, 0.00945275649, -0.00425500842, 0.00316641969, -0.00159166486, 0.00842123851, 0.0223889966, -0.0108055659, -0.0329070911, -0.009909329, 0.027901696, 0.018939333, -0.0131053422, -0.0162675343, 0.0066625867, -0.0410239473, -0.043628104, 0.0138324769, -0.0294743367, -0.00844237674, 0.0151852863, 0.0549240634, -0.00736435642, 0.0226426478, -0.028747201, -0.015878601, -0.00238009915, -0.0051195384, -0.00714029744, -0.0171214957, 0.0337356851, -0.0602676608, 0.0155742187, -0.00925829, -0.00217929156, -0.0225919187, 0.0037709563, 0.00995160453, -0.00310934801, -0.00526327454, 0.0102475313, 0.017823264, -0.035646528, -0.0213067494, 0.0360185504, 0.0268701781, 0.0147456229, 0.0109915771, 0.00604114, 0.0124627575, -0.0146441627, -0.0142383194, -0.016377449, -0.0186856817, 0.0164535455, 0.0229132101, 0.0118624484, 0.00913991872, 0.00308609661, 0.00530132232, 0.00288317516, 0.0217464119, -0.0147709884, -0.0133420834, -0.0631762, -0.0131814377, 0.000903634471, 0.0166395567, 0.0323490575, -0.0431208, -0.0039590816, 0.00723753078, -0.0182967484, 0.0290684942, -0.0212560184, 0.00538164517, 0.0243336596, -0.0445750728, 0.00307130022, -0.0116426162, 0.00558456639, -0.0331945643, -0.0235727057, -0.0317402929, -0.0295419767, 0.0371684395, -0.00939357094, -0.00936820544, 0.0220169742, 0.00465451, 0.0287641119, -0.00462914491, -0.0137225613, -0.0251622554, -0.0158701465, -0.00673445454, 0.0353421457, 0.00146166841, 0.00379632157, 0.0184489395, 0.0244182106, 0.00214758515, -0.0225750078, -0.0440001264, 0.00942739099, 0.0183474794, -0.00651039556, 1.98165453e-05, -0.0175188836, 0.0368978791, 0.0234712437, -0.00845083129, 0.00193726539, -0.00946966652, -0.0159885176, 0.0151852863, -0.0234881546, 0.0179923661, -0.0161068887, -0.00518717896, -0.00331861083, 0.0196326468, 0.0479909144, -0.0157602299, -0.00735590141, -0.0252975374, -0.0274620317, -0.0266672559, 0.00706420187, 0.0360185504, -0.0155403987, 0.0110253971, 0.00911455415, 0.000745630532, -0.0102475313, 0.0302860215, -0.0009068051, -0.00839587394, -0.00258513447, -5.61799061e-05, 0.0315373726, 0.0327548981, -0.0176879838, -0.0112029538, -0.0090300031, 0.00766028371, -0.00790970773, 0.0107463803, 0.0155150341, -0.0207825359, 0.000779450755, 0.00088408211, -0.0131476168, 0.00710647739, 0.0201061312, 0.0271914713, 0.0379124843, -0.0101968013, -0.00749963755, 0.0302352924, -0.00954576209, 0.00342218531, 0.00131264795, -0.0266334359, 0.0037899802, -0.00646389276, 0.0402460806, -0.00808303617, 0.00254074531, 0.0193789955, -0.0331438333, -0.00371177099, -0.0122513808, 0.0037477049, -0.00916528422, -0.0373375416, 0.0119300885, -0.0152106518, 0.0191253442, 0.0102982624, -0.00289585767, 0.00864529796, -0.0213405695, -0.00362933427, 0.0276142228, 0.0141199492, -0.0123274764, -0.0290515833, 0.00226384215, -0.0116510717, -0.0155657642, 0.0235050637, 0.00737281144, -0.00337779615, 0.00537741743, 0.0168340225, 0.0108309304, -0.017890906, -0.00406899722, -0.0333974846, 0.00752500258, 0.0294912457, -0.0306918658, -0.0121837407, 0.0080788089, 0.0183474794, -0.0207825359, -0.0150500052, 0.0287641119, 0.0299816392, 0.000928471214, -0.0213236585, 0.0222537164, -0.0120738242, -0.0110084871, -0.0389270931, -0.011972364, 0.0123021109, -0.0170200337, -0.0132744433, 0.00675136456, -0.0125388531, -0.00747427251, 0.103016444, -0.00615528319, -0.0127502289, -0.0180092752, 0.00334186223, 0.00956267212, 0.0267348979, -0.0363229327, 0.0269378182, -0.00261472701, 0.0542138405, 0.00729671633, -0.00590585871, -0.0189562421, -0.00314316829, -0.00329535943, -0.00231034495, -0.00890317746, 0.0117948074, 0.00779133709, -0.000703883707, -0.0115749761, 0.0221522544, 0.00141199492, 0.0156418588, 0.00663722167, -0.0293052346, -0.0191760734, -0.0506288931, 0.00164450903, -0.00585935591, 0.0140438536, 0.035849452, 0.00539855519, 0.00284935487, 0.0224735476, 0.0140776737, -0.00941048097, -0.0149992751, 0.0107717458, 0.0121330097, 0.0288655721, -0.02989709, -0.0069881063, -0.0136971958, 0.000282980269, -0.0165127311, -0.008911632, -0.0131391622, -0.00259358948, -0.0025830206, -0.00459955214, 0.0140861282, -0.0073474464, -0.0010674512, 0.00809571892, 0.0175696127, -0.00480670109, 0.0141622238, -0.0032721078, -0.0156756807, -0.00168572739, 0.00782938488, -0.0132490778, 0.0092160143, 0.0186856817, -0.0286457408, -0.00394217158, 0.00972331781, -0.00674290955, -0.0230484921, 0.0175527036, -0.0209178161, 0.0155911287, -0.0135703702, 0.00934284087, -0.006966969, -0.00153987762, 0.00930056535, -0.0154220276, -0.0113382339, 0.024807144, 0.00392103381, 0.0189900622, -0.0102052568, -0.00240123691, -0.00911455415, 0.00744890701, 0.00265488867, -0.0151176462, -0.00892008748, -0.00581285311, -0.0045276843, 0.00125134876, -0.0156080397, 0.00300366, 0.0145342471, 0.00832400564, -0.0193959065, -0.00370965712, 0.015878601, 0.00547887851, 0.00657380838, -0.0254328176, 0.0125473076, -0.0126318587, 0.0252468064, 0.0090046376, 0.0197171979, 0.00313894078, 0.0375742838, 0.010509639, 0.0179078151, 0.00421907473, 0.0222029854, -0.0220338851, 0.00363356178, 0.0123782065, 0.00749963755, 0.00718257297, -0.0457587801, 0.0136380102, 0.00617219321, -0.0146187972, -0.0191760734, -0.0318248421, 0.0256019197, 0.00473906053, 0.00391892, 0.00311357551, -0.0132998079, 0.0376757421, -0.0125895832, 0.0112452284, 0.0076518287, 0.0019679151, 0.00346446061, 0.0250438862, -3.88074e-05, 0.00637088716, -0.0045023188, -0.000615634, 0.00527172955, 0.0230654012, -0.026785627, -0.00446849875, -0.0241983794, -0.00179564324, 0.00745736202, 0.00233571022, -0.0018949901, -0.0208163559, 0.00652307831, -2.34991203e-05, 0.0290346742, 0.0138071114, -0.0138155669, 0.00763914594, 0.0241983794, -0.0145765217, 0.0249593351, 0.00245196722, 0.00499694, 0.00630747434, -0.0121330097, -0.0110253971, -0.00352787343, -0.0377772041, -0.00752923032, -0.00497157499, 0.00819718, -0.00633706711, -9.86863961e-05, -0.00679364, 0.00150605745, 0.023775626, 0.0264981557, -0.0269209091, 0.0204443336, 0.0123697519, 0.0122006508, -0.0290684942, -0.0200554, 0.00944430102, 0.00839164667, -0.00950348657, -0.0265488867, 0.00741085922, 0.0118793584, 0.0172736868, -0.00241391943, 0.014432786, 0.00367583707, 0.00991778448, 0.0384874307, 0.00324040139, 0.0150415506, 0.00194254983, -0.0101376157, -0.02284557, -0.0373713635, -0.0217125919, 0.02287939, 0.00754614035, -0.000217717781, -0.00478556333, -0.0214420296, -0.00548733352, 0.0015736979, -0.00699656131, 0.0131391622, 0.00424655341, 0.0286964718, 0.0177218039, 0.0166057367, 0.00770255877, 0.00757150538, -0.00997697, 0.0104504535, 0.0128347799, -0.000866643561, -0.008911632, -0.0115749761, 0.0108985715, -0.0104166325, -0.032737989, 0.0224059075, 0.000628845, 0.0105688237, 0.0120061841, -0.0182121973, 0.0338540561, 0.0385888889, -0.0122682909, 0.0136887413, -0.0156334043, 0.0236741658, -0.0043628104, -0.03278872, 0.0190407932, 0.0340231583, 0.0139423925, 0.00483206613, 0.00723330304, -0.0106195547, -8.66643604e-05, 0.00863684341, 0.0209854562, -0.0156841353, 0.0194635466, 0.00757573312, -0.0018252359, -0.00582553586, -0.0287133809, 0.0184996687, 0.00498003, -0.00116362749, 0.0213067494, 0.0201568604, -0.0177725349, 0.00286837877, 0.000532668724, 0.0111944983, -0.0139846681, -0.0100107901, 0.00997697, -0.00611300766, -0.00488279667, -0.00413663778, -0.0116595263, -0.030776415, 0.0411930494, -0.0253313575, 0.0256188288, 0.0176541638, 0.0106110992, 0.00564375194, 0.00826482, -0.0274620317, -0.000513909094, -0.0260754023, 0.0372360796, 0.00391892, -0.0322306864, 0.0131983478, 0.0147878984, -0.0181783773, 0.0401108, 0.0213574804, -0.00231668632, -0.019869389, -0.0135365501, 0.000900992251, -0.0126318587, 0.0136887413, 0.045792602, 0.00449386379, -0.00655689836, -0.018939333, 0.0135788247, 0.00265488867, -0.037811026, -0.00683168788, 0.0264643356, 0.00679786783, -0.0214082096, 0.00406054221, -0.0283582695, -0.0243505705, -0.013435089, 0.0272760205, -0.0422752947, -0.0142636849, 0.0110169426, -0.0118962685, -0.00319601246, 0.0136380102, -0.0173159614, -0.0115327006, -0.00705574686, -0.0207318049, 0.011921633, -0.0204274226, -0.0090300031, -0.00899618305, 0.00824368279, 0.0192098953, -0.00911455415, -0.0126487687, -0.0304043926, 0.00656535337, -0.0211376473, -0.00190555898, 0.0230654012, -0.0322645046, 0.021830963, -0.0193620864, 0.0156756807, 0.0234205145, -0.0103828125, -0.0378448442, 0.0165888257, -0.0187025908, 0.033769507, -0.00162125763, -0.0271407403, 0.0102728968, 0.0332622044, -0.00574098527, 0.0167410169, -0.0390285552, -0.0132659879, 0.00171743392, -0.000507039309, 0.0169016626, 0.0212729294, 0.00695428625, 0.0242998395, -0.00547042349, 0.0253989976, -0.0112875039, 0.021830963, 0.003982333, -0.00315585081, -0.00998542458, 0.00562261418, -0.0108562959, -0.00199433719, 0.0300323702, 0.0447441749, 0.00780824712, -0.00749118254, -0.0175357927, 0.0309624262, 0.00363778928, 0.0135788247, 0.00752077531, 0.0127333188, -0.00713607, -0.00818449724, -0.0279693361, -0.0118793584, 0.00706842961, 0.0159377865, -0.017924726, 0.0240969192, 0.0100446101, 0.0263966955, 0.00295927073, -0.0284766387, 0.0411592275, 0.0150584606, 0.00122281292, 0.0130461566, -0.0208163559, 0.00426980481, -0.0234036036, 0.000944852887, -0.0141114937, -0.0104842735, -0.00911455415, -0.0250946153, -0.0197510179, 0.013933938, 0.00477288105, 0.00544505799, -0.0161491632, -0.0321968645, 0.0569532774, -0.0362891145, -0.00622715103, -0.00234205136, 0.00401403941, -0.0279693361, -0.00917374, 0.0292037744, 0.0120653696, -0.0152444718, 0.0230992213, 0.0193113554, 0.0234712437, -0.0385212488, -0.0239785481, -0.0049546645, -0.0273267515, -0.0177048948, 0.00478979107, 0.00552960858, -0.00448963651, -0.0167325623, -0.0133759035, 0.00212010602, 0.00299097714, 2.63725178e-05, -0.0026570023, -0.0182291083, 0.0115496106, 0.0056648897, -0.0100446101, -0.00525059178, -0.00098395755, 0.0092667453, -0.0199370291, -0.0307087749, 0.000322084903, -0.0205965247, 0.00960494764, 0.0196326468, -0.00738549419, 0.00247099111, 0.00593545148, -0.00514067616, -0.00315796467, -0.00560147688, 0.00317698857, -0.00726712355, -0.0192437153, 0.00788434315, -0.00601577479, -0.0224566367, 0.00862416066, -0.0235896148, 0.00657380838, -0.00506458059, 0.0186856817, 0.0301845614, 0.00374559127, -0.0045023188, 0.000552221, 0.00255554169, 0.0132575333, -0.0142975049, 0.00955421664, -0.00935129542, 0.0130884312, -0.00168361363, 0.0105265491, 0.00812108442, 0.0144412415, -0.00467987545, 0.00157686858, 0.00438394817, 0.0207318049, 0.0306242239, 0.0132828979, 0.0379463062, 0.00742354197, 0.018939333, -0.00444313372, -0.0110423071, 0.00216132449, 0.0011023283, -0.0135280946, -0.0204781536, -0.0140353981, -0.00211587851, -0.0165380966, -0.00182734965, -0.000971803383, 0.0153121119, -0.000761483796, -0.0159039665, -0.00185905618, 0.000403729064, 0.020883996, 0.0154727586, -0.0140692182, 0.0230315812, -0.00069437176, 0.0179416351, -0.00282398984, -0.0158194155, -0.0116510717, -0.00313471328, 0.000184558085, 0.0090300031, -0.0107971104, -0.0052590468, 0.00762646319, 0.0111606782, 0.0131645268, -0.00512376567, 0.014965455, -0.00956267212, -0.0106364647, 0.0181276463, 0.00492507219, 0.00300366, 0.000749858038, 0.00152402441, -0.00897081755, 0.0177387148, -0.00965567771, -0.00202921429, -0.00280285208, -0.0247733239, -0.0127079543, -0.00441776821, 0.00366949569, -0.0113720549, -0.00240757805, 0.0105941892, -0.016377449, 0.00113192108, 0.00271830149, -0.0172567759, 0.00528018456, -0.00796889327, -0.0118624484, -0.000804287498, 0.000629901886, -0.00677673, 0.0349701233, 0.00175970921, 0.0364582166, 0.0157095, -0.0210192781, -0.0132659879, 0.0176879838, 0.00387241715, -0.00491238944, -0.00737703918, -0.00229132106, -0.00613837317, 0.00883553643, 0.00215286948, 0.00752923032, -0.0131391622, 0.00503498781, -0.0186518598, 0.00863684341, 0.0100868857, -0.00238009915, 0.00999388, 0.00761800818, 0.00194572052, -0.0070134718, 0.00879326183, -0.010974667, 0.0110423071, 0.00889472198, -0.00409859, -0.00068274606, -0.0210869182, 0.000899406907, 0.00552115357, 0.0211883783, 0.017924726, -0.021881694, 0.0139931226, 0.0120991897, -0.00362087903, -0.000402936421, 0.0164366346, 0.00908918865, -0.00154833274, -0.00142150687, 0.0212898385, -0.0154051175, -0.0120991897, -0.00138240214, -0.018837871, 0.00766451098, -0.00698387902, -0.0381830484, -0.0203090515, -0.00783784, 0.0114904251, -0.0199539401, -0.0191422533, -0.000681160716, 0.00287683401, -0.00954576209, 0.00561415916, -0.0213743895, 0.0137394713, 0.00496734725, -0.00509417336, -0.00836628117, 0.00864107069, -0.00409436226, 0.00648925779, 0.0102559868, 0.00232725497, 0.0146441627, 0.00638357, 0.00528863957, -0.0289501231, -0.00815490447, 0.00830286834, 0.0185504, -0.0130630666, 0.00476865331, 0.00656958111, -0.0167156514, 0.000792133389, -0.018804051, -0.000233967337, -0.0079858033, -0.00529286684, -0.00734321913, 0.000997168594, 0.0148470839, -0.0263459645, -0.0124965776, 0.00868334621, 0.00583821861, -0.00149337482, 0.006966969, -0.00422330201, 0.0271914713, -0.00461646216, 0.00395274, 0.00316007831, 0.00368429208, -0.00860302243, -0.0035067359, 0.00593122421, 0.000676404743, -0.0111268582, -0.00106586586, 0.0224904567, -0.0141537692, 0.0181445573, -0.0107041048, -0.00834937114, 0.0255850088, 0.0120738242, -0.0115665207, -0.0138324769, 0.0110845827, 0.0138071114, -0.0132406224, -0.00395485386, -0.00128305529, 0.0210023671, 0.00999388, -0.00576212304, -0.0142298648, 0.0106110992, -0.00300366, 0.00637088716, -0.00466296496, -0.0232683234, 0.000291963777, -0.00456573209, -0.00474751554, -0.0147540784, 0.00956267212, 0.00430151122, 0.0141453138, 0.00650616828, -0.00106797961, 0.00281976233, 0.00244562584, -0.050662715, -0.0117863528, 0.00876789633, -0.00167727238, 0.00793507323, 0.00946121104, -0.00864952523, -0.019835569, -0.000686445099, 0.0102559868, 0.00571984751, -0.000564903661, 0.0449809134, -0.0166480113, 0.00473906053, 0.00235262024, -0.00569025474, -0.0141199492, -0.0136295557, -0.0194466356, -0.00266757119, 0.0110845827, -0.00086400134, 0.0126234032, 0.023809446, -0.0116172517, 0.00734321913, -0.00200490584, -0.00135809393, -0.012335931, 0.0076053259, -0.0102052568, -0.0309793372, -0.0133420834, -0.00807458162, -0.00428037392, 0.0199877601, 0.00427826, 0.0226257388, -1.28312131e-05, -0.00126191764, 0.00907227863, -0.00487011392, -0.0088186264, 0.00533937, 0.0193959065, 0.0215942208, 0.00498003, -0.0110761272, -0.0190577041, -0.00771524152, 0.000725021353, 0.0017903588, -0.00713184243, 0.0259570312, 0.0113551449, -0.00030834545, -0.0145511571, 0.0214589406, 0.0102644423, 0.00463337265, -0.00629056385, 0.0187364109, -0.00408168, -0.0165634602, -0.00291488157, 0.00167304487, -0.0122091053, 0.00650194054, 0.0128770554, -0.0249255151, -0.00170580822, 0.021830963, 0.00836628117, 0.00744467974, 0.00646389276, -0.011887813, 0.024824053, -0.0128939655, 0.0173497815, 0.0332452916, -0.0130630666, -0.0183643885, -0.000279281172, 0.011439695, -0.00591008645, -0.0180430971, -0.0118117174, 0.00910609867, 0.0126234032, -0.0179923661, -0.0046376, 0.0146864383, 0.0280031562, 0.0021190492, -0.0150246406, 0.00974022783, 0.0209854562, 0.00306073134, 0.0181276463, -0.0130630666, 0.0175019726, 0.00682323286, -0.00499271229, -0.000341108796, -0.00191401399, -0.0035299873, -0.00259147561, -0.0292883255, 0.0079858033, -0.019784838, 0.00851001684, -0.00516181346, 0.00254920032, -0.0171975903, -0.021881694, 0.00709802238, 0.00931747537, 0.000576529361, 0.0210361872, -0.00365681318, 0.00152613816, -0.00812108442, -0.00333129335, -0.0229808502, -0.00049805583, 0.000829652708, 0.0179754552, 0.00388509966, 0.0150246406, -0.00586781092, -0.0132659879, -0.021780232, 0.0142975049, -0.0116764372, 0.00945275649, -0.000960706093, -0.0166480113, 0.00470524048, -0.0214927606, 0.015396663, 0.00376250129, 0.00226806966, 0.00346657424, 0.00565220695, 0.000579171581, 0.0111860437, 0.0132321678, -0.00854806509, 0.0136041902, 0.0309455171, 0.0338540561, -0.0116172517, 0.000499905378, -0.0045741871, 0.00230611744, -0.0043881759, 0.0117102573, 0.00237798551, 0.0263459645, 0.00879326183, -0.00085818849, -0.00882708188, -0.0194635466, -0.00367160956, 0.0220000632, -6.04074339e-05, 0.0123612965, 0.0196495578, -0.0112536838, -0.00721216528, -0.020900907, -0.00738549419, -0.0214758497, 0.00528863957, 0.00698387902, -0.00135069573, 0.00118053763, -0.00163922459, 0.0155488541, -0.00385973463, -0.00991778448, -0.00285781012, 0.00166458974, -0.00599463703, 0.012953151, 0.013967758, 0.00119639083, 0.025855571, -0.00922447, 0.000296983955, 0.00683591515, 0.00390412356, 0.012335931, -0.012936241, -0.0174005125, 0.0116510717, -0.0143566905, -0.0256188288, -0.00319601246, 0.000693314883, 0.00708956737, 0.0110169426, 0.00117525319, -0.00229132106, 8.25689349e-05, -0.00523368176, 0.00980786886, -0.00849733409, -0.00814222172, -0.00212961808, 0.00226384215, 0.00787588768, 0.00802385155, 0.0121414652, -0.00503921509, 0.00883553643, 0.0127840498, 0.01639436, -0.0127164088, 0.0129954256, -0.00509417336, 0.00430362532, 0.00600732, -0.00749118254, 0.0135111846, -0.00886090193, -0.0140523082, -0.0102306213, 0.00728826085, -0.0112367738, -0.00298674963, 0.00684014289, 0.00483629387, 0.00635397714, 0.00560993189, 0.00138240214, 0.002984636, -0.00185799925, 0.0115749761, -0.00373079488, -0.0104504535, 0.00277114566, -0.00440085819, -0.0204781536, -0.0200384911, -0.0171891358, -0.00707688462, 0.00259147561, 0.00592699647, 0.000291963777, 0.00403517717, -0.00888626743, -0.0225073677, 0.00663299393, 0.0118286274, -0.0173666924, 0.00445158873, -0.00497157499, -0.00413241, -0.0036272204, -0.00396965025, 0.0186856817, 0.00751654757, 0.00440508593, -0.0116172517, -0.000773109496, 0.0113551449, -0.0125980387, 0.0100192456, 0.000315743615, -0.00202815724, 0.0126403132, -0.0207487158, 0.0315542817, 0.000674819399, 0.014880904, 0.0105688237, -0.0124289375, -0.0236403458, -0.00276057678, -0.00351941842, -0.0186349507, 0.0154389385, -0.00961340219, -0.00339470617, 0.00123021111, -0.0128347799, 0.0102475313, -0.00381111796, -0.0184996687, 0.00437972089, -0.0191591643, 0.00492929947, 0.00744890701, 0.00437126542, -0.0112452284, -0.0101460712, -0.00408168, -0.0278340541, 0.00227652467, 0.00834091567, -0.0134435445, 0.0312668085, -0.00559302187, 0.0222537164, 0.00392737519, 0.00634552212, 0.00742354197, 0.0187871419, -0.0175357927, 0.00494198222, 0.00633283937, -0.00564797968, -0.0389270931, -0.00931747537, -0.000409806147, 0.00226172828, 0.0155319441, 0.00658649113, -0.0152360164, 0.00522099901, -0.000851318764, 0.0251115263, 0.0122852009, -0.00418736786, 0.0137902014, 0.0206134338, 0.0176879838, -0.0136633758, -0.0308609661, -0.00757150538, 0.0146610728, 0.0201230403, 0.00231245859, -0.000814327912, -0.00850156229, 0.0290515833, 0.0119300885, 0.017823264, -0.00267814, 0.00272887037, 0.00819718, -0.0151937418, 0.0211376473, 0.00123972306, 0.00046767047, -0.0162675343, -5.28771488e-05, -0.00278805569, 0.0106110992, -0.0123951165, -0.0115918862, -0.00479401834, -0.0280369762, -0.00297618075, 0.0142044993, -0.000929528091, -0.0212391093, -0.0157264099, 0.00856920239, -0.00387875852, -0.00182629284, -0.0075334576, -0.00624406105, -0.00057124492, 0.0053055496, -0.0166733768, 0.00788857, 0.011456605, -0.0217295028, -0.0106364647, -0.0222029854, -0.021830963, 0.0332452916, 0.0241307393, 0.0160984322, -0.0103912679, 0.000951722614, -0.0100107901, -0.00579171535, -0.0141622238, 0.0128516899, 0.022896301, -0.00732208136, 0.00172800268, 0.00240757805, 0.00662031118, -0.0178570859, -0.0155065786, -0.0214927606, 0.0147202583, -0.00501385, 0.00412818277, 0.00978250336, 0.00111818162, 0.00584667362, 0.00149126106, -0.0337356851, 0.0010441998, -0.00355535233, 0.0131814377, 0.023877088, 0.0164028145, -0.0286119208, -0.00881017186, 0.00284512737, 0.000925300526, 0.00492084445, -0.0107379248, -0.00763491867, -0.000462650263, 0.00730517134, -0.00781247485, 0.00606227759, 0.0211883783, 0.0192098953, -0.000769938808, -0.0183813, -0.02577102, 0.0184489395, 0.00487011392, -0.0183813, 0.00621446874, 0.0174681526, -0.0150077296, -0.0136887413, 0.0108985715, -0.00555497408, 0.00996006, 0.0186011307, -0.0187364109, -0.000679575372, -0.000888309674, 0.0218478739, -0.0211207382, -0.00137183338, 0.0143566905, 0.0122006508, -0.0125134876, -0.0106702847, -0.00614260044, -0.0243167505, -0.0319770351, -0.00743622473, -0.0130546112, 0.0018368616, -0.024891695, -0.00242237444, 0.0352406874, -0.00520408899, -0.0189562421, 0.00286626513, -0.0239785481, -0.0268701781, 0.0110253971, -0.00675982, -0.0161660723, -0.00234839274, 0.0186687708, -0.00368217821, -0.0111691328, -0.0032488564, 0.00861993246, 0.00560993189, -0.0166057367, -0.000274261, -0.00706842961, 0.00228286604, -0.019784838, 0.0157433208, 0.0116848918, -0.00541969296, -0.0250777062, -1.95523244e-05, -0.0139593026, -0.000290114229, 0.00964722224, 0.0123443864, 0.0100530656, -7.97285684e-05, 0.0269378182, -0.007964666, -0.0166226458, -0.0168762989, 0.0221015252, 0.0101968013, 0.00274155289, -0.00301000103, 0.00605805, 0.00942739099, -0.00150711427, 0.0015779254, -0.0182967484, 0.00185905618, -0.0125642177, 0.0194128156, -0.0221184343, -0.00119004957, -0.0150500052, -0.00958803669, 0.0090300031, 0.00282398984, -0.0107041048, -0.0239785481, -0.0143736005, 0.00191929843, -0.0212221984, -0.0163098089, 0.0184827596, -1.19559818e-05, -0.0265996158, 0.00979095884, 0.011388965, -0.0223382656, 0.00657380838, 0.0105688237, 0.0119808186, 0.0344797298, 0.00131264795, -0.00681900512, -0.0121668298, -0.00170686503, 0.0203259625, 0.00985859893, 0.00868334621, -0.00714875245, 0.0201568604, -0.00708533963, -0.0160899777, 0.00799425878, -0.00334397587, -0.0214927606, -0.0119300885, 0.0134266345, -0.00544928573, -0.00467564771, -0.0106956502, -0.0189731531, 0.00588472141, 0.0154727586, 0.00792239048, -0.0135450047, 0.0282906275, -0.0189731531, -0.00699656131, 0.0160223376, 0.00222368049, 0.0194804557, -0.00515335845, -0.011921633, 0.019869389, -0.00587626593, 0.0226257388, 0.00589317642, -0.0106110992, -0.00744890701, -0.00399924302, -0.00397176389, 0.0233190525, 0.0124881221, 0.016893208, 0.00641739, 0.00394639885, -0.0110930381, 0.00415777555, -0.00384071073, 0.0112790493, -0.0249424241, 0.0247395039, -0.00278171455, -0.00898772758, -0.0196326468, 0.00468833046, -0.0354774296, -0.00506035285, 0.000939040037, -0.000175970927, -0.00430785259, 0.0207656249, 0.0167325623, -0.00149760232, -0.010957757, 0.000168440631, -0.0156672243, -0.000372815266, 0.00895390753, 0.0294574257, -0.024824053, 0.00354055595, 0.0223551765, -0.0170623101, -0.0238939971, 0.0244351216, 0.00199645082, -0.00540701, 0.00741931424, -0.014863994, 0.0211376473, 0.0230484921, -0.00547042349, 0.0039569675, 0.0015388208, -0.00855652, -0.00382168684, 0.0128686, 0.000227758152, -0.00233993772, 0.0027035051, 0.0216111317, -0.00460378, 0.00812108442, 0.0124458475, -0.0117102573, -0.00202710042, 0.00367160956, -0.0145849772, -0.0133420834, 0.0132152578, -0.0403137207, -0.0194297265, 0.00762646319, -0.00336934114, -0.000287736242, -0.0185165796, 0.000122664409, 0.0142805949, -0.00407322496, 0.0227779299, -0.0122260153, -0.000539010041, -0.00910609867, 0.00235473388, -0.0260246731, -0.0234036036, -0.00763914594, -0.000742459903, 0.0135280946, -0.00785897765, -0.00437126542, -0.0154051175, 0.0035807176, -0.0119977286, 0.020934727, 0.00848888, -0.0193113554, -0.0066625867, 0.00774906157, -0.00543237571, -0.0152952019, -0.00938511547, 0.00480670109, 0.00339259254, 0.0205796137, -0.000985542894, -0.0149823651, -0.0197510179, -0.00708956737, -0.00275212177, -0.0172990505, 0.0215942208, 0.0137563813, -0.0231499523, -0.0078927977, -0.00280707958, 0.0073009436, 0.0155234886, 0.00668372447, -0.0127840498, -0.0202245023, -0.0101968013, -0.0133759035, -0.00653153332, -0.00304593518, -0.00829864107, 0.0149739096, 0.00414932054, -0.0116426162, -0.00145955465, 0.00615105545, 0.0141791347, -0.0166733768, -0.00650194054, -0.0100868857, -0.0171975903, -0.0031748747, 0.0108478414, -0.0253482684, -0.00324251526, -0.00518717896, 0.0187702309, 0.0111353127, 0.0222537164, -0.00368217821, -0.00786320493, -0.0164873656, -0.0793422759, 0.00977404881, 0.0188716929, -0.000286415132, 0.00519140624, -0.00892854296, -0.00686128065, -0.000739289215, 0.00967258774, 0.0110507626, 0.00763069093, -0.000485373253, -0.00112346595, 0.00740663195, 0.0110845827, -0.0206472538, 0.00835782569, 0.0110423071, -0.018939333, -0.0266165268, 0.0121668298, -0.013950848, -0.00631592935, 0.00629901933, -0.0185504, -0.00432476262, 0.00787588768, -0.00585935591, -0.000857131614, -0.0075334576, -0.0126234032, -0.0111860437, 0.0132659879, -0.00145215646, 0.00410493137, -0.00694583124, 0.00124395057, -0.00890317746, -0.00366738182, 0.00217929156, -0.00520831626, 0.00960494764, 0.00385339325, -0.0224735476, 0.00677673, -0.00432476262, 0.02580484, 0.00151239871, 0.00752077531, 0.0237925369, -0.0123105664, 0.030877877, -0.00980786886, -0.00291488157, 0.0297110789, 0.0044093132, 0.00638779718, -0.0295757968, 0.000844977505, -0.00692892121, -0.0197679289, -0.0206303447, -0.00209474098, 0.011955454, -0.00593967922, 0.00532245962, 0.0118201729, 0.0199370291, 0.00491661672, 0.0165972821, 0.00603691209, -0.0130377011, 0.00122281292, -0.00767719373, -0.00428671483, 0.0206134338, 0.00915682875, 0.00177133491, 0.00590163143, 0.013384359, 0.00828595832, 0.00439240318, 0.010509639, -0.00676827505, 0.00716989, 0.016893208, -0.0109154815, -0.00541546522, -0.00474751554, -0.0123443864, 0.0114735151, 0.011422785, 0.0190069731, 0.0114143295, -0.0254328176, 0.0132068023, 0.0021771777, 0.0057113925, 0.0130207911, 0.0160815232, -0.0129108755, -0.00252594892, 0.0216787718, 0.00974868331, -0.0113128694, -0.0179585461, -0.00415777555, -0.00316219218, 0.00163816777, 0.00875098631, 0.0230992213, 0.00500539504, 0.0171722248, 0.00301845605, 0.0125050321, 0.0182967484, 0.00873407628, 0.010458908, 0.0055718841, -7.11331404e-06, 0.00732208136, 0.00789702497, -0.00529286684, -0.0133589935, 0.0211714674, -0.00681900512, -0.00488702441, 0.00103363104, -0.0271576494, -0.0109662116, 0.0088186264, 0.0324166976, 0.00433321763, -0.0160984322, -0.00745736202, -0.0130461566, -0.000801645278, 0.0211545583, -0.00443045096, 0.0153205674, 0.00850156229, 0.00414932054, 0.0215434916, 0.00376250129, -0.0024202608, -0.0204950627, 0.00451077428, 0.0135196401, 0.00943584647, -0.0103151724, -0.0165211856, -0.0140692182, -0.025872482, -0.00782515761, -0.0254497286, 0.0180261862, -2.62734357e-05, 0.0272929315, 0.00774483429, 0.00934284087, -0.00743622473, -0.0142298648, -0.00887781195, -0.0126910442, -0.00394851249, 0.000862416055, -0.00433744537, -0.0203090515, -0.0184151195, -0.0120146396, 0.00430573896, 0.00500962278, 0.0117778974, 0.0300323702, 0.016893208, 0.0027035051, 0.0108985715, -0.00311780302, 0.00752077531, 0.0257879309, 0.0203090515, -0.0157348644, -0.00456573209, -0.00454459433, -0.00518717896, -0.0260923132, 0.0100953411, -0.0020144179, 0.00369063346, -0.0107548349, 0.0134266345, 0.00748272752, -0.00902154855, 0.00582976313, -0.00692892121, -0.0091230087, -0.000988185, 0.0368640572, 0.0021000253, 0.00714452518, 0.00362933427, 0.00631592935, 0.0103828125, -0.00871716626, -0.0126656787, -0.00861147791, -0.0251115263, 0.0251791663, 0.00834937114, -0.0173836015, -0.00671754451, 0.0178570859, -0.0206472538, 0.00432264898, 0.0129446955, 0.00859034061, -0.0127333188, 0.00217083655, -0.00281764846, 0.0024625361, 0.00882708188, -0.00987550896, 0.00689087342, -0.0113551449, 0.0122598363, 0.00653998833, 0.0118201729, 0.000411655696, 0.00538164517, -0.0039337161, -0.0065146233, 0.000252991216, 0.00416200282, 0.00297406712, -0.000121607532, -0.0177048948, -0.00376250129, 0.00292122294, -0.00668372447, 0.0177556239, 0.00588049367, 0.0145088816, -0.00848042406, 0.000433586, 0.00111501093, 0.0115665207, 0.0332791135, -0.016377449, -0.0106364647, -0.0152191063, -0.00674713729, 0.00690778345, -0.015430483, -0.0132321678, 0.0250438862, -0.00918219425, -0.000586569717, 0.013384359, -0.0203766935, 0.00650194054, -0.0151683763, 0.00683591515, 0.0234712437, -0.00535205239, -0.00630747434, 0.00034005192, 0.00353844231, -0.0264812447, -0.00541969296, 0.00445158873, 0.000384705199, -7.50386534e-05, -0.0104758181, -0.00103521626, 0.000890423427, -0.0166564658, -0.00121435791, 0.0108140204, -0.0129954256, -0.0269039981, -0.0105011836, -0.0271914713, -0.0104166325, -0.00491661672, -0.00743622473, -0.0277833249, -0.0171214957, -0.0169608481, 0.00906382315, 0.0331269205, -0.000716566283, 0.0158532355, 0.0189224221, 0.00874253083, 0.00343064032, -0.00220042909, -0.0058043981, 0.00894545298, -0.00659917388, -0.00188759202, -0.0118201729, 0.0110084871, 0.00380477658, -0.000893594057, -0.0126234032, -0.0301845614, -0.0194466356, -0.0111184027, 0.00244985335, -0.0264981557, -0.0146103427, 0.0249593351, 0.0040288358, 0.00204189681, -0.00901309308, 0.00465451, 0.0200892203, 0.00145321328, 0.00665413169, -0.00691201072, -0.00689932844, -0.00255554169, -0.00353210093, -0.0171045847, -0.00311357551, 0.017924726, 0.01992012, 0.00742776971, -0.00548733352, 0.0126234032, -0.0047601983, 0.0118962685, -0.00814645, -0.006442755, -0.00170580822, 0.00212433352, -0.00938511547, -0.00981632341, 0.0206641648, -0.0132744433, -0.00250058365, -0.00722062076, 0.00544083072, -0.00241603306, 0.0162168033, -0.0157771409, 0.0116848918, 0.00444736099, 0.0343275405, -0.0112705939, 0.0101291612, 0.0108140204, 0.0177048948, 0.00782515761, -0.00653576059, -0.000600309228, -0.0206810758, -0.0102306213, 0.0136549203, -0.00671754451, 0.0128432354, -0.0302860215, -0.0162083488, -0.0142383194, -0.00589740369, -0.0162590779, 0.00675982, -0.0215434916, -0.00740240421, -0.000310195, -0.00536473515, -0.0140776737, -0.0136464657, 0.0776512623, 0.0283751786, 0.00202181609, -0.0148555394, -0.00292967795, 0.0122006508, -0.0143059604, 0.0560401343, 0.00159589248, -0.00777019933, -0.00910609867, 0.0113635994, 0.00502230506, 0.00937666092, 0.00382802798, -0.0129108755, -2.22936137e-07, 0.00232725497, -0.00709379464, -0.0120061841, 0.00946966652, -0.0175696127, 0.00747427251, 0.00365469931, -0.00559724914, -0.0107294703, -0.024790233, 0.0112536838, -0.0100530656, -0.00123021111, -0.008911632, 0.00517872395, 0.00963876769, 0.0121330097, -0.00748272752, -0.00107009348, -0.00571984751, -0.000632544106, 0.00539432792, -0.013950848, -0.0027267565, 0.0046671927, -0.00809571892, 0.00964722224, 0.026887089, -0.0129954256, -0.00970640779, -0.0345811918, -0.00417257193, 0.00159483554, 0.00924983434, -0.0286288299, -0.0115834307, -0.0123528419, 0.00441776821, 0.00489125168, 0.0185504, 0.00357014872, 0.0174343325, -0.0169946682, 0.00792661775, 0.0210361872, -0.00318332971, -0.0136126457, 0.00442622369, -0.00610878039, -0.00972331781, 0.00104525674, -0.0211038273, -0.000213490246, -0.00191718468, -0.017840175, 0.023809446, -0.0189224221, -0.0210023671, -0.00136654894, -0.0133589935, 0.00251115253, 0.00440508593, -0.0169946682, -0.0150669152, 8.33616e-05, -0.0216956828, 0.00192458287, 0.0115073361, -0.00534782512, -0.0183474794, -0.00548733352, -0.00297829462, -0.00254074531, -0.00122386985, 0.0280369762, -0.0146187972, 0.0360523723, -0.0092752, 0.00879326183, -0.00505189784, 0.0215773117, 0.00682746, -0.00132427365, -0.00689932844, 0.0148301739, -0.00648925779, -0.0105265491, 0.0171806812, 0.0212221984, -0.0153712975, 0.0113213239, 0.0175188836, 0.00789702497, 0.00560993189, -0.0106787402, 0.0073009436, 0.0350715853, 0.00133589935, -0.00175970921, 0.00949503109, -0.000851847231, 0.00423598476, -0.0132406224, 0.00456995936, 0.0289839432, -0.0325012468, -0.00677250233, 0.00638357, 0.00500962278, 0.00546619575, 0.0176710729, 0.0197341088, -0.00172694586, -0.00398867438, 0.00894545298, 0.016445091, 0.00144264451, -0.00171214947, 0.00832823291, -0.0203428715, -0.0183136575, 0.0131560722, 0.00557611138, 0.0142552294, 0.00550424354, -0.00105265481, 0.000552221, 0.00428882893, 0.00359340012, 0.000112359812, -0.00272887037, 0.0204105135, 0.000423809834, 0.0112959594, 0.00682746, 0.033718776, -0.016462, 0.0148217184, 0.00211059419, 0.00478556333, -0.0103405379, 0.00547042349, -0.0160392467, -0.000256029773, 0.0132490778, 0.0113466894, -0.0142552294, 0.0144835161, -0.008962363, 0.0016011768, 0.026802538, 0.00605382258, -0.00942739099, 0.0384874307, 0.00738972193, 0.00456573209, 0.0225750078, 0.0217125919, 0.0171806812, -0.00400135666, -0.0257541109, 0.00178084685, -0.00840432849, 0.0116087962, 0.00682746, -0.00097973, 0.0345642827, 0.0169185735, -0.0214927606, -0.0106787402, 0.0230654012, 0.024807144, 0.00972331781, -0.0092752, -0.00457841437, -0.0204781536, 0.00512376567, 0.000633601, -0.0168762989, 0.0220846143, 0.00727980584, -0.000228022385, -0.00269082258, 0.00459109712, 0.0152444718, -0.0175357927, 0.00506035285, -0.00382380048, -0.0036737232, 0.012437392, -0.00120484596, -0.00544928573, -0.0108055659, 0.0133420834]
05 Sep, 2022
Compiler Design SLR(1) Parser Using Python 05 Sep, 2022 Prerequisite: LR Parser, SLR Parser SLR (1) grammar SLR stands for Simple LR grammar. It is an example of a bottom-up parser. The “L” in SLR represents the scanning that advances from left to right and the “R” stands for constructions of derivation in reverse order, and the “(1)” represents the number of input symbols of lookahead. Shift and Reduce Operations The next important concept is SHIFT and REDUCE operations. During parsing, we can enter two types of states. First, we may have a state where ‘·’ is at the end of production. This state is called “Handle”. Here comes the role of REDUCE operation. Second, while parsing we may have a state where ‘·’ is pointing at some grammar symbol and there is still scope for advancement. In this scenario, a Shift operation is performed. Use of Dot [ · ] In LR parsing we use Dot ‘·’ as a character in the rule so that we know the progress in parsing at any given point. Note that ‘·’ is like an informer and, it should not be considered as a grammar symbol. In SLR (1), we have only one input symbol as lookahead, which is ultimately helping us determine the current state during parsing activity. Parsing Decisions For making the parsing decisions we need to construct the deterministic finite automaton. It helps us determine the current state to which we have arrived while we are parsing. When we design it for SLR parser it is referred to as LR automaton. The states of this automaton are the set of “Items” related to the production rules set. Generating LR Collection The first step is to create an augmented grammar. The augmentation process starts by bringing the start symbol on the right-hand side of a production rule. We cannot alter the existing rule so we add a new rule in the productions. Bringing the start symbol on RHS ensures that the parsing reaches the acceptance state. The REDUCE operation on this newly added rule determines the string acceptance. For example, IF we have ‘K’ as a start symbol THEN L → K is added in productions (where ‘L’ represents any non-preexisting symbol in the collection) CLOSURE and GOTO Operations In the process of construction of deterministic finite automaton, there are two requirements. The first is creating “States” and the second is developing “Transitions” in the automaton. 1) CLOSURE Closure operation helps us to form the “States”. Before taking the closure operation all the rules must be separated. Then number all the rules. This will be helpful later for making the Shift and Reduce entries in the parsing table. Let I0 be the collection of rules obtained after grammar augmentation. This means we also have a newly added rule in collection I0. Assumption – (consider [L, K] are non-terminals and [m, t, p] are set of zero or more terminals or non-terminals) DO REPEAT (Till-No-New-Rule-Gets-Added) { IF (any production of the form “ L → m · K t ” exists) and (we have production K → · p) THEN {add production K → · p to the Closure set if not preexisting} } 2) GOTO GOTO operation helps us to form the “Transitions”. In operation GOTO (I, X), ‘I’ can be elaborated as the state we are looking at and ‘X’ is the symbol pointed by Dot (·). So, GOTO takes in a state with items and a grammar symbol and produces the new or existing state as output. The GOTO (I, X) represents the state transition from “I” on the input symbol “X”. For any production rule “ L → m · K t ” in “I” GOTO (I, X) outputs the closure of a set of all the productions “ L → m  K · t ” Program approach The input for the program is the list of rules having a set of items and lists determining terminal and non-terminal symbols. The control starts form grammarAugmentation() function, then we have to calculate I0 state, that is calculated by calling findClosure(), now for new states generation generateStates() function is called and finally createParseTable() function is called. A) grammarAugmentation In this function firstly we create a unique symbol and use it to create a new item to bring the start symbol on RHS. Then we format the items into a nested list and add a dot at the start of the item’s RHS. Also, we keep only one derivation in one item. Thus we have generated a list named separatedRulesList. B) findClosure This function runs differently for I0 state. For I0 state, we directly append to closureSet the newly created item from augmentation. In any other case, closureSet gets initialized with the received argument “input_state”. Now continue iterations till we are receiving new items in closureSet. We follow the rules mentioned under “Item-set Closure” title above to look for the next items to be added in closureSet. C) generateStates In this function we are starting with GOTO computation. “statesDict” is a dictionary that stores all the states and is used as a global variable. We iterate over the statesDict till new states are getting added to it. We call the compute_GOTO() function on each added state only once. D) compute_GOTO Now control reaches compute_GOTO, this function doesn’t have actual goto logic, but it creates metadata to call the GOTO() function iteratively. For the given input state, we call GOTO(state,Xi), where Xi represents a symbol pointed by a dot. There can be multiple Xi, so isolating iteration procedure from actual GOTO() logic implementation reduces complexity. E) GOTO This function is called by compute_GOTO() function, we receive “input_state” and “charNextToDot”, we perform the shift operation and generate a new state. Now for any item in a new state, dot can point to some symbol for which we may have another item, so to include all the items for the new state, we call findClosure() function that I discussed above. To store this information of “GOTO(state, symbol) = newState”, the stateMap dictionary is created having key of type tuple and value of type integer. This will help in parsing table generation and printing output. F) createParseTable Firstly we create the table in its initial empty state. Columns will have ACTION (Terminals and $) and GOTO (Non-terminals). Rows will have numbered states (I0-In). Using stateMap fill in the SHIFT and GOTO entries. To add reduce entries in LR parser, find the “handles” (item with the dot at the end) in the generated states, and place Rn (n is the item number in separatedRulesList), in Table[ stateNo ] [ Ai ], where “stateNo” is the state in which item belongs. “Ai” is any symbol belonging to FOLLOW of  LHS symbol of the current item that we are traversing. REDUCE entry for the new augmented rule shows “Acceptance”. The parser may have RR (Reduce-Reduce) and SR  (Shift-Reduce) conflicts. Python3 # SLR(1) import copy # perform grammar augmentation def grammarAugmentation(rules, nonterm_userdef, start_symbol): # newRules stores processed output rules newRules = [] # create unique 'symbol' to # - represent new start symbol newChar = start_symbol + "'" while (newChar in nonterm_userdef): newChar += "'" # adding rule to bring start symbol to RHS newRules.append([newChar, ['.', start_symbol]]) # new format  => [LHS,[.RHS]], # can't use dictionary since # - duplicate keys can be there for rule in rules: # split LHS from RHS k = rule.split("->") lhs = k[0].strip() rhs = k[1].strip() # split all rule at '|' # keep single derivation in one rule multirhs = rhs.split('|') for rhs1 in multirhs: rhs1 = rhs1.strip().split() # ADD dot pointer at start of RHS rhs1.insert(0, '.') newRules.append([lhs, rhs1]) return newRules # find closure def findClosure(input_state, dotSymbol): global start_symbol, \ separatedRulesList, \ statesDict # closureSet stores processed output closureSet = [] # if findClosure is called for # - 1st time i.e. for I0, # then LHS is received in "dotSymbol", # add all rules starting with # - LHS symbol to closureSet if dotSymbol == start_symbol: for rule in separatedRulesList: if rule[0] == dotSymbol: closureSet.append(rule) else: # for any higher state than I0, # set initial state as # - received input_state closureSet = input_state # iterate till new states are # - getting added in closureSet prevLen = -1 while prevLen != len(closureSet): prevLen = len(closureSet) # "tempClosureSet" - used to eliminate # concurrent modification error tempClosureSet = [] # if dot pointing at new symbol, # add corresponding rules to tempClosure for rule in closureSet: indexOfDot = rule[1].index('.') if rule[1][-1] != '.': dotPointsHere = rule[1][indexOfDot + 1] for in_rule in separatedRulesList: if dotPointsHere == in_rule[0] and \ in_rule not in tempClosureSet: tempClosureSet.append(in_rule) # add new closure rules to closureSet for rule in tempClosureSet: if rule not in closureSet: closureSet.append(rule) return closureSet def compute_GOTO(state): global statesDict, stateCount # find all symbols on which we need to # make function call - GOTO generateStatesFor = [] for rule in statesDict[state]: # if rule is not "Handle" if rule[1][-1] != '.': indexOfDot = rule[1].index('.') dotPointsHere = rule[1][indexOfDot + 1] if dotPointsHere not in generateStatesFor: generateStatesFor.append(dotPointsHere) # call GOTO iteratively on all symbols pointed by dot if len(generateStatesFor) != 0: for symbol in generateStatesFor: GOTO(state, symbol) return def GOTO(state, charNextToDot): global statesDict, stateCount, stateMap # newState - stores processed new state newState = [] for rule in statesDict[state]: indexOfDot = rule[1].index('.') if rule[1][-1] != '.': if rule[1][indexOfDot + 1] == \ charNextToDot: # swapping element with dot, # to perform shift operation shiftedRule = copy.deepcopy(rule) shiftedRule[1][indexOfDot] = \ shiftedRule[1][indexOfDot + 1] shiftedRule[1][indexOfDot + 1] = '.' newState.append(shiftedRule) # add closure rules for newState # call findClosure function iteratively # - on all existing rules in newState # addClosureRules - is used to store # new rules temporarily, # to prevent concurrent modification error addClosureRules = [] for rule in newState: indexDot = rule[1].index('.') # check that rule is not "Handle" if rule[1][-1] != '.': closureRes = \ findClosure(newState, rule[1][indexDot + 1]) for rule in closureRes: if rule not in addClosureRules \ and rule not in newState: addClosureRules.append(rule) # add closure result to newState for rule in addClosureRules: newState.append(rule) # find if newState already present # in Dictionary stateExists = -1 for state_num in statesDict: if statesDict[state_num] == newState: stateExists = state_num break # stateMap is a mapping of GOTO with # its output states if stateExists == -1: # if newState is not in dictionary, # then create new state stateCount += 1 statesDict[stateCount] = newState stateMap[(state, charNextToDot)] = stateCount else: # if state repetition found, # assign that previous state number stateMap[(state, charNextToDot)] = stateExists return def generateStates(statesDict): prev_len = -1 called_GOTO_on = [] # run loop till new states are getting added while (len(statesDict) != prev_len): prev_len = len(statesDict) keys = list(statesDict.keys()) # make compute_GOTO function call # on all states in dictionary for key in keys: if key not in called_GOTO_on: called_GOTO_on.append(key) compute_GOTO(key) return # calculation of first # epsilon is denoted by '#' (semi-colon) # pass rule in first function def first(rule): global rules, nonterm_userdef, \ term_userdef, diction, firsts # recursion base condition # (for terminal or epsilon) if len(rule) != 0 and (rule is not None): if rule[0] in term_userdef: return rule[0] elif rule[0] == '#': return '#' # condition for Non-Terminals if len(rule) != 0: if rule[0] in list(diction.keys()): # fres temporary list of result fres = [] rhs_rules = diction[rule[0]] # call first on each rule of RHS # fetched (& take union) for itr in rhs_rules: indivRes = first(itr) if type(indivRes) is list: for i in indivRes: fres.append(i) else: fres.append(indivRes) # if no epsilon in result # - received return fres if '#' not in fres: return fres else: # apply epsilon # rule => f(ABC)=f(A)-{e} U f(BC) newList = [] fres.remove('#') if len(rule) > 1: ansNew = first(rule[1:]) if ansNew != None: if type(ansNew) is list: newList = fres + ansNew else: newList = fres + [ansNew] else: newList = fres return newList # if result is not already returned # - control reaches here # lastly if eplison still persists # - keep it in result of first fres.append('#') return fres # calculation of follow def follow(nt): global start_symbol, rules, nonterm_userdef, \ term_userdef, diction, firsts, follows # for start symbol return $ (recursion base case) solset = set() if nt == start_symbol: # return '$' solset.add('$') # check all occurrences # solset - is result of computed 'follow' so far # For input, check in all rules for curNT in diction: rhs = diction[curNT] # go for all productions of NT for subrule in rhs: if nt in subrule: # call for all occurrences on # - non-terminal in subrule while nt in subrule: index_nt = subrule.index(nt) subrule = subrule[index_nt + 1:] # empty condition - call follow on LHS if len(subrule) != 0: # compute first if symbols on # - RHS of target Non-Terminal exists res = first(subrule) # if epsilon in result apply rule # - (A->aBX)- follow of - # - follow(B)=(first(X)-{ep}) U follow(A) if '#' in res: newList = [] res.remove('#') ansNew = follow(curNT) if ansNew != None: if type(ansNew) is list: newList = res + ansNew else: newList = res + [ansNew] else: newList = res res = newList else: # when nothing in RHS, go circular # - and take follow of LHS # only if (NT in LHS)!=curNT if nt != curNT: res = follow(curNT) # add follow result in set form if res is not None: if type(res) is list: for g in res: solset.add(g) else: solset.add(res) return list(solset) def createParseTable(statesDict, stateMap, T, NT): global separatedRulesList, diction # create rows and cols rows = list(statesDict.keys()) cols = T+['$']+NT # create empty table Table = [] tempRow = [] for y in range(len(cols)): tempRow.append('') for x in range(len(rows)): Table.append(copy.deepcopy(tempRow)) # make shift and GOTO entries in table for entry in stateMap: state = entry[0] symbol = entry[1] # get index a = rows.index(state) b = cols.index(symbol) if symbol in NT: Table[a][b] = Table[a][b]\ + f"{stateMap[entry]} " elif symbol in T: Table[a][b] = Table[a][b]\ + f"S{stateMap[entry]} " # start REDUCE procedure # number the separated rules numbered = {} key_count = 0 for rule in separatedRulesList: tempRule = copy.deepcopy(rule) tempRule[1].remove('.') numbered[key_count] = tempRule key_count += 1 # start REDUCE procedure # format for follow computation addedR = f"{separatedRulesList[0][0]} -> " \ f"{separatedRulesList[0][1][1]}" rules.insert(0, addedR) for rule in rules: k = rule.split("->") # remove un-necessary spaces k[0] = k[0].strip() k[1] = k[1].strip() rhs = k[1] multirhs = rhs.split('|') # remove un-necessary spaces for i in range(len(multirhs)): multirhs[i] = multirhs[i].strip() multirhs[i] = multirhs[i].split() diction[k[0]] = multirhs # find 'handle' items and calculate follow. for stateno in statesDict: for rule in statesDict[stateno]: if rule[1][-1] == '.': # match the item temp2 = copy.deepcopy(rule) temp2[1].remove('.') for key in numbered: if numbered[key] == temp2: # put Rn in those ACTION symbol columns, # who are in the follow of # LHS of current Item. follow_result = follow(rule[0]) for col in follow_result: index = cols.index(col) if key == 0: Table[stateno][index] = "Accept" else: Table[stateno][index] =\ Table[stateno][index]+f"R{key} " # printing table print("\nSLR(1) parsing table:\n") frmt = "{:>8}" * len(cols) print("  ", frmt.format(*cols), "\n") ptr = 0 j = 0 for y in Table: frmt1 = "{:>8}" * len(y) print(f"{{:>3}} {frmt1.format(*y)}" .format('I'+str(j))) j += 1 def printResult(rules): for rule in rules: print(f"{rule[0]} ->" f" {' '.join(rule[1])}") def printAllGOTO(diction): for itr in diction: print(f"GOTO ( I{itr[0]} ," f" {itr[1]} ) = I{stateMap[itr]}") # *** MAIN *** - Driver Code # uncomment any rules set to test code # follow given format to add - # user defined grammar rule set # rules section - *START* # example sample set 01 rules = ["E -> E + T | T", "T -> T * F | F", "F -> ( E ) | id" ] nonterm_userdef = ['E', 'T', 'F'] term_userdef = ['id', '+', '*', '(', ')'] start_symbol = nonterm_userdef[0] # example sample set 02 # rules = ["S -> a X d | b Y d | a Y e | b X e", #          "X -> c", #          "Y -> c" #          ] # nonterm_userdef = ['S','X','Y'] # term_userdef = ['a','b','c','d','e'] # start_symbol = nonterm_userdef[0] # rules section - *END* print("\nOriginal grammar input:\n") for y in rules: print(y) # print processed rules print("\nGrammar after Augmentation: \n") separatedRulesList = \ grammarAugmentation(rules, nonterm_userdef, start_symbol) printResult(separatedRulesList) # find closure start_symbol = separatedRulesList[0][0] print("\nCalculated closure: I0\n") I0 = findClosure(0, start_symbol) printResult(I0) # use statesDict to store the states # use stateMap to store GOTOs statesDict = {} stateMap = {} # add first state to statesDict # and maintain stateCount # - for newState generation statesDict[0] = I0 stateCount = 0 # computing states by GOTO generateStates(statesDict) # print goto states print("\nStates Generated: \n") for st in statesDict: print(f"State = I{st}") printResult(statesDict[st]) print() print("Result of GOTO computation:\n") printAllGOTO(stateMap) # "follow computation" for making REDUCE entries diction = {} # call createParseTable function createParseTable(statesDict, stateMap, term_userdef, nonterm_userdef) Output: Original grammar input: E -> E + T | T T -> T * F | F F -> ( E ) | id Grammar after Augmentation: E' -> . E E -> . E + T E -> . T T -> . T * F T -> . F F -> . ( E ) F -> . id Calculated closure: I0 E' -> . E E -> . E + T E -> . T T -> . T * F T -> . F F -> . ( E ) F -> . id States Generated: State = I0 E' -> . E E -> . E + T E -> . T T -> . T * F T -> . F F -> . ( E ) F -> . id State = I1 E' -> E . E -> E . + T State = I2 E -> T . T -> T . * F State = I3 T -> F . State = I4 F -> ( . E ) E -> . E + T E -> . T T -> . T * F T -> . F F -> . ( E ) F -> . id State = I5 F -> id . State = I6 E -> E + . T T -> . T * F T -> . F F -> . ( E ) F -> . id State = I7 T -> T * . F F -> . ( E ) F -> . id State = I8 F -> ( E . ) E -> E . + T State = I9 E -> E + T . T -> T . * F State = I10 T -> T * F . State = I11 F -> ( E ) . Result of GOTO computation: GOTO ( I0 , E ) = I1 GOTO ( I0 , T ) = I2 GOTO ( I0 , F ) = I3 GOTO ( I0 , ( ) = I4 GOTO ( I0 , id ) = I5 GOTO ( I1 , + ) = I6 GOTO ( I2 , * ) = I7 GOTO ( I4 , E ) = I8 GOTO ( I4 , T ) = I2 GOTO ( I4 , F ) = I3 GOTO ( I4 , ( ) = I4 GOTO ( I4 , id ) = I5 GOTO ( I6 , T ) = I9 GOTO ( I6 , F ) = I3 GOTO ( I6 , ( ) = I4 GOTO ( I6 , id ) = I5 GOTO ( I7 , F ) = I10 GOTO ( I7 , ( ) = I4 GOTO ( I7 , id ) = I5 GOTO ( I8 , ) ) = I11 GOTO ( I8 , + ) = I6 GOTO ( I9 , * ) = I7 SLR(1) parsing table: id + * ( ) $ E T F I0 S5 S4 1 2 3 I1 S6 Accept I2 R2 S7 R2 R2 I3 R4 R4 R4 R4 I4 S5 S4 8 2 3 I5 R6 R6 R6 R6 I6 S5 S4 9 3 I7 S5 S4 10 I8 S6 S11 I9 R1 S7 R1 R1 I10 R3 R3 R3 R3 I11 R5 R5 R5 R5 Level up your coding with DSA Python in 90 days! Master key algorithms, solve complex problems, and prepare for top tech interviews. Join the Three 90 Challenge—complete 90% of the course in 90 days and earn a 90% refund. Start your Python DSA journey today!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python
https://www.geeksforgeeks.org/compiler-design-slr1-parser-using-python?ref=asr10
PHP
Compiler Design SLR(1) Parser Using Python
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[0.0101987477, 0.005103915, -0.0107527319, 0.0347284153, -0.0218868945, -0.00587585941, 0.028680006, 0.0497677103, 0.0107618133, 0.0562702082, 0.0175821688, -0.00449544098, 0.0326577909, -0.0330392197, 0.00422071945, 0.0371804759, 0.00568060298, 0.0174731892, -0.0224681236, -0.0168374702, 0.021541791, -0.0103440555, -0.0441733859, 0.0177002307, -0.0100080324, 0.00301739457, -0.0097719077, 0.00658423174, 0.00712913368, -0.0231401697, 0.00415487727, 0.0187809542, 0.0342743322, -0.0291704182, 0.010816304, 0.00407314207, 0.0207062736, -0.00524014048, -0.0305145085, 0.040068455, -0.0348192342, 0.0167284887, -0.000610176648, 0.00415260671, -0.00830521341, 0.00265412661, 0.0274267308, -0.049368117, -0.0261189658, -0.0111432448, -0.036272306, 0.0152935814, 0.0643347576, 0.00385518116, 0.0296063386, 0.0057350928, -0.00338293286, -0.00545810116, -0.000350496819, 0.0125509081, 0.0450452268, 0.0129141761, -0.024847528, -0.00986272469, 0.0276628546, 0.0129868295, -0.0368353724, 0.018136153, 0.0104439538, -0.0232309867, -0.0170281865, 0.00899542309, 0.00538998842, -0.00866394117, 0.0314953327, -0.00594397215, -0.0360543467, 0.0325488076, -0.021905059, -0.000480194838, -0.0193803459, 0.00332844281, -0.00598483952, -0.0323308483, 0.0155387875, 0.0442823656, -0.0056533576, -0.0914708748, 0.0367627181, -0.00074810494, 0.00780117931, -0.00644800626, 0.0207244363, -0.0480240248, -0.00216939091, -0.0252471231, 0.00677494751, 0.00294701126, -0.0330392197, 0.0556526519, -0.0135862222, 0.0150665389, -0.0265730508, 0.018744627, 0.0200160649, 0.0277536716, -0.0141038783, 0.00810541678, 0.008718431, 0.0724356323, 0.00257012085, 0.0280079599, -0.0245932415, -0.000383701787, -0.01865381, -0.0456991084, -0.0154207246, -0.0513660908, 0.0129050948, 0.0349100493, -0.00744699314, 0.0306416526, -0.0038824263, -0.00680219242, -0.058449816, 0.0425023511, 0.00642076135, -0.027281424, 0.00420936756, -0.0256648809, -0.00664326269, -0.00352369924, -0.0157113392, -0.0229222085, 0.0186356455, 0.0186356455, 0.0162925683, 0.00176412007, 0.00161881291, 0.00747877918, -0.0338929, 0.0150483754, 0.0669502839, -0.0014133394, -0.0253379401, 0.00352369924, 0.0107890582, 0.075705044, -0.0107890582, 0.00606657518, -0.0328030959, -0.0068657645, -0.00609836075, 0.0345467813, 0.00127143785, -0.0185902379, -0.0210513789, 0.0240665022, 0.00150983245, 0.00379615021, -0.0208879076, 0.00681581534, -0.00548534608, 0.0148304142, -0.0114792679, 0.0470068753, 0.0212148484, -0.00359635288, -0.0244660974, 0.0520199724, 0.00131344073, -0.0167103261, 0.0116154933, 0.0018197454, -0.016374303, -0.0208334178, 0.0227405746, -0.00231015729, 0.0270816274, 0.00597575819, -0.0235760901, -0.00932690501, -0.00900904555, -0.0183541141, 0.0175004341, 0.00619825954, 0.0339110643, -0.00493590347, -0.00780572044, -0.0483872928, 0.013549895, -0.00378706842, 0.000928036112, 0.00638443464, -0.00889098365, 0.0276083648, -0.057868585, 0.0196346324, -0.000965498155, 0.0312773697, 0.00394145725, -0.0375619084, 0.00531733502, 0.0297334827, 0.0227405746, -0.015584196, -0.0339473896, -0.0102623198, 0.0145579632, -0.000744699326, -0.0258101895, -0.0193621814, -0.00959027372, -0.0315861478, -0.00743337069, 0.0132501991, -0.0306598153, 0.0439190976, 0.0292430706, -0.0111704897, -0.00697928574, 0.0239211954, 0.00657969108, 0.00960843731, -0.00693841791, -0.00370079232, -0.0130049931, -0.00457944674, -0.0172279831, -0.0262824371, -0.00909986254, -0.00672499835, 0.0110070193, -0.0014666944, 0.000697020383, 0.0136588756, -0.0141129605, -0.00192872586, -0.044464, 0.0208697449, 0.0279534701, -0.0037303078, -0.0200705547, 0.033693105, -0.00578504242, 0.0205246396, 0.0360543467, -0.00303101703, 0.0336022861, 0.0336204506, 0.00394145725, -0.00485416828, 0.0100988494, 0.0111432448, -0.0290796012, 0.0198889207, 0.0249746721, -0.0125781531, -0.00984456204, -0.0199434105, 0.0343469866, -0.00535366172, -0.0176457409, -0.00888190139, -0.012060496, 0.0353823, 0.0127325421, -0.014794088, 0.00691571366, -0.0128687676, 0.0601208471, -0.0355639346, -0.0182451326, -0.00538090663, -0.030714307, -0.00736979861, -0.013822346, 0.0224136338, 0.018562993, 0.0266638678, -0.0149938855, -0.00162221852, 0.0378888473, -0.00706102094, 0.0396688618, -0.0179091096, -0.027826326, 0.0134227509, -0.0761409625, -0.0271179527, -0.0123601928, 0.0104984445, 0.0105075259, 0.00495860772, 0.0165922642, 0.0142673496, 0.0101079307, -0.0345286205, -0.043810118, 0.0187809542, -0.00846868474, 0.0163198132, 0.00848684739, -0.00325578917, -0.0396688618, 0.00889098365, -0.0185448285, 0.0150120482, -0.0128233591, 0.0250654891, 0.0198525935, -0.0480966792, -0.0449725725, -0.0263187643, -0.0246840585, 0.0156840943, 0.0236487444, -0.0236124173, -0.0526738539, -0.0103531368, 0.0553257093, -0.0258283522, -0.0394145735, 0.044464, 0.0447546132, 0.015130111, -0.00430245511, 0.02624611, -0.0171553288, -0.0208879076, 0.00669775298, -0.00856404193, 0.0111977346, 0.0241754837, -0.0204883125, -0.0762136206, 0.0214146469, 0.0129050948, 0.0297153201, -0.0207426, -0.00814174302, 0.0427203141, 0.0361814871, -0.0304781813, 0.00949037541, -0.0392329395, 0.0395235531, 0.0122693758, -0.00385291083, 0.0106982412, 0.00188558782, 0.0420301035, 0.0295700114, -0.00236351206, 0.0587041043, -0.0349282138, -0.0272632614, -0.00503580226, 0.0270816274, 0.0109434472, 0.0138132647, -0.030895941, -0.0116154933, 0.00567152118, -0.0137496926, -0.0168828778, 0.0212148484, 0.0210695416, 0.0397051871, 0.00638897531, -0.0382521152, -0.00773306657, 0.00334887649, -0.0478787161, -0.0320947245, 0.00104155741, 0.0555799976, 0.00382112479, -0.00502217934, -0.00341698923, -0.0119151892, 0.036635574, 0.0106709963, 0.0345467813, -0.00449317042, -0.00572147034, 0.00677040685, 0.010117013, -0.000279404136, -0.015311745, -0.0179817639, -0.00630269898, -0.0339837186, -0.0459897257, 0.00954486523, -0.0195983071, 0.0267001949, 0.0137133654, 0.0210332144, -0.0312047172, 0.0104621174, 0.00843235757, 0.00317405374, 0.0173278823, -0.0336022861, 0.00713367481, -0.0308232866, 0.0126326438, 0.0377072133, 0.01603828, 0.0101442579, -0.00275856606, -0.0425386801, 0.00810995698, 0.0271179527, 0.0195983071, -0.00721541, 0.0360725075, -0.0021205768, 0.0332390182, 0.0216870978, 0.0164106302, -0.00123284059, 0.0200342275, 0.0375982337, 0.00521743624, 0.0287526585, 0.0189444236, -0.0163379759, -0.0251018163, -0.0321673788, 0.0193440188, -0.00170849462, 0.0101987477, -0.0125327446, -0.0511844568, 0.0114611043, 0.0270816274, 0.0136497933, -0.00872297212, -0.0174459442, -0.0295881759, 0.00241346145, -0.00901358668, -0.0310957376, 0.00884103402, -0.0451905355, 0.0198162664, 0.0449362472, 0.00774668949, -0.0111341635, 0.010997938, -0.0425750054, 0.0207607634, 0.0494407713, -0.0135680586, -0.00546718296, -0.0311139, -0.0107073234, -0.0194529984, 0.0303147119, 0.0158838909, 0.0135226501, -0.00944496691, 0.0383974239, 0.0096992543, -0.010571098, -0.00871389, -0.0117153917, 0.0183541141, 0.00577142, -0.0617555529, 0.0316043124, 0.0056170309, 0.0241573192, 0.0299332794, 0.00483600469, 0.0241754837, -0.0222864896, 0.010816304, 0.0171553288, 0.0124964183, 0.0212330129, -0.0220685285, -0.0118425358, 0.0155115416, 0.0322581939, 0.0211603586, 0.017436862, -0.000357875717, 0.00906353537, 0.0297153201, -0.0249746721, -0.0226679202, 0.0181270707, -0.0167829804, -0.0249020196, -0.0336749405, 0.00590764545, -0.00212284713, 0.00240210933, -0.024756711, -0.0357637294, 0.016192669, 0.00613922859, -0.0194711629, -0.0178727843, 0.0196891241, -0.0248293653, -0.0105892615, 0.00337839196, -0.0227042474, -0.0193985086, 0.0101079307, 0.0097719077, 0.0194348358, -0.0127961142, 0.0277899988, 0.00717454217, -0.0164560378, -0.0282985736, -0.0232673138, 0.00261098845, 0.0111523261, -0.019198712, 0.0174550246, 0.0433015414, -0.0260463133, 0.000597689301, -0.0023544305, 0.00869118609, 0.000828137447, 0.0137769375, 0.0201795343, 0.00609382, -0.0319130905, 0.0147123523, 0.0395598821, 0.022086693, 0.028952457, -0.0373439454, 0.0221048556, -0.0308414493, 0.00704739848, 0.0225044508, -0.00369171076, -0.00420482643, 0.0040004882, 0.0153389899, 0.0102259926, 0.0130049931, 0.0174913518, -0.0189444236, 0.020506477, -0.0316769667, -0.0397051871, -0.00968109071, 0.00376209384, -0.020143209, -0.0161745064, 0.0113067152, -0.000466004683, -0.0110524278, 0.000884898065, 0.0102532385, -0.00428883219, -0.00397324329, 0.0114792679, -0.0141492868, -0.00302874669, -0.00174255099, -0.0310412478, 0.0397051871, -0.00238848687, -0.00234080781, 0.0497677103, 0.00936323125, -0.0561249, 0.00710642943, 0.00284030149, -0.00991721544, 0.000564768154, -0.00696566328, -0.0112522254, 0.00688392809, -0.0122784572, -0.0244297702, -0.00626637228, 0.0309504308, -0.00442051701, 0.0122784572, 0.0536546782, 0.0110705914, -0.0181906428, -0.0240665022, 0.0130958101, 0.0107164048, -0.0132411169, -0.000833245867, -0.0299332794, 0.010997938, 0.00650249654, 0.030714307, -0.020052392, -0.0251563061, -0.0150302118, 0.00258374331, -0.015039294, 0.0170281865, -0.0056533576, -0.0192350391, 0.0274085682, 0.0214691367, -0.0118334536, 0.01400398, -0.0249928366, 0.00338066253, 0.010480281, -0.00329211587, -0.00113805046, 0.00126462663, -0.0247203857, 0.00380069111, -0.0165831819, -0.000188870967, 0.00840057153, -0.00899542309, -0.0221593454, 0.00262688147, -0.033111874, -0.0160019528, -0.0168737974, -0.00200592028, -0.0234489478, 0.00124305754, 0.0114066144, -0.0126417251, 0.0256285556, -0.00365765439, -0.00368716987, 0.0382884443, 0.00928603765, -0.00185266661, 0.0944496691, -0.0180362538, -0.0133228526, -0.00248384476, 0.0288798027, 0.0305871628, 0.0040458967, -0.0114338594, -0.0137951011, 0.0618282072, 0.0308777764, -0.0088364929, -0.0403953977, -0.0163016506, -0.0254650842, 0.00771490345, 0.0180998258, -0.0144671462, -0.00438873097, 0.027372241, -0.000937685429, 0.0128687676, -0.00929511897, 0.0146941887, 0.00910440367, 0.018562993, 0.0311320648, -0.0136861205, 0.0175821688, 0.00257239118, 0.0352006666, -0.0145761268, -0.038034156, -0.00521289511, 0.0205428023, -0.0133773424, 0.0152844992, -0.0506032258, -0.00389831932, 0.0188172795, 0.0100806858, -0.0113975322, -0.00598938065, -0.0146215353, 0.0130140744, -0.0378888473, -0.000821326161, 0.0198889207, 0.0389423259, 0.0289706197, 0.00284257182, -0.000651611888, -0.00673407968, 0.013123055, 0.00244297693, 0.0039641615, -0.0130140744, 0.0140584698, -0.0182542149, 0.000326089765, -0.016129097, 0.0102532385, 0.0292793978, -0.0118606994, -0.00238848687, -0.0112976339, -0.00543993758, 0.021905059, 0.0230675153, 0.0065524457, 0.00790107809, 0.0120514147, 0.0338020846, 0.0126598887, 0.0174005348, -0.00652066, -0.0224136338, -0.0239575226, -0.0128778489, -0.0248656925, -0.0147395972, -0.0363631211, 0.00798281375, -0.0148485778, 0.0224136338, 0.00583045091, -0.0158838909, 0.0262642745, -0.032112889, 0.000317291851, 0.000140553486, -0.0047905962, -0.0352914818, 0.011878862, -0.0187809542, -0.00662964024, 0.004708861, 0.0210332144, -0.00207403302, 0.0292067435, 0.0136861205, 0.00746515673, 0.0300240964, 0.00359862321, -0.0044318689, 0.00821439642, 0.00593489036, -0.00966292806, 0.00568060298, 0.0340927, 0.0194348358, -0.0185175836, 0.00239756843, 0.0225226134, -0.00985364337, -0.0135317314, 0.0496587306, -0.0328394249, 0.038034156, -0.0286073517, -0.022268327, 0.0105166072, 0.00366900652, 0.0101805842, 0.0289161298, 0.0289161298, -0.0136043848, 0.0101079307, 0.0232854765, 0.00297652697, -0.0327486061, -0.0109434472, -0.0327304415, -0.0213419925, -0.020506477, -0.00901812688, 0.0161381792, -0.0441007316, -0.00294928183, 0.0160019528, 0.00264050392, 0.00362813869, 0.0295155216, 0.0167466532, -0.00370306289, 0.0210877061, 0.0044409507, 0.0216144435, 0.0072971452, 0.00775577081, 0.0312955342, 0.00125213922, -0.0286436789, -0.0346194357, -0.0246295687, -0.0326759517, -0.0330392197, 0.0254287571, -0.00779209798, -0.0304600187, -0.00165400445, 0.00299014943, -0.0551440753, 0.00988088828, -0.0319130905, -0.0448272675, 0.022086693, 0.0159747079, 0.00847776607, -0.00438646041, 0.0225226134, 0.043047253, -0.00240892055, 0.0296245031, -0.00715637906, -0.00429791398, 0.0136952018, 0.00198889198, 0.00163811143, 0.00638443464, -0.0270997901, 0.0116064111, 0.0311683919, -0.0174731892, 0.00621188199, 0.0201068819, 0.0177183952, 0.008323377, 0.0346739255, -0.00912256632, 0.0117880451, -0.030169405, 0.0239575226, 0.0136316307, -0.0184358489, 0.0242844634, 0.0395598821, -0.0274448954, -0.0184540115, 0.00803276245, 0.00912710745, 0.00921792444, 0.00750148343, -0.00471340166, 0.00530825322, 0.00817352906, 0.0173823722, 0.0296789929, 0.0378888473, -0.0021035485, 0.00281305634, -0.0469705462, 0.0281714313, 0.00338520342, 0.00707010273, 0.0234307833, -0.00572147034, 0.0227950644, 0.00814628415, -0.0188536067, -0.0233399663, 0.0047542695, -0.00988088828, 0.0117153917, -0.0057350928, -0.00609382, -0.0346557647, 0.00671137543, 0.0036531135, 0.00215463317, 0.03207656, -0.00459079864, 0.00041832577, -0.00730622699, -0.0117698824, 0.00751056522, 0.0166921634, 0.00774214836, -0.000284512615, -0.0237940513, -0.0185902379, 0.0208515804, 0.00744699314, 0.019289529, -0.01020783, 0.0101624215, -0.0272087697, -0.0420301035, 0.0179000292, -0.0250473265, -0.0297153201, 0.0143672479, 0.0445366539, -0.00188104692, -3.92003021e-05, -0.0307687968, 0.00901812688, 0.0145942904, 0.016219914, 0.00047537018, -0.0353096463, -0.00056363293, -0.0579412393, 0.0186174829, 0.0326759517, 0.000654449919, -0.00726990029, -0.0017709313, 0.00770582166, -0.00602570735, -0.0342924967, 0.0227769017, -0.0195619799, -0.024302626, -0.0138677545, 0.0482056588, 0.0194348358, 0.00243389537, -0.00538998842, -0.00456809439, 0.0260281488, -0.00187310041, 0.000668072491, -0.0367445536, -0.00316497218, -0.0175640061, 0.00996262394, 0.0088364929, 0.0197072867, -0.00550350966, -0.00311956368, -0.019289529, 0.000202209703, -0.0450089, 0.00531279389, -0.051947318, 0.00841419399, -0.00380069111, 0.0288979672, 0.025011, -0.00540361088, -0.00746515673, 0.00442051701, 0.0237577241, 0.0157113392, -0.000712913403, 0.0114247771, 0.0103258919, -0.0209968891, 0.00852771569, -0.00721995067, 0.00333298347, -0.0424660258, -0.0243752804, -0.0270089731, -0.0295881759, -0.0108072218, -0.0350916833, -0.0138132647, -0.00327168219, 0.00628907653, -0.00426158728, -0.00145988318, -0.00214101048, -0.037089657, -0.0259010065, -0.00935415, 0.00114940258, -7.72653948e-05, 0.003105941, -0.012151313, -0.0107436497, 0.0114520229, -0.0300240964, -0.0581955276, -0.0223591439, -0.000484735676, -0.0159293, -0.00205927528, 0.00983548, 0.0174187, 0.0427566394, -0.01266897, 0.00190488633, 0.0059666764, -0.0084368987, 0.0100988494, -0.0183268692, -0.00289479154, -0.0124146827, -0.0240665022, -0.0240301751, 0.00799643621, 0.0123692742, -0.00620280067, 0.0121967215, -0.00625275, -0.0110342642, -0.00622096378, -0.00751056522, 0.00591218611, -0.0100080324, -0.00195710617, -0.0143036759, -0.0300967507, -0.00731984945, 0.00293111848, -0.0208515804, -0.00769674, -0.00706102094, -0.0424296968, 0.0254287571, 0.012423764, 0.0201795343, -0.0305689983, 0.00175390311, 0.0182088073, -0.0116154933, -0.00744699314, 0.000613014679, -0.0190534052, 0.00668867119, -0.00279489299, -0.0115155941, -0.000276991806, 0.019017078, 0.031350024, -0.010907121, -0.00919067953, -0.00907715783, -0.0079737315, -0.00529917143, 0.0050585065, -0.00661601778, -0.0243571177, 0.00129641255, -0.0041957451, 0.0229948629, -0.0127234608, -0.0079737315, 0.0108344667, -0.0104984445, -0.0235397648, -0.00259736599, 0.0366719, -0.00513570057, -0.00803730357, -0.0164923649, -0.0260099862, 0.0142128589, 0.0224499609, -0.0196346324, 0.0237395614, -0.00401638122, -0.0191260576, 0.00935415, 0.0194711629, -0.0127325421, -0.0291704182, -0.00214782171, -0.00433878182, -0.00313999737, 0.00995354168, -0.00449317042, -0.0251381435, 0.00455220183, 0.0266638678, 0.0118152909, -0.031894926, -0.00569876609, -0.00723811425, 0.0113248788, 0.0224862862, -0.0254105944, -0.00338747376, 0.00552167324, -0.000532982231, -0.00995354168, -0.00492228102, 0.0319857448, 0.0293883774, -0.00814628415, -0.0276810192, 0.0272632614, -0.0211603586, -0.0114066144, -0.0269544832, 0.00186061312, -0.00378252775, -0.00556254061, -0.0159928724, -0.0101715028, 0.0115337577, 0.0223228168, 0.109997541, -0.0106619149, -0.000647638633, -0.0112249805, -0.0179999266, 0.0170917567, 0.0122239674, -0.0121785589, 0.0341471881, -0.0150756203, 0.0348010696, 0.021814242, -0.0144580649, -0.00259055453, -0.00512661925, -0.0152935814, -0.0195619799, -0.00891822856, 0.0113975322, 0.0125509081, -0.0129959118, -0.0130504016, 0.01780013, -0.00469523855, 0.016374303, 0.0109616108, -0.0107345684, -0.00034311795, -0.0455538034, -0.00237940508, 0.0312228817, -0.00268591242, 0.00811449811, 0.00184244965, -0.00469069742, 0.0300967507, -0.0104530361, 0.00532641634, -0.0186901372, 0.0265548881, 0.0158112384, -0.00766041316, -0.0411945879, 0.0150665389, -0.00141447468, 0.0101260943, -0.00976282638, 0.0114066144, -0.00601208489, -0.00393010536, -0.0140130613, 0.00992629677, -0.0345286205, -0.00672499835, -0.00929966, 0.0278626531, 0.00634356681, -0.0120968232, 0.00899996329, -0.00373938959, 0.00606657518, -0.0156840943, 0.0184176862, -0.0406860113, 8.52828307e-05, -0.00134409149, -0.0169464499, -0.00602570735, 0.00182996236, -0.00591218611, -0.0241573192, 0.0226315949, -0.00979007129, 0.024756711, -0.0203793328, -0.00968109071, 0.0101896664, -0.00107504614, 0.00338974409, -0.0102259926, 0.0124328462, 0.0389423259, -0.00665688561, 0.0095357839, -0.00633902615, 0.000953010807, -0.000850274053, -0.00316270161, 0.0032217328, -0.0284075551, -0.003607705, -0.019961575, -0.00149620988, -0.00381431356, -0.000150841341, -0.0157930739, 0.0115337577, 0.00919067953, -0.0318586, -0.00387107418, 0.00996262394, 0.0172461458, 0.0142310224, -0.00433878182, 0.00999895, -0.00519019086, 0.0198162664, 0.00633902615, 0.00618009642, 0.00426839851, 0.0408676453, -0.00120673073, 0.00939955842, 0.00562157156, 0.015947463, 0.00161200156, -0.00160178472, 0.00183450326, 0.00396870263, 0.000591445656, -0.0117789637, 0.0165377744, 0.0219777115, -0.0109162023, -0.0116245747, -0.0340745337, 0.03730762, -0.0127416234, -0.00603933, 0.0223954692, -0.0172007382, 0.024847528, -0.00143263803, -0.0204338226, 0.0185448285, -0.0191260576, 0.000864464208, 0.0155751137, 0.00360543444, -0.00015211846, -0.0104621174, -0.0054535605, -0.00296517485, 0.029406542, -0.0125236632, 0.0118334536, -0.0215962809, 0.0170009397, 0.0165741015, -0.00260644755, -0.017073594, -0.000577255501, 0.0313863531, -0.0034510456, 0.024847528, -0.0027812703, 0.00421844935, 0.0174550246, 0.0333479978, -0.000199229777, 0.03293024, 0.016646754, 0.0141311241, 0.0118879443, 0.015402562, 0.00767857675, -0.00828251, -0.0403590687, -0.0145125547, 0.00664326269, -0.00876838062, -0.0125872353, -0.0182814598, -0.0245024245, 0.0391239598, 0.0146851074, -0.00287662819, 0.003105941, 0.0335296318, -0.000855950115, 0.00979007129, 0.00271315756, -0.0278989803, 0.0167557355, -0.000658423174, 0.0145125547, -0.00739704398, 0.00916797481, -0.00198321603, 0.0201976988, 0.0115065128, 0.0143672479, -0.00910440367, 0.0173369627, 0.0224317964, -0.0120241698, 0.0146487802, -0.00649341475, -0.00828705076, -0.0109706922, -0.0205791295, -0.0123511106, 0.0115428399, 0.00218414865, -0.0111341635, -0.0296971556, -0.0201613717, -0.0196527969, 0.0115155941, 0.00766041316, -0.0131412186, -0.00156318746, 0.0154116433, 0.0218687318, 0.0146396989, 0.0101260943, 0.00778301619, -0.0221956726, 0.0061664735, 0.0095357839, 0.00714729726, -0.00487687252, 0.0131775457, -0.00562157156, 0.00279716332, -0.0263914168, 0.0272269342, -0.011270389, 0.0267728493, 0.0260099862, -0.0320584, 0.00937231351, 0.0214873, -0.0112794703, 0.0219595488, 0.0080418447, 0.037452925, -0.00289025065, -0.0291522536, 0.0183813591, 0.0208152551, 0.0240120124, -0.0117880451, -0.012759787, 0.0059303497, 0.000118133037, 0.0153753161, 0.0166649185, -0.00712459302, 0.00365992473, -0.0148213329, -0.0114611043, -0.00189466949, -0.00681581534, 0.00914527103, 0.012941421, 0.0172007382, 0.010298647, 0.00627091341, -0.0311683919, -0.00324897794, -0.00122262374, 0.0103168096, 0.00273813237, -0.0310049206, 0.0154298069, -0.0172189, -0.0133228526, -0.00581228733, 0.0230311882, -0.0410856046, 0.0165922642, -0.0182178877, 0.0282804109, -0.00910894386, 0.0013191168, 0.000805433199, -0.0221230183, -0.0359998532, -0.00574871572, -0.019289529, 0.0389423259, 0.00483600469, -0.00485870894, 0.0119424341, 0.00947221182, -0.0279353056, 0.027826326, 0.0160110351, -0.00344650471, -0.00106993772, -0.0032989271, -0.0232854765, -0.002704076, 0.0116790654, 0.0235942546, 0.00318540586, -0.00460215099, -0.013123055, 0.0125872353, -0.0346012749, 0.0056079491, 0.00155864656, 0.0177456401, -0.00168579037, -0.0308777764, -0.000892844517, 0.00477243261, -0.00891368743, -0.0332753435, 0.0134863229, -0.0381068103, -0.0330210589, 0.00755143259, -0.016646754, 0.0137678562, 0.0212148484, 0.00414352538, -0.0248838551, -0.0184358489, 0.00366900652, 0.00681581534, -0.061210651, -0.0102804834, -0.00753781, -0.00132252241, -0.0125236632, -0.00265412661, -0.0105801793, -0.0236487444, 0.0157295018, -0.0343469866, 0.00660239533, 0.0260099862, -0.0182451326, 0.00729260454, -0.018744627, -0.00378479809, 0.0198525935, 0.0158203188, -0.0157385841, 0.0242844634, -0.0123238657, 0.0368535332, 0.00233626715, -0.0263732541, 0.0173914544, 0.0212511756, 0.00565789873, 0.0101533392, -0.0329484046, -0.00721086888, 0.00368262897, 0.0151573559, 0.0157204214, 0.0158657283, 0.0179636013, 0.0414488725, -0.00652520079, 0.0171553288, -0.04083132, 0.0145761268, 0.00012615048, -0.0182360522, -0.000334887649, 0.00710642943, -0.0210877061, 0.0206699464, 0.00497677084, 0.0180816632, 0.00923154689, 0.00581682846, 0.0106165064, 0.0213238299, 0.000640827406, -0.000276140403, -0.0151482737, -0.0127234608, -0.00682489667, -0.0178455394, -0.0205791295, -0.0110615091, -0.00788291451, 0.0171462484, -0.0394872278, -0.000612447097, 0.00440008333, -0.00723357312, 0.0334933065, -0.012605398, 0.0288798027, 0.00704739848, 0.0108980387, -0.01443082, -0.00350099499, 0.00466799317, -0.022268327, 0.00890006498, -0.017255228, 0.00399594754, -0.00102169113, -0.0232854765, -0.0233036391, 0.0162380785, 0.00575325638, -0.0096992543, -0.0142764309, -0.0142945945, 0.0336749405, -0.0352369919, 0.00603933, 0.000372633454, -0.015039294, -0.000270606251, -0.00414125482, 0.00499493442, 0.0080463849, -0.00269272388, 0.00556708174, 0.0306779798, 0.0405407026, -0.00662055844, -0.016219914, 0.000630042865, -0.00351461745, -0.00551713211, -0.00721541, 0.00831883587, -0.0197981037, 0.00777847506, 0.00595305394, 0.0191442221, -0.00431834767, -0.00382112479, 0.00989905186, -0.0225589406, 0.00668413052, 0.0025882842, -0.00435467483, -0.0164469574, 0.0240665022, 0.00279716332, -0.0152663365, -0.015039294, 0.00386880385, -0.0227950644, 0.000929171336, 0.00063628651, -0.00912256632, -0.000238820299, 0.0133500975, -0.0189807508, 0.00398459565, 2.11788065e-05, -0.0116336569, 0.011116, -0.0124328462, 0.00814174302, -0.00129300694, -0.00688846875, 0.0156114409, -0.010117013, 0.0190897305, -0.00362132746, -0.000133458409, 0.0192713644, -0.00519019086, 0.00692479545, 0.00380977266, -0.00351915834, 0.0131139737, -0.0315861478, 0.000427407474, -0.00677494751, 0.0281714313, 8.4573323e-05, 0.0133228526, 0.00178114825, 0.00939955842, -0.00929511897, -0.0145761268, 0.00570330722, -0.005103915, 0.0251744706, -0.0145761268, 0.040613357, 0.0059666764, 0.0238667056, -0.00745607493, 0.00368262897, 0.00516748661, 0.00343742315, -0.0100897672, -0.0128960125, -0.00239756843, 0.00714275613, -0.00312864524, -0.00614831038, -0.00354186259, -0.0115610026, -0.00207857392, -0.0179908462, -0.000640827406, -0.0195256528, 0.0279353056, 0.0171099212, -0.000146300488, 0.0239575226, 0.016374303, 0.00478605554, -0.00218528393, -0.019289529, -0.0031763243, 0.000790675404, 0.0169555321, -0.00415714784, -0.011361206, -0.0106528327, -0.0038824263, 0.00155637623, 0.0144762285, -0.0101351757, 0.020778928, -0.00311956368, 0.00326714129, 0.0213056654, 0.0199434105, 0.00723357312, -0.0143763293, -0.0133137712, 0.00099501363, 4.34218746e-05, -0.0135589764, -0.0122693758, -0.00858674664, -0.0120877419, 0.0118970256, -0.0134045882, 0.014612454, 0.00767403562, 0.010571098, 0.0178092122, -0.0255377386, 0.00476789195, 0.0011749448, -0.0262642745, 0.00542631513, -0.00956302881, -0.00921792444, -0.00320811, 0.00482238224, -0.0127143785, 0.0343833119, -0.00304463971, 0.0162744038, 0.00198321603, 0.00471794279, 0.0014916691, 0.0103077283, -0.00652520079, -0.00273586181, 0.00236578262, 0.00269499421, 0.00252925325, 0.0171008389, -0.0109616108, 0.0129777482, -0.00944496691, -0.00169714249, -0.0348555595, -0.00770128099, 0.0167648159, 0.0130413203, 0.00519473199, -0.00263596326, -0.0162744038, -0.00587131828, 0.0142673496, -0.0129595846, 0.0121694766, 0.0172824729, -0.01443082, -0.00183223281, -0.0116427382, 0.00835062191, 0.00806454848, 0.0235760901, 0.0133864246, -0.0246114042, -0.00483600469, -0.00289025065, 0.00776939373, 0.00287662819, 0.0156477671, -0.0165286921, -0.00427293917, -0.00566243939, -0.0279716328, -0.0137769375, -0.00271769846, 0.00749240164, -0.0172189, 0.0153662348, -0.000639692182, -0.0213238299, -0.021814242, -0.00951762, 0.020143209, -0.0472974889, -0.0231401697, 0.0128142778, 0.0121876402, 0.0027858112, -0.00256103906, -0.0227769017, -0.000441030017, -0.0122693758, -0.017527679, 0.0134318331, -0.00534458, 0.00412082113, -0.0048269229, 0.00407541264, 0.0127507057, 0.0199434105, 0.00137587741, -0.00712913368, -0.0132592805, 0.00356456684, -0.000495520188, 0.0233218037, -0.0109343659, 0.013731529, 0.0157113392, -0.0182451326, 0.00433197059, -0.0198525935, -0.0341835134, -0.00992629677, 0.00814174302, -0.00801005866, -0.00733801303, 0.0288071502, -0.00998986885, -0.0170554314, 0.00970833655, -0.00858674664, 0.000389377848, 0.0123057021, -0.0009717418, 0.0122058038, -0.00356229651, 0.0200705547, 0.00826888718, 0.00155070017, -0.0111704897, -0.0110615091, 0.00327849342, 0.0217052605, -0.0055352957, -0.00996262394, 0.00924516935, -0.00462485524, 0.0202885158, 0.0127052972, -0.00978099, 0.0204519853, 0.0153480712, -0.00964476448, -0.00855041947, -0.00317405374, -0.015493379, -0.030805124, -0.00197186391, -0.0105620157, 0.0154298069, 0.0254105944, 0.00759684108, 0.0084368987, 0.0012612209, -0.00617101463, 0.00329665677, -0.00160178472, -0.0201613717, -0.00241800235, -0.0128051955, -0.011116, -0.00688846875, -0.000637989375, -0.0183722768, 0.00538998842, -0.0124873361, -0.00134522666, -0.00451814523, 0.00719270576, -0.0323671736, -0.00625729049, 0.027735509, 0.0018242863, 0.0228132289, 0.0358363837, -0.000591445656, -0.00126689696, 0.0231220052, 0.0049086581, 0.00146328879, 0.00576687884, 0.0211603586, -0.0103077283, 0.00518110907, -0.00703831669, -0.0198162664, 0.0135771399, -0.0133137712, 0.00108923623, -0.000544334354, 0.00259509543, 0.0147123523, 0.0296971556, 0.0218505673, 0.00484962715, 0.00196164707, 0.00200819061, 0.00461350288, -0.0213056654, 0.00687938696, 0.00471794279, -0.0298061371, 4.92753134e-05, -0.00435467483, -0.00597575819, 0.00993537903, 0.0256285556, -0.00660239533, -2.67661799e-05, 0.0170281865, 0.019961575, 0.00857766438, 0.0122330487, 0.000829272671, 0.0195438154, 0.0358000584, -0.000341698935, -0.00718816463, -0.0236305818, 0.00386199262, 0.00199116254, 0.0105801793, -0.0187809542, 0.00875475816, -0.00675224327, -0.00741974823, -0.01400398, 0.0138495909, 0.0346376, 0.0297516454, -0.010389464, 0.0230856799, 0.00177547219, -0.00649795588, 0.0194348358, 0.0141492868, -0.0104621174, -0.000644800602, 0.0246114042, -0.0130685652, 0.00201273151, 0.021814242, -0.00275402516, 0.016374303, -0.0154388882, -0.0107890582, 0.00684760092, -0.0228677187, 0.00779209798, 0.0298061371, -0.0166104268, -0.0170372669, -0.00125440967, 0.015493379, -0.0249020196, -0.0179726817, -0.00732893124, 0.00551259145, 0.0296063386, 0.00406406028, 0.00018447201, 0.00450679334, 0.046570953, -0.0179454368, -0.027372241, 0.0251199789, -0.00341698923, -0.00335114705, 0.0100716045, -0.0176003333, 0.00905899517, 0.00667050807, -0.00317859463, 0.00389150809, -0.0212330129, -0.0125872353, -0.00718816463, -0.0238485411, 0.0245024245, -0.0165105294, 0.0157295018, 0.00252925325, -0.000444719451, -0.0119605977, -0.0159928724, 0.00546264183, 0.00117380964, -0.0191260576, -0.0144035751, -0.00915889349, -0.00664780382, 0.00214782171, 0.00600754377, -0.00734709436, 0.00856858306, -0.0129686659, 0.00387788541, -0.00164719322, 0.0179181919, -0.00513570057, -0.0166195091, -0.0192532018, 0.00581682846, -0.0110615091, -0.00624366803, -0.0155660324, -0.00569422543, -0.0111432448, -0.0129323397, 0.0143672479, 0.000956984062, 0.000189154758, -0.00250427844, 0.0223046523, -0.0030242058, 0.00445684372, 0.0155387875, -0.024665894, -0.009022668, -0.00546264183, 0.0317859463, -0.0166921634, -0.024393443, 0.0162017513, -0.000232150938, -0.00763316825, 0.00012863375, -0.013395506, 0.0251744706, 0.00111137296, -0.00708372518, -0.0211240314, -0.0225044508, -0.00234307838, 0.0148939863, -0.0229766984, 0.0044386806, 0.00824164227, -0.0269363187, 0.00810541678, -0.0268999934, 0.0046725343, -0.00912256632, 0.00975374505, -0.00924062915, -0.00145193667, 0.0191260576, -0.000452665932, 0.008323377, -0.00782388356, -0.0241391566, -0.001298683, -0.0213238299, -0.0220685285, 0.0291522536, -0.00629815832, 0.0129141761, 0.00187083, 0.0129777482, 0.0356184244, 0.00122829981, -0.00515840482, 0.00591218611, -0.0148758227, 0.00606657518, 0.00625729049, -0.0175004341, 0.00460669165, 0.0119787613, 0.00568514364, 0.00480876, 0.00426839851, -0.00771490345, 0.00617555529, -0.013368261, 0.00377344596, 0.00502217934, -2.31654285e-05, 0.00259509543, 0.0164560378, -0.00894547347, 0.00905899517, 0.0173914544, 0.0172733907, -0.0104621174, 0.00681581534, 0.00756959617, 0.0182088073, -0.0286618415, 0.0122875385, -0.0123511106, 0.00619371887, 0.0158384833, -0.019198712, 0.00902720913, 0.00656152749, -0.0113248788, -0.000335171469, 0.00952670258, -0.000672613329, 0.017527679, 0.00124305754, 0.00173914537, 0.00974466279, -0.0160019528, 0.00403908547, 0.000525603304, 0.0110342642, -0.0154116433, 0.0151936822, 0.0110524278, 0.005498969, -0.00586223695, -0.0071790833, -0.0267728493, 0.00178228342, 0.000806000782, 0.0221411828, 0.00258147297, -0.0123420293, 0.00905899517, -0.00223750365, -0.0193803459, 0.00339655555, -0.0056533576, 2.74402119e-05, 0.00350553589, -0.00872297212, -0.0151482737, -0.00628907653, 0.018472176, 0.0233218037, -0.00265639694, 0.00241346145, -0.0137678562, 0.0159837902, 0.00487687252, 0.0202521887, 0.00212738803, -0.0137587739, 0.001705089, 0.000747537357, -0.0156931765, 0.0217052605, 0.00498131197, 0.00974466279, -0.00161313685, -0.00654790504, 0.0201068819, -0.0116790654, -0.0130049931, -0.0276991818, -0.000998986885, -0.0173642077, 0.00582591, -0.00122716452, -0.019198712, -0.0142764309, 0.00714729726, -0.00968109071, -2.58970322e-05, -0.0106255878, 0.00201386679, 0.00993537903, 0.00413898425, -0.012850604, -0.00355321472, 0.00227042474, -0.0139313266, 0.00736525794, -0.000264504488, -0.0115337577, 0.0223228168, -0.00170622417, 0.0316951312, 0.0280624498, 0.00669321232, 0.0107708955, 0.0233762935, -0.0153843984, -0.00443413947, -0.000118487791, 0.00264050392, -0.0148304142, 0.00369625143, 0.00258147297, 0.0168737974, 0.016982777, 0.0136588756, -0.00744245248, 0.00705648027, 0.0098173162, 0.0201068819, 0.00269726454, -0.00670229411, 0.00923154689, 0.0175458416, 0.00702469423, -0.0203611683, 0.00358954165, -0.00348056108, -0.0034555865, 0.0143309208, 0.0114156958, -0.00719724642, -0.00483600469, 0.0277173463, -0.0165105294, 0.0302420575, 0.00154615927, 0.0149938855, 0.0048723314, -0.00943588559, 0.0277899988, -0.0104348725, 0.00228972337, -0.00277218875, -0.00386426295, -0.0217960775, 0.00607111584, -0.0145034734, -0.0184176862, -0.00193440192, -0.00248384476, -0.0102350749, 0.0150029669, 0.00287662819, -8.40057182e-05, -0.00567606185, -0.00767857675, -0.00284257182, 0.00190942723, 0.0111886533, -0.00355548528, -0.00332617224, -0.0164469574, -0.0258101895, -0.00212625274, 0.0115700848, -0.0150756203, -0.00497223, -0.0065524457, -0.0326214619, 0.0371986404, 0.0281714313, 0.0188536067, -0.00988997053, -0.000664099236, -0.00274040271, -0.00761500467, -0.0193440188, 0.00638443464, 0.00394826848, -0.00932690501, 0.0130958101, -0.00736525794, 0.0199252479, -0.0129323397, -0.0229403712, -0.0247930381, 0.00807817094, -0.0225226134, 0.0219413843, 0.0295336861, -0.00494044414, -0.00854587834, 0.0157839935, -0.0194529984, -0.00503580226, -0.00887282, 0.0136679569, 0.0237213988, 0.0116699832, -0.0259191692, -0.00459533976, -0.0225589406, 0.00879562553, 0.0217779148, -0.00378252775, -0.0117698824, -0.00150302122, -0.0266457051, 0.00867756363, 0.0100988494, 0.0154842967, -0.00332617224, -0.00480421865, -0.00672499835, -0.00255422783, 0.0117153917, 0.0024361657, -0.0219777115, -0.00587131828, 0.00371668534, -0.0154752154, -0.0156477671, 0.0231401697, 0.0073425537, 0.0131957084, -0.00467707496, -0.030532673, -0.00642984314, -0.00702469423, 0.0239393581, -0.00408449396, -0.000665802043, -0.000230306207, 0.00628907653, -0.00818261, 0.00256103906, 0.0249565095, -0.0274812207, -0.0116336569, 0.00506304717, -0.00120219, 0.00379160931, 0.0129323397, 0.00574417459, 0.014794088, -0.00119310815, -0.0356002599, 0.0131321372, -0.00799643621, -0.000768538797, -0.00319221732, -0.00159951427, -0.0115065128, -0.0197254494, -0.00703831669, -0.000797486689, -0.00948129408, -0.00856404193, 0.00874113571, 0.00754689192, -0.0172824729, -0.00301058334, -0.00998078752, 0.00118062086, -0.020143209, 0.00407314207, 0.0279897973, -0.00860945, -0.0130231567, -1.24873359e-05, -0.00528100785, 0.00899996329, 0.020778928, 0.0230856799, 0.00327395252, -0.0173732899, 0.00777847506, -0.00265866751, -0.00257012085, 0.00770582166, -0.00323535525, 0.00260417722, -0.000559375912, -0.0145942904, 0.00757867796, -0.00539452909, 0.0136316307, -0.00533549814, 0.00316497218, 0.00174255099, -0.00506758783, -0.00565789873, -0.00116586313, 0.00145534228, 0.00274267304, -0.0149030685, -0.00929511897, 0.00484962715, -0.0162108336, -0.00692933658, -0.00828705076, -0.0197617766, -0.00393918715, -0.00927241426, 0.0135953035, 0.00728352275, -0.010543853, -0.00420709699, 0.0050585065, -0.0188536067, -0.0120786596, 0.00558070419, 0.0270453, 0.0339837186, -0.00392329413, 0.0114520229, 0.00316497218, 0.004708861, 0.0190352406, -0.00416622963, 0.0132229542, 0.00794648658, 0.00773306657, -0.00472248346, -0.00172211719, 0.00108753343, -0.00493590347, -0.0116790654, 0.0150211304, 0.0289706197, -0.0011999195, -0.0119969249, -0.000372349663, -0.0193440188, 0.00740612578, 0.0153299076, 0.0150211304, -0.00151550851, 0.0189989135, -0.0358908735, -0.00735163549, -0.0034192598, 0.00714275613, 0.0196164697, -0.00445230305, 0.00731530879, 0.0117971273, -0.0232854765, 0.0147305159, -0.00848684739, -0.0105347708, -0.0115519213, -0.0084368987, 0.0117335552, 0.0192350391, 0.0274085682, 0.000429110281, -0.0096992543, -0.00907715783, 0.000305655936, 0.00491319923, -0.00353959226, -0.00346239773, -0.0174005348, 0.0193803459, -0.00751056522, -0.0220685285, 0.00181293418, 0.0115428399, -0.01063467, -0.0136134671, -0.00145534228, 0.0139858164, 0.0124782547, 0.030805124, 0.0107708955, -0.00204338226, -0.00280170422, -0.00845506135, -0.00617101463, 0.00250427844, 0.00147918169, 0.013459078, -0.0330755487, 0.00466799317, 0.000630042865, 0.000776485249, 0.00484054536, 0.013640712, 1.6363023e-05, 0.0179000292, 0.0138949994, 0.00336022861, 0.00917705707, 0.0171099212, -0.0150483754, 0.00340790767, -0.00094052346, -0.0234489478, 0.0106165064, 0.00313091581, -0.010816304, -0.0243389532, 0.00333752437, 0.00353505136, 0.00341698923, 0.0152844992, -0.00430699578, -0.0420664288, -0.00485416828, 0.00209787255, -0.00159724383, -0.00377571629, -0.00257012085, -0.0043297, -0.0117517188, -0.00304918038, 0.00950853899, -0.00411628, -0.00663418137, -0.00574417459, 0.0102441562, 0.00158135081, 0.0334206522, -0.000320697494, -0.00378706842, 0.000137360694, 0.00441824645, -0.0146941887, -0.00736979861, -0.00207857392, -0.000967200962, 0.0207970906, -0.0167012438, -0.000291749573, -0.012850604, 0.00893639214, 0.00120446028, 0.0287344959, 0.0115428399, -0.0188899338, -0.00465437071, 0.0024770333, 0.00537182484, 0.00367127685, -0.0159202181, 0.0117244739, 0.0047905962, 0.0152935814, 0.00721086888, -0.00936323125, -0.016283486, 0.00171757629, -0.0403227434, -0.0190352406, 0.00406178972, 0.00528554898, -0.0143763293, -0.00392102357, -0.0188899338, -0.00677040685, 0.0238667056, 0.0179091096, -0.0193803459, -0.0151391923, -0.0248112027, 0.00267229, 0.0145034734, -0.00289706211, 0.0139222443, 0.0207426, -0.0033738513, -0.0322037041, 0.0112158982, -0.0145034734, 0.0214691367, -0.010389464, -0.00285619427, -0.00499947509, -0.0233581308, 0.00732893124, 0.0176003333, -0.0064343838, 0.00926787406, -0.0266820323, 0.0159747079, 0.00209673727, 0.00305145094, 0.00544901937, -0.011969679, -0.00497223, -0.0829704, 0.00118289131, 0.00205246406, -0.00274267304, -0.00363040925, -0.00285619427, -0.00171644113, -0.00357137807, 0.0204338226, 0.0143127581, 0.00862307288, -0.0315679871, -5.95986494e-05, -0.0189080965, 0.00645708805, -0.0129959118, 0.00182542147, 0.0159293, -0.00312410458, -0.0112340618, 0.00900904555, -0.0209605619, 0.010480281, 0.0051402417, -0.00911348499, -0.0116336569, -0.00230675144, -0.0132411169, -0.00752872834, -0.021995876, -0.0142673496, -0.0140675521, 0.0179091096, 0.00876383949, 0.00418666331, -0.0143218394, 0.00195143011, -0.0223228168, -0.00558070419, 0.00717454217, -0.00803276245, -0.0124600912, 0.00947221182, -0.0142128589, 0.00175957917, -0.00381431356, 0.00341698923, 0.00385745172, 0.0300967507, 0.00459533976, -0.0170826763, 0.014948477, -0.0225226134, -0.00847776607, 0.0160110351, -0.000244496361, -0.0045567425, -0.024393443, 0.00638897531, -0.00212511746, -0.0112340618, -0.0227769017, 0.00368716987, -0.00609382, -0.00739704398, 0.0199252479, -0.0133137712, 0.0298969541, -0.00450225221, -0.0128051955, -0.00314226793, -0.00552167324, 0.01020783, 0.00209560199, -0.0152935814, 0.01780013, 0.0002286034, -0.00906353537, 0.00352824014, 0.00727898162, 0.00145988318, 0.00956302881, 0.00394826848, -0.00425477605, 0.00608019764, 0.0032989271, -0.0152027644, -0.00517202774, -0.0190897305, -0.00155751139, 0.0182360522, 0.00878200307, -0.0019639174, 0.0196527969, -0.0365810841, -0.00537182484, -0.00526738539, -0.0172279831, 0.0164197125, 0.028770823, 0.000412649708, 0.00850047, 0.0154570518, 0.0139040817, 0.0217597503, -0.00527646719, -0.00593489036, -0.00841873512, 0.018499421, 0.0193621814, 0.018045336, -0.00444776192, -0.0110615091, 0.00265185605, 0.0245932415, 0.00759684108, -0.00496314839, 0.00353278103, -0.00304691, -0.0134499967, 0.000878654362, -0.0147305159, -0.0115791662, -0.00107845175, 0.013395506, -0.0253561046, -0.00587585941, -0.0104621174, -0.0209423974, -0.0234489478, 0.00940864, 0.0169464499, 0.0320584, -0.0355276056, 0.00951762, -0.00830521341, -0.0110342642, 0.007928323, -0.0143218394, 0.00638443464, -0.0123420293, -0.00281305634, 0.0124146827, 0.00153480715, -0.0314226784, -0.0290614367, -0.00749694277, -0.0116064111, -0.0115519213, 0.0112522254, -0.0138768358, -0.00705193914, -0.0167738982, 0.00581682846, 0.0118606994, 0.0136225484, -0.00379387988, 0.00855041947, -0.00761954533, 0.00181747507, -0.0146851074, 0.006911173, -0.00128051953, -0.0193803459, -0.00867756363, 0.00438873097, -0.00223523309, -0.0128687676, -0.00724265492, -0.000258118904, 0.00400275877, -0.00315134949, -0.00256558, 0.0345467813, 0.00279262243, 0.00551259145, -0.0123147843, -0.00818715151, -0.00555345882, 0.00136225484, 0.0186719727, -0.00896817818, -0.00929966, 0.00759230042, 0.00719724642, -0.0160746071, 0.000794648658, 0.0115155941, -0.000267484429, -0.0014133394, 0.0252289604, -0.00707918452, -0.0307506323, -0.00299014943, 0.0072244918, -0.00782388356, -0.00358727109, 0.0399231501, -0.0234126206, 0.00246568117, 0.00344650471, 0.00424569426, 0.0172461458, -0.0139948986, 0.000142611054, 0.00334433559, -0.0317677818, 0.00856404193, 0.0241573192, -0.00630269898, -0.0115065128, 0.00841873512, 0.00196505268, -0.0186901372, -0.0112340618, 0.0037303078, -0.0198889207, -0.00904991291, 0.00118516176, 0.00869572721, 0.0240301751, -0.0103622181, 0.0254650842, -0.0125327446, 0.0251199789, -0.0119242705, 0.0234307833, 0.00627091341, 0.00702469423, 0.00633902615, -0.002779, 0.010298647, 0.0108072218, -0.00736979861, 0.00131684635, -0.00204111193, -0.00126916741, -0.00489049498, -0.00943588559, 0.00689300941, 0.00876383949, 0.0166921634, -0.00228631776, 0.0175821688, 0.0063526486, 0.00681127422, 0.0330937095, 0.000622096355, -0.0113884509, 0.00441370578, -0.00326033, 0.0140584698, -0.0159111358, 0.00265412661, 0.0111704897, -0.0249020196, -0.015402562, 0.00802822225, -0.00923154689, 0.0246114042, -0.0247930381, -0.002202312, 0.011088755, -0.0112340618, -0.0116336569, -0.00920430198, 0.0080872532, -0.0342743322, -0.00241573201, -0.000197243149, 0.0071790833, -0.0248112027, -0.00853679702, 0.00503126113, -0.00681581534, -0.0325306468, 0.00296744518, -0.0109525295, -0.010997938, -0.00509029208, -0.0146396989, -0.0358000584, 0.000598824525, -0.00459079864, 0.0124056013, -0.00171076506, -0.0157204214, -0.00794194546, 0.00668867119, 0.0276991818, 0.002004785, 0.00836424436, 0.00899996329, 0.00861399155, -0.033111874, -0.00232718536, 0.0124873361, -0.0110524278, 0.0048723314, -0.000483600481, 0.00190375117, -0.0129232574, 0.00244751782, -0.00618463708, -0.0199797377, -0.0298606269, -0.0181815606, -0.0204519853, -0.000687938707, -0.0233762935, -0.0153571535, 0.0175004341, 0.0110251829, -0.00863215514, 0.00302647613, -0.014185614, -0.00420482643, -0.00780572044, 0.0171825737, -0.0174277797, 0.0053037121, -0.0209968891, -0.0163561404, -0.0131957084, 1.18133039e-05, 0.00459533976, 0.0194348358, 0.00251336023, 0.00517202774, -0.00510845566, -0.00284938305, -0.00740612578, -0.0297153201, 0.00284484215, -0.0201613717, 0.0207244363, -0.00908169895, 0.00771036232, -0.00357591896, -0.0251018163, -0.00277218875, 0.00341244834, -0.00132138724, -0.0143036759, 0.0268091764, -0.00439100154, 0.00692025479, -0.00552167324, 0.0149757219, 0.00413671369, -0.0089545548, 0.00476789195, 0.0146941887, 0.011116, -0.00223182747, -0.0034192598, -0.00287435786, -0.00458852854, -0.00568514364, 0.00457263552, 0.0119605977, -0.0144126564, -0.0125963166, -0.0262279473, -0.0240665022, -9.65640065e-05, -0.00544901937, -0.00748332, 0.0134954052, -0.00418893388, -0.00143717893, -0.0172824729, -0.0093450686, 0.089581877, 0.0103349732, -0.0096538458, -0.0260281488, 0.00417304086, 0.0142128589, -0.0131503, 0.0627000481, -0.00132025196, 0.0114792679, 0.00437737908, -0.00458625797, -0.0080917934, 0.0221230183, -0.0059303497, -0.0188717712, -0.00956302881, -0.0047542695, -0.0248838551, -0.00306734396, -0.00636627106, 0.000103659084, 0.0188172795, 0.0223591439, -0.0231401697, -0.0150756203, -0.00817352906, 0.0128415227, -0.0152572542, -0.00727898162, -0.0160110351, 0.0112976339, 0.0128960125, 0.000384837, -0.00863215514, 0.00939955842, 0.00101771788, 0.000760592287, 0.0201795343, -0.0175367612, 0.0206154566, 0.0153662348, 0.0290069468, -0.01443082, 0.024393443, -0.0158929732, -0.00850047, -0.0194893256, 0.0101533392, -0.00491319923, 0.012850604, -0.00385518116, 0.00865485892, -0.00736525794, -0.00373484869, 0.00421163812, 0.0164197125, 0.00437964918, 0.00875021704, -0.00789653696, -0.00409130519, -0.00305826217, 0.0175640061, 0.00986272469, -0.0178455394, -0.00730622699, 0.00820077397, -0.00173460448, -0.028770823, -0.00131798163, -0.00343742315, -0.0271361172, 0.0105801793, -0.0103713, -0.0163107309, 0.00476789195, -0.0177819673, 0.0246840585, -0.000163328688, -0.0225407779, -0.0104076276, 0.00262007024, -0.0108617125, -0.0128415227, 0.0107527319, -0.00829159096, -0.00413898425, -0.0152300093, 0.00399594754, -0.00862761401, 0.00880924799, 0.0396325327, -0.0159202181, 0.0205246396, 0.00493590347, 0.0173642077, 0.00707010273, 0.0188536067, -0.000303385517, 0.0023907572, -0.00544901937, 0.0211240314, -0.015220928, 0.000191141386, 0.000867302238, 0.0270634629, -0.0054535605, 0.0267546847, 0.00471340166, 0.0063980571, 0.00787383318, -0.018045336, -0.00493590347, 0.018472176, 0.0074152071, -0.0175004341, 0.0271361172, 0.00594397215, 0.00590764545, -0.00819169264, 0.00532187568, 0.0331845284, -0.0207426, 0.00316497218, -0.00299241976, 0.0104348725, 0.0224499609, 0.00465891138, 0.0167738982, 0.0142219411, 0.00450906344, -0.0150302118, -0.00586677762, 0.021905059, 0.00417077029, 0.00205359911, -0.0373802744, 0.0106255878, 0.00935415, -0.00858220551, 0.0248293653, 0.00975374505, 0.00036638981, -0.00421163812, 0.00516294595, -0.0120514147, 0.00520381378, -0.00582136912, 0.0093450686, 0.011878862, -0.019198712, 0.00987180695, 0.0164923649, 0.00254060538, 0.0202158615, 0.00391648291, 0.00631178077, -0.0194166731, 0.0123874377, -0.0177819673, -0.00751510588, 0.0146487802, 0.00914527103, -0.00919976085, 0.0140584698, -0.0204519853, -0.00202294835, 0.000807703589, 0.00154729444, -0.00186288357, 0.0418121442, -0.00295155216, 0.000105078099, 0.00805092603, 0.00925425161, 0.00693841791, -0.00348283164, -0.0283349, -0.00222274591, -0.00914981216, -0.00775577081, 0.0326033, 0.00595305394, 0.0220140386, 0.009417722, -0.00985364337, -0.000524184317, 0.0129686659, 0.0405407026, 0.015675012, -0.00572601147, -0.000778755697, -0.0190352406, 0.00413217302, -0.0181633979, -0.0157204214, 0.0184540115, 0.01485766, 0.000488425139, -0.00818261, 0.0151482737, 0.0116245747, 0.00181861024, 0.00186742435, 0.00145307183, -0.00101090665, 0.019017078, 0.00630269898, -0.00176979613, 0.0048632496, 0.00502672046]
27 Sep, 2024
Difference Between Native Compiler and Cross Compiler 27 Sep, 2024 Compilers are essential tools in software development, helping to convert high-level programming languages into machine-readable code. Among various types of compilers, native and cross-compilers are commonly used for different purposes. This article explains the difference between a native compiler and a cross compiler, shedding light on their functions and use cases. What is a Native Compiler? Native compilers generate code for the same platform on which it runs. It converts high language into the computer’s native language. For example, Turbo C or GCC compiler. if a compiler runs on a Windows machine and produces executable code for Windows, it is a native compiler. Native compilers are widely used because they can optimize code for the specific processor and operating system of the host machine, resulting in faster and more efficient code execution. They are also easier to use since they don’t require any additional setup or configuration. How do Native Compilers Work? Native compilers work by analyzing the source code and generating machine code that is specific to the processor and operating system of the host machine. They can perform various optimizations, such as loop unrolling, function inlining, and instruction scheduling, to produce code that executes faster and more efficiently. Advantages Native compilers produce highly optimized code that can run very quickly on the same system. They are easy to set up and use since they don’t require any additional tools or software. Native compilers are usually more efficient in terms of memory usage than cross-compilers. Disadvantages Native compilers are limited to the hardware and operating system on which they are running. This means that they cannot be used to compile code for other platforms. They are not suitable for cross-platform development, which requires the ability to compile code for different hardware and operating systems. What is Cross compiler? A cross-compiler is a compiler that generates executable code for a platform other than the one on which the compiler is running. For example, a compiler that runs on Linux/x86 box is building a program that will run on a separate Arduino/ARM. if a compiler runs on a Linux machine and produces executable code for Windows, then it is a cross-compiler. Cross compilers are typically used in embedded systems or when targeting platforms that are not available on the host machine. They are more difficult to set up and use than native compilers because they require additional configuration and libraries to generate code for the target platform. How do Cross Compilers Work? Cross-compilers operate by examining the source code and producing machine code tailored for a different processor and/or operating system than that of the compilation host. These compilers facilitate the development of software for platforms distinct from the one on which the compilation occurs. Similar to native compilers, cross-compilers can implement optimizations like loop unrolling, function inlining, and instruction scheduling to enhance the performance and efficiency of the generated code for the target system. Advantages Cross-compilers can be used to develop software for multiple platforms. They can optimize code for a specific platform, even if the development environment is different. Cross compilers are often used in embedded systems development, where resources are limited. Disadvantages Cross compilers can be complex to set up and use, and require additional software and tools. They may not be as efficient as native compilers in terms of memory usage. Cross compilers require the developer to have a good understanding of the target system’s hardware and operating system. Difference Between Native Compiler and Cross Compiler Native Compiler Cross Compiler Translates program for same hardware/platform/machine on it is running. Translates program for different hardware/platform/machine other than the platform which it is running. It is used to build programs for same system/machine & OS it is installed. It is used to build programs for other system/machine like AVR/ARM. It is dependent on System/machine and OS. It is independent of System/machine and OS. It can generate executable file like .exe It can generate raw code .hex Generates machine code for the same platform it’s running on. Generates machine code for a different platform than it’s running on. Turbo C or GCC is native Compiler. Keil is a cross compiler. Used for development and testing on the same system. Used for cross-platform development, porting, and cross-compiling. Example :- GCC compiler on a Linux machine. Example:- ARM compiler on a Windows machine for compiling code for a Raspberry Pi. Conclusion In summary, native compilers and cross compilers serve different purposes in software development. Native compilers are designed for use on the same system and produce highly optimized code, while cross compilers are used to develop software for multiple platforms. Each has its advantages and disadvantages, and the choice of which one to use depends on the specific needs of the development project. Difference Between Native compiler and Cross Compiler – FAQs What is the main application of native compiler? Native compilers are usually employed with applications developed for the Windows or Linux desktops or server environment in which the application is to run. When would a developer decide to use a cross compiler? Cross compilers are employed by developers when they wish to compile their source code for a distinct platform or architecture, for example, to build programs for a specific electronic device, for example, an embedded system, a mobile device or a custom built piece of hardware. Is it possible for a cross compiler to create work that will be functional in different systems? However, a cross compiler generally compiles code for one target architecture. Thus if you wanted to build for multiple platforms then you would require cross compilers for each of the platforms. When using native and cross compilers is there any kind of performance difference in the executable produced? The time taken by the executable to run depends on the target platform of the computer through which it is run and the optimization level of the compiler. Optimization may be better done on a native compiler as they directly compile code for the system, however a cross compiler configured properly can also deliver the best optimized code for an another architecture. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler
https://www.geeksforgeeks.org/difference-between-native-compiler-and-cross-compiler?ref=asr10
PHP
Difference Between Native Compiler and Cross Compiler
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0307458639, 0.00263869367, -0.0292703025, 0.0166226421, 0.0327935815, 0.0505304225, -0.0137995025, 0.0163215064, -0.0322816521, 0.00107561587, -0.00449067261, -0.0647439808, 0.0171797406, -0.0392679796, -0.0169689469, 0.0202212017, 0.03625663, 0.0302791055, 0.000566980394, -0.00124312215, 0.0334560759, -0.00674918387, -0.0071444232, 0.00181998347, -0.00311486307, 0.0352327712, -0.011458179, -0.0163215064, -0.00650827587, 0.00137580966, 0.0382140055, 0.00737027451, -0.0201760326, -0.00530750118, 0.00714065926, -0.0190618336, -0.00990733504, -0.0182939395, -0.0224345438, 0.00320332148, 0.00237520086, 0.0160806, 0.0166678112, 0.00805535633, -0.0185047332, 0.0283066723, 0.0165925287, -0.00866515376, -0.0045433715, -0.0281862188, -0.0103289243, 0.0282615013, 0.0564326644, 0.0328538083, 0.0389668457, 0.032040745, 0.00657603145, 0.00414813217, 0.00339905918, -0.00179081107, -0.000252670929, 0.00756224804, -0.00232626637, -0.0346305035, 0.0127380025, 0.0219677836, -0.0520360954, 0.0236089695, 0.0233379472, -0.00493484689, -0.0281410478, -0.00068461115, 0.00278361491, -0.0261535589, -0.00665507931, -0.0428514816, 0.0130165517, 0.025280267, 0.0050176587, 0.0290143378, -0.0253706072, 0.0120303351, -0.0174357053, -0.00769775873, 0.00075001386, -0.0106677, -0.00532632181, -0.0511326902, 0.0086124558, -0.0327333547, -0.0144619988, 0.000574979291, 0.0426105745, -0.0174808763, -0.029631665, 0.0327032395, -0.0129789105, -0.00269139232, -0.0252200402, 0.0153804608, 0.000742956, 0.00351763098, 0.00457348488, -0.0293305311, 0.03451005, -0.00828873552, -0.00169294223, -0.0138446726, 0.0224044304, 0.0489645191, -0.0334560759, -0.0251598135, -0.00836401898, -0.0148911159, -0.00445303088, -0.00395615865, -0.0081155831, -0.0555292591, 0.00263869367, 0.0113527821, 0.0207933579, 0.0510122366, 0.0364674255, 0.0216666497, -0.0367083326, 0.00760741811, 0.0208385289, -0.0221484657, 0.0100804875, 0.052246891, -0.00945563335, -0.00330683659, 0.00212300033, -0.000132922782, 0.00589471404, -0.00455842819, 0.0550474413, 0.0230518691, 0.000999391195, 4.87873695e-05, 0.0311373398, -0.0191220604, -0.0179476347, -0.00307910331, 0.0198146701, -0.0083564911, -0.0156740677, 0.0269063953, -0.00735145342, -0.00970406923, -0.0532406345, 0.00097021868, 0.00497625256, -0.00108973158, 0.0150266271, 0.0165624153, 0.00737403845, 0.0167581514, 0.00953844469, 0.00932012219, 0.0184746198, -0.0319805183, -0.012278772, -0.0255964585, -0.0081381686, -0.00179928052, -0.0108257961, -0.00223216182, -0.0776325539, 0.0396594554, -0.0105171334, 0.0636599, 0.0334259644, 0.0440861359, -0.0322214253, 0.010246112, -0.0219677836, 0.0441463627, 0.0220280103, -0.016773209, -0.0440560207, -0.0649848878, -0.00727617, -0.0149664, 0.0157192368, 0.00946316123, 0.0434838645, 0.0231572669, -0.0201158058, 0.00466006109, -0.00601893198, -0.0280507077, 0.0391174108, 0.00660614483, 0.0425202362, -0.000935870514, -0.0436043218, 0.0325827859, -0.0121206762, 0.0173604209, -0.0164118465, 0.0140404105, -0.0206126776, 0.00288148364, 0.0301435944, -0.0189413801, -0.00251824, 0.0161558818, -0.0177067276, -0.0152223641, -0.0151244961, 0.0265299771, -0.00938034896, -0.0244521461, 0.0376418494, -0.00485203462, 0.0180379748, -0.0290444531, -0.0330344886, -0.00828120764, -0.00311862724, 0.00686587347, 0.029149849, -0.0140705239, -0.0581190176, -0.0137919746, -0.00222651544, -0.0687189624, -0.00100880163, 0.00341976224, -0.00745308632, 0.0496270172, 0.00610174425, -0.00772410771, -0.0272527, -0.00519833947, 0.0395088866, 0.00712183816, -0.0468264632, 0.0682371482, -0.0212601181, 0.0235939119, -0.0450497679, -0.0311072264, -0.0120679773, -0.0213504583, 0.00415566051, 0.0654064789, -0.0369492397, -0.000724135083, -0.00531126512, 0.0230217557, 0.0077391644, 0.0383043475, -0.0407736525, 0.00638029352, 0.0277345162, -0.0123314699, -0.0103063388, -0.0234282874, -0.00989980716, -0.00153578748, -0.0394486599, 0.0109462505, -0.0217569899, 0.016773209, 0.0265600905, 0.00131275959, -0.0196339898, -0.0210794359, 0.0402617231, -0.0731757581, -0.0179777481, -0.00619584881, 0.0306856371, -0.0154933855, 0.0158999171, 0.00779186329, 0.0408639945, 0.0515542775, 0.0126551902, -0.015704181, 0.0162311662, -0.0198748969, -0.0033331858, -0.0376719646, -0.0509520099, 0.0136037646, -0.0365878791, -0.0201158058, -0.0137995025, 0.0115485201, 0.0110365907, 0.0340583473, 0.0373708308, -0.0110742329, 4.58171889e-05, -0.0288336575, 0.011842126, -0.0090491008, 0.0241359547, -0.0250544157, 0.0410446748, 0.0074041523, -0.0165323, -0.00138051494, 0.0178572945, 0.01251968, 0.0272225868, -0.023925161, 0.0322816521, -0.00828873552, -0.0152901197, -0.0165172443, 0.0149287581, 0.0487537272, 0.000853999518, -0.0329742618, -0.0173303075, -0.0072836983, 0.0411952399, -0.00304522575, -0.0316191539, 0.0397497937, 0.0214859694, -0.0225700531, -0.00735145342, 0.00223404379, -0.0260331035, -0.0427310281, 0.00608668709, -0.0242262948, -0.00590224238, -0.0194081385, -0.00881572161, -0.0176766124, -0.00919966865, 0.00979440939, -0.0105096046, 0.0222086925, -0.0257470254, 0.0216365363, -0.00723476382, 0.0178874079, -0.0172851384, -0.0389969572, -0.0336668715, 0.0109763639, 0.0234885141, 0.00533761457, 0.00162895105, 0.00731381169, 0.0207933579, -0.0169237759, 0.0108182682, -0.00468641054, -0.00509670656, -0.0189564358, 0.00341599807, 0.0189865492, -0.0116162756, 0.0124067543, 0.0360759497, 0.0444474965, -0.00933517888, -0.00131840585, -0.022961529, -0.0251146425, 0.00421588728, -0.000674259674, -0.0236089695, 0.00785209052, 0.0101708286, 0.0156740677, -0.0447185189, 0.0177518968, 0.0135058966, -0.0017437588, -0.00944057666, 0.00524351, 0.00426105736, 0.0696826, 0.0178271811, 0.00277420436, 0.0126476623, -0.0115259346, 0.00459607, -0.0406532, -0.00551829534, 0.000659673417, 0.00802524295, -0.0113979522, -0.00171929155, 0.00756977638, -0.0213504583, 0.0202663727, 0.0162311662, 0.0158246346, 0.0194382519, -0.0199351236, 0.0448389724, 0.0146502079, -0.0219828412, 0.0168786068, -0.0234584, 0.00800265744, -0.0467060097, -0.0206427909, 0.00171270419, 0.007419209, -0.00371525064, -0.0500486046, -0.0282464456, 0.0357145891, -0.00947821792, 0.0126100201, 0.0277796853, 0.0460736267, -0.0101633, -0.0205373932, 0.00470899558, 0.00198937184, 0.0125573212, 0.00512305601, 0.0488741808, 0.0253856648, 0.0399003625, 0.0301887654, 0.00620714109, 0.0228410754, -0.0278700273, -0.0138446726, 0.0358952694, 0.0107655693, 0.00379053433, -0.0361964032, 0.0104719633, 0.0265149195, -0.0298274029, 0.00172399683, 0.0203115419, 0.0215461962, 0.00744179403, -0.0685382858, -0.0545656271, -0.0264546927, -0.0622746795, -0.0150266271, 0.0161107127, -0.0315589271, -0.0238498766, -0.00124594523, -0.00241660676, 0.0176163856, 0.0454412438, 0.0245123729, 0.0220731813, -0.0235186294, 0.0391174108, -0.0291046798, 0.0353231132, 0.0116388602, 0.0201910883, -0.0157493502, 0.0273129269, 0.0358350426, -0.0139124282, -0.0391174108, -0.0151470806, 0.0035138668, -0.0241961814, 0.00747943576, 0.0745007545, 0.00843930338, -0.00654591806, 0.00868021, 0.0342992544, -0.0257771388, -0.0204771664, -0.0422793254, 0.00683199614, 0.0129262116, -0.0211998913, -0.0737780258, -0.0105020767, 0.0431827307, 0.00606033811, 0.0155987833, 0.00918461196, 0.00435139798, 0.0230067, 0.021124607, -0.0188962091, -0.0176314432, -0.0111419875, -0.0134306122, -0.0256115161, 0.00574791059, -0.000305840047, 0.0380634405, -0.0520963222, -0.00637276517, -0.0194984786, 0.0786564127, 0.0135284811, 0.00038841684, -0.0243467484, 0.0459832847, 0.0263041258, -0.0375213958, 0.0104644345, -0.00890606176, -0.00729122665, 0.0231120959, 0.00282125664, -0.0041669528, 0.00584577955, 0.0174808763, 0.00967395585, 0.00621843385, 0.0223592594, 0.00345175783, 0.0274333805, 0.0157342944, 0.0298424587, -0.0143716587, 0.016577471, -0.016246222, -0.0213956274, -0.000576390827, -0.016291393, 0.00779186329, 0.0183842797, 0.00601140363, -0.0103665655, -0.0248887911, 0.00195361208, 0.0123013565, -0.0126024913, 0.0497173555, 0.00338964863, 0.0110365907, -0.0149061726, 0.00653462531, -0.0333055109, 0.0278399121, -0.0355640203, 0.0210794359, 0.0206427909, 0.0325827859, 0.00262551918, 0.0278700273, 0.0367384478, -0.0187757555, -0.0222388059, 0.0198146701, -0.0177518968, -0.032823693, -0.000957985118, -0.0237896498, 0.00250694738, 0.0383645743, 0.0317998342, 0.0045245504, 0.00621466944, -0.0130316084, 0.0176766124, 0.0220731813, 0.00989227835, 0.0150793251, 0.0101783564, 0.0113151399, 0.0126476623, 0.0103590377, 0.00375665678, 0.037310604, -0.00367008056, -0.00445303088, 0.00979440939, 0.0140705239, 0.00598129025, 0.00556346541, -0.0244822595, -0.000951868307, 0.0199200679, -0.0217569899, 0.00147273741, 0.00282125664, 0.00997509062, -0.0266203173, 0.00788220391, 0.00601140363, -0.0098019382, -0.00602269638, 0.00520963222, 0.0192425139, 0.025325438, -0.00298688095, 0.0256867986, -0.0259277076, 0.00364373112, -0.0095459735, 0.0425503477, 0.00300005544, -0.00221898709, -0.00986216497, -0.0192425139, 0.000460171635, -0.006670136, 0.0215763096, 0.011021534, 0.0139500704, 0.0204771664, 0.0132122897, 0.0250995867, 0.0174808763, -2.2717446e-05, 0.00392604526, -0.00318638259, 0.0222990327, 0.0241359547, 0.00421212334, -0.0335765295, 0.0155084422, 0.0113828955, 0.040984448, -0.0305350702, -0.0204621106, -0.0182638261, 0.0131671196, -0.00941799115, 0.00428364286, -0.0240155011, 0.00040347359, -0.0205825642, -0.00523598166, -0.0217268765, 0.00992239174, -0.0373407155, 0.000984334387, -0.00752837025, 0.00766011653, 0.009764296, 0.0951586, -0.00959114358, 0.0384248, -0.0156740677, 0.0272978712, 0.00270644901, -0.0196038764, -0.0197393876, 0.000650263, -0.00317885424, 0.0252652112, 0.0272376426, -0.0241961814, 0.0211547203, 0.0044040964, -0.00272338791, 0.0112398565, -0.0273731537, -0.00747567182, 0.0552281253, 0.0242262948, -0.0117593147, -0.0345401615, -0.00334071438, 0.0249640755, -0.0182939395, 0.0365276523, -0.0268612243, -0.0243467484, 0.0119851651, 0.0146050379, -0.00511176325, -0.0159300305, 0.00611680094, 0.0325526744, 0.0154331587, -0.0142963752, -0.00289654033, 0.017209854, 0.00588342128, -0.00429117121, -0.00860492699, 0.00219828403, -0.0140629951, -0.0184896775, -0.0360157229, -4.32587221e-05, -0.00618455606, 0.00991486385, -0.0201910883, -0.00180492678, -0.0290745664, 0.0232325513, -0.00994497724, -0.0144017721, 0.0105096046, -0.0197695009, 0.0340884589, -0.0161709394, -0.0322214253, 0.0011320787, -0.00684328843, 0.00558228651, 0.00155743153, -0.0292100757, -0.0273731537, -0.00201572105, -0.00474663731, -1.65785889e-06, 0.00160354283, 0.00622972613, 0.0306103528, -0.0081532253, -0.00264998642, 0.0176615566, -0.0157192368, 0.0215160828, 0.0227356777, 0.0274634939, 0.00282878499, -0.0294208713, -0.00120171614, 0.024361806, -0.0193177983, 0.0145598678, -0.0327634662, -0.0066889571, 0.00534514291, -0.013197233, 0.00217569899, -0.00251635769, -0.00933517888, -0.0473383926, 0.00713313092, -0.00111984508, -0.0136263501, -0.00974923931, 0.00603022473, 0.00422718, -0.00342917256, -0.011646389, -0.00195549405, -0.0358952694, 0.0193629675, -0.00968901254, -0.0109387217, 0.0200405214, 0.027553834, 0.00938787777, -0.00804782752, -0.0377623066, 0.0183692239, -0.0117216725, -0.0266052596, -0.0141759207, 0.0113904243, 0.00340094115, 0.0241208989, 0.00919966865, 0.0078746751, 0.00722347107, 0.0293455869, -0.01029881, -0.0329441465, -0.00295864954, 0.022283975, 0.0114355944, 0.0294961538, 0.00962125696, 0.042580463, -0.0052397456, 0.00262363697, -0.0022641574, -0.0152374217, -0.0126702469, -0.00552205974, 0.024843622, -0.0408639945, 0.0438151136, -0.00734768948, -0.0269515645, -0.00526233064, -0.0422492139, 0.031950403, 0.000495931366, 0.0134607255, 0.0231873803, 0.0192274582, 0.0134908389, 0.0241510123, 0.0143942442, -0.00821345206, -0.00507035712, -0.010923665, -0.00528115174, -0.0553485788, -0.0469770283, 0.0171345714, 0.00633888785, -0.00862751249, -0.0107128704, 0.00311674527, -0.0604377575, -0.0518855266, -0.0188058689, -0.0206126776, 0.00957608689, 0.0185348466, -0.0138371447, -0.00594741246, 0.0317998342, 0.0484224781, 0.00417824555, 0.00133063947, 0.00112360925, 0.0131897042, 0.016336564, -0.0194683652, 0.016095655, 0.0384549163, -0.00539031299, -0.00135134242, 0.0196942165, 0.0396293402, 0.0324322172, 0.0333356224, -0.00635394454, -0.0123540554, -0.0328839198, -0.0102159986, -0.000914696953, -0.0270419065, -0.00617702771, 0.00319767534, 0.00543548306, 0.0248285644, -0.0260029901, -0.00635394454, -0.0162612796, 0.0205976199, -0.00669272104, 0.00768270157, 0.0530900657, -0.0110290628, -0.00446055923, -0.00158754503, -0.0108784949, 0.0241961814, 0.0414662622, 0.000453584304, 0.0205825642, -0.00819839537, 0.0099976752, -0.000338776648, -0.01048702, 0.0124669811, 0.000747661281, 0.0355640203, 0.0176163856, 0.00231873803, -0.0112850266, 0.0124067543, -0.00102856359, -0.018655302, -0.00703526195, 0.000206089127, 0.00156872417, -0.0312276799, -0.0357145891, -0.00732134, 0.0395088866, 0.0180982016, -0.00545430416, -0.00503271539, 0.00872538146, 0.0265600905, 0.0208686423, 0.0313481353, 0.016095655, -0.00739285955, -0.0190166626, -0.006549682, 0.0324623324, -0.0360458381, -0.0379429869, 0.00812311098, -0.00178422371, 0.00304522575, 0.0164118465, -0.0271322466, 0.0324623324, 0.00317509, 0.00799513, -0.00792737398, -0.0106150024, -0.00255776383, 0.0222990327, -0.00131370057, -0.00268574618, -0.00948574673, 0.0177669544, 0.0187456422, -0.00840166118, 0.0171496272, 0.00877807941, -0.00587589294, 0.00109349575, 0.0263944659, 0.0193629675, 0.00350445625, 0.000932576833, 0.0115635768, 0.0395691134, 0.0109914206, 0.0300833676, 0.0357447, -0.00713313092, 0.015704181, 0.00268951035, -0.0114355944, 0.00639158627, -0.00798007194, 0.0131671196, -0.0180831458, -0.00889853388, 0.00817581, -0.00248059793, 0.00637652958, 0.0160053149, 0.000312897901, -0.0270268489, -0.00243730983, -0.00482568517, 0.000840824854, -0.000781538954, -0.0422793254, -0.0302941613, -0.00558605045, 0.0398702472, 0.0153202331, -0.0145749245, -0.0194984786, 0.00970406923, 0.000478992559, 0.0170291737, -0.0116840303, 0.0117517859, 0.0032334351, -0.00749072852, 0.00193667319, -0.000544395298, -0.00664002262, -0.0249339622, -0.0178271811, -0.00347998901, -0.00972665474, 0.0356844738, 0.0330344886, 0.00988475047, 0.0118044848, 0.0164118465, 0.0415867157, -0.00699762, -0.00114054803, -0.0195135362, -0.0146200946, -0.002501301, 0.0264396369, -0.0324623324, 0.0169237759, 0.0137242191, 0.0198447835, -0.0367384478, -0.00674541947, -0.027599005, 0.0412554704, 0.00227733189, -0.00363808498, 0.00276102987, -0.0193930808, 0.0107279271, -0.00362302805, -0.0103289243, 0.000763188524, -0.0273129269, -0.0278850831, 0.0201609749, -0.00549194589, 0.00917708315, 0.0217871033, 0.00882324949, -0.0074832, 0.0230819825, 0.0313481353, 0.028276559, -0.0401412696, -0.0462844186, -0.0276140627, -0.003154387, -0.0147480769, 0.00691480795, -0.000719900418, 0.0523673445, 0.0180078615, -0.000819651294, -0.0232476071, 0.00307533913, -0.00409166934, -0.0195888188, -0.00724229217, 0.0117141437, 0.0152901197, 0.00778433494, -0.0235035717, 0.00614691433, -0.00241096062, -0.0192726273, -0.015372932, -0.00677553331, -0.00213429285, -0.00166941609, 0.0121583175, 0.0119701084, -0.00989227835, 0.00662873, 0.0193780251, 0.0240004435, 0.0189865492, 0.00459983433, -0.00769775873, 0.0226603951, 0.0158396903, -0.017014116, 0.0257921964, -0.0538730174, 0.00267633563, 0.0155536132, 0.00676800497, 0.00618455606, 0.00449820142, 0.0113603109, -0.0194683652, -0.0258975942, -0.0150040416, -0.0036343208, -0.00494613918, -0.000403003069, 0.00877055153, 0.00710301707, 0.0062109055, -0.0144921122, -9.39281817e-05, 0.017014116, -0.0226152241, -0.00584577955, 0.00578931672, 0.00626360392, -0.0304597858, -0.00269515649, 0.00247306959, -0.0116840303, -0.0156891234, 0.0290595088, -5.20810281e-05, -0.0231723227, 0.00766388094, 0.00212300033, 0.00415189611, -0.0095836157, -0.0188811533, -0.0187155288, -0.00577049563, -0.00241848896, 0.000914696953, -0.0175109897, -0.00869526714, 0.0110968174, -0.0108784949, -0.00622972613, 0.021365514, 0.0124293389, -0.0248737354, -0.0116689736, 0.0134757822, -0.00243354565, -0.0148685314, -0.0265600905, -0.00376606709, 0.0080779409, -0.0163215064, -0.000738721341, 0.00145109335, -0.0162010528, 0.00494237524, 0.110576704, -0.0205373932, -0.00210041529, -0.0251146425, 0.00475040171, -0.00831884891, 0.00384699716, 0.00472405227, 0.0154482154, -0.0174055919, 0.0118496548, 0.00229991716, -0.00467888219, 0.0174357053, 0.00612056488, 0.0295262672, 0.016728038, -0.00305275409, -0.00028725437, -0.0166376978, -0.0237444788, -0.00934270769, 0.00822850876, -0.00680188229, 0.015132024, -0.022088239, -0.00761494646, -0.00253894273, -0.0196490455, -0.00022714505, 0.00849953, 0.00826615, -0.00939540565, -0.012617548, 0.00431752, -0.00334636052, 0.0112323286, -0.010148243, 0.00118007208, -0.0288637709, -0.00668142876, 0.00217381679, -0.0243467484, 0.000679435383, -0.00934270769, -0.0178422369, -0.0262589548, -0.00799513, -0.0281862188, -0.0127304737, 0.010682757, -0.0369191281, 0.0449895412, 0.0113828955, -0.0197695009, 0.0360759497, 0.0150642684, -0.00283819553, 0.00907168631, -0.0211095493, -0.00513434829, 0.00844683126, 0.00301699433, -0.00103703304, 0.00977935269, 0.0332151689, -0.0233680606, 0.00219451985, -0.00151978969, 0.0020420705, 0.0241811257, -0.00424223673, 0.0230368134, 0.0112097431, 0.00797254406, 0.0141608641, -0.0106752291, 0.00167412136, -0.0288938843, -0.0148158325, 0.00426105736, 0.0095459735, 0.0166075844, 0.0074041523, -0.00332753966, -0.0197393876, -0.0143039031, 0.00302640488, 0.0158396903, -0.0377924182, -0.00622219779, -0.0240456145, -0.0122034885, 0.00014668559, -0.00132028793, -0.00531502953, -0.0129713817, 0.0277495719, 0.00417071721, 0.0110441195, -0.00477298675, 0.0145749245, -0.00499507366, -0.0368589, -0.010148243, -0.0377623066, 0.046163965, -0.00828873552, -0.0136489356, -0.00112737343, 0.0329742618, -0.00983957946, 0.00944057666, 0.0230819825, 0.0333356224, -3.80241509e-05, 0.0328538083, 0.0164871309, 0.00289654033, -0.0295112114, -0.0239853878, -0.00394486589, -0.00578931672, -0.0415867157, -0.00849200133, 0.0120228073, 0.00168447278, 0.0040690843, -0.00875549484, 0.00389216747, -0.019091947, 0.0219226144, -0.0345401615, 0.0133854421, -0.0347810686, -0.00650827587, 0.00233003055, 0.043453753, -0.00391851692, -0.00334636052, -0.0109161371, 0.0134456689, 0.00133063947, 0.00844683126, -0.0171044562, -0.0046261833, -0.0180229191, -0.0155536132, 0.0109613072, -0.0147706624, -0.022374317, -0.0251598135, 0.00888347719, -0.000665790227, 0.0298876297, -0.0117292, 0.00947821792, -0.00247306959, 0.0167882647, -0.0205675066, 0.0068056467, 0.0146727934, 0.0175411031, -0.0290293954, -0.0183089972, -0.0249490179, -0.00419706618, 0.0124669811, -0.00195737625, -0.000145509286, -0.0146727934, 0.00380747323, 0.00305651827, -0.0169689469, 0.0217871033, -0.00860492699, 0.0114431223, -0.0139801838, 0.0194382519, -0.000289842254, -0.00934270769, 0.0161859952, 0.00360420719, 0.00280808215, 0.0279151965, 0.00503271539, -0.0258825365, -0.00498754531, 0.0190166626, 0.0195888188, -0.0066851927, 0.0217419323, -0.000549571, -0.0133026298, 0.0291799624, 0.0108709661, -0.00504777208, 0.0058533079, -0.0158848614, -0.00345928618, -0.0175561588, -0.0249189045, -0.000411943, 0.00180774985, -0.00676047662, -0.0191822872, -0.0248887911, 0.00403520651, -0.0178271811, 0.00286078057, 0.0110365907, 0.0180229191, 0.0216967631, -0.0161709394, 0.0171345714, 0.00563122099, 0.0189865492, -0.00359667884, -0.0044266819, -0.00565004162, -0.0200706348, -0.0128509281, -0.0244370904, 0.0172399674, -0.0155536132, -0.021124607, 0.0165925287, 0.022374317, 0.0372503772, -0.0116915591, -0.0234282874, 0.00603398867, 0.0374611691, -0.00659485208, 0.00827367883, -0.0209138133, 0.0227356777, -0.0216817055, -0.0307609215, 0.0538730174, 0.0102385832, 0.021365514, -0.00851458684, 0.0130316084, 0.00286078057, 0.000127041247, 0.0156439524, 0.00183221709, -0.0114506511, 0.00609798, -0.0208234712, 0.002501301, 0.0189865492, -0.0110064773, 0.0163817331, -0.00818333868, -0.00462241936, 0.00563122099, -0.0132273464, -0.0103515089, 0.0333055109, 0.00121394964, 0.00114995858, 0.0165624153, -0.00568391941, 0.0058533079, 0.00318638259, 0.00641793571, -0.0100202607, 0.0148233613, -0.004761694, 0.034419708, -0.0178874079, 0.0136263501, -0.0142662618, 0.000194326058, 0.0249339622, 0.0274183247, -0.00644052075, -0.0029191256, -0.0272527, 0.0133327432, -0.00127888191, -0.0120228073, -0.0145899812, -0.00371901481, -0.0121583175, -0.00205712719, 0.0307308063, 0.00180398568, -0.000207383069, -0.00446808757, -0.00829626434, -0.0201760326, -0.0103966789, 0.0295413248, -0.0145598678, -0.0285325237, -0.0123841688, 0.0143867154, 0.0110516474, 0.0152073074, -0.0108257961, 0.00064602826, 0.00635394454, -0.00147932477, 0.0199501812, 0.00114431232, -0.0350520909, -0.00540536968, -0.00292853592, -0.0279453099, 0.00168635487, -0.00560863595, 0.015034155, -0.013679049, 0.0179626904, 0.0100729596, 0.0204319973, 0.0085748136, -0.00708043203, -0.0173754785, -0.0044229175, -0.00212676451, 0.00376418512, -0.00475040171, 0.00406155549, 0.00264245784, 0.00578555232, -0.00886089168, 0.00507412152, -0.00711431, -0.0174808763, 0.00262928335, -0.00517575443, -0.0268160552, 0.00191408815, 0.0262589548, 0.00988475047, 0.00382253, -0.0179325771, 0.00598129025, -0.00344234728, -0.00245236652, 0.0159902591, 0.00197807932, -0.0117668426, 0.0206729043, -0.038906619, -0.000786714663, -0.0162612796, 0.00179551623, -0.00825862214, 0.0195436496, 0.00365878781, 0.0239703301, -0.0091018, 0.00501389476, -0.0110516474, -0.0197695009, -0.00848447345, 0.00660990924, 0.00235261559, -0.0262740124, -0.0041669528, -0.011458179, 0.00913191307, -0.0148685314, 0.0115334634, 0.0580889061, -0.00469017448, -0.00163083314, 0.00015927208, 0.0311072264, -0.00888347719, 0.0126777757, 0.0215461962, 0.0158999171, -0.0269063953, -0.0344498232, 0.0048031, -0.000887406641, -0.0192575715, -0.0100503741, -0.00961372908, 0.00308286748, -0.0157945212, 0.00503648, -0.00271962374, -0.0163666774, 0.0402014963, -0.00475416565, -0.00720088603, 0.0349015258, -0.0383043475, -0.00767140929, -0.016095655, -0.00122524227, -0.0167129822, 0.0114205377, -0.0237294231, 0.00979440939, -0.0179928057, 0.0108032115, -0.00280431798, -0.0121658463, -0.00697127078, -0.043453753, 0.0230518691, -0.00776174944, 0.00430999184, -0.0059737619, -0.00662496593, -0.012662719, 0.0169689469, 0.0116087468, 0.0337572135, 0.0148760593, 0.0163064506, 0.0313180201, -0.00204583467, -0.00601516757, -0.00529620843, -0.0189263225, -0.0292703025, -0.021606423, 0.0223592594, -0.00673789112, -0.00671154214, 0.0101858852, 0.00438903971, 0.00916202646, 0.015704181, -0.00957608689, -0.0294509847, 0.0288637709, 0.0401713848, -0.000121042074, 0.00919214, -0.00258411304, -0.00218887371, -0.0147330202, -0.024406977, -0.00324096344, 0.011842126, 0.00453207875, 0.00673412718, 0.0224947706, -0.0188660957, -0.0021606423, 0.0295262672, 0.00137392757, -0.0172249116, 0.00267445343, 0.00767140929, 0.00538654905, -0.0155234989, -0.0183993373, 0.0117442571, -0.0210041534, 0.00272527, -0.00843177456, -0.00149061729, 0.0210342668, 0.0267106574, 0.0251598135, 0.00560110761, -0.0141608641, -0.0228410754, 0.0263342392, 0.012858456, 0.00340282335, 0.00790478848, 0.00453584315, 0.0166979246, -0.000636147277, 0.0102235265, -0.00193290901, -0.000180327988, -0.0139726549, -0.0132951019, 0.0196189322, -0.00914697, 0.0180680882, 0.0117894281, 0.0423997827, 0.00941799115, 0.0042874068, 0.0168786068, 0.000233026585, 0.0116313323, -0.00457724929, -0.0285325237, -0.0208535846, 0.00383570464, 0.00176634383, 0.0060942159, 0.0172399674, 0.0238498766, -0.00124406314, -0.00584201515, -0.0101331864, -0.000618267397, 0.00983957946, 0.00456972048, -0.0157192368, -0.00192914484, 0.0102762254, 0.0135736512, -0.0105246613, -0.00968148373, -0.0293757, 0.004882148, 0.0173604209, 0.0133176865, 0.00622219779, -0.0160504859, 0.00466758944, 0.0153879886, 0.000882230874, 0.0294660404, -0.0293455869, 0.00164306676, -0.0165925287, -0.00767517323, 0.00587212853, 0.0124669811, 0.00326731266, -0.012956325, 0.000600858068, -0.0042874068, 0.0142436763, -0.00294735702, 0.00676800497, -0.0175561588, -0.00229615299, 0.000930224254, -0.00142756721, 0.0139048994, 0.0133628575, -0.00105114863, 0.0167129822, -0.0339680053, 0.00345175783, -0.00959114358, 0.0142813185, 0.0106752291, 0.0148459459, 0.0166678112, -0.00048228621, 0.00660614483, -0.0236691963, 0.0198748969, 0.00808547, 0.022043068, 0.0179476347, -0.0225851107, -0.0180831458, -0.00499130925, 0.00871785264, 0.0115635768, -0.00351951318, 0.000490755658, -0.0148459459, -0.0192575715, -0.0164269041, 0.0116840303, 0.00302640488, -0.00946316123, -0.0102762254, -0.0142813185, 0.0339680053, 0.0132499319, 0.00484827, -0.000143627185, 0.0322816521, -0.0207632445, 0.0321612, -0.015034155, 0.0103515089, -0.00283631356, -0.00378300599, -0.0146200946, -0.0142361484, 0.00350822043, 0.0161709394, 0.00714065926, 0.0149739282, -0.0104945479, 0.00601893198, 0.0133026298, -0.00822850876, -0.00818333868, 0.00794995856, -0.0130090239, 0.00495366752, 0.00881572161, 0.0297220051, 0.00192443968, 0.00895876065, 0.00806288421, 0.00540160574, 0.0129864383, 0.00523221726, -0.00118948251, -0.0182337128, 0.00475416565, -0.00322026038, -0.0177970678, 0.00674541947, -0.0164118465, -1.28070515e-05, 0.00390722416, -0.019573763, -0.00516069774, 0.0146125667, 0.0331549421, -0.00114713539, -0.0177970678, -0.00232814858, 0.00801771414, 0.00933517888, 0.00974923931, -0.00754342694, -0.00154143374, -0.000961278798, 0.0122712431, -0.016728038, -0.00821345206, 0.0105999457, 0.0286830906, 0.00132028793, 0.0117367292, 0.0126401335, -0.00317885424, 0.00527362339, -0.0140931094, -0.0209589824, -0.0234132316, 0.00851458684, -0.00275161932, 0.00272715208, -0.0122712431, -0.00552582368, -0.0183391105, -0.022329146, 0.00632006675, 0.00278737908, 0.0230518691, 0.0160203725, 0.022329146, 0.0169990603, -0.00604528142, 0.00983957946, -0.00920719653, -0.024798451, 0.0127681158, 0.00852211472, -0.0034705787, -0.0266052596, 0.00947069, 0.017255025, 0.00788220391, 0.0212450605, 0.00316944392, -0.010923665, 0.00792737398, 0.0112850266, -0.00325037376, -0.0147254923, 0.00451702205, -0.000813064, -0.00510799931, -0.0101407142, -0.0222990327, 0.019965237, 0.0172399674, -0.00425352901, -0.016577471, 0.012760587, -0.00386205385, 0.0112774987, 0.0201760326, -0.0295714382, 0.00492355414, -0.0137242191, -0.0076412959, -0.00975676812, -0.00127041247, -0.0101708286, 0.00170141167, 0.00726111326, -0.00481439289, 0.000154331588, -0.00108690839, -0.0500486046, -0.000275961822, 0.0196339898, -0.000198560767, -0.0127229458, 0.0242865216, 0.00483697793, -0.00982452277, -0.00828873552, -0.00381311961, 0.0130918361, -0.00888347719, 0.0370696932, 0.0170592871, -0.0136188213, -0.00152261287, 0.00599634694, -0.00149720465, 0.00458854157, -0.0040502632, -0.0102536399, 0.000588624447, 0.00173528935, 0.0162763372, 0.0185348466, -0.0326731279, 0.00956103, -0.00420835894, 0.00140121789, -0.00453960709, -0.0157342944, 0.000989980646, -0.0137242191, -0.0123691121, 0.00227168575, -0.00454713544, 0.0340884589, -0.000817769207, -0.00731004728, -1.30790731e-05, 0.00604151702, 0.0199200679, 0.0164269041, -0.00788973179, -0.00437774742, 0.00961372908, 0.00552205974, 0.0206729043, 0.0113527821, 0.000243260467, -0.0193930808, 0.00695997803, 0.00601140363, -0.0133854421, 0.0292853601, -0.0111118741, -0.00602269638, 0.00503648, -0.00219828403, 0.0009824523, 0.0129487971, 0.0016082481, 0.00167976762, 0.0142813185, -0.0138823148, 0.00381688378, 0.0360759497, -0.0167129822, -0.0100202607, 0.009523388, 0.00268574618, 0.00664755097, 0.00629371731, 0.0169840027, 0.00345175783, 0.0330344886, -0.00143885973, 0.0148308892, -0.0216365363, -0.0014896763, 0.0351424329, -0.0130918361, -0.0130316084, 0.0149438148, 0.0083564911, 0.00730628334, -0.0395691134, 0.000698726857, 0.0253404938, 0.00178140064, 0.00290218671, -0.00608292315, 0.0253555514, 0.0213354, -0.00355715491, 0.0112699699, 0.011164573, 0.0253103804, -0.00560487155, 0.0102009419, -0.0139425416, -0.0109989485, 0.00368890143, 0.00819086656, -0.00335012469, -0.00574414665, 0.00313933031, 0.0285024103, -0.000887877133, 0.0193780251, -0.0115560479, 0.015275063, 0.000544395298, -0.0174055919, -0.00921472535, 0.00599258253, -0.0017569334, -0.000246554118, 0.00150661508, -0.00426105736, -0.0100127328, 0.00828120764, 0.00124406314, -0.00251447572, -0.0211547203, 0.0137693891, -0.00664002262, 0.0268461686, 0.0308211483, 0.00216628844, -0.0358651541, -0.0162612796, -0.0154030453, -0.00816828199, 0.00888347719, -0.00993744843, -0.00133158045, -0.0218623877, -0.00577049563, -0.018655302, -0.0171646848, 0.00712936651, 1.99825299e-05, 0.0170592871, 0.00622596219, -0.00874043815, 0.0255814027, 0.017646499, 0.00673036277, 0.0033331858, 0.00959867239, 0.0232476071, -0.00423847232, 0.0123615842, -0.00382441212, 0.00114431232, 0.0164871309, -0.00675671222, -0.00146615, 0.0264396369, 0.000337129837, -0.0206277352, -0.0149212293, -0.00694492133, -0.00255023548, -0.00312427361, -0.00719712209, -0.000646969303, 0.00526985899, -0.00643299241, -0.00836401898, -0.00140121789, 0.00808547, -0.0150943827, 0.00577426, 0.0204771664, -0.00054768892, -0.00285513443, 0.0105924169, 0.0395088866, -0.00485203462, -0.00767893763, -0.0103063388, -0.0294660404, 0.00779186329, 0.0185800176, -0.00623725448, 0.00178045954, 0.0168334357, -0.0209890958, 0.0123916976, 0.00122241909, 0.0200706348, 0.00466758944, -0.0210342668, 0.0129412683, 0.0120453928, -0.0103966789, -0.00921472535, 0.0234282874, -0.00319202896, 0.00332377548, 0.00485956296, -0.0227356777, -0.016577471, 0.00140686415, 0.00633888785, 0.009327651, 0.00329742604, -0.0102837533, -0.0317094959, 0.000798948284, 0.0102837533, 0.00623349054, 0.0108935516, -0.0124142822, 0.0108032115, 0.0142737897, -0.0142963752, -0.00436269073, -0.00372277899, -0.00274597295, -0.00230744551, -0.0163516197, 0.00572908949, 0.000676612253, 0.0151696661, 0.0367384478, -0.00819086656, 0.0339981206, -0.0127078891, -0.00376230292, -0.0295413248, 0.00842424668, -0.00356656546, 0.000840824854, -0.00203266, -0.00363808498, -0.00753966253, 0.00828873552, 5.43307169e-06, 0.00486332737, -0.0200254656, 0.01769167, -0.0178874079, -0.00198937184, -0.012617548, -0.0151847228, 0.0111194029, 0.0171345714, -0.0189564358, 0.00299064512, -0.0218021609, -0.00159695558, 0.0189865492, 0.00170329376, -0.021124607, 0.0100729596, -0.000190326609, -0.00461489102, 0.01561384, 0.00350822043, -0.00242413511, 0.0081381686, -0.00412931107, -0.0137995025, -0.00752460584, -0.00135981187, 0.00322778872, 0.0250393599, -0.0109914206, -0.0100428462, 0.0187908113, -0.024843622, -0.00141909777, -0.00394110195, 0.000133393303, 0.00598881859, -0.0322214253, -0.0151395528, -0.00927495211, 0.000957514567, 0.00106244127, 0.0118948249, -0.0276742894, -0.00242789928, 0.00178140064, -0.013001495, -0.0200706348, -0.000827179698, 0.00205524499, -0.000522751187, -0.00937282108, 0.00135134242, 0.00949327461, 0.000192679217, -0.0132273464, -0.0159752015, -0.0136489356, -0.0212751739, -0.0284271259, -0.00423847232, -0.00244483817, 0.0218774434, -0.0128509281, 0.00469017448, 0.0245424863, -0.00478804344, -0.0184595641, -0.00361173553, -0.0198748969, -0.0115711046, 0.0229013022, 0.00194043736, -0.0133327432, -0.00512305601, -0.0134607255, 0.0176314432, 0.00671530608, 0.00462994771, -0.0158999171, 0.0273430403, 0.00765258819, 0.0191822872, 0.00977935269, -0.0122110164, 0.00939540565, 0.011699087, -0.000943398918, -0.00429869955, -0.0132574597, -0.0035308057, -0.00808547, 0.00925989542, 0.00823603664, 0.0114807645, -0.00651956862, 0.00584201515, -0.0150416838, -0.00139839482, 0.00263492949, 0.0164269041, -0.000574038248, -0.00986969378, 0.0202513151, 0.0128358714, 0.011405481, -0.0105472468, -0.00100691954, -0.00813064, 0.0137543324, 0.0008930529, -0.018655302, 0.0150266271, 0.0192575715, 0.00229991716, 0.0116614457, -0.0115409913, -0.0168786068, 0.00354398019, 0.0138145592, -0.0119550517, -7.74598739e-05, 0.000595682301, -0.00691104401, -0.00529997284, 0.0198447835, -0.0142662618, 0.0162311662, -0.00831884891, -0.0195888188, -0.0335765295, -0.0175411031, -0.0108182682, 0.00488967635, 0.00746814301, 0.00732886838, -0.00887594838, 0.0134607255, -0.00098809856, -0.0167581514, 0.0186854154, -0.00201007491, 0.0120002218, -0.00758106867, 0.00298311678, -0.00533761457, 0.0120228073, -0.0113979522, -0.00557099376, -0.0169087201, 0.0057328539, -0.0120228073, -0.00249189045, 0.00956103, -0.00359291467, -0.0126928324, 0.00821345206, -0.0268461686, -0.00718206493, -0.000181151408, -0.00394486589, 0.0211697761, 0.0317697227, 2.11000224e-05, -0.0119023537, 0.0104493778, -0.0053790207, 0.00648569083, -0.00966642704, -0.0217720475, -0.0133026298, 0.0210342668, 0.0050176587, 0.0237745922, 0.00426482176, 0.0138070313, -0.0150266271, -0.0102084698, -0.0269816779, 0.00459230598, -0.00823603664, -0.00088411296, -0.00553711643, 0.0126326056, -0.014115694, -0.0136112934, 0.0159601439, -0.0181433726, -0.00224345434, 0.0121056195, -0.0210342668, -0.0148534747, 0.00660238089, -0.000691669, 0.0190768894, -0.00300758379, -0.0286078062, 0.0116162756, -0.0117593147, 0.010148243, -0.00931259431, -0.018610131, -0.016140826, 0.01856496, -0.00270080287, 0.00216817064, -0.00560863595, 0.00068743428, 0.00332001131, -0.00929000881, -0.0117743714, 0.00700138416, 0.0336367562, -0.0121056195, 0.00708796037, 0.00788220391, 0.00516446214, -0.00732886838, -0.00566133438, 0.00444926694, -0.00276291184, -0.0224345438, 0.0196641032, 0.0132499319, -0.0182638261, 0.0212902315, 0.0173303075, 0.00876302272, -0.0131746475, 0.0113452543, 0.0290143378, 0.0293154735, 0.0043062279, -1.82180684e-05, -0.0181584284, 0.0152901197, 0.00977182481, 0.0196791589, -0.0191070028, 0.00220769458, 0.00382441212, 0.0108709661, -0.0229464732, 0.0139651271, 0.00947821792, 0.00256341, -0.00584954349, -0.00460359827, 0.0237896498, -0.0275237206, 0.00934270769, 0.0135962367, -0.0100880163, -0.0077391644, 0.0069223363, -0.00430246349, -0.00540913409, 0.0171345714, -0.0121959597, -0.00664002262, -0.00271209539, -0.00162801007, -0.0187757555, -0.0323117636, -0.00384511519, 0.0166678112, 0.00356280128, -0.00825109333, 0.00647439854, 0.000765541161, -0.0157342944, 0.00823603664, 0.00151978969, -0.0131821763, 0.0109311938, 0.00806288421, -0.00605281, 0.0333055109, 0.0213504583, -0.000204089418, -0.00276667601, -0.0120755062, -0.00088693609, 0.0034536398, -0.00145391654, -0.0049988376, 0.0068056467, 0.00156496, -0.0100428462, 0.00032301413, -0.00598881859, -0.0136715202, 0.0163967907, 0.00660990924, 0.0102009419, -0.0111871585, -0.0112549132, -0.0200254656, 0.00219640206, 0.0378526449, -0.014017825, -0.000676141761, 0.0080779409, 0.0027403268, -0.00274597295, -0.00620714109, 0.0026800998, 0.00235637976, 0.00134287309, -0.0129864383, -0.00282502081, 0.00634265179, -0.00213805703, 0.0311072264, -0.0117066158, 0.00261610863, 0.0142662618, -0.00148779422, -0.00319391116, 0.00628995337, 0.0046450044, 0.0198748969, -0.0109989485, 0.0101331864, -0.00600387529, -0.00261799083, -0.00650827587, 0.00735898176, 0.0167430956, -0.0117292, 0.00335388887, -0.00201760326, 0.0333055109, -0.0351424329, -0.00290030451, 0.000859645777, 0.0168484934, -0.000632383104, 0.0331850573, 0.000120571553, -0.0135585945, 0.00262363697, 0.00962878577, -0.0225549974, -0.01256485, -0.00243354565, -0.0157342944, 0.00670401379, 0.0141759207, 0.0220129546, 0.0131746475, -0.00370207615, 0.0119701084, -0.0018171604, 0.0230669267, 0.00639158627, -0.00413683942, -0.0216817055, -0.00148026575, -0.0173152518, 0.00816828199, -0.00563874934, -0.0138672581, -0.0063125384, -0.00246365904, -0.00724605611, 0.012617548, 0.0133252153, -0.00802524295, -0.0091018, 0.0192124, 0.0119776372, -0.00852211472, 0.0202362593, 0.00727617, 0.001667534, -0.00169388333, 0.00338212028, -0.0327032395, -0.0283066723, 0.00766388094, -0.0263944659, -0.0010887906, -0.0254760049, -0.00168164971, 0.0105096046, 0.00901146, -0.0159300305, 0.00267633563, 0.00859739911, -0.00471652392, -0.0103966789, -0.00941799115, -0.0324924439, 0.00691480795, -0.0209890958, 0.0122561865, -0.0059699975, -0.012421811, -0.0010727928, -0.00913191307, -0.0118722394, -0.0022641574, -0.0195888188, -0.0165624153, 0.00258411304, -0.0151621373, 0.00346116815, -0.0122712431, -0.0018708, 0.00166376983, 0.00503271539, 0.0183842797, 0.0108333249, -0.0295112114, -0.0230217557, -0.0205825642, 0.0193780251, -0.00874043815, 0.0101256575, 0.0291197356, -0.0121131474, 0.00474663731, -0.0192274582, -0.0187305845, 0.0150943827, -0.0063313595, -0.00354962656, -0.00903404411, -0.0249038488, 0.0258975942, -0.0109838918, 0.00941046234, -0.0202212017, 0.00838660449, 0.0304899, -0.0088533638, 0.00385452551, 0.0022792141, 0.00145203446, 0.0062109055, 0.00136545813, 0.0132122897, 0.00317132589, -3.2524913e-05, -0.0100579029, -0.0149061726, -0.00641040737, 0.00822098, 0.00708419643, 0.00267068925, 0.0157794636, 0.00999014731, -0.000229732919, 0.00136451714, -0.0625155866, -0.029435927, 0.00148685311, 0.0140404105, 0.0183842797, -0.0154105742, -0.0142060341, 0.0139425416, 0.0105773602, -0.00220769458, 0.0325827859, 0.0052585667, 0.0127003603, 0.0158246346, 0.00336141721, -0.0221183524, 0.00313556613, -0.0018171604, -0.0171345714, -0.0294509847, 0.00526985899, -0.0131821763, -0.0059699975, -0.00400509313, -0.0109838918, 0.0128810415, -0.010441849, -0.00875549484, -0.0115334634, 0.00309416023, -0.00575167499, -0.00399003597, 0.00157154724, -0.00253706076, 0.000440880191, -0.00290030451, 0.00395615865, -0.0124669811, 0.00303957937, 0.0193780251, 0.0123691121, 0.0183391105, -0.00506282877, -0.00534137851, -0.0237294231, 0.00802524295, 0.00863504, 0.0245575439, 0.000555687817, 0.0223893728, -0.0210342668, 0.0194081385, 0.0175411031, 0.00905663, 0.0124443956, -0.000179975104, -0.0119098816, -0.00450573, 0.00739285955, -0.00555217313, -0.00711431, 0.00421588728, -0.00874796603, 0.000206559664, 0.0132348752, -0.00447561592, -0.00263869367, 0.00646310579, -0.00798007194, 0.0177820101, 0.0083339056, -0.0245726, -0.00296429568, 0.0164570175, 0.00605281, 0.00370584032, 0.0112925554, 0.00296617788, 0.012083034, 0.0275688916, 0.0227959044, -0.000921284314, 0.0203266, -0.00261422666, 0.0186402444, 0.00430999184, -0.0057328539, -0.0135058966, 0.00874796603, -0.0242413525, 0.00535267126, -0.00555217313, 0.0177518968, 0.00878560822, -1.06676416e-05, 0.00395615865, -0.0189865492, 0.0088684205, 0.0183842797, -0.00959114358, -0.0411350131, 0.00089916971, 0.0115184067, 0.00475040171, 0.00973418262, -0.0159902591, -0.00221145875, 0.0150567405, 0.00706913974, -0.0147631336, 0.03538334, 0.00701267691, 0.00842424668, -0.0108032115, 0.0133628575, 0.00744932238, 0.00561992824, 0.00959867239, 0.0168786068, 0.0140328817, -0.0188058689, -0.017209854, 0.00334259635, -0.0160806, 0.00481815683, -0.00102668151, -0.0189564358, 0.000167859136, -0.0128810415, -0.00530373678, 0.0321009718, 0.00883830618, 0.00598505419, -0.0248285644, 0.00304334355, -0.00485203462, 0.0109763639, -0.012715417, -0.00671530608, 0.017209854, 0.00367572671, -0.018610131, -0.00325037376, -0.00949327461, -0.0172700807, -0.0188209247, -0.0127681158, 0.0129036261, -0.00479557179, -0.00309227803, 0.0231873803, -0.0149513436, 0.0173604209, -0.0139274849, -0.0237444788, -0.0014285082, 0.000174799352, 0.0153051764, 0.0155536132, 0.0117517859, -0.00378865236, -0.0202814285, -0.0310469978, -0.0101407142, 0.00300946599, -0.0080779409, 0.0011019652, -0.00444926694, -0.00576296728, -0.0186703578, 0.0148459459, -0.000945751497, 0.00393733755, 0.0137242191, -0.00470146723, 0.0177970678, 0.00286266278, -0.00170517585, 0.0167430956, 0.0132047618, 0.00107749796, 0.0043062279, -0.00675671222, -0.0068244678, -0.00476545841, -0.0221635215, -0.00499130925, 0.00393733755, -0.00724229217, 0.0110667041, 0.00276102987, 0.022329146, -0.00539407739, 0.00608668709, -0.0102762254, -0.0040464988, -0.00781444833, 0.00294171064, -0.00986216497, 0.00263869367, -0.0081381686, 0.0179928057, -0.0150266271, -0.00913944095, -0.00592859136, -0.0131068928, -0.0168936625, 0.0251748692, -0.0163666774, 0.00168917805, 0.00300005544, -0.00474287337, -0.0221334081, 0.0169538893, 0.0131595908, 0.00534890685, -0.0265751462, 0.000283960719, -0.0251748692, 0.0182487685, -0.00590977073, 0.00305840047, 0.0122411298, -0.00343293673, 0.0157644078, -0.014793247, 0.00967395585, -0.00295864954, 0.0126777757, -0.0150040416, -0.0184746198, -0.00366819836, 0.0104794912, 0.00462241936, -0.00570274051, -0.0078972606, 0.00368701923, 0.0081155831, 0.0144544709, 0.0161257684, 0.00623349054, 0.00978688151, -0.0119174104, 0.0188058689, -0.00409166934, 0.014981457, 0.00346493232, 0.00182280666, -0.0134306122, 0.00235073362, -0.000550982601, 0.00153390539, -0.0101934131, -0.0051381127, 0.0188962091, -0.00240907841, 0.0124970945, -0.00870279595, -0.00172117364, 0.026198728, -0.00556723, -0.00453584315, 0.0391776375, -0.000582978188, 0.00552205974, 0.0109914206, 0.00699385582, -0.0103138676, 0.00131934683, 0.00648192689, -0.00269515649, 0.00532632181, 0.00661367318, -0.0202212017, -0.00635018, -0.029149849, 0.0106526436, -0.0100202607, -0.0108860238, -0.0340282321, -0.0246177707, -0.0151094394, -0.0119776372, -0.00938787777, -0.0074041523, -0.00717077265, -0.0137166902, 0.00755471969, -0.0100804875, -0.00956855807, 0.0142135629, -0.00607539481, 0.00642546406, 0.00741168065, -0.0150793251, -0.00367196254, -0.0120002218, 0.0029793526, -0.00741168065, -0.00632006675, -0.0105924169, -0.00386581803, -0.00582319451, 0.0219828412, -0.00826615, -0.0242413525, 4.1758929e-05, -0.010584888, 0.0015489622, -0.0176013298, -0.0284873527, 0.00226039323, 0.00436269073, -0.0189865492, -0.0035740938, 0.0144770555, -0.00277608656, -0.00838660449, -0.00131934683, -0.0108634382, -0.00583825121, 0.0146803223, -0.00385264354, -0.0164419599, 0.00867268257, 0.00486332737, 0.0145372832, 0.0202663727, 0.0116765024, 0.0156288967, -0.0315589271, 0.00570274051, 0.00445679529, -0.0211095493, -0.00359667884, 0.00055051205, -0.00506282877, -0.0250694733, 0.00399380038, -0.00867268257, 0.0102235265, 0.00695997803, 0.0147104356, -0.0103665655, 0.0180680882, -0.00676800497, 0.0083339056, -0.0164269041, 0.0277796853, -0.00457348488, 0.0083339056, 0.00806288421, 0.0155234989, -0.00402015, -0.0168936625, -0.00402767817, 0.00414436776, 0.00364373112, -0.00315250503, -0.00626736833, 0.00352892349, -0.0162612796, -0.0224496, 0.0138973715, 0.0187155288, -0.0144168288, 0.0119174104, 0.00622596219, 0.000313133147, 0.00944057666, 0.00538654905, -0.0173303075, -0.0144695276, 0.0814268515, 0.0255512893, 0.0135209532, -0.0119475238, 0.0193027407, 0.00264622201, -0.00818333868, 0.0446884036, 0.0190317202, 0.00161859964, -0.00496119587, -0.000322073087, 0.00379994488, 0.00476922235, -0.00927495211, -0.00134381407, -0.0091018, -0.00444550253, -0.0115560479, -0.0147029068, -0.00832637772, 0.00913944095, 0.00852211472, 0.00125253259, 0.00625984, 0.00452831481, -0.0238950476, -0.0343895964, -0.0245575439, 0.00905663, 0.0268762819, 0.0106752291, -0.0108032115, 0.006429228, -0.0167882647, -0.0105472468, 0.00961372908, 0.00320143951, 0.0117743714, -0.00411049, -0.00736274617, 0.0011019652, -0.0134306122, -0.00417071721, 0.0104117356, -0.000268433447, -0.00152355398, -0.00509670656, -0.00229050661, -0.00354962656, 0.00343105476, 0.000130570173, 0.00553711643, -0.02716236, 0.0263643526, 0.0096062, 0.013874786, -0.00507035712, 0.0137543324, 0.0190166626, 0.0303845014, 0.0127530592, 0.000950927264, -0.00751707749, 0.0121282041, -0.00852211472, -0.0146652656, -0.00284007774, -4.64641598e-05, -0.00466006109, -0.00556723, -0.00294547481, 0.0019056187, -0.0152600063, 0.00925989542, 0.0117141437, 0.00655344641, 0.0115861613, 0.00633888785, 0.00323908124, -0.0286228638, -0.000706725754, -0.00458101323, 0.00230368134, -0.00326354848, -0.0163516197, -0.0137468036, 0.000694021641, -0.00548065361, -0.00549947424, 0.00538654905, 0.021892501, -0.00484450627, 0.0243015792, -0.0129487971, 0.00629371731, -0.00160260184, 0.0308964308, 0.0227356777, 0.0118571827, -0.00159977865, -0.000766952697, -0.0219376702, -0.000805065094, 0.00271962374, 0.0343895964, -0.00283631356, -0.00504024373, 0.0138823148, -0.00981699489, 0.00174752297, -0.0037096045, 0.00381500158, 0.0228410754, 0.00257470249, 0.0133628575, -0.00801771414, -0.00773163605, -0.00254458911, -0.00210982584, 0.0163215064, 0.0202663727, -0.010923665, -0.00028725437, 0.00556346541, -0.0126326056, 0.00794243068, -0.0085522281, 0.0127078891, -0.0179024637, 0.0261083879, -0.0167882647, -0.00495366752, -0.00774669275, 0.013483311, 0.0193479117, -0.002380847, -0.0220129546, -0.01561384, 0.0291347932, 0.0258825365, 0.00207594805, 0.0144394143, -0.00741168065, -0.001280764, -0.0252049826, 0.0199050102, 0.0157945212, -0.0163666774, 0.0130466651, 0.0208385289, 0.00526985899, 0.00226792158, -0.0175561588, -0.000985275488, -0.010539718, 0.00628242502, -0.021606423, -0.0066851927, -0.00625607558, -0.0263342392, -0.00584577955, 0.0270870756, -0.00457348488, 0.0156740677, -0.0145824533, 0.0210342668, -0.0018764463, -0.0135887079, 0.0212902315, 0.0171496272, -0.0200254656, 0.00235826196, 0.0123615842, 0.0163215064, 0.0431225039, 0.00402015, -0.01150335, -0.0170743428, -0.00279114326, 0.021365514, -0.00396745093, -0.00600011088, 0.048723612, -0.00969654, -0.00703526195, -0.0207933579, 0.013483311, 0.0150492117, -0.00939540565, 0.00851458684, -0.0165925287, -0.0241208989, -0.0126702469, 0.0088081928, -0.0194231942, 0.0187757555, -0.0129186837, -0.0107956827, -0.00267068925, -0.0106978137, 0.00274973712, -0.0119926939, 0.00138804328, 0.0080929976, 0.025280267, -0.00798760075, -0.0158848614, -0.00712560257, 0.00623725448, 0.000566509843]
17 Jan, 2023
Difference between native, host and user objects 17 Jan, 2023 JavaScript objects are broadly classified into the following categories: native javascript objects, user objects, and host javascript objects. Native objects: Native javascript objects are standard javascript objects which are provided by javascript itself. They are also known as built-in objects, pre-defined objects, or global objects. In JavaScript, native objects are objects that are built into the JavaScript language. These include objects like Array, Date, Math, and Object, as well as many others. Native objects are a fundamental part of the language and are always available to use in your code. Example: Javascript <script> // Native object: Array let arr = [1, 2, 3]; console.log(arr); </script> Output: Host objects: These are objects that are provided by the environment in which JavaScript is running. For example, if you are running JavaScript in a web browser, the window object and the document object are host objects. If you are running JavaScript in a Node.js server, the process object is a host object. Host objects are not part of the JavaScript language itself, but are provided by the environment in which the code is running. Example: Javascript <script> // Host object: window let window = window; console.log(window); </script> Output: User objects: These are objects that you create in your own code. These can be objects that you create using the Object constructor or using any of the other built-in object constructors (such as Array, Date, etc.). User objects are objects that you define and create in your own code, as opposed to being provided by the language or the environment. Example: Javascript // User object: object created using object literal let myObject = { name: "John", age: 30 }; console.log(myObject); // Output: { name: "John", age: 30 } Output: Main differences between native, host, and user objects in JavaScript: Property Native Objects Host Objects User Objects Definition Built into the JavaScript language and provided by the runtime environment Provided by the host environment in which JavaScript is running Created by the user using JavaScript code Examples Array, String, Math, global object window, document, XMLHttpRequest (in a web browser) Custom objects created using object literals, constructor functions, or class syntax Method of creation Created automatically by the runtime environment Provided by the host environment Created by the user using JavaScript code Availability Available in all JavaScript environments Dependent on the host environment Dependent on the user’s code Modifiability Cannot be modified Maybe modifiable depending on the host environment Can be modified by the user Inheritance Can be inherited using prototypal inheritance May not be inheritable Can be inherited using prototypal inheritance Standardization Part of the official JavaScript language specification May not be part of the official JavaScript language specification Not part of the official JavaScript language specification Compatibility Consistently available and compatible across all JavaScript environments May not be consistently available or compatible across all JavaScript environments May not be consistently available or compatible across all JavaScript environments Native objects are an essential part of the JavaScript language and are always available to use in your code. Host objects are provided by the environment in which the code is running and may vary depending on the environment. User objects are objects that you create yourself in your own code. Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects
https://www.geeksforgeeks.org/difference-between-native-host-and-user-objects?ref=asr10
PHP
Difference between native, host and user objects
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.019383885, 0.024205884, -0.0204386972, 0.0368773267, 0.00377746043, -0.000201309012, -0.00699326722, -0.0120344479, -0.00898645166, -0.0054042, 0.0257264562, -0.0102741439, -0.0254113823, -0.0213839188, -0.00891110767, -0.0109111415, -0.0358910114, 0.00754807144, -0.005092551, -0.0105481213, 0.00512679806, 0.00375348725, -0.0185619537, -0.0140687283, -0.0167811029, 0.0201647207, 0.029260762, -0.0210277475, -0.0374526791, -0.00790424179, 0.0246853437, -0.0121851349, -0.0186441466, -0.0115001919, -0.000205910968, -0.0043802103, 0.005592559, -0.00429459242, -0.0216168, -0.0206030831, 0.0253428891, -0.000221750277, -0.000225175, -0.00995907, 0.000115798168, 0.0168769937, 0.00904124696, -0.00373636372, -0.00622955617, 0.00859603379, 0.0165756196, 0.00971934, 0.028493626, 0.0250689108, 0.0117741693, -0.00363019761, 0.0110481298, -0.0234661456, 0.0023168195, 0.000181188807, 0.0268223658, -0.0626859814, -0.016315341, -0.00396581972, -0.0106851095, 0.0542748794, -0.0468774959, 0.0188770276, 0.0232195649, 0.00921248272, 0.0274936091, 0.0149728525, 0.0468227, 0.0428500287, -0.0225346219, -0.0165619198, 0.00450692466, 0.0351238735, 0.0411239751, 0.00911659095, 0.0148495631, -0.00192126492, 0.0242332816, 0.023822315, 0.0211236402, -0.0149454549, 0.0208770614, -0.0576995946, 0.0513707213, -0.0361923836, 0.00804808, 0.0397814848, 0.0149454549, 0.000732460874, -0.0298909098, 0.0118906097, -0.0259593371, -0.0313155912, -0.025740156, 0.0312881954, 0.0247812364, 0.0097604366, -0.0208633617, -0.0164797269, -0.00623983, -0.0149454549, 0.0218496807, 0.00302402303, 0.0142879095, 0.0255757701, 0.0173153579, -0.0119317062, -0.053836517, 0.0386307836, 0.00753437215, 0.0640010685, -0.0356444307, -0.0269456562, 0.0235209409, 0.0411513709, 0.0139659867, 0.0409595892, 0.0422472805, 0.0318635441, -0.0361101925, 0.0416445322, 0.023205867, -0.0156166991, 0.0397266895, 0.0318361484, -0.0204386972, 0.00148033292, 0.00364389643, 0.0234661456, 0.00370554137, 0.0247949343, 0.0493980832, 0.033315625, -0.0175482389, 0.00996592, -0.0240688957, -0.0116166323, -0.0451788381, 0.00136988587, 0.014712574, -0.0117262229, 0.00708915945, 0.0112947095, -0.0416171327, -0.0481651872, -0.0150413467, -0.039151337, 0.0174523462, 0.0216989927, 0.00339560467, -0.0145344893, 0.00100515375, 0.010116607, -0.0327402726, 0.055918742, -0.0044350056, -0.0532063693, 0.00661997357, -0.0137331057, -0.0155345062, 0.0100138662, 0.0205619875, 0.00442473125, -0.0296169333, 0.00316957338, -0.0388773605, 0.0268360637, -0.00110361434, 0.0623572059, -0.00280655362, -0.0132262483, 0.00760971615, -0.00767136086, 0.0219866689, -0.00154540257, -0.00627407758, -0.0260826275, 0.0225757193, 0.0220688619, -0.0171646699, -0.03109641, 0.0299457051, -0.000691792346, 0.0195619706, -0.0174660459, -0.00671586534, 0.00436651148, 0.0296169333, -0.0101645533, 0.00495898677, -0.00492131524, -0.0225483216, 0.0330690444, 0.00504802959, -0.0221647527, 0.0309320241, 0.000354029879, 0.0288497973, -0.0111371726, -0.0270826444, -0.0555625707, -0.0179318059, -0.0572612286, 0.0168632958, 0.0226442143, 0.0534803458, 0.00579119241, 0.000251716527, -0.0153838182, 0.00253257644, -0.0329868533, -0.00365417055, -0.0202058163, -0.0141920177, -0.00328772608, 0.00352060678, -0.0331512392, -0.00715080416, 0.0110618286, -0.0496994592, -0.00431514066, 0.0292059667, 0.0240004, -0.0131577542, -0.0122056836, 0.0091439886, 0.032082729, 0.00956865307, -0.0363567732, -0.0167674031, 0.0113563538, 0.0334800109, -0.024671644, -0.0203154068, 0.0201647207, 0.000369869202, 0.00623983, -0.0410965756, 0.00225517456, -0.0315895677, 0.00824671332, -0.0199866351, 0.0193564873, -0.0315073766, 0.00459939195, 0.0250963103, 0.0090480959, -0.00786999427, -0.00220209151, -0.0299731027, 0.0118769109, 0.0214661118, 0.0271511376, -0.00595215429, -0.0186441466, 0.0174797438, 0.0176030342, -0.0275621042, 0.0252059, 0.000978612225, -0.00481172418, 0.00738368509, -0.0582475476, -0.0321649201, 0.0152605288, 0.0445486903, -0.0335896, -0.0160276648, 0.0537543222, -0.0398636796, 0.0222606454, -0.00138444093, 0.00850699097, 0.0104796272, -0.00349834608, -0.000271408644, -0.0378910452, 0.0245757531, 0.0185071584, -0.0164523292, -0.0403294414, -0.0467679054, 0.0136098163, 0.0123084243, -0.00784259662, -0.0235757362, 0.0158084836, 0.0135207735, 0.0041062329, 0.0328498632, -0.0157399885, -0.0331786349, -0.00743848039, 0.010952238, -0.00765081262, -0.0060959924, -0.0586311147, 0.0263155084, -0.00351718208, -0.00464733783, 0.00258908421, 0.0616996586, -0.0173427556, 0.0235346388, -0.0129522709, 0.00745902862, -0.0223291405, -0.0186989419, -0.0358088166, -0.0084110992, 0.0158358812, 0.00349149667, -0.0223291405, 0.00471925689, 0.0131098079, -0.0425486565, -0.011568686, -0.0493158922, -0.00907549355, 0.0466035195, -0.0116851265, -0.0516173, -0.0196989588, -0.0192879941, -0.027342923, -0.0251648035, -0.0667408407, -0.0242743772, 0.0277127922, -0.0297265239, -0.00197434798, -0.00177742692, -0.00128341187, -0.00997961871, 0.00617133593, 0.0166852102, 0.0155756027, -0.0210825428, 0.0374800786, 0.0183290727, -0.0222743452, -0.045041848, 0.0283292402, 0.000452918524, 0.0529871844, 0.00101542787, 0.0444664955, -0.000829637167, 0.00562680606, 0.0247812364, -0.023438748, 0.00991112459, -0.0223017428, -0.00181338645, 0.0243428722, -0.0211099423, 0.0208770614, 0.0305484552, -0.017616732, 0.0156440977, -0.0430966094, -0.00212503551, 0.0219455715, -0.0200414304, -0.013863245, -0.0249593202, -0.0298635121, 0.00501035759, -0.0254250821, -0.0256168656, 0.0227812026, -0.0310416147, -0.0156303979, -0.0122262314, 0.0226579122, -0.00958920084, 0.0553159937, -0.00482199853, 0.0063048997, 0.000210191865, -0.0151372394, 0.0035274562, -0.0456993915, -0.0183701701, -0.00858233497, -0.00220722868, 0.0167948, 0.000395126466, 0.00632887287, 0.0065960004, -0.00527748559, -0.0228359979, 0.00736998627, -0.0190551132, 0.0107399058, 0.00281340303, 0.0162194483, -0.0102809938, 0.0131851519, 0.000386778731, -0.0157125909, -0.020370204, -0.0295895357, 0.0408226, 0.00416445313, -0.0442473143, 0.00103940093, -0.013479677, 0.0490419157, -0.00991112459, -0.00787684415, 0.0245757531, 0.0581927523, 0.00974673778, -0.0264661945, 0.0262059178, -0.00749327568, 0.00153341598, -0.00260792021, -0.0534255505, 0.0197126586, -0.05438447, -0.0199044421, 0.0200825278, 0.0184249654, -0.0211784355, -0.0364937596, 0.0105960676, 0.0341923535, 0.00571242394, -0.0364663638, -0.00837685261, -0.0218770783, -0.00348464726, 0.0122399302, -0.00170807645, -0.0123769194, 0.00832205638, -0.00464391336, -0.0518364832, -0.00675353734, -0.0661380887, -0.0152742276, 0.00655147946, 0.0104590785, 0.00477747712, -0.0732067, -0.0130755603, 0.0265072919, 0.0367677361, 0.00745217921, 0.00120892434, -0.020370204, 0.0116303312, -0.0167674031, 0.0107467547, 0.0157262906, 0.0151372394, 0.0154112158, 0.0319731347, 0.00905494578, -0.0578639805, -0.0369869173, 0.00253942586, -0.00923988, -0.0106303142, -0.014712574, -0.00971249118, 0.0477268249, -0.0267264731, 0.00361307408, 0.00921248272, -0.00238017668, 0.00947961, -0.004863095, 0.00910289213, 0.0378088504, -0.0273977183, 0.0157810859, -0.0148495631, -0.012328973, 0.0349046923, 0.0375622697, 0.0258223489, 0.00239558797, 0.0182742774, 0.0343567394, -0.0107056582, -0.0273018256, 0.000677665405, -0.00878781825, -0.0375622697, -0.0460007675, 0.0138974926, 0.0405760184, -0.019383885, -0.0434527807, 0.0156577956, 0.0114727942, 0.00705491239, 0.00888371, -0.0256168656, 0.0385485888, 0.00122690399, -0.0570420474, -0.00143238693, -0.00247093174, -0.00671586534, 0.0291511714, -0.00662339805, 0.0117604705, -0.00395554537, 0.0101645533, 0.012787885, 0.0105207236, -0.00714395475, 0.00587338582, -0.041370552, -0.00740423333, -0.0036233482, -0.0111166239, 0.013787901, -0.00684600463, -0.0480555966, -0.0154249147, -0.0146029834, 0.00851384085, 0.0208222661, 0.0272196326, 0.00330656208, -0.0265620872, 0.00699326722, 0.0365211591, -0.00775355427, 0.000944365107, -0.00959605072, 0.00786314532, -0.0346307158, -0.0043973336, -0.00948646, 0.017918108, 0.0181783866, -0.0134248817, -0.00466103666, 0.00841794908, -0.0153016252, 0.0139043415, -0.00355827855, 0.00366444467, -0.0156440977, -0.0232195649, -0.0375074744, -0.00397266913, 0.00251545291, -0.0344937257, 0.0230003837, 0.0212058332, 0.0335074104, -0.000861743814, 0.00220722868, -0.00622613123, 0.00629805028, 0.0333704203, -0.0173153579, 0.00865767896, 0.0212195329, -0.0128221316, -0.0294525474, -0.00993852224, 0.00898645166, -0.00173461798, 0.0327128731, -0.0491515063, 0.0272196326, -0.00130310399, 0.000626722816, -0.00778780133, -0.0242743772, -0.00297436467, -0.0300005, 0.0295073427, -0.00804123, -0.0389595553, -0.0153427217, -0.0410143845, 0.0443569049, 0.00696929451, -0.0015145801, 0.00870562438, -0.00400691619, 0.0104727773, -0.0157125909, -0.0063870931, -0.00651038252, -0.0150550455, -0.00318840938, 0.0125002088, 0.0131509043, 0.0159865674, 0.000543245347, -0.0160276648, 0.00219695456, -0.0125550041, -0.00606174488, 0.0122399302, -0.0294799451, 0.00361992349, 0.0071165571, 0.00232709362, -0.00842479803, 0.00352403149, -0.0439459383, 0.000484597142, 0.00408225972, 0.00589050911, 0.0263840016, -0.000832633756, -0.00567132747, 0.0075001251, -0.0031062162, 0.0168358982, -0.000738882227, -0.0149043584, 0.00517474394, 0.0102330474, -0.0322471149, -0.0296991263, -0.0301648863, 0.0117741693, -0.00508912606, 0.013863245, -0.0179729033, 0.000607030699, -0.00415417878, -0.0110686775, -0.0168495961, 0.0455076098, -0.00359937525, 0.0694806129, -0.0119180074, 0.0327402726, -0.0232743621, 0.0136166653, 0.00861658249, -0.0221373551, 0.0014632094, -0.01356187, -0.015164637, 0.000662254228, -0.0332334302, -0.0103152404, -0.016315341, -0.0166441128, 0.0125070577, -0.0062672277, 0.0147536714, -0.026356604, 0.0253017917, 0.00840425, -0.0100686615, -0.00201886939, 0.00464733783, 0.00295381644, -0.00536310347, 0.0377814509, 0.00932207331, -0.0105892178, -0.000230312071, 0.0140687283, 0.00543159759, -0.0347951, -0.0399732701, 0.024055196, 0.00154540257, -0.00945906248, -0.00425349548, -0.0260415301, 0.0375348739, 0.0176852271, -0.0282196496, -0.000860887638, -0.0105275726, 0.0113632036, 0.0114727942, -0.0344115347, 0.0244798604, 0.0210003499, 0.0310690124, 0.0237812195, -0.00129967928, -0.010493326, 0.00372951431, 0.0145207904, 0.0338909775, -0.000468757818, 0.030877227, -0.0176852271, -0.0147673702, -0.00845219567, -0.0130002173, 0.0183564704, 0.0121440385, 0.0116029335, -0.0155345062, 0.0165345222, 0.00307539385, 0.0322471149, -0.0206304807, 0.0185893513, 0.00421582395, 0.0023168195, 0.0238497127, 0.0169728864, -0.0014186881, 0.0292333644, 0.018685244, -0.0129111744, 0.0279730689, -0.0256853607, 0.0180687942, -0.0135139246, -0.013253646, -0.00628092699, -0.0189044252, -0.00486651948, 0.0377540551, -0.0119796516, -0.00604462158, 0.00665079616, -0.038603384, 0.0113495048, -0.00809602533, 0.00552064, 0.00655832887, 0.0136646116, -0.0021986668, -0.010116607, -0.0113084083, -0.0150687443, -0.0118837599, -0.00567132747, 0.0269319564, -0.0238086171, -0.0229044929, 0.0175208412, 0.00891110767, 0.00284936256, 0.0101234568, -0.00179626292, 0.0307402387, 0.0102467462, 0.0118221156, -0.00399321737, 0.0107878512, 0.0547954366, 0.0238908101, -0.0076371138, -0.0395349078, 0.0213428214, -0.0134248817, -0.024589451, -0.0136851603, -0.0241373889, 3.64143489e-05, 0.0282196496, 0.0304388646, 0.0254113823, 0.0237949174, 0.017082477, 0.0160687622, 0.00683915522, 0.00643503899, -0.0187948346, -0.0338909775, 0.0212880261, -0.0626311824, 0.0367129408, -0.0208633617, -0.0343841352, -0.00294011761, -0.00828781, 0.00541789876, 0.00776040368, -0.00378088513, 0.0210825428, 0.0156166991, 0.00604462158, 0.020068828, 0.0342197493, -0.0251922011, 0.00748642627, -0.000923816813, 0.0160824601, -0.0252195988, -0.0383020081, 0.0125961006, 0.0109179905, 0.0103220902, 0.00563365547, 0.0272196326, -0.0256990585, -0.00794533826, -0.0327950679, 0.0013578994, 0.000264345173, 0.00641791523, -0.0164934266, -0.0295073427, 0.0287402067, -0.0339731686, 0.0174112488, 0.00954125542, -0.000988030224, 0.0303840693, 0.031206, -0.00610626629, -0.00644873781, 0.0225072242, 0.00156423845, -0.0249182247, 0.0556995608, 0.0321375243, 0.0198770445, 0.014013933, 0.00883576367, -0.0312333982, -0.0293155573, -0.0102398973, 0.0107193571, -0.0267812684, 0.00141783187, 0.0393431224, 0.005208991, 0.0563297085, 0.00484254677, -0.0124522625, -0.0258223489, 0.0361923836, 0.0142605118, 0.021822283, 0.0243154746, -0.0161509551, 0.0249182247, -0.0171783697, -0.0110618286, 0.018383868, 0.0147947678, 0.0284114331, 0.0185756534, 0.0261785202, 0.0190277155, 0.0109933345, -0.00211989833, 0.0208633617, -0.0257264562, 0.0343841352, 0.0138906427, 0.0157536883, 0.0121988337, 0.00228428468, -0.0314799771, 0.014397501, -0.0410965756, -0.0113426549, 0.00989742577, -0.014630381, -0.0419185087, 0.0146440798, 0.0103083914, 0.0183975678, 0.0034897842, -0.026356604, 0.0201099254, 0.0481651872, 0.0219729692, 0.0218907762, 0.0244387649, -0.0416993275, -0.0214661118, 0.014863262, -0.00247435644, -0.0176030342, -0.0457815863, 0.0243017748, -0.0227401052, 0.0030873802, 0.00353430561, -0.00473980512, -0.00987687707, 0.0215620045, 0.0440555289, -0.00581174064, -0.00634942111, 0.0219866689, 0.039452713, 0.0155345062, -0.00384252984, 0.0230414812, -0.023055179, 0.0506583788, 0.00997961871, 0.00776040368, -0.0159043744, -0.00116697152, 0.0331786349, -0.0106166154, 0.023356555, -0.00579119241, -0.0197674539, 0.0313703865, -0.0241099913, -0.00304457126, -0.000852754, 0.0297539216, -0.00509597547, 0.0198496468, 0.00300518726, -0.0205893852, 0.00971934, -0.012253629, -0.005400775, -0.0406582132, -0.0136166653, 0.0146988751, -0.0119043086, -0.00728779286, 0.0346033163, 0.0225483216, -0.0254250821, -0.0175208412, 0.0406308137, -0.0100412639, 0.0153564205, -0.0529049933, -0.0159865674, 0.0388499647, 0.0273292232, 0.0152468299, 0.00756861968, -0.00909604225, -0.0162331481, -0.0195208732, -0.0126988422, 0.020301709, 0.0227127075, -0.00924672931, 0.0244935602, -0.00685627898, 0.000980324578, -0.0141646201, -0.0158769768, -0.0027414842, 0.0452062339, -0.0231784694, 0.0239593033, 0.0184934586, 0.0292333644, 0.00875357073, 0.0188633278, 0.00975358766, 0.0250689108, -0.019301692, 0.0048802183, 0.0112810107, -0.0239456054, -0.0233702529, -0.0120481467, 0.0151783358, 0.0199044421, -0.0361375883, -0.0216852929, 0.00268326397, -0.0208907593, 0.0334800109, -0.00541104935, 0.0018630448, -0.0435897671, -0.0143564036, -0.0329868533, 0.0196578633, 0.000532543112, 0.0341375545, -0.00107450422, -0.045726791, 0.0333978161, 0.029342955, -0.00549324229, 0.00994537119, 0.0127056912, -0.0286032166, -0.00147519587, 0.000495299348, 0.0630147532, -0.0341101587, -0.00580489123, -0.0130344639, -0.000723042875, 0.0101645533, 0.014630381, 0.00473980512, -0.00195722445, 0.0442473143, -0.0154934097, -0.0173701532, -0.0103152404, -0.0151235405, -0.0307128411, 0.0234524459, -0.00411308231, -0.0149728525, 0.0196989588, -0.0322471149, 0.0318635441, 0.0184112657, -0.0112193655, -0.0239319056, 0.0154523132, 0.00732888933, -0.0187537372, 0.0113152573, 0.00412678113, 0.00243497221, -0.00466103666, -0.0166715104, -0.010109758, 0.0102809938, -0.00198290986, -0.018466061, 0.00708231, 0.00258394727, 0.0250278153, -0.00858918484, -0.0693710223, -0.00370554137, -0.00662339805, 0.0223839357, 0.0287676044, 0.0134659782, 0.0153016252, -0.0418911092, -0.0159728695, 0.016164653, -0.0250963103, -0.0182331819, 0.0181235895, -0.0209044591, 0.00311820279, 0.0129385721, -0.00107450422, -0.0206578784, -0.0175071415, -0.0120618455, -0.0324662961, 0.0162879433, 0.033315625, -0.0300552957, 0.00731519051, 0.00247093174, -0.0152194323, -0.00473295571, 1.01069218e-05, -0.00187674363, -0.0132125495, -0.0159865674, -0.00778780133, -0.00667476887, 0.00630832464, -0.0150687443, 0.00558913453, -0.00182366057, -0.00865767896, 0.0159865674, -0.00726724463, -0.00672956463, -0.0158084836, 0.00976728648, -0.00747957686, 0.0317813531, -0.000568074582, 0.0175482389, 0.0109042916, 0.00916453637, 0.00192640198, -0.0369047262, -0.0292059667, -0.0101303058, 0.0103289392, -0.0169043913, 0.00962344836, -0.00719875051, -0.0143016083, 4.37988892e-05, 0.0922755152, -0.0135139246, 0.00255483715, 0.00392129831, 0.00554118818, -0.0121234898, 0.00222263974, 0.0359732024, 0.0135755688, -0.0192058, 0.00265415385, 0.0286580119, -0.00847959332, 0.00892480649, -0.0136303641, 0.010034414, -0.0115823848, -0.0016584181, 0.016383836, -0.0219181739, -0.0236031339, 0.0271648373, -0.0156166991, -0.017233165, 0.0101234568, 0.0222880431, 0.00910974108, -0.0132741947, -0.0254524797, 0.00402404, 0.00950015895, -0.0166578125, 0.0155208074, -0.000290030526, 0.00258394727, 0.00863028131, 0.0233976506, 0.017233165, 0.00969879236, -0.0216715951, -0.00744533, -0.0361101925, -0.0110549787, 0.0163564365, -0.00413020607, 0.00213188492, -0.0215346068, 0.0284662284, -0.0480282, 0.00438363478, 0.0170413796, 0.0061747604, -0.0124248648, -0.0169728864, -0.0149317561, 0.0261374228, 0.0109453881, 0.00900015049, 0.00355142914, 0.0109042916, -0.00723299757, -0.0154112158, 0.00840425, -0.0337539874, -0.00506857783, 0.00504118, -0.0296717286, -0.0167263076, 0.0163701363, 0.024740139, 0.00797273591, 0.0151783358, 0.0195619706, -0.0087193232, -0.00422609784, -0.000133777925, -0.0051473463, 0.011952254, -0.0174660459, -0.0418911092, 0.00354800443, 0.0142194154, -0.0243154746, 0.0160002671, 0.0205071922, -0.00622613123, -0.00880151708, 0.0179592036, -0.00989742577, 0.0188496299, -0.0234524459, 0.0145481881, 0.0126029504, 0.00667819381, -0.00102227728, 0.000256853615, 0.0180139989, 0.0426582471, -0.00276545715, -0.00148547, 0.0309046265, 0.00155738904, 0.013637214, 0.0173838511, -0.0175482389, -0.0298087168, 0.0169865843, -0.0168221984, -0.0280415639, -0.000159035189, 0.0322745107, 0.00134420057, 0.0261374228, 0.0170139819, 0.0346581116, 0.00524323806, 0.0189455226, 0.00812342297, 0.000252572703, -0.0189318229, 7.1544433e-05, 0.0327676721, 0.0102878427, -0.0109796356, 0.0286306143, 0.0272333305, 0.00717135239, 0.00791109074, -0.00656517828, -0.00535282912, -0.028110059, 0.00928097684, -0.00383910513, 0.0112741608, -0.0251511056, -0.00253257644, 0.00959605072, -0.00258908421, 0.0047809016, -0.0173701532, 0.00897960179, -0.000796674285, 0.0060206484, -0.00866452791, 0.0032980002, 0.00583228935, 0.0206304807, -0.0170413796, 0.0308224317, -0.0302196834, -0.00378430984, -0.0353156589, 0.0218496807, -0.00494871289, -0.0107399058, -0.00296922773, 0.0109796356, -0.0200414304, 0.00821931567, 0.0160550624, -0.00923988, 0.0105481213, -0.000279328291, -0.0114385467, 0.00346238655, 0.012178285, -0.0204934925, -0.0235483386, -0.00221921504, 0.00620558299, 0.00013870094, -0.010417982, 0.00147605198, -0.0253702868, 0.0139591368, 0.0200962257, -0.00576037029, -0.0314251818, 0.0236168317, -0.0102672949, 0.00339560467, -0.0213839188, 0.00597955193, 0.0192605946, -0.0155619038, 0.00684258, 0.00383910513, -0.00141012634, 0.021822283, -0.000426377, 0.0065960004, 0.00116183446, -0.0190414134, 0.00926727802, -0.0174660459, -0.0147262737, -0.00967139471, -0.0176578294, -0.00972619, -0.00447610207, -0.0237127244, -0.00143324316, 0.0220414642, -0.00104111328, -0.00632544793, -0.00993167236, -0.0276853945, -0.0098563293, 0.0193564873, -0.00182708527, 0.0125687029, 0.0120481467, 0.0116851265, -0.0243291724, -0.00218668045, 0.0118769109, 0.0229729861, -0.00829465874, 0.00754122157, -0.00874672178, 0.029562138, 0.00376376137, -0.0170276817, -0.00077912258, 0.0107741524, -0.00436993595, 0.0117810182, 0.0030873802, 0.0100207152, 0.0072056, -0.0138769438, 0.00238702609, 0.0193701871, 0.0195893683, 0.00991112459, -0.017082477, -0.0169865843, -0.0340553634, -0.0115892347, 0.0290963762, -0.005592559, 0.0174934436, -0.0269319564, -0.00361649878, -0.0123700695, -0.000147583793, 0.0335348062, 0.00266271573, -0.00479117595, -0.0173427556, -0.0198907424, 0.0051096743, 0.0233017597, -0.017616732, -0.00822616462, -0.00710285828, 0.0194797777, -0.0182879772, -0.0417541228, -0.0550968088, 0.0525762215, 0.0124591123, 0.00915768743, 0.000887001108, -0.0126508959, 0.00381170749, -0.0343293399, -0.0228633955, -0.0188496299, 0.0111919679, 0.00518844277, 0.00907549355, 0.00114128622, -0.00891795754, 0.00152656657, 0.00323464302, 0.0282470472, -0.00779465074, -0.0166441128, -0.00348635949, -0.00747957686, -0.00865082908, 0.0155071085, -0.00454117171, 0.00783574767, -0.00594530487, 0.000780406874, 0.0134933759, -0.0107399058, 0.000120935241, 0.0203976016, -0.00250346656, 0.0104796272, -0.0211099423, -0.0335348062, 0.0109453881, 0.0134865269, -0.0197400562, -0.00527748559, 0.00866452791, 0.0284114331, 0.0083974, 0.00906864461, -0.000988030224, -0.0200551301, -0.0107810022, -0.0155619038, 0.000522269, 0.0261100251, 0.0138769438, 0.0098152319, 0.020151021, -0.00704121357, -0.00594188, 0.00653093075, -0.0124385636, -0.0123221232, 0.0220962595, 0.0144248987, -0.0212743282, 0.00104796269, -0.00885631237, 0.0208770614, 0.0144659951, -0.0114385467, -0.0273018256, -0.0162468459, -0.019383885, -0.00565077923, 0.00832205638, -0.00767136086, -0.0199044421, -0.00860973261, 0.0310416147, -0.00728779286, 0.00345724961, 0.0383842029, -0.00756177027, 0.00959605072, 0.0021438715, -0.0135755688, 0.00327745196, -0.00745902862, -0.020685276, 0.00894535519, -0.0122673279, 0.0392609276, 0.0237127244, -0.0197400562, -0.0131920008, 0.00275518303, -0.0107741524, -0.00569530064, 0.0094522126, 0.00232366892, 0.0109590869, -0.00517474394, -0.000507285877, 0.00454117171, -0.0219866689, 0.0269045588, -0.00459596701, -0.0237949174, -0.0127673363, -0.00472268136, -0.0374526791, 0.00265072915, -0.00379115925, 0.0108974418, 0.0130755603, -0.0146988751, -0.0105960676, 0.02328806, 0.00614393828, 0.0272470303, 0.00373978843, 0.0275621042, -0.0364115685, -0.0175756365, 0.00156338222, 0.000345468085, -0.00463021407, -0.0175071415, -0.0331512392, -0.00191612786, 0.00427061925, -0.029342955, -0.00584941264, 0.00562680606, 0.0164386313, 0.0111919679, 0.00945906248, -0.00272607291, 0.0301922858, -0.023205867, -0.0118015669, -0.0338087827, -0.0157947838, -0.00602407334, -0.0111097749, 0.00949330907, 0.0114522465, -0.0181646869, 0.0063870931, 0.0217674859, 8.34774182e-05, 0.01945238, -0.0328224674, 0.00670216652, 0.00194523798, 0.0103563368, -0.00232538139, -0.0214661118, 0.00253771362, -0.0195893683, -0.00577749358, 0.0259456392, 0.0421376899, 0.00145464763, -0.0181646869, -0.0161235575, 0.00816451944, -0.00783574767, -0.0330416486, -0.0221647527, -0.0103563368, -0.000167489954, -0.0285484213, -0.00726039521, -0.000190392733, -0.0159454718, -0.016315341, 0.0240962934, 0.00896590296, -0.00997961871, 0.0262470134, 0.0211784355, 0.0135755688, -0.0249319226, 0.0349046923, 0.0305758528, -0.0215209071, -0.0124385636, -0.00601037452, 0.00503775524, 0.00381513219, -0.020986652, -0.00758916792, 0.00590420794, -0.0122810267, 0.023137372, 0.00935632084, 0.00397951854, 0.0237812195, -0.0115344394, -0.00613023946, -0.0218770783, -0.00229969597, 0.00738368509, 0.0069795684, -0.00606517, -0.00489049265, -0.00933577213, 0.0121851349, -0.0102604451, -0.0067877844, 0.0118495133, 0.00191270316, -0.00677751051, 0.0129180243, 0.00704121357, -0.0210825428, 0.0165482219, 0.00438363478, 0.0233017597, -0.00567817688, -0.00542474817, 0.0130070662, 0.0244113673, -0.00530488323, 0.000333267555, 0.00900699943, 0.0225757193, -0.00401719054, -0.00930152554, 0.0634531155, -0.0121851349, 0.00686655287, -0.00613366393, 0.0170687772, -0.0117262229, 0.00442473125, -0.00199489621, -0.0105755189, 0.0207263734, -0.00484254677, 0.00238188915, 0.00219181739, 0.0117947171, -0.0110686775, 0.0119043086, 0.0100481128, -0.000778266403, -0.00520556653, 0.0185893513, 0.00367814349, 0.00653778, 0.0174523462, -0.00823301449, -0.0106919594, -0.00315758702, -0.00648641, -0.0197263565, 0.0068254564, 0.00417472702, -0.0273292232, 0.00901384931, 0.013096109, 0.0165893175, 0.0143701034, 0.0245620534, 0.00875357073, 0.00967139471, -0.0254935771, -0.00974673778, 0.0129728196, 0.023438748, 0.0224524289, 0.0158221815, 0.00864398, -0.0240277983, -0.00939741731, 0.00177228986, 0.0215072092, 0.00451377407, -0.0133769354, 0.0230962764, -0.005017207, 0.0140276318, 0.0236990266, -0.0110892262, -0.00589050911, -0.0268223658, -0.00876727, 0.00262504374, 0.00478775101, 0.0130618615, -0.010417982, 0.0107399058, 0.00809602533, -0.00271237409, -0.028110059, -0.00511994865, 0.0106851095, 0.0181235895, 0.014630381, -0.0245483555, -0.0136235151, -0.0133495377, 0.00644873781, -0.0035274562, 0.0148084667, 0.00152314187, 0.00428431807, -0.00856863614, 0.00708231, -0.0125961006, -0.00662339805, -0.00194181327, -0.0175345391, -0.00847274438, 0.00618161028, 0.00954810437, -0.00583913876, -0.00824671332, 0.0054042, 0.017616732, -0.00460281642, -0.00225003762, 0.0130755603, 0.00473295571, -0.0117810182, 0.00175859104, -0.00977413543, 0.0129728196, 0.022370236, -0.0087193232, -0.0136098163, -0.0236853268, -0.00291272, -0.00570557453, 0.00516104512, -0.00945906248, 0.0144522963, -0.0221921522, 0.00127313775, -0.019233197, 0.00943851378, 0.0238771103, 0.0140413307, 0.0184934586, 0.0134728281, 0.000404544437, -0.00120549963, 0.00800013356, -0.0174934436, -0.0355622359, -0.00450692466, -0.000905837049, 0.0157125909, 0.0184934586, -0.00545214582, 0.00508570112, -0.0146166822, 0.0158906765, -0.00112330646, 0.00311306561, 0.00706861122, 0.0107193571, 0.000528690347, -0.00361307408, 0.00704121357, 0.0155208074, 0.00581859052, -0.000724755228, 0.012328973, -0.00289045926, -0.0187811349, -0.0176441297, 0.00692134863, -0.00192811433, -0.00782204885, 0.016164653, 0.00453089736, -0.00652408134, 0.0125824017, -0.0172468629, -0.0206167828, -0.0172605626, -0.00853438862, 0.00160447881, 0.0367403403, -0.0204797946, -0.0267264731, -0.0126988422, -0.0252606962, -0.0352060683, 0.0119385552, 0.017082477, 0.0143153071, 0.00560625782, 0.0149728525, -0.000488449936, 0.0027003875, -0.00954125542, -0.0145755857, 0.0158769768, 0.0225072242, -0.00117125246, -0.00535625359, -0.00538707618, 0.0101714022, 0.0200277325, 0.0122056836, 0.00654805452, -0.00620558299, -0.0203839019, 0.013555021, 0.00550009171, 0.0164934266, 0.0169728864, -0.0168221984, -0.00703436416, -0.0210414473, -0.012945422, 0.0185482558, 0.00401034113, -0.00224661292, -0.0216304976, -0.00201202, -0.0157810859, 0.00801383238, 0.00244182162, -0.0223839357, -0.020918157, -0.0142057166, -0.00745217921, -0.00976728648, -0.0246168487, -0.00311306561, -0.0274525136, -0.0032980002, 0.00793848839, -0.00586996088, -0.0102946926, -0.060658548, -0.00949330907, 0.00445897877, 0.0164523292, 0.00299320067, 0.032329306, 0.018466061, -0.02497302, 0.0181509871, 0.00025578338, -0.00129282975, 0.0136851603, -0.0028151155, -0.00674668793, 0.00360964937, 0.0116577288, -0.000775697874, 0.014397501, -0.00764396321, -0.0177263226, -0.00816451944, -0.0126645947, 0.0319731347, 0.0204386972, -0.00253942586, -0.019685261, 0.00757546909, -0.0130276149, 0.00164471928, -0.005784343, 0.000903268519, 0.00520556653, -0.00269525056, 0.00628092699, 0.00216441974, -0.00693847192, 0.0297265239, 0.0133632366, -0.0238771103, -1.98793987e-05, 0.00256339903, 0.00805492885, 0.00522269, 0.026356604, -0.00363362231, -0.00566105358, 0.0122673279, 0.0097809853, 0.0036267729, 0.00828781, 0.000168132086, 0.0142605118, 0.00454802113, 0.00643846346, 0.0035308809, -0.00975358766, 0.0021438715, -0.00131594657, -0.0264114, 0.0168358982, -0.00350177079, -0.00151971716, 0.00302231079, -0.00432883948, -0.0126577457, 0.0209592544, 0.0222880431, -0.014781069, 0.00293669291, 0.00806862768, 0.00150773069, 0.00645558722, 0.0255209748, -0.00443843, 0.00743163098, 0.000244867115, 0.0100481128, -0.00031785632, -0.00504802959, 0.00814397167, 0.0131988507, -0.0137057081, 0.00325176655, 0.0154523132, -0.00993852224, -0.00259422138, -0.0246442463, 0.016383836, 0.00338533055, 0.00858918484, -0.017698925, 0.01080155, 0.0199592374, 0.0195756685, 0.025356587, 0.0110001834, 0.0124385636, 0.0297813192, -0.0107125072, -0.00298292655, -0.00582886441, -0.00134420057, -0.00896590296, -0.00627750205, -0.00651038252, -0.00305142091, -0.00579461735, -0.0335896, -0.00148461387, 0.011335806, -0.00958920084, 0.00241613621, 0.00489049265, -0.024205884, -0.0121303396, 0.00202058163, -0.0024092868, -0.0165756196, 0.00610969122, -0.0110275811, -0.0240688957, -0.000318498467, -0.00591448229, 0.0103152404, -0.0144522963, 0.0229181908, -0.000878439343, 0.015013949, 0.0062672277, 0.0138495462, -0.0207537711, 0.0192058, -0.0141098248, 0.0094727613, 0.00533228088, -0.00982208177, -0.0159180742, 0.00831520744, -0.0336717963, -0.0341375545, -0.00976728648, -0.0146577787, 0.00536995288, 0.0222606454, -0.00954125542, -0.0198496468, 0.0184797607, 0.0150413467, 0.00674668793, -0.000229883968, -0.0250278153, -0.00945906248, 0.0010608054, 0.00872617308, -0.00492473971, 0.0290963762, -0.00237503974, -0.00723299757, -0.0121166408, 0.0188496299, -0.00701381592, -0.00947961, -0.0172879603, 0.0108289476, -0.0250004176, -0.00845904555, -0.00342642702, 0.0201236233, 0.0189866181, -0.00834945403, 0.00355485384, 0.0196030661, -0.00510625, -0.000636140758, -0.00630147522, 0.0395075083, 0.0137536544, -0.0151098417, 0.00172263151, 0.000565077935, -0.00144180492, -0.00166355516, 0.00620558299, -0.017150972, -0.0060959924, -0.00601722393, 0.00193838857, -0.00192982669, 0.00291956938, 0.00677408557, -0.00943851378, -0.00673983851, 0.00336135738, 0.005171319, -0.0115138907, -0.000867737108, -0.0157399885, 2.21402461e-05, 0.0045343223, 0.0235072412, -0.0156714953, 0.0133563876, 0.00366786937, -0.00204284233, 0.000846760697, -0.00410280842, 0.027808683, 0.0168495961, -0.00453774678, -0.0145892845, 0.0190003179, 0.00908234343, 0.00351718208, 0.0201784186, -0.0107467547, -0.0274662115, -0.000330699026, 0.0158632789, -0.00993167236, 0.00683915522, -0.00801383238, -0.00587681029, 0.0180550963, -0.00103854469, 0.0107810022, -0.00034396979, 0.00516104512, 0.0165619198, 0.0134865269, 0.00205654115, -9.78184107e-05, 0.00553433876, 0.0100207152, 0.0219729692, 0.0118563622, 0.0338909775, 0.00199318398, 0.00994537119, -0.0118495133, 0.0278634783, 0.0214935094, 0.00328258914, 0.00822616462, 0.0263429061, -0.0258497465, 0.000938371813, -0.0269319564, -0.00703436416, 0.00960975, 0.00913029, -0.00143067457, 0.00727409404, -0.0103152404, -0.00194010092, 0.00658915099, -0.0240277983, -0.0147262737, 0.016383836, 0.0030257355, 0.0183427725, -0.0013964274, -0.0126782935, 0.00579119241, 0.0128221316, -0.0177948177, 0.00915083755, 0.0182879772, 0.0126782935, 0.0293977503, 0.0220688619, -0.0266716778, -0.026123723, 0.00627407758, -0.000451206171, -0.0161372554, 0.0184523631, 0.00717135239, 0.0125687029, -0.0241921842, 0.00309765455, 0.0002208941, 0.00148375763, 0.00952070672, 0.028110059, -0.0165756196, -0.0106029166, 0.0208770614, 0.004863095, -0.0182742774, 0.0277538877, -0.0118837599, -0.00214558374, -0.00478432653, 0.0155619038, -0.00888371, -0.0119865015, 0.00652750628, 0.012712541, -0.0217263903, 0.0207263734, -0.0104590785, -0.00831520744, 0.00452062348, -0.00465418724, -0.0169865843, 0.0169865843, 0.0109316893, 0.00111046375, -0.00396581972, 0.00776040368, 0.00377061078, 0.0203976016, 0.00371924019, 0.0138974926, 0.00797273591, 0.00366102, -0.0175619368, 0.00546926958, 0.028795002, 0.00853438862, -0.00652750628, 0.0102056498, 0.0176304318, -0.012102942, 0.0174934436, 0.000304799614, 0.00982208177, 0.0192879941, -0.00754807144, 0.00350690796, -0.00419185078, 0.0028339515, -0.00744533, 0.0161235575, -0.00187503127, -0.00733573874, -0.00106508622, 0.00369869196, 0.00466446159, 0.0190277155, 0.0245072581, 0.0028185402, 0.00789054297, 0.00875357073, -0.00379458396, 0.0151509382, 0.00878781825, -0.00911659095, 0.00309594208, 0.00538707618, 0.00475007948, -0.00564735476, -0.00844534673, 0.028877195, -0.0107262069, -0.0143838022, 0.011260462, -0.025123708, -0.000829637167, 0.0166852102, 0.0169180911, -0.0285210237, -0.00553091429, 0.0220551621, -0.0102741439, -0.0151509382, -0.00990427472, -0.00999331754, -0.013712558, 0.0195893683, -0.0101440046, -0.0168358982, -0.0141920177, -0.0179044083, -0.0120481467, -0.00385965337, 0.0266716778, 0.00178598869, -0.00103426387, -0.00326032843, -0.0218770783, -0.00248291809, 0.00771245733, 0.0266305823, 0.00220551621, -0.00318840938, 0.00299662538, 0.0187126417, 0.00209935, 0.00731519051, -0.00699669216, 0.00726724463, 0.0021438715, 0.00378088513, 0.0120755443, 0.00132622081, -0.0144385975, 0.00144094869, -0.0135481711, -0.0126097994, -0.021753788, 0.00278429314, 0.00664052181, 0.0427952334, 0.00121491752, -0.0188770276, -0.00603092276, -0.00773300603, 0.0361375883, 0.0162331481, 0.0107467547, -0.0160139669, 0.0318361484, 0.00410280842, 0.0275347065, 0.0167400055, -0.00960975, -0.00182708527, 0.015698893, -0.0217948835, 0.00479117595, 0.00215243315, 0.00385965337, -0.0126714446, -0.00749327568, 0.00336991926, -0.00849329215, -0.00757546909, 0.00501378253, 0.0132193984, -0.00906179473, -0.0168906935, 0.00427746866, 0.0078494465, -0.00271408632, 0.0286032166, 0.00490419148, -0.0205756854, -0.00139214657, -0.00788369309, -0.00870562438, 0.00878096838, -0.0058665364, -0.00759601733, 0.0189044252, 0.005284335, 0.00708915945, 0.0131577542, -0.0241647866, -0.00375348725, 0.00850014202, -0.00477062771, 0.0121645862, 0.033315625, 0.00372951431, 0.00930837449, 0.00618161028, -0.00190071668, 0.00332368561, -0.000167489954, -0.000773129344, 0.00631517405, -0.0220962595, 0.0206989758, -0.0123700695, 0.00125173328, -0.0102125, 0.00348293479, 0.0164934266, 0.0272470303, 0.0135755688, -0.00100001669, 0.0214524139, -0.0016198901, -1.74178858e-05, 0.00977413543, 0.013555021, 0.0185893513, 0.00164471928, 0.00153170363, -0.00324662961, -0.0115138907, -0.00659942534, -0.00145122281, 0.0126097994, -0.011719374, -0.00412335666, 0.00395897031, -0.00606859429, 0.00987002812, -0.0291785691, 0.000330913055, 0.0215483047, 0.00455144607, -0.0253839847, -0.0118974587, -0.0304936599, -0.0138153, 0.00383910513, -0.00207708939, -0.0324662961, -0.00996592, 0.0044726776, -0.0143564036, -0.028493626, -0.0107673034, 0.00234592962, 0.00202743104, 0.00678093499, 0.0308224317, 0.0168906935, 0.0152194323, -0.00860973261, -0.00425349548, 0.0104727773, -0.0224798266, 0.0019075661, -0.0213976167, -0.000261562585, 0.00841794908, -0.0128084328, -0.00275518303, 0.00138700951, -0.00733573874, -0.0126440469, -0.0174523462, -0.0215894021, -0.0040514376, -0.00967139471, 0.00462336466, 0.00154454634, 0.0111988168, -0.0130070662, 0.000656260934, -0.000514563406, 0.000687511463, -0.020301709, -0.0112467632, -0.00178770104, -0.00384595455, 0.00901384931, -0.00372608961, 0.017698925, -0.0187400393, 0.00193838857, -0.0209592544, 0.00550009171, 0.00741108274, 0.0207948685, 0.0032021082, -0.00971934, 0.0153290229, 0.0108289476, 0.00900699943, -0.00274662115, -0.00537337735, -0.00164557539, 0.0105138738, 0.00315416232, -0.0236305315, -0.00173204951, -0.0247127414, 0.0327676721, 0.00192982669, 0.0189592205, -0.00377403572, 0.00516104512, -0.00472953124, -0.0145344893, 0.0192195, -5.40462788e-05, 0.0203428045, 0.011260462, -0.00779465074, 0.00214215904, 0.0105549712, 0.00298635126, 0.0177400224, -0.0104796272, -0.00101371552, 0.0152194323, -0.00363019761, 0.0148769608, 0.0272744279, -0.0266031846, 0.012870078, 0.0017448921, -0.0254113823, -0.00368841784, -0.00408568466, -0.00996592, -0.0120755443, 0.00717135239, -0.0108700441, -0.0084316479, 0.0264114, 0.0106782606, -0.00829465874, -0.00635284558, 0.0166578125, -0.00585283758, 0.00892480649, -0.00446925266, 0.00359937525, 0.00477747712, -0.0119796516, -0.00661654864, 0.000666963169, 0.0101577034, -0.0142331142, 0.00451377407, 0.028493626, 0.00664052181, -0.0127536375, 0.0122399302, 0.00573639711, -0.00305313314, -0.00381170749, 0.00647271099, -0.0173016582, -0.0176715273, 0.00683573075, 0.000541961112, -0.00749327568, -0.0236990266, 0.00410280842, 0.0011472794, 0.012253629, -0.0361101925, -0.00629462581, -0.00254285056, -0.0136714615, 0.0206578784, -0.00917138625, 0.00238873856, -0.00912344, 0.00773985544, 0.0143701034, 0.00565420417, -0.00563708041, 0.00882206485, -0.00369184255, 0.00643161405, 0.00792479, 0.00603092276, 0.0128358305, -0.00125344563, -0.0110481298, -0.00915768743, 0.0175345391, 0.000772701285, -0.00571927335, -0.00531858206, 0.00532200653, 0.0289045926, -0.0120823933, -0.0102261985, 0.000236305321, 0.0028339515, 0.00103512, -0.0142331142, -0.00972619, -0.0202880092, 0.00529460888, -0.000677665405, 0.00496241171, -0.000427447201, -0.00432541454, 0.00184420892, 4.26751576e-05, -0.0237949174, 0.0520008691, -0.0169591866, 0.0152605288, -0.0109453881, 0.0116988253, 0.0115823848, -0.035151273, -0.0109659368, -0.0078288978, -0.0330690444, -0.00810972415, -0.00039662476, 0.0189318229, 0.0149454549, -0.0143153071, -0.0122125326, -0.00538707618, -0.00684942957, -0.0184249654, 0.0125413053, -0.00131423422, 0.0140824271, -0.0164386313, -0.0171098746, 0.0281922519, -0.00590420794, -0.0236990266, -0.0145344893, 0.0268634614, -0.0173427556, -0.00145807234, -0.00350348325, 0.005592559, -0.00424664607, 0.0123495208, 0.0149728525, 0.00641449075, -0.00321923173, 0.00597612699, -0.0191921014, 0.0129248733, 0.00380828278, -0.00734943757, -0.0135002257, -0.0097604366, 0.0032432049, -0.0116508799, 0.0087946672, -0.00326546538, -0.0195071753, 0.0125892516, -0.000814654, 0.0187811349, -0.00812342297, -0.0316717625, 0.0289593879, 0.000665678934, 0.00286648632, 0.0233291574, -0.0101303058, 0.00284251315, 0.00559598394, -0.0124385636, -0.00376376137, 0.00228770939, 0.01776742, 0.00233736774, 0.00717135239, -0.0122673279, -0.0161920507, -0.00236305315, -0.00143409928, 0.030877227, -0.005171319, 0.00136303646, 0.014013933, 0.00875357073, 0.00543159759, -0.000234378909, -0.0267401729, 0.00703436416, -0.005092551, 0.0119111575, 0.0236031339, -0.0207537711, -0.00119779399, 0.016466029, -0.0129043246, -0.00951385777, 0.0102741439, 0.00383568043, -0.0108289476, -0.00755492086, -0.0297539216, 0.0206578784, 0.00937686861, -0.0110686775, -0.00452062348, 0.00775355427, 0.0120412968, 0.00910289213, 0.00616448652, 0.00926042814, -0.00161646539, 0.00682203192, 0.00352060678, 0.00370211666, -0.00071448111, -0.00330656208, 0.000532543112, -0.00431171572, 0.00492816465, -0.00219352986, 0.00788369309, -0.00540762441, 0.0295347404, 0.0231784694, -0.00201544468, 0.00103340764, -0.00550694112, 0.0100823604, 0.000988030224, -0.0125687029, -0.0140070831, -0.00355485384, -0.0314251818, -0.000920392107, -0.00554461312, -0.00193667621, 0.0160687622, 0.00923303049, 0.0103083914, 0.00792479, 0.0175482389, 0.0243017748, 0.000640849757, 0.00331169902, 0.0106303142, 0.0145344893, 0.00830835756, 0.0229729861, 0.00895220414, 0.00318156, -0.0329868533, -0.0166304149, -0.00290758279, -0.00636996934, 0.0048802183, -0.0144522963, -0.00265586632, 0.00292641879, -0.0127467886, -0.00570215, 0.0313703865, -0.0262607131, -0.0193427894, -0.0209729522, -0.00826726109, 0.00532885594, -0.0096029, 0.000349534937, 0.017616732, -0.00325519126, 0.00293498044, -0.00373636372, -0.00503775524, 0.000539820641, -0.00357882679, -0.01332899, -0.0135687198, -0.00859603379, -0.0113495048, -0.00868507661, 0.000583913876, -0.000894706696, 0.00839055143, -0.0159591697, 0.00637339428, 0.00376033667, -0.00787684415, -0.0208085664, -0.00558228511, -0.00470213313, -0.00954125542, -0.00503090583, 0.000753437227, -0.0015051621, -0.00668161828, -0.0104659284, 0.00869192556, -0.00594872935, -0.00542817265, 0.00856863614, 0.0111371726, -0.00148461387, 0.00342129, -0.00305998255, -0.0059213317, 0.018616749, -0.0179455057, -0.019685261, -0.00520556653, -0.0111029251, 0.0324662961, 0.00329628796, 0.0133084413, 0.0172468629, -0.00298977597, -0.0111782691, 0.000732460874, -0.0107056582, 0.00193153915, 0.00709600886, 0.00834260508, 0.0221373551, -0.0155756027, 0.015548205, -0.0114248479, -0.00175088539, -0.0128426803, -0.0180824939, -0.0136098163, -0.0175208412, -0.00151886092, -0.015013949, -0.00321409479, 0.00173889892, -0.000183222233, -0.0243702698, 0.0083974, -0.00693847192, 0.0119728027, 0.00773985544, -0.0229455885, -0.00916453637, -0.0177400224, -0.0029880635, -0.0251100082, 0.000765423756, -0.0214524139, 0.0022979835, -0.00924672931, 0.0156851932, -0.0271648373, 0.0148769608, -0.00897275284, -0.00209421315, -0.00209250068, 0.00249832938, 0.0040514376, -0.0145481881, 0.00140413304, 0.0081576705, -0.00933577213, -0.0203154068, 0.0169591866, 0.0162605457, 0.0104111331, 0.0163290389, -0.00890425779, 0.00532200653, 0.0122193824, 0.0268634614, -0.0210277475, 0.015603, -0.00800013356, 0.0171098746, -0.00071919011, 0.0173838511, 0.013178302, 0.00973988883, 0.0114316978, 0.0050720023, -0.00169266528, 0.00326717785, 0.0126851434, -0.00582201499, -0.0185208563, 0.00334423385, 0.0218907762, 0.00162845186, -0.0059590037, -0.00568502629, 0.00703436416, 0.0175071415, -0.00440418301, -0.00752067333, 0.0277812853, 0.0118837599, 0.00331854867, -0.0109590869, 0.0014186881, -0.00470898254, -0.00245894515, -0.00471925689, -0.0023938755, 0.00498980936, -0.00645901216, -0.034164954, 0.0117604705, 0.0029914882, -0.00450349972, -0.0150550455, 0.00376718608, -0.0289319903, -0.00802753121, -0.0122262314, 0.0124728112, 0.00719875051, -0.00856863614, 0.00242298562, -0.0183016751, 0.00431171572, -0.0200551301, -0.0218496807, 0.010876894, -0.0159865674, 0.0115070418, -0.00198290986, -0.0318909436, 0.0140413307, 0.00207024, -0.00724669639, -0.000835630402, -0.0266031846, 0.005630231, -0.0239319056, 0.00646586157, -0.0230962764, 0.00267298985, 0.00174574833, -0.0094727613, -0.0375074744, -0.0122125326, -0.00325347902, -0.0125070577, -0.00409595901, 0.000741450756, -0.00685627898, 0.00511994865, 0.00880836602, 0.0195756685, 0.00393157266, 0.00785629544, -0.0124385636, -0.000720474345, 0.00938371848, 0.0169043913, 0.00276716938, 0.0167948, -0.0110344309, -0.00236305315, -0.0314799771, -0.000748300168, -0.000191891042, -0.0046267896, 0.0102672949, 0.00303429714, 0.00941796508, 0.00158221822, -0.00369184255, -0.0046267896, 0.00539735053, -0.00324149244, 0.0134591293, -0.00137930387, 0.0030103242, 0.0154112158, -0.00151629245, -0.00385622866, 0.0048802183, -0.00229113409, -0.028575819, 0.0186989419, -0.00860973261, -0.0217263903, 0.0179044083, 0.00445555383, -0.0236442313, -0.0180139989, 0.0119317062, -0.00338190584, 0.00608571805, 0.0109453881, -0.00912344, 0.00425692042, 0.00102741446, -0.0288497973, 0.00206510304, 0.013404333, 0.00717820181, -0.0011661154, 0.00205996586, -0.00821931567, 0.00113957387, -0.0160139669, -0.00482199853, -0.0204660948, 0.0132878935, 0.0187537372, -0.00300347479, -0.0216168, 0.000797102344, 0.00748642627, 0.00804123, 0.0435349718, 0.0319183394, -0.00382883102, -0.00459254254, -0.0131235067, 0.0110755274, 0.000653692405, -0.010342638, 0.00494871289, -0.00745902862, -0.0131303566, -0.0151783358, -0.0153016252, -0.0296717286, 0.00115156034, -0.00460281642, 0.000263060909, 0.0198633447, 0.016466029, -0.00480829924, -0.0290689785, -0.0109453881, 0.0107878512, -0.00531858206, 0.011637181, -0.00162417092, 0.00978783425, -0.0296717286, -0.0017637281, 0.00737683568, -0.00370211666, 0.00992482342, 0.00222606445, -0.0232195649, 0.0296991263, -0.0107193571, 0.00170722033, 0.0135139246, -0.00722614815, 0.0060001, -0.00860288367, 0.000985461636, -0.011637181, -0.0189318229, -0.00713710533, 0.00383225572, -0.0223017428, 0.0231921673, 0.0163701363, 0.0075823185, 0.00578091852, 0.0136988591, 0.0424664617, 0.0200962257, 0.0179592036, 0.0115755359, 0.0119043086, -0.0102261985, -0.00741108274, 0.00825356226, -0.00133221399, 0.0208496638, -0.00329457549, -0.0371513069, 0.005592559, 0.000670387933, 0.00563708041, 0.0064795604, 0.0271785352, 0.0113769025, 0.029260762, 0.00795218721, 0.0219318736, -0.0256853607, 0.00817821827, -0.00652065687, -0.0144385975, -0.00624325499, -0.030110091, 0.00373978843, 0.0013039601, -0.00522953924, -0.000955495401, -0.00193838857, 0.0280004684, -0.0122056836, 0.00340930349, 0.000716193463, 0.0125344554, -0.00169180904, -0.00333224749, 0.0268086661, -0.00104025705, 0.0116577288, -0.00821931567, -0.00801383238, 0.00447952701, -0.00952070672, 0.00309251738, -0.0150413467, 0.0159180742, 0.0375622697, 0.00103169528, -0.0162605457, -0.00627407758, -0.00248120585, 0.0117878681, -0.00898645166, 0.015548205, -0.00774670485, -0.00532543147, 0.0113015585, -0.00856863614, -0.0170276817, -0.00040154779, -0.00158906763, 0.0125002088, -0.0266031846, 0.0154249147, 0.0143016083, 0.0005543757, 0.0235620365, -0.0280004684, -0.0258223489, -0.00291272, -0.00334594632, -1.7190463e-05, 0.0114933429, 0.0265620872, 0.00703436416, -0.00786314532, 0.00470213313, 0.0393979177, 0.00655832887, -0.00584941264, 0.0060754437, -0.0104864761, 0.00457541877, -0.00269867526, 0.0018630448, 0.0322471149, 0.0213565212, 0.0211099423, -0.00352403149, 0.00875357073, -0.00184420892, -0.0121234898, -0.016383836, 0.00361649878, 0.0109179905, -0.0241510887, 0.012102942, -0.00366102, -0.0118289646, -0.0084110992, 0.0128632281, -0.0275073089, -0.0121577373, 0.014096126, 0.00895220414, -0.012945422, 0.0160687622, 0.0140824271, -0.00294182985, 0.0245346557, 0.00841794908, 0.00147690822, 0.0188770276, 0.0314251818, -0.00266785268, -0.0106988084, 0.0145344893, -0.00619530911, -0.000208586527, -0.00616448652, 0.012712541, 0.00908919331, 0.00180653704, -0.00374663784, -0.0180824939, 0.0119728027, 0.00954125542, 0.00573297264, 0.0195756685, -0.0142605118, -0.0133426888, 0.00951385777, -0.00670559146, -0.0132810436, 0.00969879236, 0.00807547756, -0.0320553295, -0.0110070333, 0.011719374, 0.00164728775, 0.0150413467, -0.019383885, 0.00426719431, -0.0091782352, 0.00859603379, 0.00603434723, 0.00909604225, -0.00619188417, 0.016931789]
29 Jul, 2024
Difference Between Host and Guest Operating System 29 Jul, 2024 An Operating System (OS) can be defined as a mediator, which works between the software & hardware of a computer The common task of OS includes memory management, managing different resources, device management, file handling, and others. Examples of some popular OS are Linux, MacOS, and Windows. In this article, we will see the difference between a Host Operating System and a Guest Operating System. First of all, it’s important to understand what the host and guest operating systems are. Let us take the introduction to them one by one. Host Operating System A host operating system is a piece of software that runs on a computer and allows it to communicate with its hardware. It has the ability to run a type 2 hypervisor. Type 2 hypervisors, in other words, run on the host operating system. Container-based virtualization may also be used by the host OS. The logical partitioning of server programs is aided by the use of containers. As a result, containers can be used without requiring each application to have its own operating system. It enables apps to share the operating system kernel while accessing distinct hardware resources. This form of the shared operating system is also known as a host operating system. A single physical server can be separated into numerous virtual machines, which are separate pieces of hardware with loads of processing, storage, network capacity, and memory, thanks to virtualization. When it comes to sharing resources between the host and guest operating systems, virtualization is more efficient and less expensive. Features of Host Operating System Hardware Abstraction: Host OS enables communication between software and hardware using a common language. Resource Management: Host OS efficiently manages CPU, memory, and disk space allocation among running programs. File System Management: Host OS organizes and maintains files and folders for easy access and structured data storage. Security: Host OS implements locks, firewalls, and safeguards to protect against unauthorized access and malware. Device Driver Support: Host OS enables effective communication between software and hardware through driver support. User Interface: Host OS provides a user-friendly interface, either through a visual interface or command-line interface. Networking: Host OS manages network connections, allowing devices to communicate and share data over the internet. Guest Operating System Hypervisors of type 2 can produce several Virtual Machines. Each computer has its own operating system, which is referred to as the guest OS. In other words, a guest OS is a piece of software that runs inside a virtual machine. As a result, the guest operating system is run by a virtual machine. In virtualization, the guest operating system differs from the host operating system in numerous respects, and it can be used as a portioned system component or a virtual machine part. It’s primarily used for apps that run on a different operating system. While the visitor and host operating systems share resources, their operations are completely separate. Although it is possible for these operating systems to run in parallel, the host operating system should be started first. Running applications and programs that are incompatible with the host OS is one of the main benefits of using a guest OS. Features of Guest Operating System Application Support: Guest OS runs applications in the virtual environment. Hardware Abstraction: Guest OS mediates between applications and hardware using standardized interfaces. Resource Management: Guest OS efficiently manages system resources in the virtual environment. Device Driver Support: Guest OS includes drivers for communication with virtual hardware. Virtualization Support: Guest OS is designed for virtualized environments and manages virtual machines. Key Differences The main distinctions between the Host OS and the Guest OS are explained here. The following are some of the major differences between the host and guest operating systems: A host operating system is a piece of software that runs on a computer and connects with the hardware. A guest OS, on the other hand, is software that is installed on a virtual computer. It’s possible that the host OS is a single one. The guest OS can be single or numerous. The host OS runs on the hardware directly. The guest OS runs on a virtual machine. Feature-Based Comparison The following are some examples of head-to-head comparisons between the host OS and the guest OS: Features Guest Operating System Host Operating System Definition A guest operating system is a piece of software that runs inside a virtual computer. A host operating system is a piece of software that runs on a computer and connects with the hardware. Resource Management: the guest operating system is responsible for managing its own resources inside the virtual machine. The host operating system is responsible for managing system resources such as memory, CPU, and disk space Compatibility the guest operating system must be compatible with the virtual machine software and hardware abstraction layer provided by the host operating system. The host operating system must be compatible with the physical hardware or virtual machine, Purpose the guest operating system is a secondary operating system that runs inside the virtual machine. The host operating system is the primary operating system that runs on the physical hardware or virtual machine, Control the guest operating system only has control over the virtual resources provided by the virtual machine. The host operating system has complete control over the physical hardware or virtual machine, Execution It executes on a virtual machine It executes directly on the hardware Functionality The guest operating system interacts with the virtual machine. The host operating system interacts with the hardware. Quantity It is possible for the guest OS to be several or single. It’s possible that the host OS is all-in-one. Operating system on computer It is secondary to the originally installed operating system on a computer, Host operating systems use container-based virtualization Uses It is used to run more than one application requiring different operating system on the same hardware. It helps to partition the application in a server Conclusion In summary, a guest operating system resides within a virtual machine (VM), managing its own resources. It interacts with the VM and runs multiple applications requiring different OS on the same hardware. On the other hand, the host operating system runs directly on physical hardware, managing system resources and interacting with the hardware. It helps partition applications in a server environment. Difference Between Host and Guest Operating System – FAQs What characterizes a guest operating system? A guest OS operates within a virtualized environment, independent of the host OS, providing an OS for applications in virtual machines (VMs). How do resource allocations differ between host and guest OSs? While the host OS allocates resources based on priority and demand, the guest OS shares resources within VMs. What role does the host OS play in virtualization? The host OS serves as the foundation for VMs, managing hardware resources and enabling guest OS execution. Why are host OSs essential? Host OSs ensure efficient resource management and system stability, supporting everyday computing tasks and VM execution. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System
https://www.geeksforgeeks.org/difference-between-host-and-guest-operating-system?ref=asr10
PHP
Difference Between Host and Guest Operating System
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0226309299, 0.025352085, -0.0182014965, 0.0177630894, 0.0386706218, 0.0139912665, 0.0054838811, 0.00760033447, -0.0145506151, -0.0158431642, 0.0256997868, -0.0331980772, 0.00740002701, -0.0291012302, -0.0161001608, 0.00794425793, -0.0139534734, 0.013923238, 0.00685957586, 0.00509838434, 0.0622841902, -0.00736223347, -0.0166595094, -0.00158545014, -0.0282697659, -0.00663281279, 0.0153064914, 0.00424424419, -0.0102345627, 0.00170261099, 0.0159338675, 0.011353259, -0.0150797283, -0.0104840016, -0.0168258026, -0.0276197139, -0.011466641, -0.00250761909, 0.000749734638, 0.0240066256, 0.0236891564, 0.0169769768, 0.0132127143, -0.00569552649, -0.0319282077, -0.000730837695, 0.0150419343, -0.0248078536, -0.00147112389, -0.0218750555, -0.0224041678, -0.00137002545, 0.0544533134, 0.0735316277, 0.000526278745, 0.0146413203, 0.0371588692, -0.00407039281, -0.0352238268, -0.0249439124, 0.00396457035, 0.00228463556, -0.0359494686, -0.0257451404, 0.0102874739, 0.00760411378, -0.0293733459, 0.023371689, -0.00514751626, -0.0325026736, -0.0261835493, 0.00705232425, 0.0498575866, -0.0160850435, -0.0131295677, -0.0309606846, 0.00993221253, -0.0113457, 0.0367053449, 0.00543474918, -0.0186247882, 0.0230542216, -0.00401748158, -0.00376048358, 0.018171262, -0.0199702475, 0.0340144262, -0.0534857921, 0.0410591885, -0.0152611388, 0.00935018715, 0.0175816789, 0.0306129828, 0.00206354167, -0.00811055, 0.0106125008, -0.0108241457, 0.00826928485, 0.0151024051, -0.00350537547, 0.0111869667, -0.0485574827, 0.00704098586, -0.026304489, 0.0254579075, 0.019048078, -0.000237156128, -0.00949380361, 0.0507646389, 0.0409684852, -0.0181561448, 0.0145808505, -0.021678526, 0.0219506416, -0.0276197139, 0.00731310155, -0.0092746, -0.0138552086, -0.021754114, 0.0120108714, 0.0345586576, 0.0608631447, 0.00954671483, 0.0369774587, -0.0453828, 0.0351935923, 0.00527223572, -0.00916121807, 0.0189422555, -0.0117236385, 0.00818613824, 0.0441129282, 0.00526467711, 0.00262666959, 0.0078082, -0.0240066256, 0.0625865385, 0.0588676296, -0.0148680834, 0.0413615406, 0.00192559441, -0.00754742278, -0.075224787, 0.00188402121, -0.019123666, 0.00860187, -0.00199929229, 0.00527223572, -0.0393660292, 0.020514477, -0.0186096691, -0.0497064143, -0.00487162173, 0.0212703533, -0.00513995765, -0.00843557715, -0.00206165202, 0.0256846696, -0.0259416681, 0.0108694984, 0.00486406265, -0.0507344045, -0.0103479438, -0.0267428961, 0.0121771637, 0.0210738257, 0.0352540612, -0.00719594071, -0.0281488262, 0.0276197139, -0.0527903885, 0.0553603657, 0.0255183782, 0.0444757491, -0.0278313588, 0.00507192872, 0.0184282605, 0.0304013379, -0.0187154934, 0.00470910827, -0.034437716, -0.0182770845, -0.0284662936, 0.0196678955, -0.00801984593, 0.029962929, 0.0105898241, -0.0240368601, -0.0245810915, -0.0349214748, 0.00449368358, -0.0130388625, 0.052306626, 0.00690114871, 0.0245508552, -0.0164478645, -0.0215727035, 0.0480434857, 0.0119655188, -0.0235379823, 0.016266454, -0.00482249, -0.0119579602, 0.0181107912, 0.0129405987, -0.0185189638, -0.00309342309, -0.0426314138, 0.00149474503, 0.02007607, -0.018095674, 0.00818613824, -0.00587315718, 0.00585048087, 0.0161757488, -0.00884375069, 0.0054989988, -0.00778552378, -0.0335004292, 0.0312025659, 0.0195923094, 0.0206505358, 0.013522624, 0.00068737485, -0.0078157587, -0.011905049, 0.025200909, -0.056116242, -0.0227669887, -0.0192143712, 0.0133260954, 0.0388217978, 0.0222378746, -0.0152460216, -0.0373402797, 0.0126836011, 0.0132353911, 0.0203330666, -0.00250950875, 0.0115649048, -0.0242333878, 0.0211191792, -0.012744071, 0.00280996948, -0.0209377687, 0.0045088008, -0.00198606448, 0.0565395318, -0.0128423348, 0.0181561448, 0.0110055562, 0.0101362988, -0.0183073189, 0.00882863253, -0.0230542216, 0.000612259668, 0.0195620731, -0.0247473847, -0.00981127191, 0.00623975741, 0.00685957586, 0.0115422281, -0.0295849908, 0.0385496803, 0.0211796481, 0.0131900385, 0.0641587675, -0.0197434835, -0.0140290605, 0.0132505083, 0.0359494686, -0.0337423086, -0.0212401189, 0.010476443, 0.00282886624, -0.0266673099, 0.0242182706, 0.0274987724, 0.0357075892, 0.0303257499, 0.00959206745, -0.0383682698, 0.0167502146, -0.00489807734, -0.0121166939, -0.0226914, -0.00066611584, 0.0229635164, -0.0308699794, -0.00108279253, -0.010952645, 0.00945601054, 0.0463805571, 0.0282697659, 0.0197586, 0.0156768709, -0.0131522445, 0.0111642899, 0.0200307164, -0.0453828, 0.0566907078, -0.0214064121, 0.0422988273, 0.0100153582, -0.0279220641, -0.00801228639, 0.00560104195, -0.00628511, 0.0214366466, 0.0222529918, 0.0324119665, -0.0258509628, -0.0552394278, -0.0558743626, 0.0184736121, 0.0175665617, -0.00543852849, -0.0281639434, -0.0223285798, -0.000163222, 0.0313839763, -0.00604700902, -0.0175363254, 0.0203028321, 0.0151175223, -0.0277255364, -0.0346191265, 0.0366751105, -0.0269696601, -0.0385496803, 0.0131673617, -0.0432058796, 0.0237647444, 0.00969789084, 0.0326538496, -0.0364634618, 0.0298268721, 0.00670840032, -0.00774017116, 0.0442338698, -0.0155408131, 0.0455642119, -0.0191690177, 0.00395323196, -0.019199254, 0.000376284588, -0.0230693389, 0.0420569479, -0.00207110052, 0.0296908133, 0.00160434702, 0.00825416669, -0.0159489866, -0.00939554, -0.00626999233, 0.0137493862, -0.00338821462, -0.0238705669, 0.00764568662, 0.0232658666, 0.0197283663, -0.0374309868, -0.00709767686, 0.00553301303, -0.0393660292, 0.00305751897, -0.00844313577, -0.0078082, -0.012895246, -0.0339237191, -0.00445966888, -0.00882863253, 0.00552923372, -0.0247927364, -0.0541207306, 0.0171735045, -0.0328957289, -0.00341089093, -0.0220715832, 0.00926704146, 0.0138325328, 0.0206051823, -0.00346191251, 0.0169618595, -0.0102799153, 0.000457777467, 0.0207110047, -0.0447176322, 0.0174305029, 0.0175212082, -0.0369169898, 0.0171735045, -0.0306281, 0.0100304764, -0.0144523513, 0.0057371, -0.0157978106, -0.04015214, -0.013809857, 0.0190329608, 0.0332283154, 0.0029819312, -0.021391293, 0.0439617559, -0.0229181629, -0.00752474647, -0.0369169898, -0.0131522445, -0.0159187503, 0.00100720488, 0.00726774894, -0.0171130355, -0.0318677351, 0.0439012833, -0.0115497867, 0.0333190188, 0.00351293432, 0.049162183, 0.0181107912, -0.0117538739, -0.0241426826, -0.00897224899, 0.0240217429, 0.0250648521, 0.00571064418, 0.0336213708, -0.00174890831, 0.00409306912, -0.00735089509, 0.0135377413, 0.0268487185, -0.0245810915, 0.00893445592, -0.00524578, 0.00462596165, -0.0477109, 0.0245962087, -0.00757387839, 0.00898736715, -0.0131900385, 0.00384929916, -0.0183375552, 0.00519664818, -0.013809857, -0.0748015, 0.0134545946, -0.0631912425, -0.0331678428, -0.00357907335, -0.0276045948, -0.0441431664, -0.0257753748, -0.00808031578, 0.0160548091, -0.00756254047, 0.00303862197, 0.0441431664, -0.0186701398, 0.000393764203, -0.00383229181, 0.00953159761, 0.0357982926, 0.0378542766, 0.00650809333, 0.0234926287, 0.00732821878, -0.0335306637, -0.0330166668, -0.00554057211, 0.00707878, 0.0349214748, -0.013961032, 0.0246113259, 0.0509158149, 0.022419285, -0.00748695293, 0.0235833339, 0.0167653318, 0.0195620731, -0.0381566249, 0.00648541702, 0.0453223325, -0.0237193927, -0.0500994697, -0.00101948786, 0.0128121, 0.0390636772, 0.0190631952, -0.00582024595, -0.0260323733, 0.00705232425, 0.0334399603, 0.00744915893, -0.00956183299, -0.000284634589, -0.0125475433, -0.0100531522, -0.0073735714, -0.0157071054, 0.0322003216, -0.0245055035, -0.037793804, -0.0360099375, 0.0123888096, 0.00777040655, 0.00778552378, 0.000224046409, 0.0287988801, 0.00179615058, -0.0675450861, 0.0114439642, 0.0145279393, 0.0153064914, 0.0083675487, 0.0250648521, 0.00749829086, -0.00799716916, 0.00338065601, 0.0140668545, 0.0109753208, -0.00328050228, 0.0106351767, 0.00293279928, 0.0179898515, 0.00444455165, -0.00652321102, 0.0145808505, -0.00688225217, -0.0218901727, -0.040303316, -0.0229786336, 0.015389638, 0.0100531522, 0.0278918277, 0.0222983453, -0.038398508, 0.0137947388, 0.0476806648, 0.00692004571, 0.0166595094, -0.0108468225, 0.0411801301, -0.0163722765, 0.00147301354, -0.0177782066, 0.0235531, -0.00829951931, -0.000960907491, -0.000352663454, -0.00482626911, -0.00377938058, 0.0157373399, 0.0248229709, 0.00429715589, -0.0284058247, -0.00163930631, -0.0150494929, 0.00825416669, 0.00177347427, -0.00973568391, 0.01897249, 0.0368262827, 0.032532908, 0.0133412136, 0.00120467751, -0.0140366191, 0.00889666192, 0.00606590556, -0.0348610058, 0.0110962614, -0.00108468218, 0.0133034196, 0.00598275941, -0.011980636, 0.00376048358, 0.0462596193, 0.013772063, -0.0338632502, 0.00642494671, 0.0229786336, -0.00253218506, 0.0147547014, 0.00515129557, -0.00816346239, 0.0291163474, 0.00181693723, 0.0107939113, -0.0196074266, -0.0213459413, -0.00159300887, 0.0397590846, 0.0232507493, -0.0111945253, 0.0207261238, 0.00743026193, -0.0120864594, 0.0213610586, 0.0167955663, -0.0311118606, -0.00104121934, 0.0127667477, 0.00378882908, 0.0110055562, 0.0289047025, 0.00483004842, 0.00962230284, -0.00198795414, 0.000467225909, -0.0110055562, 0.0248532072, -0.00672351802, 0.012970834, -0.00712035317, 0.000881068117, 0.0281790607, -0.00192937371, -0.0235077478, -0.00354127958, 0.00772883324, -0.00847337116, 0.0346493609, 0.0276197139, -0.0279371813, 0.0156164, 0.00738491, -0.00666304771, -0.0155256949, -0.0147698196, -0.00811811, -0.00658746, -0.045050215, 0.0390334427, -0.0380659215, 0.00275138905, 0.010038035, 0.00458060903, -0.0193806626, -0.0174153857, -0.00303106313, -0.01824685, -0.00335042085, 0.028133709, 0.0015457666, 0.113744237, -0.00950136315, 0.0622237213, 0.0174456201, 0.0199551284, -0.00537049957, 0.00662147487, 0.00868501607, -0.0141500011, -0.0181863792, 0.00811055, -0.0172490925, 0.00692004571, -0.0121166939, -0.0379752144, 0.00814078562, 0.0093653053, 0.0174758565, -0.0392450877, 0.0503413491, 0.0254730247, -0.00950892176, -0.00826928485, 0.012267869, -0.00693894271, -0.0283151194, 0.0451409221, -0.0111642899, -0.0130237453, 0.00585426064, 0.0206505358, -0.0325026736, -0.00256053032, -7.80678311e-05, 0.0191841349, 0.0115195522, -0.0169013906, -0.0111038201, -0.0110282321, 0.0435082279, 0.0318375, -0.0231298096, 0.00212968094, -0.00738868909, 0.0142331468, 0.00257564778, -0.00776284747, -0.0372798108, 0.0258358456, -0.00768348062, 0.0121166939, -0.00282697659, -0.0274534207, -0.00160812645, 0.00227518706, 0.0230995733, -0.0281639434, 0.0185189638, -0.0275743604, -0.0225553438, -0.0033485312, -0.00137569453, 0.00808031578, 0.00592984818, -0.0101362988, -0.0387310907, -0.0092897173, 0.00569552649, -0.00169694191, -0.0106729707, 0.0195620731, -0.0228123404, -0.0211191792, -0.00736979209, 0.00434628781, -0.0178084411, 0.038096156, 0.0245055035, -0.0180352032, 0.0230239872, -0.0447478667, -0.00331829605, -0.0042707, 0.00150608318, 0.0205598306, -0.0164327472, -0.0102723567, 0.027256893, -0.013333655, -0.0195167214, -0.00935774669, -0.0016582032, -0.0100078, 0.0178386755, 0.0126231313, 0.00309342309, -0.00910830684, 0.00431983219, 0.0354052372, -0.0156012829, -0.0092519233, 0.0108921751, -0.021391293, 0.0221622884, 0.00342600839, -0.0155710476, 0.00824660808, 0.0131295677, 0.00709011778, -0.0317467973, -0.0223134626, 0.0386403874, -0.00242258282, -0.00670840032, 0.00544986688, 0.0133109782, 0.0187759623, 0.0406963713, 0.0164780989, -0.0233263373, 0.0137569448, -0.00688603148, -0.00209755613, -0.013046422, -0.0200156, 0.00766080432, 0.00120184303, 0.0433268175, 0.0221774057, 0.0445059836, -0.0196225438, 0.000147750165, -0.0114590814, 0.00697673671, -0.0358587615, -0.0208470635, 0.00155615993, -0.0301745739, 0.033046905, 0.0129103642, -0.0214064121, -0.0026398974, -0.0222832281, 0.0188817848, 0.0100304764, 0.0262591355, 0.0388822667, 0.00919145346, 0.0331073739, 0.0159187503, 0.0310211554, -0.0039041, 0.00720727863, -0.0202272441, -0.00179426093, -0.0426314138, -0.0284814127, 0.0124870734, -0.00195960887, 0.0153745199, 0.024399681, 0.0211040601, -0.0325631425, -0.0453828, -0.0258963164, -0.0350726508, -0.0118067851, 0.00652699033, 0.0121544879, -0.0288291145, 0.0311118606, 0.0117387557, 0.0178084411, 0.0103252679, 0.00327105378, 0.0187608451, -0.00872281, -0.0179142635, 0.0127591891, -0.00291579217, 0.00105066784, 0.000235030224, 0.0325631425, -0.0191690177, 0.0259870198, 0.014800054, 0.0301594567, 0.0179293808, -0.0219657589, 0.00993977115, -0.00367355789, -0.0318072662, 0.0173095632, 0.039789319, 0.0186399054, 0.0245659743, 0.00323514966, -0.0198190715, -0.0394264981, 0.0225402247, 0.0159943383, -0.00302539417, 0.00939554, -0.00898736715, -0.00435384642, 0.0124266036, -0.014437234, 0.0100833876, 0.0154803423, -0.00393433496, 0.0256544352, 0.00880595669, 0.0256242, -0.0139005613, -0.0195469558, 0.013885444, -0.0128498934, 0.00491697388, 0.0136737991, 0.0103630619, 0.0236286875, 0.010400855, -0.0160548091, 0.0038152847, 0.0303559843, -0.01348483, -0.0123736924, -0.030038517, -0.0333492532, 0.0275290087, 0.0167502146, -0.00500767911, -0.00894957315, 0.03283526, 0.0348307714, 0.023371689, 0.00126987183, 0.0193201937, 0.0320189111, -0.00611503795, 0.00698429532, 0.0194713678, 0.0124795148, -0.0387310907, -0.0190631952, 0.0241124481, -0.030038517, 0.00863966439, -0.0124870734, -0.038247332, 0.0394264981, 0.00273438194, 0.0392753221, -0.0114817582, -0.00981883053, -0.00199362333, 0.0154501079, 0.0159641039, 0.00821637362, -0.0168106854, -0.0199702475, 0.021391293, -0.0220867, 0.0139383553, -0.0103479438, -0.0252613798, -0.00302917347, -0.0147169074, 0.0229030456, -0.0159489866, -0.0325933769, 0.0148832006, 0.0403940193, 0.00750962924, -0.0141273243, 0.0199400112, 0.00631156564, 0.00216936436, -0.018020086, -0.00226573856, 0.0269394238, -0.0143692046, -0.0216482915, -0.0262893718, 0.00886642653, -0.00419889158, -0.0236891564, -0.0181863792, 0.00600921502, 0.00893445592, 0.00710901478, -0.008647223, 0.0245206207, -0.0291919354, -0.00989441853, -0.0439617559, -0.00226573856, 0.0228274576, 0.0285418816, 0.0483458377, 0.0187457278, 0.00894957315, 0.0033390827, -0.00512861926, 0.0143465288, -0.00428959681, -0.00946356915, -0.000252982281, -0.00665171, 0.00497744419, -0.0117614325, -0.00232431898, -0.037733335, -0.0107787931, -0.00462596165, -0.0099700056, 0.0259567853, 0.00482626911, -0.0191539, 0.0169165079, 0.0135075059, 0.0165083334, -0.00380772585, 0.00525333919, -0.000553679245, 0.0173549149, -0.0237193927, -0.00212779129, -0.0293128751, 0.0161606316, 0.0187154934, 0.00308208494, -0.0414522476, -0.0150268171, -0.0146564376, -0.0151704336, -0.0195167214, 0.00814078562, -0.00786867, 0.00394945266, 0.0028496529, 0.00400236389, -0.000410771434, 0.00891933776, -0.0175514426, -0.0456246808, 0.00933507, 0.00801984593, 0.00807275716, -0.00653832825, -0.0258509628, 0.00956939161, 0.0111567313, 0.00963742, 0.0300687514, -0.045503743, -0.0243845638, -0.0246264432, -0.0425104722, 0.00384740951, 0.0130161867, 0.0262893718, 0.0381868593, 0.0152686974, 0.00805008, -0.00221093767, 0.0155710476, -0.00869257562, -0.0620423108, -0.0339841917, -0.00491697388, 0.00520042749, 0.0101740928, -0.0234170426, 0.00378127024, 0.00185851043, -0.0269998945, -0.00390032073, 0.0194260161, -0.0059411861, 0.0238100979, 0.0108846156, 0.0105369128, -0.0199400112, 0.00296303444, -0.0071921614, 0.00943333376, -0.00350915478, 0.0233565718, -0.000911775569, 0.00679154694, 0.0021731439, 0.00407039281, -0.00619440479, -0.068270728, 0.00549521949, -0.00115932501, -0.00336364866, -0.0133487722, 0.0328957289, 0.00791402254, -0.00946356915, -0.0342260711, -0.000547065341, 0.0145203797, 0.0167502146, -0.0240670945, 0.0170828, -0.010877057, 0.0164780989, 0.0120486654, -0.0347400643, -0.0255939644, -0.0110055562, 0.00868501607, 0.0165536869, -0.0176723842, -0.014361646, 0.00386252697, 0.00645140279, -0.0292372871, -0.00258698594, 0.0301594567, 0.0135906525, 0.00256997882, 0.0117085213, -0.00152498006, 0.0218901727, -0.00445211027, -0.00134640431, 0.00661391579, -0.00252273655, 0.00716192601, -0.0117009617, -0.0129557168, -0.0136737991, 0.00611125818, 0.00411196612, -0.0267882496, 0.0605305582, 0.00538939657, -0.0152460216, 0.0266370736, 0.00970544945, -0.0050416938, -0.0366146378, -0.0149587886, -0.0115497867, -0.000924530963, 0.0148529653, 0.00484894542, -0.00377749093, -0.00651565194, -0.00438786065, 0.0917936, -0.00561993895, -0.0178840291, -0.0115951393, 0.000315105863, -0.00760789309, 0.0168106854, 0.0155256949, 0.000900909828, -0.0172793288, 0.0238403324, 0.00639471179, -0.00603945, 0.00513617834, -0.0137040336, 0.0314142108, -0.00622463971, -0.00401370227, -0.0040477165, 0.00842801854, -0.0276197139, 0.00268902932, 0.0381263904, -0.0202725977, -0.0122527517, 0.0193957817, 0.00629266864, -0.0161303971, -0.0135982111, -0.00794425793, 0.0210133567, -0.0316258557, 0.00997756422, 0.00696161902, -0.0156768709, -0.0186701398, 0.00415353943, -0.00518908957, 0.0139081208, -0.0129935099, 0.00613393448, 0.00544608757, -0.0113079064, -0.00288177771, -0.00220715813, -0.0130842151, -0.00637203548, -0.0232356321, 0.00254919217, -0.00350915478, 0.01201843, -0.00312554766, 0.000821542868, 0.00728286617, -0.019199254, 0.0134999473, 0.0157826934, -0.00159206404, 0.0338027813, 0.00716948509, -0.021466881, 0.00574843772, -0.00895713177, -0.0139988251, 0.0331678428, 0.012970834, -0.0138325328, -0.0177782066, -0.017067682, 0.00110452401, -0.00634180056, 0.00525711849, 0.00421400927, 0.0120259887, -0.00293657859, 0.0244903862, -0.0117085213, 0.00856407639, 0.0151855508, -0.0287837628, -0.0112701124, 0.0302803963, 0.0302955136, -0.0111340554, -0.012381251, -0.017067682, 0.00243014167, 0.00266068382, 0.0264859, -0.00355639705, -0.00617172848, 0.00811055, -0.0417243615, 0.0022638489, 0.000467698352, 0.0031104302, 0.00863966439, 0.0182166137, -0.0102723567, -0.0149058765, 0.0240368601, 0.0142180296, -0.00964498, -0.00707122078, -0.000888154435, -0.022933282, 0.0277104173, 0.00145978574, -0.0428128242, -0.0271661878, 0.0111340554, -0.016115278, -0.00351104443, 0.0099700056, 0.0170979183, -0.0141575597, 0.0174607374, -6.01157735e-05, -0.0112096425, -0.00168654858, -0.0374612212, -0.0110584674, -0.00786111131, -0.0103630619, 0.0124643967, -0.00203897571, 0.00278540351, 0.0151553163, 0.00386441662, 0.0210435912, -0.0142558236, 0.0110433502, -0.0212552361, 0.019199254, -0.0274383035, 0.00825416669, -0.0122905457, 0.0210435912, 0.0193353109, -0.0255183782, -0.0127365123, 0.0403637849, -0.00303484267, 0.00777040655, 0.00953159761, 0.00302539417, -0.0116631687, 0.00602055341, 0.00710145617, -0.0147773782, -0.0288139973, -0.0230542216, -0.000218023022, 0.0100078, 0.0100833876, 0.000434628775, -0.0114817582, -0.000530530524, -0.00342222909, 0.000994921895, 0.0159641039, 0.00373591762, 0.0147698196, 0.00269091898, -0.0274080671, -0.0078082, 0.0168106854, 0.0100153582, -0.0349517129, 0.0117009617, -0.00609992025, -0.00270036748, -0.0153216086, -0.0362820551, 0.00550277811, -0.0101362988, 0.00189252477, -0.0254881419, 0.00602433272, -0.00140592956, -0.0131220091, -0.0127969822, 0.00631912425, 0.0282395314, -0.00129160332, 0.021678526, -0.0180352032, -0.0078913467, 0.00178481243, -0.00803496316, -0.0106125008, -0.0123132216, -0.0126987183, -0.0288291145, -0.00267769117, 0.0207865927, 0.0145808505, 0.0038152847, -0.0119881947, 0.0135982111, -0.00449746288, -0.0432663485, 0.0336818397, 0.00339955278, -0.00699185394, 0.00337309716, 0.00167710008, -0.0120637827, -0.00751718786, 0.00176686037, 0.0258660801, -0.00595252449, -0.00106200599, -0.0143918814, -0.0259870198, -0.000777135137, 0.0102345627, -0.014913436, -0.0156919882, -0.00115082134, 0.00171772845, 0.00193315314, 0.00930483453, -0.00462218234, 0.0251555573, -0.0331980772, 0.0331678428, 0.00881351531, 0.0186852571, 0.0116858445, -0.00287610851, 0.0230391044, 0.0441431664, 0.0026115519, 0.00348458881, 0.010000241, 0.0233112201, -0.0263196062, -0.0388217978, 0.0234170426, -0.00499634119, 0.0266068392, 0.00891177915, -0.00268524978, -0.0328957289, 9.9681165e-05, 0.0031066509, -0.0239461549, 0.00173379085, 0.00998512376, -0.0312630348, 0.0104991188, 0.0275592431, -0.0116329333, 0.0148907593, -0.00782331731, 0.0237949807, 0.00931995269, 0.0013653012, -0.0383380353, 0.00531002972, 0.0104537662, 0.0284058247, 0.0138703268, 0.00968277268, 0.025352085, -0.000625959889, 0.000455415342, -0.000428014842, 0.0118974904, 0.00442187535, 0.0435384624, -0.0101967687, 0.00620196341, -0.0144296745, -0.00715814671, 0.00736223347, 0.01641763, 0.00416109804, -0.00507570803, 0.00777796516, 0.0110962614, 0.00796693377, -0.0109072924, 0.00285532209, -0.000321719766, -0.0192748401, -0.0105369128, -0.0132731842, 0.0024112449, 0.0016808795, 0.00867745746, -0.00021542469, 0.000763434859, -0.0180805568, 0.012494632, 0.00214290875, -0.0135075059, -0.0247020312, 0.018020086, 0.00811055, -0.0169769768, -0.000527223572, 0.0124341622, -0.0160699263, -0.00653454894, 0.00215802621, -0.00707500055, 0.00191992533, -0.00580890803, -0.00290634367, -0.0105822654, 0.00445588958, 0.0392148532, -0.00211267383, -0.00109413068, 0.00594496541, 0.00265123555, 0.0124492794, 0.00166859652, -0.0074340417, 0.0037056827, 0.0123585742, -0.0241124481, -0.00764190732, -0.0284209419, -0.0226158127, -0.0123283397, 0.00892689731, -0.00229408406, -0.0297361668, -0.0367960483, -0.0126155727, 0.0110735847, 0.00280807982, -0.0120486654, 0.0287686456, 9.90906337e-05, -0.00858675223, -0.00116310432, -0.00896469, -0.00104877807, -0.0221925229, 0.0189271383, -0.0222681109, -0.0316863284, 0.0111491727, 0.00307641574, -0.000493209169, -0.0277860053, -0.014172677, 0.00432739081, -0.00350348582, 0.00923680607, -0.00433494942, -0.00826928485, -0.037793804, 0.0180654395, -0.0231751613, 0.0160699263, 0.0111491727, -0.00572954072, -0.0112172011, -0.0347400643, -0.00055131712, -0.023371689, 0.0233868062, -0.011942843, 0.0108997338, 0.045201391, -0.0229181629, -0.012970834, 0.0192597229, 0.0327143185, 0.00354316924, 0.0119126076, 0.014361646, 0.0266673099, -0.00815590285, -0.0168106854, -0.00747939432, -0.00600543572, 0.0029819312, -0.0278767105, -0.0108165871, 0.0109602036, -0.00910830684, 0.0119579602, 0.00221471698, 0.0107107647, 0.0267277788, -0.00904027838, -0.00333530339, 0.0335004292, -0.0201667752, -0.0134016834, -0.021028474, -0.00648163771, -0.0239310376, 0.00240746536, 0.0354354717, 0.00382662285, -0.0347098298, 0.0100455936, 0.00866989885, -0.0362820551, 0.0255637299, -0.0273627155, 0.0188364331, -0.0139383553, 0.00129821722, 0.0252462626, -0.00641360879, -0.0219204072, -0.00653832825, 0.000847998483, 0.0137871802, 0.0054838811, -0.0106805293, -5.52734418e-05, -0.0160245728, 0.0283151194, -0.0148832006, -0.00925948191, -0.0227216352, -0.00514373695, 0.00873036869, -0.0134999473, -0.00581268733, -0.0120033128, -0.00716948509, -0.0193806626, 0.00681800256, -0.00433117, -0.00916877761, 0.0306734517, 0.0393962637, 0.0235077478, -0.00211456348, -0.0129481582, 0.00247927359, -0.00997756422, -0.0370984, -0.00628511, -0.00346191251, -0.00644384371, 0.0125097493, 0.0074113654, -0.0136284465, 0.000865478127, 0.00817102101, 0.0124795148, 0.000894768338, -0.00390032073, -0.00249817059, -0.00894201454, -0.0246415604, -0.00316523132, 0.00585048087, -0.000718082301, -0.00622086041, 0.00753230555, -0.00185095158, 0.0178084411, 0.00138230843, -0.00740380632, 0.00835243147, -0.0039041, -0.0052797948, 0.0227972232, 0.028647704, -0.00944089238, 0.00826928485, 0.00416109804, 0.0141802356, -0.0175967962, 0.00916877761, 0.0106276181, 0.0084053427, -0.0126306899, -0.0141197657, 0.0311723314, -0.00231676036, 0.0169013906, 0.00102799153, 0.0602584444, -0.0177479703, 0.0193050765, 0.0125853373, 0.0282546487, -0.0098793, -0.0123736924, 0.00950136315, -0.00448234519, 0.00388520327, 0.00823904946, 0.0116858445, -0.00102610188, 0.0176119134, 0.0150646111, 0.00220337883, 0.0146413203, 0.0209680032, 0.0310816262, 0.0267126616, 0.000446203107, -0.0124341622, 0.0259265509, -0.00202007894, -0.00341844978, -0.00626621302, -0.00918389484, -0.00947112776, 0.0092746, -0.00657234294, -0.0129405987, -0.00616039, 0.0167653318, 0.00657234294, 0.0421476513, 0.029161701, -0.0145732909, -0.00366788893, -0.0117160799, 0.00563505618, 0.000816346204, 0.0101892101, 0.0371891037, 0.00170544547, -0.00270414678, -0.000144325095, 0.0232205149, -0.0078157587, 0.0385799184, -0.0349517129, 0.0061792871, -0.000945317559, -0.00443699257, 0.0251857918, 0.0183980241, -0.00348458881, -0.016190866, -0.00947112776, -0.00163552689, 0.00125191978, 0.00358474255, 0.0221018177, 0.00326727447, 0.00275327871, 0.0017130042, 0.00350537547, -0.0135679757, 0.00802740455, 0.0236740392, 0.013333655, 0.0200911872, -0.00445588958, 0.00982638914, -0.0259416681, -0.0061792871, -0.000610842369, -0.00777796516, 0.00928215869, -0.0124417208, 0.00926704146, -0.00969789084, 0.0040666135, 0.0243845638, -0.00364521262, -0.0133109782, -0.008095433, 0.0177328531, 0.00568418857, 0.00525333919, -0.008057639, 0.0190329608, -0.00879839808, 0.00300271786, -0.000881068117, -0.0014201022, 0.00515507488, -0.0113381417, -0.0140063846, 0.00760033447, 0.00221660663, 0.0125853373, 0.013447036, 0.00076532457, -0.0145430565, 0.0198795423, 0.0212854706, 0.00245848694, 0.000732255, 0.00365466089, -0.0181410275, -0.0114590814, -0.0139383553, 0.0206505358, 0.00538183795, 0.00460706512, 0.00288366736, -0.01201843, -0.000981694087, -0.00512484, -0.0187306106, -0.0247171484, -0.0173700321, -0.00543097, -0.0187306106, -0.00942577515, -0.00160623668, -0.0186096691, 0.00613015518, 0.00670084171, 0.00839022454, -0.00268147048, 0.00457305042, 0.019924894, -0.0225553438, -0.0155105777, 0.00515129557, -0.0116480505, 0.0243392102, 0.00978103653, -0.00354127958, 0.0128498934, 0.0152535802, -0.011942843, -0.00808787439, 0.0169618595, 0.0175060909, 0.0144599099, 0.00668950379, 0.0302199274, -0.00917633623, 0.0123510156, -0.00394189404, -0.0256544352, -0.00503035542, 0.00313310651, 0.00865478162, 0.00472044619, -0.029086113, -0.0191387832, -0.0097281253, -0.00428959681, -0.0093275113, 0.00435006712, 0.00647029933, 0.0220413469, 0.012494632, 0.0283907074, 0.00724507263, 0.0167955663, -0.00926704146, -0.0171735045, 0.0231146906, 0.0101362988, 0.0137115922, -0.0220564641, 0.00188874546, 0.00379071874, 0.0071921614, 0.0246415604, 0.0131673617, 0.00282508694, 0.00443699257, 0.0131220091, -0.018095674, 0.00154293212, -0.0016648171, 0.00206354167, 0.00952403899, -0.00890422054, -0.0104235318, 0.00643250579, 0.00580890803, -0.012781865, -0.0183980241, 0.00470154919, 0.00926704146, 0.00189724902, 0.00489429804, -0.0328050219, -0.00566151226, -0.00614905218, 0.00438030204, -0.00254730252, -0.00590717187, -0.0113003477, -0.00228652521, -0.00670840032, 0.00559348334, -0.0024017964, -0.0135604171, -0.0389125, -0.00510216365, 0.0109753208, -0.0156768709, 0.00254352321, 0.0192143712, 0.00257375813, -0.000907996204, 0.00313121686, 0.0138703268, 0.00213723979, -0.0134394774, 0.00750962924, 0.0190934297, 0.0115951393, -0.00602433272, 0.00820881501, -0.00650431402, 0.0155559303, -0.0105671482, -0.00644762302, -0.0153291672, -0.0119730774, 0.0165536869, 0.000838077627, -0.0198946595, 0.013447036, -0.0128725702, 0.0216634087, -0.00626621302, -0.00709767686, -0.00417621573, -0.0227669887, -0.000289831252, -0.00300838682, -0.0304920431, 0.0183677897, -0.0106654121, -0.00742270332, -1.35969121e-05, 0.00887398515, 0.0197434835, -0.000661864, -0.00892689731, 0.0156768709, 0.0129103642, 0.0136511223, 0.0114742, 0.0162966885, -0.00184055837, -0.00961474422, 0.0320793837, -0.0027400509, -0.0158885159, -0.00196527783, -0.00941065792, -0.00154104247, 0.0102345627, -0.0255183782, 0.00537427934, -0.0116782859, 0.00266824267, 0.00303862197, -0.00427825889, 0.000493681582, 0.00996244699, -0.0174909737, -0.0202121269, -0.00771371555, 0.00512484, -0.0183073189, -0.00752096716, 0.0246415604, -0.000736506772, 0.00522688311, 0.0269243065, -0.00338821462, 0.0140139433, -0.0161001608, 0.00112247607, -0.0142633822, -0.000275422353, 0.0151326396, 0.0141500011, 0.010990439, 0.00102610188, -0.021391293, -0.0249590296, 0.00247549429, 0.00926704146, -0.00207676971, 0.014437234, 0.0195771921, 0.0145128211, -0.00622463971, -0.00994733, 0.0129935099, 0.0146942316, -0.0106276181, 0.00808031578, -0.0121847233, -0.021693645, -0.00506437, -0.00559726264, -0.00788378809, 0.0110962614, -0.0139837079, 0.00818613824, -0.00524955941, -0.00445211027, -0.0248380881, -0.00674997363, 0.00261533144, -0.0108090285, -0.00695028063, -0.00617550779, -0.00208054902, 0.00647785841, -0.00841290131, -0.00351104443, -0.0185038466, -0.00822393224, 0.0109299682, 0.00412708335, -0.0116329333, 0.027030129, 0.0052608978, 0.0141197657, 0.0052231038, -0.00399858458, -0.0214517638, 0.00032219218, -0.020665653, 0.0133034196, 0.0140215019, -0.00604700902, -0.00957695, -0.0100833876, -0.0210435912, -0.00135396305, -0.00727152824, -0.00717704371, -0.00368111674, 0.00349970628, 0.00696917763, -0.018171262, 0.00621330179, 0.00899492577, 0.0135528585, -0.0107258819, 0.0143465288, 0.000473839842, 0.024248505, 0.00825416669, -0.00213723979, 0.0330166668, -0.00512484, -0.00198795414, 0.0139837079, 0.0197132491, -0.0122073991, -0.0107712345, -0.0323212631, -0.00876060408, -0.0173700321, 0.000999646145, -0.00341656012, 0.0300989859, 0.00961474422, -0.0055178958, -0.010438649, 0.0207865927, 0.00690114871, -0.0154198725, 0.00882107392, 0.0198946595, 0.00778552378, 0.0135075059, 0.00947868638, 0.0166141577, 0.0201214217, -0.00779308286, -0.00871525146, -0.00608102325, 0.0165234525, 0.00304996013, -0.01824685, -0.00104499876, 0.0125021907, 0.00139270176, -0.00146828929, 0.00410062773, 0.0269243065, -0.00731688086, -0.0306885708, 0.0125097493, -0.00157978106, -0.00979615469, -0.0135982111, 0.00343545689, 0.000952403876, -0.000247077, -0.0239008032, -0.000413842179, 0.000122357451, 0.00873792823, 0.00123869197, 0.0248380881, -0.00246037683, -0.0230542216, 0.0128045417, -0.00767970132, 0.0187306106, 0.00623219833, -0.00694272202, -0.00086595054, -0.00513239857, 0.0185643174, -0.0133412136, 0.00391543843, -0.00250383955, -0.0236438047, -0.00985662453, -0.0033485312, -0.0157071054, 0.0108014699, 0.00819369685, 0.026380077, -0.0135453, 0.00401748158, -0.00387008558, 0.0191841349, 0.00650809333, 0.0188515503, -0.0184433777, 0.0111491727, -0.0054989988, 0.0124417208, 0.00371324131, -0.0256393179, -0.00732821878, -0.0047657988, -0.0106502948, 0.0268638376, -0.0116329333, -0.0100833876, -0.0190178435, 0.0129935099, 0.00452013919, 0.00393055566, -0.000239518238, 0.00622086041, -0.0114439642, -0.00808787439, 0.00885130931, -0.0103630619, -0.01824685, 0.0133412136, -0.000962797203, 0.0221320521, 0.0212552361, 0.0121771637, -0.0248834416, 0.0177026186, -0.0142936176, 0.0111340554, 0.00244903867, -0.000764852157, 0.0150041403, 0.016266454, -0.0126382485, -0.0208168272, 0.00604700902, 0.0169467423, -0.0264707822, -0.0179596171, 0.00783843547, 0.0108997338, -0.0184887294, 0.0171130355, 0.0232356321, 0.0179898515, 0.0135679757, 0.0291768182, -0.0271661878, -0.0182166137, 0.0154652251, 0.00469399057, -0.0266521908, 0.019123666, -0.0181259084, 0.0183677897, -0.0016742656, 0.0160699263, 0.000426361366, -0.00364332274, 0.000782331801, -0.00154293212, 0.00866234, -0.00231109117, -0.00261722109, -0.0074113654, -0.00622841902, 0.0156466346, -0.0078913467, -0.0054649841, -0.000556513784, 0.00144183368, -0.0113079064, -0.0131144505, -0.0221774057, 0.0162513368, -0.0026021034, 0.00962986145, -0.0223890506, -0.00762301078, -0.00527601503, 0.0056993058, -0.000257706502, 0.0225855783, -0.0221471693, 0.0115649048, 0.0254730247, 0.0222076401, 0.0232053958, -0.00116215949, -5.12283223e-05, 0.0127894236, 0.00286666024, -0.0214819983, -0.0195016041, -0.0152460216, 0.00558592426, -0.00879083946, -0.00639093248, 0.00114231778, -0.0222076401, -0.00393811474, 0.0154954605, 0.00652321102, 0.00531380903, 0.0168560371, -0.000132042114, -0.00336553832, -0.00350915478, -0.000771938474, 0.0078082, 0.0038152847, 0.00512106065, -0.0175665617, 0.00831463747, 0.00182071654, -0.0282697659, 0.0118370196, -0.0152309034, -0.00895713177, 0.0251404401, -0.0169618595, -0.022857694, 0.00171394902, -0.0011914497, -0.0182317309, -0.0178840291, -0.00939554, 0.00277784467, -0.00136719097, 0.0145052625, -0.0219657589, 0.0195923094, 0.0064740791, -0.0122754276, -0.0141651183, -0.00567285, -0.0110962614, -0.00832219608, 0.00311420951, 0.0110206734, -0.0110131148, 0.00749451155, -0.0223739333, 0.00122073991, 0.0210133567, -0.00803496316, 0.0183073189, -0.00304807047, 0.0113683771, 0.00729798386, 0.0200458337, 0.00159867795, 0.00331829605, -0.00753986416, 0.0165536869, -0.00325404666, 0.00812566839, 0.00460706512, 0.00520042749, -0.00328617147, 0.00577489333, -0.027982533, -0.0057030851, 0.00100531522, 0.00386819593, 0.0204691254, 0.0334399603, 0.012419044, 0.00103743991, -0.012706277, 0.0059600831, 0.00945601054, 0.0177479703, -0.00561993895, 0.00665548909, 0.0173246805, -0.000467934558, 0.0338330157, -0.0122149577, 0.00866234, 0.0109224096, 0.00331073743, -0.0127894236, 0.00801228639, 0.0124643967, 0.00109224103, -0.0333190188, -0.0146262031, -0.0022638489, 0.0251404401, 0.00783087686, -0.01714327, 0.009047837, 0.0322607942, -0.0328957289, -0.0123585742, -0.0161001608, 0.0140290605, 0.0397590846, 0.0212703533, -0.0247020312, 0.0160396919, -0.0207412411, -0.01714327, -0.00412330404, -0.0145581737, -0.0282395314, 0.00603567064, -0.0047809165, 0.00394189404, -0.0121771637, 0.00187079341, 0.00352049293, -0.0124039268, -0.0025113984, 0.0192446057, 0.0248985589, -0.00162040943, 0.0113608176, 0.00236967159, 0.0120335473, 0.00162135425, -0.0212250017, 0.00760033447, -0.0159338675, -0.00873036869, 0.00567285, 0.0219355244, 0.0238554496, 0.00754742278, 0.0180049688, 0.0160396919, -0.000625015062, -0.00786111131, 0.00537427934, 0.0117463144, -0.0052231038, -1.83506636e-05, -0.00565017387, 0.0231449269, -0.0168711543, 0.0162513368, 0.00141726772, 0.00338065601, -0.00497744419, -0.014172677, -0.0169316251, 0.000830518897, -0.00904027838, -0.00468265265, -0.00130861055, -0.0212552361, 0.0208924152, -0.0318979733, 0.0190934297, 0.00557080703, -0.0112549951, 0.0102421213, -0.012305663, 0.000690681802, 0.0107334405, 0.0212401189, 0.00552545441, -0.0122451931, -0.0251555573, -0.00995488837, -0.0217087623, -0.00541585218, -0.0129935099, -0.00615661079, -0.0021636954, 0.0154274311, 0.0322003216, 0.00193693256, 0.00794425793, -0.00318601774, -0.0234170426, -0.00695783971, -0.00726396963, 0.000449510087, -0.0344074816, 0.012343457, -0.0201214217, 0.00333530339, -0.00921413, -0.0020030716, 0.0100229168, -0.0155861657, 0.0223285798, -0.00621330179, -0.00464107934, 0.0190783124, -0.00529869134, -0.0131598031, 0.00906295422, -0.0136284465, 0.0108241457, -0.00153064914, 0.0104915602, -0.00170828006, 0.00918389484, -0.010877057, -0.00738113, 0.0391543843, -0.0219204072, 0.00921413, 0.0133260954, -0.019048078, -0.00894201454, -0.00238667871, 0.00277973432, -0.00451636, 0.025352085, 9.53703056e-05, -0.00935018715, 0.0114590814, 0.00599031802, -0.000743593147, -0.00838266592, 0.00657990156, 0.0201214217, -0.00273438194, -0.000423290621, 0.00345057435, -0.0208924152, 0.0160548091, -0.0233263373, 0.00173001143, 0.00899492577, 0.00567662949, 0.0154274311, -0.00929727592, 0.0146942316, -0.000784221455, 0.00351293432, -0.0146564376, 0.0258056112, -0.0262742527, -0.0235531, -0.0188666675, -0.000737924071, 0.0165688042, 0.0206958875, -0.00247360463, 0.00209377683, 0.00286099105, -0.0168258026, -0.00891177915, 0.0105369128, 0.00707122078, -0.0164780989, -0.0239461549, 0.022646049, 0.00535916165, 0.0196678955, -0.00102326728, 0.00576355541, 0.00572954072, 0.00463352073, -0.00819369685, -0.00148907595, 0.00168749341, 0.00624731602, -0.0169165079, 0.0263196062, -0.00967521407, -0.0196074266, 0.00506814942, 0.00486406265, -0.00437652273, -0.0182166137, -0.0167955663, 0.00378316, 0.0234623943, 0.0166746266, 0.0158885159, -0.0164932162, -0.00299893855, 0.0208470635, 0.0197434835, -0.00449368358, -0.00431605242, -0.0311118606, -0.0298722237, 0.00536294095, -0.00942577515, -0.0265010167, -0.0318979733, 0.0108619398, 0.0140215019, 0.00377938058, -0.0113759357, 0.0179596171, 0.0208470635, 0.00125003012, -0.00447856588, -0.0132656256, -0.0421778858, 0.000509743928, 0.00537805865, 0.0482551306, -0.0210587084, 0.00523066288, 0.000593835197, -0.00283075613, -0.00707500055, -0.0169769768, 0.00656478386, -0.0104159731, 0.0155256949, -0.000320538704, -0.00607346464, 0.0119579602, -0.0206958875, -0.012857453, 0.00123396772, 0.0179747343, 0.00460328534, -0.000466753496, -0.0096903313, 0.0177177358, -0.000554151658, -0.00828440208, -0.0135679757, -0.00465619704, 0.000183772383, -0.00576355541, -0.0170072131, 0.00856407639, 0.00359419081, 0.0222983453, 0.00336175901, -0.0149739059, -0.0193957817, 0.01714327, -0.0291012302, 0.0146110849, -0.00938798115, 0.027332481, -0.0144674685, -0.0131068919, 0.011905049, -0.012456838, -0.0147547014, 0.0243392102, -0.00531002972, 0.000825322233, 0.0136737991, -0.0118143437, 0.0120411068, -0.00239612721, 0.0084053427, -0.000309673, 0.0166292749, 0.0127365123, 0.0111416141, -0.00106673012, -0.0141651183, -0.00220904802, -0.0554813072, -0.0283604711, 0.00261533144, 0.0243543275, 0.000250620185, -0.00528735342, -0.00357340439, -0.00112625537, -0.00645140279, 0.0292524062, 0.00287421886, 0.0105822654, 0.0164780989, 0.00309909205, -0.00362064666, 0.0132051557, 0.00832219608, 0.00834487192, 0.00275705801, -0.00458060903, -0.0144750271, -0.0370681658, 0.00676509133, -0.000190622508, -0.0157222226, -0.00889666192, -0.0183980241, 0.00209566648, -0.0140441777, -0.00904027838, -0.00783843547, -0.00854895916, 0.0138325328, -0.01897249, 0.0116102574, -0.0299478117, 0.000507854274, -0.0159943383, 0.00556702772, 0.0274231844, 0.0181107912, -0.00312365801, 0.00183394447, -0.0157675762, -0.0204237718, 0.0027211539, 0.00860187, 0.00871525146, -0.0177479703, 0.000431085587, -0.0180654395, -0.00767592201, 0.00174040475, 0.00305751897, 0.0154727837, 0.000648163783, -0.00424802396, -0.0143843228, 0.030703688, 0.00177630887, -0.00851872377, 0.00143238518, -0.00889666192, -0.0144145573, -0.0141424416, 0.0311118606, -0.00300838682, 0.00315578282, 0.00409306912, 0.0116556101, 0.0294791684, -0.0154954605, -0.00193031866, 0.011867255, 0.00137380487, -0.0093275113, 0.00902516115, -0.00116877339, -0.00587315718, 0.00213723979, 0.023522865, -0.0134016834, -0.00448990427, 0.000745482801, 0.0102496799, 0.00867745746, -0.00428959681, -0.00241313456, 0.00612259656, 0.00243581086, 0.0204842426, 0.00425936189, -0.000115979739, 0.0322607942, 0.00902516115, 0.0269091893, -0.02190529, 0.00130483112, 0.00643250579, -0.022494873, -0.0155861657, 0.0158129279, 0.0122376345, 0.00377371139, 0.0199853648, -0.00466375565, -0.00902516115, 0.0150570525, 0.00563127687, 0.00754742278, 0.0190178435, 0.00496232649, -0.0215727035, 0.00989441853, 0.0281185918, 0.0275743604, -0.00319924555, 0.0189573728, -0.00508326665, 0.000447147962, -0.00433494942, -0.050250642, 0.0123736924, -0.00587693695, -0.00738113, -0.00918389484, -0.0224041678, -0.0103479438, -0.00687469309, -0.011791667, 0.0156466346, 0.0131220091, 0.0109753208, -0.0126004545, -0.00140592956, 0.0116102574, 0.00858675223, -0.041845303, 0.00291768182, -0.0121242525, 0.00275138905, -0.0140366191, 0.00452013919, -0.000641077408, -0.0283604711, -0.00386630627, -0.00743026193, 0.0327143185, 0.00832219608, -0.0163118057, 0.00728664547, -0.0223134626, 0.0116026979, -0.0200911872, -0.021829702, 0.00772883324, 0.0145354979, 0.010877057, 0.0177782066, 0.00635691825, 0.00275138905, -0.00959206745, -0.00457305042, -0.0201365389, -0.0129028056, -0.0365541689, -0.00882107392, -0.00248872209, 0.0193806626, -0.0124039268, 0.0131446859, -0.0139988251, 0.0109299682, 0.0250043813, -0.000219676498, -0.0116253747, 0.00386441662, -0.000642022293, 0.0109072924, 0.0269545428, 0.00538939657, 0.00455415342, -0.000298334839, -0.0144221159, -0.0055178958, -0.0158280451, -0.00259832409, 0.0141348829, -0.0104613258, 0.00193693256, 0.0116858445, 0.0311723314, -0.00773639185, 0.00242447271, 0.000485177967, -0.00359986, -0.0140139433, -0.0079291407, -0.0093653053, 0.0149361119, 0.00196527783, 0.00829951931, -0.000158615876, -0.0184433777, -0.000554151658, -0.00346380216, 0.0102043273, 0.0262440182, -0.00729798386, -0.00838266592, 0.00613771379, 0.0177479703, -0.0166141577, 0.00814834423, 0.00529491203, -0.00549143972, -0.019123666, 0.00588071626, -0.0192748401, -0.00138514303, -0.0125626605, -0.00909319, 0.0207110047, 0.0169316251, 0.00478847511, -0.00647029933, 0.000844219117, 0.00759277539, -0.00526467711, -0.00527223572, -0.0112323193, -0.0233112201, 0.0227518715, -0.00021507038, 0.00878328085, -0.000719027128, -0.00578245241, 0.0148605239, -0.00361308781, 0.0054801018, -0.0110887028, -0.00750207, 0.00441431627, 0.00654588733, 0.00744915893, 0.0170525648, 0.00518153096, 0.0171735045, -0.0144221159, -0.00783087686, -0.0104991188, -0.000769103935, -0.0161001608, -0.00743026193, 0.0257753748, 0.0100682694, 0.000368017179, -8.58628046e-05, -0.00361686712, 0.0118067851, 0.00460328534, -0.00524578, 0.0284511764, -0.00577867264, -0.00268902932, -0.00760411378, 0.00940309837, 0.0103857378, -0.0106578534, -0.00959206745, 0.00496232649, -0.000731310109, -0.00828440208, -0.00362820528, 0.00373591762, -0.0138627682, 0.00637203548, -0.0158582814, 0.0172793288, -0.038247332, 0.00160056772, 0.00373402797, -0.0161606316, -0.00922924746, -0.00829951931, 0.0127591891, 0.0106502948, -0.00623219833, -0.0116329333, -0.0100078, 0.0169316251, -0.017944498, 0.0185643174, 0.0185492, -0.0155256949, 0.0136511223, 0.0145128211, -0.0268184841, -0.0212552361, -0.026380077, 0.0028496529, -0.0030877539, 0.00422534766, -0.0166292749, -0.000496516121, -0.0303408671, 0.00941821653, -0.030703688, -0.00580512872, -0.0215273518, -0.0120486654, -0.000372269, 0.009123425, 0.0192748401, 0.0213308241, 0.0201818924, -0.000505492149, 0.0145052625, 0.0188515503, -0.00178859185, -0.00588449556, 0.00259265513, -0.0108468225, 0.00866234, -0.000890044146, -0.00116026984, 0.0175060909, -0.0206505358, 0.00141632289, 0.00193693256, -0.00390787935, -0.00685957586, 0.00416109804, -0.0150948456, -0.00356017658, 0.0239763893, -0.00947868638, -0.013658681, 0.0177328531, 0.0159036331, -0.000957128126, 0.0295396391, -0.00648541702, -0.0134394774, -0.00468643196, -0.0167199802, -0.00414975965, 0.00804252177, 0.00782331731, -0.00438786065, -0.012267869, 0.00788378809, 0.00962986145, 0.00436896412, -0.00217881287, 0.00876816269, -0.0227065179, 0.00910830684, 0.011315465, 0.0110206734, 0.0026021034, -0.0414522476, -0.0030915332, -0.0115724634, 0.0182166137, 0.0110811442, -0.00267013232, -0.00361119816, -0.00398346689, 0.0108241457, -0.0117765497, -0.0110433502, -0.0243392102, 0.0797600448, 0.00981883053, -0.00211456348, -0.0199551284, 0.0204691254, -0.00860187, -0.00731688086, 0.0451106876, 0.0290558785, 0.00534026464, -0.0118899308, 0.0174153857, -0.00882863253, 0.00448990427, -0.0272720102, -0.0132051557, -0.0228274576, -0.00872281, 0.000862171175, 0.0112852305, 0.00393055566, 0.00347891985, -0.00388520327, -0.0102496799, -0.00829196069, 0.0126306899, -0.0047846958, -0.0153291672, -0.0108014699, 0.00229786336, -0.0114742, 0.0103555024, 0.0176270306, 0.0135679757, 0.00744160032, -0.00359230116, 0.0351633579, 0.0126231313, 0.00122357451, 0.00605456764, -0.0178689118, -0.00318223843, 0.000822960108, -0.00252273655, 0.00860187, 0.00195205, 0.0240822136, -0.0169920959, 0.00935018715, -0.00986418314, -0.0130237453, 0.00473556388, 0.00461084442, -0.0226914, 0.00659123948, 0.00666682748, 0.00499256188, 0.00419133296, 0.0351331234, 0.0198039543, -0.0021221221, 0.0097659193, 0.013961032, 0.00334097235, -0.0137871802, -0.00188685569, -0.0282697659, 0.0052042068, 0.00554435141, -0.00557080703, -0.0141802356, 0.00200685114, -0.00388898258, -0.0113305831, 0.0133185368, 0.0112096425, 0.0238403324, 0.0282848831, -0.0177782066, 0.023598453, -0.00761923101, 0.00637203548, 0.00485650403, -0.0187608451, -0.00283831474, -0.0168862715, -0.0157373399, 0.00950136315, -0.0199400112, 0.00845069531, 0.0071921614, 0.0111869667, -0.00666304771, 0.0128045417, 0.0117085213, -0.0078082, -0.0169013906, 0.0102647971, 0.0186096691, 0.00340711162, 0.00182733044, -0.012819659, -0.00344679505, -0.00702208886, -0.0153971966, 0.0340446606, -0.0066592684, 0.0040477165, 0.0136435637, 0.00117349764, 0.0154198725, 0.00614527287, -0.00851872377, 0.0155256949, 0.00870769285, 0.00984906591, 0.0130615393, -0.0246566795, 0.0135830939, -0.0215273518, 0.00357340439, 0.0216331743, -0.020665653, -0.00833731331, -0.0159641039, -0.00979615469, 0.00599409733, 0.0132883023, 0.0150117, -0.0123888096, 0.0157222226, 0.000943427847, 0.0183677897, -3.56088494e-05, 0.0217389967, 0.0300536342, -0.0162059832, 0.00337876612, -0.0157826934, 0.0240519773, 0.0221169349, 0.00120467751, -0.00136435637, -0.0122376345, -0.00096232479, -0.0100078, -0.00228841486, -0.00831463747, -0.0219355244, 0.00774773024, 0.00792158209, 5.73181433e-06, -0.00380772585, 0.0036962342, -0.00837510731, -0.0122376345, -0.0096903313, -0.00823904946, 0.013220273, -0.013333655, -0.00493965, -0.00072564109, 0.0173851512, -0.0093275113, -0.00252273655, 0.00898736715, 0.0190783124, 0.000357860088, -0.00778552378, 0.010400855, 0.0293279923, -0.00140687439, -0.00994733, 0.00224495213, 0.00851872377, 0.0123963682, 0.00310854055, 0.00511350203, -0.0152460216, 0.00229597371, -0.00586559856, 0.00153253879, -0.00528735342, 0.048648186, 0.00297437259, -0.00233376748, -0.0087757213, -0.0126609253, 0.0306432173, 0.00469021127, 0.0076494664, -0.0130539807, -0.0294186976, -0.0106427353, 0.000158261566, 0.00387386512, 0.0116178161, 0.0131522445, -0.00250950875, -0.00876060408, -0.0102799153, 0.0159187503, 0.0114061702, 0.00767592201, -0.00283831474, 0.00678776763, 0.0219204072, 0.00857919361, 0.00244525913, -0.00746049732, 0.00510972273]
26 Apr, 2023
Xv6 Operating System -adding a new system call 26 Apr, 2023 Prerequisite – Xv6 Operating System -add a user program In last post we got to know how to add user program in Xv6 Operating System. Now here you will see how to add new system call in Xv6 Operating System. A dding new system call to xv6: A system call is way for programs to interact with operating system. A computer program makes system call when it makes request to operating system’s kernel. System calls are used for hardware services, to create or execute processes, and for communicating with kernel services, including application and process scheduling. Overview: You are going to implement system call called getyear which will return 1975 from kernel always. Unix version 6 was released in that year. In order to define your own system call in xv6, you need to make changes to 5 files. Namely, these files are as follows. Create system call to return year Unix version 6 was released: You could start working from syscall.h file where the number is assigned to every system call in this Xv6 system. As you can see, there are 21 system calls already defined in this file. Let’s go ahead and add the following line to the reserver system call number for your own system call. #define SYS_getyear 22 Next, you need to add pointer to system call in syscall.c file. This file contains an array of function pointers which uses above-defined numbers (indexes) as pointers to system calls which are defined in different location. In order to add your custom system call, add following line to this file. [SYS_getyear] sys_getyear What changes happen here ? This means, when system call occurred with system call number 22, function pointed by function pointer sys_getyear will be called. So, you have to implement this function. However, this file is not place you are going to implement it. You will just put function prototype here inside this file. So, find suitable place inside this file and add following line. You can see that all other 21 system call functions are defined similarly. The function prototype which needs to be added to syscall.c file is as follows. extern int sys_getyear(void) Next, you will implement system call function. In order to do this, open sysproc.c file where system call functions are defined. //return the year of which //Unix version 6 was released int sys_getyear(void) { return 1975; } Now you have just two little files to edit and these files will contain interface for your user program to access system call. Open file called usys.S and add line below at the end. SYSCALL(getyear) Next,open file called user.h and add following line. This is function that user program will be calling. As you know now, there’s no such function implemented in system. Instead, call to below function from user program will be simply mapped to system call number 22 which is defined as SYS_getyear preprocessor directive. The system knows what exactly is this system call and how to handle it. int getyear(void); If you have completed all above procedure, you have successfully added new system call to xv6. However, in order to test functionality of this, you would need to add user program which calls this system call. The user program could be as follows: #include "types.h" #include "stat.h" #include "user.h" int main(void) { printf(1, "Note: Unix V6 was released in year %d\n", getyear()); exit(); } In order to add this user program to xv6, you need to follow above steps for adding user program. At last, run user program in qemu window which can be obtained by running command make qemu on terminal. After executing everything successfully, you will get on terminal. Output: "Note:Unix V6 was released in year 1975" Xv6 is a simple Unix-like operating system used for educational purposes. Adding a new system call to Xv6 requires modifying the kernel code and adding a new entry to the system call table. Here are the high-level steps involved: Define the new system call: Define the new system call by creating a new function in the kernel code. The function should take the necessary arguments and return the required value. The function should also check for any errors and return an appropriate error code. Add the system call number: Choose a unique system call number for the new system call and add it to the system call table in the kernel code. This table is typically defined in the file syscall.h. Modify the system call dispatcher: Modify the system call dispatcher function in the kernel code to handle the new system call. The dispatcher function reads the system call number from the process’s register and calls the corresponding system call function. Add the user-level interface: Add a user-level interface to the new system call by adding a new entry to the system call library in the file usys.S. This entry should call the system call with the appropriate arguments and return the result. Modify the user-level program: Modify the user-level program to use the new system call by including the header file that defines the new system call and calling the system call function with the appropriate arguments. Build and test: Build the Xv6 kernel and user-level programs and test the new system call to ensure that it works correctly. Adding a new system call to Xv6 can be a challenging task, as it requires a good understanding of the operating system’s architecture and programming in C. However, it can also be a valuable learning experience for students interested in operating system design and implementation. xv6 is a simple Unix-like operating system designed for teaching purposes. Adding a new system call to xv6 involves modifying several components of the operating system, including the system call interface, system call dispatching mechanism, and the kernel code that implements the new system call. Here are the general steps to add a new system call to xv6: Define the system call interface: The first step is to define the interface for the new system call, including its name, arguments, and return value. This information should be added to the syscall.h header file. Assign a system call number: Next, assign a unique number to the new system call. This number should be added to the syscall.h header file, as well as to the syscall() function in the syscall.c file. Modify the system call dispatcher: The system call dispatcher is responsible for determining which system call to execute based on the system call number passed by the user program. This mechanism should be updated to handle the new system call number. Implement the new system call: The final step is to implement the new system call in the kernel code. This involves modifying the appropriate kernel function to handle the new system call and adding any necessary data structures or helper functions. Once these steps are completed, the modified xv6 operating system can be recompiled and tested to ensure that the new system call is functioning as expected. It is worth noting that adding a new system call to xv6 is a complex task that requires a deep understanding of operating system design and implementation. It is recommended to consult the xv6 documentation and other relevant resources before attempting to add a new system call. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call
https://www.geeksforgeeks.org/xv6-operating-system-adding-a-new-system-call?ref=asr10
PHP
Xv6 Operating System -adding a new system call
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0226617623, 0.0283785518, -0.0159950275, 0.0281902738, 0.0230725501, 0.0348313339, -0.0195808578, 0.0523411408, -0.0155328922, 0.0505952947, 0.013889743, -0.00815155916, 0.0549427904, 0.00181003124, 0.0258453637, 0.0446046479, -0.0147626661, 0.03169908, -0.0112880906, -0.0118015744, 0.0207447559, 0.00943954848, -0.0274029318, 0.0203168523, -0.00484814495, -0.0130253788, 0.0244247243, 0.00906299334, -0.0101584261, 0.00185924012, 0.000352752832, 0.0265642405, -2.28995159e-05, -0.0109200943, 0.0451181307, -0.00851955637, -0.0348142162, -0.00558413891, -0.0336160883, 0.00476256432, -0.0360465795, -0.00458284514, -0.0192556512, 0.022302324, -0.0049594, 0.00426833611, 0.0126060331, -0.0320927538, -0.0281902738, -0.00795900263, -0.00548572093, -0.0116132973, 0.0544293076, 0.0393328778, 0.0218573045, 0.00490377238, -0.00967917405, -0.0120925494, -0.0125718005, -0.0393671095, 0.0260165241, 0.00362648093, 0.0114250202, -0.0161833055, 0.0376897268, -0.0158752147, -0.0292001255, 0.0608307421, -0.0280019958, 0.00162282353, -0.0137870461, -0.0152504761, -0.0222509746, 0.0016944973, -0.0191700701, 0.0155842407, 0.0251264852, 0.0442280918, -0.0383743756, 0.025434576, -0.0240310524, -0.00563548738, 0.0026059316, -0.0246301182, 0.00728291506, 0.014283414, 0.0160806086, -0.0717508346, 0.0313225277, 0.000126097773, 0.0136501174, -1.67400485e-05, 0.045973938, -0.0100214966, 0.011057023, 0.0366969928, 0.00888327416, -0.0102611231, -0.0170733444, -0.00830560457, 0.029833423, 0.0138811851, 0.00744123943, -0.0096620582, -0.0170476697, 0.0353619345, -0.0120668747, -0.00371848023, 0.0407364, 0.0277110226, -0.00680794241, 0.00206784299, -0.0264444277, 0.0168593917, -0.00144631334, -0.0191700701, -0.00888327416, -0.0207789876, -0.0322639123, 0.0171674825, 0.0276083257, 0.031972941, -0.0339241773, 0.00609334372, -0.0565859415, 0.0251607187, -0.0178692453, -0.0097219646, 0.0052247, 0.0050749341, -0.0207961034, -0.0343520828, 0.000758993614, -0.0222509746, 0.0312540606, -0.00574246328, 0.000190283274, 0.0498421825, 0.00847676583, -0.00583660183, -0.0238085426, 0.019957412, -0.03032979, -0.00981610361, -0.0109286522, 0.0127515206, 0.00382545614, 0.0279506482, -0.0302442089, 0.0670610145, -0.024835512, 0.00123557099, 0.00161533523, 0.0157468431, 0.000942992046, -0.0115106, -0.00108527, 0.0481305718, -0.00789481681, -0.00409075618, -0.0211041942, -0.0491575375, -0.0284983646, -0.0231410135, 0.00140887185, -0.00495512085, -0.014574389, -0.0265813563, -0.024938209, 0.0362177417, -0.0193754639, 0.00153831264, 0.0441253968, 0.0284299, -0.00523753697, 0.00674803602, -0.0100985197, 0.0407021679, -0.0170476697, -0.0450154357, -0.049602557, -0.000445019512, -0.0426876396, 0.00840402208, 0.0541554503, 0.00335262297, 0.0264615435, -0.0488836803, -0.0059478567, -0.0350367278, 0.00941387378, -0.00349383103, 0.0240995176, 0.0296451449, 0.0106034456, -0.0127087301, -0.0166796725, 0.0312369447, -0.0313909911, 0.0141721591, -0.0455289185, -0.00999582279, -0.03169908, 0.00816867501, -0.00101680541, 0.0021405865, -0.0290974285, -0.00567827746, 0.0133591434, -0.00266155903, -0.026307499, 0.0129654715, 0.0219600014, -0.0121096652, 0.0286352932, 0.000419880176, 0.010072845, 0.038545534, -0.00667529227, -0.0474801585, 0.00902020279, 0.0103723779, 0.0318360105, -0.033633206, -0.0574417487, -0.030809043, 0.0165598597, -0.0262390338, -0.00935396738, -0.0193583481, 0.0242193304, 0.022011349, 0.0105349813, -0.0113052065, -0.01975202, -0.0172273889, -0.00872494932, 0.0136501174, 0.0148824789, 0.00431754487, -0.0096620582, -0.00840830151, -0.00449726451, -0.00338257616, -0.00981610361, 0.00973052252, 0.026803866, 0.0557985976, 0.0180232897, 0.0185196567, 0.0419002958, 0.0353277028, 0.0022250975, -0.000827993033, -0.0243391432, 0.00187956553, 0.0186908189, -0.0187592842, 0.0125033362, 0.00340183172, 0.0017415667, 0.00314508984, -0.00723584602, 0.027283119, -0.0324350744, -0.0205051284, 0.0465558879, 0.00307448558, 0.0164143723, -0.0424137823, 0.0533338748, -0.0268723313, -0.00706040533, 0.00770653971, 0.0631585345, -0.0466928147, -0.0286695249, 0.031972941, -0.022199627, 0.0229527373, -0.0246814657, -0.0145572722, 0.0159864705, -0.000663250219, 0.0120839914, -0.0115106, -0.038545534, 0.00124626851, -0.0526834615, -0.00747547159, -0.0161062833, 0.00970484875, 0.0113223232, 0.0108088385, 0.0363204367, 0.0229013879, -0.0300388169, -0.0166197661, -0.00780067826, -0.0215320978, 0.0276596732, -0.0284812488, -0.00381261902, 0.016927857, -0.0215492137, -0.00854523, 0.0234319884, 0.0240139365, 0.00888327416, 0.00314081064, 0.0499448813, -0.0553535782, -0.0468982086, -0.0505268276, 0.0299361199, 0.0232950598, 0.0368339233, -0.0048909355, -0.0219257679, -0.0192043036, 0.00573818432, -0.0144973658, -0.00647417782, 0.0397778973, 0.0623369627, -0.0121610137, -0.00490377238, 0.0294055194, -0.0328116305, -0.0137528144, 0.022695994, -0.00122166413, -0.00697910367, -0.011048465, 0.0111169294, -0.0301586296, 0.0184683092, 0.0536419675, 0.00447159028, 0.0154130794, 0.0129654715, 0.00449298555, -0.0283956677, -0.0245616529, -0.0339241773, 0.0199745297, 0.00875490252, 0.0349511467, 0.0187079348, 0.00949089695, 0.00176403159, 0.011048465, 0.058400251, 0.00761668, -0.00951657072, 0.0138212787, -0.0214807484, -0.0318360105, 0.022302324, -0.00298676547, 0.066239439, -0.0165940933, 0.0148739209, 0.0525465347, -0.0391617157, -0.0264444277, 0.0231067818, -0.0265642405, -0.0451523624, -0.0279164147, 0.00372489868, 0.0100642871, 0.0334791578, -0.00720161339, -0.00665817643, -0.00151584763, -0.0237743109, -0.0126060331, -0.00566116162, 0.0183656123, 0.00609334372, 0.000383508392, -0.0108944196, -0.00125268707, -0.0264615435, -0.0180575214, -0.0279848799, -0.00347457523, 0.0103210295, -7.08714942e-05, -0.0180746373, 0.0245274212, -0.0332395323, 0.0220626984, 0.00582376495, -0.0215663295, 0.0268723313, -0.0471036024, 0.0318873599, 0.0296109132, 0.0301586296, 0.0178692453, -0.00116282736, 0.0355330966, -0.0257597826, 0.00953368656, -0.0345232449, -0.0430641957, 0.00232351525, -0.00983321946, 0.00698766205, -0.0269921441, -0.0310829, 0.0212924723, 0.0243391432, 0.0588795021, -0.0298847705, 0.0549770258, 0.00228714338, 0.0108430712, 0.00584943919, 0.0189817939, -0.0165341869, 0.0415922068, 0.0109115355, 0.0341638029, 0.0035558769, 0.00830560457, -0.00256528077, 0.00356443506, -0.036868155, -0.0046170773, 0.012811427, 0.0194952767, 0.0220284648, -0.0335989706, -0.00610618107, -0.0146171786, -0.00799751375, -0.0251607187, 0.00152975449, 0.00585371815, 0.00166347437, -0.0387509279, -0.0658971146, -0.0100985197, -0.0406337045, 0.00569967274, 0.00573390489, 0.0117673427, -0.073188588, 0.0199402962, 0.0296280291, 0.0283785518, 0.0570994243, 0.00886615738, 0.0191187225, -0.0325720049, 0.025434576, -0.00639287615, 0.0146856438, 0.0257084332, -0.0112966485, -0.000905015622, 0.0279677641, 0.0119898524, -0.0453577563, -0.0508349203, -0.00916569, 0.0113137653, 0.0360808112, -0.00590078719, 0.0131708654, 0.03560156, 0.011536275, -0.0124091972, -0.0162688866, 0.00297178887, -0.00473689, -0.0663421378, 0.00490377238, 0.0218059551, -0.0418318324, -0.0223879032, -0.0373474061, 0.0288749188, -0.0154387532, 0.0237400793, -0.000898062193, -0.00717593962, 0.00980754476, 0.0436803773, 0.0096535, 0.00428331271, -0.00239411928, -0.0255543888, -0.0453235246, 0.0100899609, 0.0299703516, 0.0279335324, -0.0410444923, -0.000333229749, -0.0454262197, 0.0233121756, 0.00539586134, 0.0134532815, -0.0187421665, -0.00918280613, 0.025331879, -0.0134361656, 0.0140352305, 0.00654692156, 0.0226275306, 0.0365600623, -0.000696947624, -0.00506637571, -0.0297820736, 0.0211213101, 0.0223365556, 0.0099359164, 0.0202655029, -0.020436665, 0.00334406481, -0.0125718005, -0.00774077186, -0.0186394714, 0.0302955583, -0.043440748, 0.00747119263, 0.0046941, -0.0102354484, 0.0210014973, -0.0129312398, 0.00196407642, -0.00168166019, -0.0189989097, 0.0035708535, 0.0091485735, -0.0159351211, -0.0102611231, -0.0247670468, 0.0355330966, -0.014086579, -0.0123150591, -0.0245787688, 0.042756103, -0.0156954955, 0.00361578353, 0.00414210465, 0.010954326, 0.0131879821, 0.000281346467, -0.00367355044, 0.0042362432, -0.00271718646, 0.00369922468, 0.00584943919, -0.00746263471, -0.0201456901, -0.00495512085, 0.0120839914, 0.00376341, 0.0307919253, 0.015840983, -0.022199627, -0.0194952767, -0.0124947783, 0.0157554019, 0.00327560026, 0.00919992197, 0.00125268707, -0.00767658651, 0.0323494934, 0.00841258, 0.00407791929, 0.0513826348, 0.0160891656, -0.00789909624, -0.0314936861, -0.00567827746, 0.0103381453, -0.00558841787, 0.0052931644, 0.0221140459, 0.00595213566, -0.0112538589, -0.0376212634, -0.00258881529, -0.0287037585, 0.00685501192, 0.0100985197, -0.00913145766, -0.0353277028, 0.0161319561, 0.0261534546, 0.00845109113, -0.0233977567, 0.0241337493, 0.0151392212, -0.0290631969, -0.00863509, 0.0311684813, 0.0057809744, -0.0199231803, 0.0144460173, -0.00932829361, 0.023277944, -0.00273002358, -0.0267354026, 0.0148054566, 0.00786058512, 0.00135645363, 0.0123920813, 0.0160977244, -0.0160463769, -0.0122380359, -0.0101070777, -0.00156612636, 0.00232993392, 0.0212411229, 0.0107831648, 0.0292857066, -0.0340439901, 0.0149937337, 0.0119898524, 0.022302324, -0.0331197195, -0.0149081536, 0.00190096069, -0.031972941, 0.013102401, -0.0283785518, 0.00911434181, -0.0144460173, -0.0135388626, 0.00554562779, -0.0024069564, -0.0174755733, -0.0284812488, 0.0277452543, -0.0188619811, 0.00481819175, -0.00547288405, 0.10940633, -0.0165427439, 0.0334962755, 0.0199402962, 0.00971340667, 0.00548144197, 0.00661966484, -0.00122380361, 0.00359010929, -0.0312711783, 0.023277944, -0.00492944662, -0.0091229, 0.0350196101, 0.0043731723, -0.0103980517, 0.0063286908, -0.0137442565, -0.00826709345, 0.0351907723, 0.0538131259, 0.0199402962, -0.0182458, 0.0217374917, -0.000183329845, -0.0115619488, 0.0119128292, -0.00744551839, -0.029542448, 0.00738989096, 0.0324521922, -0.0180232897, -0.0159693528, -0.033359345, 0.0379293524, 0.0309117399, -0.0129483556, -0.00289476616, 0.0227986909, 0.0215663295, 0.00133719796, -0.0171931572, 0.00150621985, -0.0465558879, -0.000514821208, -0.00734282192, -0.00712887, -0.00209030788, 0.025143601, 0.0252120662, 0.0111426041, -0.000156987051, -0.022884272, -0.00579809071, 0.00713314908, 0.00528032752, -0.00220798142, -0.0104750739, -0.00706040533, -0.0387509279, -0.0025289089, -0.0120583167, 0.00690208143, 0.000684645376, 0.00142063922, -0.0198204834, -0.00283699925, -0.000928550318, 0.0181088708, 0.0285497122, 0.000745086756, 0.0258111302, 0.00803602487, 0.0181431025, 0.0128199849, -0.0251778346, -0.0114763686, -0.012229478, 0.00826709345, -0.0264273118, -0.0287037585, 0.0012109665, -0.0294397511, 0.0070347311, -0.0246130023, -0.0144032268, 0.000325206551, 0.0338728316, 0.0216005612, 0.00268723303, -0.00121417583, 0.0162175372, -0.0213609356, 0.0167395789, -0.0118443649, -0.013983882, 0.00438173, 0.0062987376, 0.0162004214, 0.0190673731, 0.000261689653, -0.00318146148, -0.0183484964, 0.00887471624, -0.00373559631, -0.0187764, -0.0250237882, -0.0183998439, 0.00245616538, 0.021035729, -0.0171845984, 0.0148396883, -0.0122893844, 0.0174584575, -0.0129654715, 0.0351565406, 0.0107746068, 0.0102440063, 0.0467612781, -0.00842541736, 0.00133612822, 0.0325035378, -0.00639715511, -0.0333764628, -0.00301030022, 0.00213523768, -0.00790765416, 0.0252976473, 0.0219428837, 0.0232094787, -0.0067309197, 0.00513911946, -0.0313396417, 0.00386610697, -0.0043432191, 0.0162432119, -0.0280875769, 0.00307234609, 0.00579381175, 0.0195808578, 0.000639715523, -0.0127686365, -0.0134703983, 0.0229698531, -0.00889183208, 0.0149937337, 0.0135131879, -0.0287893377, -0.0105948877, 0.0219257679, 0.0233635232, 0.0232950598, -0.00597353093, 0.00199509948, -0.00878913514, -0.0158752147, -0.0294226352, 0.0373816378, -0.00792049151, 0.0158238672, -0.00351950526, 0.0134618394, -0.0151734529, -0.0154045215, -0.0409075618, -0.03950404, 0.00985889323, 0.00852383487, -0.0260849893, 0.00888327416, 0.0197177865, 0.0261534546, -0.0165170692, 0.00149124325, 0.000385647902, -0.00126017537, 0.0252634138, 0.00947378, 0.0322639123, 0.0400517546, -0.00024537585, -0.0167395789, 0.0359781161, 0.0182286836, 0.0316648483, 0.0320756361, 0.0216690265, 0.0273002349, 0.0140951369, -0.0112538589, 0.00719733443, 0.0165513027, 0.0222338587, 0.000286695256, -6.72276292e-05, -0.0197349023, 0.0506637581, -0.0203168523, -0.0162517689, 0.021326704, -0.00572962593, 0.00690636039, 0.00824569818, -0.0223365556, 0.000704970793, -0.0224392526, -0.013590211, 0.00434535882, 0.00595213566, -0.0321269855, 0.0177323148, 0.00684645399, 0.0197006706, 0.00652124733, -0.00664106, 0.0340611078, -0.0230554324, 0.0254859235, 0.0319558233, -0.027882183, 0.00880625099, 0.0179548245, 0.00460851938, 0.0075225411, -0.00984177738, 0.00703901052, -0.0435092151, -0.0255372729, -0.0145059237, 0.038545534, -0.0144289015, 0.0108430712, -0.0142235076, 0.00551139517, 0.00870783348, 0.00882336777, 0.0190160256, -0.0216005612, 0.00183677522, -0.00253104838, 0.00257597817, 0.00528032752, -0.0257426668, -0.0299361199, -0.0350880772, 0.0272660032, -0.0229698531, 0.00383829325, -0.00231709681, 0.00939675793, -0.00375057291, 0.0111254873, 0.00884048361, -0.0235175695, 0.0165170692, -0.0289947316, 0.0144460173, -0.0160634927, -0.00700905733, -0.00616608746, -0.0163630247, -0.0128970072, -0.0251607187, 0.0374843329, -0.00305950898, -0.0092341546, -0.00995303225, -0.0218059551, 0.0235689171, -0.0164486058, -0.00133933756, 0.0331881866, 0.0278992988, -0.021514982, -0.0198889486, 0.0225761812, 0.0324864239, -0.0184511933, 0.0176980831, -0.00562265, 0.0130424947, 0.0178350117, -0.0311855972, -0.0409417935, 0.0206934065, 0.016654, -0.00394954812, -0.0125974752, 0.00816439651, -0.0105178645, -0.00389392069, -0.0102611231, -0.0032713213, -0.0558670647, 0.0202655029, -0.0559697598, 0.0267354026, 0.0150707569, 0.0421399251, 0.0107232584, 0.0157468431, 0.0040693609, 0.00363503909, -0.0227473434, 0.0246985815, -0.0184340775, 0.000172364831, -0.00657687476, -0.00411856966, 0.00244118879, -0.0249553248, 0.00715454435, -0.00102482853, -0.0240995176, -0.020248387, 0.0200943425, 0.0397778973, 0.00117566448, 0.0101156356, 0.0062987376, 0.00904587749, 0.00949089695, 0.0125632426, -0.00817723293, -0.0120925494, -0.00862225238, -0.00734710088, 0.0143090887, -0.0145144826, 0.0185025409, -0.00446303189, -0.0033012745, -0.0307919253, -0.0302442089, -0.0156013565, -0.00444591604, -0.00834411569, -0.00241979351, -0.0292343572, 0.00866932236, 0.0279335324, -0.0100129386, 0.017903477, 0.0131195169, -0.0267011691, -0.0360465795, 0.0243049115, 0.00557558099, 0.00935396738, 0.0148396883, -0.0373131745, -0.00734710088, 0.0354646295, 0.0525465347, 0.0133163529, -0.0482675, -0.0186737031, -0.0231410135, -0.0376212634, 0.00178221753, -0.00316648488, 0.0359781161, -0.00861369446, 0.0144203436, 0.014086579, 0.00201328541, 0.00826709345, -0.0472062975, -0.0389220901, -0.00860085804, 0.00254174601, 0.0185367744, -0.00268509355, -0.00385754881, 0.0244076084, 0.0348313339, -0.00737277512, -0.00322425179, 0.00228072493, -0.0229185037, -0.0243049115, -0.00636720192, 0.0213951673, 0.00386396749, 0.00367569, 0.0151991276, 0.0167909283, 0.0114763686, 0.00310015981, 0.00589650823, -0.00245830487, -0.00478823856, -0.00208388944, 0.00937964208, -0.0471378341, 0.0402229168, 0.0245445371, 0.0183827281, -0.00856234599, -0.0079547232, 0.0158324242, -0.0181602184, 0.00396452472, -0.0197349023, 0.0235860329, -0.00684645399, -0.0140694622, 0.0198033676, 0.0128884492, 0.0119727366, 0.0137699302, -0.000900736602, -0.00427903375, -0.0111083714, 0.00212667976, 0.035909649, 0.00721445074, -0.0123065012, -0.0281389244, 0.0135730943, -0.00827565137, 0.00132650044, 0.0229698531, 0.011048465, 0.00735138, 0.000343392458, -0.00955936126, 0.00872494932, 0.015062198, 0.00358583, -0.0244247243, 0.00592646142, -0.022011349, -0.0258624796, -0.00271290727, -0.0218230709, -0.0113736717, 0.0173814353, -0.0163202342, 0.0369366184, 0.0362519734, -0.0293884035, -0.0183313806, 0.0218059551, -0.0298163071, -0.00688496511, -0.0295595638, -0.00833555777, 0.00823286083, 0.0205051284, 0.0189646762, 0.00531455968, 0.0142748561, -8.99265651e-05, 0.109543264, -0.0046170773, -0.00232565473, -0.0308946222, 0.0296964943, -0.00661110692, 0.0248868596, 0.00334192533, 0.019957412, -3.08892741e-05, 0.0405652374, 0.0112453, 0.0115619488, -0.00509632891, -0.0105863288, -0.0307234619, 0.00320499623, 0.00487809815, 0.0119898524, 0.00449298555, -0.0232265946, 0.00288406876, 0.0241166335, -0.00268509355, 0.0186908189, 0.00311299693, -0.00400945451, -0.00258881529, -0.011929946, 0.00357299298, 0.0213780515, -0.00842541736, -0.00805314165, -0.0024797, -0.00717166, 0.0308603905, 0.0343520828, -0.00117245526, -0.0256913174, 0.0147369923, 0.00766374916, 0.0222167429, -0.0111169294, 0.00200793659, -0.0114335781, 0.00879769307, 0.0112110684, 0.0133848172, -0.0143433204, -0.0278137196, 0.00523753697, -0.00956791919, -0.00168059045, -0.0153702889, -0.00795900263, 0.0109286522, -0.000367462024, -0.00856662542, -0.0051048873, 0.00652980525, 0.0206762906, 0.0336674377, 3.73746843e-05, 0.0024069564, -0.0219771173, 0.0124776624, -0.0276767891, -0.00406508194, -0.0276767891, 0.00858374126, 0.0101413094, -0.00700905733, -0.00516051473, 0.0269236788, -0.018588122, -0.0216347948, 0.0111853937, -0.00527176959, -0.00193091389, -0.020060109, 0.00764235388, 0.00735138, 0.0239968207, 0.0135816531, 0.00153082423, -0.0112795327, -0.0199060645, 0.0126916142, 0.0283956677, 0.0109800007, -0.0157382861, 5.03120755e-05, -0.0176296178, 0.0269750282, 0.0101669841, -0.020060109, 0.0294568669, 0.00052097236, -0.0155072175, -0.0212924723, -0.0141978338, 0.0130938431, 9.92869536e-06, -0.00695770886, 0.0205222461, 0.000257811771, 0.0148482472, -0.000147894098, -0.0136501174, 0.00184854248, 0.0329314433, -0.00296109123, -0.00578525336, -0.0103467032, 0.0107489321, 0.0143861109, 0.0161661897, 0.0152248014, 0.00104140979, -0.00952512864, -0.0130681684, 0.014865363, 0.0143861109, -0.0273002349, 0.0133848172, -0.0197349023, -0.00548572093, 0.0244418401, 0.010757491, 0.00668385066, 0.00353662134, 0.00422768528, -0.00403085, 0.00389392069, -0.0192898829, 0.00439028861, -0.0158153083, 0.0594956838, -0.00815583859, -0.0109457681, -0.00410359306, 0.0207789876, -0.0189475603, 0.00623455225, -0.0187079348, 0.0157211702, -0.033308, -0.0140523463, 0.012323617, 0.0368339233, 0.0073556588, -0.0106890257, 0.0178521276, 0.00836978946, 0.0192898829, 0.00199082051, 0.00375913107, -0.0187250506, 0.00257597817, -0.0165940933, 0.0179205928, 0.0163715836, 0.0142320655, -0.000833876664, -0.0245787688, -0.0250409041, 0.00457856618, -0.00927694514, -0.0393671095, -0.00503642252, 0.00106227014, 0.0280191116, -0.0057809744, 0.00196835538, 8.28394186e-05, 0.00255030394, 0.0267011691, -0.00905443542, -0.00270862831, -0.00326276314, -0.0145658301, -0.0103039127, -0.0294739846, -0.0185538903, 0.0374158695, 0.0232608262, -0.0189475603, -0.0247499309, 0.00376982871, 0.001846403, 0.00628590025, 0.00519902585, 0.00625594705, -0.00235774764, 0.0289947316, 0.0309288558, -0.0148995947, 0.00234705, -0.036868155, 0.022011349, -0.0367312245, -0.0405994728, 0.00145594124, 0.00542153558, -0.00367569, -0.00955936126, -0.0144631341, -0.03365032, -0.00417205784, -0.00225291122, -0.000616715697, 0.0324521922, 0.0212582387, 0.023175247, -0.0084981611, -0.0093882, -0.0164742786, 0.00682077976, 0.0106205614, 0.00717593962, 0.0051048873, -0.00737705408, -0.0043731723, 0.00415280228, -0.0155414501, -0.0111939516, 0.0258795954, 0.010663352, 0.0138726272, 0.0218915362, -0.0185710061, 0.0242364462, 0.052820392, -0.0125632426, 0.0217717234, -0.043132659, 0.0212411229, -0.0215834454, -0.0183142647, 0.00270434935, -0.00122166413, 0.0177151989, -0.0280533452, 0.00660254899, -0.0099102417, -4.26231854e-05, 0.0407364, -0.0166882314, -0.027283119, 0.00793760736, 0.000237753804, -0.0122123621, 0.0235175695, -0.0111254873, 0.0122979423, 0.0201970395, 0.0198718328, 0.0247841626, 0.00401159422, -0.0230040848, -0.00800607167, -0.00756105222, -0.00801890902, 0.0103467032, -0.0187764, 0.00285625504, -0.0101241935, -0.0102354484, -0.0118614817, 0.0104836328, -0.0255030412, 0.0376554951, -0.0165684186, 0.000957968645, -0.0134532815, -0.000500379479, 0.0138298366, -0.012229478, -0.00889183208, 0.000464007724, 0.0117245521, 0.0195979737, -0.0146428533, -0.0167909283, -0.000949945475, -0.0129055651, -0.0151820118, 0.0514511019, 0.00835695304, 0.0239283554, 0.00102536345, 0.0087720193, -0.0109628839, -0.0112709748, -0.00381261902, 0.0203339681, 0.0163202342, 0.0248697437, 0.00612757634, 0.0126830554, 0.00937964208, 0.00409717485, -0.0071117538, 0.00695343, -0.000219166759, -0.0119812945, 0.0309973191, -0.049876418, -0.00132970966, -0.00939675793, -0.0142406244, -0.0235518012, -0.0043581957, -0.011929946, 0.00627734233, -0.00286481297, 0.0272488855, -0.0040693609, 0.0235689171, 0.00355801638, -0.0118785976, -0.00819435, 0.0212411229, -0.0202826187, -0.00559269683, -0.0177836642, 0.0031343922, 0.0133848172, 0.0104408422, -0.0226788782, -0.0144032268, -0.0239797048, 0.0102097746, 0.0301928613, -0.0011885016, -0.0108516291, -0.016816603, -0.0269407965, -0.0122209201, 0.0119128292, -0.0276596732, -0.00276639522, -0.0178350117, 0.013401933, -0.00953368656, 0.000148830135, 0.0308261588, 0.0268552154, 0.000292578916, 0.0173643194, -0.00922559667, 0.00086169038, 0.0205735937, 0.011929946, -0.0067095249, 0.0208988, -0.00318574044, 0.0232437104, -0.0348997973, -0.0149766179, -0.0105435392, 0.0143689951, -0.00645278255, -0.0103638191, -0.0173044112, 0.000126766376, -0.00119812938, 0.0300901644, 0.0370735489, 0.0643566623, -0.0215663295, -0.00852383487, 0.00855806749, 0.0105093066, -0.00518618897, 0.000350613322, 0.0160292592, 0.00984177738, 0.00318146148, -0.00278993, -0.0141122527, -0.0115961814, 0.0035259237, 0.00495084189, -0.0208474528, -0.00592646142, -0.0139667662, 0.0343007334, 0.0290118475, -0.0130767273, 0.00217481889, -0.00232137577, 0.0216176771, 0.0156698208, -0.00908010919, 0.0197691359, -0.012032643, 0.00362648093, -0.0147541082, 0.00759528484, 0.0062987376, -0.0142063918, -0.0044801482, 0.0131623074, 0.0194781609, 0.00528460648, 0.01643149, -0.0263930801, 0.0145658301, -0.0380320512, -0.00596925197, -0.00429187063, -0.0082285814, -0.0172359478, -0.00117245526, 0.0052247, -0.0103039127, 0.000313171768, -0.0103980517, -0.00385754881, 0.00203468045, 0.00298462599, 0.00113929273, -0.00430684723, -0.0340782255, -0.0300217, 0.022695994, 0.0155072175, 0.00307662529, -0.00136715127, -0.00695770886, -0.00173300866, 0.0204880126, -0.00280490657, 0.0127857523, 0.018588122, 0.00429614959, 0.0193754639, 0.000304078829, 0.0312540606, -0.0168593917, -0.00688068615, -0.0259480607, -0.01780078, -0.015840983, -0.0116218552, 0.0123920813, -0.00647845678, -0.000292846351, -0.0055670226, 0.0265471246, 0.0153018245, -0.0102268904, 7.05371931e-05, -0.00389178121, 0.0154901017, -0.0028755106, -0.0203168523, -0.000815155916, 0.00883192569, 0.0163887, -0.0249210913, -0.0110655809, 0.0127943102, 0.0171760414, -0.00729575241, 0.00243477, 0.000254736224, -0.00440740446, 0.00530600175, 0.00997014809, 0.00115533907, -0.014574389, 0.00406294223, 0.0168936253, -0.0167738125, 0.00173942721, -0.00107296766, 0.00496367924, 0.00558841787, -0.0182629153, 0.00666245539, 0.00279634842, 0.0122551527, 0.000650948, 0.010560655, -0.0205735937, 0.0334962755, -0.00313225272, 0.0388536267, 0.00659399107, -0.000550390687, -0.0340268761, 0.00187849579, -0.00643994566, 0.0124006392, -0.00350880763, 0.00359224877, 0.0134276077, -0.00297178887, -0.0294055194, -0.00113073469, 0.0240824018, -0.00241551455, 0.0284641311, 0.0116475299, -0.0109971166, 0.0252634138, 0.0171760414, -0.0014623598, 0.00108206063, -0.0210528448, -0.00897741225, 0.00152547553, 0.0246301182, 0.033359345, 0.00636720192, 0.00221439986, -0.00227858545, 0.0215834454, 0.0204708967, -0.00824141875, 0.00768086547, -0.00113929273, 0.00891750585, 0.0108430712, 0.00538730342, 0.00506637571, -0.00435605645, -0.00731714768, 0.00799323525, 0.014959502, -0.00762523804, 0.0163031183, -0.0102354484, -0.00926838722, -0.00303383474, -0.00677798921, 0.0250580218, -0.0244931877, -0.00152547553, 0.0147455502, -0.00747975102, -0.00808737334, 0.0177323148, -0.00614041323, 0.0156869367, -0.0123065012, -0.000932294468, -0.00520758377, 0.00626022602, -0.0178350117, 0.0144888079, 0.00899452902, 0.0128970072, 0.00348955183, 0.00711603276, -0.00331197213, -0.0142748561, -0.000211678445, 0.0147968987, 0.00225932966, 0.00308732269, -0.0080617, 0.00386610697, -0.00909722596, 0.00650841, -0.0101669841, 0.0193241164, 0.00353020267, 0.000128839034, 0.016328793, 0.0169792064, 0.00353662134, 0.0110655809, 0.0231581293, 0.0051348405, 0.00103927031, -0.0195295103, 0.00336759957, -0.0130596105, -0.0049594, -0.0224050209, -0.00109971163, -0.015952237, -0.00213630754, -0.0119385039, 0.00378908427, -0.00761240069, 0.0216176771, 0.00611901795, 0.0049679582, -0.0118529228, 0.0172958542, -0.0304153711, -0.00141315081, 0.00502786459, 0.0154473111, -0.0054001403, -0.00534023391, -8.6717293e-05, -0.00616608746, -0.00333336717, 0.0116047394, -0.0303982552, -0.010569213, -0.00107778155, 0.0101241935, -0.0319215916, 0.00253960653, 0.00660682796, 0.0034189478, 0.0115106, -0.014471692, -0.0156013565, -0.00201007607, 0.00281132502, -0.00658971164, -0.0358411856, -0.0185367744, -0.0024690025, 0.00822002348, 0.00436033541, 0.003692806, 0.0134276077, 0.00331411161, -0.00931117684, 0.00484814495, -0.00336332037, -0.0028904872, 0.00850244, -0.00696198782, -0.00471121585, 0.00995303225, -0.0440569296, 0.00370350364, -0.00277495338, -0.00226574834, 0.000604948378, 0.00876346, -0.0152419182, -0.0132650044, -0.00921703875, 0.000509739912, -0.0164229311, 0.0138212787, -0.00863936916, -0.00222081854, -0.0134276077, 0.0160292592, -0.000436996314, 0.0164486058, 0.000987387, 0.00388964149, 0.0243220273, -0.0039474084, 0.0168508347, -0.00869499613, 0.00769370236, -0.0190844908, 0.000684110506, 0.00800607167, -0.00910578389, 0.00500219036, 0.00187314698, 0.00721017178, 0.0101926578, 0.0162945595, -0.00243477, -0.00487381918, -0.00243049115, 0.0121182231, -0.0008584811, 0.00885759946, -0.00602915836, 0.0129397977, 0.0144032268, 0.00680794241, -0.0208474528, -0.00210207538, 0.0102867968, -0.00237486372, 0.00896885432, -0.0198376, 0.000453845016, -0.0250409041, -0.00336118089, -0.0199060645, 0.00222295802, -0.00470265793, 0.00679510552, -0.0190502573, 0.00659827, -0.013496072, -0.00534879183, -0.0409075618, -0.0084682079, 0.0329314433, 0.00615752954, 0.0190502573, 0.0257597826, -0.00428973138, -0.00760812173, -0.00875490252, 0.0113651138, -0.0101327514, -9.4690331e-06, 0.00454861298, 0.0139410915, -0.00919136405, 0.0132136559, -0.00480107591, -0.0173386447, 0.00685073296, 0.00129868672, -0.000547181407, -0.00769798132, 0.00837406889, 0.0326918177, 0.015550008, -0.0163887, 0.00705184741, -0.000929085189, 0.0155328922, -0.000132984336, 0.00172872958, -0.00778784137, -0.0207961034, -0.0105948877, -0.0106804678, -0.0113308812, 0.0241337493, 0.0043282425, 0.021720374, -1.60045893e-05, -0.00538730342, 0.000558948785, -0.00144952268, -0.00997870602, 0.00582804391, 0.00570823066, -0.00864792708, 0.0163202342, 0.0182286836, -0.0141464854, -0.0143347625, 0.00365001569, 0.00812160596, -0.00578953233, 0.020436665, 0.00585799711, -0.0330341384, 0.00059532054, -0.015652705, 0.00390461809, 0.00638431823, -0.016628325, -0.0123492908, -0.00486526126, -0.00170626468, 0.000955829164, 0.00745835574, -0.00510060787, -0.00242407247, -0.0041635, -0.00192877441, -0.00659399107, 0.0270263758, 0.00817723293, 0.00227430649, 0.00875918195, -0.00736849615, 0.0194268133, -0.00525893224, -0.0158324242, 0.00927694514, 0.00541297765, -0.014377553, -0.00434749806, 0.0138212787, 0.00345745916, -0.032657586, -0.0113907875, 0.00295467279, -0.00481391279, 0.00394099, 0.000665924628, -0.00356657454, 0.00707752164, -0.0160977244, 0.0148225725, 0.0302784424, 0.00916569, -0.017021995, 0.00281988317, -0.027882183, -0.00627734233, 0.0110056745, 0.0276767891, 0.0159094464, -0.0196493231, -0.018297147, -0.00860085804, -0.0110912556, -0.00146556902, -0.00911434181, 0.00913145766, 0.00713314908, 0.00620459858, -0.00152226619, -0.0100471713, -0.00836978946, 0.00713314908, -0.0169193, -0.0144545753, -0.00842969585, 0.000337241334, 0.0153274983, 0.00305309054, -0.0106205614, 0.0197006706, -0.00809593126, 0.0224221367, 0.00789481681, 0.00485242438, -0.0111340452, 0.00626022602, -0.0171418097, 0.000892713375, -0.0065725958, 0.0208132192, -0.00740272831, -0.0205051284, -0.0311855972, -0.00644422462, 0.00296109123, 0.00195979746, -0.00999582279, 0.00461279834, 0.0205735937, -0.019563742, 0.0189989097, -0.0284812488, 0.0081986282, -0.00489521446, 0.0268381, -0.00214593532, 0.0144973658, -0.00982466154, -0.033359345, 0.010081403, -0.00954224542, 0.00775360875, 0.0156869367, 0.0100985197, -0.00665817643, -0.0155756827, -0.0485755913, 0.00158645178, 0.0194096975, -0.00492516765, -0.0143689951, 0.00937964208, 0.00129012868, -0.00891750585, -0.00107350259, 0.0101413094, -0.00289904536, -0.0151135465, 0.00876346, 0.0106547941, -0.0200429931, 0.00519902585, 0.00287765, 0.0146257374, 0.0168850664, -0.00673519913, -0.00214700517, -0.00777072506, -0.0130767273, 0.000966526743, 0.0273686983, -0.00924271252, 0.00420629, -0.0108430712, -0.00290760328, 0.0192556512, 0.0143090887, 0.029542448, -0.0198889486, 0.0087720193, 0.00922559667, 0.00168914848, -0.0103809359, 0.0103894938, 0.0226104129, 0.0221311618, -0.00949945487, -0.00737277512, -0.00664533908, -0.0155927986, 0.00481819175, 0.0128713334, -0.0124519877, -0.0137870461, -0.00892606378, 0.00152975449, 0.0116475299, -0.00310657849, 0.0158580989, 0.0196664389, -0.00319643808, 0.0060847858, 0.00432182383, -0.00424908055, -0.00138319761, -0.014283414, 0.00488237757, -0.0104237264, -0.00744551839, 0.0210870784, 0.00949945487, 0.00488237757, -0.0204880126, -0.000356496981, 0.0097219646, 0.00411001174, -0.00173193892, -9.58102391e-05, -0.00973052252, -0.00388108357, 0.000769691193, 0.0044801482, 0.00191379781, -0.0185025409, -0.00494656293, 0.0201628059, -0.0277452543, 0.0062687844, -0.0224050209, -0.0114335781, -0.00225077174, -0.00968773197, -0.00792049151, -0.00765091227, 0.000623134256, 0.00638003927, -0.00872067083, 0.0123150591, 0.0158923306, -0.0130424947, -0.0059179035, 0.0153959626, 0.00597353093, 0.019272767, -0.00109757215, 0.00618320378, -0.00455289194, 0.00556274364, -0.012811427, 0.00481819175, 0.0112025104, 0.00560981315, -0.00707324268, 0.00745407678, -0.012032643, -0.0112281842, 0.00771937659, -0.00271504675, 0.0139068598, -0.00357513269, -0.00131901214, 0.0192385353, -0.0174755733, 0.0203682, -0.0302442089, 0.0161833055, 0.00216733059, 0.00705612637, -0.0138983009, -0.00539586134, 0.000665924628, -0.000388589746, -0.0239968207, 0.00423838291, -0.0176296178, -0.000113060094, 0.000215690045, 0.0137185818, 0.00585371815, 0.00230212021, -0.0055670226, 0.00833983626, 0.0140523463, -0.00386182778, 0.00835695304, -0.000143213911, -0.014377553, 0.0191187225, 0.00014615574, 0.00314081064, 0.0116646457, -0.0096620582, -0.0259138271, 0.0127344038, -0.0265128929, -0.00246258383, -9.38713e-05, -0.00438600965, -0.0165170692, 0.000367729459, 0.00148482469, 0.00293755671, -0.0116646457, 0.00918280613, 0.00715882331, 0.00470265793, 0.0201970395, 0.0234662201, 0.0142063918, -0.0128371008, 0.0192214195, 0.0112709748, 0.00334192533, 0.00196942524, -0.0235004537, 0.00757816853, -0.0102867968, 0.0008584811, -0.00139496499, 0.010663352, -0.0156441461, 0.00168593926, 0.010860187, 0.00539586134, -0.00224221358, 0.0113822296, 0.0109372102, 0.0012259431, 0.0276596732, -0.0166026503, 0.0057809744, -0.0150450822, 0.00828848779, 0.00508777099, -0.0176809672, -0.00460851938, 0.00851527695, -0.00756961061, -0.0042661964, -0.00521614216, 0.0127515206, -0.0127600785, -0.0374843329, -0.00179077557, 0.0034039712, -0.0123920813, 0.000982038211, 0.00661966484, -0.000170893909, -0.0055969758, 0.00707752164, -0.0122380359, 0.0107746068, 0.00251179282, -0.0148396883, -0.0162346531, -0.0165427439, -0.020539362, 0.0142235076, 0.0209501479, 0.00378908427, -0.00197905302, 0.00494656293, -0.0108345132, 0.0215320978, 0.0182286836, 0.0130852852, 0.0482675, -0.0021330982, 0.00376127055, 0.000604948378, 0.00152440579, -0.0304324869, -0.00445875293, 0.0138555113, 0.00974763837, 0.0255715046, 0.0135388626, -0.00145380164, 0.00126980327, -0.014086579, 0.016927857, -0.0188448634, 0.00124519877, -0.00970484875, 0.00213202857, 0.00836978946, 0.0124862203, 0.00430256827, -0.00864792708, -0.00971340667, -0.00700905733, 0.00261448952, -0.000879341387, -0.00239411928, 0.014086579, 0.00326062366, -0.0108516291, 0.011835807, -0.0111768357, -0.0192556512, 0.0158580989, -0.0152675919, -0.0185538903, -0.00590934558, -0.00623455225, -0.0141464854, -0.0157040544, -0.00400945451, -0.0196493231, -0.00790337473, 0.0160549339, -0.00142919726, 0.0158324242, 0.0172958542, -0.0105093066, 0.00269365171, -0.00762523804, 0.00983321946, 0.0108773038, 1.47593228e-05, -0.0014527319, 0.013590211, -0.0209501479, -0.000367462024, -0.00290974299, -0.00368424808, -0.0155072175, 0.00466414681, 0.00171589246, 0.000547448872, 0.00737277512, -0.00455289194, 0.0189989097, 0.00420842972, -0.00159821904, 0.0197006706, 0.0119213881, 0.018297147, -0.00105050276, 0.0130510526, 0.00776216714, -0.00922559667, 0.0101669841, 0.000576064922, -0.015164895, -0.00671808282, 0.000319055456, 0.0137870461, -0.0110227903, 0.00517335162, -0.00416136, 0.00165277673, -0.0217374917, 0.001173525, -0.00442452077, 0.0015821727, -0.0112196263, -1.95899502e-05, -0.00787770096, 0.00758244749, -0.0169449728, 0.00354517926, -0.00485670334, -6.40517828e-05, -0.00607194891, -0.00486954, -0.0154387532, 0.00716738123, -0.00501930667, 0.0075995638, 0.00606339052, -0.0129654715, 0.0358754173, -0.010663352, 0.029730726, -0.0020881684, -0.00195551827, -0.00295039359, -0.0240481682, 0.00826281402, -0.00626022602, 0.00890039, -0.00901164487, -0.011741668, -0.00666245539, -0.0278308354, 0.00101306126, -0.000527390919, 0.0025289089, -0.0117245521, 0.0059179035, -0.0128542166, 0.0172530636, -0.0159779117, -0.0164571628, 0.0299703516, 0.000375485193, 0.00786486361, 0.00595213566, 0.0115277162, -0.00367569, 0.0225248337, 0.00939675793, 0.00661966484, -0.000665924628, 0.00816439651, 0.00796756055, -0.0071117538, 0.00742840255, 0.0112453, 0.012126781, 0.00857090484, -0.0154130794, -0.00668385066, -0.000746691367, -0.022695994, 0.0111768357, 0.00954224542, 0.0119984103, -0.00626022602, -0.011057023, 0.012717288, -0.00792904943, 0.0252120662, -0.0231923629, 0.0196322072, 0.01399244, -0.0328629799, -0.0118186912, 0.00768514443, -0.0115961814, -0.0213438198, 0.00198226236, -0.0205735937, -0.0110313492, -0.0201114584, 0.0136586754, 0.00995303225, 0.00721017178, -0.00878057722, -0.00606766948, -0.000864364789, 0.0136501174, -6.69936198e-05, 0.0193583481, -0.0130424947, -0.0190673731, -0.00276639522, -0.0284641311, 0.00729147345, 0.00485242438, 0.0115277162, 0.00545148877, -0.00799751375, 0.00122380361, 0.00280918553, 0.0188448634, -0.00244332827, -0.0077664461, 0.00731286872, 0.0237571951, -0.00123557099, 0.0328116305, 0.00582804391, 0.00508349203, 0.00800607167, -0.0054001403, -0.00349811, 0.000508402707, 0.0131965401, 0.0201456901, -0.0253661107, 0.00841258, -0.00743268151, 0.0045101014, 0.00619604066, -0.00333122769, -0.0107403742, -0.00206249417, 0.0235004537, 0.0052247, 0.00250109518, -0.0114079034, -0.0161234, 0.00120026898, -0.00361792301, -0.0120583167, -0.0274029318, -0.00563548738, 0.00548572093, -0.00518618897, -0.00771509763, 0.00833555777, 0.00811732654, 0.00529744383, 0.0100985197, -0.0058109276, -0.0119898524, 0.0156099144, -0.00689780246, -0.0115790647, 0.0105435392, -0.0137956049, -0.01643149, -0.00247328146, 0.00346601731, -0.00545576774, -0.0249895565, -0.0125632426, 0.0168508347, -0.0057809744, -0.0133163529, -0.0142748561, -0.00599064725, -0.00899452902, -0.0148824789, -0.0237914268, -0.0330683738, 0.0161062833, -0.00553279044, 0.0351223089, -0.0212924723, -0.0126060331, 0.00298890495, -0.00287978956, -0.00932829361, -0.00217481889, -0.0119556198, 0.00633724872, -0.00428117299, -0.0107746068, -0.0172872953, -0.0129740303, -0.0151221044, 0.0257084332, 0.0262048021, 0.0162432119, -0.0184169617, 0.0159864705, -0.00191272807, 0.00967917405, 0.00427903375, -0.0340953395, 0.0134789562, -0.00951657072, -0.00167310215, -0.00751398318, -0.032657586, 0.00304667186, 0.0172872953, 0.00182714732, -0.0106462361, -0.0149766179, -0.00416136, -0.0147027597, -0.0109029775, 0.00561409211, -0.00778784137, 0.00477112271, -0.000593181059, -0.0104750739, -0.0120155262, 0.0158580989, -0.00164207921, 0.0242364462, -0.0143433204, -0.00461279834, 0.0118529228, 0.0119556198, -0.00463419361, -0.00973908, 0.0165684186, 0.00880625099, 0.0045101014, -0.00378266582, -0.00405010534, -0.00266797747, -0.00702617317, -0.00809593126, -0.0627477467, 0.000638645783, 0.0255543888, 0.00947378, -0.0143518792, 0.018297147, -0.0023770032, -0.00272146543, 0.015164895, 0.0114763686, 0.0182286836, -0.0108516291, 0.0201628059, 0.00844681263, 0.0212411229, -0.0190673731, -0.0199916456, -0.0111939516, -0.00635008607, 0.00207961025, -0.00863936916, -0.0350538418, 0.0165170692, -0.0136073269, -0.014771224, 0.00532739703, 0.0169792064, -0.0164742786, -0.00116710644, 0.00269579119, -0.0136158848, 0.00669240858, -0.00257811788, -0.0153959626, -0.00370350364, 0.00326062366, -0.00432396354, -0.0247499309, 0.0162004214, -0.00287123164, -0.00546004716, -0.0185025409, -0.000175039226, -0.0381689817, 0.00843825471, 0.00357941166, -0.00669240858, 0.00608050684, -0.0190331414, 0.0106205614, -0.0137014659, 0.00720589282, 0.00600776309, 0.00143882504, 0.0175611544, 0.00637148088, 0.00551139517, -0.014574389, 0.0120497588, -0.00611901795, -3.76755524e-05, 0.0032563447, 0.00491233077, -0.0202312712, -0.0110655809, 0.0274371635, -0.0030423929, 0.00569967274, 0.0201628059, 0.0216176771, -0.00270862831, -0.00478395959, -0.00876346, -0.00477112271, -0.01780078, -0.00141636014, 0.0155671248, -0.00650413102, 0.0096363835, 0.0237571951, 0.0114250202, -0.00556274364, 0.0105178645, -0.0187592842, 0.0064356667, 0.0224563684, -0.00984177738, -0.0193925798, 0.0136586754, -0.0369366184, 0.00929406099, 0.00979898684, -0.00939675793, 0.0332908817, 0.000723691541, 0.0144888079, -0.00669240858, 0.00797611848, 0.00780923618, -0.00290332432, 1.19177776e-05, -0.000540495443, 0.012126781, 0.00144203438, 0.0221140459, -0.0153103825, 0.000495030719, 0.0100043807, 0.0122465938, 0.00876346, 0.0295595638, 0.00325206551, -0.00508777099, -0.0062687844, 0.0357727222, 0.0135474205, 0.00368638756, -0.0103552612, -0.0129569136, 0.0343178511, 0.00579809071, -0.0241166335, 0.0147455502, -0.00274500018, 0.0218401887, 0.000205794771, 0.000711924222, 0.00193519297, -0.00474116905, -0.0100642871, 0.00733854249, 0.0284812488, -0.000373345683, -0.0151905697, 0.00465558842, -0.0289605, -0.0106804678, -0.00130403554, 0.0142406244, -0.00281560421, 0.00163886987, 0.00956791919, 0.0232950598, -0.0112966485, -0.0192214195, -0.0123835234, -0.0191016067, 0.0246814657, 0.0183656123, -0.00755677326, 0.00734282192, 0.0061618085, 0.00750114582, 0.0183656123, -0.0112281842, -0.00796328206, 0.00111147901, -0.00122487335, 0.00906299334, -0.0114335781, 0.0043132659, 0.000795365369, 0.00943954848, -0.0174413417, 0.00032681119, -0.000997014809, -0.00744979735, -0.0161833055, 0.00398805924, -0.0107232584, 0.0279848799, 0.0166625567, 0.0141636012, 0.0103381453, 0.0313396417, 0.00639715511, -0.00299532362, 0.00113180443, -0.00212561, 0.0124348719, 0.00375485211, 0.00925127, 0.016328793, -0.00728291506, -0.00347243575, -0.0200943425, 0.00371206179, 0.00955936126, 0.00335476245, -0.0161833055, 0.0026508614, 0.0204195492, 0.000734389178, -0.0104494, -0.00857518334, 0.01448025, -0.0124691045, 0.0344205461, -0.000688924396, 0.000583553221, -0.000279741827, -0.00577669544, 0.00612329692, 0.00615325058, -0.000431647524, -0.00996159, 0.00502358563, 0.0203168523, 0.00856234599, -0.0109885586, -0.0168936253, 0.0236544982, -0.0256570857, -0.0110655809, -0.00775788818, -0.00855806749, 0.00839974266, 0.0110826967, -0.0134875141, 0.031202713, 0.00957647711, 0.00119492016, 0.00370992208, 0.00344890123, 0.0138811851, -0.00623883121, 0.0100471713, 0.0131708654, 0.00769370236, 0.000283218542, 0.00620031962, 0.0048609823, 0.0113308812, -0.00808737334, 0.0162688866, 0.00341466884, 0.00407150062, 0.00636720192, 0.0024069564, -0.00734710088, 0.000936573488, -0.00668385066, -0.00783919, -0.0174841322, 0.0116475299, 0.0237743109, 0.00302527682, -0.00208602892, -0.016816603, -0.0152847078, 0.00624311, -0.00830132514, -0.00662394427, 0.00973052252, 0.0232265946, -0.0041142907, -0.0186908189, 0.0251949504, -0.00301671866, 0.00119919924, 0.00232351525, -0.00291616144, 0.000863295048, -0.00339113409, -0.0230212, 0.00722728763, 0.0141208107, -0.00746691367, -0.00477540167, -0.0267182868, 0.00134147704, -0.0131965401, -0.0281389244, -0.00336759957, -0.010560655, -0.00250537414, -0.0015971493, -0.00501930667, 0.00643994566, -0.0242877956, -0.0094224317, -0.00338471564, -0.0122123621, -0.00251607178, 0.0109372102, -0.00703901052, -0.0215663295, -0.0131965401, 0.00300388155, -0.0222338587, -0.00765947, -0.00139175565, 0.00366927125, 0.0056440453, -0.00665817643, -0.000238689841, 0.0227815751, 0.00378908427, -0.00897741225, 0.007141707, -0.00967917405, 0.00434535882, -0.010954326, -0.00247114198, 0.0260336399, -0.0336674377, -0.00299318414, -0.0197177865, -0.00415280228, -0.0335305072, -0.0145915048, 0.0155414501, 0.00824569818, 0.00476256432, 0.0226788782, 0.0141550433, -0.0214807484, 0.00459568202, 0.00688068615, -0.0112367421, -0.0211213101, 0.0121610137, -0.0123065012, -0.00848960318, -0.00535735, 0.0127258459, 0.0150279664, -0.0162260961, -0.000200312264, 0.00623883121, -0.00404154742, -0.00565688265, 0.00721017178, 0.000292044046, -0.0166112091, 0.0089602964, -0.0109372102, -0.00507065468, 0.0112196263, 0.00240481691, 0.0183998439, 0.0117930165, -0.00902020279, -0.00251607178, 0.0198204834, -0.0231410135, 0.00620031962, -0.00545148877, 0.00519046793, 0.00653836364, -0.000731714768, -0.00140138355, 0.0162945595, 0.0100214966, -0.00651696837, 0.00502358563, 0.00350880763, 0.0186565872, -0.00645278255, 0.029730726, 0.0106462361, -0.0231410135, -0.0131965401, -0.0312369447, 0.00505781779, 0.000335101824, 0.00732570561, 0.00229570153, 0.00277067418, -0.0196835548, -0.00151263841, 0.0142235076, 0.0104836328, 0.0784603581, -0.0105863288, 0.0219600014, -0.0271804221, 0.025434576, 0.00694915047, -0.0163544659, 0.0597353093, -0.013110959, 0.0119556198, -0.0142235076, 0.0187421665, 0.000617785496, 0.00254816446, -0.00156398676, -0.00605911156, -0.00961071, 0.0107318163, 0.00861797389, -0.00354731898, 0.00574674224, -0.00779212033, 0.0112281842, 0.00937964208, 0.0109115355, 0.0143689951, -0.0224050209, -0.00805742, -0.00723156705, 0.00519046793, -0.00430898694, 0.0395725034, 0.0137185818, -0.0144374594, -0.0128627755, 0.00872067083, 0.0272146538, 0.0207276382, 0.0118957134, -0.0117074363, -0.00198333198, 0.00558413891, 0.00253960653, -0.0140951369, 0.0276083257, 0.0112966485, -0.000287497562, -0.0221482776, 0.00114464154, -0.00508349203, 0.00404368667, -0.00318360096, 0.0156441461, -0.0153446151, -0.00337187853, 0.00916569, -0.0124519877, -0.00672664074, 0.0267011691, -0.00185924012, -0.00678654714, 0.0016944973, 0.00515623577, 0.00572962593, -0.0115961814, -0.00744551839, -0.0244076084, 0.012126781, 0.012126781, 0.00637576031, 0.0134532815, -0.0181431025, 0.00897741225, -0.0155671248, 0.00128477986, 0.0061917617, 0.0231923629, 0.0202312712, -0.00943099055, -0.00395810604, -0.0129312398, 0.0189475603, -0.0167738125, 0.00412712805, -0.00294825411, -0.00783491, -0.0113822296, -0.014574389, -0.00759100588, -0.00477540167, 0.011048465, 0.0290289652, 0.0148739209, 0.00718449755, 0.00866932236, -0.0100043807, 0.00664106, 0.0229185037, 0.00170519494, -0.001093828, -0.00676943129, -0.00377410767, -0.00365215517, -0.0168850664, 0.0023620266, 0.0417291373, -0.0102782389, 0.00721445074, 0.0158837736, -0.00527176959, 0.00154045213, 0.00456572883, -0.00206142454, 0.0279335324, 0.00241979351, 0.00148375495, 0.00759100588, 0.00191914663, -0.00800607167, -0.0116475299, 0.0207447559, 0.0142406244, -0.0174413417, -0.0084682079, -0.00335690193, -0.0145487143, 0.026803866, 0.0191700701, 0.0199060645, 0.0153788468, 0.0059478567, 0.00539586134, 0.0177836642, -0.000729575229, 0.00546860509, 0.0319215916, -0.0315621532, -0.0119470619, -0.0129997041, 0.00455717091, 0.0289947316, 0.00896885432, 0.00266155903, 0.0178521276, -0.00774933, 0.0116988784, -0.000242166556, 0.00533167599, 0.00940531585, -0.0235175695, -0.00565260323, 0.0142662982, 0.0250409041, -0.0102354484, 0.0278992988, -0.014771224, 0.0161490738, -0.016628325, 0.0383743756, 0.00528032752, -0.00211919146, -0.0119641777, 0.0229698531, -0.00627306337, 0.0250237882, -0.0240481682, 0.0163801406, 0.0274029318, 0.00450582244, 0.0180232897, 0.000778249232, 0.014471692, -0.0181944519, 0.0135388626, 0.00399447791, -0.00527604856, -0.00582804391, 0.00949089695, -0.00994447432, -0.00913145766, 0.0103723779, 0.0206078254, 0.00362220197, 0.0513826348, -0.00577241648, -0.0170476697, -0.0162517689, 0.000727970619, 0.027779486, 0.0172273889, -0.0116218552, -0.0147541082, -0.0207447559, -0.00812160596, -0.00425335951, -0.00291402196, 0.000601204229, 0.0119641777, -0.0171332508, -0.00857518334, -0.0180061739, 0.010072845, 0.00257597817, 0.0082542561, -0.00221226038, 0.0357727222, 0.0019587276, 0.0137185818, -0.0183656123, 0.0142320655, -0.0116304131]
13 Oct, 2023
Code for Fork System Call in OS 13 Oct, 2023 Fork is a system call in the Operating System used to create a copy of the process, the copied process created is known as the child process. The main process or the process from which the child process is created is known as the parent process. The parent and child processes are in separate address spaces in fork(). A Child process will have its Process ID different from the parent's ID. Primary Terminologies related to Fork System Call in OSProcess: The task or job performed by the computer. Example: running a program. System call: A system call is a way to shift between user mode and kernel node to access the Functionalities of Operating Systems.Child process: The child process is the new process that is created by the parent process. It is essentially a copy of the parent process, and A system inherits many of its attributes, such as code, data, and open files.Parent process: The parent process is the original process that initiates the creation of a new process. It serves as the starting point for the new processProcess ID (PID): Process ID is a special identification that OS assigns to every process. It returns an integer value.We use fork() one time in a parent (P) then a child process is created (C1) and there is also a parent process (P) present. Similarly, if we write fork again, here C1 becomes the parent and creates a new child process C2 and there is a parent process (C1) available. P also creates a child process (C3) and P is also present (P). Example 1: Fork system call in OS Example 2: Fork system call in OS By observing, we can conclude:Total no. of child process generated will be: 2^n - 1.Total no of processes executed: 2^n. Here n is the number of times forks called. Remember that child processes return 0, while parent processes return a positive value (probably +1) at the fork call. Examples of Fork System call in OS1. Simple Fork: C #include <stdio.h> #include <unistd.h> int main() { pid_t child_pid; // Create a child process child_pid = fork(); if (child_pid == 0) { printf("Child process\n"); } else if (child_pid > 0) { printf("Parent process\n"); } else { perror("Fork failed"); } return 0; } Output: Fork example in linux OS2. Parent and Child Processes Printing with PIDs: C #include <stdio.h> #include <unistd.h> int main() { pid_t child_pid; // Create a child process child_pid = fork(); if (child_pid == 0) { printf("Child process: PID=%d\n", getpid()); } else if (child_pid > 0) { printf("Parent process: PID=%d, Child PID=%d\n", getpid(), child_pid); } else { perror("Fork failed"); } return 0; } Output: Fork example in linux OS3. Forking Multiple Child Processes: C #include <stdio.h> #include <unistd.h> int main() { int i; for (i = 0; i < 3; i++) { pid_t child_pid = fork(); if (child_pid == 0) { printf("Child process %d: PID=%d\n", i + 1, getpid()); break; // Each child process should exit the loop } else if (child_pid < 0) { perror("Fork failed"); } } if (getpid() != 1) { // This code is executed only by the parent process printf("Parent process: PID=%d\n", getpid()); } return 0; } Output: Fork example in linux OSConclusionfork() system call is the fundamental tool that allows processes to duplicate themselves. It makes a copy of process in a separate memory space, it provides both child and parents a different process ID (PIDs) for identification. The uses of fork are multitasking, parallel processing and complex process structure. Frequently Asked Questions (FAQ's)Question 1. How does 'fork()' work?Answer: When a process calls fork, it creates duplicate of the process. Both processes continue executing from the same point but have their separate memory and resource. Question 2. What's the difference between parent and child processes created by 'fork()' ?Answer: They have different Process IDs (PIDs), and changes made in one process don't affect the other process. Question 3. What are some common uses of 'fork()'?Answer: Common uses of fork() are : Creating parallel processing, implementing multitasking and building complex process hierarchies. Question 4. Can child processes also call 'fork()'?Answer: Yes, child processes can call fork() which will create additional child processes. Question 5. What are the values returned by 'fork()' and what they indicate? Answer: Fork can return 3 values 0, positive (maybe +1) or -1. In case of child process it will return 0 and for parent, it will return positive value. Otherwise if fork returns -1, it indicates failure typically due to resource limitations. Question 6. The child process can run independently from the parent? Answer: Yes, the child process can run independently from the parent intentionally or unintentionally. Those processes that are runs even after their parent process has terminated or finished are known as Orphan processes. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS
https://www.geeksforgeeks.org/code-for-fork-system-call-in-os?ref=asr10
PHP
Code for Fork System Call in OS
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0266800076, 0.00648607966, -0.0157347489, 0.0291423146, 0.0216502938, 0.0044291513, -0.00552142505, 0.0166806355, -0.0116208922, 0.04984672, 0.0234519821, -0.0273105986, 0.034562394, -0.0120037515, 0.0239324328, 0.0358836353, -0.0156897064, 0.0299080331, -0.0103897387, -0.0371448174, 0.0318598635, 0.0058517349, -0.0354332104, -0.00748826889, -0.00276634283, 0.0104873301, 0.0283465702, 0.00157835439, -0.0216803215, -0.0221157297, 0.0223109126, 0.0180319, -0.0101795411, -0.0302983988, 0.0244579241, -0.0110954, -0.0560024902, -0.0210197028, -0.00208320259, -0.000720206299, -0.00818267, 0.0265298672, -0.0098417243, -0.0049020946, -0.032460425, 1.65242782e-05, -0.00102846394, -0.0433606431, -0.0385861658, -0.0248783194, 0.00703409314, 0.0215001516, 0.0472042449, 0.0511679612, 0.0635996088, 0.0190378446, 0.0137679046, -0.0156897064, -0.00900844391, -0.0339918621, 0.0151116643, -0.00475570746, 0.0134751303, -0.0477147214, 0.0214701239, 0.00447794702, -0.0439311787, 0.0521288589, -0.00872317608, -0.0216953345, 0.0047819824, 0.00882827491, 0.00721050845, 0.017371282, -0.0142333414, 0.00244541699, 0.0423997417, 0.023827333, -0.00130153238, 0.00580293918, -0.00234970241, 0.0266649928, -0.0185724087, -0.0424898267, 0.0213349983, 0.00374788791, 0.00550641119, -0.0591854751, 0.0375952385, 0.0118836388, 0.0035076628, -0.00702658622, 0.0450722463, 0.0112455403, 0.012499216, 0.0128370319, -0.00450797519, -0.0114632444, -0.0160950851, 0.0172361564, 0.0131298071, 0.0128295254, -0.0131448209, -0.0157047193, 0.00498467218, 0.0392167568, -0.0156146353, 0.0171911139, 0.0379255489, 0.058644969, -0.0352830701, 0.00891835894, -0.0135652144, 0.0159449447, 0.0166956484, -0.014045665, 0.0520087481, -0.0293074697, -0.0363040268, -0.0219205469, 0.0186324641, 0.0562126897, -0.0359436907, 0.00561901694, -0.0620982051, 0.0140756937, -0.000464967074, -0.00454551075, -0.0158548616, -0.00498091849, 0.0140606789, -0.0438410938, -0.0233769119, 0.0183922388, 0.00734563498, -0.00350390933, 0.0256740637, 0.0638398379, -0.0018927115, 0.0163353104, -0.0157647766, 0.0122965258, -0.0200588014, -0.00967657, 0.0409884192, 0.0219655894, -0.0072330297, 0.020193927, 0.00546512241, 0.0685842857, -0.0449821614, 0.00238348404, -0.0141132288, 0.0130697507, -0.00614075596, -0.0408082493, 0.0118010612, 0.0596959516, 0.0209446307, -0.0185573939, -0.00394494785, -0.0288420338, 0.00418892642, -0.0343221687, 0.00447044, -0.0036352824, -0.016005002, -0.0290372167, -0.0146011859, 0.0313794129, -0.0355833508, 0.0403578281, 0.0442314595, -0.0068839523, -0.026004374, -0.00600187574, -0.012319047, 0.042009376, -0.0295777228, 1.55052555e-06, -0.0498767495, -0.0136327781, -0.0478048064, -0.0165755358, 0.0316196382, 0.0113356253, 0.0245780367, -0.00487957383, -0.0219655894, -0.0386762507, -0.00900844391, -0.0104948366, 0.0265899226, 0.034652479, 0.0254188254, -0.0138579896, -0.0422496, 0.0304185115, 0.0118461037, 0.0128745669, -0.0375351831, -0.0194432251, -0.015824832, 0.0384660549, -0.00674131885, -0.00190866401, -0.0237072203, -0.0358536057, 0.0271154158, -0.00966155622, -0.0144435382, 0.00939130224, -0.00996183697, 0.0110578649, 0.0100819496, 0.0038698772, 0.0155695938, 0.0552818142, -0.0111104138, -0.0184823237, 0.0146837635, 0.0130247083, 0.0243227985, -0.0204491671, -0.0564228855, -0.0252386555, 0.0298479758, -0.0141732851, -0.0186024364, -0.0263046548, 0.009368781, 0.03837597, -0.0364841968, -0.0158548616, -0.0634194463, -0.0166656207, 0.0050297142, 0.0163503252, 0.00579918548, 0.036364086, 0.00365968025, 0.0173262395, -0.0211698432, -0.00645605149, 0.0194732528, 0.0234369673, -0.000799968548, 0.0336915776, -0.0118235825, 0.0122064408, 0.0190678723, 0.00394119415, 0.00316421594, 0.00467313034, -0.0205242373, -0.00114482304, -0.00718423398, 0.0338717476, 0.0423697121, 0.0175064094, 0.0108251469, -0.0162001848, -0.0389765315, 0.0202389695, -0.0139856087, -0.0339017771, 0.0286918934, -0.023917418, 0.0170559864, -0.0247431919, 0.0483152866, -0.0103522036, -0.0152167631, -0.0300281458, 0.0218304619, -0.029007189, 0.00126493559, 0.0302983988, 0.000648420246, 0.055101648, 0.00450046826, 0.00576915732, -0.0174763799, 0.0116584273, 0.0183171686, -0.00603565713, -0.0109978085, -0.0163503252, -0.0199687164, 0.00715795904, -0.0147963688, 0.0190078169, 0.000783077732, 0.0234219544, 0.0248332769, 0.00909102149, -0.00141507632, -0.00858054217, -0.0343221687, -0.000310838223, 0.000808883167, -0.0532999597, 0.00784485321, -0.00934626069, 0.00524366507, -0.000408664288, -0.0129646519, 0.0179868583, 0.0365742818, -0.00525492569, 0.026094459, -0.0711066499, -0.0490659885, -0.0444416553, 0.0139255524, 0.000724898186, 0.000112077709, -0.00990928803, -0.0351929851, -0.0308389049, 0.00945135858, -0.00376665546, -0.0210347157, 0.0402076878, 0.0446818806, 0.000720675511, -0.0153669035, 0.0443515703, -0.052188918, -0.0176565498, 0.00575039, -0.0207644626, 0.0231216718, -0.00820519, -0.0311692152, -0.0106900195, 0.0184072535, 0.0438711196, 0.0256140083, 0.0160950851, -0.0110428501, 0.0176115073, -0.0139180459, -0.0469940491, 0.00671504391, 0.0133475102, -0.0105774142, 0.0278060623, -0.00933124591, 0.0526093096, 0.00136440387, 0.0385561399, 0.0118085686, -0.0167707186, -0.00251298049, 0.0067938678, -0.0279261749, -0.0183321834, 0.0271154158, 0.010592428, 0.020914603, -0.00718798721, -0.009368781, 0.0360037461, -0.0351629592, -0.0258392189, 0.00413262332, -0.00998435821, -0.00539380545, -0.0253287405, -0.00846793689, 0.011725991, 0.0349827893, 0.00483077811, -0.00642226962, 0.00728933234, -0.0305536389, -0.000659680809, -0.0138279609, 0.00967657, 0.0401776582, -0.00569408713, 0.00415889826, 0.00353581412, -0.00562277, -0.0229114741, -0.0180319, 0.0118235825, -0.00931623206, -0.00103409425, -0.0208095051, 0.016005002, -0.00774726132, 0.0139705949, -0.00398248294, 0.0131223, -0.0205842946, -0.0460631736, -0.0108776959, -0.0133700315, 0.0213500112, 0.0231667142, 0.00511604548, 0.0308989622, -0.0379555747, 0.012551765, -0.0144360308, -0.0174313392, -0.0218604896, 0.0327607058, -0.00897090882, -0.0223559551, 0.00327119115, 0.054290887, -0.00289208582, 0.0349827893, -0.027010316, 0.0678636059, 0.0104798228, 0.0232868269, -0.00885079615, 0.00503722159, 0.000964654202, 0.0362139419, 0.027550824, 0.0263346843, 0.0169508886, -0.00716546644, -0.0205242373, -0.021274941, -0.0342921428, -0.0104272738, 0.0071016564, 0.0410785042, -0.00550641119, -0.0529696494, 0.00439161621, -0.00250171986, -0.0256590508, -0.0237973053, -0.00297466316, 0.0587951094, 0.0154795088, -0.0159449447, -0.0750103071, -0.0211248, -0.0373249836, -0.0337516367, 0.00561901694, -0.0227012783, -0.0321000889, 0.0189477596, 0.0114857657, 0.042099461, 0.0343221687, 0.0155695938, 0.0358536057, -0.0229264889, 0.0210497305, 0.00818267, 0.0149465092, 0.00184016232, 0.0219355598, 0.019638408, 0.0510178208, -0.0112905828, -0.0118160751, -0.0086781336, -0.0207944904, -0.00252799457, 0.0297278631, 0.000198819165, 0.024548009, 0.0272955839, 0.0186775066, -0.0316796936, 0.013054736, 0.00195933646, 0.0132198911, -0.0638999, 0.0128070042, 0.0342320874, -0.020284012, -0.0292023718, -0.0165455081, 0.00663622, -0.017641535, 0.0121764131, 0.0147137912, 0.00768720545, 0.0068839523, 0.00428651785, -0.0121313706, -0.00950390846, -0.0137904258, -0.0195933655, -0.0513481274, 0.0127994968, 0.00438786298, -0.000387316162, -0.0217403769, -0.034562394, -0.0136928344, 0.0156296492, -0.0068839523, 0.024998432, -0.012319047, -0.00500343973, -0.00429027108, -0.0439011492, 0.010592428, 0.0175514519, 0.00729683926, 0.00478948932, -0.017371282, 0.0121689057, -0.0170259587, 0.00423772214, 0.0138805099, 0.00669627637, 0.0191729702, 0.00563403079, 0.0319799744, -0.000153542351, 0.00666249497, -0.0088958377, -0.00561150955, -0.00789740216, -0.0356734358, -0.0229264889, 0.0277610198, 0.0330609865, -0.00611448102, 0.025553951, 0.0272955839, -0.0239474457, -0.00107444462, 0.0154344672, -0.0150215793, 0.00921113323, -0.0244429111, 0.0130397221, -0.0387963653, -0.017010944, -0.0251185428, 0.0284366533, 0.0223859828, 0.00292962091, 0.0013550201, -0.00497716526, 0.00696277618, 0.0195933655, -0.00299530756, 0.0067563327, -0.00936127454, 0.00925617572, -0.0141132288, -0.0129946796, -0.0101870485, -0.0183321834, 0.0198185761, 0.0209296178, 0.00855051447, 0.0116809485, -0.00969909132, 0.0077022193, -0.0112155126, -0.036364086, -0.000304269575, 0.0180319, 0.0139105385, -0.0116809485, 0.00307413144, -0.0107876109, 0.030373469, 0.0458529778, 0.0156596787, -0.0293224845, -0.00189458835, -0.0172511693, -0.014045665, -0.0178517327, -0.00846043, 0.0163503252, 0.0222808849, -0.0289771613, -0.00346825086, 0.00976665411, -0.0294425972, -0.00747325458, -0.00463559479, 0.0199386887, -0.0308689345, 0.0237822905, 0.0110878926, -0.0150816357, -0.0154194525, 0.031739749, -0.00689521292, 0.00873819, -0.0120037515, 0.0167557057, 0.0131147923, -0.0293825399, 0.0313193575, -0.00277009653, 0.00624585431, -0.0309590176, -0.00498467218, 0.0353131, 0.012641849, 0.0173262395, 0.000608069939, 0.0266649928, -0.00150985271, -0.0175664648, 0.014188299, 0.0124241449, -0.0219655894, -0.0140531724, 0.0150966505, 0.0240675583, 0.0173262395, 0.053390041, -0.000257350592, 0.00196496677, -0.00926368311, -0.0169809163, -0.00843040179, -0.00907600671, -0.00620831922, 0.00630215695, 0.00873819, -0.0376853235, -0.00444416562, 0.027010316, 0.00605817838, -0.0228514187, -0.0276409071, 0.0218604896, 0.0146987773, -0.0017960585, -0.0178367179, 0.0978316963, -0.0147588337, 0.0327006504, 0.0213800389, -0.00394870108, 0.00127619621, -0.0342621133, -0.00573912915, -0.0212449133, -0.0312292706, 0.0133775389, -0.0133174825, -0.0192630552, 0.0373550132, -0.0126718776, -0.0213800389, 0.000723021454, 0.0220406596, -0.0214400962, 0.0436909534, 0.0522189438, -0.000972161186, -0.0150666218, 0.00338379666, 0.0186775066, -0.0420394056, 0.000712699257, -0.023917418, -0.027190486, 0.0320100039, 0.0216202643, -0.0247582067, 0.000186737525, -0.0103822313, 0.0406881385, 0.0273256116, -0.0113131041, -0.00213012146, 0.00405379944, 0.0182871409, -0.00227838545, 0.00504097482, 0.000263919239, -0.0127469478, -0.00284329, -0.0168157611, -0.0439311787, -0.0192480404, -0.0138730034, -0.015914917, 0.0243378114, 0.00199311809, -0.00894088, -0.0366943926, 0.0203590821, 0.0189027172, -0.00802502222, 0.0301933, 0.001063184, -0.0442915149, 0.0022596179, -0.0280462876, 0.0111179212, -0.00918861292, -0.00370284566, -0.0164404102, -0.0254338384, 0.00520988321, 0.00451923581, -0.00927869696, 0.00404253928, -0.019908661, 0.0148263965, 0.018137, 0.000459102186, -0.0189327449, -0.00357710291, -8.11111822e-05, -0.000754457142, -0.0251936149, -0.00661745248, -0.0148939602, 0.0447119102, -0.00612949533, -0.0023703468, -0.0127244266, 0.00380043709, 0.0390666164, -0.00783734582, -0.0109827947, -0.00711291702, -0.0197735336, -0.0207194202, 0.0205242373, -0.00749952951, 0.00983421784, 0.0272955839, 0.014045665, 0.00339318044, -0.00873068348, 0.00247919885, -0.0144660594, -0.014548636, 0.0113281179, 0.00834782422, -0.0197735336, -0.00236471649, 0.00437284866, 0.0301182307, 0.0221607722, -0.0343221687, 0.031649664, -0.000514701183, -0.0055477, -0.0175514519, 0.0414688699, 0.0177166052, 0.015824832, 0.035373155, -0.019203, -0.00293900468, 0.0412286445, -0.0201639, -0.0614075586, -0.0107425693, 0.0211398136, -0.00787488092, 0.0479849763, 0.0191129148, 0.0295176674, -0.0200888291, 0.0143534532, -0.00205317442, -0.00794244464, -0.01618517, 0.0199537035, -0.0279562026, 0.000995620736, 0.0341119729, -0.00558523508, -0.00182420982, 0.0225211084, -0.00152955868, 0.0309890453, -0.00280763162, 0.00445167255, 0.0236922074, -0.0136477919, 0.00359587045, 0.00202877657, 0.0176715627, 0.0157797914, -0.0130622433, -0.00990178064, -0.0259593315, -0.0214100685, -0.0498767495, 0.0192180127, -0.000394119415, -0.00909102149, 0.00720675476, 0.0259593315, -0.0357935503, -0.0202539843, -0.0206893925, -0.0270703733, 0.0192480404, 0.00861807819, 0.0163953677, 0.00996934436, 0.0324303955, 0.013865496, -0.00492461585, -0.000593525067, 0.0156296492, -0.016275255, -0.00253925496, -0.00623834739, 0.0051235524, 0.0264998376, -0.0101870485, -0.0114782583, 0.0374150686, 0.0291573294, 0.0124541735, 0.0193381254, 0.0188726895, 0.0168007482, 0.00548389, 0.0133475102, -0.0108852023, -0.0139630875, 0.00944385212, 0.0407782234, -0.00793493725, -0.0183321834, 0.0481951721, -0.0405980535, -0.0211097859, 0.0339918621, -0.0043428205, 0.00516859442, -0.0147363124, -0.029652793, 0.00548764365, 0.0196083784, -0.0106299631, 0.0322202, -0.00589677691, 0.0125592714, 0.0220706873, -0.00748826889, 0.0293525122, 0.0116734412, -0.0196233932, 0.0373249836, -0.0159899872, 0.0330609865, 0.0073606493, -0.022100715, 0.0136177642, 0.00885830261, 0.0172962118, -0.0117034698, 0.00469940482, -0.00290334621, -0.0232868269, -0.00501845405, -0.0308689345, 0.0389465056, 0.00418892642, -0.00909852795, -0.00972911902, 0.006887706, 0.00734563498, -0.0156446639, 0.0211548284, 0.0152092557, 0.0223109126, -0.0249834172, -0.00984923169, 0.0123415682, -0.00820519, 0.00113356253, -0.0149615239, 0.0169809163, -0.0298629906, 0.00529621402, 0.0168908313, -0.00986424554, -0.0258392189, 0.0199987441, 0.0129045956, -0.0184222665, -0.010735062, -0.0251335576, -0.00876821857, -0.00838535931, -0.00167688425, -0.00248858263, -0.0131373135, 0.00901595, -0.0460331477, 0.0287369359, 0.000466843834, -0.023917418, 0.0135201728, 0.0055477, 0.0276258942, -0.0146237072, -0.00391116599, 0.018737562, 0.0372949578, -0.039186731, -0.00630966388, 0.023181729, 0.010322175, -0.00779981073, -0.00568282651, -0.0215151664, 0.0040875813, 0.0243378114, -0.00909102149, -0.0178066902, 0.0312893279, 0.00695526926, 0.00475570746, 0.012409131, -0.0067225513, 0.0178517327, 0.01481889, -0.0345924236, -0.0155245513, -0.0451923572, 0.00951141492, -0.0595758408, -0.00433156, -0.00616703043, 0.0535702109, 0.0422496, 0.0197585206, 0.0215752218, 0.0188576747, -0.000420394033, 0.0108326534, -0.00411760947, 0.0136402855, -0.0119361877, -0.0241726562, 0.00582170673, -0.0478948914, 0.00642226962, -0.00663997373, -0.0106975269, -0.0364841968, 0.0182721261, 0.0142108202, 0.00184766937, -0.00598310819, 0.0152693121, -0.00309102214, 0.0394870117, 0.0230315868, -0.00791241601, -0.0354332104, 0.00923365448, 0.00611072779, -0.010412259, -0.0380156338, 0.0228514187, 0.026364712, 0.0117710326, -0.034652479, -0.0255089104, -0.00998435821, -0.0323102847, 0.0065423823, 0.0020625582, -5.53350692e-05, 0.00356021198, 0.00728933234, -0.00158773817, 0.000785423676, 0.0158848893, -0.0277760345, -0.00986424554, 0.0211248, 0.00680512842, 0.00393744046, 0.011418202, -0.0334513523, -0.0158548616, 0.015914917, 0.013415074, 0.0180619303, -0.0433606431, -0.0128595531, -0.0347725935, -0.0421595164, -0.0195333082, -0.00986424554, 0.0517084673, 0.00161307445, 0.00883578137, 0.0224910807, 0.0163052827, -0.0211698432, -0.0405079685, -0.0391567, -0.00418141903, -0.000776978268, 0.0313794129, -0.0020250231, -0.0053787916, -0.0136477919, 0.0141507639, 0.00705661438, -0.0185123514, -0.00418892642, -0.007229276, -0.00446668686, 0.0102471048, 0.0159749743, -0.000541914196, 0.00158773817, 0.0130997784, 0.0447719656, 0.0091510769, -0.00831028912, -0.000238700304, 0.0137453834, -0.00364841963, -0.00253362488, -0.00827275403, -0.0620381497, 0.0458229482, 0.0156446639, 0.0242927689, -0.00209070952, -0.00724429032, 0.00790491, -0.0218454767, 0.00806255732, -0.0130096944, 0.0116809485, 0.00158304628, -0.0124766948, 0.00524366507, 0.0198335908, -0.000570065575, 0.0200588014, 0.00486080628, 0.00903847162, -0.01469127, -0.00462808786, 0.0101269921, -0.00125273666, -0.00338942697, -0.0199987441, 0.0215602089, -0.00815264136, -0.00882076751, 0.0167256761, 0.000918673584, 0.0106599918, 0.00623084, 0.000810290745, -0.0042152009, 0.00743196579, 0.00670753699, -0.0243227985, 0.01481889, -0.014225834, -0.0272655562, -0.00546136918, 0.0119286804, -0.00517610181, 0.0191729702, 0.0104948366, 0.0222358424, 0.0292624272, -0.0269502606, -0.015824832, 0.00454926398, -0.0360037461, -0.0115233008, -0.016275255, -0.000931341725, 0.00677134702, 0.0183021538, 0.0107500758, 0.000449249201, 0.0134751303, 0.0220406596, 0.0965104625, 0.00167876098, -0.013542694, -0.0330609865, 0.0144660594, -0.00484579196, 0.00679011457, 0.0079199234, 0.010735062, 0.00969158392, 0.0527594499, -0.00881326105, -0.0116509208, 0.0175364371, 0.0320100039, -0.0170860142, 0.00511229178, 0.0137603981, -0.000290193886, 0.00495839771, -0.0379856043, 0.00406506, -0.0033969339, 0.0125667788, 0.00260118814, 0.0227913633, -0.0133324964, -0.0123791033, -0.0133550176, 0.00295777223, 0.0175964925, -0.0144960871, -0.0126568638, -0.0116884559, -0.0142183267, 0.0131373135, 0.0242026858, -0.00104441645, -0.0211998709, 0.0336014964, 0.0187976193, 0.00608820654, -0.0123715959, -0.0124766948, -0.0117635261, 0.0144210169, 0.00997685175, -0.0079574585, -0.00816014875, -0.0236471649, 0.00810009241, -0.0167406909, 0.00229715323, -0.00369909219, -0.0145261157, 0.0148639316, 0.00772474054, -0.0105624, 0.00278511061, 0.0163353104, -0.0270553585, 0.0117109772, -0.000407022133, 0.000178057526, 0.00199124147, 0.0168157611, -0.0171010289, -0.0011954956, -0.0206293352, 0.00181107258, 0.00488332706, 0.0109077236, 0.00189458835, 0.0240225159, -0.0138354683, -0.000156709386, 0.00749952951, -0.00307225459, 0.00500343973, -0.0362139419, 0.00870816223, -0.0108326534, 0.0219355598, 0.0159599595, 0.0116133848, 0.00107632135, -0.00143478229, -0.0115758497, 0.021094773, -0.0269953031, -0.0126268351, -0.0180168878, -0.0145786647, 0.0119286804, 0.00869314838, -0.00727431802, 0.0293525122, -0.00983421784, -0.0083928667, -0.0369646475, 0.00560775632, 0.00654613553, -0.000578041829, -0.00488708075, 0.00913606305, -0.0138880173, 0.0253437553, 0.0161101, -0.0223109126, 0.0125742862, 0.0436909534, -0.00461307401, -0.00549139734, -0.0295476951, 0.0137528908, 0.00513856625, 0.0187976193, 0.0143759744, -0.00398999, -0.0111404425, -0.00500343973, -0.00381357456, 0.000900375191, -0.010232091, -0.00624960801, -0.0233018417, 0.00806255732, 0.0214100685, 0.0399674624, 0.0183021538, 0.00183453201, 0.017821705, -0.00229152292, -0.0176265221, -0.000342039333, 0.00285267388, 0.0197735336, 0.0350428447, -0.00676383963, -0.00546512241, 0.00379293016, 0.0365142263, -0.0201488864, -0.00331435655, -0.00763465604, 0.0140531724, -0.0218905173, -0.0181069709, 0.0049058483, 0.000309665251, 0.00691398047, -0.00489458768, 0.0102020623, 0.0170710012, 0.0136703132, -0.0179268029, 0.00130340923, -0.0108852023, 0.000629652699, 0.00843790919, 0.0212899558, 0.0266950205, -0.00706412131, -0.00552517874, -0.00564904464, -0.00498091849, 0.00505974237, -0.0079499511, -0.0405079685, -0.00438786298, -0.00160932087, 0.0265749097, 0.0114106955, -0.0263046548, 0.0271754712, -0.00892586634, 0.0353131, -0.0151567068, 0.0283315554, -0.0117710326, -0.0214701239, -0.0183471963, -0.00545386178, -0.00752955768, 0.017641535, 0.020193927, -0.00712042395, -0.00611448102, 0.00549890427, 0.0239024032, -0.00128558, -0.00310415961, -0.00385486311, -0.00411760947, 0.0468138792, 0.0288420338, -0.0111704702, 0.001978104, -0.0119136665, 0.0330009311, -0.022461053, -0.0287669636, -0.00725930417, -0.0127244266, -0.0013662806, -0.0190078169, -0.0081751626, 0.00198936462, -0.0257040933, -0.000666718697, 0.022731306, 0.0273105986, 0.0175514519, -0.0115533294, -0.0104798228, -0.0198035613, 0.000324913912, -0.0107050342, 0.0210197028, 0.0138880173, -0.000290663069, -0.0182871409, -0.00705661438, -0.0101870485, -0.0100444146, -0.000890991359, 0.0109077236, 0.0123340609, 0.016005002, 0.0152242696, -0.0204041246, 0.0345323682, 0.045642782, -0.0103371888, 0.0101194847, -0.0308088772, -0.00141601474, -0.029367527, -0.0349527597, 0.0184973385, -0.0052474183, 0.0141432565, -0.0105849216, 0.00308163837, -0.0312893279, -8.15217209e-05, 0.0320100039, 0.00287331827, -0.00388864474, 0.0098417243, -0.00730059296, 0.00209446321, 0.0103672175, -0.0154795088, 0.00544260116, -0.00037980912, 0.0166205782, 0.0317998044, 0.00117109763, -0.0288120061, 0.00701532559, -0.00622333307, 0.00368970842, 0.00634719944, -0.000854863785, 0.0124917086, -0.0129646519, -0.00377791608, -0.00554394629, 0.0273256116, -0.0216352791, 0.0342621133, 0.0091210492, 0.0074845152, -0.0252536703, 0.00225211098, 0.000781201, 0.00137472607, -0.0298479758, 0.00226900168, -0.00492836954, 0.0243378114, -0.00875320472, -0.0121764131, -0.00705661438, -0.0152542982, -0.0264247674, 0.0203140397, 0.0253437553, 0.0285867937, 0.00234782556, -0.00193118514, 0.0159899872, -0.00858805, 0.0047819824, 0.036994677, 0.0157647766, -0.0138129471, -0.019187985, 0.0225811657, -0.00595683325, -0.0237222351, -0.029277442, 0.0197435059, -0.0052849534, -0.0105323717, 0.00393744046, -0.0265298672, -0.00243227975, -0.0312292706, 0.0268151332, -0.0293224845, -0.00945886597, -0.00471441867, -0.0091510769, -0.0123640886, 0.0153894247, -0.000650297035, 0.00274382182, -0.000205739721, -0.016275255, 0.00294275815, 0.0148789464, -0.0106674992, 0.00169565179, -0.00858805, 0.00256552966, -0.00734563498, 0.0109752873, -0.016275255, -0.0258542337, -0.025553951, 0.0116959624, 0.00395245478, -0.0014507348, -0.0205092225, -0.00718798721, -0.0145411296, -0.0180168878, -0.0136628058, -0.0219355598, 0.00895589404, -0.0144285243, 0.0143309329, -0.00739443069, -0.0179117881, 0.023181729, 0.00549139734, -0.0110278362, 0.02201063, -0.0201488864, -0.0145861721, 0.000609477516, 0.00766468421, -0.00806255732, -0.00146762561, -0.014368468, 0.0242327135, -0.0259443186, 0.00782233197, 0.00263872324, 0.0211848561, 0.00635845959, -0.00473694, -0.00903847162, -0.00647481903, -0.00228589261, 0.0252386555, 0.0246681217, 0.0458229482, 0.0116734412, -0.00267438171, 0.0208395328, 0.00677885395, 0.00578041794, 0.00667750882, 0.00234031864, -0.000299343083, 0.00828776788, 0.00254863896, -0.0413787849, -0.0163503252, 0.0148263965, -0.00599061511, -0.0220256448, 0.000777916634, -0.00240600505, 0.0217704047, 0.0114031881, 0.010502344, 0.0135652144, -0.00519862259, 0.0291723441, 0.0181520134, -0.026364712, 0.0283015277, -0.0261395015, -0.00257116, -0.0300882012, 0.0113956816, 0.00753706461, -0.00639974838, -0.0292474143, 0.0103071611, 0.0148113826, -0.00294463499, 0.00268751895, -0.0189177319, 0.0194732528, -0.025644036, 0.00731185358, -0.0221908, 0.000499687099, -0.0172211416, 0.00466562295, 0.00750703644, 0.0207794774, 0.00689145923, -0.0218755044, 0.0201639, -0.00427901093, 0.00627588248, 0.00138598657, 0.00118986529, -0.0333912969, -0.0115308082, 0.0261695292, 0.0152467908, -0.0188126341, 0.00677510025, -0.0179568306, -0.0290972721, 0.0025355015, -0.0215902366, 0.00886581, 0.0277309921, 0.00583672058, 0.00972161256, -0.0134826377, 0.0152017483, -0.0270553585, -0.00409133499, -0.0168457888, -0.0293975547, -0.00698154373, -0.00582170673, 0.0220256448, -0.012138878, -0.00801751483, 0.00186456018, 0.00837785285, 0.00638473453, -0.000990928849, 0.0129571445, 0.0137528908, 0.012499216, -0.0130922711, 0.00882076751, -0.00012456988, 0.0242026858, -0.00834031776, -0.0181069709, -0.00975164, 0.000229551093, 0.0236621778, 0.00571285468, 0.00128651841, 0.00271942397, -0.0115533294, 0.0134976516, 0.0199987441, 0.000429308653, 0.00807006378, 0.00598686142, 0.0405079685, -0.00312668062, -0.000372302078, 0.00327494461, -0.00940631703, 0.0172661841, -0.00245855446, 0.012912103, 0.0176865775, 0.0235871077, 0.00170409726, 0.0272055, -0.0141132288, 0.0143459467, 0.00734563498, 0.0302233286, 0.00248858263, 0.000249374367, -0.0224910807, -0.00143572071, -0.0042152009, 0.00746950135, -0.00772474054, -0.00618579797, 0.00876071118, -0.00263684662, -0.0106449779, -0.00371035282, 0.0197585206, 0.0134526091, 0.00973662641, 0.00341757829, -0.0192480404, 0.00743571948, 0.0124316523, -0.00561901694, -0.0165455081, -0.00640725577, -0.00905348547, -0.00537128467, 0.0220556725, 0.011365653, -0.000436815666, -0.000640913204, 0.00417391211, 0.00764967, 0.0266049374, -0.0131373135, 0.00209070952, -0.0165455081, 0.00793493725, 0.00830278266, 0.00951892231, 0.0225060955, -0.00769471237, -0.0212449133, -0.00244729384, 0.0192930829, -0.00513481302, 0.016995931, -0.0180168878, -0.00677510025, -0.0100294007, -0.0117334975, 0.0155095374, -0.00645605149, -0.00901595, 0.00514982687, -0.0297729056, 0.0174313392, -0.00313043408, -0.00225398759, 0.00402001804, 0.010089457, -0.0073568956, -0.00083609618, 0.0185573939, -0.000351423136, 0.00293149776, -0.00951141492, 0.000694400864, 0.0148864528, -0.0121313706, 0.00767969806, -0.01636534, 0.0181670282, 0.0149690304, 0.0026687514, 0.0126718776, 0.011365653, 0.00828776788, -0.0174913947, 0.00796496589, -0.00237597711, 0.0130397221, 0.0137228621, 0.0103371888, 0.0336014964, 0.00167406909, 0.00487582, 0.0132198911, 0.0061595235, -0.0148113826, -0.00519862259, -0.00798748713, -0.00813012, 0.00222771312, -0.00299718417, -0.00513105933, 0.00785236, -0.00216202647, 0.000952455215, 0.0093012182, -0.00338567351, -0.0264848247, 0.00587800937, 0.00816014875, -0.00268376549, -0.0120037515, -0.0136703132, -0.00894088, -0.00586674875, -0.0120788217, 0.0107575832, -0.00847544428, -0.00493963, -0.000766186917, -0.00179793523, 0.0265298672, 0.00819768384, -0.0127694691, -0.0444716848, -0.00576165039, 0.0105699068, -0.0210197028, -0.00371973659, -2.11135393e-05, -0.000105802297, 0.00632467819, -0.0100519219, -0.0244729389, -0.0164554231, 0.00580293918, -0.00221269904, -0.0274757538, -0.00918861292, -0.005251172, 0.00462433463, -0.0116959624, 0.00966906268, 0.0213800389, -0.00473318622, 0.00360150076, 0.00187300553, 0.00278135692, -0.0163202975, 0.0200137589, 0.00605817838, -0.00802502222, 0.0211097859, -0.0298479758, -0.0155846076, -0.0161101, -0.00630591065, 0.0168608036, -0.0030778849, -0.0219355598, -0.0102395974, -0.00293525122, 0.00105567696, -0.00963152759, 0.00569408713, 0.00123584585, 0.0109752873, 0.000786831253, 0.0217704047, 0.010915231, 0.0185123514, 0.0141507639, 0.0162452273, 0.00972911902, -0.0077923038, 0.012409131, 0.000772286381, -0.00459430646, -0.0302233286, 0.0103071611, 0.000710353313, -0.00698529743, 0.0055964957, 0.00973662641, -0.00754081784, 0.00655739615, 0.00194619922, -0.0223559551, -0.00708288886, -0.000877854065, -0.00589302368, -0.00662120618, -0.00564529141, 0.00397497555, 0.000851110264, 0.00124522962, 0.00813012, -0.0169659015, -0.00775476871, 0.0117860474, 0.000736158749, 0.0103446962, -0.0407181643, 0.0130922711, -0.0360037461, -0.00510103116, -0.019908661, 0.0164854527, -0.00526243262, 0.00255614589, -0.00276821968, 0.0109377522, -0.00291085336, -0.004774475, -0.0429702774, 0.0116058784, 0.0171761, 0.013542694, 0.00797998, 0.0197735336, -0.00761964172, -0.000657334866, 0.000455817877, 0.00416640518, -0.0134075666, 0.0253587682, 0.00862558465, 0.0222358424, 0.000429308653, -0.0050334679, -0.000449718413, -0.00483828504, -0.00569033343, 0.00217141025, -0.0093387533, -0.0043390668, 0.00215827301, 0.0234219544, 0.00692899479, -0.0175964925, 0.00101438828, -0.0041776658, 0.00877572596, -0.00846793689, -0.000804660434, -0.0095864851, -0.020914603, -0.0146237072, -0.0124241449, -0.0125742862, 0.0324003696, 0.0166656207, 0.0115608359, -1.38557607e-05, 0.0180168878, 0.0107951183, 0.00722176908, -0.00462058093, 0.024998432, -0.00776978256, -0.0128745669, 0.0179568306, 0.00603565713, -0.00960900635, -0.026830148, 0.0273406263, -0.00147137907, -0.00441789068, 0.0369346179, -0.00165248639, -0.0193531401, 0.000132898, 0.0196083784, -0.011545822, 0.00459430646, -0.0194732528, -0.00668501575, -0.0023440721, -0.0152092557, -0.000956677948, -0.0027532056, -0.00517610181, -0.0195182953, 0.00699655805, -0.017281197, -0.00086800108, 0.0299380608, -0.00507475669, -0.0110878926, 0.0246080644, 0.00369346188, 0.0198185761, -0.00609946717, -0.00771723362, 0.0182270836, -0.00471441867, -0.0189027172, 0.00350390933, 0.019203, 0.00865561329, -0.0208095051, -0.00899342913, 0.0186474789, -0.00256552966, 0.00938379578, 0.00653487537, 0.0102170762, 0.00897841528, -0.0131223, -0.020554265, 0.0158398468, 0.00538629852, -0.00505598914, 0.0166506059, -0.0193681531, -0.00748076197, -0.0119962441, 0.0138354683, 0.00843790919, 0.00286581111, -0.014188299, -0.0170559864, -0.022100715, -0.00100875797, -0.0030140751, -0.000182866715, -0.00190021854, -0.00840037409, 0.00179324334, -0.0203140397, 0.00113825442, 0.00761964172, -0.00393368723, 0.0213349983, 0.00530372141, -0.0156296492, 0.0128445392, 0.0212298986, -0.0256140083, 0.00329371216, -0.0245329943, 0.03255051, 0.0383159146, 0.0157047193, 0.00318298349, 0.00160462898, 0.00174069405, 0.0108401608, -0.00489083398, -0.00813012, -0.000472004904, -0.0195783507, -0.0137904258, -0.029367527, 0.00185517641, 0.00484579196, 0.0101344995, -0.00195745984, 0.0210797582, -0.00768345175, 0.0088958377, 0.00211886107, 0.0127919903, -0.0148038762, 0.0195182953, 0.00945886597, 0.0144210169, -0.00115045335, -0.0309590176, 0.023827333, 0.00534500973, 0.0197435059, -0.00148263969, 0.0148038762, 0.00658367109, -0.00540131284, -0.0173862968, -0.027190486, 1.97939444e-05, 0.00995433051, -0.0142558618, 0.0109978085, -0.00212073768, -0.00767594483, -0.0086781336, 0.0122439759, -0.00223146658, -0.00116828259, 0.00607694592, 0.0277760345, -0.0133775389, 0.0117109772, 0.0037253669, 0.0174013097, 0.0125292437, -0.0112230191, -0.0207494479, -0.0172511693, -0.00105943053, 0.0251035299, 0.0226562358, -0.00094119471, -0.00627963571, -0.0112380339, 0.00422270782, 0.00852799322, 0.00300093787, 0.00311166653, -0.00957147125, 0.0024078819, 0.0169358738, 0.00450797519, -0.0025186108, -0.00825774, 0.00888833124, 0.0223409403, -0.0116133848, -0.0174013097, 0.00734938867, -0.0060319039, 0.000721144665, 0.0150591154, 0.00853550062, -0.0118761314, 0.00116265228, 0.00701532559, 0.0190528575, -0.006411009, 0.0237973053, 0.00907600671, 0.00376477884, 0.0115157934, -0.00982671, -0.00677134702, -0.00577291101, -0.017010944, -0.0212449133, 0.00539380545, -0.017641535, 0.0173262395, 0.011418202, 0.00390741229, -0.027911162, 0.00903096516, 0.00860306341, 0.0224910807, 0.0122815119, -0.00549139734, 0.0042152009, -0.00847544428, 0.00308163837, 0.00899342913, -0.000579449348, -0.0124541735, 0.00531873526, 0.00274945213, -0.0114782583, 0.0284516681, -0.0109452587, -0.0165605228, -0.00449296134, 0.00424147537, -0.011598371, -0.0058142, -0.0239024032, 0.00895589404, -0.0193080977, -0.0128070042, 0.0079499511, 0.000700500328, -0.0191129148, 0.0140606789, -0.00436534174, -0.00310415961, 0.00160838256, 0.0103146676, -0.0097741615, -0.0148564251, 0.00753331091, 0.0204641819, -0.000729120919, 0.00869314838, -0.00571285468, 0.0110578649, -0.0108176395, -0.00655364292, -0.00217516371, -0.0017857363, 0.00912855659, -0.0161551423, -0.00309477584, 0.0126493564, -0.0106524844, -0.00948889367, -0.0163353104, 0.0157647766, 0.00456427829, 0.00272505428, -0.0127094127, -0.00850547198, 0.00495089032, -0.0108776959, -0.0270853881, 0.00187863584, 0.003614638, 0.00743571948, -9.61105889e-06, 0.0280462876, 0.00989427418, -0.00173506374, 0.00178667461, 0.0168608036, 0.0166506059, -0.00167406909, -0.0142558618, -0.000288317126, -0.00768720545, 0.000870816235, -0.00737566315, 0.0169809163, 0.00364466617, -0.000613231037, -0.00954895, 0.0176715627, -0.011545822, -0.00252048741, 0.0171610843, 0.0137378769, -0.0219355598, -0.00810759887, 0.0182571132, -0.00969909132, -0.0161101, 0.000717391144, -0.0147888614, 0.00103221752, -0.00833281, 0.0209446307, 0.0167106632, -0.0120938355, 0.00383421872, 0.0180619303, -0.00874569733, -0.0107425693, -0.0216953345, 0.0129045956, 0.00265373732, -0.0116659347, -0.00897841528, 0.0108476672, -0.0175364371, 0.00571660837, 0.00816765521, 0.0156296492, -0.00271191681, 0.0122514833, -0.00186737534, -0.0115308082, 0.00351141626, 0.000277056562, 0.00538254529, -0.0140681863, 0.0127769755, 0.0131373135, -0.0162902698, 0.00311354338, -0.0130922711, -0.000461917341, -0.00617078412, -0.00868564099, 0.0193681531, -0.00942883734, -0.0330309607, -0.00854300708, 0.00234219525, 7.88825273e-05, 0.00441038376, -0.0106524844, 0.00435783481, 0.00423772214, 0.00518736197, -0.011725991, 0.00500343973, 0.0122589907, -0.029277442, -0.00808507856, -0.00618204428, -0.0349527597, -0.00140944612, 0.0220256448, 0.01618517, 0.000354003685, 0.00714669842, 0.00420769397, 0.00321864174, 0.0195633359, 0.00586674875, 0.0318598635, 0.00734188175, 0.0111929914, -0.00218267087, 0.00159055332, -0.0152542982, -0.0255389381, 0.00788238831, 0.0173562672, 0.0144060031, 0.0286618657, 0.0106674992, -0.0052474183, -0.00500719342, -0.00599436834, -0.0137904258, -0.0123265535, 0.0017003438, -0.00978166796, 0.00991679542, 0.0181970559, -0.00322239543, -0.00606193207, -0.00886581, -0.00525492569, 0.00667000189, -0.0233919248, -0.0157047193, 0.00642226962, 0.000203159172, -0.000856271363, -0.00226337137, 0.000930872513, -0.0076121348, -0.00285642734, -0.00226149475, -0.0175964925, 0.00676759332, 0.00252236426, -0.0154344672, -0.00549515057, -0.00121144799, -0.00978166796, -0.010862682, -0.000353534502, -0.00875320472, 0.0261695292, 0.0184973385, -0.0105999354, -0.00167876098, 0.0125893, 0.0290372167, 0.00900844391, 0.0107425693, 0.00455301767, 0.0293374974, -0.0195182953, -0.0111029064, 0.00295214215, -0.00844541565, -0.0217854194, 0.0035508282, -0.0112980893, -0.0012912103, -0.0233618971, 0.012499216, 0.017461367, 0.000529715267, 0.000271895464, 0.0141207352, 0.0246531069, 0.0110503575, -0.00448545441, 0.0203290544, -0.00372912036, -0.00288457866, -0.0101344995, 0.0150591154, -0.0360638, -0.00963903498, 0.0188877042, 0.0141582703, 0.0049959328, -0.000746480946, 0.00340819452, 0.00209070952, -0.00879824627, -0.00305911736, 0.0155846076, -0.00510853808, -0.00260306476, -1.63923178e-05, -0.0416490361, 0.0133324964, -0.00137378764, 0.0227162912, 0.00555520691, -0.00387363066, 0.00113262411, -0.00920362677, -0.0193681531, 0.0077923038, -0.0198335908, 0.0280012451, -0.00317359972, -0.0353131, 0.00957147125, -0.0147363124, 0.0170409717, 0.00555896061, -0.00957897864, 0.0137303695, -0.00801751483, 0.00373099698, -0.0105323717, 0.00460556662, 0.000266265182, -0.00819768384, -0.0137603981, -0.00918861292, -0.0227463208, 0.00448170071, 0.000659680809, 0.00262183254, 0.0115758497, -0.011005315, 0.028646851, 0.0128445392, -0.013415074, 0.020268999, 0.00632467819, 0.00430153171, 0.00615577, 0.0251485724, -0.012499216, 0.0294425972, 0.00397872925, 0.00898592267, -0.0144885806, -0.0180469155, 0.00686143106, 0.00118141982, 0.00989427418, 0.0172661841, -0.00254300865, -0.000926180626, -0.00712042395, -0.00868564099, 0.00566030527, -0.0128370319, -0.00961651374, 0.0204641819, -0.015321861, 0.00156052515, -0.00585924182, -0.00897090882, -0.0119286804, 0.0434507281, -0.0210497305, 0.00576165039, 0.0180319, -0.0289771613, -0.01177854, 0.0158698745, -0.00999186561, -0.0136177642, 0.00957147125, -0.0215752218, -0.00351141626, -0.0154945226, 0.00973662641, -0.0255689658, 0.012499216, -0.00301595195, -0.0108852023, -0.00609946717, 0.0115833571, -0.00407632068, 0.0156446639, -0.0125292437, -0.0171010289, -0.0077022193, -0.0403278, 0.00303284265, 0.00714669842, 0.00060478563, 0.0208995901, -0.00273819151, 0.00284141325, -0.0145111009, 0.00476321438, -0.0188426618, -0.0195032805, 0.00916609168, 0.00854300708, 0.0140081299, 0.00672630453, 0.00539380545, 0.000524084957, -0.00960900635, -0.0038698772, -0.00212449138, -0.0158698745, -0.00965404883, 0.00925617572, 0.00560400262, 0.0234519821, 0.00319049042, 0.0132424124, -0.0071954946, 0.00681638904, -0.0117034698, -0.0149540165, 0.0160800721, 0.00473694, 0.0101645272, 0.00683515659, -0.0102996537, -0.00847544428, -0.00781482458, -0.00886581, -0.0128895817, -0.00255802274, 0.00646731164, -0.0167256761, 0.0037253669, 0.0118160751, -0.00802502222, 0.00234594895, 0.00816765521, -0.0240975861, 0.00279074069, 0.0152392834, -0.013362525, -0.0105248652, 0.0154194525, -0.0310491025, -0.0152768195, 0.000824366405, -0.00766468421, -0.00852799322, -0.0366943926, -0.0176265221, 0.0212599263, 0.0131598348, 0.004774475, -0.00563778449, 0.0229415037, 0.0156897064, -0.0190378446, -0.0254188254, -0.0176265221, 0.0203290544, -0.00202126964, 0.0330910161, -0.00290522305, -0.0229865462, 0.00887331739, -0.00823521893, -0.0154194525, 0.0206743777, -0.00862558465, 0.00162151991, 0.00120957126, 0.00690272, -0.0148489177, -0.0168007482, -0.0124766948, 0.0128670605, 0.00592680508, 0.00330872624, 0.00444041193, 0.010269626, -0.010412259, 0.0212298986, 0.00474820053, -0.0234369673, 0.0161701571, 0.0126343425, 0.00622333307, -0.000248905184, -0.0130247083, 0.00974413287, 0.0173412543, -0.00912855659, 0.00694776233, -0.0239624605, -0.0150666218, 0.00667000189, -0.00495089032, 0.00815264136, -0.00270816335, 0.0336915776, -0.0132048773, -0.0117184836, -0.0105248652, 0.0186925214, -0.0106149493, 0.00858054217, -0.0131898625, 0.00525492569, 0.0104948366, -0.02064435, 0.00571285468, -0.0077022193, -0.00369533873, 0.0104047526, 0.00345511339, 0.0169058461, -0.00442164438, -0.00650109351, 0.000946355751, -0.018737562, -0.0605967976, -0.00063856726, 0.010502344, 0.00891835894, 0.0035883633, 0.00976665411, -0.00334813818, -0.0191129148, 0.0011213636, 0.0323703401, 0.0163503252, -0.00975914765, 0.0109077236, 0.0188726895, -0.000554113125, 0.00780731766, -0.00160275225, 0.0117635261, -0.0100669358, -0.0100218933, -0.00702283252, -0.0243978687, 0.00289771613, -0.013955581, -0.0168758184, 0.0122439759, 0.00398623617, -0.0257791635, 0.00211510761, -0.0141057214, -0.0246981494, -0.0195182953, -0.0116208922, -0.0110578649, 0.0132799475, -0.021094773, 0.00142258336, -0.0160950851, 0.00761964172, 0.0203590821, 0.00367281749, -5.93525074e-05, 0.00184110063, -0.0237072203, -0.0292324, 0.0150591154, 0.00237410027, 0.00475946115, -0.0133550176, 0.00485705258, 0.00114482304, 0.0016158896, 0.0162902698, 0.00462058093, 0.0196083784, 0.00638098083, -0.00760462787, -0.00800250098, 0.0137679046, 0.00383609557, 0.00822020508, 0.00403503189, 0.00605442468, -0.0126118213, -0.0219956171, 0.0147813549, -0.00881326105, 0.01177854, 0.0150741292, 0.0168908313, 0.00273068459, -0.00501470035, 0.00135689683, 0.0170259587, 0.00218830118, 0.0024979664, 0.00305536389, 0.00784485321, -0.000554582337, 0.0117109772, 0.0361538865, 0.00505598914, 0.00327119115, 0.00492461585, 0.00555145321, 0.0203140397, 0.0106750056, -0.00807757117, -0.0235720947, -0.0240075029, 0.00969909132, 0.00315483194, -0.000511416874, 0.0158848893, 0.0202990267, 0.0147137912, -0.0157647766, -0.0147137912, 0.0179568306, -0.0214250814, 0.00996934436, 0.0132499188, 0.0264397822, -0.0130772572, 0.0131673422, -0.0156146353, -0.00209633983, 0.00441038376, 0.00827275403, 0.0166656207, 0.0237973053, -0.00535251712, -0.000719267933, -0.00218454748, 0.0456728078, 0.0360938311, 0.0219655894, -0.00562652387, 0.00104347803, 0.0042114472, 0.00648983289, -0.0430603623, 0.0107951183, -0.00179042818, -0.00351516972, -0.0144810732, -0.0103822313, 0.000446434075, -0.0195783507, -0.0216052514, 0.0108026257, 0.0206893925, 0.00620081183, -0.00256552966, -0.00606193207, -0.0241426285, -0.00484954566, -0.0111254277, 0.00328245177, -0.00332937064, 0.00219580811, 0.00558523508, 0.0182270836, -0.00378729985, -0.0177766625, -0.0134751303, -0.0206293352, 0.0341420025, -0.0202389695, -0.0025355015, 0.00134845136, -0.000729120919, 0.00937628839, 0.0152467908, 0.00303847296, 0.00647106534, 0.0106524844, 0.0093012182, 0.0111404425, -0.0137078483, 6.79152217e-05, 0.00319987419, -0.00825774, -0.0121013429, 0.00206443504, -0.00760087417, -0.01636534, -0.0175964925, -0.00237785373, 0.000516577915, 0.0317097232, 0.00825774, -0.0107050342, -0.0103296824, 0.0137528908, 0.00437284866, 0.00133249897, 0.00224272721, 0.00775476871, 0.00597184757, -0.00651610736, 0.000693931652, 0.0176565498, -0.0121238641, -0.014045665, -0.0257040933, 0.00473318622, 0.0128445392, 0.00640350208, -0.0169508886, 0.0208095051, 0.0210347157, -0.00724429032, 0.00625711493, -0.00144604291, 0.00132686866, -0.0155846076, 0.0247582067, 0.00793493725, 0.0124166384, 0.0105098514, -0.00332561717, 0.00749577582, -0.0204191394, 0.00755207846, -0.00397872925, 0.0113881743, 0.0131673422, -0.00599436834, -0.0161551423, -0.00504097482, 0.0159899872, -0.0147137912, -0.00843040179, -0.0283765979, -0.0233618971, 0.00111479487, 0.034562394, -0.0139030311, -0.00174726266, 0.0171761, -0.0103146676, 0.022100715, -0.00302533573, 0.00680888211, -0.000276352774, 0.00501470035, 0.0175064094, -0.00476696808, -0.00623459369, 0.000703784637, -0.0182571132, 0.00572786853, 0.000374648022, 0.0113956816, -0.0150591154, 0.00111197971, -0.00303847296, -0.00104253972, 0.00550641119, -0.00399749679, 0.00673005823, -0.00401626434, 0.0088958377, 0.00414763764, 0.0197735336, -0.0152918333, -0.0139480736, -0.000381216698, -0.021004688, -0.0070115719, -0.0174013097, -0.00466186972, 0.0119361877, 0.0140306512, 0.0159599595, -0.0138279609, 0.00715795904, -0.0109452587, -0.00288645551, 0.00747700827, 0.00360337738, 0.0216352791, -0.0124541735, -0.0281213578, 0.0157347489, 0.0150666218, -0.0248032473, -0.014225834, -0.0174163245, 0.00716921967, -0.00138504826, -0.00877572596, -0.0101044709, 0.0209596455, -0.00676759332, 0.00755207846, 0.00835533161, 0.0160350297, -0.0205092225, -0.00075961824, -0.0156296492, -0.0215451941, 0.0033593988, 0.0246080644, -0.0142333414, -0.00857303571, -0.00383609557, -0.0175664648, -0.0237072203, -0.00347575778, -0.00235533272, 0.0150816357, 0.0114106955, -0.0142633691, 4.94408741e-05, 0.00731936051, -0.010232091, -0.011418202, 0.000855802151, 0.00452674273, -0.0033762895, 0.00969158392, -0.013415074, 0.0172962118, -0.0170559864, -0.0104948366, -0.00348889525, -0.00421895459, -0.00886581, -0.0190378446, -0.00439161621, 0.0137603981, 0.00595683325, 0.0363040268, 0.0226862635, -0.0185724087, 0.00317735318, -0.00164404092, -0.00877572596, -0.0108026257, 0.0151041569, -0.00764967, 0.0030347195, -0.00298967725, -0.00954144355, -0.0162602402, -0.0111479489, -0.0058479812, -0.00189177319, -0.0148939602, -0.00171254273, 0.00844541565, -0.00104066287, -0.00834782422, 0.0101344995, -0.0166656207, -0.0162302125, 0.0172962118, 0.00539755914, -0.00011119798, 0.0178817604, -0.0155846076, 0.00770972623, 0.0124842012, -0.0245329943, -0.00633218512, -0.000906474655, 0.0121613992, -0.00661745248, -0.0255989935, 0.00339881075, 0.0246230792, 0.00445917947, -7.41906333e-05, 0.0065048472, 0.000203393764, 0.00924116187, -0.0115157934, 0.00476696808, -0.0106599918, -0.0141807916, -0.0076121348, -0.0186324641, -0.00339318044, 0.00773224747, -0.00196684361, 0.00322051859, 0.00179793523, 0.0132123837, -0.000295354956, -0.0153669035, 0.00183547044, 0.0689446256, -0.00854300708, 0.0116809485, -0.0070115719, 0.00699280435, -0.00973662641, -0.0211848561, 0.0443515703, 0.0153669035, 0.00790491, -0.0264397822, 0.0232417844, -0.0178066902, -0.00756709278, -0.0130247083, 0.00437284866, -0.00689521292, 0.0008131059, 0.00384735619, -0.00118798856, 0.00793493725, 0.00707538193, -0.0024716917, -0.00164873281, -0.000227908939, -0.0093012182, 0.00115608366, -0.0178066902, 0.000969346089, 0.000266265182, -0.0131523274, 0.0195933655, 0.0156296492, 0.00356959575, -0.0221757852, 0.00623084, 0.0196534209, 0.0248182621, 0.0170860142, -0.0251185428, 0.0171911139, -0.000937441189, -0.00193869218, 0.00809258502, 0.0120938355, 0.00422270782, 0.0118310889, -0.0139405662, -0.00801000744, 0.0062871431, 0.0098116966, -0.00748076197, -0.00457929214, -0.0133925527, -0.00263309292, 0.00918861292, -0.00836283807, 0.00566405896, 0.00638098083, -0.0108026257, -0.00854300708, 0.0203590821, -0.00909852795, -0.0133700315, -0.00219956157, -0.0122439759, -0.00186925207, 0.0115908645, 0.00957897864, 0.00121801661, 0.025553951, -0.0107425693, 0.000860494038, -0.0140681863, 0.0106149493, -0.00712793088, 0.0153744109, 0.0234069396, -0.0135276793, 0.0145561434, -0.0111179212, 0.0109077236, 0.000829527504, -0.0226412211, -0.0122364694, -0.0021526427, -0.00772474054, -0.0188576747, -0.0280312747, 0.00648232596, 0.00490960199, 0.0504472852, 0.00837034546, 0.00927869696, 0.0131748486, -0.0132424124, -0.00142821367, 0.0128595531, 0.013505158, -0.00370659912, 0.00677134702, -0.00294651184, -0.0117334975, -0.00993931573, -0.0136402855, 0.0195182953, -0.00990178064, 0.00569784082, 0.0231517, -0.0271154158, 0.0156296492, 0.0269502606, -0.00046332489, 0.0196083784, -0.00115514523, 0.0159599595, 0.0149390027, -0.0115908645, -0.0142408479, -0.0186775066, 0.00432029925, 0.0263046548, -0.0104197664, 0.00353393727, -0.00413262332, -0.00574663654, 0.00609571347, -0.00218454748, 0.0189928021, -0.0119812302, 0.0242627412, 0.0111779775, 0.0238573607, 0.00363340555, 0.00763840973, 0.0242026858, -0.0222658701, -0.0084228944, -0.0255989935, 0.0103747239, 0.0354031846, 0.00766843744, 0.015051608, 0.010592428, 0.00211698422, -0.000606193207, 0.00649358658, 0.00551391812, 0.0524591692, -0.0107650906, -0.0183471963, 0.0287369359, 0.01246168, -0.0156897064, 0.00147513265, -0.00903847162, 0.00538629852, -0.00847544428, 0.0345323682, -0.0242327135, 0.00707538193, -0.00364841963, 0.0107650906, -0.0171160437, 0.0246080644, -0.0069777905, 0.011958709, 0.00513856625, -0.014098214, 0.00230841362, 0.0121989343, 0.0227463208, -0.0181069709, 0.0155245513, -0.0148263965, -0.00252048741, 0.000766186917, 0.00348326494, -0.0113281179, -0.0117334975, -0.00369533873, 0.00503722159, -0.000411948626, 0.0393969268, -0.000540975831, -0.00151454459, -0.0112530477, -0.00519486936, 0.0313794129, 0.0105173578, 0.00756333908, -0.00477072177, -0.0150441006, -0.0051573338, -0.00728933234, -0.0116058784, -0.0131298071, 0.00605817838, -0.000163747231, -0.00706412131, -0.00262370915, -0.0169659015, -0.00365592679, 0.0350128189, 0.00460181339, 0.0270553585, -0.00314732501, 0.0267700925, -0.00107256777, -0.0132273985, -0.00706036761]
08 Jun, 2022
Linux system call in Detail 08 Jun, 2022 A system call is a procedure that provides the interface between a process and the operating system. It is the way by which a computer program requests a service from the kernel of the operating system. Different operating systems execute different system calls. In Linux, making a system call involves transferring control from unprivileged user mode to privileged kernel mode; the details of this transfer vary from architecture to architecture. The libraries take care of collecting the system-call arguments and, if necessary, arranging those arguments in the special form necessary to make the system call. System calls are divided into 5 categories mainly : Process Control File Management Device Management Information Maintenance Communication Process Control : This system calls perform the task of process creation, process termination, etc. The Linux System calls under this are fork() , exit() , exec(). fork() A new process is created by the fork() system call. A new process may be created with fork() without a new program being run-the new sub-process simply continues to execute exactly the same program that the first (parent) process was running. It is one of the most widely used system calls under process management. exit() The exit() system call is used by a program to terminate its execution. The operating system reclaims resources that were used by the process after the exit() system call. exec() A new program will start executing after a call to exec() Running a new program does not require that a new process be created first: any process may call exec() at any time. The currently running program is immediately terminated, and the new program starts executing in the context of the existing process. File Management : File management system calls handle file manipulation jobs like creating a file, reading, and writing, etc. The Linux System calls under this are open(), read(), write(), close(). open(): It is the system call to open a file. This system call just opens the file, to perform operations such as read and write, we need to execute different system call to perform the operations. read(): This system call opens the file in reading mode We can not edit the files with this system call. Multiple processes can execute the read() system call on the same file simultaneously. write(): This system call opens the file in writing mode We can edit the files with this system call. Multiple processes can not execute the write() system call on the same file simultaneously. close(): This system call closes the opened file. Device Management : Device management does the job of device manipulation like reading from device buffers, writing into device buffers, etc. The Linux System calls under this is ioctl(). ioctl(): ioctl() is referred to as Input and Output Control. ioctl is a system call for device-specific input/output operations and other operations which cannot be expressed by regular system calls. Information Maintenance: It handles information and its transfer between the OS and the user program. In addition, OS keeps the information about all its processes and system calls are used to access this information. The System calls under this are getpid(), alarm(), sleep(). getpid(): getpid stands for Get the Process ID. The getpid() function shall return the process ID of the calling process. The getpid() function shall always be successful and no return value is reserved to indicate an error. alarm(): This system call sets an alarm clock for the delivery of a signal that when it has to be reached. It arranges for a signal to be delivered to the calling process. sleep(): This System call suspends the execution of the currently running process for some interval of time Meanwhile, during this interval, another process is given chance to execute Communication : These types of system calls are specially used for inter-process communications. Two models are used for inter-process communication Message Passing(processes exchange messages with one another) Shared memory(processes share memory region to communicate) The system calls under this are pipe() , shmget() ,mmap(). pipe(): The pipe() system call is used to communicate between different Linux processes. It is mainly used for inter-process communication. The pipe() system function is used to open file descriptors. shmget(): shmget stands for shared memory segment. It is mainly used for Shared memory communication. This system call is used to access the shared memory and access the messages in order to communicate with the process. mmap(): This function call is used to map or unmap files or devices into memory. The mmap() system call is responsible for mapping the content of the file to the virtual memory space of the process. These are the various system calls involved in LINUX operating system. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail
https://www.geeksforgeeks.org/linux-system-call-in-detail?ref=asr10
PHP
Linux system call in Detail
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.00396080315, 0.0204966776, -0.0101411864, 0.0388809256, -0.00109065592, 0.0396463, -0.0213538948, 0.0273850318, 0.0183689427, 0.0249664541, 0.0103095686, -0.0175117254, 0.0497186035, -0.010454989, 0.0336763933, 0.0326354876, 9.19643e-05, 0.0130955251, 0.0177260283, -0.0115800872, 0.0110596335, 0.00725573208, -0.0178484879, 0.00846502092, -0.0172514971, -0.0246296898, 0.02144574, 0.00500171, -0.00674293237, 0.00301939482, 0.0193792339, 0.0311506633, 0.0149018038, -0.0205885228, 0.0128582595, -0.0518616475, -0.0456162058, -0.00372162415, -0.00290841586, -0.0170984231, -0.0272931866, 0.00812060293, -0.00570585253, 0.00949062, -0.0385135487, 0.015108455, -0.00149917358, -0.0235887822, -0.0288392399, -0.0318701155, -0.00710265758, -0.0229611769, 0.0664343387, 0.0391258448, 0.0173892658, 0.00729017379, 0.0265125055, -0.000723277102, -0.0227315649, -0.0496267565, 0.0397993736, 0.0118020456, 0.000574507809, -0.04120766, 0.0249358378, -0.0127511071, -0.0297883, 0.0608011968, 0.00874820817, -0.0108989058, -0.0158125982, 0.00212964928, -0.0103861056, -0.0167616587, -0.0345948413, 0.0133404443, 0.0413913503, 0.026328817, -0.00957481097, -0.00688452646, -0.00732461549, 0.00745472917, 0.0137078231, -0.0240020845, 0.00240901019, 0.00978911575, 0.00856451876, -0.0591173768, 0.0271860342, 0.0219661929, 0.0153839886, 0.0140139721, 0.0178944115, 0.00972023141, 0.0134399422, 4.11088804e-05, 0.00557956612, -0.0109295202, -0.0154605266, 0.0114270123, 0.0231448673, -0.0144043118, -0.0189506244, -0.0388503112, 0.00651332084, 0.0279054847, -0.0189506244, 0.00655158935, 0.0153533742, 0.0448508337, -0.0405341312, -0.0156212542, 0.0012934797, 0.0165779702, 0.000366422115, -0.0135624018, 0.00876351632, -0.0409015119, -0.0303393696, -0.00291224266, 0.0228846408, 0.0192720816, -0.0259155165, 0.0207109824, -0.0607093535, 0.0448202193, 0.0115418183, -0.0306608249, -0.00226167589, 0.00929927733, -0.0255940594, -0.0160422102, -0.00303470227, 0.00849563535, 0.01411347, -0.0115953945, 0.00485246209, 0.0331559405, 0.011105556, -0.0157819819, -0.0301556792, 0.00655158935, -0.02991076, -0.01072287, 0.000867741182, 0.00354558858, -0.0237571653, 0.00761163048, -0.0278901774, 0.0479735546, -0.0328804068, -0.00890128314, 0.0236959346, 0.000397037016, 0.0273850318, -0.0248439945, 0.0204660632, 0.0585050806, -0.00817417912, -0.0202976801, -0.0128276441, -0.0482184738, -0.0119933886, -0.0421873368, 0.0260685906, 0.00219661929, -0.0255634449, -0.0304771364, -0.0253950618, 0.0353296, -0.0438711569, 0.0266655814, 0.0142512377, 0.00778766582, -0.0152002992, -0.00198040158, -0.0192108527, 0.0673527867, -0.0397687592, -0.0128506059, -0.0253644474, -0.00932989176, -0.0419730321, 0.00104569027, 0.0398606025, 0.0201752204, 0.00940642878, -0.0376563296, -0.00615359563, -0.0168381967, -0.00627988204, -0.00321456487, 0.0236959346, 0.0166851226, 0.00391679397, -0.0256552882, -0.00998811238, 0.0436874665, -0.00637555355, -0.00390531356, -0.0565763414, 0.00157188391, -0.0230836365, 0.0137231303, -0.00999576598, -0.0129654119, -0.0173892658, -0.0301862955, 0.00201101648, 0.0166851226, -0.0179556403, 0.0183995571, -0.00365274074, -0.00230951188, 0.0187516287, -0.00338677363, 0.026941115, 0.0345336124, 0.00929927733, -0.0499635227, 0.019517, 0.0166238919, 0.0356663615, -0.0286861639, -0.0503615178, -0.0425241, 0.0371358767, -0.0375644863, -0.0184760951, -0.019073084, 0.020144606, 0.0299719907, -0.0115571264, -0.0258389786, -0.0547394454, -0.00378668075, 0.0166238919, 0.00899312831, 0.00520070689, 0.0202058367, -0.00534995412, 0.017404573, 0.00199570903, 0.0233285557, -0.00590102281, 0.00103133952, 0.0199609175, 0.0633728504, -0.0185373239, -0.0123531139, 0.0106386784, 0.0171137303, -0.00251616235, 0.00150969741, -0.0379930958, -0.0083349077, 0.00638320716, 0.00130304683, 0.0172208827, -0.0201139916, 0.010340184, 0.00789099094, 0.00228846399, 0.0253797546, -0.0286861639, -0.0137920137, 0.0419730321, 0.0013853244, -0.0166545082, -0.0367685, 0.0495043, -0.0291453879, -0.020833442, -0.00185124495, 0.0292066187, -0.016792275, -0.0221804976, 0.0358194374, -0.00346905133, 0.0117714303, -0.00601582834, -0.0156289078, 0.0160269011, 4.89419872e-05, 0.0107841, -0.010914213, -0.0101335328, -0.0220427308, -0.0290994663, 0.00282231136, -0.0426159464, 0.0350846797, 0.0112739382, 0.00934519898, 0.0203282963, 0.022517262, -0.00275342795, -0.0108606368, -0.0237877797, -0.00713709928, 0.0351152942, -0.0278442539, 0.00308827846, -0.000349679613, 0.00985799916, -0.00108778581, -0.00717154099, 0.0291453879, 0.0242929254, -0.0120240031, 0.0205579083, -0.0583520047, -0.0610461161, -0.0643525273, 0.0160575174, 0.0285330899, 0.00927631557, -0.0210936684, 3.8358321e-05, -0.0149783418, 0.0307832845, 0.0153457206, -0.0133710587, 0.0470551066, 0.0291760024, -0.0150242634, -0.00619186414, 0.0319925733, -0.0597602911, -0.0307985935, -0.00492517278, 0.0131797157, -0.0082736779, -0.011143825, -0.0173433423, -0.00258313236, 0.00749299768, 0.0305383652, 0.00870228652, 0.0133710587, -0.00822775532, -0.0172514971, -0.059913367, -0.0513718091, -0.0214151256, 0.00914620236, -0.00704525458, 0.0161646698, 0.00150682731, 0.0242163893, 0.00145612133, 0.0261298195, 0.00852625072, 6.54752293e-05, -0.00835786853, 0.0212008208, -0.0242470037, -0.0300179124, 0.0238183942, 0.0285330899, 0.0468408, 0.00155466306, 0.00143316016, 0.0237724725, -0.0320538022, -0.0359112807, 0.0318395, 0.00330449617, -0.025410369, -0.00112605444, -0.00405647466, -0.0136695541, 0.0255634449, 0.0220121164, 0.0026214011, -0.0116948932, -0.0318701155, 0.00146664516, -0.0127511071, 0.0129041821, 0.0231295601, 0.0111897476, -0.0301250648, 0.0144655416, -0.0256552882, -0.0163636655, -0.0158279054, -0.0164861251, 0.0178025663, 0.00574794831, -0.0270941891, 0.0360031277, -0.00844205916, -0.010110572, 0.0231754817, -0.00667404896, 0.000845736708, -0.0234357081, 0.00521984091, 0.00968196336, 0.0130036799, 0.0379012488, -0.00606557773, 0.0514024235, -0.0206344444, -0.0047988859, -0.00631815055, -0.0279514063, -0.00202823733, 0.00761545729, 0.00673910556, -0.0410852, -0.0189659335, 0.0145803476, -0.00200527627, 0.0612298064, -0.0468408, 0.0722511709, -0.0116719315, 0.017174961, -0.00674675917, -0.0105544878, -0.023359172, 0.044942677, 0.0144502344, 0.0326661021, 0.0371971093, 0.00804406591, -0.0183077119, -0.0201905295, -0.0289770067, -0.00802110508, -0.00360107794, 0.0138608972, 0.00614976883, -0.0469938777, 0.0184914023, -0.00621865224, -0.0171443466, -0.0378706343, -0.0170678087, 0.0414219648, 0.038146168, 0.000795987493, -0.0677813962, -0.025410369, -0.027629951, -0.023343863, 0.00688069966, -0.00118632754, -0.056545727, 0.0304159056, 0.0234969389, 0.0283494, 0.0542802252, 0.00802875869, 0.0425853319, -0.0361868143, 0.0364929661, -0.00772643602, 0.0317170396, 0.0122612687, 0.0109448284, 0.0186291691, 0.0240786206, -0.00468408037, -0.0255481377, -0.0155906398, 0.00234778039, 0.0018694225, 0.036094971, -0.022134576, 0.0163483582, 0.0217518881, 0.0133251371, -0.0283034779, -0.0101947626, 0.0169759635, -0.0201752204, -0.0541577637, -0.0182158668, 0.0293290783, -0.0223182645, -0.0314108916, 0.00153648551, 0.0164861251, -0.025716519, 0.0222417265, 0.00597373303, -0.0263900459, 0.0118556209, 0.0444528386, -0.0127281463, -0.0137690529, -0.0149783418, -0.015452872, -0.0222723428, 0.0104856044, 0.0129194893, 0.0490450747, -0.0451875962, -0.0147487298, -0.0169912707, 6.12298099e-05, -0.0105085652, 0.0193333123, 0.0222417265, 0.0121081946, -0.00247024, -0.0312884301, 0.0247827638, 0.0139297806, 0.00993453618, 0.0253032185, -0.00652862806, 0.0249664541, -0.0346866846, 9.87808962e-05, 0.0179709475, 0.0287320875, 0.0234204, -0.00705290819, 0.0286096279, -0.019073084, -0.00269985176, -0.0134475967, 0.00156997051, -0.0184454788, -0.0485858507, -0.0181087162, 0.0172974207, 0.0275687203, -0.00955185, 0.0119780805, 0.00897782, -0.0216447376, -0.00138915121, 0.0175423399, -0.000737627852, -0.00825837, -0.031441506, 0.0236193985, -0.0307373628, -0.014840574, -0.0140522402, 0.0539128445, -0.00390722696, 0.0144502344, -0.00431287428, 0.00420954917, -0.00105143059, 0.00832725409, 0.00212582224, -0.00308445143, -0.0234510154, 0.0134782111, 0.00901608914, -0.0120316567, -0.0311200488, 0.00315907528, -0.00636407314, 0.00034537437, 0.0155447172, 0.00785272289, -0.00805937313, -0.00362977944, 0.00539587671, -0.00661664596, 0.0096590016, 0.00475296378, -0.00264053536, -0.00368335564, 0.0200068392, -0.0123224985, 0.00695723668, 0.0444222242, 0.00101220526, -0.0111208633, -0.00294094416, 0.000881613523, -0.0210171305, -0.0183230191, 0.026941115, 0.00952123478, 0.0143966582, -0.0210324377, 0.00292946352, 0.00800579693, -0.0100569958, 0.0123224985, 0.0123454593, 0.017618876, -0.0243847705, 0.0196394604, 0.00476444419, -0.0137767065, -0.00163981074, 0.0182924047, 0.0198537651, -0.00591633, -0.000195528773, 0.0153992968, 0.0104626436, -0.0106310248, 0.0348091461, 0.00722129038, 0.0168535039, -0.0056867185, -0.00680416217, 0.0456468202, 0.0105468342, 0.0110902488, 0.00145038101, 0.0311200488, -0.0158585198, -0.0205579083, 0.0024415385, 0.0138608972, 0.00897782, -0.00161206606, 0.00761163048, 0.0285177827, -0.0252726022, 0.0282575563, 0.0133327907, 0.00874055456, -0.0187669359, -0.0280432515, -0.0167769678, -0.021063054, 0.0183383264, -0.0455549769, -0.011870929, -0.015338067, -0.00822010171, 0.0284871683, -0.00718302187, -0.0130266417, -0.0228999481, 0.0218437333, -0.0196394604, 0.00178618822, -0.023803087, 0.0939877555, -0.00958246458, 0.0571580231, -0.0108223688, 0.00444681477, 0.00474913698, -0.0082124481, -0.000247071846, -0.00636024633, -0.0459529683, 0.0222570356, -0.0113581289, 0.0168228894, 0.021292666, -0.0187975504, -0.0179556403, -0.00355706899, -0.00455396669, 0.00160058541, 0.0211242829, 0.0435037762, 0.00199762243, -0.00985034555, 0.0216447376, 0.0133174825, -0.0252879094, 0.00574029423, -0.0215375852, -0.0147716906, 0.019685382, 0.0349009894, -0.0153533742, 0.0085721733, -0.0351152942, 0.0263747387, 0.015108455, -0.00828133151, -0.0132485991, -0.0037981614, 0.0129577583, 0.000234754116, -0.0027687354, -0.00111074699, -0.046320349, 0.00531933922, -0.00640234165, -0.0152002992, -0.00912324153, 0.0160269011, 0.0142359296, 0.00238604913, -0.0085721733, -0.0315027349, -0.0150242634, 0.011143825, 0.000708926353, -0.00861044135, 0.00226932974, 0.0104702972, -0.0364011191, 0.0102483388, -0.0331559405, 0.0300026052, -0.0149324192, 0.00143220345, -0.024185773, -0.0127664143, -0.00431670155, -0.0056254887, 0.00998045877, 0.00897016656, 0.00588954194, 0.0112356693, -0.0028892816, 0.0205732156, -0.0242929254, 0.00332554383, 0.001326008, -0.00104473357, -0.0211242829, -0.0169912707, -0.0223335717, 0.00735140359, -0.00892424397, -0.0300332196, -0.0221039597, -0.00207415968, 0.0319925733, -0.0026462758, 0.000226263277, -0.00675824, 0.0120852329, -0.0350846797, 0.0303087551, -0.00356472284, -0.000313802768, 0.0234357081, 0.00857982691, 0.00209520734, 0.00877117, -0.0147793442, -0.0312884301, -0.0110825952, 0.0213845093, 0.00805171952, -0.0140216257, -0.0236347057, -0.0126516093, -0.000596512284, 0.0196547676, -0.0260532834, 0.0173127279, 0.00131070055, -0.000756283756, -0.00996515062, 0.0448202193, 0.0205579083, 0.00143890048, 0.0453712866, -0.030982282, 0.0118096992, 0.044483453, 0.0128659131, -0.0491675362, -0.0255940594, -0.00243005785, -0.0082124481, 0.0318395, 0.0331559405, 0.0457998961, 0.00318969018, 0.0150854932, -0.0236500129, 0.00864871, -0.0054456261, 0.0301862955, -0.0238643177, -0.00751595898, 0.0336457789, 0.00319734402, -0.0053576082, -0.00320882467, -0.0121464627, 0.0562089607, -0.000714666676, 0.00988096, 0.014036933, 0.0053269933, 0.0167616587, 0.0231142528, 0.0272319559, 0.00769199431, 0.00434348918, 0.00658603106, -0.0163942799, -0.03075267, -0.0161952842, 0.031441506, -0.0110902488, 0.00216026418, -0.022134576, 0.0292219259, -0.0343805365, -0.0445140712, -0.0421873368, -0.0268339626, -0.0144119654, 0.0175729543, 0.00895485934, 0.00533082, 0.044483453, 0.0111132096, -0.00350731984, -0.0169453491, 0.0153610278, -0.0224254169, 0.0227621812, 0.0135624018, 0.0319925733, 0.0103937592, -0.00564079592, -0.00638320716, 0.048371546, 0.0307220556, 0.0261910502, 0.0252419878, 0.000947148597, 0.0156289078, 0.00459988927, 0.000801249407, -0.0167310443, -0.000746238278, 0.0188893955, 0.0262522791, 0.0052657635, -0.00630667, 0.0420954935, -0.0256246738, -0.0141747, 0.037778791, 0.00862574857, 0.0102100698, 0.0128352987, -0.00763841858, -0.00436262367, 0.0103707984, -0.010875944, -0.00337529299, 0.00812060293, -0.0242163893, 0.0126209939, -0.00466877269, 0.0225019548, 0.000314998644, -0.0105391806, 0.0267421175, -0.00968961697, 0.0288698543, -0.00464963866, -0.00438558497, 0.0206650589, 0.00956715737, 0.00702229328, -0.00231716549, -0.00480654, -0.0173586495, -0.0304312147, -0.00137862738, -0.027017653, 0.0317170396, -0.00384025695, -0.0127051845, -0.0100952648, 0.0143660437, 0.00332363043, 0.016333051, 0.00955950376, 0.00483332807, 0.00812825654, -0.0183995571, -0.016409589, -0.00422485685, -0.00736288447, -0.0174504947, -0.0249052234, 0.0268951934, -0.0185832456, 0.00825837, -0.00472234888, -0.00428991346, 0.00845736731, 0.0129501037, 0.00156710041, -0.0176648, -0.00791395269, -0.0257012118, 0.0156901386, -0.0141440853, -0.0233744793, 0.00741263339, -0.015414604, 0.00044630788, -0.0279207919, 0.0186444763, 0.00877882354, -0.00928396918, -0.0117025468, -0.0122153461, 0.00822010171, -0.0144808497, -0.00223106099, 0.029528074, 0.0314108916, -0.0433813184, -0.00979676936, 0.0176801067, 0.0368909575, -0.00104090676, 0.00356280943, -0.0145114642, 0.0221958049, 0.00306914398, -0.0232367124, -0.0361868143, 0.011220362, 0.0235428605, 0.0102789542, -0.0133174825, -0.00551833631, 0.00360873179, 0.00774939731, 0.00137001695, -0.00315524847, -0.0149859954, -0.000434109767, -0.0737206861, 0.00996515062, 0.00279360986, 0.048371546, 0.0498716757, 0.0169606563, 0.0383910872, 0.00808233488, -0.0139986649, 0.0176801067, -0.0232367124, -0.00816652551, -0.035635747, -0.0271860342, -0.00906966534, -0.0404422879, 0.0182311758, -0.033125326, -0.0157054458, -0.025486907, 0.0236500129, 0.0197313055, -0.00868697837, -0.0101411864, 0.00327579468, 0.0049787485, 0.0211089756, 0.0234816317, -0.0322987214, -0.0122536151, 0.0117714303, -0.00214687013, 0.0136006707, -0.0155906398, 0.0269870367, 0.0127358, 0.00176896737, -0.0305536743, -0.0223488789, -0.0130342953, -0.000534325722, 0.00456162076, -0.00452717906, -0.00343078258, -0.00766903348, 0.0319619589, -0.00867167115, -0.0110902488, 0.0217518881, -0.011258631, -0.0144961569, 0.0192720816, 0.0147257689, -0.00475296378, -0.000542936148, -0.0075618811, -0.0141670462, 0.019517, 0.0366766527, 0.0150625324, -0.0496879891, -0.0289923139, -0.0298036076, -0.0431670137, -0.000312606862, 0.00749299768, 0.066985406, 0.00227507, 0.0134705575, 0.010531527, 0.0198996868, -0.00854921155, -0.0249970686, -0.0402585976, -0.0165167395, 0.0155523708, 0.0283034779, 0.0047988859, -0.00769964838, -0.00440471899, 0.021904964, -0.00660899235, -0.0354826711, 0.0055680857, -0.0240173917, -0.0221804976, 0.00445064157, 0.0241551585, 0.00918447133, 0.00824306253, 0.0269564223, 0.0217518881, 0.0128199905, 0.00592398364, -0.00382112269, 0.0328804068, -0.0194251556, -0.0122842295, 0.0055068559, -0.0506982803, 0.0361255854, 0.00375032565, 0.0117408158, 0.00444298796, 0.00061947346, 0.0242776182, -0.0311200488, 0.0246296898, -0.00176035694, 0.0129424501, 0.0139144734, -0.00707204267, -0.00451569818, 0.00492899958, 0.02060383, 0.00390148675, 0.00396080315, 0.00942173693, -0.0180015638, -0.00487542339, 0.0335539356, 0.00767286029, -0.00417128066, -0.0132639073, 0.0345948413, 0.0130419489, -0.0119398125, 0.00172495842, 0.0163942799, 0.00678502815, -0.0148864966, 0.00819714, -0.000146855862, 0.00853390433, 0.0139297806, -0.0283494, 0.00576708233, -0.0146339238, -0.0233132485, -0.0022081, -0.0037369316, -0.00819714, 0.0119627733, -0.0143736973, 0.0116566243, 0.0226397216, -0.0272319559, -0.0128429523, 0.0190577768, -0.04120766, -0.0127204927, -0.0309210531, -0.0140981628, 0.00889363, 0.0333396308, 0.00892424397, -0.00366039434, 0.00350157963, 0.0112127084, 0.0874973908, -0.00970492419, -0.00854921155, -0.0408402793, 0.025027683, -0.0171443466, 0.0170371942, -0.00573264062, 0.0234510154, 0.00521984091, 0.0569437183, -0.00246067275, 0.00468025357, -0.00534612732, 0.00766903348, -0.0184454788, 0.0181393307, 0.0232673269, 0.0178331807, 0.00333319767, -0.0421567224, 0.00622630585, 0.0105238734, 0.0126745701, 0.00549920183, 0.0267727338, 0.000265488605, -0.00938346796, -0.0216141213, 0.00984269101, 0.026328817, -0.025716519, -0.0115341647, 0.00231333869, -0.00613828795, 0.0300485268, 0.029298462, -0.0238796249, -0.0282116327, 0.0172514971, 0.000752456894, 0.0100646494, -0.0270023439, 0.00546093332, -0.00602730922, 0.00313611422, 0.00458075479, -0.000900269486, -0.0127281463, -0.0170831159, 0.00486777, -0.0224254169, 0.0201752204, -0.0303240623, 0.00150874071, 0.00874055456, 0.00948296674, -0.000406365, 0.00531933922, 0.0131414477, -0.000354941527, 0.0316558108, -0.0119398125, -0.00179288525, -0.00712179206, 0.0324824117, -0.0296046119, 0.0037943346, -0.0251501426, 0.0126439547, 0.015720753, 0.00413683895, 0.0106233712, 0.0185679384, -0.0263900459, -0.000174122266, 0.00587806152, 0.00486394297, -0.0113045527, -0.0293903071, 0.00588954194, -0.0126516093, 0.0153533742, 0.0237112418, 0.0050361515, -0.0142818522, -0.00466111908, -0.00580917811, 0.0156901386, 0.0025314698, 0.00161397946, -0.00384025695, -0.0160115939, 0.0180474855, -0.00271707261, -0.0125674177, 0.0371358767, 0.0116336634, -0.00641382206, -0.0143583901, 0.00422868365, 0.0143966582, -0.00226358953, -0.0171902683, 0.0202517584, -0.0196088459, 0.0136695541, 0.00155179296, -0.0382686295, -0.010263646, 0.0426465608, -0.0199762248, -0.0049481336, -0.0217365809, 0.026328817, 0.000178427479, 0.0379318669, 0.0493818372, 0.00942173693, 0.00340399449, -0.0317170396, -0.00691896817, -0.00430904748, -0.0122689223, 0.0184760951, -0.0197159983, 0.0184454788, 0.0249511469, 0.0122765759, 0.00912324153, 0.00442768028, 0.0239102393, -0.00269602495, -0.0162105914, -0.0180934072, 0.00940642878, -0.000571637647, 0.0333090164, -0.00799049, -0.00690748775, 0.00295816502, 0.0169606563, -0.0246756114, -0.00476444419, -0.014802306, 0.0291760024, -0.036554195, -0.0247674566, 0.0127434535, 0.0114805885, -0.0160881318, -0.0177107211, 0.0110979024, -0.00922273938, 0.0132562527, -0.00841144472, -0.0019268255, -0.0142818522, 0.00530785881, -0.000245875941, -0.00102368579, 0.020144606, 0.011220362, 0.022746874, -0.0253644474, -0.0264512766, -0.00042454261, -3.23190543e-05, -0.0445140712, -0.000602252549, -0.00861044135, 0.0351459086, -0.00825837, -0.0110902488, -0.0129424501, 0.00585892703, 0.020833442, -0.011143825, 0.0277677178, -0.00980442297, -0.0188587811, -0.00172304502, -0.0208793636, 0.00167903607, 0.0113657825, 0.0222264193, -0.0131873693, -0.0175729543, 0.03075267, 0.0169147346, -0.0052657635, 0.00277830241, -0.00557573931, -0.0115800872, 0.0307067484, 0.0296964571, -0.0137460912, 0.00107343507, -0.0172514971, 0.0274462607, -0.0394626111, -0.0366766527, 0.00378476735, -0.020221144, -0.00816652551, -0.017174961, -0.0169453491, 0.00694575626, -0.0222111121, 0.014993649, 0.0173739567, 0.0339825414, 0.0107075628, -0.00869463291, -0.020527292, -0.0164861251, 0.00657455064, -0.0121617699, 0.021522278, 0.0132639073, 0.00110883347, -0.0209559016, -0.00194883, 0.00113562157, -0.0036795286, 0.00422485685, 0.0146875, 0.00588571513, 0.0134705575, 0.0354214422, -0.0375338718, 0.030982282, 0.0396463, -0.00200527627, 0.010263646, -0.0459529683, -0.0126669165, -0.0148176132, -0.030293446, 0.00782593433, -0.0094753122, 0.0108529832, -0.00743942149, -0.00501701748, -0.0273238011, -8.38322158e-05, 0.030293446, -0.00704142777, -0.0125291487, 0.00373310479, 0.0172514971, -0.0110902488, 0.0202364512, -0.0192567743, 0.0170371942, 0.00274768751, 0.0207262896, 0.0211548973, 0.0211702064, -0.0246756114, 0.010301915, 0.00389574654, -0.010684601, 0.00802110508, 0.00384791056, 0.0112127084, -0.0116183562, 0.00116910657, -0.00740498, 0.0290229283, -0.0152921444, 0.0351459086, -0.0146875, -0.0117331613, -0.0217518881, 0.00886301417, -0.000210118698, -0.017404573, -0.0264206622, 0.000765372592, 0.00984269101, 0.0334620886, -0.0186750907, -0.0178025663, -0.00212964928, -0.0180168711, -0.00963604078, 0.0227621812, 0.0145114642, 0.0211242829, 0.00174983311, -0.00349966623, -0.00758101558, -0.00893955212, -0.00844205916, 0.0376257151, 0.0263135098, -0.00878647715, -0.0269564223, 0.0168228894, -0.0075963228, 0.00114805892, -0.014266545, 0.0146721927, 0.0024740668, -0.0100263804, 0.0256859045, -0.0438405424, -0.00687687285, -0.010684601, 0.00358577049, -0.0180627927, -0.00642912975, 0.00254677725, 0.00369674969, -0.0055680857, 0.00290458906, 0.00145325123, 0.0165014323, -0.000811294944, -0.0186597835, -0.00570967933, 0.0148482285, -0.0078029735, 5.19915193e-05, -0.026788041, -0.00972023141, -0.00972023141, 0.000804119569, -0.0294515379, -0.00848798174, -0.0300791431, -0.0020799, 0.00275534135, -0.0228540245, -0.0144808497, -0.00601965515, -0.00622630585, -0.0113810906, -0.0114652812, -0.0201752204, 0.0098350374, -0.0200068392, 0.00622630585, 0.00358194369, 0.00414449256, 0.0155370636, 0.0101411864, -0.00573646743, 0.0274768751, -0.015338067, -0.00392253464, -0.00253721, -0.00473000249, -0.00652862806, 0.0130802179, -0.0175576471, 0.0255481377, -0.019073084, 0.0162105914, -0.0221651904, 0.0241704658, -0.00206076563, -0.00662812637, -0.0024721534, -0.00480271317, 0.0147410762, 0.0232520197, 0.0131644085, 0.0546476021, 0.000910315, 0.005533644, 0.00710648438, 0.0156671759, 0.00099211419, -0.00377902715, 0.0113198608, 0.0247368421, 0.0012628648, 0.0102942614, -0.0181699451, -0.0121541163, 0.0198690724, -0.00287588756, -0.0203129891, -0.0048601157, -0.00507442, 0.0343805365, 0.0166698154, 0.00212008203, 0.0238183942, -0.0037675465, 0.00884770695, 0.017174961, -0.023343863, 0.00191247475, -0.0139986649, -0.0142359296, -0.0331559405, -3.62954e-05, 0.0131720621, -0.00634111185, -0.0234969389, 0.0102406852, 0.0025352966, -0.00548772141, 0.0159656722, -0.0338600837, 0.00579004362, -0.00893955212, -0.0135394409, 0.00508207409, -0.0141747, -0.0294362288, 0.0171596538, 0.00826602429, 0.0143890046, -0.00348053174, -0.0174504947, 0.0125903795, -0.000740019605, -0.00919212494, 0.00513947709, -0.0131108323, -0.0338294692, -0.00650566677, -0.00073332258, 0.0135547481, -0.0019000374, -0.00290076202, -0.0080364123, -0.00496344129, 0.00312080677, -0.00472234888, -0.00099498441, 0.00861044135, -0.000840474793, 0.0210324377, -0.0054724142, 0.0214916617, -0.0201752204, -0.00864871, -0.0245072301, -0.0188128576, -0.00296964566, 0.000399907178, 0.020221144, -0.000407560903, 9.05890192e-05, -0.0105391806, 0.0262063574, 0.00819714, 0.00156136008, 0.00624926714, 0.00283187861, 0.00428225938, -0.0141976615, -0.00842675194, -0.00257356535, 0.0191649292, 0.0187363215, 0.00311123952, -0.0120622721, 0.00435497, 0.0232979413, 0.0102483388, 0.00424781768, 0.0174504947, -0.0083884839, 0.00173930917, 0.00408708956, 0.0124219973, -0.007535093, 0.0169453491, 0.0237112418, -0.0134169813, 0.00979676936, 0.00600052113, 0.000580726424, -0.00225402229, -0.00728252, 0.0131567549, 0.0110979024, 0.0240786206, 0.00884770695, 0.0370746478, -0.00911558792, 0.0341968462, 0.00628370885, 0.024798071, 0.00161971978, -0.00426312536, -0.0167157371, 0.000342265062, -0.00713327248, -0.00212964928, -0.00470321439, -0.0118020456, 0.00898547377, 0.0135470945, -0.0243082326, -0.0163024366, 0.0198690724, 0.00697254436, 0.0165932775, 0.0104320282, -0.00843440555, 0.0141593926, 0.0113810906, -0.00350157963, 0.00145229453, -0.0140828555, -0.00859513413, -0.0132562527, 0.0218437333, 0.0114958966, -0.000104700579, 0.00282039796, 0.00157762424, 0.0215528924, 0.0259767454, -0.0151773384, 0.010110572, -0.0167310443, 0.00707204267, 0.0187669359, 0.00451569818, 0.0189506244, -0.00289310841, -0.0142895058, 0.0103937592, 0.0226397216, -0.0110979024, 0.0144272735, -0.0134705575, -0.00258313236, -0.0164708178, -0.00825837, 0.0215988141, -0.0131950229, -0.00812825654, 0.00200336264, -0.0202364512, -0.00535378139, 0.0211089756, -0.0214304328, 0.0209099781, 0.00978146121, -0.0141287781, 0.0152691826, 0.00998811238, -0.00443916116, 0.0169300418, 0.005476241, 0.00754657388, 0.00850328896, -0.0174504947, -0.00646739826, -0.00850328896, 0.0123684211, 0.0104779508, -0.0112815918, 0.00678120088, 0.00092179561, 0.00653628167, -0.00190482102, 0.000711318164, -0.00546093332, 0.0191343147, 0.00572498702, 0.0141287781, 0.0078029735, 0.00505145919, 0.0182464831, 0.0241551585, 0.00524662901, 0.00280317711, -0.0110443262, -0.0140063185, -0.0173433423, -0.0105468342, -0.00588954194, -0.0219815, -0.00474913698, -0.00296199182, -0.00740880659, -0.00142072281, 0.00154987944, -0.0245990753, 0.0288698543, -0.00251807575, 0.0268339626, -0.00660516554, 0.00715623377, -0.01495538, -0.0154069504, -0.00564844953, 0.0051203426, -0.0101335328, -0.00155083614, -0.00165798841, -0.0245531518, -0.0114958966, -0.000332458701, -0.0130036799, -0.0231601745, -0.0298189167, 0.00739732618, -0.0240173917, -0.0180627927, 0.025639981, -0.000931841147, 0.00719067547, -0.00464963866, -0.0160115939, -0.00764607219, 0.00458840886, -0.00359151093, -0.0440548472, 0.00232673273, 0.000595555524, 0.0125980331, -0.0127587607, 0.0230683293, 0.0184301715, -0.00142167963, -0.000145779559, -0.00540353032, -0.00304235611, -0.011105556, 0.0290229283, -0.00131165725, 0.00530785881, 0.0127128391, -0.039034, -0.0133787123, 0.00499022938, -0.00624926714, -0.000163957156, -0.00620334456, -0.0193945412, -0.0115112038, -0.00185889867, 0.0157360602, -0.010301915, 0.00272281305, -0.00820479449, 0.0121694244, -0.00137862738, 0.0188587811, 0.00931458455, 0.0217059664, 0.00781445391, 0.00858748052, 0.0224713385, -0.0130878715, 0.00292372331, 0.00742411427, 0.000114805887, -0.0170831159, 0.00284909946, -0.000511842896, -0.00940642878, 0.0120316567, 0.00381920929, 0.00608088495, 0.0179403331, 0.0313190445, -0.0126669165, -0.00936050713, -0.00791395269, -0.000490795181, -0.0050629396, 0.00196509412, 0.000930884387, 0.00445446838, -0.00106291112, 0.00763841858, -0.0358194374, -0.00351497368, 0.0126286475, 0.00198614178, 0.0108147142, -0.0215988141, 0.00708352309, -0.0351459086, -0.0115571264, 0.000314281118, 0.00462667737, -0.00435879687, 0.0160422102, -0.00743942149, -0.00251233554, -0.0026462758, -0.0237112418, -0.0375032574, 0.000649609952, 0.0326048732, 0.0164861251, 0.0149477264, 0.0198537651, -0.0144808497, 0.00593163772, 0.0025352966, 0.00271515921, -0.0142359296, 0.0140598947, 0.0228999481, 0.00908497255, -0.00287588756, -0.00458075479, -0.0177872591, 0.00381538225, 0.000885440386, -0.00915385596, -0.0134475967, -0.00254869065, -0.00430139387, 0.0375338718, 0.0147104608, -0.0239102393, 0.00755422749, -0.00894720573, 0.0212314352, -0.000448221312, 0.00390148675, -0.0117025468, -0.0379930958, -0.0119627733, -0.0206650589, -0.0146721927, 0.028456552, 0.0167310443, 0.0110060582, -1.18244088e-05, 0.0119780805, 0.00740498, 0.015797291, -0.00129156618, 0.0242316965, 0.0116336634, -0.015491141, 0.0168228894, 0.0114958966, -0.00686156517, -0.0131567549, 0.0317782685, -0.000378381083, -0.00443916116, 0.0266196579, 0.00606557773, -0.0209252872, 0.00721746357, 0.0122383079, -0.0117867375, 0.00766520621, -0.011679586, -0.00751978578, -0.00901608914, 0.000998811214, -0.00214878353, -0.00500936341, 0.0079828361, 0.0037350182, 0.0140139721, -0.000426456041, -0.00102177239, 0.0275993347, 0.016179977, 0.00428991346, 0.0145114642, 0.0100187268, 0.0143583901, 0.00484863529, -0.00172591512, 0.0248439945, -0.00533464691, -0.00317629613, 0.00135949301, 0.0143583901, 0.010034035, -0.0317782685, -0.000984460465, -0.000664439052, -0.0133863669, 0.00357428985, -0.00343652279, -0.00111266039, -0.00174409279, -0.000574986159, -0.00278021581, 0.0177719519, 0.00261374726, -0.00644061, 0.0225631837, -0.0188587811, -0.019302696, -0.0150166098, 0.00962073356, 0.0177413356, 0.0108223688, -0.0194404628, -0.0199456103, -0.00972023141, 0.00705673499, -0.00720981, -0.001268605, 1.49486837e-07, -0.0101641482, -0.0013547095, -0.0321762636, 0.0098886136, 0.0272013415, -0.00850328896, 0.00819714, -0.00179192855, -0.00578239, 0.000434827292, 0.00542266481, -0.0222570356, 0.011335168, -0.00471086847, 0.0264665838, 0.0253950618, -0.00559104653, -0.010761139, 0.0136695541, -0.0112356693, 0.0109295202, -0.00459606247, 0.0221651904, -0.0116489707, -0.0188587811, -0.0174198803, -0.0268951934, -0.00312272017, -0.002652016, 0.0107458308, -0.00247024, 0.0153151052, -0.00729400059, 0.0196547676, -0.0208028276, 0.00586658064, -0.00181680312, 0.0288851615, -0.00348435878, 0.0185679384, 0.000852433732, -0.0279514063, 0.00738201849, -0.00396080315, 0.0199609175, 0.00440089218, 0.0113428216, -0.0076537258, -0.0162565131, -0.0232520197, -0.0108223688, 0.00687304558, 0.00174696289, -0.00970492419, 0.0153533742, -0.0170065779, -0.0136236316, -0.0123454593, 0.023343863, -0.00437410409, -0.00297155906, 0.00900078192, 0.0181240235, -0.0305842888, -0.00151830784, 0.00455779396, 0.0186291691, 0.0209099781, -0.0114193587, -0.0077685318, -0.0281197894, 0.0050897277, 0.00597756, 0.0188893955, -0.0115800872, 0.00805937313, -0.0236500129, 0.00335041853, 0.00900843553, 0.00932989176, -0.00314185442, -0.0315027349, 0.00610767305, 0.00641382206, 0.00493282638, -0.0201292988, -8.67023628e-05, 0.0107687926, 0.0245837681, -0.011335168, -0.0191343147, 0.000991157489, -0.0182770975, 0.0118479673, 0.0238490105, -0.00820479449, -0.0208487492, -0.00819714, -0.000828994205, 0.0217059664, -0.00178905844, 0.0077991467, 0.00881709252, 0.00145803473, 0.0187975504, 0.000979198492, -0.00248554745, 0.00146090495, -0.0139680495, 0.00173356885, -0.0052963784, -0.0200068392, 0.0212773569, 0.0122459615, 0.00796752889, -0.0178944115, 0.00125903788, 0.00350923324, 0.00716006057, -0.00757336151, 0.00386895845, 0.0102406852, 0.0115265111, 0.000673049537, 0.0112968991, -0.020144606, -0.0183842499, 0.00400289847, 0.0144885033, -0.0196700748, 0.0224713385, -0.0303852912, -0.010340184, -0.0113887442, 0.00067544129, -0.0154222576, 0.00678120088, -0.00549920183, 0.0177260283, -0.0169759635, -0.00393018825, 0.00675824, -0.00724425167, -0.0209405944, 0.00935285259, -0.00564844953, 0.0181852523, -0.0125980331, -0.00242240424, -0.00029634271, -0.00353028113, -0.00495196041, -0.00286249351, -0.00313611422, 0.0080976421, -0.00352262729, 0.0105468342, -0.00934519898, -0.0227927957, 0.000999767915, -6.69701039e-05, 0.00513565, -0.0102483388, 0.0083884839, 0.0140905092, -0.00655541616, 0.00261566089, -0.00605027, 0.015223261, 0.00897016656, -0.00162354659, -0.0242929254, -0.00141306908, 0.0076231109, 0.00109161262, -0.0285943188, 0.00233055954, 0.00318395, 0.000255443098, -0.00671614427, -0.00416362705, 0.00195552688, 0.0160269011, 0.00461519649, -9.29210146e-05, 0.0135700563, -0.00423633726, -0.0163024366, -0.00562166143, -0.00552981673, 0.00168381969, -0.00159006158, 0.0104396818, 0.000848606869, -0.0137078231, -0.0352989845, 0.0224407241, -0.00605409732, 0.00133366173, -0.00404499425, -0.00112988125, -0.0315333493, 0.00278021581, -0.00195457018, -0.00629901653, -0.0167310443, 0.0113581289, -0.00860278774, 0.0156901386, 0.0184301715, 0.0228540245, 0.0118173528, -0.00892424397, 0.00945235137, 0.0270788819, 0.00327579468, -0.00374267204, -0.0324517973, 0.0306608249, 0.000679746503, -0.00616124924, -0.00875586271, -0.000586466747, -0.0224407241, -0.00346713769, 0.0012973065, 0.0224560313, -0.0127128391, 0.010761139, 0.00634111185, -0.0018952539, 0.00643295655, -0.00939112157, 0.000737627852, -0.0102024162, -0.000713231566, 0.00502084428, -0.00696871756, 0.000315477024, 0.00557956612, -0.00376371969, -0.0266349651, 0.000688835338, 0.0240786206, -0.0144119654, -0.0386666246, -0.00523514859, 0.0153533742, -0.0200527608, 0.00113657827, -0.00415597297, 0.00225976249, 0.0023841355, -0.00366804819, -0.00309975888, 0.00610001944, 0.00645974465, -0.0206803679, -0.0237724725, -0.0125214951, -0.0285637043, 0.0127358, 0.0217518881, 0.0225478765, 0.00411005085, -0.00140924228, -0.00729400059, 0.0142435841, 0.0150778396, 0.00130113342, 0.0349622183, -0.00313802762, 0.0097125778, -0.000625692075, 0.00189142697, -0.0272778794, -0.00426695216, -0.00748917088, 0.0245378446, 0.0202058367, 0.0180321783, -0.00579769723, -0.00254295045, -0.010301915, 0.0153839886, -0.0242470037, -0.0105774486, 0.0002372655, -0.00755422749, 0.00436645048, 0.00972023141, 0.00961308, -0.0106539866, -0.00208181352, 0.00500171, 0.00708735, -0.0128812203, -0.00252381619, 0.0158891343, 0.00677354727, -0.0146033093, 0.00172017491, -0.010416721, -0.0180168711, -0.00125999458, 0.00458075479, -0.023359172, 0.00118154392, -0.00532316649, -0.00577473594, -0.00507442, 0.00309019187, -0.0115724336, -0.00580917811, -0.000850998622, 0.00161397946, 0.01156478, 0.0253950618, -0.0133327907, -0.0140828555, -0.00313228718, 0.0225784909, 0.00485246209, 0.00381729566, 0.010263646, 0.0159656722, -0.0156136006, -0.00795987528, 0.0211702064, -0.015338067, -0.0218590405, 0.0085109435, -0.00794456713, 0.00414066575, -0.00710648438, 0.00722511718, 0.0290841591, -0.00453483267, 0.00585892703, 0.018460786, 0.0271248035, -0.00199762243, 0.00315333507, 0.000939494872, -0.00616890285, -0.00495196041, -0.00990392081, 0.0198690724, -0.0284259375, -0.0132179847, 0.00398376444, 0.00050514593, 0.00162833021, 0.00884005334, 0.00273429346, 0.0104779508, -0.0171902683, -0.0138226291, 0.00824306253, -0.00476061739, -0.0239867773, -1.85513163e-05, -0.00297538587, 0.0209099781, -0.0134475967, 0.0171443466, 0.024874609, 0.00170391076, 0.00381155545, 0.00653245486, -0.0162412059, 0.002527643, -0.0107534844, 0.0256705973, -0.0026539294, -0.0225784909, 0.0104320282, -0.0180168711, 0.0259155165, 0.000236189197, -0.00675824, -0.00913089514, -0.0294821523, 0.0154452184, -0.0206497516, 0.0185985547, 0.00427460577, -0.00566375721, -0.015491141, -0.0208793636, -0.0180474855, 0.00454631308, -0.0117790839, -0.00748917088, 0.00933754537, -0.0194098484, 0.0218743477, -0.000524758594, -0.0127664143, 0.0226091053, -0.0172055755, 0.0102024162, 0.015414604, 0.0165932775, -0.00569437211, 0.0280279443, 0.0131950229, 0.0144425808, -0.0118785826, -0.00832725409, 0.00869463291, -0.00412535807, 0.013807321, 0.0246603042, 0.0073284423, 0.00665874127, -0.0281197894, -0.00307488441, 0.00395697635, 0.00162546, -0.0113887442, 0.020833442, 0.00926100835, 0.00861809496, -0.0138226291, 0.0053843963, -0.0120622721, 0.0309210531, -0.0177566446, 0.00831194595, 0.0219968073, -0.0326048732, -0.0114805885, 0.0247521494, -0.0116642779, -0.0132639073, 0.0249664541, -0.0200680699, -0.0122689223, -0.00236117444, 0.00616890285, 0.00240518339, 0.00328153488, 0.00277830241, -0.00673910556, 0.000722320401, 0.00998045877, -0.0180474855, 0.0172668062, -0.00499405619, -0.00228846399, 0.00319734402, -0.0283800159, -0.00385173759, -0.00222149398, 0.00871759374, 0.0195629224, 0.00202441053, 0.011105556, -0.0125061879, 0.00995749701, -0.0172974207, -0.010034035, 0.0230530221, 0.0115035502, 0.0135700563, 0.0244613085, 0.00353028113, 0.00438175816, 0.00423633726, -0.0152309146, -0.000602730899, 9.23828629e-05, -0.0004675948, 0.0178178735, -0.0228999481, 0.0135241337, 0.00596607942, 0.00824306253, -0.0085721733, 0.00162546, -0.0166545082, -0.00140254525, 0.0132332919, -0.00348818558, 0.0125674177, -0.00916151, -0.00266923686, -0.00635259226, -0.014840574, 0.00228846399, -0.00992688257, 0.00451569818, 0.0133404443, -0.00812060293, -0.0148176132, 0.00676206686, 0.00951358117, -0.00445064157, 0.00478740549, -0.00877117, -0.0208793636, 0.0256093666, -0.0138991661, -0.0235581677, 0.00666639535, -0.0269870367, -0.0187822431, -0.00285483967, -0.00453865947, -0.0115188574, -0.026711503, 0.0082124481, 0.0175117254, 0.00397611037, 0.00054771977, -0.0012360767, 0.0122076925, -0.00355706899, -0.0175576471, -0.0337988548, -0.00562931551, 0.0201752204, -0.00724042486, 0.0452488288, -0.0129654119, -0.00672379835, 0.0128582595, -0.0128352987, -0.00312272017, 0.00650184, -0.0012332066, 0.0124679189, 0.00795987528, 0.00358959753, -0.0102177244, -0.0136389397, -0.00802875869, 0.0173892658, 0.013615978, 0.0123301521, -0.00620717183, 0.00795222074, -0.00273429346, 0.015376335, 0.00901608914, -0.0248439945, 0.0056867185, -0.00370440329, -0.00117963052, 0.0174658019, -0.0191955436, 0.0073858453, 0.016792275, -0.0132332919, -0.000737627852, -0.0168381967, -0.0162412059, -0.00962838717, -0.00548772141, 0.0048601157, -0.0212467425, 0.0125980331, -0.00247980724, 0.00104664697, -0.0149783418, 0.0166851226, -0.0175423399, 0.0180015638, -0.0121464627, 0.00419041468, 0.0102406852, -0.00548772141, -0.00464581139, -0.0079828361, 0.00330449617, 0.0147946524, 0.00333893788, 0.00373310479, -0.0083196, -0.00548772141, -0.0214151256, -0.00898547377, -0.0648423657, -0.00668935617, 0.0272319559, 0.0154834874, -0.00698019797, 0.0170831159, -0.00865636393, -0.0101947626, 0.00468025357, 0.00552981673, 0.0144272735, 0.0113428216, 0.00430904748, -0.000820862071, 0.000453961606, 0.0094753122, -0.0108453296, -0.00471086847, 0.00202441053, -0.0105927568, -0.00808233488, -0.030293446, 0.0075044781, -0.00557956612, -0.00618803734, 0.00806702673, 0.00200910307, -0.026941115, -0.000149247659, -0.00554895122, -0.00944469776, -0.0132026775, 0.00279360986, -0.0048295008, -0.000931362738, -0.0108070606, 0.00358003029, -0.0170678087, 0.00873290095, 0.00959011819, -0.00615742244, -0.0170984231, 0.00539205, -0.0209712088, -0.0108682904, 0.020374218, -0.0116260098, 0.00955950376, -0.0281044804, 0.010072303, -0.0104473354, 0.0140752019, 0.00530785881, -0.000436262373, 0.0173127279, -0.000880178472, -1.01576306e-05, -0.0158279054, 0.0183383264, -0.00854921155, 0.0108989058, 0.0112739382, -0.0014762124, -0.00351880048, -0.00386895845, 0.0238490105, -0.00859513413, 0.00557191251, -0.00405647466, 0.0241398513, -0.00214112969, -0.0183689427, -0.010110572, 0.0176954139, -0.0138991661, 0.00671614427, -0.00540735712, 0.00205693883, 0.00805171952, 0.0128276441, 0.0083349077, 0.00908497255, 0.00543797202, 0.00130400353, 0.0131797157, 0.016103439, -0.00322604552, -0.00753892, -0.00189429719, -0.0218437333, 0.0185220167, 0.0102789542, 0.00897782, 0.0276146419, 0.019685382, 0.023956161, -0.0154299112, 0.000370966533, 0.0159350578, -0.00970492419, 0.00962838717, 0.0179556403, 0.0295586884, -0.00675824, 0.0140292794, -0.0347785316, 0.00101029186, 0.00242623105, -0.0018703792, 0.0018378509, 0.0151008014, 0.00298112631, 0.00102846941, -0.000261900917, 0.0431057848, 0.0244306922, 0.0180168711, -0.00536526181, -0.0211395901, 0.00563696912, 0.00674675917, -0.0336151645, 0.00932989176, -0.00674293237, 0.00406030146, -0.00123033638, -0.0138149755, 0.00137575727, -0.00701463968, -0.0165014323, 0.021904964, 0.0171596538, 0.0114117051, -0.0131337931, -0.0132945217, -0.0400442928, -0.00451569818, 0.000490795181, 0.0148482285, -0.00607705815, 0.00926100835, 0.00820479449, 0.0273238011, -0.00781445391, -0.0262369718, -0.0136542469, -0.0194098484, 0.0340131558, 0.0023841355, -0.00231333869, 0.00817417912, -0.00388043909, 0.0121081946, 0.0178025663, 1.65182955e-05, 0.0187516287, 0.0150089562, -9.68674649e-05, 0.00906201173, -0.0181546379, 0.0122612687, 0.00477592507, -0.00405264786, -0.00901608914, -0.00769964838, 0.00462667737, -0.0128582595, -0.0135164801, 0.0256093666, -0.0175117254, 0.0429833233, -0.00634111185, 0.0165779702, 0.00418276107, 0.00166372862, 0.00839613751, -0.00433583558, 0.00965134799, 0.00361255859, 0.00961308, 0.00751978578, 0.00875586271, 0.0142971594, 0.00665491447, -0.00712561887, -0.0234663226, 0.00944469776, 0.00713709928, 0.00774939731, -0.012291884, 0.0162412059, 0.0178178735, -0.00516626472, 0.0073858453, -0.0252113733, 0.0053843963, -0.00561018102, 0.0217671972, 0.0163024366, 0.014036933, 0.0101029184, -0.00315907528, 0.00010661401, -0.0037350182, 0.00648270594, -0.0139297806, 0.00626074756, 0.00331023638, -0.00641764933, -0.0144885033, -0.0169300418, 0.00665874127, -0.027170727, 0.00310549932, -0.00472234888, -0.00345183024, -0.000986373867, 0.0139144734, -0.00443916116, 0.0172668062, -0.000218131187, -0.00151352433, 0.0167004298, 0.00277256221, 0.0125903795, -0.00567141082, -0.00474531, 0.0234969389, -0.000242886206, -0.00893955212, 0.0115035502, -0.0143583901, 0.0138302827, 0.00384982419, 0.0144885033, -0.0129347965, -0.00304618292, 0.00730165467, -0.0157666747, -0.00273238, -0.00386513164, 0.00699550519, -0.00421720278, -0.00186272548, 0.00212199544, 0.0182158668, -0.0140905092, 0.00865636393, -0.0171290375, -0.0128735667, -0.00564079592, -0.00188568665, 0.00347670494, 0.00932223815, 0.0272931866, 0.00482184719, -0.0119780805, 0.0128812203, -0.0191649292, 0.0052695903, 0.00386130461, -0.0037350182, 0.0112050548, -0.0119933886, -0.0218590405, -0.00151161081, 0.00782210752, -0.000548676471, -0.00159962871, -0.0207415968, 0.00304426951, -0.0132485991, -0.0179250259, -0.011679586, 0.00680798898, -0.0112968991, -0.00846502092, -0.00237839529, -0.00106482464, -0.0322681069, -0.015223261, 0.00313994102, -0.0134093277, 0.00329110213, 0.014917112, -0.00918447133, -0.0264206622, -0.00278595625, -0.0152691826, -0.0215835068, -0.00546476, 0.0156289078, 0.00805937313, 0.000900747837, -0.00920743216, -0.0141823543, 0.0112509774, -2.51287365e-05, -0.00644443696, -0.00111074699, -0.00459223567, -0.00453865947, -0.00605027, 0.00998811238, 0.0191649292, -0.0316864252, -0.0119015435, -0.0109295202, -0.000304713962, -0.0227927957, -0.0211548973, -0.00678885495, 0.0108529832, -5.90174022e-05, 0.0228234101, 0.0202517584, -0.0135777099, 0.0134705575, -0.00469938759, -0.00963604078, -0.00333702448, 0.0122612687, -0.0126516093, 0.0105774486, -0.00923804753, -0.011067288, -0.000674962939, -0.0153304124, -0.000179742972, 0.0026788041, -0.0101641482, -0.00422868365, -0.00316864252, -0.00136523333, -0.00505528599, 0.014802306, -0.0131261395, -0.0173127279, 0.015299798, 0.015261529, 0.00437410409, 0.0232060961, -0.0191343147, 0.000639564474, 0.0226550288, -0.021063054, 0.00317438273, -0.00176322705, 0.0183995571, 0.0106157176, -0.0144272735, 0.00461902376, 0.0242010802, 0.00298686652, -0.000313085213, 0.00806702673, -0.0100263804, 0.00864871, -0.00612298073, 0.0171290375, 0.00354750198, -0.0112509774, -0.0109371739, -0.00212390884, 0.0179403331, 0.00430522067, 0.00970492419, 0.0079751825, -0.0038593912, -0.00621099863, -0.00294477097, 0.0131184859, 0.00398376444, 0.0674140155, 0.0144349271, 0.0124832271, -0.0251501426, 0.0139297806, 0.00166564214, -0.0107917534, 0.0450039096, 0.0050055366, 0.0124066891, -0.0168994274, 0.014036933, -0.019991532, 0.00614976883, -0.0111820931, -0.0136389397, -0.019073084, 0.00914620236, 0.00758101558, 0.00404499425, 0.00591633, 0.00138054078, -0.00832725409, -0.0115571264, 0.00343652279, 0.0152385682, -0.0187057052, -0.016792275, -0.017404573, 0.00184454792, -0.0098350374, 0.0264818911, 0.0047376561, -0.014993649, -0.025869593, 0.000757718866, 0.0260379761, 0.0237571653, 0.00294477097, -0.00968961697, -0.000255443098, -0.0114805885, -0.00362021243, -0.0106539866, 0.0124066891, 0.00674675917, 0.0151696848, -0.0178791042, -0.00985799916, -0.00897782, 0.00932223815, -0.00552981673, -0.00446594879, -0.0105162188, -0.00395314954, 0.0205426, -0.0114652812, 0.0132715609, 0.0310741272, -0.0100646494, 0.010952482, 0.00485246209, -0.00745855598, -0.00473000249, -0.017174961, -0.00771878241, -0.0231295601, 0.0146568846, 8.52672893e-05, -0.000416888885, 0.0189812407, -0.0051815724, -0.00653628167, -0.00317438273, -0.00105238729, -0.00240327, 0.00910028, 0.0271094963, -0.0097585, 0.0107305236, -6.63721512e-05, 0.00718684867, 0.00568289123, -0.00243388489, 0.00764989899, -0.0118403137, 0.00194691645, -0.0132868681, -0.0160575174, 0.0125827249, 0.0171902683, 0.0406565927, 0.00646739826, 0.00118250062, 0.0268951934, -0.00477209827, 0.00646739826, 0.0189353172, 0.0128735667, -0.00162737351, 0.0026539294, -0.00153457199, -0.00646739826, -0.0128735667, -0.00916916318, 0.0244919229, -0.0138302827, 0.00411387766, 0.0310741272, -0.0150625324, 0.0188740883, 0.0257777479, 0.0114117051, 0.0180168711, -0.00322795892, 0.0127817225, 0.0116183562, 0.00644826423, -0.00400289847, -0.00554512441, 0.01495538, 0.00811294932, -0.0140828555, -0.00390722696, 0.00248937425, -0.0196241532, 0.0225631837, 0.0150778396, 0.00663195364, 0.00653245486, 0.00929162279, 0.00722129038, 0.0245225374, -0.00293137692, 0.000995941111, 0.0255940594, -0.0259308238, -0.0102406852, -0.0112356693, 0.00325666042, 0.0274309535, 0.00511268899, 0.0126745701, -0.00307488441, -0.00329875574, 0.0134246349, 0.00748917088, 0.00119972148, 0.0225478765, -0.0290841591, -0.0117178541, 0.0243694633, 0.0305842888, -0.0138302827, 0.022517262, -0.0080364123, 0.00657455064, -0.021292666, 0.0298036076, -0.00012963498, 0.00102272909, -0.00376946, 0.0173280351, -0.023343863, 0.0117790839, -0.0135777099, 0.0234663226, 0.00520453369, 0.00832725409, 0.0111667858, -0.00159771531, 0.0171443466, -0.0184760951, 0.00223871483, -0.0128046833, 0.00999576598, 0.00634111185, 0.0140216257, -0.0286402423, -0.00542266481, -0.0128735667, 0.00593929132, -0.00354558858, 0.0462591201, 0.00647505186, -0.00136140652, -0.0258236714, -0.0178331807, 0.0271248035, 0.0243082326, -0.00317629613, -0.0274156462, -0.0183842499, -0.0186750907, 0.00236117444, -0.00293711736, -0.00103612314, -0.0104320282, -0.0237418581, -0.0133021753, -0.00284527265, -0.0026481892, 0.000790725579, 0.0174658019, -0.00286249351, 0.0337988548, -0.00858748052, 0.0220121164, -0.00458458159, 0.000327914313, 0.00086439267]
16 Jan, 2025
Remote Procedure Call (RPC) in Operating System 16 Jan, 2025 Remote Procedure Call (RPC) is a powerful technique for constructing distributed, client-server based applications. It is based on extending the conventional local procedure calling so that the called procedure does not exist in the same address space as the calling procedure. The two processes may be on the same system, or they may be on different systems with a network connecting them. What is Remote Procedure Call (RPC)? Remote Procedure Call (RPC) is a type of technology used in computing to enable a program to request a service from software located on another computer in a network without needing to understand the network’s details. RPC abstracts the complexities of the network by allowing the developer to think in terms of function calls rather than network details, facilitating the process of making a piece of software distributed across different systems. RPC works by allowing one program (a client) to directly call procedures (functions) on another machine (the server). The client makes a procedure call that appears to be local but is run on a remote machine. When an RPC is made, the calling arguments are packaged and transmitted across the network to the server. The server unpacks the arguments, performs the desired procedure, and sends the results back to the client. Working of a RPC 1. A client invokes a client stub procedure, passing parameters in the usual way. The client stub resides within the client’s own address space. 2. The client stub marshalls(pack) the parameters into a message. Marshalling includes converting the representation of the parameters into a standard format, and copying each parameter into the message. 3. The client stub passes the message to the transport layer, which sends it to the remote server machine.  On the server, the transport layer passes the message to a server stub, which demarshalls(unpack) the parameters and calls the desired server routine using the regular procedure call mechanism. 4. When the server procedure completes, it returns to the server stub (e.g., via a normal procedure call return), which marshalls the return values into a message. 5. The server stub then hands the message to the transport layer. The transport layer sends the result message back to the client transport layer, which hands the message back to the client stub. 6. The client stub demarshalls the return parameters and execution returns to the caller. How to Make a Remote Procedure Call? The calling environment is suspended, procedure parameters are transferred across the network to the environment where the procedure is to execute, and the procedure is executed there. When the procedure finishes and produces its results, its results are transferred back to the calling environment, where execution resumes as if returning from a regular procedure call. Note : RPC is especially well suited for client-server (e.g. query-response) interaction in which the flow of control alternates between the caller and callee. Conceptually, the client and server do not both execute at the same time. Instead, the thread of execution jumps from the caller to the callee and then back again. Types of RPC Callback RPC: Callback RPC allows processes to act as both clients and servers. It helps with remote processing of interactive applications. The server gets a handle to the client, and the client waits during the callback. This type of RPC manages callback deadlocks and enables peer-to-peer communication between processes. Broadcast RPC: In Broadcast RPC, a client’s request is sent to all servers on the network that can handle it. This type of RPC lets you specify that a client’s message should be broadcast. You can set up special broadcast ports. Broadcast RPC helps reduce the load on the network. Batch-mode RPC: Batch-mode RPC collects multiple RPC requests on the client side and sends them to the server in one batch. This reduces the overhead of sending many separate requests. Batch-mode RPC works best for applications that don’t need to make calls very often. It requires a reliable way to send data. What Does RPC do? RPC stands for Remote Procedure Call. It lets a program on one computer use code on another computer as if it were on the same computer. When a program with RPC is made ready to run, it includes a helper part called a stub. This stub acts like the remote code. When the program runs and tries to use the remote code, the stub gets this request. It then sends it to another helper program on the same computer. The first time this happens, the helper program asks a special computer where to find the remote code. The helper program then sends a message over the internet to the other computer, asking it to run the remote code. The other computer also has helper programs that work with the remote code. When the remote code is done, it sends the results back the same way. This whole process makes it seem like the remote code is running on the local computer, even though it’s actually running somewhere else. Issues of the RPC RPC Runtime: RPC run-time system is a library of routines and a set of services that handle the network communications that underlie the RPC mechanism. In the course of an RPC call, client-side and server-side run-time systems’ code handle binding, establish communications over an appropriate protocol, pass call data between the client and server, and handle communications errors. Stub: The function of the stub is to provide transparency to the programmer-written application code. On the client side, the stub handles the interface between the client’s local procedure call and the run-time system, marshalling and unmarshalling data, invoking the RPC run-time protocol, and if requested, carrying out some of the binding steps. On the server side, the stub provides a similar interface between the run-time system and the local manager procedures that are executed by the server. Binding: The most flexible solution is to use dynamic binding and find the server at run time when the RPC is first made. The first time the client stub is invoked, it contacts a name server to determine the transport address at which the server resides. Binding consists of two parts Naming: A Server having a service to offer exports an interface for it. Exporting an interface registers it with the system so that clients can use it. Locating: A Client must import an (exported) interface before communication can begin. The call semantics associated with RPC Retry Request Message: Whether to retry sending a request message when a server has failed or the receiver didn’t receive the message. Duplicate Filtering: Remove the duplicate server requests. Retransmission of Results: To resend lost messages without re-executing the operations at the server side. Advantages Easy Communication: RPC lets clients talk to servers using normal procedure calls in high-level programming languages. This makes it simple for programmers to work with. Hidden Complexity: RPC hides the details of how messages are sent between computers. This means programmers don’t need to worry about the underlying network communication. Flexibility: RPC can be used in both local and distributed environments. This makes it versatile for different types of applications. Disadvantages Limited Parameter Passing: RPC can only pass parameters by value. It can’t pass pointers, which limits what can be sent between computers. Slower Than Local Calls: Remote procedure calls take longer than local procedure calls because they involve network communication. Vulnerable to Failures: RPC depends on network connections, other machines, and separate processes. This makes it more likely to fail than local procedure calls. RPC vs REST RPC and REST are two ways to make computer programs talk to each other over the internet. They’re different, but both are useful. RPC is good for some things, and REST is good for others. Some companies need RPC, while others prefer REST. Sometimes, developers use both RPC and REST in the same project, but not in the same part of the program. RPC is an old idea, but new versions like gRPC and DRPC are making it popular again. Developers are still using and improving these new types of RPC. It’s hard to say which one is better – RPC or REST. They’re both good when used the right way. The best choice depends on what you’re trying to do with your program. Conclusion Remote Procedure Call (RPC) in operating systems allows programs to run functions on other computers as if they were on the same machine. It simplifies building distributed programs by hiding the complexities of network communication. RPC works by having the operating system handle the details of sending requests and receiving responses between computers. While it makes programming easier and enables better use of multiple computers, RPC can be slower than local function calls and depends on network reliability. Despite these challenges, RPC remains a useful tool for creating systems that work across multiple computers, making it an important concept in modern operating systems. Frequently Asked Questions on RPC – FAQs What is RPC in simple terms? RPC is like a phone call between computers. It lets a program on one computer use a function on another computer as if it were on the same machine. Why is RPC useful in operating systems? RPC makes it easier to create programs that work across multiple computers. It hides the complex details of network communication, so programmers can focus on writing their main code. What’s a drawback of using RPC? RPC can be slower than running functions on the same computer. This is because it takes time to send requests and receive responses over a network. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System
https://www.geeksforgeeks.org/remote-procedure-call-rpc-in-operating-system?ref=asr8
PHP
Remote Procedure Call (RPC) in Operating System
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.048011791, -0.0160988159, -0.0220765695, 0.0395354033, -0.00651148055, 0.0218868, 0.012833192, 0.0244012494, -0.0125959795, 0.0270738434, 0.0226616934, -0.00705311587, 0.0252394, -0.0464620031, -0.0219974983, 0.0260142945, 0.00400691293, 0.0045781997, -0.00903779268, 0.00638892082, 0.0335892774, -0.0110778194, -0.0347911529, 0.0164625421, -0.0226458777, 0.0169053376, 0.00107338617, 0.000867307885, -0.0153555498, 0.0245435778, 0.0134420367, 0.00925919134, 0.0111885192, -0.00277340855, 0.0129755186, -0.00769754266, -0.0387763232, -0.0360562876, -0.0106113022, -0.0296357367, -0.0218551699, 0.0253026579, 0.0246859044, -0.00442005787, -0.0109513067, 0.0185341965, 0.00655892305, -0.0126592359, 0.0117262006, -0.0136001781, -0.0135369217, -0.0289557278, 0.0726818815, 0.0416861288, 0.0185341965, 0.0112992181, 0.0270264018, -0.0247966051, -0.0274850111, -0.0559188724, 0.0399149433, 0.0162569582, 0.00598566, -0.0460508354, 0.0283231623, 0.0180281438, -0.0540844314, 0.0444377922, 0.025097074, -0.0391242355, -0.0498146079, 0.00579984346, -0.0205425955, -0.00279119937, -0.00747219101, 0.0249863733, 0.0366572253, 0.0240691528, 0.0201630555, -0.00873732381, 0.00428168382, 0.0267101172, 0.00655496959, -0.0323399603, 0.0173639487, 0.00100073987, -0.00539262872, -0.0582909957, 0.0641738623, 0.0114415456, 0.00230491394, 0.00291178236, 0.0273743123, -0.0172216203, 0.00688311365, -0.00787149835, -0.00890337303, 0.00384284114, -0.0388079509, 0.0485811, 0.010824793, -0.00876104552, -0.00576821528, -0.030268304, 0.0141220456, -0.00654706266, -0.0263305772, 0.0299045779, 0.0377325863, 0.0793238282, -0.0184709392, -0.0136001781, 0.0121294614, 0.00348504563, -0.0341269597, 0.0110382847, -0.00146577507, -0.0374163054, -0.0372897908, 0.00578402914, 0.0127699347, 0.025666384, -0.00475610886, 0.0207798071, -0.0602519512, 0.0112992181, 0.00482727261, 0.00984431524, -0.0156085771, 0.0165257975, -0.029793879, 0.0174430199, -0.0134578506, -0.00785963796, 0.0201946832, -0.00323399599, 0.0317864642, 0.0327036865, 0.0293827113, -0.0126829566, 0.000152581939, -0.0172848776, -0.024812419, -0.016668126, 0.0136397136, 0.00984431524, -0.02740594, 0.0285445601, -0.0421921797, 0.0249547455, -0.0298255067, -0.0237054266, 0.00225549471, -0.000771434512, 0.00603310252, 0.00101408304, 0.0291929413, 0.0358981453, -0.0168895237, 0.00126414443, 0.0166048687, -0.0296515524, -0.00537286093, -0.0142564662, 0.0233575162, 0.0282282773, 0.0454815254, -0.00989175774, -0.0712902397, 0.0353920907, -0.040136341, 0.0190402493, 0.0227882061, 0.0383335277, -0.00359969842, 0.00583542557, -0.00221398263, 0.011979227, -0.0219658688, 0.0044754073, -0.0209379494, -0.0274533834, -0.0202104971, -0.00172967382, 0.0152685726, 0.0333046243, 0.0124220233, -0.00599356694, -0.0180123299, -0.020605851, -0.00470866635, -0.00513564888, 0.0390926041, 0.0543058291, -0.0108168861, 0.00195008377, -0.0436470844, 0.0395354033, 0.0255873129, -0.00296713202, -0.0423186943, -0.0432675444, -0.00604496291, 0.00770940352, 0.00481145829, -0.0112675894, -0.00579193654, -0.0403893664, 0.0385232978, 0.00438052276, -0.0251603294, -0.011496895, -0.0110303769, 0.00450308248, -0.00687520625, -0.0156322978, 0.00648380583, -0.00421842746, -0.0423819497, -0.00106547913, -0.0156955551, 0.0102159483, 0.00435284758, 0.00985222217, -0.0185658243, -0.0440266244, 0.00944896135, -0.0414963588, -0.0123666739, 0.0120424833, -0.00184037292, 0.0476955101, 0.00771335699, -0.0279910639, -0.0467782877, -0.00152606657, -0.00298689958, 0.0196570028, -0.0439317375, 0.0196570028, -0.0180914, 0.0244961344, -0.00578798307, 0.0062189186, -0.00213293498, -0.00378749147, 0.00588682154, 0.0688232258, -0.00660241209, 0.00161699799, -0.025191959, 0.0177434888, -0.0119475983, 0.029034799, -0.0201946832, -0.048201561, 0.00476006232, -0.0120345764, 0.0249863733, -0.00106745586, -0.0178541876, -0.00200345647, 0.000459846138, 0.0119317845, 0.00209339964, 0.00619519735, 0.0169211514, 0.013030869, 0.0254291706, -0.0220923834, 0.0537681468, -0.0593031049, 0.00172275514, -0.00567333028, -0.00150333368, -0.0114494525, -0.0314701796, 0.033715792, 0.0392507464, 0.00470075943, 0.0245752055, -0.0460508354, 0.00399702927, -0.0011326893, -0.0114099169, -0.015323922, -0.0262040645, 0.0194197893, -0.0282757189, 0.0195937455, -0.0270264018, 0.0091089569, 0.0102001335, 0.04636712, 0.0538946614, 0.0172848776, -0.00307387742, 0.00897453632, -0.0109038642, 0.0279910639, 0.0288292151, -0.0153950853, 0.00483517954, 0.00137682038, -0.0111568905, -0.0179807, -0.00887965132, 0.00230096048, 0.019641187, 0.00718358252, 0.0354869775, -0.0476638824, -0.0634147823, -0.0357083753, 0.0212067906, 0.0375111885, 0.00312725035, -0.0118210856, -0.0128806336, -0.0281808339, 0.0258561522, 0.033905562, -0.0443745367, 0.0400730819, 0.0323557742, -0.0301259756, 0.0137345986, 0.0468099155, -0.0247017201, -0.0247649755, -0.010445253, 0.0132838953, 0.00116234086, -0.0079505695, 0.0232468173, -0.0705311596, -0.0169844087, 0.0275798962, 0.0166997537, 0.0578482, -0.0265203472, -0.0398516841, -0.00567728374, -0.00993129332, -0.00228514615, -0.00714009348, 0.00022646373, 0.00203607325, -0.000130466826, 0.0330515951, 0.00168915011, 0.0255398694, 0.0217286572, 0.00712032616, 0.00714009348, 0.0377325863, -0.0165099837, -0.0155848553, -0.0134262228, 0.0128015634, 0.0512062535, -0.0234998427, -0.0225668084, 0.0412433334, -0.0380172431, -0.0181072149, 0.0079505695, -0.0176486038, 0.0193881616, 0.00130565662, 0.00929872692, 0.00375190959, 0.000695823052, -0.00872941688, -0.0410851911, -0.0150550809, -0.0268366318, -0.000396589516, -0.0386814363, 0.00970989466, 0.0137345986, -0.00878476631, -0.0210012048, 0.0130704036, -0.0013096102, -0.00524634775, 0.0065905517, -0.033146482, -0.014090417, 0.013797855, -0.0527560413, 0.00865825266, -0.00596193876, 0.0185816381, -0.0176169761, -0.0102475761, -0.0228198338, -0.0138611123, 0.000596490398, 0.00576426182, 0.0272319857, 0.0340320729, -0.0157429967, 0.0616752282, -0.0515541658, 0.00223968062, -0.0260617379, 0.0157983471, 0.00983640831, 0.0252552144, -0.000957745127, -0.0549067669, -0.0285287462, 0.00462564221, 0.00569309806, 0.0251603294, 0.0093224477, 0.0527244136, -0.0136476206, 0.0114099169, -0.0068989275, 0.0066854367, -0.0013382734, 0.0546853691, 0.0190244354, 0.0237212405, 0.0325771719, -0.00440819748, -0.00413540285, 0.000700270815, 0.00829452742, 0.00805336144, 0.0153081082, 0.0209063198, 0.000131949404, -0.0371632762, 0.02280402, 0.0242747366, -0.00511192763, 0.0172848776, -0.00582751818, 0.0256980117, 0.0123824878, -0.0308218, -0.0519653335, -0.00656287698, -0.0316599496, -0.0180123299, -0.0130783115, -0.0125643509, -0.0344116129, 0.0113703813, -0.00943314657, 0.0297622513, 0.0120187625, 0.00425005564, 0.0231993739, -0.0293036401, 0.0273268707, 0.00704520848, 0.0187555943, 0.00567728374, 0.0121927178, 0.00760661159, 0.0307427291, 0.0114810811, 0.000711143075, -0.0262040645, 0.000892017502, -0.00251247478, 0.033336252, -0.0228356477, 0.0217602849, 0.0614538305, 0.0229147188, -0.0103740897, 0.0176327899, 0.000157770963, -0.0386814363, -0.0332097374, 0.0116787581, 0.0370051377, -0.0158378817, -0.035929773, -0.00523448735, 0.0230254177, 0.00244526472, 0.012833192, 0.0110857263, -0.0102633908, 0.0174904615, 0.00656683045, -0.00699776597, -0.0175695326, -0.0202737544, -0.0305845868, -0.0335576497, 0.0158932321, 0.00185915234, 0.0399782, -0.0158220679, -0.00561798085, -0.0467150323, 0.0442163944, -0.042350322, -0.0105480449, 0.02280402, -0.000858412415, -0.0126908645, -0.0441215076, 0.00838941243, 0.0372581631, -0.0168895237, 0.0433308, -0.0012335045, 0.0121294614, -0.0225035511, -0.00657078391, 0.00865825266, 0.0310115702, 0.0233417023, 0.0116945719, 0.00746428408, -0.00670125056, 0.0147941476, -0.0136397136, 0.0247966051, -0.00383691071, -0.0363725685, -0.0274217557, 0.00936198328, 0.0216337722, 0.0108406069, 0.00375981675, -0.00861871801, -0.00826289877, 0.0242589228, 0.0199258421, -0.0271054711, 0.0134973861, -0.0194197893, 0.0628771, -0.00730218878, -0.00137583201, 0.0251603294, 0.0548435114, -0.0184076838, -0.0099550141, -0.0191351343, 0.00691869529, 0.00602519512, 0.0288292151, 0.0234998427, 0.0236896127, -0.0140350675, 0.00852383301, 0.0206691083, -0.0162569582, -0.0345697552, -0.00963082444, -0.0141536742, 0.0267417468, 0.000369656016, -0.00310155237, 0.0151974084, -0.0242589228, 0.0110461917, 0.0202104971, 0.00502494955, 0.00140251836, 0.000436372, 0.00655496959, -0.00015913, 0.0126117934, 0.0257770829, 0.04693643, 0.0032616707, -0.00280899042, -0.0266468618, 0.0174904615, -0.0279436223, -0.0153160151, 0.00804940797, 0.0165574271, 0.0309166852, -0.0017049642, 0.00965454523, 0.0103345541, 0.00681195, -0.0131890103, -0.00329725258, 0.00784777757, -0.0302524902, 0.013797855, 0.0253184717, 0.00107832812, 0.0132601736, 0.0179648865, -0.00360562862, -0.0145253064, 0.0048944829, 0.0272478, 0.0177593026, -0.0136792492, 0.00853174, 0.0157509036, 0.00060044392, 0.0117657362, 0.0178541876, 0.0238319412, 0.00403458765, 0.0354237221, 0.0157509036, 0.0222188961, -0.00112577062, -0.0283389762, 0.00208153902, 0.0165574271, -0.00577216875, -0.010729908, 0.0197993293, -0.0128648197, 0.00414331025, 0.0165416114, 0.00063800253, 0.0191825777, -0.0290822424, -0.0170634799, -0.00562984124, -0.013797855, -0.0170318522, -0.00180577952, -0.0110699125, -0.00725869974, -0.00497355359, 0.000147763567, -0.0286710728, 0.00384481787, -0.0350125507, -0.00676450739, -0.00478773704, 0.0409586765, -0.00910105, 0.122528121, -0.00545588555, 0.0278961789, -0.00161699799, 0.0453550145, 0.00627822196, -0.0184393115, -0.00313515728, 0.00862662494, 0.00606868416, 0.0218551699, -0.00805336144, -0.030268304, 0.0158695113, -0.0387446955, -0.0298729502, 0.0129913334, 0.00796638336, -0.00986803602, 0.0383335277, 0.0309641268, -0.00696613779, -0.0214281883, 0.0220133122, 0.0152606657, -0.0132443598, 0.0510164835, -0.0234365873, -0.000541140791, 0.00295724813, 0.0244486928, -0.0436787121, -0.00728242099, -0.0221872684, 0.0196570028, 0.0267101172, -0.00463354914, -0.0216337722, 0.0241798516, 0.0312171541, 0.016952781, 0.00510402024, -0.00819964241, -0.0385232978, -0.0194039755, -0.0150234532, -0.0266468618, -0.0226616934, -0.00216456316, 0.0137662273, -0.00727846753, -0.0105243241, 0.0225668084, -0.0170951076, -0.00827871356, 0.000952803181, -0.0433624275, 0.000443290686, -0.0259984806, -0.0110066561, -0.0127462139, -0.017142551, 0.0167946387, 0.00182752393, -0.02375287, -0.0312804095, -0.00078033, 0.0233100727, -0.0130862184, -0.0238635689, 0.000387199834, 0.0180439577, 0.0142406523, -0.00668939, 0.0169685949, 0.0129913334, 0.0145727489, 0.0134657584, -0.000485544151, 0.00608449848, -0.0350758098, -0.0216970295, 0.0164150987, 0.000788731268, 0.00761056505, -0.0188030377, -0.00512774149, 0.0496564656, 0.00227723923, 0.00559821306, -0.00667752931, 0.0241482239, -0.0236105416, 0.0197677016, -0.00174845313, 0.0139559973, 0.0142564662, 0.0227407627, -0.00928291213, 0.0178383738, 0.0166048687, -0.00159821869, -0.0319287926, 0.0191667639, 0.0168737099, 0.00504867081, -0.0124931866, -0.00395354, 0.0127145853, 0.0013916461, -0.0325139165, -0.0162411425, 0.017047666, 0.0124299303, 0.0106033953, -0.00973361637, 0.0101210633, 0.00709660491, 0.0598407835, 0.0124773728, 0.00504471734, 0.00921174884, 0.00311736646, -0.0338423029, 0.00411563553, 0.0137187848, -0.0176802315, 0.0122164395, 0.0310590118, 0.0445643067, -0.0280859489, -0.00162193982, 0.0222979672, 0.0191509482, -0.0266310461, -0.00562193431, -0.00946477521, -0.00466913078, 0.0244803205, -0.00555472402, 0.00177909306, 0.0018443265, -0.0249389317, 0.0134183159, -0.000131331661, 0.0284971185, 0.0215388872, 0.014177395, 0.0286868885, 0.0139006479, 0.0280543212, 0.0113941031, -0.0217128433, -0.0222821534, 0.0100182705, -0.0310748257, -0.0264729057, 0.0447857045, -0.0176486038, -0.00652729487, -0.00582356472, 0.00422633439, -0.0202421267, -0.0311064553, -0.0779954419, -0.0362776853, 0.00842104107, 0.00726660714, 0.0106113022, -0.02375287, 0.0327669419, 0.00451889634, -0.0108880494, 0.0217128433, 0.0214281883, -0.0107536297, 0.00180676789, 0.00177217438, -0.0032616707, 0.0185183827, -0.0116550364, -0.0154029923, 0.0411168188, 0.0278487373, 0.0210012048, 0.0197202582, 0.0257770829, 0.00817592163, 0.0127462139, -0.0270105861, 0.000419322372, -0.0144462362, -0.0218868, 0.021744471, -0.00339411432, 0.0257770829, 0.00485890079, 0.0124062095, -0.0215705149, 0.00417098496, -0.00129972631, -0.000713614, 0.0151974084, -0.00973361637, 0.0140983248, 0.00305806333, 0.00442401133, 0.00191351352, -0.000947367051, -0.0155057851, 0.0217128433, -0.0228672773, 0.0158774182, 0.0124378372, -0.0244012494, 0.0177434888, -0.00770149613, 0.0122717889, 0.00124141166, -0.015418807, 0.0528509244, -0.027500825, -0.0127224922, -0.00562193431, -0.000636025798, -0.0313594826, -0.0497197211, -0.0231361166, -0.0370051377, -0.000941931, -0.0121848108, 0.000905854919, 0.00105460687, -0.00111885183, 0.012738307, 0.00718358252, 0.0104610678, 0.00578007568, 0.000891029136, -0.0150471739, -0.00430145161, 0.0110540986, -0.0241007805, -0.0366572253, -0.0450703576, 0.0253659133, -0.012066205, 0.00278922264, 0.0104531599, -0.00801777933, 0.00608449848, 0.00773707824, -0.000590560085, -0.031232968, 0.0123745808, -0.0075868438, 0.0213174894, -0.0107773505, -0.00181764015, -0.0234998427, -0.017427206, 0.0337790474, -0.0145569351, -0.00375190959, -0.0115364306, 0.000353841839, -0.0460192077, 0.00152705493, 0.0260933656, -0.0233100727, -0.00937779713, 0.00891128, 0.0394721441, -0.0502574034, -0.0271529146, 0.0133945942, 0.0341269597, -0.012066205, -0.000329873525, -0.0345697552, 0.00238991505, -0.0186923388, 0.0048944829, -0.0230728611, 0.00510797417, 0.000939954189, 0.00460192095, -0.0150867095, -0.00391598139, -0.02759571, 0.0177276749, -0.00288608437, 0.0264096484, -0.0447540767, -0.0192142054, -0.0579430871, -0.00260933652, -0.0183760542, 0.0344116129, 0.023847755, -0.017332321, 0.0107140942, 0.0119475983, -0.0159169529, 0.0473792255, -0.00469680596, -0.0346646421, -0.029319454, -0.0185500104, 0.0250654444, -0.0199416578, 0.0083182482, -0.0153397359, -0.0253975429, -0.0228514615, -0.0161225367, 0.00983640831, 0.0140271606, -0.013797855, 0.012833192, -0.00152211299, 0.00640868861, 0.0312804095, -0.00128490059, -0.0296199229, -0.0173797626, 0.000533233746, 0.0294934101, -0.00844476186, 0.0368153676, -0.00294934097, 0.020795621, -0.0195304882, -0.0187555943, -0.0386814363, 0.0202579405, 0.0174430199, 0.0347911529, -0.016573241, -0.0144778639, 0.0196095593, -0.0065826443, -0.0284813046, 0.00436075497, -0.00329329912, -0.0262356922, -0.00301852799, 0.00925919134, 0.0283389762, 0.0063810139, -0.039377261, -0.0108010722, 0.00992338639, 0.0179016292, -0.00253619603, -0.0320394896, -0.0549700223, -0.0202895682, -0.0294617824, -0.023468215, 0.0255556833, 0.0379856154, 0.0162253287, 0.0280543212, 0.0153081082, -0.021364931, -0.00910105, -0.0423819497, -0.0550332814, -0.0182495415, -0.0126038864, 0.0132364528, 0.0233100727, -0.0209537633, -0.00772126392, -0.0113624744, 0.00274178013, -0.0190718789, 0.0214281883, -0.00106646749, 0.00181170984, 0.0148574039, 0.00799405854, -0.0203370117, 0.0125169083, 0.000416357216, 0.0392191187, -0.00225351797, -0.00380923599, 0.0026291043, -0.00942524, -0.0122480672, -0.00874523073, -0.00518704485, -0.0623710491, 0.0261249933, 0.0157192759, 0.030078534, -0.00991547853, 0.00958338194, 0.000949343841, -0.0112359617, -0.042919632, -0.00442401133, 0.0172690637, 0.00252631214, -0.020605851, 0.0158536956, 0.00123449299, -0.00150629878, 0.00308573805, -0.00613194099, 0.00175537181, -0.00635729264, 0.0030560866, 0.0329567119, -0.00201334036, -0.0250654444, -0.0277380385, 0.0161067229, -0.00582356472, 0.00126908638, 0.0308850557, 0.0104057174, -0.00581961125, 0.0103345541, 0.00692264875, 0.0398200564, 0.00434098719, -0.00816801377, -0.0123508601, -0.017237436, 0.0171109214, -0.0266784895, -0.0171109214, 0.0118448064, 0.00543611776, 0.0105954874, -0.00335457898, 0.00833406299, -0.000252285274, -0.0261091795, -0.017237436, 0.0348860398, -0.0326404274, -0.0195779316, -0.0154029923, -0.0070135803, 0.00692660268, 0.0173955765, 0.0222505238, 0.000340004452, 0.0164941698, -0.0188346654, 0.0936830863, -0.013315523, -0.0120029477, -0.0225509927, 0.0242272951, 0.0132522667, 0.0128648197, 0.0073298635, 0.02280402, -0.0061121732, 0.0623710491, -0.00703334808, 0.00163973076, 0.00926709827, -0.0190402493, 0.0191667639, 0.00168519653, 0.0089508146, 0.00925919134, 0.00676055392, -0.0271529146, 0.016668126, -0.00277736201, 0.00101704826, 0.014944382, 0.00699381251, 0.00832615606, -0.0324506573, -0.0322292596, -0.0162727721, 0.0146122845, -0.0127462139, -0.00962291658, 0.00428563775, 0.0080573149, 0.0310590118, 0.00530565111, -0.00583937904, 0.00151717104, 0.0168104526, -0.00556263095, 0.0179016292, -0.0118922489, 0.0137345986, -0.0133945942, -0.00973361637, -0.00465331692, -0.0112754963, -0.0246542767, 0.0252235867, -0.0147308912, -0.0266152322, 0.0107852574, 0.0135052931, -0.000587594928, 0.0241165962, -0.00387249258, -0.00371039752, 0.0200839844, 0.0213174894, -0.0173955765, 0.00164566108, -0.00991547853, 0.00451889634, -0.00134716881, 0.0130862184, -0.00423028786, 0.0164309125, -0.0371632762, 0.00494983234, 0.00565751595, 0.00722707156, -0.00451889634, 0.0124852797, -0.0174113903, 0.00791498739, 0.00607659109, 0.000786260294, 0.0198151432, -0.0104768816, -0.0159485806, 0.0036412105, -0.0206216667, 0.00542821083, -0.000756114547, -0.0117103858, 0.000657770259, -0.00537286093, 0.0343483575, -0.00298096938, -0.00341388187, -0.01197132, -0.032181818, 0.0313911103, -0.0193407182, -0.00685939239, 0.0326720551, 0.006851485, -0.00300469063, -0.0136792492, -0.00212700455, 0.0237686839, -0.0201630555, -0.0185500104, 0.0245910194, -0.0216812138, 0.0212384183, 0.0096466383, -0.00230096048, 0.00505262427, 0.0334943943, -0.00661427295, 0.0183127988, 0.0132048242, -0.00343364966, -0.0200997982, 0.0222821534, 0.0167788249, -0.00272003561, 0.0152764795, -0.0322134458, 0.0204318967, -0.0145332143, -0.00928291213, 0.0160197448, -0.00125030708, -0.00609635888, 0.0237844978, -0.0248914901, 0.0186448954, -0.0189137366, 0.0407372788, -0.0248756744, 0.00116530596, -0.00659450516, -5.12415863e-05, 0.00156164833, 0.0290506128, 0.000520384754, 0.00291375909, -0.00736149168, 0.0140587892, -0.0155927623, 0.00892709382, -0.00539658219, -0.00307980785, -0.0193407182, -0.0157271829, 0.0015883348, -0.00961501, -0.0182179138, -0.00832615606, 0.0203053821, -0.0333046243, 0.0260933656, -0.0189137366, -0.000232270482, -0.00771731045, -0.0141299525, 0.000288608426, 0.0130624967, 0.014177395, -0.00238398486, -0.00619915128, -0.031723205, -0.0157983471, -0.0158141609, 0.00736544561, -0.0171583649, 0.0162095148, 0.0152448509, 0.0169369671, -0.00515146274, -0.0172690637, 0.00182752393, 0.00254410319, 0.0156797413, -0.0106192091, 0.0344432406, 0.00345934764, -0.0149522889, -0.0280385073, -0.00323004229, 0.0194830466, 0.0128964484, 0.0261408072, -0.0433308, -0.00396935456, 0.022519365, 0.0220449399, -0.0141536742, 0.00435284758, 0.0022080522, 0.0066379942, 0.0146834487, 0.0207323655, -0.000769951963, 0.0147071695, -0.00483122608, 0.0185658243, -0.0256980117, -0.0386498086, -0.0160830021, 0.00729428185, -0.00289003784, -0.000960216101, -0.0297464374, -0.0155611346, 0.00226340187, -0.0020054332, 0.00433308026, 0.0227882061, -0.0117657362, -0.00625054725, 0.00289399154, -0.0152922934, -0.00575240096, -0.00888755824, 0.00390016753, -0.00470075943, 0.0121531822, -0.023468215, -0.022709135, 0.00329132215, -0.00534123275, -0.0218551699, 0.0160988159, 0.0149127534, 0.0277538523, -0.00110007252, 0.00554681709, 0.0211909749, 0.0190718789, -0.0130229611, 0.00928291213, -0.0440266244, 0.0182179138, -0.000169631589, -0.0322450735, 0.036309313, 0.0157429967, 0.0187239666, 0.00125722575, -0.00536100054, -0.0161146298, 9.63057682e-05, 0.00494192541, 0.01408251, -0.0118210856, 0.00817592163, -0.021080276, -0.00688311365, 0.0125801647, -0.0102080405, 0.0223612227, 0.00891128, -0.00542030344, 0.00493797194, -0.00639682822, -0.0255873129, 0.00593426405, 0.00929872692, 0.00141635584, 0.0172216203, -0.0158695113, 0.0114336386, -0.0102792047, 0.00975733716, -0.00649566669, 0.00466122385, -0.0197202582, 0.0425084643, 0.0146122845, 0.00544797862, -0.00401284313, -0.00841313321, 0.00542425737, -0.00749986572, -0.0340004452, -0.00313713425, 0.0130071472, 0.0417177565, 0.0116471294, -0.0329567119, -0.00175833702, -0.0109117711, 0.00250259088, -0.00313911098, 0.0102396691, -0.0159881171, -0.00779242767, 0.00968617387, -0.00759870419, 0.0061596157, -0.00585123943, 0.0499727465, 0.0229463466, -0.0083182482, -0.0383967832, 0.00751568, 0.0137187848, -0.0137187848, -0.0133708734, 0.00872151, -0.0110540986, 0.00150728726, 0.0247966051, -0.0271529146, -0.0169211514, 0.000168519648, 0.00485890079, -0.0324822851, 0.01121224, 0.0111647975, 0.00467308471, -0.00349888299, 0.0188979227, 0.0106271161, 0.0083182482, -0.0151578728, -0.00298689958, -0.0140666962, 0.0123271383, 0.00417098496, 0.000119038625, -0.0141378595, -0.0131969173, -0.0122401603, 0.00201630546, -0.0189769939, -0.0141141387, -0.00999455, 0.00583937904, 0.000706201128, -0.015426714, -0.00232468173, -0.00366690848, -0.00604891637, -0.0242589228, -0.0081522, -0.00896662939, -0.0125248153, -0.0233100727, 0.0111964261, -0.00947268214, -0.0118448064, 0.0117262006, 0.0257770829, -0.000940448372, 0.0132443598, -0.0265203472, 0.0218235422, 0.00802964, 0.0154741565, -0.0131415678, 0.00865825266, -0.0194356032, 0.0173955765, -0.00956756715, 0.0238635689, -0.000389423716, 0.00271805888, -0.0126908645, -0.0304106306, -0.00656683045, 0.00347120827, 0.00355423265, 0.00779638113, 0.0243854355, 0.00724683935, -0.00198270031, -0.0030086441, 0.0402944833, 0.00213886518, -0.00603310252, 0.0111647975, 0.0109750275, 0.0227565784, 0.0137504125, 0.00747219101, -0.0266784895, -0.0254291706, 0.0116629433, -0.00956756715, 0.00728637446, 0.0373530462, 0.00146379822, 0.022709135, 0.0209695771, -0.000473436434, 0.0388079509, 0.00363725703, 0.015323922, 0.0139164617, -0.031043198, 0.0120820189, -0.0307901707, -0.0306004, -0.02299379, 0.00657078391, -0.00570891192, 0.00460192095, -0.0158695113, 0.0105954874, 0.0037934219, 0.00733381696, -0.00544797862, -0.0606314912, 0.0207323655, -0.0281175785, -0.0114731733, -0.00387051585, 0.00219026138, -0.0174430199, -0.00716381473, 0.0182495415, 0.0136159929, 0.00750777265, -0.0188821089, 0.021459816, 0.00291178236, 0.00381912, -0.0133866873, -0.0105480449, -0.0225351788, -0.0221714526, 0.00537681486, 0.000597972947, 0.00434494065, -0.0170002226, -0.00464540953, 0.00751568, -0.00433308026, 0.0134025011, -0.0069068349, 0.017427206, 0.0281808339, -0.00655892305, -0.0132680805, 0.0296357367, -0.00733777042, -0.0168895237, -0.0264570918, -0.0280226935, -0.00921965577, -0.0102633908, 0.0330199674, 0.0191825777, 0.0192774627, 0.0100498991, 0.0139401825, 0.00811266433, -0.0133076161, 0.0123350453, -0.00409586774, 0.0184076838, -0.0213333033, -0.0163360275, 0.00691474183, -0.00128885417, -0.0138690192, 0.0135369217, -0.0137345986, 0.0081522, 0.0253501, 0.00398121495, 0.0209221356, 0.00533727929, -0.0232942589, 0.0120503902, 0.0154425278, -0.0120424833, -0.0021032833, 0.00159426511, 0.00498146052, -0.00592635665, 0.00525425514, 0.0121215545, 0.0131731965, -0.00188979227, -0.00725474628, 0.0185658243, 0.0165890548, 0.0200207271, 0.00884011574, 0.0392507464, -0.0278645512, 0.0186290815, 0.00807708222, 0.0283706039, -0.00377760758, 0.00106350228, -0.0119317845, 0.00823127106, 0.00745637668, 0.00607263763, 0.00557449181, 0.00152112462, 0.0104689747, 0.00200642156, -0.01178155, -0.000416110095, 0.0184551254, 0.0245119501, 0.019641187, 0.00849220436, -0.00523448735, -1.14745326e-05, 0.0131178461, -0.00196490949, -0.0191193204, -0.0158932321, -0.00379539863, 0.00683567114, 0.00604891637, -0.000683468243, -0.011876435, 0.00548356026, 0.0153160151, 0.014944382, 0.0258403383, -0.0208588783, 0.0130862184, -0.0212067906, 0.00143711187, 0.021270046, 0.0139639042, 0.0183760542, 0.0155532276, 0.00381912, -0.0099075716, 0.0181862842, -0.00853964686, 0.00870569516, -0.0140192537, -0.0111964261, -0.016952781, -0.00109117711, 0.0111647975, 0.00569705153, -0.011109448, 0.00390807446, -0.00959919579, -0.0013916461, 0.00246700901, -0.0273426846, 0.016763011, 0.00738521293, 0.00357004674, 0.00866616052, -0.0014993801, 0.00162688177, 0.0244170651, 0.0178067461, 0.0140271606, 0.02280402, -0.00311736646, -0.000869284675, -0.00525820861, 0.0030027139, 0.00765405409, -0.00332295056, -0.00165653334, -1.47717237e-05, 0.0182179138, -0.016763011, -0.00272398931, -0.00858708937, 0.0183760542, -0.0132918023, -0.00323201902, 0.00522658, 0.00886383746, 0.000626141904, 0.016668126, 0.013608085, -0.00352655794, -0.00406819303, -0.0108485147, -0.00550332805, -0.00224561081, -0.0117182937, -0.0148257762, -0.00925919134, 0.0110461917, 0.00902197883, 0.0102238553, 0.00945686828, -0.0148732187, 0.0235947277, -0.00745637668, 0.0177276749, -0.0129517978, 0.0251603294, -0.0104373461, -0.000759573886, 0.0045307572, 0.0157904401, 0.00681985682, -0.0117182937, 0.00911686383, -0.00659450516, 0.00842104107, -0.0014776357, -0.0179332588, -0.0333995074, -0.0180597715, -0.0111252619, -0.0200207271, 0.000851987919, -0.00103582756, -0.00873732381, -0.00303434208, -0.0252077729, -0.0218551699, -0.0171899926, 0.000864836911, 0.0100103635, -0.00494192541, 0.00296317833, -0.00551518844, 0.000848034397, 0.0120029477, 0.00972570851, -0.002897945, 0.0166997537, 0.0221714526, -0.00424214872, -0.00225549471, -0.00834987685, 0.0359930284, -0.0113387536, -0.0145094926, 0.0100024566, -0.0191193204, 0.00113960798, -0.0177751165, -0.0194988605, 0.00225549471, 0.00649962, -0.00306597049, -0.0108564217, 0.000471459673, 0.00212305109, -0.00781219546, -0.0133234309, -0.00949640386, 0.00416307803, 0.0123508601, -0.000850505312, 0.0128648197, -0.00221595936, -0.00639682822, 0.0118052708, -0.00242549693, -0.0277064107, 0.0113466606, 0.0106429299, -0.0135052931, -0.0200049132, 0.01427228, -0.000206325378, -0.0090615144, 0.0130624967, -0.00712032616, -0.0115838731, 0.0229621623, 0.0111015411, -0.014944382, -0.00843685493, 0.00916430634, -0.00914849248, -0.0127224922, -0.0315018073, -0.0136555275, 0.0122717889, 0.0189928077, -0.00884011574, -0.020605851, -0.0115601514, -0.000498640235, 0.00240770611, 0.00280306, -0.0350758098, 0.0145015856, -0.00720730377, 0.00738521293, 0.00256189401, 0.0196728166, 0.0140587892, -0.0192616489, 0.00380923599, -0.0132838953, 0.000452433247, -0.0209379494, -0.035360463, -0.00527797639, 0.00961501, 0.00749591226, 0.0124299303, 0.0242905505, -0.0099392, -0.00885593053, -0.0157588106, -0.00578402914, -0.00102297857, -0.00682776375, 0.0112280538, 0.00385470176, 0.0110066561, -0.0129201692, -0.0100894347, 0.00602124166, -0.0106429299, -0.0165890548, -0.00891128, -0.0013699017, -0.00586705375, 0.0167946387, 0.0085949963, -0.0163202137, 0.0201156121, 0.00134716881, 0.0171741787, 0.0113466606, -0.00851592608, -0.00438052276, -0.0149522889, -0.00467308471, -0.0034771387, -0.0248282328, 0.0284180474, 0.00766986795, 0.00545588555, -1.6540007e-05, 0.0040523787, 0.00363330357, 0.00454261759, -0.0203528255, 0.0124220233, -0.00266666291, 0.00476006232, 0.0159723032, 0.0128648197, -0.0179807, -0.00113960798, 0.0217602849, -0.00760661159, -0.014185302, 0.0338106751, -0.0205742233, -0.0107140942, -0.0020597945, -0.00181764015, -0.00706892973, -0.0103661828, 0.00193921151, 0.0010565836, 0.0121769039, 0.00257968507, 0.00954384636, 0.000236965323, 0.00440029, -0.0100973416, 0.00940151885, -0.0172532499, -0.00730614224, 0.0111015411, 0.0157509036, -0.001904618, 0.0229779761, 0.00541239651, 0.0143039087, -0.00104076951, 0.00356609328, 0.0153476428, -0.00882430188, -0.00703334808, -0.01370297, 0.023657985, -0.00569309806, -0.0187397804, -0.00896662939, 0.00477983, 0.00473238761, -0.00911686383, 0.00249863742, 0.0192458332, -0.00116925954, -0.0125010945, 0.00635333918, -0.00116728269, 0.0302366763, -0.00551518844, -0.00222584326, -0.0111015411, -0.0102080405, -0.00963082444, 0.00497355359, 0.0128648197, -0.0176960453, 0.00290585216, -0.00883220881, -0.0262198783, -0.00243340409, -0.00883220881, 0.0142327445, 0.00372818834, -0.00539658219, 0.00189275737, 0.00512774149, -0.0106508378, -0.0118289925, -0.0134183159, 0.00207165512, 0.00339016062, 0.000925128406, 0.00357597717, 0.00891128, -0.016288586, 0.010635023, -0.00640078168, 0.0206374805, 0.00304027251, -0.00534518622, -0.0162569582, -0.0109513067, -0.00782010239, 0.00143612351, 0.01216109, 0.0145015856, -0.0178225599, -0.0211119056, -0.0131969173, 0.00322213536, -0.00876895245, 0.00227328553, -0.00450308248, 0.016573241, 0.0229305327, -0.0132048242, -0.000516431173, -0.00559821306, -0.00865825266, -0.00357993064, 0.0242905505, 0.0240849666, 0.0086898813, -0.00223968062, -0.00340795168, 0.0106429299, -0.0124220233, 0.0110778194, -0.0160276517, 0.0260459222, -0.0237844978, -0.0197835155, -0.00868197437, -0.0177751165, 0.0144620501, 0.0061714761, -0.00299480674, 0.0181072149, 0.00016987868, -0.00746428408, -0.00874523073, -0.0102080405, -0.00313318055, 0.00092018646, 0.0031094593, 0.0125959795, -0.00624264, 0.0144541431, 0.0116234086, 0.0296831802, 0.00072646304, -0.019451417, -0.0102238553, -0.029793879, 0.000595996215, -0.00187397806, -0.00510797417, 0.0252077729, 0.0103187403, 0.0129280761, 0.0244328789, 0.0146439131, 0.013030869, -0.00233258866, -0.0100182705, 0.0221240111, 0.0264887195, 0.00197775848, -0.00542821083, 0.0133945942, 0.0166839398, 0.00884802267, 0.0028505025, -0.0171267353, -0.00474424846, 0.0154583426, -0.01427228, 0.0164625421, -0.0128252842, -0.0141694881, -0.00607263763, 0.00496169319, 0.0109434, -0.00553100277, 4.78440124e-05, -0.00338027696, 0.021270046, 0.0142880939, -0.00386656239, -0.00888755824, -0.0125010945, -0.0301417913, 0.0036352803, 0.0239584539, -0.0131415678, 0.0182179138, -0.00713614, -0.00178601174, -0.00770545, 0.00439633662, -0.00646403804, 0.00613589445, 0.00592240319, -0.00929872692, 0.0103266472, 0.008428948, -0.00897453632, 0.0085949963, -0.0216337722, -0.0160039309, -0.00666962238, -0.00794266257, -0.0105085103, 0.0201472417, -0.00834987685, -0.0199258421, -0.00999455, 0.00700962683, 0.00671706488, 0.0161304437, -0.0143276295, -0.00131554052, -0.00684357807, -0.0142406523, 0.0115996869, 0.0166048687, -0.0221714526, 0.00794266257, 0.00294934097, -0.00705311587, -0.00410772813, 0.00569705153, 0.00334074139, -0.00524239428, 0.00587891415, -0.00768172881, -0.0018126982, -0.00727846753, -0.0110303769, 0.0211593471, 0.000514948624, -0.00608845195, 0.00933035463, -0.0239426401, 0.0164309125, -0.00613194099, -0.00337039307, 0.00745242322, -0.0126513289, 0.00637310697, -0.0051158811, 0.0173639487, 0.00480750483, 0.00463354914, -0.00921965577, -0.0213965606, 0.0107378149, 0.00970198773, -0.014469957, -0.00550728152, -0.00572472624, -0.00736544561, 0.000229675978, 0.0131099392, 0.00518704485, 0.0113387536, -0.0026389882, -0.00505657773, 0.0189453643, -0.00188880379, -0.00494983234, 0.0107457219, -0.025571499, 0.00997873582, -0.00849220436, 0.0196095593, 0.0066854367, -0.00377760758, -0.0100419922, 0.0150550809, -0.0142960018, 0.0060647307, 0.0143276295, 0.0126908645, -0.0351390652, 0.00817592163, 0.0128490059, 0.00708079059, 0.00674078614, 0.00689102057, -0.0141220456, -0.00063652, -0.0117341075, 0.0441215076, 0.00798219815, 0.00466122385, -0.00135507586, 0.0180597715, 0.00360562862, -0.0064877593, -0.0240691528, 0.00771335699, 0.00672892528, -0.00261724368, -0.0223928522, 0.00561402692, -0.0059579853, 0.00720335031, -0.00746033061, 0.00796638336, 0.0139401825, 0.00963873137, 0.00314701791, -0.0172532499, 0.0190244354, -0.0180755854, -0.00078033, -0.00152903167, 0.00595403137, -0.00399109907, 0.00278329221, -0.00740893418, -0.0148099614, 0.0177118611, 0.0102317622, 0.0134262228, 0.0264412761, -0.00366493175, -0.0249863733, -0.00440424401, 0.0185025688, -0.0193723477, -0.0180755854, -0.00493401801, -0.0102080405, 0.000313318073, 0.0015280433, 0.00389028364, 0.00414331025, 0.00811266433, -0.0142880939, -0.00200444483, 0.000933529693, -0.0252710283, 0.0190402493, 0.0183602404, 0.0159090459, -0.0129597047, -0.00588286808, -0.00494983234, 0.00340597495, 0.0202263109, -0.0071677682, 0.0327353142, 0.016288586, 0.0149997314, 0.00397726148, -0.00204398041, -0.0195937455, -0.00200049137, -0.0151815945, 0.0183602404, -0.00335062528, 0.0122401603, -0.00326364744, 0.00593821751, 0.00691474183, 0.00332690403, -0.0299362075, -0.0216812138, -0.0131731965, 0.0103899036, 0.0176486038, 0.0159090459, -0.00499727484, -0.00976524409, 0.00254014949, 0.00507634552, -0.00657473737, -0.00802173279, -0.027880365, 0.00970198773, 0.00794266257, -0.000793179031, 0.00293155015, 0.00053026859, 0.0123271383, -0.00723497849, 0.0035245812, -0.0122955097, 0.00191153667, 0.0110620055, 0.00207363185, -0.00555472402, 0.0202737544, -0.00291771279, 0.00587496068, 0.00562588777, -0.00486285426, 0.000679020537, 0.0189928077, -0.0302999318, -0.00275166403, -0.0212384183, 0.016478356, -0.00598961348, -0.00141833257, 0.0117736431, 0.0271687284, -0.00627822196, -0.0194988605, -0.001784035, -0.00979687274, -0.0211909749, -0.0147941476, -0.00271608215, -0.00194019987, -0.0171899926, 0.00391598139, 0.0202421267, -0.0198467728, -0.0013985649, -0.00801777933, 0.00688706711, -0.00711241877, 0.00589077501, 0.0123429522, -0.00569309806, -0.00744846975, -0.0135369217, 0.0180123299, -0.018486755, -0.0110936342, 0.0134183159, -0.00160810247, -0.0143118156, 0.00056436786, -0.000983937294, 0.00250259088, -0.00541239651, -0.00560216652, 0.0108564217, 0.0112913111, -0.00268050027, -1.78372611e-05, -0.0180597715, 0.00753544783, -0.00245712535, 0.0117578283, -0.00759079726, 0.00543611776, 0.0113941031, -0.000874720747, -0.0153397359, -0.0143276295, 0.00565356249, 0.00157054386, -0.012074112, -0.0284022335, 0.0176169761, 0.00240770611, 0.0134499436, 0.00460192095, -0.0016258934, -0.000245860778, -0.0139401825, -0.00468889857, -0.0156639256, 0.0092750052, -0.0111252619, -0.00824708492, -0.00245317165, -0.0185816381, -0.0195304882, -0.014090417, 0.0152764795, -0.000456880982, -0.00344748702, -0.00823917799, 0.0220923834, 0.01370297, -0.00664194766, -0.00264491839, -0.0121215545, -0.0242905505, -0.0113545675, 0.00117420149, -0.0202579405, 0.0343167298, 0.00640473515, 0.00856336765, -0.010065713, -0.0010249553, 0.00577216875, -0.0122006247, 0.027311055, 0.00320434431, -0.00393377244, 0.0128885414, -0.0167471971, -0.0115127089, -0.0023128211, -0.0176802315, -0.0050012283, 0.00890337303, -0.00929872692, 0.0143829789, -0.0287501439, -0.0171109214, -0.00164269598, 0.0235631, -0.0052226265, 0.00472448068, 0.0089508146, -0.0285129324, 0.00189769932, 0.0220133122, -0.00618729042, -0.0122480672, 0.0148890326, -0.0154820634, -0.00714404695, -0.00584728597, 0.00292759645, -0.00717962906, 0.00310748257, -0.00458610663, 0.00684753153, 0.0036827228, 0.0318339057, 0.00319841411, 0.00554286316, 0.00304817944, -0.0122480672, -0.00811266433, -0.0103740897, -0.00446354691, 0.00456633884, 0.0182021, 0.0207481794, -0.00562984124, -0.0064758989, -0.0192458332, 0.0111647975, -0.0167471971, -0.0254291706, 0.00312922709, 0.00453866413, -0.00218235422, 0.0284180474, 0.0108406069, 0.00465727039, -0.00405633217, 0.010350368, 0.0195779316, -0.0108485147, 0.0127541209, 0.0157983471, -0.033715792, -0.00562193431, 0.0146280983, 0.0142011167, -0.00561798085, -0.00583147164, 0.000565356226, 0.0208430644, -0.00939361192, 0.00899825711, 0.0212858599, 0.0111252619, -0.0210644621, 0.0189928077, 0.0105480449, -0.0105085103, -0.00936198328, -0.0121848108, -0.00398319168, 0.00575635443, -0.0118052708, -0.00952012464, -0.00791103393, 0.000346181856, 0.0133313378, -0.0052107661, -0.0122480672, 0.0162411425, 0.00367283891, -0.0116550364, 0.018486755, -0.0302050468, -0.0134420367, 0.00262317387, 0.00880848803, 0.00625054725, -0.0212542322, 0.0103266472, 0.0299362075, 0.00451494288, -0.00839731935, 0.0125010945, 0.0220923834, -0.00319050695, -0.0135132009, -0.0294934101, -0.0169053376, 0.00814429298, -0.0096940808, 0.0295250379, -0.0247649755, -0.0107931644, 0.0111806113, 0.00275759422, -0.013608085, -0.0175695326, 0.0141615812, -0.00830243435, 0.00657473737, -0.00425400911, -0.00831034128, -0.0109750275, -0.00155868323, 0.00421842746, 0.00593031, 0.0120820189, 0.00834197, 0.023468215, -0.0143434443, 0.00257968507, 0.0112992181, -0.0126197, 0.0267259311, 0.00421842746, -0.00652729487, 0.014090417, -0.00928291213, -0.00204793387, 0.00826289877, -0.00103978103, 0.0204951521, -0.0136397136, -0.0224877372, -0.00938570406, -0.01216109, 0.016288586, -0.00665380806, 0.0267891884, -0.00556658441, 0.000443043595, -0.00308178458, 0.011979227, -0.0100498991, 0.00780428853, -0.00197973521, -0.0130466828, 0.00562984124, -0.0149681037, 0.00274375686, -0.00895872246, -0.0175062753, 0.0131969173, 0.0181862842, 0.00448726816, -3.26475929e-05, -0.0103029255, -0.00977315102, -0.00497355359, -0.0597459, -0.0313752964, 0.019641187, 0.0167155676, 0.00630589668, 0.00607659109, -0.0078556845, -0.0212858599, -0.0126513289, 0.0180597715, 0.006321711, 0.00486680819, 0.00617543, -0.00734567782, -0.00582356472, 0.0175695326, 0.0119238775, 0.00471657328, -0.00345539418, -0.014754612, -0.00797429, -0.033146482, 0.0146043776, 0.00382307335, -0.00315887854, 0.00474820193, -0.00361155905, -0.0159485806, -0.00332295056, 0.0013224592, -0.00376970065, 0.000190511215, 0.0105006024, -0.00521867303, 0.0143513512, -0.011117355, 0.0106666517, -0.0258561522, -0.00555077055, 0.0239426401, 0.0093224477, 0.0116550364, -0.00374004897, -0.0111568905, -0.00929872692, 0.0109750275, 0.00368667627, 0.0181230288, 0.000923645857, 0.00397923822, -0.00317666959, 0.0139085548, -0.0119080627, -0.00787149835, 0.0369418785, -0.00796638336, 0.00234444928, 0.00874523073, 0.0236105416, 0.0202104971, -0.012833192, 0.0182495415, -0.0112596825, -0.00177118601, 0.00335260201, -0.00699776597, -0.0106666517, 0.0241482239, -0.0119080627, 0.0140983248, 0.00953593943, -0.0124615589, -0.0277222246, 0.0164941698, -0.0055863522, 0.00609240541, 0.00377167738, -0.000578205276, 5.85927e-05, 0.0314385518, 0.0126197, -0.00460587442, 0.0017049642, -0.0137662273, 0.000348899921, 0.0154741565, -0.0244645067, -0.00670520402, 0.00672892528, -0.0154346209, 0.0206849221, 0.0119317845, -0.00165949855, 0.0342534706, 0.00988385081, 0.0119317845, 0.000504323456, -0.00367481564, 0.0244803205, 0.00929081906, 0.00749195879, -0.00227328553, 0.0124062095, 0.0106745586, 0.0232310016, -0.0117499214, -0.00484308694, 0.0097415233, 0.00553100277, 0.00613194099, 0.00742870197, -0.016090909, 0.0031094593, -0.00470866635, 0.0284813046, 0.0115127089, 0.0122796958, 0.00551518844, 0.00580775039, 0.00502099609, -0.00561798085, -0.0358032584, 0.00254805665, -0.00403261092, 0.0116787581, -0.0226933211, -0.016857896, 0.00333481119, -0.00834197, -0.0321976319, 0.0118685281, 0.0341585875, 0.0175853465, -0.00482727261, -0.019641187, -0.00819173548, 0.0050012283, -0.00398912188, 0.00193822314, 0.0164625421, 0.00398912188, 0.0188821089, 0.020416081, 0.00116332923, -0.0128490059, -0.00330911321, -0.020605851, 0.0229621623, 0.0090457, -0.00558239873, -0.00585123943, -0.0142643731, 0.0172848776, 0.0104610678, -0.00951221772, 0.0215705149, -0.00152013625, 0.0321501903, 0.0135843642, -0.0115285236, -0.00040622626, -0.0107536297, -0.0199732855, -0.0197202582, -0.00364318723, -0.00439633662, -0.00854755379, -0.0139955319, 0.00121966715, -0.00476796972, 0.0167313814, -0.00215072581, 0.00239782222, 0.00338818389, 0.00150135695, 0.0102396691, -0.0102159483, 0.00510797417, 0.0114415456, 0.0210012048, 0.00884802267, 0.0168895237, -0.00171188288, -0.0125406291, -0.0157588106, -0.0324506573, 0.00567333028, 0.032102745, 0.003904121, -0.00265282555, 0.000336792204, 0.017427206, 0.00318062305, 0.011307125, -0.013220638, 0.0074247485, -0.0101210633, 0.0158457886, 0.00333876465, -0.00149048469, -0.00592240319, 0.0145490281, 0.00848429743, 0.0103187403, 0.00241561304, -0.00863453187, -0.00140449521, 0.00190857158, 0.00105559523, -0.0228830911, -0.0269473307, 0.0116313156, -0.0188030377, -0.0035245812, 0.0111568905, 0.0024768929, -0.0155295059, 0.0155374128, -0.0119555052, 0.00280306, -0.00125524902, -0.000335556717, 0.000439831347, 0.0139243687, 0.0183760542, 0.000444773264, 0.00963873137, 0.0303631891, 0.0105006024, -0.0102159483, 0.00354830245, -0.00314504118, 0.0045781997, -0.0100815278, 0.0194672327, -0.00230886741, 0.00121274847, 0.003904121, -0.00266666291, -0.00832615606, 0.0072705606, 0.00880848803, -0.00374993286, 0.00234840298, 0.01102247, 0.0176802315, -0.00720730377, 2.34587023e-05, -0.0113624744, -0.0180439577, 0.00868197437, -0.02280402, -0.0100182705, 0.00645217765, 0.0200839844, 0.007377306, -0.0118052708, 0.00246700901, -0.0200681705, 0.0114731733, -0.0141299525, 0.00221200567, 0.0048944829, -0.0258719679, 0.00154583424, -0.00728242099, -0.00292759645, 0.00119792274, -0.020416081, -0.00151420594, 0.00493401801, -0.0104136253, -0.00950431079, -0.0223770384, 0.0127462139, -0.020510966, -0.0121057406, 0.00712823309, -0.0012117601, -0.0249231178, -0.0162253287, -0.00415121717, 0.000971088302, -0.00665380806, 0.0133629655, -0.0177276749, -0.00798219815, 0.00672101835, 0.000251667545, -0.00300469063, -0.00276352465, 0.0155927623, -0.000125957318, 0.0102396691, -0.00278329221, -0.0055270493, 0.0116155008, -0.00700567337, -0.015134152, 0.00425005564, 0.0134736653, -0.0236737989, -0.0222663376, -0.001293796, 0.00427773036, -0.0309325, -0.0164941698, -0.0121215545, -0.000849516946, -0.022709135, -0.0287817735, 0.00515541667, 0.0300152767, 0.016763011, 0.00497355359, 0.0235156566, -0.00725869974, 0.0219974983, 0.00406819303, -0.0118685281, -0.00460982788, -0.00301852799, -0.0106745586, 0.00220409874, -0.000411415269, 0.010160598, 0.00882430188, -0.0140192537, -0.0191509482, 0.0121057406, -0.0219658688, -0.00779638113, 0.000229923069, -0.0232626311, -0.0154978773, 0.00204398041, -0.00180775626, -0.001796884, 0.00479564443, -0.00930663384, -0.00748009793, 0.0103345541, -0.0117420144, -0.0017939189, 0.00401482, -0.0327036865, -0.0137504125, 0.0164467264, 0.00716381473, -0.0247807894, -0.0029552714, 0.00517123053, 0.00886383746, -0.00870569516, -0.0214440022, 4.63923243e-05, -0.00629403582, 0.00267061638, -0.00851592608, -0.0104847886, -0.00361551251, 0.000652334129, -0.000991844456, -0.000436619099, 0.0170951076, -0.0136871561, 0.00193426956, -0.0241798516, -0.00711241877, -0.000346181856, -0.0182337277, 0.00527797639, -0.0102159483, 0.0770465955, 0.0161304437, 0.0250812583, -0.0284654889, 0.00165554497, -0.0179807, -0.00555867748, 0.048770871, 0.00549146719, 0.00698590558, 0.0054321643, 0.0104768816, -0.00445564, 0.00122658582, -0.00693450961, -0.0223454088, -0.00327353133, -0.000764515833, 0.0223137811, 0.0166997537, 0.00851592608, -0.0188030377, -0.00311934319, -0.0156560186, -0.00788731314, -0.0189453643, -0.0201630555, -0.0290822424, -0.000165925143, 0.0141615812, 0.00581961125, 0.0120820189, 0.00673683267, 0.00891128, -0.0170634799, 0.0172532499, 0.0251445156, 0.0131020322, 0.0226933211, -0.000695823052, 0.00198961911, -0.00164862629, 0.003999006, 0.00182752393, 0.016857896, -0.0058551929, 0.00542425737, -0.0239110105, -0.00441610441, -0.0016387424, 0.000994315371, -0.0173481349, -0.00674869306, -0.0155532276, -0.00182455883, -0.000737335242, 0.0153792715, -0.0102001335, 0.0243696216, -0.00840522628, 0.018486755, -0.000688904373, 0.00686729932, -0.0182811692, 0.00413540285, -0.0068989275, -0.0246068351, -0.0149285682, 0.00145292608, -0.00310155237, 0.00972570851, -0.00644822419, 0.0179807, -0.00979687274, -0.00610031234, -0.00663404027, 0.000359277969, 0.0162253287, 0.00204002671, 0.00371435098, -0.00970989466, -0.00272398931, -0.0221398249, -0.00982850138, -0.00748009793, -0.010160598, -0.0132680805, -0.0147704259, -0.0151815945, 0.0003827521, 0.00769754266, 0.0173955765, -0.0227565784, 0.003688653, 0.00835778378, 0.00454261759, -0.0150946165, 0.0111647975, 0.0287185162, 0.00162984699, 0.018486755, 0.000443537807, -0.0106508378, 0.00819173548, -0.00827871356, 0.0306952856, -0.019451417, -0.00489843637, 0.00925128441, -0.0168737099, 0.019546302, 2.61149871e-05, 0.00898244325, 0.0114731733, -0.0172532499, 0.00621496513, 0.0099075716, -0.00514355581, 0.0103029255, -0.0165099837, 0.0150471739, 0.0162569582, -0.038713064, -0.000109772518, 0.00530169765, -0.00984431524, 0.0226775073, 0.0132680805, 0.00692660268, -0.00209339964, 0.0198309571, 0.0222663376, 0.0211593471, 0.0120503902, -0.000536198902, 0.0347595252, -0.0278961789, 0.00474029453, -0.0203370117, -0.00104571134, 0.0225509927, 0.00495773926, 0.002107237, -0.00737335254, -0.00152310135, 0.00383295724, 0.00700962683, -0.00337830023, -0.00224561081, -0.00788731314, -0.00112774735, 0.023657985, 0.0237212405, -0.00604891637, 0.00435680151, 0.00438052276, 0.00977315102, -0.00570100499, 0.00205386407, -0.00440424401, -0.00483517954, 0.00562588777, 0.021839356, -0.00602914905, 0.0167313814, 0.00460982788, 0.011496895, 0.0104926955, -0.00678822864, 0.0145094926, 0.017427206, 0.00307585439, -0.0114494525, 0.00880058, -0.00978896581, 0.0067921821, 0.016763011, -0.00568519067, -0.00337632326, -0.0078438241, -0.0170002226, 0.0179332588, 0.00419075275, 0.042160552, -0.00517518399, -0.00746428408, -0.025381729, 0.00460192095, 0.0155057851, 0.0158853251, 0.0148099614, -0.0248440467, -0.0108010722, -0.00513960235, -0.00332097383, 0.00410772813, 0.00105164165, 0.00708079059, -0.0151895015, -0.0145173995, 0.00678032124, 0.0160276517, 0.00530960457, 0.0123903947, -0.0152448509, 0.0125959795, -0.00457424624, 0.00955175329, -0.00891128, 0.00167037069, 0.0274217557]
24 Jan, 2025
Introduction of System Call 24 Jan, 2025 A system call is a programmatic way in which a computer program requests a service from the kernel of the operating system it is executed on. A system call is a way for programs to interact with the operating system. A computer program makes a system call when it requests the operating system’s kernel. System call provides the services of the operating system to the user programs via the Application Program Interface(API). System calls are the only entry points into the kernel system and are executed in kernel mode. A user program can interact with the operating system using a system call. A number of services are requested by the program, and the OS responds by launching a number of systems calls to fulfill the request.A system call can be written in high-level languages like C or Pascal or in assembly language. If a high-level language is used, the operating system may directly invoke system calls, which are predefined functions.A system call is initiated by the program executing a specific instruction, which triggers a switch to kernel mode, allowing the program to request a service from the OS. The OS then handles the request, performs the necessary operations, and returns the result back to the program.System calls are essential for the proper functioning of an operating system, as they provide a standardized way for programs to access system resources. Without system calls, each program would need to implement its methods for accessing hardware and system services, leading to inconsistent and error-prone behavior.Services Provided by System CallsProcess Creation and ManagementMain Memory ManagementFile Access, Directory, and File System ManagementDevice Handling(I/O)ProtectionNetworking, etc.Process Control: end, abort, create, terminate, allocate, and free memory.File Management: create, open, close, delete, read files, etc.Device ManagementInformation MaintenanceCommunicationFeatures of System CallsInterface: System calls provide a well-defined interface between user programs and the operating system. Programs make requests by calling specific functions, and the operating system responds by executing the requested service and returning a result.Protection: System calls are used to access privileged operations that are not available to normal user programs. The operating system uses this privilege to protect the system from malicious or unauthorized access.Kernel Mode: When a system call is made, the program is temporarily switched from user mode to kernel mode. In kernel mode, the program has access to all system resources, including hardware, memory, and other processes.Context Switching: A system call requires a context switch, which involves saving the state of the current process and switching to the kernel mode to execute the requested service. This can introduce overhead, which can impact system performance.Error Handling: System calls can return error codes to indicate problems with the requested service. Programs must check for these errors and handle them appropriately.Synchronization: System calls can be used to synchronize access to shared resources, such as files or network connections. The operating system provides synchronization mechanisms, such as locks or semaphores, to ensure that multiple programs can access these resources safely.How does System Call Work?Here is a detailed explanation step by step how system calls work: Users need special resources: Sometimes programs need to do some special things that can’t be done without the permission of the OS like reading from a file, writing to a file, getting any information from the hardware, or requesting a space in memory. The program makes a system call request: There are special predefined instructions to make a request to the operating system. These instructions are nothing but just a “system call”. The program uses these system calls in its code when needed.Operating system sees the system call: When the OS sees the system call then it recognizes that the program needs help at this time so it temporarily stops the program execution and gives all the control to a special part of itself called ‘Kernel’. Now ‘Kernel’ solves the need of the program.The operating system performs the operations: Now the operating system performs the operation that is requested by the program. Example: reading content from a file etc.Operating system give control back to the program : After performing the special operation, OS give control back to the program for further execution of program.Types of System CallsServices provided by an OS are typically related to any kind of operation that a user program can perform like creation, termination, forking, moving, communication, etc. Similar types of operations are grouped into one single system call category. System calls are classified into the following categories: read more about – Different Types of System Calls in OS Examples of a System Call in Windows and UnixSystem calls for Windows and Unix come in many different forms. These are listed in the table below as follows: ProcessWindowsUnixProcess ControlCreateProcess() ExitProcess() WaitForSingleObject() Fork() Exit() Wait() File manipulationCreateFile() ReadFile() WriteFile() Open() Read() Write() Close() Device ManagementSetConsoleMode() ReadConsole() WriteConsole() Ioctl() Read() Write() Information MaintenanceGetCurrentProcessID() SetTimer() Sleep() Getpid() Alarm() Sleep() CommunicationCreatePipe() CreateFileMapping() MapViewOfFile() Pipe() Shmget() Mmap() ProtectionSetFileSecurity() InitializeSecurityDescriptor() SetSecurityDescriptorgroup() Chmod() Umask() Chown() Open(): Accessing a file on a file system is possible with the open() system call. It gives the file resources it needs and a handle the process can use. A file can be opened by multiple processes simultaneously or just one process. Everything is based on the structure and file system. Read(): Data from a file on the file system is retrieved using it. In general, it accepts three arguments: A description of a file.A buffer for read data storage.How many bytes should be read from the fileBefore reading, the file to be read could be identified by its file descriptor and opened using the open() function.Wait(): In some systems, a process might need to hold off until another process has finished running before continuing. When a parent process creates a child process, the execution of the parent process is halted until the child process is complete. The parent process is stopped using the wait() system call. The parent process regains control once the child process has finished running. Write(): Data from a user buffer is written using it to a device like a file. A program can produce data in one way by using this system call. generally, there are three arguments: A description of a file.A reference to the buffer where data is stored.The amount of data that will be written from the buffer in bytes.Fork(): The fork() system call is used by processes to create copies of themselves. It is one of the methods used the most frequently in operating systems to create processes. When a parent process creates a child process, the parent process’s execution is suspended until the child process is finished. The parent process regains control once the child process has finished running. Exit(): A system call called exit() is used to terminate a program. In environments with multiple threads, this call indicates that the thread execution is finished. After using the exit() system function, the operating system recovers the resources used by the process. Methods to Pass Parameters to OSIf a system call occur, we have to pass parameter to the Kernal part of the Operating system. For example look at the given open() system call: C //function call example #include <fcntl.h> int open(const char *pathname, int flags, mode_t mode); Here pathname, flags and mode_t are the parameters. So it is to be noted that : We can’t pass the parameters directly like in an ordinary function call.In Kernal mode there is a different way to perform a function call. So we can’t run it in the normal address space that the process had already created and hence we cant place the parameters in the top of the stack because it is not available to the Kernal of the operating system for processing. so we have to adopt any other methods to pass the parameters to the Kernal of the OS. We can done it through, Passing parameters in registers Address of the block is passed as a parameter in a register. Parameters are pushed into a stack.Let us discuss about each points in detail: 1. Passing Parameters in Registers It is the simplest method among the three Here we directly pass the parameters to registers. But it will it is limited when, number of parameters are greater than the number of registers. Here is the C program code: C // Passing parameters in registers. #include <fcntl.h> #include <stdio.h> int main() { const char* pathname = "example.txt"; int flags = O_RDONLY; mode_t mode = 0644; int fd = open(pathname, flags, mode); // in function call open(), we passed the parameters pathanme,flags,mode to the kernal directly if (fd == -1) { perror("Error opening file"); return 1; } // File operations here... close(fd); return 0; } 2. Address of The Block is Passed as Parameters It can be applied when the number of parameters are greater than the number of registers. Parameters are stored in blocks or table. The address of the block is passed to a register as a parameter.Most commonly used in Linux and Solaris. Here is the C program code: C //Address of the block is passed as parameters #include <stdio.h> #include <fcntl.h> int main() { const char *pathname = "example.txt"; int flags = O_RDONLY; mode_t mode = 0644; int params[3]; // Block of data(parameters) in array params[0] = (int)pathname; params[1] = flags; params[2] = mode; int fd = syscall(SYS_open, params); // system call if (fd == -1) { perror("Error opening file"); return 1; } // File operations here... close(fd); return 0; } 3. Parameters Are Pushed in a Stack In this method parameters can be pushed in using the program and popped out using the operating systemSo the Kernal can easily access the data by retrieving information from the top of the stack.Here is the C program code C //parameters are pushed into the stack #include <stdio.h> #include <fcntl.h> #include <unistd.h> int main() { const char *pathname = "example.txt"; int flags = O_RDONLY; mode_t mode = 0644; int fd; asm volatile( "mov %1, %%rdi\n" "mov %2, %%rsi\n" "mov %3, %%rdx\n" "mov $2, %%rax\n" "syscall" : "=a" (fd) : "r" (pathname), "r" (flags), "r" (mode) : "%rdi", "%rsi", "%rdx" ); if (fd == -1) { perror("Error opening file"); return 1; } // File operations here... close(fd); return 0; } Advantages of System CallsAccess to Hardware Resources: System calls allow programs to access hardware resources such as disk drives, printers, and network devices.Memory Management: System calls provide a way for programs to allocate and deallocate memory, as well as access memory-mapped hardware devices.Process Management: System calls allow programs to create and terminate processes, as well as manage inter-process communication.Security: System calls provide a way for programs to access privileged resources, such as the ability to modify system settings or perform operations that require administrative permissions.Standardization: System calls provide a standardized interface for programs to interact with the operating system, ensuring consistency and compatibility across different hardware platforms and operating system versions.Disadvantages of System CallPerformance Overhead: System calls involve switching between user mode and kernel mode, which can slow down program execution.Security Risks: Improper use or vulnerabilities in system calls can lead to security breaches or unauthorized access to system resources.Error Handling Complexity: Handling errors in system calls, such as resource allocation failures or timeouts, can be complex and require careful programming.Compatibility Challenges: System calls may vary between different operating systems, requiring developers to write code that works across multiple platforms.Resource Consumption: System calls can consume significant system resources, especially in environments with many concurrent processes making frequent calls.ConclusionIn conclusion, system calls are a important part of how computer programs interact with the operating system. They provide a way for applications to request services from the OS, such as accessing files, managing memory, or communicating over networks. System calls act as a bridge between user-level programs and the low-level operations handled by the operating system kernel. Understanding system calls is essential for developers to create efficient and functional software that can leverage the full capabilities of the underlying operating system. Frequently Asked Questions on System Call in Operating Systems – FAQsHow does a system call work?When a program executes a system call, it transitions from user mode to kernel mode, which is a higher privileged mode. The transition is typically initiated by invoking a specific function or interrupting instruction provided by the programming language or the operating system. Once in kernel mode, the system call is handled by the operating system. The kernel performs the requested operation on behalf of the program and returns the result. Afterward, control is returned to the user-level program, which continues its execution. Why do programs need to use system calls?Programs use system calls to interact with the underlying operating system and perform essential tasks that require privileged access or system-level resources. What are some examples of system calls?Examples include opening and closing files, reading and writing data, creating processes, allocating memory, and performing network operations like sending and receiving data. Why are system calls necessary?System calls are necessary as they enable applications to request essential services from the operating system, such as file access, memory management, and hardware control, ensuring secure and efficient interaction with computer resources. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System/Introduction of System Call
https://www.geeksforgeeks.org/introduction-of-system-call?ref=asr10
PHP
Introduction of System Call
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, Introduction of System Call, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0325638205, 0.0247966014, -0.0129101574, 0.054988008, 0.0113664633, 0.0331975482, -0.0291026961, 0.0310688745, 0.00693037407, 0.0194180459, 0.0129670305, -0.0146244699, 0.0550530069, -0.0222129449, 0.00289848866, 0.0193205494, 0.00382876745, 0.014185736, 0.00729192328, -0.00345096877, 0.026064055, 0.00287411455, -0.0415659957, -0.00172040646, -0.0246991049, -0.0162006635, 0.0105052441, 0.00663382234, -0.0227816738, -0.0070359949, 0.0016391594, 0.0243903659, -0.00638195639, -0.025316583, 0.0127720376, -0.031166371, -0.0518031232, -0.0257390682, -0.0172243752, -0.00304473331, -0.0213517267, 0.00218351465, 0.0146407196, 0.00405016588, -0.0346762426, -0.00279083638, 0.00820595305, -0.0297526717, -0.0118051972, -0.0248615984, -0.0151850749, -0.0187030714, 0.0648026541, 0.0288102068, 0.0223266911, 0.0126745403, 0.00947340671, -0.0341562629, -0.0253328327, -0.0457908399, 0.0267302822, -0.00374548929, 0.00864468701, -0.030288903, 0.0304676462, -0.00525262207, -0.0452708602, 0.0599278286, -0.00896967482, -0.0188980661, -0.0202142671, 0.0144457268, 0.00113441201, -0.00250240928, -0.0258365646, 0.000336667494, 0.0385111049, 0.0387710966, -0.00449296227, 0.00370283448, -0.01063524, 0.0088884281, 0.018475581, -0.0114639597, 0.0154694393, 0.00276646228, 0.00259178109, -0.0641526729, 0.0319625922, 0.0132351452, 0.0110008512, 0.0160706677, 0.0280789826, -0.011138971, 0.011008976, 0.00304676453, -0.00160462933, -0.00823438913, -0.0204742588, 0.0207667481, 0.0217417125, 0.00415984914, 0.00156603695, -0.0462133251, 0.00970089808, 0.01393387, -0.0151607, 0.0192393027, 0.0401035473, 0.0503406748, -0.0404285342, -0.0127232894, 0.0102777528, 0.00237038289, -0.00704411976, -0.0239191335, 0.0157781783, -0.048715733, -0.0224079378, 0.0188330673, 0.0148925856, 0.0406560265, -0.0117726987, 0.0363986827, -0.0635352, 0.0509256534, 0.00740566896, -0.0292164423, -0.00901842304, 0.00436296687, -0.0127476631, -0.0155994352, -0.00900217425, 0.00527699618, 0.0105052441, -0.0220667012, 0.00953840464, 0.05076316, 0.00345706218, -0.0241628736, -0.029053947, 0.0236591436, -0.0500806868, -0.00837657135, -0.00450921152, 0.00940840878, -0.0163794067, 0.0361061916, -0.0380561203, 0.0531680733, -0.0296876747, -0.0252353363, -0.00230741641, -0.00915654283, 0.0271690153, -0.0202955138, 0.0151525764, 0.0622027479, -0.013560134, 0.00879093166, -0.000121172365, -0.0455958471, -0.0309551284, -0.0467333049, 0.0201980174, 0.017289374, 0.00457827142, -0.0304026492, -0.0297039244, 0.0495282039, -0.0397785604, 0.0289727, 0.0206367522, 0.00602853158, -0.00632102089, 0.0104158726, -0.00614227727, 0.0449133739, -0.0330350548, -0.00551261287, -0.033343792, -0.0173381213, -0.0441334024, -0.0036825228, 0.0320763364, 0.0251865871, 0.0127801616, -0.035391219, -0.0155831855, -0.02538158, -0.00487482315, 0.00428984454, 0.0378611274, 0.0374386422, -0.000215431646, -0.0150713287, -0.0374711417, 0.0444258898, 0.00933528692, -0.0243741162, -0.0438409112, -0.0188168176, -0.0144051034, 0.00373330223, -0.00276036863, 0.00414156867, -0.0167043954, -0.0149332089, 0.0101965051, 0.0238703843, -0.0367886685, 0.014494475, 0.000216193337, -0.0143563552, 0.0174681172, -0.0026811529, -0.000400903431, 0.0323850773, -0.0140069928, -0.0437759124, -0.00109785085, 0.0254465789, 0.0291351937, -0.0215954669, -0.0547280163, -0.0406560265, 0.0359437, -0.0445883833, 0.00163509697, -0.0266002864, 0.0179231, 0.0408835188, -0.00906717125, -0.0193530489, -0.0401685461, -0.0176468603, 0.0138688721, 0.0137307523, -0.00648757722, 0.0259503089, -0.0136495056, 0.0158594251, -0.0107083619, -0.00216117175, -0.00448077498, -0.00355252763, 0.0259178113, 0.0737073272, -0.00502106827, 0.0121464347, -0.00309754396, 0.0122845545, -0.000695170136, 0.00637789397, -0.0354237147, -0.0118864439, -1.15840533e-06, -0.0126339169, 0.0215792172, -0.0190605596, 0.0210429877, 0.00698724668, -0.000268115284, 0.0246828552, -0.0192880519, -0.00792158768, 0.0529730804, -0.00321332109, -0.00692631165, -0.0362036899, 0.0514456369, -0.0284689683, -0.00198039692, -0.0172081273, 0.0160300434, -0.0181343425, -0.0176793598, 0.0368536636, 0.00589447375, 0.012999529, -0.00456202216, -0.0367561691, 0.0316701, -0.00115167699, -0.00126237608, -0.0145107238, -0.0164525285, -0.0129020326, -0.038316112, 0.0142101105, -0.0244716126, 0.0149413338, 0.0158513, 0.0293951854, 0.0454333536, 0.0351637267, -0.0145675968, -0.00367236696, -0.0208317451, -0.0173381213, 0.0313938633, -0.0280139856, 0.00201086467, 0.00450514909, -0.00650382694, 0.00387954689, 0.0124795474, 0.000805361429, 0.0365611762, 0.000862234388, 0.0338962711, -0.0582703874, -0.0546955168, -0.0564179569, 0.0236591436, 0.0484232455, 0.00808002, -0.0135032609, -0.0283227246, -0.0308738817, 0.0349687338, 0.00796627346, -0.00745441718, 0.0483257473, 0.0252028368, -0.0245366115, -0.00272787, 0.0490082242, -0.0333112925, -0.0285664648, 0.00208195578, 0.0173381213, 0.00163408136, -0.00263849809, 0.0182643384, -0.0228791703, -0.00103640778, 0.023821637, -0.00158330204, 0.0387385972, -0.0163712818, -0.0173056237, -0.0452708602, -0.0417609885, -0.0112364674, 0.0086609358, -0.000151576533, 0.0370811559, 0.00259990571, 0.0264052935, 0.00162189431, 0.0244716126, 0.0165581498, -0.0190118104, 0.0128045361, -0.000320925872, -0.0148113379, -0.00808002, 0.00779565517, 0.0114964582, 0.0487482324, -0.0029086445, -0.00486669876, 0.0328075625, -0.029297689, -0.0359112, 0.0206367522, 0.0111633455, -0.0129020326, -0.0096115265, -0.0116914511, -0.0157781783, 0.0284039713, 0.0222291946, -0.00451327395, -0.0146163451, -0.0258690622, 0.000968871114, -0.0126014184, 0.0171106309, 0.0225216839, 0.006873501, -0.0187680703, 0.0254790764, -0.00202508294, -0.0122276815, -0.0111633455, -0.0019539916, 0.0104402471, 0.0022647616, -0.0265840366, 0.03756864, 0.001220737, -0.0126745403, 0.0223429408, -0.0137063786, -0.00135885703, -0.0324338265, -0.0106271151, -0.00581322704, 0.0269577727, 0.0412735045, -0.00299598509, 0.0582703874, -0.0332300477, 0.0205230061, -0.0232204087, -0.030045161, -0.0106433639, -0.0032194145, 0.00322957058, -0.0411760062, -0.0176143609, 0.0462133251, 0.00788908917, 0.0592453517, -0.0339287706, 0.0494632088, 0.0204417594, 0.0236591436, -0.0105621172, -0.00466358103, -0.00528512103, 0.0501456819, 0.0280789826, 0.0176468603, 0.0170618817, 0.00552886212, -0.00470420439, -0.0158513, -0.0309226289, 0.00805564597, 0.0051876246, 0.0147950891, -0.00335753453, -0.0509906523, 0.0265515372, 0.00342456345, -0.0290864464, -0.0231229123, -0.0219367053, 0.0330188051, 0.0150957033, -0.00654851273, -0.0650301427, 0.00356065226, -0.0393885709, -0.0208642446, 0.0165906493, -0.0159650464, -0.0575879142, 0.0229604188, 0.0133570163, 0.0409810133, 0.0406885259, 0.0179556, 0.0454333536, -0.0456283465, 0.0206855, -0.0158350505, 0.0293464363, 0.0226029307, 0.0096115265, 0.0182968378, 0.0332462937, -0.00387345348, -0.0275265034, -0.0342862569, -0.00307926349, -0.00113745884, 0.0402660407, -0.019775534, 0.0296551753, 0.0242766198, 0.027802743, -0.0198242813, 0.0120570632, 0.0102696279, -0.013064527, -0.0745523, 0.0120814368, 0.0394535698, -0.00919716712, -0.0466683097, -0.0188005678, 0.019531792, -0.0164606534, 0.0257065687, -0.00174173375, -0.0257878155, -0.00448077498, 0.0370486565, 0.00864468701, -0.012503922, -0.0156075591, -0.0225216839, -0.0522906035, 0.00745441718, 0.0172731243, 0.0611952841, -0.0341237634, -0.0144132273, -0.0256578196, 0.0176306106, -0.0304676462, 0.0118376957, 0.0186380744, 0.00638601882, -0.00370689691, -0.0415334962, 0.0211404841, 0.0126582915, 0.0134951361, 0.0391610824, -0.0154775642, 0.00179860671, -0.0321900845, -0.0036134629, 0.00831969827, 0.0249915943, 0.023204159, -0.00740566896, 0.014055741, -0.0118945688, 0.00436702929, -0.00658913609, 0.00797033589, -0.0314588584, -0.0531680733, -0.0268440265, 0.00548823876, 0.0298339184, -0.0146569693, 0.00784440339, 0.00710099284, -0.0228466727, -0.00282942876, 0.0310851242, -0.00627227267, 0.00468389271, -0.0319463424, 0.0341562629, -0.0235941447, -0.00844156928, 0.000662163482, 0.0423459671, -0.00414766232, 0.0130970255, -0.0033900335, -0.000173538632, 0.00194891379, 0.0104808705, 0.00625602342, -0.00189204083, -0.0216604657, 0.0100583853, -0.00196008524, -0.0152500728, -0.0251540877, 0.000982581638, -0.00698318426, 0.00951403, 0.0222941916, 0.0093190372, -0.00135682581, -0.00303051528, 0.0156888068, 0.00499669416, 0.00773471966, 0.0125932936, -0.00555323623, -0.0142101105, 0.0246341079, -0.00582541386, 0.0112364674, 0.048585739, 0.0175493639, -0.0300939102, 0.00179251318, 0.0144782253, -0.0114883333, -0.00493169622, 0.0272665117, 0.0155425621, 0.0123658022, -0.0188168176, -0.0129182823, 0.00360127585, -0.01766311, 0.00111308461, 0.00654038787, 0.0150875784, -0.0408510193, 0.0096846493, 0.00959527772, -0.0216117166, 0.000284618582, 0.0144538516, 0.0239841305, -0.00109581964, 0.0106758634, 0.00321128988, 0.0168018918, -0.0174843669, 0.0335387848, 0.000489259604, 0.00661351, 0.000894225435, 0.00346112461, 0.0395510681, 0.00646320311, 0.00556948548, 0.0119758165, 0.0143238558, -0.00878280681, -0.0252353363, 0.00941653363, 0.0127232894, -0.00312801171, -0.00961965136, 0.004261408, 0.00197227229, -0.00494388351, 0.0276077501, 0.0099771386, 0.0147219663, -0.0106921121, -0.0197105352, -0.00572791742, -0.0286802109, -0.00275427522, -0.0266977828, -0.00994464, -0.0237728879, -0.00953840464, 0.0245041121, -0.00708474312, -0.00731223496, -0.027624, 0.021335477, -0.00903467275, 0.00400141766, -0.0177118573, 0.119075686, -2.17399356e-05, 0.0550855026, 0.000466662779, 0.0137713756, 0.000604782777, -0.0051185647, 0.0123576773, 0.00532168197, -0.0259015616, 0.023512898, -0.00600822, -0.00372517761, 0.0415984914, -0.0190280601, -0.00534605607, -0.00739754457, -0.0103752492, -0.000309754396, 0.0392585769, 0.0528430864, 0.00528918346, -0.024942847, 0.0227329265, 0.0234154016, -0.0246666055, 0.00522012357, -0.0338637717, -0.0157944281, -0.00047453359, 0.0413385034, -0.0306626391, 0.00104707142, -0.0259828083, 0.0296389256, 0.0341887623, -0.0131376488, 0.00145330676, 0.00583353871, 0.0131213991, 0.000885085145, 0.00302442163, -0.00660944823, -0.0509906523, 0.00732848467, -0.0205717552, -0.023577895, -0.00881530531, 0.0205717552, 0.00311379344, 0.00894530118, -0.000559589127, -0.0199217778, -0.00896967482, -0.000593103527, 0.000361803308, -0.0154613145, 0.0051510632, -0.00792565, -0.0237728879, -0.0027461506, -0.017045632, 0.0310851242, -0.00863656215, -0.00178540405, -0.0122683058, -0.014494475, 0.0165337753, 0.0134545127, -0.00448483741, 0.00602853158, 0.00780377956, 0.0126826651, 0.000661147933, 0.0115777059, -0.0180530958, -0.00404204102, 0.00934341177, 0.00175798312, 0.00476514, -0.0240978766, -0.0107896086, 0.0131701473, -0.0125770438, -0.00529324589, -0.0349362344, -0.00471232925, 0.0285827145, -0.0135926325, 0.0120976865, -0.0097171478, 0.0128370347, -0.0338962711, 0.0519981161, 0.00215507811, -0.00850656722, 0.0212217309, 0.0135926325, -0.00301426579, 0.00202406733, -0.00257756282, -0.0245203618, -0.0147707146, 0.0224241875, 0.0118458206, -0.00995276403, -0.0175006166, -0.00404407224, -0.00683287764, 0.00849844236, -0.0387060978, 0.0208154954, -0.00610571634, 0.00118112913, 0.000808408193, 0.0229116697, 0.0254628267, 0.0131457737, 0.0380886197, -0.0227979235, 0.00180470024, 0.0362361856, -0.00418422325, -0.0522906035, -0.00830344949, 0.0159325469, -0.00340222055, 0.0290052, 0.032287579, 0.0334087908, -0.0037698634, 0.00227491767, -0.00352002867, 0.00315847923, -0.0239028838, 0.0145432232, -0.0240978766, -0.0109196045, 0.0372436494, 0.00672319392, 0.00406844635, -0.0043914034, -0.0149657074, 0.0380886197, -0.00300207874, 0.0109439781, 0.0335712843, 0.00776721863, 0.0214492232, 0.0184268318, 0.0286639612, 0.00957090314, 0.00747879129, -0.0199867766, -0.0134463878, -0.0380236208, -0.0153800678, 0.0238378868, -0.0159650464, 0.00653226348, -0.00872593373, 0.0270552691, -0.0371136554, -0.0480332598, -0.0583353862, -0.0287777074, -0.000487228448, 0.0203767624, 0.00699130911, -0.00848219264, 0.0385761037, 0.0282739755, -0.00480982568, 0.00781190442, 0.00478545157, -0.0140719898, 0.029118944, 0.00794596225, 0.0280627329, 0.0120895617, -0.0199542772, -0.00144518202, 0.0511856452, 0.014120738, 0.0306138899, 0.0229604188, 0.0132676447, 0.0093515357, -0.000374498137, -0.00710911723, 0.00171634404, -0.0110902227, 0.0126664164, 0.0134301381, -0.0136901289, -0.0134057645, 0.0371136554, -0.0307113864, -0.00710505527, 0.0408185199, 0.0201655198, 0.0129507808, 0.0212217309, -0.0174356177, -0.00179149758, 0.00940840878, -0.0147544658, -0.00817345362, 0.0107489852, -0.0182480887, 0.0119189434, -0.0108383577, 0.0372436494, 0.00927028898, -0.0194180459, 0.0295251794, -0.0156319328, 0.032157585, 0.0139744934, -0.00701568322, 0.0199542772, 0.00987964217, 0.00453764806, -0.00606915494, -7.54074208e-05, -0.0180368461, -0.0434184261, -0.0156806819, -0.0389335901, 0.0205717552, 0.00403797859, -0.000401919038, -0.00298989168, -0.000694154529, 0.00916466769, 0.00698318426, 0.0158513, 0.00846594293, 0.00754378922, -0.015241948, -0.0116752023, 0.00173360901, -0.0044970247, -0.0277702436, -0.0219692048, 0.0293951854, -0.0300614107, 0.00865281187, 0.000347585068, -0.00857968908, -0.0025938123, 0.000372213079, 0.00652007619, -0.0333112925, 0.00609352905, -0.014120738, 0.0174356177, -0.00502513, -0.00444015162, -0.006873501, -0.0188980661, 0.0118701952, -0.0261615515, 0.00374345807, 0.00157213048, -0.00838469621, -0.0172243752, -0.00357690174, 0.00371705275, -0.0324988216, 0.00298786047, 0.0234641489, 0.0411110111, -0.0475782752, -0.00336159696, 0.0237078909, 0.0375361405, -0.0105052441, -0.000415375573, -0.0183130857, 0.0224404372, -0.00200274, -0.0258853119, -0.0258853119, 0.0142019857, -0.00458639627, 0.0134707615, -0.00601228233, -0.00185344846, 0.002394757, 0.00570354331, -0.0072716116, -0.000634234806, -0.0313126147, -0.00150205498, -0.068182528, 0.0199705269, -0.0066053858, 0.0424109623, 0.0341887623, 0.0199867766, 0.0262752976, -0.00778346788, -0.0151688252, 0.0314263627, -0.0110333506, -0.00455389731, -0.0258528125, -0.0280952323, -0.00655257516, -0.0361711904, 0.0133895148, -0.0362036899, -0.0219692048, -0.0263890438, 0.00776721863, 0.0143888537, -0.00515918806, -0.018849317, 0.00803533383, 0.0119758165, 0.0375361405, 0.0179231, -0.0163712818, -0.0252840836, 0.00433453033, 0.00215507811, 0.0227491762, -0.0242441222, 0.0303701498, 0.00992839, 0.0140313664, -0.036008697, -0.0189793129, -0.0180530958, 0.00351596624, -0.00193672674, 0.00666632084, -0.00263443589, -0.00556136109, 0.0302076563, -0.00528512103, -0.0159000494, 0.0190280601, -0.0118214469, -0.025007844, 0.017045632, -0.00166353351, -0.0151200769, -0.00312801171, -0.0268927757, -0.0135195097, 0.0216767155, 0.0296876747, 0.0252515841, -0.0429309458, -0.0337987766, -0.0287127104, -0.0344162546, -0.00690193754, 0.00833594799, 0.0676625445, 0.0213842243, 0.0117726987, 0.0136576304, 0.0122601809, -0.00926216412, -0.035651207, -0.0574904159, -0.0251540877, 0.00652413862, 0.0329863057, 0.00632508332, -0.0091809174, -0.0197430346, 0.0164037813, -0.00419641053, -0.0190443099, 0.00217945222, -0.0147707146, -0.00838469621, 0.00919716712, 0.0190118104, 0.0111227222, 0.00595134683, 0.0176143609, 0.027802743, -0.000402680715, 0.0081978282, -0.000743918354, 0.0155019378, -0.00251053413, -0.00551261287, 0.00333925406, -0.0553129949, 0.0323200785, 0.0259178113, 0.0158431754, -0.0111633455, -0.00563448342, 0.0178581029, -0.0227329265, 0.00324581983, 0.00173970254, 0.0223266911, 0.00946528185, -0.011756449, 0.00108972611, -0.00122784614, 0.0130157787, 0.00231757225, 0.00162697234, 0.00423703389, -0.01187832, -0.0108302329, 0.0318488441, 0.0045295232, -0.0105377436, -0.0151525764, 0.0291351937, 0.0019966464, -0.00209617405, 0.0298664179, 0.016606899, -0.00162900344, -0.00846594293, 0.0116183292, 0.0115127079, 0.0161519144, 0.014990082, -0.0266165361, -0.00162189431, -0.00915654283, -0.0264377929, -0.00648757722, 0.00520387385, -0.0120245647, 0.00855531543, -0.0175656136, 0.0172406249, 0.0235941447, -0.0312801152, -0.00527699618, 0.0205880031, -0.0448158756, -0.00754785165, -0.0333762914, -0.0139663685, 0.0145107238, 0.0221479479, 0.00848219264, -0.00344487512, 0.0119026937, 0.00839282107, 0.0934666097, -0.00918904226, -0.0113583384, -0.0365611762, 0.00865281187, -0.0091484189, 0.0154613145, 0.00328644342, 0.0149657074, 0.001928602, 0.0542080365, -0.000175188965, -0.000815009524, -0.00679225381, 0.00343878171, -0.00583353871, 0.0185080785, 0.00667038327, 0.00715380348, 0.0043304679, -0.0326125696, 0.0104158726, 0.0252840836, -0.00320722745, 0.0127882864, 0.0141776111, 0.00458639627, -0.00905092247, -0.0249265973, 0.00922966562, 0.0205717552, -0.0181668419, -0.0166881457, 0.00753566436, -0.00493169622, 0.0212867279, 0.0393560752, -0.00987964217, -0.0255440753, 0.0104808705, 0.00728379842, 0.0127557879, -0.0299151652, 0.00504544238, -0.00690193754, 0.00187376025, -0.00123800198, -0.0064753904, -0.0129182823, -0.00542324083, 0.00890467688, -0.0190280601, 0.00725942431, -0.00888030324, -0.0134463878, 0.0187680703, 0.0151525764, -0.00356674567, 0.0163469072, 0.00214085984, 0.00437109172, 0.0256415717, 0.00885592867, -0.0038348611, 0.00511450227, 0.0201980174, -0.0305651426, 0.0124470489, -0.0321900845, 0.00172751548, 0.0137063786, -0.00315441703, 0.0100015122, 0.0289564505, -0.0184918307, 0.00428171968, 0.00932716206, 0.00196617865, -0.00155689672, -0.0302076563, 0.00749910343, -0.00535418093, 0.0158025529, 0.0123901758, 0.00861218758, -0.00443202676, -0.00281317928, -0.00908342097, 0.016671896, 0.00439952826, -0.00084801612, -0.0135438843, -0.024942847, 0.0129101574, -0.00721067609, -0.0052566845, 0.0359112, 0.00990401581, -0.00774284452, -0.0119351922, -0.00201391149, 0.0182480887, -0.00741379382, -0.00675163046, 0.00509419059, -0.0130157787, 0.016550025, 0.0146894678, -0.0298501682, 0.00600009505, 0.0521281101, -0.0182318389, 0.0049195094, -0.0100665102, 0.027932737, -0.0104077477, 0.029362686, 0.0233016554, -9.05142952e-05, 0.00303051528, -0.0222454444, 0.00312801171, -0.0017508741, -0.0134707615, 0.0140151167, -0.00767784659, -0.0014401041, 0.023204159, 0.0123658022, 0.00826688763, -0.00420859735, 0.026064055, -0.0102696279, -0.00816939119, -0.0194992926, 0.00758847501, -0.0101315081, 0.0343512557, -0.0179393496, -0.00754378922, 1.20204386e-05, 0.0257715657, -0.0272340123, -0.0080312714, -0.0134951361, 0.0126420418, -0.0241953731, -0.0152175734, 0.0120001901, 0.00427765772, -0.0088884281, -0.0160706677, 0.0265352894, -0.00533793168, 0.0174031202, -0.00813689269, 0.000352409115, -0.0142994821, 0.00430203183, -0.00667850813, 0.00411719456, 0.0229929164, 0.004261408, 0.00919716712, -0.0253490806, -0.025999058, -0.00161783199, 0.0082628252, -0.0363661833, 0.0114964582, 0.0064144549, 0.033213798, -0.0111714704, -0.0254790764, -0.0110577242, 0.00147057173, 0.0309226289, -0.0160381682, 0.017419368, 0.000881022774, -0.0195155423, -0.00537449261, -0.00732848467, 0.0101315081, 0.00729598571, 0.0109114796, -0.0275752507, -0.00841719471, 0.0260965545, 0.0233829021, -0.00291676936, -0.00192149286, -0.0036175251, -0.00539480429, 0.033473786, 0.0156644322, -0.00102320511, 0.000639312784, -0.0261453018, 0.0163794067, -0.034091264, -0.031913843, -0.00619915035, -0.0159163, -0.00809626933, -0.0112770917, -0.0196617879, 0.00591072347, -0.0153719429, 0.0151688252, 0.0201167706, 0.0284527186, 0.0044889, -0.00515918806, -0.00631695846, -0.0127070397, -0.00131924904, -0.0141694862, 0.0162169132, 0.0194830447, 0.00460670795, -0.0227816738, -0.000280302338, 0.00137104408, -0.00303457747, -0.00284161582, 0.0165906493, 0.00367439818, 0.0101071335, 0.017354371, -0.0200355239, 0.0398110561, 0.0449133739, -0.00755191408, 0.00596759608, -0.0447833762, -0.000813993916, -0.0213192273, -0.0324988216, 0.0131701473, 0.00181282498, 0.018849317, -0.00298379804, -0.0110658491, -0.0188168176, 5.16680484e-05, 0.0301426575, -0.00347128045, -0.010139633, 0.00992839, 0.0122033078, -0.0100583853, 0.0303214, -0.0221479479, 0.0263565443, 0.0147707146, 0.0139744934, 0.0289402, 0.00856343936, -0.0256090723, 0.014681343, 0.00238460116, -0.00594322197, 0.0198892802, -0.00505356677, 0.00821407698, -0.0150063308, 0.00154572527, -0.00341034518, 0.0187030714, -0.0235616472, 0.039746061, -0.00555323623, -0.0121789332, -0.025072841, 0.00824251398, 0.000157416172, -0.00882343, -0.0371786542, 0.00133549853, 0.00485044904, 0.0306788888, -0.00885592867, -0.0150713287, -0.00945715699, -0.0165337753, -0.0129182823, 0.0299639143, 0.0116833262, 0.00565073267, 0.00229929178, 0.0077631562, 0.00128878141, -0.00477732671, -0.0229116697, 0.0407860205, 0.0157863032, -0.0101883812, -0.0230741631, 0.0092865387, 0.00761691155, -0.00136291934, -0.0217904598, 0.0211404841, 0.000857664214, -0.0086609358, 0.0352937207, -0.0449133739, -0.0133570163, -0.00695474818, 0.00386532862, -0.0280952323, -0.00149596145, 0.00684506446, 0.00659319852, -0.0100583853, 0.00655257516, 0.000273447135, 0.00555729866, 0.0016391594, -0.0260478053, -0.0173056237, 0.00411719456, -0.00491138455, 0.00571979256, -0.0311176218, -0.00353221572, -0.00870156, 0.00912404433, -0.0223429408, -0.010261503, -0.03396127, 0.0017072038, 0.0107246116, -0.0121545596, -0.015550687, -0.00777128106, -0.0199867766, -0.0117401993, -0.00161580078, -0.0184918307, -0.00982276909, -0.016980635, 0.011008976, 0.00337987742, -0.00296754879, 0.00979839452, 0.0163712818, -0.00675975485, 0.0212867279, -0.0318163484, 0.0109846024, 0.0101233833, 0.000295028382, 0.0043914034, 0.0177281071, -0.0152663216, 0.0317026, -0.0182318389, 0.0219529551, -0.00945715699, 0.0224891845, 0.00315847923, -0.00985526759, -0.0134951361, -0.0123008043, 0.00128268788, 0.0163956564, 0.0431909338, 0.0419559814, -0.00697506, 0.000364850071, 0.0192555524, 0.00729598571, -0.00441577751, 0.00287614577, 0.00811251812, 0.0107327364, -0.00092316966, 0.00657694926, -0.0120001901, -0.0148600861, 0.0061463397, 0.00186665112, -0.0219042059, 0.00454983534, -0.00615446456, 0.0309063792, 0.0240978766, 0.000549941033, 0.0338962711, -0.0017092349, 0.015055079, 0.0174681172, -0.0382186137, 0.0116264541, -0.0108789811, -0.0065444503, -0.0260478053, -0.000398110569, 0.0131132752, -0.00466358103, -0.0289727, 0.0157781783, 0.0076331608, -0.00208195578, 0.00517137488, -0.029671425, 0.0230579153, -0.0176468603, -0.00417609885, -0.00233585294, -0.00523637282, -0.0326938145, 0.0117645739, 0.0022180446, 0.0147219663, 0.00225257454, -0.00623164931, 0.0133651411, -0.00706443144, 0.011073974, -0.00088305393, -0.0158106778, -0.0375036411, -0.00305082696, 0.000795205589, 0.00891280174, -0.00323363277, 0.00546792708, -0.00593509758, -0.00706443144, 0.0150063308, 0.0041436, 0.00104910263, 0.0155263124, 0.000304422574, 0.0216279663, -0.0117077008, 0.0156806819, -0.0167043954, -0.00783627853, -0.0308251325, -0.0107652349, -0.00960340165, 0.00349565456, 0.0196292885, -0.00274818158, 0.00532980682, -0.01187832, 0.0197592843, 0.00964402594, 0.000416137278, 0.015306945, 0.00254303287, 0.00698724668, -0.0135276346, -0.00513075152, 0.000929771, 0.00648757722, 0.00254912628, -0.00141776109, -0.0185893271, 0.0113258399, 0.0231879093, 0.00430203183, 0.00341440761, 0.00741785625, -0.0105539924, 0.00825063884, 0.0136576304, 0.00529730786, -0.0131782722, 0.0147219663, 0.0195805412, -0.0128045361, 0.0102858776, 0.00467576785, 0.0127882864, -0.00293504982, -0.00931091234, 0.0050576292, 0.0118051972, 0.0305651426, 0.0017742326, 0.033473786, -0.00534199411, 0.0283227246, 0.00316863507, 0.0266002864, 0.00948153157, -0.00600009505, -0.0114070866, -0.0105864918, -0.00615852699, 0.00853906572, -0.00747472933, 0.0020606285, 0.0102533782, 0.00499263173, -0.0236916412, -0.0194342956, 0.0153800678, 0.0138607481, 0.0166231468, 0.00956277829, -0.0135438843, 0.00958715286, 0.0022424187, -0.000225714481, -0.00721473852, -0.0225866809, -0.00264256052, -0.0054801139, 0.0178581029, 0.0112770917, -0.00927841384, 0.00615446456, 0.00238866336, 0.0200842731, 0.0240816269, -0.0178581029, 0.00490325969, -0.0162250362, 0.00460670795, 0.021709213, 0.00380236213, 0.0187355708, -0.00690193754, -0.0194017962, 0.00728379842, 0.0243416186, -0.0132351452, 0.0177768562, -0.0239191335, -0.00695068575, -0.00917279255, -0.00625196099, 0.019158056, -0.0133488914, -0.00144518202, 0.0076006623, -0.0271690153, -0.00552073726, 0.0111552207, -0.0109196045, 0.0117808236, 0.00780377956, -0.00242522452, 0.00808002, 0.00734879635, -0.00339409569, 0.0180530958, 0.00742598111, 0.0153719429, 0.019775534, -0.00431421865, -0.00367033575, -0.00664194673, -0.00455389731, 0.00701162079, -0.00568729406, 0.011260842, -0.00551261287, -0.00173157791, -0.0101721315, 0.00486669876, -0.0105458675, 0.0219204556, -0.00156299025, 0.0139013715, 0.0134707615, 0.00746254204, 0.0140069928, 0.0161356647, 0.00929466356, 0.000552987796, -0.000316101825, -0.0137713756, -0.00146752491, -0.00404407224, -0.00819376577, -0.0252515841, -0.0108058583, -0.000932817755, -0.00831969827, 0.00397095, 0.0173218716, -0.00939216, 0.029736422, 0.0164362788, 0.0152825713, -0.00976589601, 0.0131213991, -0.0227004271, -0.0153394444, -0.00608540466, 0.0106271151, -0.0115127079, -0.000264814618, 0.00606103055, -0.0225054342, -0.00201797369, 0.00582541386, -0.00901029818, -0.0265190396, -0.0251703374, 0.00688162586, -0.0308901314, -0.0179393496, 0.0163306575, -0.00652413862, 0.00213273522, -0.00814908, -0.0238703843, -0.00713349134, -0.00114659907, -0.00725536188, -0.0341237634, -0.0175331142, -0.00055857352, 0.0105783669, -0.00477326475, 0.017045632, 0.0195155423, -0.00504950434, 0.000682475278, -0.00834407285, -0.00823438913, -0.0169643853, 0.033473786, -0.0109683527, -0.00233382173, 0.00105621177, -0.0302401539, -0.00710099284, -0.000519981142, -0.0093190372, 0.00324988225, -0.0102940015, -0.0130320275, -0.0114883333, 0.00125120464, 0.0117889475, -0.000141674551, -0.00531762, -0.0128207859, 0.00308941933, -0.00930278748, 0.0103833741, 0.0119758165, 0.0133163929, 0.000190803636, 0.00532980682, 0.00494794594, -0.0156563073, 0.00946528185, 0.00751129026, 0.00172446878, -0.0220667012, 0.00512262667, 0.00735692075, -0.00940028392, 0.0214979704, 0.0102858776, 0.00760878669, 0.0123008043, 0.0168993883, -0.0163387824, -0.01187832, -0.00514293881, 0.00282536633, 0.00193266431, -0.0035017482, 0.00301020336, 0.0114152115, 0.00606915494, 0.00581322704, -0.0214329734, -0.0024597547, 0.00773471966, 0.00133549853, 0.0128532844, -0.0215792172, 0.0131213991, -0.0282739755, 0.00196719426, -0.00378001924, 0.0106189903, 0.00436702929, 0.0112770917, -0.00914029405, -0.00825063884, -0.00145533786, -0.0155344373, -0.0472532883, 0.000827196578, 0.0344487503, 0.0123008043, 0.0142263593, 0.0249753445, -0.00713349134, -0.00258365646, -0.00293098763, 0.0020149271, -0.00604071841, 0.0101558818, 0.0168018918, 0.0168018918, 0.0099771386, -0.00686943857, -0.00501700584, 0.00176509225, 0.0060163443, -0.00701162079, -0.00635758229, 0.000775909401, -0.00808002, 0.0310688745, 0.0157863032, -0.0203280132, 0.0145919714, -0.0105946157, 0.0194830447, -0.00624789856, 0.00197633472, -0.00949778128, -0.0262265503, -0.00513481395, -0.0110252257, -0.0124795474, 0.0335062854, 0.0160544179, 0.0115614561, -1.82171134e-05, 0.0131945219, 0.00371502154, 0.000401157333, -0.0054801139, 0.0206855, 0.00513075152, -0.0111227222, 0.0227004271, 0.0152663216, -0.0104239974, -0.0235616472, 0.0317351, -0.00792971253, -0.00576854078, 0.0276402477, -0.00288020819, -0.0237728879, 0.00589041179, 0.00334331626, -0.006345395, 0.00121565908, -0.0190280601, -0.00532980682, 0.00373533345, -0.00466764346, -0.00202609855, 0.00256131333, 0.00408672681, -0.00305082696, 0.0163794067, -0.00126034499, -0.00519574946, 0.0155831855, 0.0101152584, 0.00627227267, 0.014868211, -0.00429390697, 0.00633727, 0.00584166311, 0.00311785587, 0.0191743057, -0.00233991514, -0.0143888537, 0.00546386465, 0.00624383613, 0.00817751605, -0.0333762914, -0.00110191316, -0.00256537576, -0.00740566896, 0.00638195639, 0.0035708081, 7.95332526e-05, -0.00473670335, -0.00953028, -0.00784034096, 0.0217417125, 0.0171756279, -0.00670694467, 0.019596789, -0.0136576304, -0.0152744465, -0.00579291489, 0.0170293823, 0.0116752023, -0.0108789811, -0.012008315, -0.014055741, -0.0127476631, 0.0218392089, -0.0108302329, 0.00905092247, 0.0034367505, -0.00718630198, -0.00282739755, -0.0240328796, -0.00182602764, 0.0136576304, -0.00862031244, 0.00676381728, -0.00735692075, 0.0106271151, 0.00256334455, 0.0099771386, -0.0171756279, 0.00481388811, -0.000737824827, 0.0214329734, 0.0219854526, 0.000261767855, -0.0114558348, 0.0112283435, -0.0079987729, 0.0061463397, -0.00789721403, 0.0159163, -0.0124389241, -0.0217742119, -0.0206855, -0.0182480887, -0.00820595305, -0.00442390237, 0.0137632517, -0.00446858816, 0.00383892329, -0.00641851733, 0.0134626376, -0.00686943857, 0.002177421, -0.00172548438, 0.0264540408, 0.00568323163, 0.0143401055, 0.00091555278, -0.024764102, 0.0126339169, -0.00344893755, 0.0118620703, 0.0108302329, 0.0173868705, -0.011569581, -0.00992839, -0.0182805881, -0.0113258399, 0.0165825244, 0.00407250877, -0.00829532463, 0.0137876254, 5.10650425e-05, -0.0108383577, -0.00837657135, 0.00456608459, -0.00669069495, -0.00150205498, 0.0144619755, 0.0252028368, -0.0191418063, 0.00410500728, 0.00601228233, 0.0195642915, 0.0175006166, -0.0193205494, -0.0090590464, -0.0186218247, 0.00024831132, 0.00579697732, 0.0108464817, -0.00116691086, 0.00673538074, -8.32147562e-05, 0.0115939546, 0.0181018449, 0.00820595305, 0.00316863507, -0.0237891376, 0.00369877229, 0.0229766667, 0.00909154583, -0.00993651524, 0.00550448801, 0.0117889475, 0.0161194168, -0.0125607951, -0.0183455851, -0.0113014653, -0.00953028, -0.00127862557, 0.0158594251, -0.00680850307, -0.021400474, -0.00627227267, 0.00373533345, 0.0184105821, -0.00183009, 0.00322957058, 0.0107896086, 0.0148194628, 0.00295536174, 0.00285583409, -0.00644695386, -0.0025938123, -0.0237728879, 0.00459452113, -0.00374142686, -0.0181668419, 0.0166393965, 0.00553698698, 0.00945715699, -0.0293139387, 0.00268724631, 0.010074635, 0.0101965051, 0.00100594014, 0.00163205026, 0.00521606114, 0.010074635, -0.00231960346, 0.0175168645, -0.0129507808, -0.0271365158, 0.0057847905, 0.0116020795, -0.0188330673, 0.0265515372, -0.0190118104, -0.0136820041, -0.00327628758, 0.00267505925, -0.00539886672, 0.00835219771, -0.00779159274, 0.0162575357, -0.0201005209, -0.0122276815, 0.0091484189, -0.00431015622, -0.0179231, 0.0190280601, -0.00434671761, 0.0164200291, -0.00733254664, -0.00146244699, 0.00499669416, -0.00111917825, -0.000778448361, -0.00777534349, 0.00402376056, 0.00388970273, 0.000536738371, 0.0157213062, -0.007401607, -0.0149494587, -0.000843953807, -0.00168993871, 0.0109764775, -0.0112445923, -0.00285380287, 0.0039932928, -0.00371299055, 0.00619915035, -0.0142019857, 0.0179393496, 0.00778753031, 0.00283755339, -0.022765426, -4.85578094e-05, -0.0046595186, -0.00154877198, -0.0265352894, -0.00816126633, 0.00836844649, 0.00560198445, 0.00597165851, 0.00693443604, -0.00183009, 0.0136495056, -0.00255928235, 0.0070725563, 0.0173056237, -0.00713755377, -0.0163875315, 0.00202508294, -0.0091809174, 5.90945383e-05, 0.00165845559, 0.0166556463, -0.000962269842, -0.00920529105, -0.0259665586, 0.0200842731, -0.0108789811, -0.00482201297, -0.00115878612, -0.00466358103, -0.0262103, 0.00530949514, -0.00187172904, 0.00286802114, -0.0153231947, 0.00944903307, -0.0123658022, 0.0188818164, 0.0080597084, 0.0270390194, 0.0150388302, -0.0017742326, 0.00576041639, 0.0302564036, 0.00664194673, -0.0149088344, -0.0348062404, 0.0225054342, -0.00271771406, 0.000905904686, -0.00661351, 0.00550448801, -0.0165987741, 0.00165642437, -0.00859593879, 0.0208804943, -0.016736893, 0.00816126633, 0.00550448801, -0.00017125356, 0.0180693455, -0.0163550321, -0.00415984914, -0.00714974105, 0.0072025517, -0.0112527171, -0.0103346258, -0.00703193247, 0.00467170589, -0.00209211162, -0.00634945743, -0.00160259823, 0.0254628267, -0.0133001432, -0.0259665586, -0.00376173877, 0.0110252257, -0.0186868235, 0.00142893265, 0.00213273522, 0.00159041118, -0.00411516335, -8.41668734e-05, -0.0134707615, 0.00385314156, -0.00262224884, -0.0210754871, -0.0128695341, -0.0142507339, -0.0185893271, 0.0157700535, 0.0210592374, 0.0204417594, 0.00324581983, -0.00116183294, -0.0150632039, 0.0182643384, 0.0166556463, 0.00247397297, 0.0431584343, -0.00427359529, 0.00792158768, -0.0106677385, 0.0100015122, -0.0240003802, 0.000865788956, -0.00210226746, 0.0179556, 0.00795408711, 0.0225541834, -0.00922154076, 0.00342456345, -0.00210023648, 0.0138526233, -0.025755316, -0.00331691117, -0.000446351, -0.00389376516, 0.00332097337, 0.0217742119, -0.000945004809, -0.0113258399, -0.00719848927, 0.00176102994, 0.00480576325, -0.00115472381, -0.00634945743, 0.0126989149, 0.00584166311, -0.010513369, 0.00466358103, -0.00903467275, -0.00738941971, 0.00344893755, 0.00970089808, -0.0191093069, -8.7213637e-05, -0.00814501755, -0.00649570208, -0.00207484677, 0.0104402471, -0.0139013715, -0.00222413824, 0.00275021279, -0.000120093304, 0.0164687783, 0.029118944, -0.0121383099, -0.00825063884, -0.016428154, 0.0160056707, 0.00431828108, 0.000709896151, 0.00795002468, 0.0178256035, -0.0141776111, -0.0200192742, 0.00443608919, -0.00865281187, -0.0152094485, 0.00193977344, -0.01020463, -0.00597978337, -0.00103437656, 0.0116670774, 0.0275915, -0.00612196559, 0.00647945283, 0.0138932467, 0.0240491293, -0.00665819645, 0.00359111978, 0.00118316023, -0.00454171048, -0.0144457268, -0.0100990087, 0.00753972679, -0.0314588584, -0.00817751605, 0.0159650464, 0.00385111035, 0.00347331166, 0.00896967482, 0.00844156928, -0.00221195119, -0.00659726094, -0.00725942431, 0.0164444037, -0.00390188978, -0.0137551269, -1.32740552e-05, -0.00655663759, 0.0155588109, -0.0109114796, 0.0180205964, 0.0086284373, 0.00538668, 0.00793377496, -0.00353830936, -0.0164606534, 0.00770628313, -0.00792971253, 0.0100340117, -0.0129426559, -0.0163387824, 0.0145919714, -0.0190280601, 0.0334087908, 0.00890467688, -0.00151525764, -0.00909154583, -0.0230904128, 0.0140801147, -0.00771847041, 0.0173218716, -0.00285989628, -0.0056547951, -0.0145675968, -0.0191093069, -0.0295576788, 0.00714974105, -0.00475701503, -0.00264459173, 0.00693443604, -0.00996901374, 0.0175493639, 0.00405829027, -0.0126664164, 0.0218229592, -0.00884780474, 0.00464326935, 0.0115939546, 0.0193855483, -0.0117970724, 0.0359112, 0.0146732181, 0.00903467275, -0.0125932936, -0.00559385959, 0.0104321223, -0.00322347693, 0.0193043, 0.0118620703, -0.000466154976, 0.0097171478, -0.0121383099, -0.00627227267, 0.0038632974, -0.00195703842, -0.00409485167, 0.0207504984, 0.00158634875, -0.000314070639, -0.0209292416, -0.0103833741, -0.0226354301, 0.0370811559, -0.0185080785, 0.0153231947, 0.0190768093, -0.0323525779, -0.0141532375, 0.0198567808, -0.00457827142, -0.0154044414, 0.0249915943, -0.017419368, -0.0177606065, -0.007401607, 0.0149819572, -0.00149189902, 0.00732036, 0.00314426096, -0.0154206911, -0.00866906065, 0.0182155892, -0.00270349579, 0.00816939119, 0.00504544238, 0.000378306606, 0.000238790177, -0.0251378398, 0.00419641053, -0.00142690144, 0.00645914115, 0.0214654729, -0.00241100648, 0.0100421365, -0.0142019857, 0.00930278748, -0.0125201717, -0.010139633, 0.00222616922, 0.0103996228, 0.0134626376, 0.0337012783, 0.00414156867, 0.00301629701, -0.002177421, -9.38149606e-05, 0.00481388811, 0.00738129485, 0.00527293375, 0.0172243752, -0.0265677869, 0.013186397, 0.00699943397, 0.0158513, -0.00384907937, 0.0113420887, -0.00753972679, -0.00241913111, 0.0040156357, 0.00127964118, 0.0160137955, 0.000630172493, -0.0177931059, -0.00289848866, -0.00771847041, -0.0162169132, -0.0160544179, 0.00137205969, 0.0113908369, -0.00134971668, -0.0169318859, -0.00871780887, 0.00306910765, -0.00501294341, 0.00796627346, -0.0157863032, -0.0113989618, 0.0188980661, -0.0111714704, -0.0224241875, 0.00949778128, -0.0261453018, -0.0169481356, 0.00619915035, -0.00220179511, -0.00314629218, -0.0350987278, 0.00371705275, 0.0114152115, 0.0101315081, -0.00785659067, -0.00519981142, 0.0174681172, -0.00214492227, -0.0145838466, -0.026811529, -0.0203605127, 0.0122683058, -0.00457420945, 0.039876055, -0.0262265503, -0.00830751192, 0.00676381728, -0.000359264319, -0.0076940963, 0.00407454, -0.00408266438, 0.00287817698, 0.00871780887, 0.00455389731, 0.00105316495, -0.0178093538, -0.0057157306, 0.0106596136, 0.0132026467, 0.0156725571, -0.00611384073, 0.00255928235, -0.00431828108, 0.0160219204, 0.00900217425, -0.0312151182, 0.0101477569, -0.00188290048, -0.00108464819, 0.00666225841, -0.0292001925, 0.00909967069, 0.020961741, -0.0115614561, 0.000135581024, -0.0180530958, -0.0174031202, -0.0128289098, -0.0185080785, 0.00538668, -0.00649163965, 0.023204159, -0.00823845156, -0.0041314126, -0.00824657641, 0.0149169592, -0.016485028, 0.0152338231, -0.0155750606, -0.00875030831, 0.017354371, -0.0137713756, -0.00671506906, 0.00292083155, 0.00235819584, 0.00692631165, 0.0116427029, 0.00616665138, -0.0101071335, 0.00372517761, -0.0174518675, -0.00862031244, -0.0584978797, -0.00987964217, 0.0233991519, 0.010513369, 0.00281927292, 0.0154044414, -0.00619508792, -0.00557354791, 8.53728852e-05, 0.0217579622, 0.0140232416, 0.00589853618, 0.00455795974, 0.00761284912, 0.0051266891, -0.000572791731, -0.00983901881, -0.00266490341, -0.000976995798, -0.00363986799, -0.00239678822, -0.0302726533, 0.00720661366, -0.00857156422, -0.00825470127, -0.000527090277, 0.00311176223, -0.0196617879, 0.00577666564, 0.00759253744, -0.0162169132, -0.0106027406, 0.00284770923, -0.002394757, -0.00274411938, -0.00935966056, 0.0040298542, -0.0179231, 0.0133976396, 0.00696287258, -0.00278880517, -0.0133163929, 0.00358502637, -0.0266327858, -0.00784846582, 0.0142751075, -0.00732036, 0.00605696812, -0.013438263, 0.0102858776, -0.0149819572, 0.0168018918, -0.0097496463, 0.00118519145, 0.0239191335, -0.00540292915, 0.00307316985, -0.0168668889, 0.0171268787, 0.00469608, 0.00216726516, 0.0137226274, -0.00012123584, -0.00405422831, -0.00448483741, 0.0221804455, -0.00723098777, 0.00887217838, 0.00762909837, 0.0169481356, 0.00992026553, -0.0151444515, -0.0128045361, 0.00901029818, -0.00797846075, 0.00371299055, 0.00728379842, 0.00271771406, -0.0105702421, 0.0175818633, 0.0165744, 0.000181409443, 0.00442390237, 0.00341237639, 0.0106108654, 0.0218067095, -0.00479763886, -0.00570354331, -0.00391001441, -0.0186868235, 0.0207667481, 0.00811251812, -0.00334534748, 0.0326775648, 0.0170943812, 0.0179231, -0.0203117635, 0.00148783671, 0.0211242344, -0.00873405859, 0.000148783671, 0.0104971193, 0.0242441222, -0.000821610854, 0.0130401524, -0.0294601824, -0.000626617926, 0.00859593879, -0.00316660409, 0.00621133763, 0.0239841305, 0.00154775637, -0.00108160148, -0.0102290045, 0.0437434167, 0.0329538062, 0.00857968908, 0.00359924464, -0.00999338832, 0.00872593373, -0.00450514909, -0.048585739, 0.0145757217, -0.00777940545, 0.00408875803, -0.00696287258, -0.0218067095, -0.000937895675, -0.0131945219, -0.0250403434, 0.0150388302, 0.0145675968, 0.008522816, -0.00979027059, -0.00939216, -0.0205880031, -0.00329659926, -0.000905396882, 0.00526887178, 0.0014167456, 0.00768597145, 0.0112770917, 0.021644216, -0.00371299055, -0.0264052935, -0.012065188, -0.0178581029, 0.0395835675, 0.0027969298, -0.0021957017, -0.00117808231, -0.00359721342, 0.0210429877, 0.0158431754, -0.0145675968, 0.0101721315, -0.000766261306, 0.00713755377, 0.00981464423, -0.0125607951, 0.00320722745, -0.00613009045, -0.011943317, -0.00947340671, -0.000236124251, 0.00748691615, -0.00622352445, -0.0165906493, 0.00825063884, -0.0146650933, 0.0368211642, -0.00143197936, 0.00882343, 0.00929466356, 0.00598790823, 0.00966027472, -0.00825470127, 0.0150875784, 0.00385314156, 0.0125120468, -0.000593103527, 0.0126501666, 0.0157944281, -0.000820595247, -0.0136820041, -0.0307601355, 0.0175168645, 0.012877658, -0.00414156867, -0.0119189434, 0.0091809174, 0.0136738792, -0.00437109172, 0.00733254664, -0.0163144097, 0.00630477164, -0.0118458206, 0.0240978766, 0.0163794067, 0.00835219771, 0.00643070461, 0.000802822469, -0.000332605123, -0.00216117175, 0.00657694926, -0.0178093538, 0.0127882864, 0.0114802094, 0.00281927292, -0.0108058583, -0.0169643853, 0.0138851218, -0.0253653303, -0.0022647616, -0.000762198935, -0.00976589601, -0.0186543241, 0.0178418532, -0.00677194213, 0.0122601809, 0.00941653363, -0.0099771386, 0.0181668419, -0.00537855504, 0.0190280601, -0.00886405353, -0.00820595305, 0.025934061, -0.00189915, -0.00588228693, 0.0106027406, -0.00977402087, -0.00136291934, 0.000894733181, 0.0114639597, -0.00727973599, 0.000361295504, 0.0107164867, -0.0136170061, -9.38149606e-05, -0.00950590521, -0.00973339751, -0.0137795005, 0.00335956574, 0.0114883333, 0.0322388336, -0.00595134683, 0.00454577291, -0.0114314612, -0.0207667481, -0.00473264093, -0.0015954891, -0.00548417633, 0.00766565977, 0.0293789357, 0.0161925387, -0.00896155, 0.0164444037, -0.0212217309, 0.0107814847, -0.00101711159, 0.00337378401, 0.0142913572, -0.008522816, -0.0275102537, -0.00241303747, 0.0133651411, -0.00113948993, -0.00935966056, -0.0233341549, 0.0060163443, -0.014185736, -0.0233829021, -0.0106839882, 0.00178946636, -0.0127964113, -0.000357233163, -0.00142893265, -0.00655257516, -0.0256415717, -0.0122764306, 0.00151119521, -0.0152094485, -0.00407860242, 0.0115533313, -0.00584572554, -0.0142994821, 0.00545574, -0.00780784199, -0.0220829491, -0.00260193693, 0.00591072347, 0.0139013715, 0.00515512563, -0.0157700535, -0.00902654789, 0.0111633455, -0.00793377496, -0.0121383099, 0.00152744469, -9.93372232e-05, -0.0144457268, -0.00345096877, 0.00662163505, 0.0227816738, -0.0362036899, -0.0144782253, -0.00991214067, 0.0015071329, -0.0173218716, -0.0218717083, 0.0102777528, 0.0104158726, 0.0086609358, 0.0147057176, 0.0186543241, -0.0180855952, 0.0174681172, -0.0015518188, -0.00578072807, -0.00701974565, -0.00155080319, -0.0118701952, -0.000961254234, -0.00181384047, -0.00660944823, 0.0100096371, -0.0129426559, -0.0086609358, 0.0145269735, -0.00629664678, -0.00242116232, -0.00296754879, -0.00758035, -0.00708474312, 0.00843344443, -0.0211729836, -0.0174518675, 0.0142913572, 0.0118133221, 0.00324581983, 0.013373265, -0.0288914535, -0.00508606574, 0.0202792659, -0.0322550796, -0.00153556932, 0.0112527171, 0.0176793598, -0.00161681639, -0.0133326417, 0.00274411938, 0.0158106778, -0.00218554586, -0.0072513, 0.0126989149, -0.0113014653, 0.00277864933, -0.00455795974, 0.00490732212, -0.00488701044, -0.0152663216, -0.0111145973, -0.0120733129, 0.00678819139, -0.00277864933, 0.0114720846, 0.00367033575, -0.0152825713, -0.00633320818, 0.00409485167, 0.0121139362, -0.00541511644, 0.0860568807, 0.0175493639, 0.011195844, -0.0221641976, 0.0113908369, 0.00230132276, -0.0192393027, 0.0499506891, -0.00240491284, 0.0180368461, -0.0135438843, 0.0101152584, -0.0237403903, 0.00082872, -0.0080922069, -0.0154125663, -0.018540578, -0.002705527, 0.011756449, 0.00356674567, 0.0051185647, -0.00438734097, -0.00567104435, -0.0141369877, -0.00358502637, 0.0126826651, -0.0153394444, -0.0111470958, -0.0243741162, 0.00822626427, -0.00364189921, 0.0252190866, 0.0112527171, -0.00482607493, -0.0245528612, 0.00241506868, 0.0291351937, 0.0218067095, 0.00957090314, -0.0126582915, 0.013308268, -0.0089778, 0.00135581021, -0.00406844635, 0.0149982069, 0.00491544697, 0.015485689, -0.0149413338, -0.00734067149, -0.0133570163, 0.0121139362, -0.00132331147, 0.00207383116, -0.0126257921, 0.00167470495, 0.00530949514, -0.00125222025, -0.00107449235, 0.0261940509, -0.0031726975, 0.00602446916, 0.00384704815, -0.00912404433, -0.00608540466, -0.0115858298, -0.00961965136, -0.0252840836, 0.00203727, -0.000946020416, 0.00412735064, 0.0234154016, -0.0072716116, 0.00453764806, 0.00676381728, 0.0118945688, 0.00541917887, 0.00885592867, 0.0288264547, -0.0109114796, -0.00164525292, -0.00359315099, 0.00735692075, -0.000581424218, -0.00687756343, -0.00380845577, -0.00409078924, -0.00844156928, -0.0214817207, -0.014681343, 0.00960340165, 0.0127639128, 0.0316538513, 0.000662163482, 0.0145026, 0.0204742588, -0.0108139832, -0.00269334, 0.0189305637, 0.00801908411, 0.000849031727, 0.00998526346, -0.000729192339, -0.0133001432, -0.0086609358, -0.00101457257, 0.0224729348, -0.0078322161, -0.0025064717, 0.0197917838, -0.015055079, 0.0189468134, 0.0196942855, 0.00168689201, 0.021091735, -0.00316457287, 0.00686943857, 0.0187030714, -0.0011526926, 0.00483826222, -0.0128532844, 0.0164606534, 0.0233829021, -0.0186705738, -0.00313816755, -0.00215710932, -0.0236753915, 0.0251215901, 0.0186705738, 0.0116995759, -0.00635758229, 0.0212217309, 0.00506169163, 0.0255278256, -0.00173868705, -0.00567104435, 0.0344812497, -0.0231716596, -0.0148763359, -0.00803939626, 0.00286599, 0.0328888074, -0.0120976865, 0.00425328361, -0.000848523923, -0.0150144557, 0.0108627314, 0.00554104941, 0.00194586697, 0.0204255097, -0.0237241406, -0.0123576773, 0.0328238122, 0.0216767155, -0.0126257921, 0.0205880031, -0.00739754457, 0.00887217838, -0.0193692986, 0.0225541834, -0.00912404433, -0.00669475738, 0.00569541845, 0.0223591905, -0.00914029405, 0.0136576304, -0.0108952299, 0.0270065218, 0.0090590464, 0.00613821531, 0.0151282018, 0.00761284912, 0.0175168645, -0.015363818, 0.00984714273, -0.00916466769, 0.00384907937, 0.0185080785, 0.0103508746, -0.0213679764, -0.0154450657, -0.0108952299, 0.013438263, -0.0066744457, 0.0372111499, 0.000923677464, -0.00886405353, -0.0179068521, -0.00560198445, 0.0303539, 0.0240653772, -0.00260803057, -0.0239841305, -0.0200355239, -0.00795408711, -0.0043914034, -0.0082872, -0.00853094086, -0.00884780474, -0.0196130387, -0.000641851744, -0.0045295232, -0.00335956574, 0.00711317966, 0.00973339751, -0.00711724209, 0.0275265034, -0.00624789856, 0.0130320275, -0.00163001905, -0.00621133763, -0.00343268807]
14 Sep, 2022
How much Stack size required for BIOS interrupt call? 14 Sep, 2022 Stack: It is a linear data structure that follows the LIFO( Last In First Out ) order for performing the operations. BIOS: It provides a set of instructions and is responsible for booting the computer. The BIOS performs all the tests needed at startup time. Stack size required for bios interrupt calls? 1)  For No interrupts generated in task Formula For calculating Stack size required for bios no interrupt call Task stack size = size used by user + argument size of the service-call + 6 (bytes) 2)  For Interrupts generated in task The formula for calculating Stack size required for bios interrupt call Task stack size = size used by user + service-call argument size + 6 + 20 (bytes) Example: Suppose If we are given a task “Task1”, function GFG1 (using 12 bytes of the stack) makes a gfg_geek1 service call, and function GFG2 (using 20 bytes of the stack) makes a gfg_geek2 service call. Since this is a  interrupts generated task we will use Formula 2 for calculating the size. Pattern of gfg_geek1 = size used by user (for function A) + service-call argument size (gfg_geek1) + 6 + 20= 124620= 42 bytes Pattern of gfg_geek2 = size used by user (for function B) + service-call argument size (gfg_geek2) + 6 + 20= 200620= 26 bytes Now we will compare the pattern of gfg_geek1 with the pattern of gfg_geek2 now the pattern that uses the most stack is pattern gfg_geek1, at 42 bytes. The size that needs to be specified in the system for the file will be 42 minus 6 bytes, which equals 36 bytes. Master Data Structures and Algorithms at your own pace with our DSA Self-Paced course. In just 90 days, you’ll cover core concepts, solve real-world problems, and sharpen your problem-solving skills. Take the Three 90 Challenge: complete 90% of the course in 90 days and get a 90% refund. Stay motivated, track progress, and achieve DSA mastery. Start today!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System/Introduction of System Call/How much Stack size required for BIOS interrupt call?
https://www.geeksforgeeks.org/how-much-stack-size-required-for-bios-interrupt-call?ref=asr10
PHP
How much Stack size required for BIOS interrupt call?
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, Introduction of System Call, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How much Stack size required for BIOS interrupt call?, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[0.0123351878, 0.0080513088, -0.0171884857, 0.0561472848, 0.0373167582, -0.0145797553, -0.00833601784, 0.0205520261, 0.00489964522, 0.00122656662, 0.0228296984, -0.0154537456, 0.0234918129, -0.0107924622, 0.00323442789, -0.0108917793, -0.00610469328, 0.0183405634, 0.013626311, -0.0121365534, 0.0281795803, 0.00387667865, -0.0322317183, 0.0265640225, -0.0124940956, -0.00248623895, -0.00621063123, -0.0197707303, -0.0249749478, -0.00270308135, -0.0385880172, 0.0149372965, 0.0043037422, -0.0293713864, -0.0153080812, -0.0334500112, 0.000148148058, -0.0073891948, -0.0059855124, 0.0241936538, -0.0158510152, 0.0613912307, -0.0159437098, -0.0261799954, -0.000419407967, -0.00255576079, -0.0091702817, -0.02335939, -0.0475662872, -0.00646554539, 0.0210817158, -0.0143413944, 0.0327878967, 0.0431963317, -0.0145135438, -0.0096403826, -0.0118054962, 0.0205255412, -0.0177446604, -0.0330527425, 0.00407862337, 0.0194264315, -0.0028835074, -0.00798509736, -0.0019284077, -0.0107262507, -0.0242333803, 0.0512741245, 0.00264349091, -0.00896502659, -0.0182213839, -0.0216246508, 0.000716324837, 0.0633510873, -0.045553457, 0.0140368212, 0.0212803502, -0.00427063648, 0.00901137479, -0.00802482385, -0.0116201043, 0.0160231646, -0.0557765029, 0.021545196, 0.0376080871, -0.00527042896, 0.0478576161, -0.0479635522, -0.00164287095, -0.0270010177, 0.00750837522, 0.00436333288, 0.0104415417, 0.0225383677, -0.0354363546, -0.00207076222, -0.0229621213, -0.00446927082, 0.0276234057, -0.00404220726, 0.0300335, -0.00832939707, 0.00630663801, -0.00469438965, 0.0157450754, 0.0327614099, 0.0275969207, -9.92136775e-05, 0.0334764943, 0.0314106978, -0.0530221052, 0.0134607824, 0.0065251356, 0.0203798749, -0.033661887, -0.00742892129, 0.0230150893, 0.0018208141, -0.0154140191, -0.00646885578, 0.0256503057, 0.0383496545, -0.0381907485, 0.00674363319, -0.0209360514, 0.0592194945, 0.0098257754, -0.0306426454, 0.0168574285, -0.0138911558, -0.00736271031, 0.00648209825, 0.0168839134, -0.0212538671, 0.00772687281, 0.00797847658, -0.00239354279, 0.0334500112, 0.0154140191, 0.0211876556, -0.0625035837, -0.0100111673, -0.0316490605, 0.0415807739, 0.00688598771, 0.00550216902, -0.0207241755, 0.00649865111, -0.0473279245, 0.0250544026, -0.0373697281, -0.0255576093, -0.0175327845, 0.0147651471, -0.0126066543, -0.0309604611, -0.0402565449, 0.0173871201, 0.0208830833, 0.014844601, 0.0185656827, -0.00221642735, -0.0374756642, -0.0101634534, -0.00877963472, -0.00458514085, 0.0219292231, 0.0197310038, 0.00419449341, 0.0150564769, -0.0109977173, 0.040177092, -0.00934905279, 0.040203575, -0.00881274, -0.0201547574, -0.00397599582, 0.0365487039, 0.0124874739, -0.0102627706, -0.0217570737, -0.00895840582, -0.0310134292, 0.0122424923, -0.0117723905, 0.00665755849, 0.00155927893, -0.0134409182, 0.0267494135, -0.0300864708, -0.00695219915, -0.0115075447, 0.0499234125, 0.0270539876, -0.0147386622, -0.0226443056, -0.0620268583, 0.0296097472, -0.00136643823, -0.0153478077, -0.0206182376, -0.00294475304, -0.0762225911, 0.0483873077, -0.0193734616, -0.00952120218, -0.00423753122, -0.0263124183, 0.0216908623, 0.0215319544, 0.00883260369, 0.0236374773, -0.0134607824, -0.0219821911, -0.00821021665, -0.00585971074, -0.011394986, 0.0194396731, 0.0112559414, -0.0463215113, 0.0086074844, 0.00039188884, 0.0146856932, -0.023332905, -0.0413424112, 0.00507179508, -0.0147386622, -0.0139176408, -0.0436995402, 0.00480363844, 0.00248623895, 0.0469306558, -0.00075149961, 0.00019666861, 0.0068727457, -0.0429050028, -0.0098191537, -0.00913717598, -0.0096403826, -0.0122027649, 0.00963376183, 0.0433552377, -0.0410510823, -0.0247763135, -0.0363103449, 0.0162615255, -0.00588619523, 0.0354628377, -0.00950133894, -0.00158659124, -0.0244849846, 0.00670721708, 0.0165263712, -0.00537305698, 0.0265110526, 0.0246968605, -0.00245147781, -0.00641257642, -0.00839560851, 0.00971321575, 0.031172337, -0.0035853486, -0.0548230559, 0.0193337351, -0.0309339762, 5.77280844e-05, 0.0655228198, 0.0129708173, 0.0138249453, -0.0164071899, -0.0115936203, -0.0134078125, -0.000461824675, -0.0149902655, 0.015493473, 0.0124477474, -0.00898489, -0.0106997658, 0.0408921726, 0.00691247266, -0.00670059584, -0.00950133894, 0.00963376183, 0.0227237605, 0.000510655576, 0.00207076222, 0.00828967, 0.00190523372, 0.0107792197, -0.017162, -0.0292654485, -0.01165321, 0.0137587339, 0.0246041641, 0.0311458521, -0.0139838522, -0.00808441453, 0.0497909896, -0.0161423441, -0.0192542821, -0.0152683537, -0.00850816816, 0.0153478077, 0.00782619, 0.00581005216, -0.00610469328, -0.0365222208, -0.0282325502, -0.0161291026, -0.00319635635, 0.01687067, -0.0365487039, -0.0129310908, -0.0253192484, 0.0112294573, 0.0308015533, 0.00511483243, -0.0154272616, -0.037502151, 0.0162615255, -0.034986116, 0.00306724408, -0.0166323092, 0.0516449101, 0.0577363595, -0.0340326726, 0.0240612309, 0.0453680679, -0.0271201991, -0.00347609958, -0.00450899778, -0.018870255, -0.0158642568, -0.0273850448, 0.0355687775, -7.07634536e-05, -0.0304042846, 0.00322946208, -0.0393295847, -0.00534657249, 0.0482548848, 0.0210684743, -0.0408921726, 0.000288433512, -0.0163939483, 0.0232799351, -0.0378464498, 0.0130502712, -0.0420574956, -0.00138878461, 0.000823504583, 0.00942850672, 0.0495791137, 0.0147254206, 0.0465863571, 0.00233891839, -0.013705764, 0.00665093726, 0.0243393183, -0.020247452, 0.007773221, -0.00559486495, -0.0322052352, 0.00843533501, -0.0171884857, -0.00750837522, 0.0228429399, -0.028523881, 0.00951458141, -0.0293184184, -0.0139441257, 0.0104216775, 0.0557765029, -0.00484667625, -0.0131562091, -0.0187245905, -0.00560148619, -0.020843355, -0.0360455, 0.0335294642, -0.00730311964, 0.0156656224, -0.0350126, -0.00952120218, 0.0243790448, -0.0345888473, -0.00478708558, 0.0528896824, 0.00223132502, 0.0182213839, -0.0170560628, 0.0120769637, -0.0042044255, 0.00539954146, 0.0186054092, -0.0172944237, 0.0326025039, -0.000858265557, 0.00422428874, -0.0296097472, 0.0202209689, 0.0543463342, -0.0368665196, 0.0446794666, 0.00675687566, -0.00146161718, -0.0226443056, -0.0167647321, 0.0171884857, -0.0350390859, -0.0030937288, -0.0320728123, -0.0122424923, 0.0122888396, 0.0101899374, 0.0072567719, -0.0145003013, 0.0293713864, -0.00289178384, 0.00379391457, -0.0539755523, 0.00194827106, -0.0115803778, 0.0150697194, 0.0268421099, -0.00521083875, 0.00709786452, 0.0192807652, -0.00335526373, -0.015572926, -0.0117922546, 0.0315960906, -0.0017926743, -0.00196482404, -0.0395414606, -0.0293978713, 0.00575708319, -0.0123616727, -0.053286951, -0.0191748273, 0.000718807743, 0.0441497751, -0.0140897902, -0.0189761929, -0.0528367162, -0.00117359741, -0.0203931183, 0.0141295176, 0.0363103449, 0.0038568154, -0.0296627171, 0.0310663991, 0.0125139588, 0.00705813756, 0.0318344533, 0.0196912773, 0.00787253771, -0.0417661667, 0.0206049941, -0.0111102769, -0.00673039118, 0.000112973241, 0.022114614, 0.058477927, 0.0575244837, -0.00426070485, -0.0102561489, -0.00995157659, -0.00558824418, -0.00275605032, -0.00283384882, -0.00911069196, -0.0276498906, 0.00409186585, 0.0288416948, -0.00126960396, -0.0290535726, 0.00460831495, -0.0319403894, -0.0273850448, -0.03374134, 0.0496055968, -0.00571404584, -0.0355687775, -0.0218232851, 0.0246968605, -0.0124543682, 0.0228826664, 0.0141295176, 0.0190556478, 0.0219689496, 0.0059226118, 0.0167250056, -0.0489964522, 0.0371843353, -0.00563128153, -0.0335824341, 0.0184862297, 0.0177181773, 0.0367076136, -0.0143943634, -0.0112294573, -0.0193999466, 0.0696544126, -0.00304407021, -0.00395282172, 0.0378199629, 0.0139706098, 0.0187775586, -0.0271466821, 0.0163144935, 0.0140368212, -0.00158990175, 0.0097794272, -0.041448351, -0.0143811209, 0.000985722523, -0.00256238203, 0.038852863, 0.0224191882, 0.0108719151, 0.00398592744, 0.0270010177, -0.00241340627, 0.00253258692, -0.0150697194, 0.0295302942, -0.020062061, 0.0176122375, 0.00160810992, -0.0274380129, 0.0181286875, -0.0166852791, 0.00289012864, -0.00538961, 0.00994495582, 0.00147568702, 0.0286563039, 0.0135269938, 0.0249617063, 0.00308048632, -0.0139706098, -0.0123881567, 0.0275969207, -0.039091222, 0.0249352213, 0.0159437098, 0.0128582586, -0.0119577823, 0.00493937219, 0.0227237605, -0.0147121781, 0.0104415417, -0.00497909915, 0.00991185, -0.0217703152, 0.0241009574, -0.0111566242, -0.00976618472, 0.0137322489, -0.00456196675, 0.0144076049, -0.000551210076, 0.0166058242, 0.0334235243, 0.00683301874, -0.0209492929, 0.0430903919, -0.032311175, 0.0394884907, 0.00373432413, 0.0224324297, 0.0174268465, -0.0217703152, 0.033661887, 0.0426931232, -0.0054061627, -0.0214789845, -0.0623976439, 0.0390382558, 0.00635960698, -0.0226310641, 0.0269745328, -0.00369128678, -0.010746114, -0.0264316, -0.0322846882, -0.0187113471, 0.00534326164, -0.00310366042, 0.00176122377, 0.0157715604, -0.0415542871, 0.0148313586, -0.0031003498, 0.0116995582, 0.000432857167, 0.0113883642, -0.0249219798, -0.00832939707, 0.00674363319, 0.0301129539, 0.0125801703, -0.0187510755, 0.00981253292, -0.0027146684, 0.0190026779, 0.0152815962, -0.0022296696, 0.0250279177, -0.0423223414, -0.0199428797, 0.0108255679, 1.08692775e-05, -0.0279677045, -0.00463811029, 0.0142619405, -0.0217835587, -0.0424547642, 0.0150167504, 0.00927622057, -0.0164204333, -0.000163769815, 0.0175195429, 0.00636953861, 0.0208036285, -0.00498240953, -0.0143943634, -0.0283120032, -0.0190821309, -0.00201944844, -0.0280471575, -0.0016883912, -0.00114711293, -0.0217041038, 0.00805793, 0.00880611874, 0.0104614049, 0.00531677715, 0.0288946647, 0.00828304887, 0.0272526219, 0.0091239335, 0.0464539342, -0.0132687688, 0.0108189462, 0.014301667, 0.010070757, 0.0210817158, 0.00952782389, 0.00900475308, -0.0189497098, -0.00881274, -0.00330726057, 0.0329997726, 0.00975956395, 0.0176916923, 0.0284444261, -0.00872666575, 0.0113883642, -0.0152286272, -0.0422428884, 0.0232666936, 0.0189099815, 0.0243922882, -0.0115075447, 0.00287854159, 0.0113221528, 0.0222470369, 0.0132820113, -0.0314901508, -0.00884584617, 0.0154669881, -0.0128383944, -0.0248425249, 0.00019418569, -0.0133747067, 0.042957969, 0.0183538068, -0.00526049733, -0.0141162751, 0.000973307877, 0.018870255, -0.0111632459, -0.0186451357, -0.010097242, -0.00509165833, -0.000496585679, -0.0145929977, 0.0190026779, -0.0271466821, -0.00699192612, -0.000275605038, 0.0271201991, 0.0252000671, -0.0096403826, 0.0197310038, 0.0185259562, 0.0214260165, 0.0150564769, -0.0145135438, -0.00725015067, -0.00869356, 0.00494268257, 0.00873328652, 0.0385350473, -0.0235712659, -0.0415013209, 0.00303579378, -0.0145003013, -0.00606165547, -0.00013345739, -0.00802482385, 0.000257603824, -0.00070059963, 0.0373962112, -0.00175129215, -0.0176254809, -0.0313842148, -0.00478377519, -0.0120968269, -0.0237036888, -0.0154405031, -0.0150564769, 0.00740243681, -0.0122888396, -0.00520421797, -0.0240612309, -0.0320198424, -0.00606165547, 0.0033403663, 0.0138514293, -0.00747526949, -0.00670390623, 0.00130105449, 0.00408524461, 0.00828304887, 0.0179697797, -0.020843355, 0.00395282172, 0.0256635472, -0.0131429676, 0.00341982, -0.00661783153, -0.0289741177, -0.0186318941, -0.000235464366, 0.0322052352, -0.0450767353, 0.0172282122, 0.0149770239, -0.00242333813, -0.00285702292, 0.036257375, 0.0142089715, -0.0360719822, 0.0139308833, -0.0159039833, 0.0174400881, 0.00579349929, 0.00697868364, 0.0200223345, 0.0181022026, 0.0125536853, -0.0151889, -0.0278087966, -0.00958741363, 0.0206314791, 0.00866707508, 7.91950661e-05, -0.0159569532, 0.00294144242, -0.00557500171, -0.0101435902, -0.0123947784, -0.0379788727, -0.00821021665, 0.0314901508, 0.00472749537, -0.0131826941, -0.0484137908, 0.0329468027, 0.0129443333, 0.0355687775, 0.00346947857, -0.0170957893, 0.0327878967, -0.0218630116, 0.0563591607, 0.0223529767, 0.0124808531, 0.0543993041, 0.0276763737, 0.0345358774, 0.01687067, -0.0202739369, -0.0146856932, -0.0190026779, -0.011679695, -0.0206712056, 0.0566240065, -0.00988536514, -0.0122424923, 0.014248698, -0.0309074912, -0.00696544163, -0.0104415417, -0.0319139063, -0.0115075447, -0.00332381343, -0.0302983467, 0.0301924087, -0.00449906616, 0.0120239938, 0.0203666333, 0.0181022026, 3.31574374e-05, -0.00052679464, 0.0177579038, 0.0341650918, 0.00733622536, 0.0192940086, 0.0170693044, -0.00377405109, 0.00762093486, 0.0243525617, 0.0548230559, 0.0339797027, 0.00740905805, -0.0328408666, 0.00531015592, -0.0151094468, 0.0127523197, 0.0115274088, -0.0239685345, 0.0091702817, -0.0262991767, -0.022035161, 0.00394289, 0.0340856388, 0.018247867, -0.0337943099, -0.00716407597, -0.0158377718, 0.0199296381, -0.0488375463, -0.0203931183, 0.0157583188, 0.0127258357, -0.0172282122, 0.0165528562, 0.0302983467, 0.00157252129, 0.024034746, -0.0132025573, 0.0356747136, 0.00135319598, -0.0434611775, 0.000742809381, -0.00740243681, 0.00647547701, 0.0217438303, -0.0165793393, -0.0199693646, 0.0296627171, 0.0139176408, -0.0128119104, 0.0118849501, -0.00190026779, -0.0085677579, -0.00680653425, -0.0154802306, 0.0167382471, -0.018790802, -0.0139706098, -0.0259019081, -0.023412358, 0.00787915941, 0.00817048922, 0.0165528562, -0.00368135516, 0.0129377116, -0.0401241221, -0.028497396, 0.0157715604, 0.0160496477, -0.0424282774, -0.0275969207, 0.0183670484, 0.0203269068, -0.000514793792, -0.010381951, 0.00987874437, -0.0229621213, 0.0321787521, 0.00662776316, 0.0266434755, -0.0128913634, 0.0163939483, 0.0307221, 0.00807117205, -0.0128913634, -0.0230415743, -0.0253192484, 0.0155331995, -0.0152551113, 0.0180359911, 0.00565445563, -0.02138629, 0.0250411592, 0.015003508, 0.00296958233, -0.0145929977, -0.0196383074, 0.0365751907, -0.00471094251, -0.00895178411, 0.0210287478, -0.00870680157, 0.00928946212, 0.0303513166, 0.0178373568, -0.0245776791, -0.0014657554, 0.0117922546, -0.010355466, -0.0456593968, -0.00481357053, 0.00349927368, 0.00102958758, -0.00237367954, 0.0215849243, 0.00670059584, 0.0212935936, 0.00971321575, -0.00464804191, -0.0276763737, 0.000742395583, -0.0556705631, 0.00354562164, 0.00870680157, 0.0420045257, 0.0424282774, 0.0124874739, 0.0102561489, 0.0073891948, -0.0121034477, 0.00124725769, 0.000875646074, -0.00862072688, 0.000342023384, 0.0101833167, -0.0150432354, 0.0116995582, -0.00096751441, -0.00752823846, 0.00332712405, -0.00631656963, -0.0097728055, -0.0369194895, 0.0206976905, -0.00529360306, 0.0175327845, 0.0128913634, 0.0324965641, -0.00231905514, 0.0185789242, -0.0155331995, -0.0155067146, -0.00613117777, -0.0070647588, -0.00327415485, -0.00640926557, -0.0102627706, -0.0254913978, 0.0278617665, -0.00531015592, 0.00563459191, -0.0110440655, -0.013262148, 0.00341319875, 0.0101435902, -0.0213333201, 0.0287887268, -0.0223000068, -0.00631325925, 0.0300335, 0.00958079286, -0.0203401484, 0.0283384882, -0.0730444416, -0.0269348063, 0.0307750683, -0.0172017273, -0.00579018891, 0.0228429399, -0.0112758055, 1.70959956e-05, -0.0518832691, -0.0247233454, 0.000318849372, -0.0128979851, 0.00936891604, -0.0104680257, 0.000400786026, 0.0308545232, 0.0153875342, 0.0347212702, -0.0208036285, 0.0410510823, -0.0130966194, -0.0400976352, 0.00819035247, 0.0127655622, 0.0173209086, 0.0208698399, -0.0179565381, 0.0255311243, 0.029874593, 0.0137454914, 0.0140897902, 0.0141030326, -0.015599411, 0.00623380532, -0.00383033068, 0.0159834381, -0.0152153848, 0.0137454914, 0.0352509618, -0.0114280917, 0.0172149688, 0.00629670639, -0.0116664525, -0.00235216087, 0.0082764281, -0.0154802306, -0.013209179, -0.0541344583, 0.00366149168, 0.0175195429, 0.0176387224, -0.00205089874, -0.0155861685, 0.0160761327, -0.00530684553, -0.0220748875, -0.0132158, -0.00950796, 0.022141099, -0.00875315, 0.0247763135, 0.00100475829, 0.00246472028, 0.00319304573, 0.000315538811, -0.00713759148, -0.0156126535, 0.0106070694, 0.00849492569, -0.00264680153, 0.024008261, -0.00750837522, 0.0317020305, -0.00988536514, -0.0222867653, -0.00938215852, 0.00554520637, 0.013626311, -0.0206976905, -0.0249484628, 0.00503206812, -0.00709786452, 0.0119842673, -0.0357541665, -0.00345623633, -0.028603334, -0.0324435979, -0.000804882613, -0.00903123803, -0.0203666333, -0.0131628308, -0.0143413944, 0.0134276766, 0.00574384071, -0.00509827957, 0.014924054, 0.0345358774, -0.0166720357, -0.0178241152, -0.0336883701, -0.0159172267, 0.00427394733, 0.00768052507, 0.00260210899, 0.0503736511, 0.0423223414, 0.0305102225, 0.0868693888, -0.0451297052, -0.0192277972, -0.0406008437, 0.0054922374, -0.0161291026, 0.00950796, 0.0106269335, 0.0281266123, -0.00578025728, 0.0192145538, -0.0152153848, -0.00262362766, -0.00423753122, 0.0127456989, -0.0182611104, 0.00897164736, -0.00852141, 0.00784605369, 0.015546442, 0.000592592231, 0.00330229476, 0.0133548435, -0.0139308833, 0.00127870811, 0.00157997, 0.0146856932, -0.0100376513, -0.029901078, 0.0157980453, 0.00979267, -0.000227601762, 0.0134409182, -0.00877963472, 0.00443616509, 0.0283914581, -2.4764624e-05, -5.6952169e-05, -0.0198899116, 0.0184862297, -0.000172253145, 0.00728325639, -0.00253424211, -0.00157914241, -0.0136395525, 0.00593585381, -0.0113883642, 0.00711772777, -0.0110705495, 0.00521083875, 0.0402565449, -0.00426070485, -0.00346285733, 0.0103753302, 0.00321621983, 0.00277425861, -0.0174400881, -0.0149770239, -0.0186054092, -0.0267229304, 0.0131363459, 0.0222867653, 0.00945499074, -0.0221543424, -0.000911234703, -0.0140368212, -0.0240612309, 0.0157318339, -0.00140533748, 0.014844601, 0.00348934182, -0.0183140785, 0.000435753929, -0.00140285445, -0.0512741245, -0.00116201048, -0.00286695454, 0.0171884857, 0.00936891604, 0.00193502882, -0.00125967234, -0.00168011477, 0.0126463817, 0.0156921074, -0.00398592744, 0.0187378321, 0.0101833167, -0.0335029811, 0.0137587339, -0.0132290423, -0.0124411257, -0.0112956688, -0.0102693914, 0.0428520329, -0.00894516334, -0.00804468803, 0.0233726315, 0.0047208746, 0.00208566, -0.0248292834, -0.02138629, 0.025981361, 0.0138249453, 0.00643575, -0.00864721183, -0.0119776465, -0.0366811268, -0.0212406237, -0.0320198424, -0.0104746465, 0.0319403894, 0.0159039833, 0.0136792799, 0.0292124785, -0.0105872061, -0.00541609433, 0.00887233, 0.010772598, -0.00295965048, 0.000266087154, -0.0103091188, -0.00271797879, 0.00969997328, -0.0216643773, 0.0358071364, 0.0288946647, -0.0148313586, -0.0114678182, 0.0139176408, -0.0144738164, -0.0210817158, 0.0075348597, -0.00115621695, -0.011004338, 0.00402234402, 0.0067403228, 0.0101435902, 0.014950539, -0.00403889688, 0.00083757448, 0.0279147346, 0.0460566655, -0.00675356481, 0.00208566, -0.011057307, 0.00842209253, 0.000671632122, -0.0064787874, 0.0236374773, 0.0234785695, 0.0161555875, -0.0145929977, -0.0101435902, 0.0239023231, 0.0290006027, -0.00763417687, -0.0106136911, 0.00621063123, -0.00247299671, -0.0187510755, 0.0102760131, 0.00624042656, 0.0135865835, 0.0318874195, 0.013056892, -0.0115406504, -0.00012497406, -0.0704489499, 0.0161820706, -0.000624042645, 0.0142089715, 0.0208565984, -0.0355687775, -0.0309074912, 0.00554851722, 0.00240181922, 0.0329732895, -0.00505193137, 0.0263653882, 0.00987212267, -0.00732960459, -0.0188172869, 0.0154272616, 0.0253722165, -0.00444609718, 0.00455203513, 0.00661452115, -0.0126596242, -0.00375418761, -0.0157450754, -0.00697206287, 0.00653837807, 0.00194661575, 0.00643243967, 0.0259019081, -0.016248282, 0.0207241755, 0.0185259562, -0.00804468803, 0.00102462177, -0.0182875954, -0.00838236604, 0.0129708173, 0.0103223603, 0.00899813231, -0.0200355761, 1.73287708e-06, 0.00496585667, -0.00768714584, 0.0204593297, 0.0138514293, 0.0174400881, 0.000303331064, -0.0228694249, 0.00609807204, 0.00392633723, -0.00383695192, 0.00254251854, 0.00656155171, 0.0173473917, 0.0098191537, 0.00267494144, -0.00327249942, 0.00146244478, 0.00797185488, 0.016221799, 0.0138779143, 0.0345888473, 0.00734946784, -0.0123749152, -0.041368898, 0.0318344533, 0.0179962646, -0.00633974373, -0.00185723032, -0.00387667865, 0.00541278394, -0.0160364062, -0.00610800367, -0.00354231102, 0.00629008515, 0.0243790448, -0.0122491131, -0.014275183, -0.0163277369, -0.000158907409, 0.00879949797, -0.00520421797, -0.0203533918, 0.00928284135, 0.00757458666, -0.0016850807, -0.0162615255, -0.0203004219, 0.0145532703, -0.0190688893, 0.0226310641, 0.0152948387, -0.00826980639, -0.00429381058, 0.0204990562, -0.00107428036, 0.00731636211, 0.0200753026, 0.0212803502, -0.0108984, 0.0157450754, 0.0191351, 0.00595902791, -0.0186054092, -0.00493606133, 0.0248027984, 0.0320728123, 0.00592592219, -0.0289211497, -0.0211744122, -0.00422428874, -0.00273287646, -0.0092629781, -0.00575046195, 0.0222073104, 0.0334500112, 0.0237963852, 0.0149902655, -0.00349927368, 0.00377405109, 0.00159569527, -0.0169236399, -0.0135865835, 0.0309074912, 0.0218365267, -0.0289211497, 0.00642912928, 0.0156391375, -0.00888557266, 0.00132257317, 0.00692571467, 0.0154405031, -0.0233461466, 0.0126861082, 0.0065251356, 0.0141295176, 0.00576701481, 0.000621973537, 0.00659134705, 0.00541940471, 0.00932256784, -0.024710102, -0.000455617352, 0.0158112869, 0.00225118827, 0.00556838047, -0.0109910956, 0.00871342327, 0.00702503184, -0.027199652, -0.00104200223, -0.0165263712, -0.0196118224, 0.00125718932, 0.00642581843, -0.00387005764, 0.00450568739, -0.00236871373, 0.00783943199, -0.0185921676, 0.00180922705, -0.0154007766, -0.00541278394, -0.0437789932, -0.0114347124, -0.00941526424, 0.00637284946, -0.0107063865, 0.00764079811, -0.0238096267, -0.0031847693, -0.0198104568, 0.00951458141, 0.0171884857, -0.0159701947, -0.00626360066, -0.0119577823, 0.0119114351, -0.0199826062, 0.0230548177, -0.00959403533, 0.0350126, -0.0193337351, 0.00406869175, -0.0173606351, 0.00863396935, -0.00416469853, 0.00463479944, -0.0119246766, 0.00400910154, -0.0248822514, 0.0326554738, -0.0238890816, 0.0284709111, -0.0139838522, -0.0154537456, -0.00644568168, 0.00921663, 0.0173606351, -0.0232004821, -0.000505689706, -0.0221675839, 0.0489699692, 0.0277293436, -0.000332505471, 0.0129377116, 0.0277823117, 0.00563790277, 0.00243161456, -0.020167999, -0.015572926, 0.00233395258, 0.0161026176, -0.00342975161, -1.25827564e-05, -0.00969997328, 0.0128913634, -0.00417794054, 0.0100575145, -0.0125669278, 0.000156321024, -0.00581667339, 0.0297156852, 0.0107130082, 0.00555513846, 0.00188040442, 0.0323376581, -0.0320728123, -0.00499565154, 0.0381112956, 0.00846844073, 0.000196461697, -0.000165218182, 0.00531346677, 0.018247867, -0.0102098016, -0.0043500904, 0.00337678241, -0.0251735821, 0.0140368212, 0.0143943634, -0.0189894363, 0.00993171334, -0.0387998931, 0.0140500637, 0.0162085555, -0.00411835033, 0.0247233454, -0.036336828, 0.00293316599, -0.01489757, 0.0218232851, 0.0111764884, -0.0121365534, 0.0209492929, 0.00389654213, 0.00646554539, -0.0175195429, -0.0381907485, -0.0196250658, 0.0116465893, 0.00503206812, -0.00405876, 6.16076577e-05, -0.013652795, 0.000527622295, -0.0171487574, 0.0138779143, 0.001142147, 0.0108189462, -0.00567100849, 0.0318609364, -0.0339532159, 0.00257231365, -0.022763487, -0.00623380532, 0.0237699, -0.00780632673, 0.0017132205, 0.0211744122, -0.0153875342, 0.00253258692, -0.0072567719, -0.00548892701, 0.0106997658, -0.0019019231, -0.0163807049, -0.00139457802, -0.00380715681, 0.00469438965, -0.00145996187, -0.013368086, 0.00496254629, 0.0166852791, 0.0132290423, -0.0173738766, -0.0171884857, -0.00167845958, 0.0041117291, -0.013315117, -0.00662445277, -0.0121895224, -0.0215584394, 0.0136792799, 0.018088961, 0.0206712056, -0.008746529, 0.00562466029, 0.0241406839, 0.0077136308, 0.0105011314, -0.0091239335, 0.00493606133, 0.00428056857, -0.0164866447, 0.0150829619, -0.00697868364, 0.00268156268, 0.0053598145, 0.0450237654, -0.0216776188, 0.032470081, 0.00454872474, 0.00632981211, -0.0118849501, -0.00828304887, 0.00789902266, 0.0145929977, 0.00723690819, 0.00202606944, -0.00810427777, -0.0106997658, 0.0114082284, -0.0196118224, 0.0234653279, 0.00568756135, 0.00490626646, -0.00441299146, 0.0146592092, 0.00786591694, -0.00110490306, 0.00761431362, -0.0130767561, 0.00782619, -0.0289211497, 0.00951458141, -0.013652795, 0.0184862297, -0.00695219915, 0.00516118, -0.000429132779, 0.0116134835, 0.00484667625, 0.0155067146, 0.0112625631, -0.00483343378, -0.00526049733, -0.0274380129, -0.012275598, 0.00360521185, 0.0240479875, 0.00459176209, -0.017162, -0.0253589749, 0.00419118302, 0.0111566242, -0.00700516859, -0.00199461915, -0.00602192897, -0.00258721132, -0.00528367143, 0.0137719754, -0.000842954149, -0.0282590352, -0.0148313586, 0.0110175805, -0.0209625363, -0.014275183, 0.0091239335, -0.0134607824, 0.00685950322, -0.0145400278, -0.000229463956, -0.00941526424, 0.0211214442, 0.00180922705, -0.0187775586, -0.00967348833, 0.0109116426, 0.0178373568, 0.00619407836, -0.00153279444, 0.0124477474, -0.00392633723, 0.00995819829, 0.0231342707, 0.0260475725, 0.0164071899, -0.00279577728, -0.00105524459, 0.014950539, -0.037502151, -0.000550796278, -0.00523732323, 0.00464473106, 0.00657810457, 0.010070757, 0.0139308833, 0.0183935333, 0.0134541607, -0.00181253767, -8.43678354e-05, 0.00760769239, -0.00985225942, -0.020843355, -0.0102230432, -0.020684449, 0.00815724675, -0.00807117205, -0.018274352, 0.0126861082, 0.00619076798, -0.0190688893, 0.0187113471, -0.0171884857, -0.0261799954, -0.00134491955, 0.00522739161, 0.000446927093, -0.00521746, -0.0178638417, 0.0177181773, 0.00511483243, -0.00234885025, -0.00142520084, 0.00998468231, -0.00346947857, -0.00533333, -0.0211876556, -0.0179830231, -0.0195058845, -0.0186054092, 0.00501551526, -0.0313577279, -0.014844601, 0.00496916706, 0.00267328625, 0.00124477479, 0.010355466, -0.0234653279, 0.000386509171, 0.0185259562, -0.00222304859, -0.0250014327, 0.0135402353, 0.00261038542, -0.00715745473, 0.00829629134, 0.00879949797, -0.00829629134, -0.0021750452, -0.00492281932, -0.00311690266, -0.0178241152, 0.00660127867, 0.0161820706, -0.0184729863, 0.00803806633, -0.0332116485, 0.00884584617, 0.00460831495, -0.0125934128, -0.00331057119, -0.00830953382, 0.00901137479, -0.0097397, -0.00473742746, -0.0343769714, 0.0117591489, 0.00790564343, 0.0102693914, -0.03774051, 0.0119379191, 0.0198369417, -0.0104282992, 0.0156126535, -0.00662445277, 0.0340856388, 0.00618414674, -0.0002921579, -0.00378398271, -0.0102296649, -0.00241175108, -0.00280736433, 0.00525387609, 0.0341386087, -0.0133482227, 0.0132290423, -0.00970659405, -0.00904448051, 0.00699192612, 0.0087001808, -0.00993171334, -0.0114082284, -0.00823670067, -0.0081440052, 0.002122076, 0.0073891948, 0.022657549, -0.0170957893, -0.00491950847, 0.0154802306, 0.00997144, -0.00169004651, 0.0247498304, -0.0130436504, 0.0165528562, -0.0068727457, 0.0180359911, -0.00417794054, -0.00092364935, -9.44547282e-05, -0.020167999, -0.00298282458, -0.000239188768, -0.00742230052, 0.0119975097, 0.00253589754, -0.0173076652, -0.0192675237, -0.00421435712, 0.0100244088, -0.00403889688, 0.0092629781, 0.0125404429, -0.0218497701, 0.021439258, -0.0110506862, -0.0115671353, -0.0188834984, 0.0139706098, 0.0213200785, 0.0110242013, -0.00634636497, -0.00616428349, -0.000135216134, -0.0100376513, 0.00516449101, 0.0122424923, -0.00629339553, -0.00360521185, -0.0127456989, 0.0430639088, -0.00279081147, -0.0104680257, 0.00638609147, -0.0162350405, 0.00437657489, -0.000877301325, -0.00428056857, -0.0155596845, -0.0275439508, 7.35567519e-05, -0.00205586455, -0.0131893149, 0.0190159194, 0.0270010177, 0.00307552051, -2.13376661e-05, 0.0105805853, 0.00122987712, -0.00588288484, -0.000634388183, 0.00278419023, 0.00842871424, -0.0122160073, 0.00732960459, 0.00554189598, -0.0192145538, -0.0130237862, -0.000595075137, -0.0186716206, -0.00777984224, 0.0154669881, 0.0203004219, -0.00905772205, -0.00381377782, -0.0191483423, -0.012560307, -0.00816386845, -0.0222602803, 0.0164204333, 0.0139706098, 0.000446927093, 0.00322615146, -0.00749513274, -0.00955430791, -0.0187113471, -0.018168414, -0.0161423441, 0.0116863158, 0.00697206287, -0.016248282, 0.0213333201, -0.00316821644, -0.00148396345, -0.00163790502, 0.00993833411, 0.0073428466, 0.00488640275, -0.00347278896, 0.0160099212, -0.00247134129, -0.0118452236, 0.010924885, -0.00191516534, 0.00938877929, 0.0030159303, 0.0319139063, 0.00166604493, -0.0144605748, -0.00853465218, 0.00388992112, -0.0120504787, -0.0277558286, 0.0435406305, 0.00305896765, -0.0210949592, 0.0050585526, 0.00353569, -0.00893854164, 0.0203004219, 0.0259681195, -0.00241009565, 0.0138779143, -0.0125272013, -0.0187775586, 0.00168673601, -0.000184874705, -0.00207076222, 0.0158642568, 0.0205785092, -0.0106865233, -0.00474735908, -0.0136395525, 0.0166720357, 0.00569418212, 0.018194899, -0.0315696076, 0.0045652776, 0.0403359979, 0.0150829619, 0.0185656827, 0.00787915941, 0.0299540479, 0.00633974373, -0.0138381869, 0.00554851722, -0.00740243681, -0.00595571753, 0.00221477216, 0.000210531623, 0.0242201388, -0.0142884245, 0.00433353754, -0.0172546972, 0.00539954146, -0.0186583791, -0.0186583791, 0.018764317, -0.0098191537, -0.0135468571, -0.00584315788, -0.00248954957, -0.020247452, -0.00886570942, 0.00954768714, 0.0182346255, 0.000557417399, -0.0212935936, -0.0173738766, 0.00278253504, -0.00160562701, -0.0164071899, 0.00908420701, -0.0314901508, 0.0146989357, 0.00807117205, -0.00354562164, 0.00150630984, -0.0156656224, -0.00826318562, -0.00946823321, -0.0109844748, -0.0134144342, -0.032311175, 0.00502213649, -0.0217041038, -0.00273784227, 0.00909082778, -0.00601861812, -0.00634305412, 0.018790802, 0.01687067, 0.0226178225, -0.0203533918, -0.0143413944, 0.00390978437, -0.0189761929, 0.0131032402, -0.016897155, -0.031119369, -0.0249352213, -0.00813076273, 0.00895178411, -0.00176453439, -0.0112758055, -0.000213738749, -0.00644237129, -0.00274777389, 0.0117790122, -0.00887233, 0.0124013992, 0.00150548224, 0.00365155982, 0.0148710851, -0.0162350405, -0.00288847322, 0.0111764884, 0.0101766959, 0.0164998863, 0.00166521722, -0.0185259562, 0.00594909629, -0.0115207871, 0.00554189598, 0.0295567792, 0.0173606351, -0.0217438303, 0.00701178936, 0.0258224551, 0.0035092053, -0.000971652626, -0.00104779575, 0.00947485492, 0.00580674177, 0.00324270432, 0.00759445, -0.00037823274, -0.0146989357, -0.00447589206, -0.0077136308, 0.0145003013, -0.0184994712, 0.0172149688, 0.00384688354, 0.0076672826, -0.00768052507, 0.0139573673, -0.0177049339, 0.0101766959, -0.00746864825, -0.0150167504, 0.0153345652, 0.0103024971, -0.0118783293, 0.0150432354, -0.00545582129, 0.00434015878, 0.0138514293, 0.00480363844, -0.00075149961, 0.00560148619, -0.0112493206, -0.0147916321, 0.0037012184, -0.0173341502, -0.0145003013, 0.0168839134, -0.0142884245, 0.0148710851, -0.0300599858, -0.0205255412, 0.00790564343, -0.00516449101, 0.0164734013, 0.00872004405, 0.0030457254, 0.00491950847, -0.00745540624, -0.0102296649, -0.00110655837, -0.00100806891, -0.00559817581, -0.0186186526, -0.00318973535, -0.00222470379, -0.00336354016, 0.0117922546, 0.0164734013, -0.0167647321, 0.00505524222, 0.00708462205, 0.00864721183, 0.000818538712, 0.00850154646, 0.0206447206, 0.00310366042, 0.0140368212, -0.000399337645, 0.0103157395, -0.00574715156, -9.68342065e-05, -0.0157583188, -0.0097728055, -0.0173341502, 0.000555348292, 0.0080513088, 0.00464804191, -0.00916366093, 0.00574715156, 0.0106997658, -0.0236109924, -0.0266699605, 0.0174003616, 0.0199826062, 0.00761431362, -0.0108255679, -0.021359805, 0.000429546606, 0.00796523411, -0.0125272013, 0.00976618472, -0.00250113639, -0.00329898414, 0.00234388444, -0.00399254868, -0.0141692441, 0.00316159544, -0.00415145606, 0.00381046743, 0.0100376513, -0.00507179508, 0.0139970947, 0.0257032737, -0.00333374506, 0.00400910154, -0.0163012519, -0.0013308496, -0.0104945106, 0.0212406237, 0.0193469767, 0.00956755, 0.00181584829, -0.0200223345, 0.0289476328, 0.0341915786, -0.00775997853, 0.0237831436, -0.0169368815, 0.00392964808, -0.0106203118, -0.0097728055, -0.00461824657, -0.00779308425, 0.0224854, -0.00220318511, -0.0100111673, 0.00396937458, -0.00378729333, -0.00495923543, -0.0155596845, -0.00820359495, 0.0029381318, -0.00379391457, 0.0179432947, -0.00603517098, 0.0201944839, 0.0229621213, 0.0058530895, 0.00522739161, -0.00226443051, 0.00829629134, -0.00997806154, 0.00344299385, -0.00875315, -0.00848168321, -0.00997806154, -0.0438054763, 0.0165263712, -0.0228561834, 0.00993833411, 0.0113751227, -0.000820193964, -0.0293449014, -0.00227932818, -0.0411040522, -0.0195058845, -0.0172546972, -0.0179168116, -0.012355051, -0.00552865351, -0.0122424923, 0.00664431602, -0.00653837807, 0.00660458952, -0.0163674634, -0.00909082778, -0.0122888396, 0.0210817158, 0.000385267718, -0.00315000839, 0.0141427601, -0.0185789242, -0.0231077857, -0.000113904338, 0.011706179, 0.000410717737, 0.0284444261, -0.0033701614, 0.0269745328, 0.0130237862, 0.0179565381, -0.00737595232, -0.00824994314, -0.00226277532, 0.00968011, -0.0146592092, -0.00240016403, 0.00745540624, -0.024008261, -0.00847506244, 0.0284444261, 0.0175063, -0.00369128678, -0.0123484302, -0.0207109321, 7.42292104e-05, 0.00615104102, -0.0130237862, -0.00477053272, 0.00270639197, -0.0212538671, -0.0206579641, 0.00956093, -0.00281067495, 0.000886405411, 0.0226443056, -0.0108057037, -0.0138646718, -0.021545196, -0.00873990729, -0.0198501851, -0.0211876556, -0.00411504, -0.0151359309, 0.0248027984, -0.0115936203, 0.0130370287, -0.0152021423, -0.020737417, 0.00343968347, -0.00476722233, 0.0242995918, 0.00946823321, -0.0296097472, -0.00374094537, 0.0104812682, 0.0116929375, -0.0496320799, -0.0117723905, 0.00772025157, 0.00596564915, 0.0156126535, 0.00280736433, -5.93833684e-05, -0.00260376418, 0.0155331995, -0.0186981056, 0.0342180617, -0.00583653664, -0.00770700956, 0.0222337954, 0.00751499645, -0.023955293, 0.0191351, 0.00953444466, 0.00484998664, -0.00107096974, -0.0028537123, -0.0134740239, -0.0190953743, 0.00795199163, 0.0220086761, -0.00531346677, 0.0113022896, 0.0287887268, -0.00332877925, -0.00216842396, 5.82970861e-05, 0.00474735908, 0.00899813231, -0.028603334, -1.32810801e-05, -0.0169501249, -0.00569418212, -0.0131760733, 0.0128516369, 0.0027246, -0.00209890213, -0.00217173458, 0.0160496477, -0.0151226884, 0.00279081147, -0.0337943099, 0.00341319875, -0.013652795, -0.00824994314, -0.0148843275, -0.0258092117, 0.0163144935, 0.0193204936, 0.00279081147, -0.0215584394, -0.0137852179, -0.0273850448, 0.0118054962, -0.000110593763, 0.00576370442, -0.00997806154, -0.00622056285, 0.00885246694, 0.00648209825, 0.00622056285, -0.0231077857, -0.00723028742, 0.0241274424, 0.00425077323, -0.0102230432, -0.0164998863, 0.000566935283, 0.0108917793, -0.000360852253, -0.00363500696, -0.0210022628, 0.00386674702, -0.0384026244, 0.0269348063, 0.0153610501, 0.00702503184, -0.0122424923, -0.0121299326, 0.025743, 0.00349596306, 0.0111168977, -0.00364162819, -0.00587957446, -0.0124278842, -0.0159172267, -0.0105739636, 0.0257032737, -0.0038634364, -0.00323442789, -0.000107386652, -0.0107593564, -0.00184233277, 0.00737595232, -0.00215518172, -0.00901799556, 0.0393295847, 0.0111102769, 0.0275174677, 0.0151756583, -0.00715083349, -0.0169633664, 0.00522408122, -0.00426070485, -0.0341121256, 0.00475398, -0.0112095941, -0.00158576353, 0.0256635472, 0.0185656827, 0.0250808857, 0.0203401484, 0.0164204333, 0.00774673652, -0.00366149168, 0.0209890213, -0.0171222743, -0.00377405109, 0.01165321, -0.00797185488, 0.0209625363, -0.0231739972, -0.0154007766, -0.00723028742, -0.00143678789, -0.00105110637, 0.00185557513, -0.0108255679, 0.00459176209, -0.0126794875, -0.0217041038, -0.0129906805, -1.94625372e-05, 0.0146724507, 0.00936891604, 0.027199652, 0.0217173472, -0.00183736696, -0.0128979851, 0.01687067, -0.0170693044, 0.00819697417, -0.00643243967, 0.00229588104, -0.02979514, 0.000986550236, 0.0204328448, -0.000374301453, 0.0213465616, 0.0200753026, -0.023438843, 0.00685950322, 0.00757458666, 0.00154769199, 0.00330560515, -0.023412358, 0.00760107115, -0.00370452902, -0.0242466219, -0.0189497098, -0.00657810457, -0.0132422848, 0.000462238502, -0.00463811029, -0.031172337, -0.0049128877, 0.0358336233, 0.00705813756, 0.0115274088, -0.0202739369, -0.0199031532, 0.0118518444, -0.00678667054, -0.000167804566, 0.0111698667, -0.0114347124, -0.0170163363, -0.00494930381, -0.0274644978, -0.0170693044, -0.00429381058, -0.0174003616, 0.0163939483, 0.0300070159, 0.00657810457, -0.0322582051, -0.00332712405, 0.00390978437, 0.000450237654, -0.014301667, 0.00036478354, -0.000198220441, -0.00389985275, 0.0237699, 0.00361183309, -0.00568756135, -0.00655824132, -0.00244982261, -0.00593916466, -0.00593916466, -0.000512724684, 0.0125007164, 0.036177922, 0.0204460863, -0.0152153848, 0.00616759388, -0.0153213227, -0.00629670639, -0.00107924617, 0.0165131278, 0.00357210613, 0.00731636211, -0.00585640036, 0.00472749537, 0.0114611974, -0.0168839134, -0.010097242, 0.0157053489, -0.0174268465, 0.0225648526, -0.0127788046, -0.000403062033, -0.0102164224, -0.0146194817, 0.021465743, -0.0404154509, 0.000134078131, -0.0143281519, -0.00527042896, 0.0337943099, -0.0271201991, 0.00233064196, -0.0124676106, 0.000526380783, 0.00281398534, 0.00188040442, 0.00619407836, 0.00406869175, -0.0192145538, 0.000754810229, 0.0278352816, -0.00327249942, 0.0116598317, 0.0163144935, -0.0251868255, 0.0176254809, 0.00437988574, 0.0153080812, -0.0114611974, -0.00255410559, -0.0146062393, 0.00137968047, -0.00992509257, 0.00803806633, -0.0114280917, 0.00123401533, 0.00310697104, 0.00623380532, 0.00287523097, 0.000335402234, -0.000420649449, 0.0119975097, 0.00137140404, 0.0093027046, 0.0169501249, -0.00104614045, -0.00661783153, 0.00268321787, -0.0170295779, -0.0191615857, 0.0215584394, 0.0129906805, -0.00259383256, -0.0373167582, -0.00206414098, -0.00931594707, -0.00152120739, 0.0112228356, 0.00707800081, -0.0259416346, -0.0246438906, 0.00935567357, 0.0195191279, 0.0193337351, 0.00334533211, 0.0127523197, -0.000535898667, -0.0207771435, -0.00721704494, -0.0292124785, -0.00321953045, 0.0118783293, 0.0276763737, -0.0197310038, -0.00295468466, -0.0309604611, 0.00436995365, 0.0217438303, 0.00357541675, 0.00431036344, -0.00952120218, 0.0219424646, 0.00737595232, 0.000928615162, 0.000585971109, -0.00752823846, -0.00197475567, 0.00466790516, 0.00562135, -0.00545251044, -0.00574053032, 2.30446785e-05, 0.00503868936, -0.0199693646, -0.0234256014, -0.00943512749, -0.000864059082, 0.00283881463, 0.00540947309, 0.00703165308, -0.00988536514, 0.0146989357, -0.00273784227, -0.0450237654, 0.0139838522, 0.0276234057, -0.0192410387, -0.0267758984, -0.00146161718, -0.00463479944, -0.0145135438, 0.00478377519, -3.91837129e-05, -0.00300765387, -0.000108835025, -0.00491619809, -0.0164469164, -0.00459176209, 0.00313676614, 0.0107990829, -0.0101369685, -0.0370783955, 0.0121034477, 0.00281398534, 0.0194396731, 0.0144340899, 0.0157185923, 0.0131562091, -0.01263976, -0.0196647923, 0.0204460863, -0.0174003616, 4.67100872e-05, 0.0159039833, 0.0327878967, 0.00052182877, 0.00897164736, 0.00642581843, -0.0246174075, 0.00461493619, 0.00795199163, 0.0067403228, 0.0109447483, -0.00202938, 0.0169103965, -0.0289476328, 0.0134674031, 0.0137190064, -0.00669066422, 0.00432360591, -0.0147254206, -0.0089253, -0.0145003013, -0.0227237605, 0.000600868661, -0.0139043983, 0.0176652074, 0.0167250056, 0.00426070485, -0.011626726, 0.0021204208, -0.00869356, 0.00740905805, 0.0178506, 0.0174268465, -0.0146856932, -0.00258721132, -0.0106732808, -0.0126993507, 0.000717152434, 0.000296709943, 0.0082764281, -0.0101766959, -0.0038568154, 0.01687067, -0.00194496056, 0.00349265244, -0.0149372965, -0.000106352098, 0.0147386622, 0.0160364062, -0.0107990829, 0.000701427227, -0.00749513274, 0.00411835033, 0.0334235243, 0.00183405634, -0.00828304887, -0.0366281569, 0.0061775255, 0.00966686755, 0.00323442789, 0.00562466029, 0.0205652677, 0.00145747897, -0.0140897902, -0.0245247111, -0.00359196961, -0.0138249453, -0.0226972755, 0.00645561377, 0.00780632673, 0.0204063598, -0.00903123803, 0.0221278574, -0.00453217188, -0.0157185923, 0.0036945974, -6.55906915e-05, -0.00242995913, -0.0160761327, 0.024736587, 0.00789902266, 0.0124808531, -0.00117028691, 0.00880611874, -0.028497396, -0.0138514293, -0.00501882564, -0.0103157395, -0.0327084437, 0.00782619, 0.020843355, 0.0238361116, 0.00586302159, 0.0137587339, -0.0186054092, 0.000360645325, -0.00520752836, 0.0105342371, 0.00283384882, -0.00287192035, 0.0118783293, -0.000832194812, -0.0267494135, 0.0174003616, 0.0138646718, 0.00948147569, 0.00825656392, -0.00114297471, 0.0244320147, 0.00952782389, -0.00259383256, 0.00418787263, -0.0396209136, -0.00144009839, -0.0152683537, -0.00164369855, -0.00685288198, 0.0341386087, -0.0107394923, 0.013705764, -0.000982412, 0.0308810063, -0.00711772777, 0.0048897136, 0.0148578426, 0.0140500637, -0.00523401285, 0.00552203273, 0.0118054962, 0.00723028742, 0.0188172869, -0.0119048133, 0.00248127314, 0.00253920793, -0.0098191537, -0.00762755563, -0.00306724408, 0.0264845695, -0.00822345819, -0.017162, -0.00142602855, 0.00631325925, -0.0127324564, 0.0121961441, 0.000367059576, 0.0407332666, -0.0188570134, -0.00783943199, -0.00879949797, -0.0201150291, -0.00514793815, -0.0093027046, 0.000812331389, 0.0104746465, 0.0213730466, 0.0190159194, -0.0168574285, 0.00226774113, -0.0172017273, -0.0080513088, -0.0149372965, -0.0234520864, 0.0415013209, 0.00713759148, -0.00287026516, -0.0273320749, 0.00232567615, -0.00669728545, 0.00440305937, -0.0173738766, 0.00123070483, -0.0232269671, 0.00378729333, 0.0155067146, 0.00496585667, 0.0167779736, 0.0171355158, -0.000698116666, -0.0213730466, -0.0288152099, -0.0225118827, -0.0242201388, -0.0111831091, 0.00689923, 0.011342017, -0.000984894927, -0.0188967399, -0.00697868364, 0.0144208474, -0.0254384279, 0.00979267, 0.016897155, -0.0045884517, 0.00282722781, -0.00325429137, -0.0282060653, 0.0100111673, -0.00184895401, -0.00414814567, -0.00453548227, -0.0317020305, 0.0113287745, 0.0344829075, 0.022710517, -0.00579681, -0.031172337, 0.011315532, 0.0102561489, 0.00233064196, -0.00118270156, -0.0269877762, 0.0245644376, -0.00019511678, -0.0137190064, 0.00714421226, 0.00742230052, -0.0184200183, -0.00797185488, -0.018274352, -0.020843355, -0.0217570737, 0.0100839995, -0.0167514905, -0.00919676665, 0.0234653279, -0.0152418697, -0.00521746, 0.0267229304, 0.00234057382, -0.0105077522, -5.3072592e-05, 0.0023670583, 0.00615435187, 0.00371115026, 5.1391442e-05, 0.00740905805, 0.00212538661, -0.00666417973, -0.00613448815, 0.0046745264, 0.00145665125, 0.0304307695, -0.0304837395, -0.00205255416, 0.00399585953, -0.00854127295, 0.0104216775, -0.00750175398, 0.0264845695, -0.0120902052, 0.00324104913, 0.00638609147, 0.00634636497, -0.0195853394, -0.00955430791, -0.00421104627, -0.00154438138, 0.0118054962, -0.000209083257, 0.0206049941, -0.00394951133, -0.00703165308, -0.00497909915, 0.00398261705, -0.0197839737, 0.0022296696, -0.00707138, -0.00128450163, -0.00110904127, 0.0108917793, -0.0200488176, -0.00610469328, 0.00339002488, 0.00279743248, 0.00213366305, -0.00684626121, 0.00258721132, 0.0165263712, 0.0129046058, -0.0270275027, 0.0400446691, 0.00888557266, 0.00564121315, -0.021465743, 0.00411504, -0.0124742314, 0.00224787788, -0.029901078, -0.000106041727, -0.00410179747, -0.00325429137, 0.00681315549, 0.00177943194, -0.00854789466, 0.000722118304, -0.0133482227, -0.00360190123, -0.00237202412, 0.00070059963, 0.00473411661, -0.0305102225, -0.00532008754, 0.0210022628, -0.0170163363, -0.00883922447, 0.00284874649, -0.0138911558, -0.0264448412, -0.0217570737, -0.00412166119, 0.0360190123, -0.0246703755, -0.0198237, 0.00493606133, -0.00247134129, 0.00513469568, -0.0055385856, 0.00646223454, 0.00723028742, -0.0123087037, -0.0113618802, 0.0128516369, 0.00705813756, 0.0169633664, -0.0234256014, -0.000821435475, 0.00712434901, -0.00101303472, -0.00698530488, -0.0143811209, 0.00834926, 0.0287887268, -0.0121299326, -0.0136395525, 0.0159437098, 0.0149902655, 0.00365487044, -0.0258489382, 0.000895509496, -0.0492083281, 0.0188172869, -0.00469107926, 0.000503620598, -0.00369790802, -0.00693233591, -0.0122623555, -0.00149472279, -0.0048201913, -0.0126265185, 0.00980591122, -0.00318145892, 0.0114876814, -0.00323442789, -0.00272956584, -0.00106931443, 0.0185391977, 0.00583984749, 0.0106799025, -0.0132753905, -0.00401572278, 0.000969169661, -0.0158774983, -0.00538629899, 0.0154405031, 0.0314901508, 0.0101435902, -0.00942850672, 0.0254649129, 0.00139623333, 0.00569087174, 0.0204593297, 0.0206314791, -0.0242995918, -0.00658141542, 0.0180757176, -0.0240612309, 0.0145929977, 0.0043964386, 0.000463893783, -0.0101700742, -0.025411943, 0.0183405634, -0.0105342371, 0.00898489, 0.00882598292, 0.00870680157, 0.00103786401, -0.00444278633, 0.0133482227, 0.0124146417, -0.00835588109, -0.0133548435, -0.0194131881, 0.00337347202, 0.00488309236, 0.00614110939, 0.0047208746, 0.0169633664, -0.00854127295, 0.0145003013, 0.00611793529, 0.00284709106, -0.00368797616, -0.000573142606, 0.000305814, 0.0243922882, -0.00888557266, -0.00666086888, 0.0313047618, -0.00985888112, -0.0105011314, 0.00517111225, 0.0178638417, 0.000844609458, -0.00349265244, 0.00543595757, -0.0188172869, 0.00838898681, 0.0293978713, 0.0157715604, 0.012560307, 0.031198822, -0.0143149095, -0.0211346857, -0.0117194215, -0.00308545236, -0.0176387224, 0.0181551725, -0.00366480229, -0.00578025728, 0.000187978367, 0.0108851576, -0.00532339839, 0.0120107522, -0.00259714294, 0.014924054, 0.00505193137, 0.0109712323, -0.00619076798, 0.0252000671, 0.0175989959, -0.0149902655, 0.00611462491, 0.011342017, 0.0252133086, 0.0203931183, 0.00941526424, 0.014275183, -0.00231905514, -0.00610469328, 0.0168044586, -0.000869024894, 0.00258555613, -0.0258356966, 0.0102164224, -0.00969335251, 0.013003923, 0.00406869175, 0.0167250056, 0.00125139591, 0.00408855546, 0.0358071364, 0.00389985275, -0.00358865899, -0.0322582051, -0.00330395, -0.0106799025, -0.00340988813, 0.00400579115, -0.0245909225, -0.013626311, -0.0109844748, -0.00197475567, -0.00674694404, -0.0177314188, 0.0184465013, 0.000791640312, -0.0097397, 0.0163012519, -0.0152021423, 0.0070184106, 0.0202739369, -0.00669066422, -0.00972645823]
02 Sep, 2024
Difference between Interrupt and Polling 02 Sep, 2024 As modern computer systems grow increasingly complex, efficient communication between the CPU and peripheral devices becomes more critical. Devices like keyboards, mouse, printers, and network interfaces require timely interaction with the CPU to ensure smooth operation and user experience. Interrupts and polling represent two fundamental strategies for handling these interactions. What is Interrupt? Interrupt is a hardware mechanism in which, the device notices the CPU that it requires its attention. Interruptions can take place at any time. So when the CPU gets an interrupt signal through the indication interrupt-request line, the CPU stops the current process and responds to the interrupt by passing the control to the interrupt handler which services the device. Advantages Sleep Modes Parallel Processing Disadvantages Context Switching Interrupt Latency What is Polling? Polling is not a hardware mechanism, its a protocol in which CPU steadily checks whether the device needs attention. Whenever device tells process unit that it desires hardware processing, in polling process unit keeps asking the I/O device whether or not it desires CPU processing. The CPU ceaselessly check every and each device hooked up thereto for sleuthing whether or not any device desires hardware attention. Each device features a command-ready bit that indicates the standing of that device, i.e., whether or not it’s some command to be read by hardware or not. If command bit is ready one, then it’s some command to be read else if the bit is zero, then it’s no commands. Advantages No context switching Reduced interrupt overhead Disadvantages Inefficiency Increased Power Consumption Difference Between Interrupt and Polling Interrupt Polling In interrupt, the device notices the CPU that it requires its attention. Whereas, in polling, CPU steadily checks whether the device needs attention. An interrupt is not a protocol, its a hardware mechanism. Whereas it isn’t a hardware mechanism, its a protocol. In interrupt, the device is serviced by interrupt handler. While in polling, the device is serviced by CPU. Interrupt can take place at any time. Whereas CPU steadily ballots the device at regular or proper interval. In interrupt, interrupt request line is used as indication for indicating that device requires servicing. While in polling, Command ready bit is used as indication for indicating that device requires servicing. In interrupts, processor is simply disturbed once any device interrupts it. On the opposite hand, in polling, processor waste countless processor cycles by repeatedly checking the command-ready little bit of each device. Conclusion Interrupts provide a more efficient and responsive method by allowing the CPU to perform tasks without constant monitoring, while polling, though simpler, can result in unnecessary CPU cycles being consumed. The choice between these mechanisms depends on the specific requirements of the system, such as the need for real-time processing, resource availability, and the complexity of the hardware. Difference Between Interrupt and Polling – FAQs When is polling preferred over interrupts? Polling may be preferred in systems where simplicity is more important than efficiency or when dealing with devices that don’t generate frequent interrupts. It can also be used in situations where the overhead of handling interrupts is undesirable. Can polling be used in real-time systems? Polling can be used in real-time systems, but it might not be ideal due to its inherent latency. Interrupts are often preferred for their immediate responsiveness in real-time applications. What is a command-ready bit? The command-ready bit is a status flag in a device’s status register that indicates whether the device has a command or data that needs to be processed by the CPU. How does the command-ready bit work? The command-ready bit is typically a single-bit flag within a device’s status register. When the bit is set (1), it signals that the device has a command or data ready for processing. When the bit is cleared (0), it indicates that there are no commands or data pending. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System/Introduction of System Call/How much Stack size required for BIOS interrupt call?/Difference between Interrupt and Polling
https://www.geeksforgeeks.org/difference-between-interrupt-and-polling?ref=asr10
PHP
Difference between Interrupt and Polling
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Difference between Interrupt and Polling, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, Introduction of System Call, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How much Stack size required for BIOS interrupt call?, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0450715162, -0.0148480674, -0.0218696762, 0.0185531452, 0.0145150265, 0.0128914528, -0.049428802, 0.0207456648, 0.00543272728, -0.00784033444, 0.0305842441, -0.045127023, 0.0297793951, -0.0417688638, -0.0553125218, -0.014133418, -0.00356284226, 0.0412970558, 0.00701814052, 0.00552639505, 0.000349519338, -0.0162357371, -0.0582821332, -0.00810399186, -0.037744619, 0.00715343794, -0.0216754023, 0.00327316625, -0.0133146923, 0.0294463541, 0.00779176643, 0.0191359669, 0.00825663563, -0.00616472354, -0.00746566383, -0.0317221321, -0.0274897404, -0.023770785, 0.0230908263, -0.0227439087, -0.0445719548, 0.033193063, 0.00504071079, -0.0442111604, -0.0613350086, 0.00725057488, -0.000892445154, -0.023909552, 0.0121490499, -0.0364124589, 0.0234654974, -0.00195141078, 0.0291965734, 0.0594477765, 0.0233544838, 0.00133476499, 0.00773625961, -0.0323604606, 0.0158749428, -0.0249641798, 0.0324714743, 0.00997734629, -0.027933795, -0.0229520593, -0.00399302, -0.0238401685, -0.0763218403, 0.000321115484, 0.0331653096, -0.0176650379, -0.0411305353, 0.00394792063, -0.0242703464, -0.00768769113, -0.00104335428, 0.00775013631, 0.0194828846, 0.0167075451, 0.0117743788, -0.0106503665, -0.0391877964, 0.0329155289, -0.00291063753, -0.0237985384, 0.0324437208, 0.00750729395, -0.00767381443, -0.0650539622, 0.0320274197, -0.00803460833, 0.0123988306, 0.0140501577, 0.00427055405, -0.0222443473, 0.00578311412, -0.0278505348, 0.00518641621, -0.00926269591, 0.0136338565, -0.000741536089, 0.0192192271, -0.0313335843, 0.000720721029, -0.00419770135, 0.0527314544, -0.00333040766, -0.0324159674, 0.0278089046, 0.0016105643, 0.0636107847, -0.0261298232, -0.00822888222, -0.00266953, 0.0242287163, -0.0421019047, -0.00500255, 0.0188723095, -0.0319441594, -0.0510662496, 0.01458441, 0.0103034489, 0.0306119975, 0.00619594613, 0.0700495765, -0.0356076099, 0.0322216935, 0.0395208374, -0.0187890492, -0.00311011518, 0.00572760729, 0.0129122678, 0.0249086749, -0.0174291339, -0.00881864224, -0.00375711615, 0.000489153608, -0.0221888404, 0.0524816737, -0.00407974934, -0.0150284646, -0.0208150484, 0.0105671063, -0.0246727709, -0.00276493211, -0.0164716411, -0.0224247444, -0.039964892, 0.0142929992, -0.0204265, 0.00109105546, 0.00517947786, -0.0550904945, 0.0394375771, 0.00467297807, 0.0253943577, -0.000707711617, 0.0267265216, -0.00733383512, -0.040103659, -0.0402979329, -0.0222165938, -0.0349692814, -0.00364263332, -0.00881170388, 0.00126104499, -0.0277672745, 0.036606729, -0.018178476, -0.0209399387, 0.0210093223, -0.035885144, 0.0136963017, -0.0158749428, 0.0258661658, 0.00696957204, 0.0160414632, -0.0313890912, 0.00742403371, -0.0210787058, 0.00356978062, -0.0281835757, -0.0337758847, -0.0383274406, -0.00629308261, 0.0436005853, -0.00967205875, 0.0252555907, -0.00985939428, -0.0175262708, 0.0152782453, -0.0390212759, 0.0109487148, 0.0318886526, 0.00975531898, -0.0530089885, 0.0168046821, -0.0381886736, 0.0083052041, 0.0103658941, -0.0218974296, -0.0366622359, 0.00635899696, -0.0681623444, -0.000426491664, 0.00890190247, -0.0262130834, 0.0114205228, -0.00304767, 0.0210370757, 0.0229520593, -0.0166520383, -0.0032662279, 0.0134673361, -0.00113702205, 0.00116650993, -0.0236458946, -0.0105462912, -0.0050684642, -0.00824969728, -0.00636246614, -0.00901291613, 0.019177597, -0.013897514, 0.00338591449, -0.0814839751, -0.0141472938, 0.0169434492, -0.0469309948, -0.015722299, -0.00545007316, -0.0168601889, 0.00904760789, 0.00525233056, -0.0054292581, -0.0440168865, 0.0168324355, -0.00481521431, 0.00059583073, -0.000875966623, 0.0178454351, -0.00069990597, 0.00664000027, -0.045460064, -0.00227924786, 0.017470764, -0.0264073573, 0.0575605445, 0.0293353405, -0.0316111185, 0.0237985384, -0.0714372471, -0.0154031357, -0.0322772, 0.0429345071, -0.0100883599, -0.002870742, 0.0164716411, -0.036606729, 0.0185253918, -0.0260604396, 0.0260049328, 0.0030632813, -0.00892965589, 0.0206068978, -0.0274342336, 0.0193579942, 0.0393265635, 0.00763218431, 0.00398955075, -0.00645960309, 0.0166797917, -0.0255331248, 0.00321592484, 0.000729393971, 0.00159321842, -0.0164993946, -0.01219068, 0.0218835529, 0.0475970767, 0.0307230111, 0.000551598787, -0.0235210042, 0.0176789146, -0.0218835529, 0.0181368459, 0.0138558839, 0.0122808786, 0.0262824669, -0.0555345491, 0.0154447658, -0.0236597713, -0.0260049328, 0.0424627, 0.039160043, 0.0268375352, 0.0041005644, 0.00710486947, 0.0470975153, -0.0231740866, 0.0251584537, 0.0256718919, -0.0311948191, 0.0287247654, 0.00581433671, -0.0332763232, -0.039631851, -0.0107058734, 0.00670591462, 0.0114899063, -0.0174985174, 0.0179148186, -0.0267681517, -0.00241801469, -0.0360794179, 0.0200657062, 0.0252000839, -0.028697012, -0.0233961139, -0.0174846407, -0.0347750075, 0.00382996886, -0.00814562198, -0.0329432823, 0.0589482151, 0.0056374087, -0.0365789793, 0.0184421316, 0.0168879423, 0.00722282147, -0.00100172416, -0.0300014224, -0.00119686523, -0.00465563219, -0.0241315793, 0.0271428227, -0.0177482981, -0.0392433032, 0.0312225726, -0.0119131459, 0.00592881953, -0.00577617576, -0.0126277953, -0.0222027171, -0.0184837617, -0.00661918521, 0.00934595615, 0.000251948804, -0.00138246606, -0.00600514142, 0.00755586242, 0.000895047036, -0.00754198572, 0.00290196459, -0.0485962, 0.0373283178, -0.00218037632, -0.0173597503, -0.00933901779, -0.0126763638, -0.0061265626, 0.018275613, -0.0422406718, -0.00594963459, 0.0433508046, -0.0405199602, -0.0230214428, -0.022396991, -0.0105393529, 0.0255192481, 0.0419631377, -0.0139599591, -0.0293908473, 0.0208566785, -0.0204403773, 5.98974702e-06, 0.0134048909, 0.00381609215, -0.00950553827, -0.000368383, 0.0296683814, 0.00312746083, 0.0264489874, -0.0100189764, 0.031916406, 0.0214256234, -0.0106226131, 0.0336093642, -0.0136893634, -0.0142929992, 0.0338869, 0.00741015701, 0.0228410456, 0.024478497, 0.0177344214, -0.00971368887, -0.0207040347, 0.0266432613, 0.000318730425, 0.00104422157, -0.0159859564, 0.0472362824, 0.0292798337, -0.0557843298, 0.0291410666, -0.0223553609, 0.0121351732, -0.031444598, 0.00326449331, -0.0417411104, 0.0128290076, -0.0100814216, -0.0369120166, -0.0111915572, 0.0243536066, 0.00108151522, 0.0230630729, -0.0285304915, 0.0469865, -0.000943615509, -0.0413525626, -0.041713357, 0.00742403371, 0.00777788972, 0.00809705351, 0.0113025708, 0.0225773882, 0.0188861862, -0.0166797917, 0.02202232, -0.0052315155, -0.0391322896, -0.0280031785, 0.000763218442, 0.0214117467, -0.00625839084, -0.0196355283, 0.0117882555, 0.0343032, -0.0190665834, -0.00999122299, -0.00525233056, 0.00398955075, 0.013446521, -0.0286692586, -0.0661085919, -0.00926963426, -0.0442389138, 0.00171637419, -0.0130787883, -0.0321939401, -0.0343032, -0.0147509305, -0.0114482762, -0.00116650993, 0.0338869, 0.0345252268, 0.0266848914, -0.0451825298, 0.00805542339, -0.00949166156, 0.0338869, 0.0568389557, 0.0205375142, 0.007174253, 0.0353855826, -0.0140848495, -0.0088394573, 0.0302512031, 0.00983164087, 0.00340499496, -0.00625492167, -0.0247421544, -0.0179564487, 0.0258384123, 0.0107197501, -0.00348998979, -0.0106434282, 0.0342754461, -0.00461400207, -0.0305287372, 0.00314827589, 0.0328322686, -0.0185115151, -0.0174846407, -0.0102965105, 0.0186919123, 0.049567569, 2.20550078e-06, 0.012072728, -0.0169295724, 0.00247178692, 0.00901985448, 0.0208566785, -0.0097969491, -0.000180722316, -0.00113788934, -0.0407697409, 0.0139530208, -0.00744484877, 0.0408807546, -0.0318609, -0.0319441594, -0.0284056012, 0.0613905154, -0.0268514119, 0.0247837845, 0.0109417764, 0.0103867091, 0.0280031785, -0.0418243706, -0.00449258136, 0.00954023, 0.00564087788, 0.0349692814, 0.0299181622, 0.0222859774, -0.0170405861, 0.025477618, -0.0216060206, 0.0183588713, 0.0334983505, 0.00912393, 0.0139946509, -0.0172764901, -0.00223067938, 0.0260604396, 0.0129122678, -0.00846478622, -0.0285027381, -0.0308895316, -0.00065220485, -0.002870742, 0.0321939401, 0.0260743164, -0.0334428437, -0.0062653292, 0.00797216315, 0.0273787268, 0.0101161133, 0.0243674833, -0.0495398156, 0.00832601916, 0.00779870478, 0.00300604, 0.00932514109, 0.0158055592, -0.0332763232, 0.00190631149, -0.000994785805, -0.0122739403, -0.00265044952, 0.0370230302, -0.00351600861, 0.00909617636, -0.0160137098, -0.0209121853, 0.020121213, -0.00325235119, 0.0084092794, 0.000190370964, 0.00597391883, 0.0338313915, 0.0107197501, 0.00964430533, 0.0120866047, -0.0221333336, 0.0264906175, 0.00870069, 0.013800377, 0.0213423632, -0.00895047095, 0.00586290518, 0.00451339642, 0.0113858311, 0.0229381826, 0.0316943787, -0.00356978062, -0.0320274197, -0.0194967613, 0.0259771794, -0.0318609, -0.00676489063, 0.0246450175, -0.00643531885, 0.00366344838, -0.0184282549, -0.00187161972, -0.0123918923, -0.0245201271, -0.00370854768, 0.0245895106, 0.0137865, -0.00735465, 0.028697012, -0.0078611495, -0.0102201886, 0.0171932299, 0.000235036583, -0.0317498855, -0.0032662279, 0.00178142113, 0.0348582678, 0.0329710357, 0.0150284646, 0.02202232, 0.0263518505, -0.0534530431, 0.0304732304, 0.00783339608, 0.00938064791, 0.0108377011, -0.0131481718, 0.0371340439, -0.0151394783, 0.00972062722, -0.0231602099, 0.0367454961, 0.00314827589, 0.00265912246, -0.00160449324, 0.00140761759, -0.0105393529, 0.0141195413, 0.0291965734, 0.00595310377, 0.0176372845, -0.0220778268, -0.0328322686, -0.012502905, -0.0243674833, -0.0161663536, -0.00507193338, -0.0321106799, 0.0201767199, -0.0127665624, 0.010698935, 0.00802073162, 0.0232851, -0.0111846188, 0.0176650379, -0.0189278163, -0.00360100321, -0.00590800447, 0.0723808631, -0.0047493, 0.0365789793, -0.0109764682, 0.0341921858, 0.0308062714, 0.0016842843, 0.00661571603, -0.00919331238, -0.0109625915, 0.0197187886, -0.034608487, -0.0109695299, 0.00113355287, -0.0181507226, -0.0181646, 0.00277880882, -0.0126971789, -0.0174568873, 0.0284472313, 0.0174846407, -0.00132262288, -0.00146919547, 0.0343032, 0.00950553827, 0.00146312441, 0.0287247654, -0.0272399597, -0.0178454351, 0.0195245147, 0.0212313496, -0.00564087788, -0.0200934596, -0.0122461868, 0.0353855826, 0.024242593, -0.00320551731, -0.0158194359, -0.0179842021, 0.00905454624, -0.00379180792, 0.0277117677, 0.0056963847, -0.0211758427, -0.000756713736, -0.0136061031, -0.0326657481, -0.0133493841, -0.0145289032, -0.0154031357, 0.0112123722, 0.0104422159, -0.0104699694, -0.00981082581, 0.00773625961, 0.00528702233, -0.0183449946, -0.019649405, -0.0177344214, -0.0266293846, 0.00508927926, -0.0272538364, 0.0388825089, -0.000450125401, -0.0167491753, -0.0186364055, 0.00255504716, -0.00710140029, -0.0203016102, -0.00166173466, 0.00759055419, -0.0068134591, -0.00939452462, 0.00612309342, -0.0281835757, -0.00185080466, -0.00333387684, 0.042185165, 0.0210370757, 0.0338036381, -0.0064422572, -0.00906842295, -0.0139530208, 0.0238124151, 0.00204160926, -0.0353300758, -0.00209191232, 0.0181090925, 0.00529743, -0.0325547345, -0.00103121216, 0.024714401, -0.00461747125, 0.0258106589, 0.0218141694, 0.0204681307, -0.00141282135, 0.0268236585, -0.00220466056, -0.00881864224, 0.0140779112, -0.00429830747, -0.0374948382, 0.018469885, 0.032249447, -0.0158749428, -0.0306397509, 0.00806236174, -0.0025498434, -0.0203571171, -0.033997912, -0.0114899063, -0.0213007331, -0.00520723127, -0.000506933138, 0.0399093851, 0.0276423842, 0.016901819, 0.00943615474, 0.0253943577, -0.0239928123, 0.00917943567, -0.0176234078, -0.0382441804, -0.00987327099, 0.0168740656, 0.00711874617, 0.0122808786, 0.0143623827, 0.0391045362, 0.0119200842, -0.0145982867, 0.0304177236, 0.00811093, -0.0355243497, -0.0140709728, -0.00718119135, -0.0232573468, 0.0198159255, -0.0150700947, 0.00795828644, -0.00129226758, -0.0292243268, 0.0506499484, -0.0308895316, 0.0282113291, 0.0202738568, 0.0166797917, 0.0347195, 0.041241549, 0.0298626553, 0.0285859983, 0.00202946714, -0.0350247882, 0.0302789565, -0.0452935435, -0.0245895106, -0.00424280064, -0.0055194567, -0.00068949844, 0.0232712235, 0.0107891336, -0.0296128746, -0.0115662282, -0.0389102623, -0.0405199602, -0.00159408571, 0.00312225707, -0.0202599801, -0.00859661493, 0.019746542, 0.013210617, 0.0111638037, 0.00625492167, 0.0142374923, 0.00332867308, 0.0226606485, -0.0080693, -0.00540844304, 0.0342754461, 0.000261272216, 0.0410195217, 0.0149729578, 0.00629655179, 0.0248115379, 0.0333318301, 0.0256441385, -0.0171654765, 0.0169573259, -0.00429483829, -0.00145618606, -0.0380221531, -0.0173042435, -0.0247837845, -0.0111360503, 0.0329710357, 0.0217309091, 1.55028738e-05, -0.0163051207, -0.00768075278, 0.011247064, -0.00656367838, 0.0139044523, -0.00734771183, 0.00012770899, 0.0181368459, 0.00537722092, 0.0326379947, 0.0147925606, 0.00661224686, 0.0279476717, 0.00264351116, 0.0177621748, 0.013092665, -0.00949166156, -0.00188029266, -0.0376891121, 0.00199997914, 0.0120172212, -0.0420186445, 0.0148341907, 0.0147093, -0.00120900734, 0.00679264404, 0.019982446, -0.026754275, -0.0369675234, -0.025380481, -0.0324992277, -0.0135159045, 0.00585249765, 0.00955410674, 0.013307754, 0.0134881511, -0.00232434692, 0.0114760296, -0.0179009419, 0.0205930211, 0.0192608573, -0.0409362614, 0.0085758, -4.1304862e-05, 0.0115662282, -0.0331375562, -0.0305564906, 0.0287802722, 0.0187474191, -0.0159859564, 0.0269485489, -0.00458624866, 0.00394098228, 0.017137723, -0.0262130834, 0.00297308271, -0.00134170335, 0.00754198572, -0.011836824, 0.00351600861, -0.00114829675, -0.00383690721, -0.00331826555, 0.0125445351, 0.00562700117, 0.0213284865, -0.00664693862, -0.00513784774, 0.00251688622, -0.0162773672, 0.0133563224, 0.00237811916, 0.0158888195, 0.0510107428, 0.0567556955, -0.0164022576, -0.0262685902, 0.0200240761, 0.00288808788, 0.00307542342, 0.0387714952, -0.0240621958, 0.00469379313, -0.0097830724, -0.0203016102, -0.0155557794, -0.00210405444, 0.00152817147, -0.00209364691, 0.00461747125, 0.00489847455, -0.00304073165, 0.0141472938, -0.0433508046, -0.011933961, -0.0243952367, 0.0150423413, -0.0359128974, -0.00173545466, 0.000159473624, 0.00867293682, -0.0105879214, 0.00713262288, 0.0310005452, 0.00614737766, -0.0259910561, 0.0128706377, -0.0308340248, 0.00475276913, 0.0333595835, -0.00716731464, 0.0179842021, -0.00733383512, 0.00423586229, -0.0356631167, -0.0186086521, -0.0404367, 0.00708058523, 0.0331098028, -0.00390975969, -0.00475623831, 0.0256857686, -0.000980909099, 0.0105532296, 0.00941534, 0.00967205875, -0.0102965105, 0.00968593545, -0.0184005015, 0.0249641798, -0.0121143581, 0.02916882, 0.014820314, 0.00994265452, -0.00995653123, -0.00679264404, -0.037078537, 0.000331523, -0.0222721, 0.01723486, 0.0115523515, -0.0116356118, 0.0108377011, 0.0141611705, -0.0451825298, -0.00277360505, -0.0327490084, 0.00258973893, 0.0046833856, -0.0248115379, -0.0129122678, 0.0230075661, -0.0113788927, 0.0126902405, -0.00135557994, -0.00163831771, -0.0179148186, -0.0748786628, -0.0221888404, -0.0289467927, 0.00356284226, -0.0125653502, 0.037744619, 0.013682425, 0.0305564906, 0.00759055419, 0.0170267094, -0.0204681307, 0.0378278792, -0.018372748, -0.0313890912, -0.044183407, -0.00286033447, 0.0233267304, 0.0308617782, -0.0458763652, 0.00849947799, 0.0350525416, 0.0158749428, 0.00924188085, 0.00854804646, 0.0159026962, 0.0242842231, 0.0115939816, 0.0176927913, -0.00535640586, 0.00556802517, -0.0121282348, 0.0186780356, -0.00987327099, 0.00777095137, 0.00641450379, 0.00387853733, -0.00765993772, -0.0279615484, -0.0259355493, -0.0502058938, 0.0215088837, 0.00171637419, 0.0354410894, -0.0259355493, -0.000405242958, 0.0220778268, 0.00186641596, -0.0151394783, -0.00736852689, -0.0101993736, 0.00549170328, -0.00431565335, 0.00769462949, -0.0231185798, 0.00433993759, 0.000731995853, 0.0309450384, 0.0122392485, -0.0137448702, 0.00170163019, -0.00356978062, -0.0119062075, -0.0124473991, -0.0407419875, 0.0126971789, 0.00743097207, -0.0348305143, 0.0114413379, 0.0160275865, 0.024617264, -0.0154031357, 0.0188861862, -0.0203571171, -0.0166242849, -0.00310144224, -0.00219251844, -0.0174568873, -0.0230908263, -0.0411582887, -0.0165965315, 0.00804154668, 0.00180570537, -0.0318053924, -0.00574495317, 0.0111152353, -0.00716731464, -0.0101299901, 0.00692794193, -0.0236042645, 0.0017866249, -0.0287802722, -0.0298904087, -0.0274203569, 0.0288635325, 0.0218419228, -0.00365997921, 0.0172071066, 0.00780564314, 0.00999122299, 0.106850579, -0.0206485279, -0.00207456644, -0.0146954237, 0.00944309309, 0.00646654144, -0.00439197524, 0.0101161133, 0.00765993772, -0.014917451, 0.041380316, -0.0306675043, -0.0179564487, 0.0339701585, 0.0257273987, 0.0283223409, -0.0167769287, 0.022396991, -0.0196077749, -0.0220917035, -0.0231047031, 0.001435371, 0.00166346924, -0.0289190393, 0.0123294471, -0.000151559565, -0.0273093432, -0.00899210107, 0.0300291758, -0.00555761764, 0.0108585162, -0.00773625961, 0.0061265626, -0.0115107214, 0.00452727312, -0.0222027171, 0.00417341711, -0.0104838461, -0.00592535036, -1.4418757e-05, -0.00740321865, 0.00993571617, -0.00331132719, 0.0104075242, 0.00157153606, 0.00911005307, -0.0147786839, 0.0172903668, -0.0139252674, 0.00197742949, 0.0233961139, 0.014348506, 0.0124959666, 0.0111221736, -0.00920718908, 0.0178593118, 0.00194447243, 0.001479603, -0.000892445154, 0.00363916415, -0.0188861862, 0.0088394573, -0.0260465629, -0.0115384748, -0.00836764928, 0.00540844304, -0.0108793313, -0.000574148376, 0.00844397116, -0.0022723095, 0.00994959287, 0.0245895106, 0.000712481735, 0.0152643686, -0.0227994155, 0.0151394783, 0.00905454624, -0.0129330829, 0.0375503451, -0.0260049328, -0.0283500943, -0.0222998541, 0.0181090925, 0.00896434765, -0.0128428843, -0.00315001048, -0.0114968447, -0.00841621775, 0.0126971789, 0.0194412544, -0.0054743574, 0.00419076299, -0.0262824669, -0.00829826575, 0.00120727275, 0.000353855808, 0.0404922068, 0.0151256016, 0.00855498482, -0.0112054339, 0.0116980569, 0.0182339828, -0.00767381443, -0.00625145249, -0.0141889239, -0.0200379528, 0.00259494269, 0.0171793532, -0.021495007, 0.00207803561, 0.0395208374, -0.0148758208, 0.0176372845, 0.0154586425, 0.0143346293, -0.0237846617, 0.0255747549, 0.0124820899, 0.0094708465, 0.00342234084, -0.00536334421, 0.00168862077, -0.00829826575, -0.0288357791, 0.00653592497, 0.0146399168, 0.00486378279, 0.0111013586, -0.00311531895, 0.0257967822, 0.0111776805, 0.00962349, -0.00729914336, 0.0115523515, -0.0143346293, 0.00146746088, 0.0123710772, 0.0127179939, 0.00588372024, -0.0224524979, 0.0137101784, 0.0157084223, 0.000953155744, 0.027697891, 0.00710140029, 0.0175123941, -0.0353023224, 0.00289329165, -0.00938758627, 0.004485643, -0.0157361757, -0.0240344424, 0.0240483191, 0.00181264372, 0.0321106799, -0.00460359454, 0.00355937309, 0.00328530837, 0.0134603977, -0.0245895106, 0.0176234078, -0.00944309309, 0.00827745069, -0.00538762845, -0.028266836, -0.00943615474, -0.00445788959, -0.000603636377, -0.0247837845, 0.0209121853, 0.0157084223, -0.00400342746, -0.0196355283, 0.00784033444, -0.00341019873, 0.0320551731, 0.00689671934, -0.0287525188, 0.0283500943, 0.011482968, -0.00534599833, -0.00841621775, 0.00780564314, 0.0156251621, 0.00214048079, 0.0251862071, 0.00159755489, 0.00313613378, 0.0285859983, -0.00915168226, -0.000810919562, 0.0164716411, -0.00226710574, -0.00507540256, 0.00450298889, 0.000582821318, -0.00242321845, 0.00920025073, -0.0037501778, 0.0284749847, -0.0164993946, -0.0090614846, 0.00499908067, -0.0137448702, 0.0119200842, -0.0187751725, -0.015292122, 0.00727139, 0.00176927901, 0.0181090925, -0.000212053303, 0.0229520593, 0.0108654546, -0.0118160089, -0.00296787894, 0.00409709523, 0.00495745055, 0.00829132739, -0.0112540023, 0.00861049164, -0.0159026962, -0.00932514109, 0.00146225712, 0.0229520593, 0.00592881953, -0.0095749218, 0.0129469596, 0.00879782718, 0.0144733964, -0.00577270659, -0.0106434282, 0.0188029259, 0.0387437418, 0.0272677131, -0.00765299937, -0.0230491962, 0.00965124369, -0.0219945665, -0.0215921439, 0.0256718919, 0.0272815898, 0.0148064373, 0.0132522471, 0.00182652043, -0.0177344214, 1.11799572e-07, 0.0150284646, -0.00183172419, -0.00540844304, -0.00358018815, 0.00491582043, -0.00119599793, 0.0272954665, -0.037883386, 0.0306675043, 0.00928351097, -0.0173875038, 0.0250335634, -0.000392667193, -0.039631851, 0.0261159465, 0.0171516, -0.0047284849, -0.00260535022, 0.0152504919, -0.00930432603, -0.00831214245, 0.00990796275, -0.0056963847, -0.00199651, -0.0145566566, 0.0315278582, 0.0378001258, -0.00827745069, -0.00627573673, -0.0206068978, 0.00710140029, -0.00416300958, -0.0126763638, -0.00343448296, -0.00423586229, 0.0276007541, 0.0130787883, 0.00427749241, 0.0167075451, -0.0148480674, 0.00215088832, -0.00660183933, 0.018039709, -0.00756280078, 0.00972756557, 0.00407974934, 0.00754198572, -0.00260535022, -0.00815256, 0.00482909102, 0.0175679009, 0.000204464479, -0.00471807737, 0.0170822162, 0.00682039745, 0.00397914322, 0.00970675051, 0.0340256654, -0.0176789146, -0.0189833231, 0.0189694464, -0.00567556964, -0.0262685902, 0.00606064824, 0.00177968654, -0.0149868345, 0.0239511821, 0.0243674833, -0.00818031374, -0.00854804646, 0.000600600848, 0.00154118089, 0.0121559883, 0.00522457715, -0.00897128601, -0.00186468137, 0.0208566785, 0.0170683395, -0.0147925606, -0.0126347337, -0.00311705354, 0.00307542342, -0.028266836, 0.00991490111, -0.00212833867, -0.0159998331, -0.00323500531, 0.00711874617, 0.0216198973, -0.00616472354, -0.0126277953, 0.00836764928, -0.0141542321, -0.025477618, -0.0173597503, -0.0078611495, -0.0236181412, 0.022494128, -0.0161663536, -0.00437116, 0.00308062718, 0.0094708465, -0.00138073147, -0.0130371582, -0.0166797917, 0.0184837617, -0.00815256, -0.0305564906, -0.0164022576, 0.00576576823, -0.00446135877, 0.00387159898, -0.0331098028, 0.0276007541, -0.00477011502, 0.0151394783, 0.00210578903, 0.00920718908, -0.0208011717, 0.0153615056, -0.0113927694, -2.41351572e-05, 0.0192053504, 0.0211758427, -0.00240587257, 0.0107266884, 0.0253249742, 0.0144595196, 0.0151949851, -0.0128428843, 0.0160137098, 0.0279893018, 0.0305564906, 0.00266606081, 0.0156112863, -0.0346917473, -0.000597565318, -0.0275868773, 0.00915168226, -0.00308236177, 0.0041595404, 0.0152504919, 0.0250196867, 0.00758361584, 0.0224663746, 0.0164438877, 0.0173736271, -0.0176095311, -0.0643323734, 0.014820314, -0.0340256654, -0.0292798337, -0.0174846407, 0.00736852689, 0.0227022786, 0.0190804601, 0.00153337524, 0.0111984955, -0.000347784749, -0.00930432603, -0.0224108677, -0.0300569292, 0.0271567, -0.0106434282, -0.00928351097, 0.0129330829, 0.0131967403, -0.00793053303, -0.0145011498, -0.00579352165, 0.0183866248, 0.0382996872, -0.0137240551, 0.0163883809, -0.00838152599, 0.000844744034, -0.0177344214, -0.00265565328, -0.00360100321, -0.0313890912, 0.0379111394, 0.0059045353, -0.00780564314, -0.0199408159, 0.00330438884, -0.000298782659, -0.0072783283, 0.00339285284, -0.0381886736, 0.0138489455, 0.0285859983, 0.015389259, -0.00624451414, 0.00381609215, -0.00328183919, -0.00983857922, -0.0174152572, -0.00933207944, 0.0179286953, -0.00149694888, 0.0022289448, 0.00658102427, -0.0123641388, -0.00517947786, -0.000421504723, 0.00252729375, -0.000878568506, 0.00897128601, 0.00580392918, 0.0016261756, 0.014015466, -0.024950305, -0.0108515779, 0.00548129575, -0.0126694255, -0.0113095092, -0.00552292587, 0.00362875662, 0.00685855839, 0.00349692814, 0.00526273809, 0.0226884019, -0.00637634285, 0.014348506, -0.0142097389, -0.00044578893, 0.00416647876, 0.0183311179, 0.000495224667, -0.000785334385, 0.0175262708, 0.0112193106, -0.000243492701, 0.0169573259, 0.00132609205, -0.00467644725, 0.00291584129, 0.0303067099, -0.0193718709, 0.0519266054, 0.00477358419, 0.0364402123, -0.000831301, 0.00451686559, 0.0064422572, -0.00161229889, -0.0278921649, 0.00740321865, -0.019510638, -0.0159304496, 0.00165045983, -0.0178176817, -0.0256441385, 0.0265600011, -0.0255470015, -0.00390975969, 0.0111846188, 0.023673648, 0.0260188095, -0.00205895514, -0.0155974096, 0.0002927116, -0.0103103872, -0.0132175554, -0.0246450175, 0.00493663549, -0.00324194366, 0.0152504919, 0.00670591462, 0.000572413788, -0.0182617363, 0.0141542321, 0.0155557794, -0.0063243052, 0.0141472938, 0.00166607113, -0.0256857686, -0.0229520593, 0.00610921672, 0.00671632215, -0.00580739835, -0.0115801049, -0.00293145259, -0.00705977064, -0.00598432636, 0.0138905756, -0.0131620485, 0.007174253, -0.0420463979, 0.00223761774, -0.0240483191, 0.0202044733, 0.022161087, -0.00804848503, -0.0147370538, -0.00198957161, -0.00864518341, -0.00227577868, 0.00456890324, 0.0106642433, 0.00449258136, 0.00103034487, 0.00246311398, -0.0204820074, -0.00945697, 0.000775360561, 0.00567903882, 0.00724363653, 0.0186364055, 0.0294186, -0.00299563236, 0.00703895558, 0.000202513067, 0.0178731885, 0.0324437208, -0.00745872548, 0.00628961343, 0.0053355908, -0.000210752361, 0.00340499496, -0.00496091973, -0.00437809853, 0.0155557794, -0.0193163641, 0.01101116, 0.027226083, 0.0192192271, 0.00320031354, 0.00360794156, 0.00985245593, -0.0230491962, 0.0115801049, 0.0020658935, 0.000162183918, -0.000778829737, -0.00358018815, -0.0150423413, 0.00304767, -0.00650470238, 0.01160092, 0.0156251621, 0.00309970765, -0.0016990283, 0.0254498646, 0.0132800005, 0.0146676702, -0.0201073363, -0.0141264796, 0.000597998966, -0.00389935239, -0.00514825527, 0.0310560521, 0.0135228429, 0.00317602931, 0.00253770128, 0.00187161972, 0.00607452495, -0.000297048071, -0.0026972834, -0.016665915, -0.0157639291, -0.018705789, -0.00604677154, -0.00767381443, 0.00939452462, -0.00988020934, -0.0121143581, -0.012169865, -0.00061664579, -0.0141403563, 0.0162773672, 0.00018093914, -0.00831908081, -0.0040415884, 0.00866599847, 0.0202599801, 0.00867293682, -0.000554200669, -0.00945003144, 0.0223553609, 0.0268375352, -0.00723669818, -0.0195800215, -0.0273093432, 0.00418382464, 0.00435034512, -0.0305287372, 0.00900597777, -0.0172903668, -0.00961655192, -0.0102618188, -0.0101924352, -0.00759055419, 0.00608493248, -0.00335816108, 0.00138420064, -0.0153476289, -0.0371617973, 0.000433213194, -0.00344489049, -0.00868681353, -0.00977613404, 0.00660877768, -0.0021092582, -7.12129395e-06, 0.00124196452, -0.000345399691, 0.0184005015, -0.00992183946, -0.0298904087, 0.00196875655, 0.00290543376, -0.00304420083, -0.0163883809, 0.00379527709, 0.00249086739, -0.00229138974, 0.00571373058, 0.000159148389, -0.00952635333, 0.0019045769, 0.00170249748, -0.0201489665, -0.00353508908, -0.0034292792, -0.0396873578, -0.0183588713, -0.0104907844, -0.00504071079, 0.00226363656, -0.0101508051, 0.00101473357, -0.0131342951, 0.00597391883, 0.0224663746, -0.00332693849, 0.0201628432, -0.0245617572, 0.0167214219, -0.016527148, 0.0124127073, -0.00450645806, 0.0151394783, 0.0174291339, 0.00192192278, -0.0192608573, 0.0144178895, 0.0184421316, 0.0111846188, -0.0262963437, 0.00241628, 0.0252000839, 0.0135922264, -0.010463031, 0.00981776416, -0.0139807742, 0.00973450392, -0.00503724162, -0.00216996879, -0.00899903942, -0.002959206, 0.0384939611, 0.0232157167, 0.0116564268, 0.0127665624, 0.00840234105, 0.0114205228, -0.013543658, -0.00979001075, 0.000411964487, 0.013918329, -0.0150423413, 0.039160043, -0.00045619646, 0.00593228871, 0.0188306794, 0.00488112867, 0.0216615256, -0.00725057488, -0.0129677746, -0.00619594613, 0.000196984067, 0.00756973913, -0.000813521445, -0.0254221112, 0.0163883809, -0.000976572628, -0.00576229906, -3.20085564e-05, 0.0030337933, 0.0131134801, -0.00114222581, -0.0129608363, 0.0193163641, 0.000731995853, -0.0062653292, 0.018705789, 0.0134812128, 0.00316041801, -0.0155141493, 0.00382996886, -0.00928351097, -0.0260049328, 0.0092488192, -0.000542925845, 0.00573801482, 0.0170683395, 0.00390975969, -0.000243709525, 0.00872150529, -0.00627226755, 0.0100814216, 0.00437809853, -0.013307754, 0.0104838461, 0.0123363854, -0.0156945456, -0.00478052255, 0.0134812128, -0.00448217383, 0.00295573683, 0.00337897614, 0.0265600011, -0.00546048069, 0.0443776809, -0.0113303242, -0.00195487984, 0.0140917879, 0.0250751935, 0.0131134801, -0.0139252674, -0.014820314, -0.0061265626, 0.00107631146, 0.00409709523, -0.0353023224, -0.00881170388, 0.0209676921, 0.0135228429, -0.0133216307, -0.00758361584, 0.00625839084, 0.000552032434, -0.0059045353, -0.0117119337, 0.0277950279, 0.0142513691, -0.0143901361, -0.00883251894, -0.00487419032, -0.00980388746, 0.0178870652, 0.0114482762, 0.00938064791, 0.0121004814, 0.00955410674, 0.00111187052, -0.00577617576, -0.010560168, 0.00150648912, 0.00649776403, -0.0176789146, 0.000839973916, 0.00141108676, -0.012738809, 0.00418035546, 0.0039964891, -0.00831908081, -0.0080693, 0.0173042435, 0.00749341724, -0.0199963227, 0.0113511393, -0.0387992486, 0.00743791042, -0.0173181202, 0.0206624046, 0.00906842295, -0.00587331271, -0.00965818204, -0.00826357398, 0.00971368887, -0.00214568456, 0.0185115151, 0.00576229906, -0.0373838246, -0.00524886139, -0.00420117052, -0.0042879, 0.00333561143, 5.53170721e-05, -0.0186086521, -0.00402771169, 0.00950553827, 0.00426708488, 0.0166242849, -0.00402077334, -0.00867293682, 0.0123433238, 0.020787295, 0.000234819759, 0.0297516417, 0.0238262918, -0.0200795829, 0.0132522471, 0.00397914322, 0.00465216301, 0.0140293427, 0.000466604, 0.0104838461, -0.00384731474, -0.0224247444, -0.00736158853, -0.00446829712, -0.00724363653, -0.0234654974, 0.00123589346, 0.00547782658, 0.00383343804, -0.0284194779, 0.00802767, -0.00375364698, -0.00165219442, -0.0200795829, 0.0174152572, -0.0103728324, 0.0147786839, -0.0096789971, -0.00330785802, 0.00572413811, 0.0101161133, 0.0176095311, -0.0229520593, 0.0151394783, 0.00872150529, -0.00879782718, 0.0132730622, 0.0161108468, -0.00802073162, 0.0194828846, -0.00969287381, 0.0208566785, -0.00534252916, -0.0177621748, 0.00336683402, 0.00994265452, -0.00256372, -0.00599473389, 0.0132800005, 0.00995653123, 0.0111846188, 0.00366344838, -0.010109175, 0.0173042435, 0.00240240339, 0.0170405861, 0.00397220487, 0.00420810888, -0.0141195413, -0.0101646818, 0.00193926867, 0.0147925606, -0.00806236174, -0.000571546552, -0.00781951938, -0.00754892407, 0.00572066894, -0.0163883809, -0.0169850793, -0.0059635113, -0.0068134591, -0.00253770128, 0.00766687607, -0.00865906, 0.0166520383, -0.00777095137, 0.0159859564, 0.0135020278, 0.00413525617, -0.0151117248, 0.00301124365, -0.00483256, 0.0124127073, 0.0121976184, 0.00692100357, -0.00298349024, -0.0165410247, 0.00973450392, -0.019649405, -0.00232955068, -0.000465736695, -0.0147786839, 0.0159859564, -0.00149955077, -0.0395763442, -0.00829826575, 0.00245097186, 0.00221159891, 0.0367454961, -0.0130857266, 0.00270075258, 0.00186294678, -0.0120935431, -0.013564473, 0.00244403351, 0.00817337539, 0.0270456858, -0.00056894467, 0.00397567404, -0.0109764682, 0.00422198558, -0.00303899706, -0.0176511612, -0.0208289251, 0.0165687781, -6.95461131e-05, 0.0147509305, 0.00488806702, 0.0353855826, -0.00269554881, 0.0132522471, 0.0108168861, -0.0140848495, 0.03446972, 0.000794874621, 0.0104283392, 0.0136199798, -0.00701467134, -0.000466170342, -0.00295400224, -0.00705630146, -0.00340499496, -0.0038091538, -0.0158333126, -0.0175540242, -0.00967205875, -0.000233735642, -0.0153476289, 0.00291237212, -0.000367515691, -0.00202946714, 0.0026972834, 0.00413178699, -0.00799991656, 0.0263379738, -0.00279442, -0.0132522471, -0.00719506806, -0.0219113063, -0.0115523515, -0.00456196489, -0.00424973899, 0.032249447, 0.0188306794, -0.000690799381, -0.00542231975, -0.0140501577, -0.0243536066, 0.0164993946, -0.0204126239, -0.0172626134, -0.00413178699, -0.0205236375, -0.00963736698, -0.0180674624, -0.0129400212, 0.0224802513, -0.00784727279, -0.0113580776, -0.00424280064, 0.0174568873, 0.0138697606, -0.00346050179, 0.0138420071, -0.00549170328, 0.0108446395, 0.0132938772, -0.00426708488, 0.0300014224, -0.0226606485, -0.00584209, 0.0124196457, 0.0116980569, -0.0238817986, -0.0129816514, 0.00785421114, 0.00882558059, -0.00700773299, 0.0157639291, -0.00791665632, 0.010914023, -0.00345009426, 0.00496785808, 0.0454878174, -0.0226051416, 0.00457931031, -0.0155141493, 0.0018299896, 0.00854804646, 0.0180674624, 0.00365997921, -0.03446972, 0.00417341711, -0.0228549223, -0.000597565318, 0.010893208, -0.00838846434, -0.0184143782, -0.0270179324, -0.0231185798, -0.00929738767, 0.0063832812, 0.00657408591, 0.0165687781, -0.0213562399, -0.000889843272, -0.0140709728, -0.0133355074, -0.0120241595, -0.0111221736, -0.0236597713, -0.0338591449, -0.0373005643, 0.00475970749, 0.0316943787, 0.0235903878, -0.0106364898, -0.00422198558, 5.50731493e-05, 0.00958186, 0.0195245147, 0.00145965524, -0.013800377, -0.00577964494, 0.00431565335, 0.00799991656, -0.00647001062, -0.013543658, 0.0020953815, 0.00780564314, 0.025144577, -0.0069903871, 0.0256857686, -0.0053355908, 0.00359059568, -0.00700079463, -0.00322806695, -0.00697304122, 0.00241107633, -0.0277533978, -0.00572413811, -0.0138420071, 0.0422406718, 0.0149729578, 0.00130007323, 0.0127873775, -0.00173805654, 0.00441625947, -0.0107821953, -5.20376198e-05, 0.00211272738, 0.0174568873, -0.00725057488, 0.00355937309, 0.0138211921, 0.019274734, 0.0158194359, 0.00663306192, -0.00881170388, 0.00795828644, 0.00502683409, 0.00586290518, -0.00940146297, 0.00619594613, -0.00174326031, 0.0013338977, 0.0116286734, 0.000130310873, -0.00606411742, 0.00992877781, -0.0101230517, -0.0060675866, -0.0160137098, 0.00878395047, -0.0138281304, 0.0173875038, -0.00572066894, 0.012308632, -0.00025043104, -0.0270318091, 0.00868681353, -0.00559924776, -0.00422198558, 0.0130996034, 0.00352988532, 0.0123433238, -0.00101473357, 0.00931820273, 0.0303622168, 0.00255331257, -0.00362181826, 0.00294359471, 0.0193024874, -0.00168948807, 0.0115107214, 0.00671632215, -0.0050094882, -0.0196910352, -0.00562353199, -0.000956624921, -0.0125653502, -0.00191151525, 0.0050684642, 0.000416084134, 0.00538069, 0.00500255, 0.0137448702, 0.00216303044, -0.0252694674, -0.0191082135, 0.0068273358, 0.00540150516, -0.0154586425, -4.29920192e-06, -0.0109279, -0.00034106322, -0.00884639565, 0.0134673361, 0.00320031354, -0.00513437856, -0.00190631149, 0.00244923728, -0.0379944, -0.00754892407, -0.00297655188, 0.00355590391, 0.0025342321, -0.0241315793, 0.00459318701, -0.0142028006, 0.0249364283, 0.00384731474, 0.0100883599, -0.0016547963, -0.00142756535, -0.00790971797, -0.0110389134, 0.0366344824, -0.0158055592, -0.0116980569, -0.00664000027, -0.0159026962, -0.0176234078, 0.0081872521, 0.00411097193, -0.00894353259, 0.00981082581, -0.0123918923, 0.0038091538, 0.00356978062, -0.0131551102, 0.00868681353, -0.00832601916, 0.0044717663, 0.00746566383, -0.00904067, -0.0333040766, 0.0189694464, 0.0272677131, -0.00494357385, -0.0150284646, -0.00509968679, 0.0252694674, -0.00573801482, 0.00672672968, 0.0119894678, 0.011718872, -0.00384384557, -0.0101299901, -0.01458441, -0.00157760712, -0.0161247235, -0.011933961, -0.0271011926, 0.014015466, 0.00690365769, 0.00799991656, -0.00565128541, 0.00836071093, 0.0480133779, 0.000946217391, 0.0158610661, -0.00125150476, -0.0223137308, -0.0094986, -0.0205097608, 0.007174253, -0.0170822162, 0.0194551311, -0.0171793532, -0.00870069, 0.000288375129, 0.0169434492, -0.0066504078, 0.00611615507, -0.00328183919, 0.000978307216, -0.0101716202, 0.0170822162, -0.00821500551, 0.00806236174, 0.0289190393, 0.0050545875, -0.00707017817, 0.00390629051, 0.00371548603, 0.018372748, -0.00409015687, 0.00294879847, 0.0134395827, -0.00784727279, 0.007174253, 0.0239650588, -0.0229381826, 0.00877007376, -0.00754892407, -0.00612309342, 0.00798604, 0.0250613168, 0.00600167224, -0.0063243052, -0.0149590811, 0.000880303094, -0.017706668, 0.0130510349, 0.0258106589, 0.0178176817, -0.002929718, 0.00236424245, 0.0224386211, -0.00226884033, 0.00153597712, 0.0241593327, -0.0122461868, 0.012641672, 0.00480480678, -0.00090198539, -0.00166867301, 0.0164022576, -0.00361488, -0.00257239304, -0.000790971797, -0.0087492587, -0.0149590811, -0.00888108741, 0.00700426381, 0.0106364898, -0.0187196657, 0.00119079417, -0.00153597712, 0.013307754, 0.00474236161, -0.00297655188, -0.00361141074, 0.00444054371, -0.00209364691, 0.0113580776, 0.0150978481, -0.034136679, -0.0090753613, 0.0146815469, -0.0119131459, -0.00993571617, -0.0102063119, -0.00437809853, 0.0258800425, -0.0179980788, -0.00824275892, 0.00290716835, 0.0137032401, 0.00932514109, -0.0191359669, 0.00863824505, -0.0229936894, 0.0107544418, 0.0147509305, 0.0198159255, 0.0150700947, -0.00634858944, -0.0123780156, 0.00391669804, 0.00509968679, -0.0307507645, 0.0161247235, -0.00164178689, 0.0132522471, 0.0333040766, -0.00203987467, -0.0144456429, 0.000262139511, -0.00277533964, -0.0126486104, 0.00509968679, 0.0168463122, -0.0097969491, -0.00804848503, 0.00615084684, 0.0237430315, -0.002870742, 0.0176927913, 0.00169555913, -0.00780564314, 0.018705789, -0.00110666675, 0.0257551521, -0.00959573686, -0.019982446, -0.0182478596, 0.000941013626, -0.013328569, -0.0113719543, -0.0149452044, 0.0210509524, -0.0164022576, -0.00368773262, 0.00951247662, 0.00320378272, -0.0135020278, 0.00575883, -0.0109279, -0.0137171168, -0.00317429472, -0.00384384557, 0.0105185378, -0.00532865245, 0.00158628006, -0.0107197501, -0.0034726439, 0.00617860025, 0.00483949855, 0.0203154869, 0.00111100322, 0.00535293669, -0.0150423413, -0.00471113902, -0.00094188092, -0.0130718499, 0.0191914737, 0.00522110797, -0.0216615256, 0.00580739835, 0.00187335431, -0.00112054346, -0.00415607123, 0.0112331873, 0.0101508051, -0.00462787878, -0.0025498434, 0.0143762594, -0.0102410037, -0.0135505963, 0.0105879214, -0.00997040793, -0.0236875247, 0.00398955075, 0.00111100322, -0.0193579942, 0.0117535638, 0.000555067963, 0.00865212176, 0.0137587469, -0.00264351116, -0.0208705552, -0.00084387674, 0.00452727312, -0.00433993759, -0.0108307628, -0.000152101624, -0.0094708465, 0.019274734, 0.000308106071, -0.00204160926, -0.026518371, 0.00384384557, 0.0218002927, 0.00456543406, -0.00998428464, -0.0117535638, -0.00440932112, 0.00753504736, 0.0180674624, 0.0111221736, 0.00725751324, -0.00211619656, 0.0233683605, 0.00446829712, 0.00641103461, -0.0148480674, 0.00341713708, 0.0162634905, 0.00479439925, 0.00124369911, -0.00711180782, 0.00418382464, -0.00922800414, -0.00848560128, -0.00215609209, 0.00226016738, -0.0170822162, 0.0133216307, 0.00288288412, 0.00502336491, 0.00792359468, 0.0043225917, 0.037744619, 0.0175540242, 0.00018093914, -0.0142028006, 0.0136130415, -0.00847172458, 0.0110180983, 0.0285582449, 0.0044717663, 0.000155896036, 0.00916555896, 0.00120640546, -0.0147786839, 0.00567556964, -0.00486725196, 0.0160414632, 0.0102479421, -0.00655674, -0.0334428437, 0.0123780156, -0.00582127506, 0.0147648072, 0.000867293682, 0.0245756339, 0.0100189764, 0.0177344214, 0.0182894897, -0.0304732304, -0.00819419, 0.00888108741, 0.0116078584, -0.0252278373, 0.00302165118, 0.0103381407, 0.0109764682, -0.00253770128, -0.0210093223, 0.00120380358, 0.0209676921, -0.0127526857, -0.0136407949, -0.00653939415, -0.0115870433, -0.00734771183, -0.0130718499, 0.00900597777, -0.00140761759, 0.000271246099, 0.00688284263, -0.0199130625, -0.0127110556, 0.0246588942, -0.0319719128, 0.0115107214, -0.00580046, 0.0143762594, -0.0113997078, -0.00395832816, -0.00443360535, -3.98413031e-05, -0.0285859983, 0.00299910153, 0.000735031383, 0.0125098433, 0.00054812961, -0.0258245356, -0.0192469805, -0.00774319796, -0.00263657281, 0.00542231975, 0.00569985388, 0.0174568873, -0.0042636157, -0.00122808781, 0.0152366152, -0.0170544628, -0.0198575556, -0.00543966563, 0.0335816108, -0.00427055405, -0.0070354864, -0.00100172416, -0.0233406071, 0.0129053295, -0.00771544455, -0.0240760725, 0.0337758847, 0.0105671063, 0.0163745042, 0.0152088618, -0.0104005858, 0.00674754474, -0.00367732509, -0.0118160089, -0.0196771584, 0.00970675051, 0.0149590811, 0.00886027236, -0.011149927, 0.00483602937, 0.00700773299, 0.00828438904, -0.02021835, 0.000557669846, 0.0073962803, -0.00697304122, 0.0252694674, 0.0172487367, 0.00785421114, 0.0132453088, 0.0255331248, -0.0149035743, 0.0150007112, -0.00213701162, -0.0135505963, -0.0131689869, -0.0130718499, -0.00455155736, 0.000325885601, -0.00926269591, -0.0155557794, -0.00121681299, 0.00818031374, -0.0127041172, -0.00200691749, -0.00464869384, 0.00684121251, -0.0180813391, 0.013543658, 0.00574842235, -0.0104075242, 0.00439891359, 0.0099010244, -0.00511703268, 0.00242495304, 0.0126902405, -0.00324367825, -0.0076183076, -0.0060224873, -0.0130440965, -0.0204403773, 0.00303726248, 0.0146815469, -0.0325269811, 0.0121629266, 0.0129608363, 0.00670591462, -0.02320184, 0.00747954054, -0.011718872, 0.00352815073, -0.0050094882, -0.00435381429, 0.00416647876, 0.027697891, 0.00755586242, -0.00300257071, -0.00281003141, 0.00781258103, 0.0274758637, -0.00558537105, 0.045931872, -0.0266710147, 0.0159998331, 0.000199369126, 0.00903373118, 0.00300083612, 0.0179980788, -0.00933901779, -0.00302858953, 0.025241714, 0.0154863959, 0.00926963426, -0.0107683185, -0.00318817142, 0.0124404607, 0.00336336484, -0.00353682344, -0.0107613802, -0.021259103, -0.0050545875, -0.00896434765, 0.00753504736, -0.0150978481, -0.00238852669, 0.0156529155, 0.0208566785, -0.000371418515, 0.000715083617, 0.00577270659, 0.0223137308, 0.00515519362, -0.019177597, 0.00238332292, 0.00123849534, -0.0205375142, -0.0173319969, 0.00516213197, 0.00477358419, -0.00572066894, 0.00339285284, -0.00277187047, 0.0102410037, 0.014036281, -0.0015394463, 2.96506023e-05, -0.015528026, -0.00465910137, -0.0216615256, -0.0214117467, -0.00524192303, 0.0071881297, -0.00372242439, -0.0170960929, -0.000494357373, 0.00775707467, -0.0105462912, -0.0142236156, 0.00659837, -0.0116772419, -0.0266432613, 0.0133701991, -0.000135189402, 0.0235487577, 0.000164677389, -0.0178454351, -0.0185531452, 0.00533212163, 0.0104699694, -0.00415607123, 0.00637634285, -0.0112123722, 4.2388976e-05, 0.0203016102, 0.00367038674, -0.00594963459, -0.0246450175, -0.00540497433, -0.0154447658, 0.000560271728, -0.0150284646, -0.0338869, 0.00539109763, -0.00641103461, 0.00936677121, 0.00932514109, 0.0181368459, 0.00438503688, -0.000875966623, 0.0187612958, -0.00551251834, 0.00464522466, 0.00936677121, 0.0103867091, -0.0141472938, -0.0213839933, -0.0108377011, 0.0215088837, -0.0186364055, -0.0179286953, 0.00102080463, -0.00894353259, 0.000438633782, 0.000262789981, -0.0293075871, 0.00674407557, 0.0169850793, -0.0115037831, -0.00572066894, -0.00647694897, -0.0200379528, -0.00953329168, 0.010345079, -0.0157500524, -0.00944309309, 0.00755586242, -0.0211342126, -0.0095749218, 0.0016556636, 0.0312780775, -0.00845090952, 0.00765993772, -0.0107336268, 0.010580983, -0.0105324145, 0.0111082969, -0.00474583078, -0.023534881, 0.0210370757, -0.0110736052, -0.00207456644, -0.0257412754, 0.00813868362, 0.00355937309, 0.00661918521, -0.020787295, 0.0195938982, 0.00339458743, -0.0116980569, -0.0100397915, 0.0139877126, -0.00488459785, -0.00021064395, -0.0216198973, 0.00931820273, -0.00266259164, -0.0153615056, -0.0138350688, 0.00194447243, -0.0174013805, -0.000835203798, 0.0410195217, 0.00653592497, 0.0123710772, -0.0262963437, 0.000434297312, -0.00310317683, 0.00828438904, -0.0282529593, -0.00967205875, -0.0262824669, -0.0153615056, 0.00081872521, 0.0056374087, -0.00803460833, -0.0118090706, -0.000544660434, 0.00211099279, -0.00653939415, -0.00860355329, -0.0136407949, -0.0251029469, -0.0147648072, 0.0140570961, -0.00972062722, 0.0150423413, 0.0142513691, -0.00846478622, -0.0118090706, 0.00184907007, 0.0186225288, 0.0212313496, -0.00992877781, -0.00589759694, 0.00884639565, -0.0119894678, -0.0265600011, 0.00259147352, 0.0142374923, -0.000162617565, 0.00239199586, -0.0249919333, 0.0173319969, 0.000957492215, 0.00530783739, -0.00738934195, -0.0120241595, -0.00807623845, -0.00246311398, 0.0224108677, -0.0179009419, -0.00484990608, 0.0329432823, -0.00378486956, 0.00904067, 0.00824969728, 0.0109695299, -0.00554721, 0.0123641388, 0.00898516271, -0.0313890912, -0.00264351116, 0.00445442041, 0.0126624871, 0.022161087, 0.000953155744, 0.00617513107, -0.00572413811, -0.000541624904, 0.00625839084, -0.00480827596, -0.00774319796, 0.0114690913, 0.000816123327, -0.00235036574, 0.00698691793, -0.00185253925, -0.0159720797, -0.00477358419, -0.0100883599, 0.00876313541, 0.00815256, -0.005918412, 0.00195834902, 0.00286033447, 0.0181646, -0.0222027171, 0.0228271689, 0.0257273987, -0.00777788972, 0.0076044309, -0.00241454551, 0.0158333126, -0.0129955281, 0.0154170124, 0.00804154668, 0.0132175554, 0.00176320807, 0.00343274837, 0.00454461901, -0.0154863959, -0.00599473389, 0.0279199183, -0.000650470261, 0.0022584328, 0.00450298889, 0.0142097389, 0.00188896561, 0.00499214232, -0.00518294703, -0.0105115995, 0.00922800414, -0.0097830724, -0.00254463963, -0.0126763638, -0.00570679223, -0.0184976384, -0.0277117677, 0.00741709536, 0.000575449318, -0.00611962425, -0.000342147338, 0.0127873775, -0.0155974096, -0.00240413798, 0.0145289032, 0.0251862071, -0.0166936684, 0.0158194359, 0.0253249742, -0.00340326037, 0.00683774333, 0.00678223651, 0.0166242849, 0.00628267508, 0.000127383755, 0.0136685483, -0.0121212965, -0.00560618611, -0.00630002096, -0.00342581, 0.00628614426, 0.0317776389, -0.0206068978, 0.0136338565, 0.029640628, 0.0169712026, -0.00149608159, 0.0155002726, 0.0133701991, -0.000677789969, -0.0087492587, 0.0156945456, 0.00395485898, 0.0127179939, 0.00653939415, 0.0124335224, -0.0160830934, 0.0119062075, -0.0132661238, 0.0177760515, 0.00605371, -0.0121421115, 0.0171932299, 0.0389380157, 0.00356631144, 0.0129538979, -0.00531130657, 0.00500601903, 0.0235487577, 0.00766687607, 0.018275613, 0.00112661452, -0.0198436789, -0.00997040793, -0.00327143166, 0.0138697606, 0.0230075661, 0.00922800414, -0.00584209, -0.0406309739, -2.19533704e-05, 0.0300014224, 0.00581780588, 0.00824969728, 0.00648388732, -0.0246866476, 0.00604330236, 0.0197326653, -0.000647434732, 0.00123589346, -0.0277811512, -0.0265322477, -0.00612309342, -0.00539803598, -0.00618206942, -0.0119755911, 0.0118021322, -0.00655674, -0.00802073162, -0.0140848495, 0.0110874819, -0.00397567404, -0.00477011502, -0.0124959666]
30 Sep, 2024
Difference between Difference Engine and Analytical Engine 30 Sep, 2024 The development of computing technology has a rich history, with many inventions and innovations leading to the creation of the modern computer. Two such machines, the Difference Engine and Analytical Engine, were created by the English mathematician and inventor Charles Babbage in the 19th century. While these machines share some similarities, they are fundamentally different in their design, functionality, and impact on computing history. In this article, we will explore the differences between the Difference Engine and Analytical Engine. What is Analytical Engine? Analytical engine Is a fully controlled general-purpose computer which includes automatic mechanical digital computer into it. Any of the calculation set is being programmed with the help of punch cards. It also includes integrated memory and programs flow control and also ALU into it. It is the first general mechanical computer system were Any of the other finite calculations are being carried or performed by it. Advantages of the Analytical Engine Flexibility: Unlike the Difference Engine, the Analytical Engine was designed to be programmable, which gave it a much wider range of functionality and made it adaptable to a variety of tasks. Storage: The machine had a “memory” in the form of punched cards, which allowed it to store and recall data for future use. Potential for automation: The Analytical Engine had the potential to be fully automatic, which would have made it even more efficient and accurate than the Difference Engine. Disadvantages of the Analytical Engine Complexity: The Analytical Engine was even more complex than the Difference Engine, which made it even more expensive to build and maintain. Lack of funding: Babbage struggled to secure funding for the project, which ultimately led to its abandonment. Technological limitations: The technology of the time was not advanced enough to fully realize the potential of the Analytical Engine, which made it difficult to build and test. What is Difference Engine? The word difference engine is derived from the Latin method of divide difference. A difference engine is the type of automatic mechanical calculators that are designed or developed to calculate or tabulate the polynomial function. It can calculate in a way to tabulate the polynomial functions by using the small sets of coefficients. Advantages of the Difference Engine Accuracy: The Difference Engine was designed to be highly accurate, capable of performing complex mathematical calculations with a high degree of precision. Speed: The machine was capable of performing calculations much faster than humans could, which made it a valuable tool for scientific research, engineering, and other fields that required rapid computation. Automation: The Difference Engine was designed to be fully automatic, eliminating the need for manual calculation and reducing the possibility of errors. Disadvantages of the Difference Engine Limited functionality: The Difference Engine was designed to perform a specific set of calculations, and could not be easily adapted to other tasks. Complexity: The machine was highly complex and expensive to build, which made it difficult to produce and maintain. Lack of funding: Babbage struggled to secure funding for the project, which ultimately led to its abandonment. Similarities between the two machines Designed by Charles Babbage: Both the Difference Engine and the Analytical Engine were designed by Charles Babbage, a British mathematician, philosopher, and inventor. Mechanical Computers: The Difference Engine and the Analytical Engine were both mechanical computers, meaning they were designed to perform calculations using physical mechanisms rather than electronic circuits. Shared Some Components: The Analytical Engine was actually designed as an extension of the Difference Engine, so it shared some components with its predecessor. For example, both machines used punch cards to input instructions and data. Used a Similar Design: The design of the Analytical Engine was based on that of the Difference Engine, with some additional features added. Both machines had a central processing unit that used gears and other mechanical components to perform calculations. Never Fully Built: While Babbage designed both the Difference Engine and the Analytical Engine, neither machine was fully built during his lifetime due to lack of funding and technical difficulties. However, some working prototypes have been constructed in modern times based on Babbage’s original plans. Difference between Difference Engine and Analytical Engine Here are the following difference between Difference Engine and Analytical Engine: Analytical Engine Difference Engine It can do the 4 basic mathematical operation. It can only do one mathematical operation. It can perform addition, subtraction, multiplication, and division. It can only perform the addition function. It is a general-purpose computer system. It is a type of simple mechanical computer. It is an intendedly controlled machine. It is created in a way to tabulate the mechanical functions. It is a type of automatic mechanical digital computer. It includes the material expression of any indefinite function. It can perform any calculation sets before it. It is performed to calculate the polynomial functions. In this engine, it is not intended for tabulating the results for a particular function It is intended to tabulate the results of a particular function. It contains the memory and storage which is equal to the CPU. It includes the other operations which are done by the addition operation. The basic arithmetic operations in this are independent of each other. It can perform various calculations that the analytical engine can not perform. It is slower in speed. It is faster in speed. Analytical Engine is not been constructed because of its mechanical complexities. Difference Engines are constructed. It is very heavily detailed and technical in nature. It is very impressive in nature. It does not provide much overview of the designs general-purpose. It helps in solving the various types of complex problems. More complex, designed to handle multiple tasks and logical operations. Less complex, focused on a single task. Analytical Engine designed by Charles Babbage in 1837. Difference Engine designed by also Charles Babbage but in 1820. Some key differences between the Difference Engine and Analytical Engine include: Purpose: The Difference Engine was designed to calculate polynomial functions, while the Analytical Engine was intended to be a general-purpose computer capable of performing a wide range of calculations. Complexity: The Analytical Engine was a much more complex machine than the Difference Engine, with more advanced features like conditional branching and memory storage. Input/output: The Difference Engine had no input/output capabilities, while the Analytical Engine used punched cards for input and output. Automation: The Difference Engine was designed to automate the process of creating mathematical tables, while the Analytical Engine was intended to automate a wider range of tasks. In summary, the Difference Engine and Analytical Engine were two early mechanical computers designed by Charles Babbage. The Difference Engine was a large calculator designed to compute polynomial functions, while the Analytical Engine was a more advanced general-purpose computer that used punched cards for input and output, and was capable of performing a wide range of calculations. Conclusion The Difference Engine and the Analytical Engine were two mechanical computing machines designed by Charles Babbage in the 19th century. Despite their differences in complexity and capabilities, the two machines shared several similarities in design and purpose, including the use of punch cards and a system of gears and wheels to perform calculations. The legacy of Babbage’s designs can still be seen in modern computing, and his pioneering work continues to inspire generations of computer scientists and engineers. FAQs: Difference Engine and Analytical Engine What is the Difference Engine? The Difference Engine is a mechanical calculator designed by Charles Babbage in the early 19th century. It was intended to compute and print mathematical tables using a method called finite differences. What is the Analytical Engine? Analytical engine Is a fully controlled general-purpose computer which includes automatic mechanical digital computer into it. Any of the calculation set is being programmed with the help of punch cards. It also includes integrated memory and programs flow control and also ALU into it. How do the Difference Engine and Analytical Engine differ in functionality? The Difference Engine is specifically designed for polynomial calculations and generating tables, while the Analytical Engine is capable of performing any mathematical operation and could be programmed for various tasks. What mathematical method does the Difference Engine use? This mathematical approach involves approximating mathematical functions using polynomials, creating tables of differences between consecutive values of the function, and using these differences to interpolate new values. Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System/Introduction of System Call/How much Stack size required for BIOS interrupt call?/Difference between Interrupt and Polling/Difference between Difference Engine and Analytical Engine
https://www.geeksforgeeks.org/difference-between-difference-engine-and-analytical-engine?ref=asr10
PHP
Difference between Difference Engine and Analytical Engine
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, Difference between Difference Engine and Analytical Engine, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Difference between Interrupt and Polling, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, Introduction of System Call, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How much Stack size required for BIOS interrupt call?, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.018003203, -0.0127032725, -0.023667505, -0.000596242258, 0.0072211558, 0.0214481577, -0.000738574367, -0.00463743974, -0.00173696957, 0.0372982658, 0.00994565152, -0.00439728657, 0.00462915841, -0.0252409205, -0.0120656239, 0.023915939, -0.00937425252, 0.00638476061, 0.0155022983, -0.0316505246, 0.0024532883, -0.0377951339, -0.0592598543, -0.0472687595, -0.0393851139, 0.025058737, -0.0281227585, -0.0114942258, -0.00419646874, 0.0150054293, 0.0287521258, -0.0118751582, -0.0109890755, -0.020885041, 0.00503907492, -0.0274933912, 0.0140448175, -0.0295802392, 0.0113948518, -0.0131752975, 0.0445194207, 0.0334723778, -0.00396252656, -0.00590445427, -0.0135727916, 0.0120739052, -0.0141276289, -0.0275099538, 0.0259696618, -0.00059831253, -0.00896019582, 0.00388385565, 0.0547217876, 0.0611479543, 0.0012225036, 0.0134568559, -0.0128192082, 0.000325293629, 0.0106743919, -0.0244956184, 0.037397638, -0.0367351472, -0.0143926255, 0.00773872714, 0.00842192117, -0.00260234904, -0.0200403649, 0.0335551873, 0.0508462116, -0.0142684076, -0.018698819, 0.00605765544, -0.00184358924, 0.0382257514, 0.020437859, 0.00785466377, 0.0346151739, 0.0271952711, -0.000891257951, 0.00472439174, 0.00578851858, 0.0212990977, -0.0337373726, -0.0229553264, 0.0319652073, 0.00252574845, -0.0168935303, -0.0348801725, 0.0609823316, 0.00469540758, -0.00601625, -0.00440970808, 0.0398157313, -0.0427638181, -0.040875718, 0.019891303, 0.0214315951, 0.00121422252, -0.0155437039, 0.0124962432, -0.00085865095, 0.0395838581, -0.0151793333, -0.0176388323, 0.0215144083, -0.0291993078, -0.00237875804, 0.00253195921, 0.0511112101, 0.0356420353, -0.0268971492, -0.0203053597, -0.0505149662, 0.0144091872, -0.0190135017, -0.0118834395, 0.0182682, -0.0493556075, 0.0227565784, -0.0253899824, 0.0317167751, 0.0142518459, 0.00143056735, 0.0370995179, -0.0261518471, 0.0348139219, 0.0036954598, -0.0518068261, 0.00455048773, -0.0135810729, -0.0113865705, 0.0434263088, 0.0128688952, 0.0226572044, 0.0407763459, -0.0160074476, 0.0148066822, 0.0290336851, -0.0184172597, 0.0290833712, -0.0047906409, -0.0317002125, -0.0142352832, -0.017556021, 0.00171005586, -0.0294311792, -0.0154112056, 0.0770477504, -0.018698819, 0.00392526155, -0.0579348691, -0.0539930463, -0.0236012544, -0.0137135712, 0.00143884844, -0.0163635369, -0.0306899138, 0.0146244969, -0.0087283235, -0.017804455, -0.0120656239, -0.0147984009, -0.0246943664, -0.00276797172, 0.00213239412, 0.0236840658, 0.0247274898, 0.0268309, -0.0336214378, 0.0325945765, -0.0168438423, 0.0311370939, -0.0133492015, 0.0103597092, 0.0359070338, -0.00431033457, -0.00168831786, -0.00794989616, 0.0139454436, -0.00963096879, -0.0667791292, -0.0414388366, 0.0362051539, 0.0317002125, 0.0667460039, 0.0191294383, 0.0308224112, 0.00563945761, -0.0361057818, 0.00418611756, 0.0256715417, -0.00604109326, 0.0479643755, 0.0637979209, 0.0112375095, 0.0247937404, -0.0531649329, 0.0212162863, -0.0234521944, 0.0108400155, -0.0186325703, -0.0530655608, -0.0100450255, 0.044353798, -0.00448837923, -0.0228228271, -0.00720045296, 0.00621085661, 0.022624081, 0.00878629182, -0.0102189295, 0.0315511525, -0.00818176847, -0.0327602, 0.000634024967, 0.0159660429, -0.0048154844, -0.0167361889, -0.000710625493, -0.0492562354, -0.0106412675, 0.0084012188, -0.00908441283, -0.0134154502, -0.0196263064, -0.039484486, 0.0127032725, -0.00184565957, 0.0180197656, -0.0146824652, -0.00506805908, 0.0301764812, -0.0133740446, 0.0109890755, -0.0660503879, -0.00316753681, 0.0142104402, -0.023120949, -0.0448837914, 0.0378282592, -0.0119745312, 0.0241312478, -0.0216469057, -0.0178210177, -0.00287976721, -0.0177216437, 0.0413063355, 0.00775529, -0.00478235958, -0.00734537328, 0.0572392531, -0.00684436411, -0.0134568559, -0.000471248757, -0.0362051539, 0.0167113449, 0.0399482287, 0.0127446782, 0.000174680346, -0.019295061, 0.00621499727, 0.0109145455, -0.022375647, 0.0325448886, -0.0395176113, 0.0199078657, 0.0148066822, -0.0252906084, -0.0302096065, 0.00391491, 0.0346483, -0.0593923517, -0.00963924918, -0.000838465639, -0.0302592944, -0.021829091, -0.0438238047, 0.0448837914, 0.0263671558, 0.0136887282, -0.00108897022, -0.0404450968, 0.0295305531, 0.00785052311, -0.0125045246, 0.00842606183, -0.0324289538, 0.00427720975, -0.0247937404, -0.0210175384, -0.00473267259, 0.00305574154, 0.0147155896, 0.0516412035, -0.00216344837, 0.0187319443, -0.00114797335, -0.0456787795, -0.00745302811, -0.0166202523, 0.0132498275, -0.00978831, 0.0352114178, 0.000977692311, -0.0218456537, -0.0280730724, 0.031435214, 0.0207691044, 0.0253237337, -0.0165540036, -0.00491899857, 0.0234356318, -0.016438067, -0.00592929777, 0.0117178159, 0.0176222697, 0.0765177533, 0.00842192117, -0.0402463526, -0.00536618, -0.0101940865, 0.00416955492, -0.0445856713, 0.0271621458, 0.0226075184, -0.0344826765, -0.0029998438, -0.00688577, -0.0104176765, -0.04544691, -0.0278412, -0.0382920019, 0.021282535, 0.00725014, 0.00475751609, -0.0640629157, -0.00500181, 0.0542580448, 0.00136224786, 0.00591273559, 0.00394803472, 0.0632348, -0.0488256142, 0.00271828496, -0.00826043915, -0.0130262366, -0.0417369567, 0.0138295079, -0.00573469093, 0.000260597182, 0.00178148074, 0.00661663245, 0.0237503164, -0.0189969409, 0.0011790276, 0.0119993752, -0.00110242702, -0.0407432206, -0.00733709196, 0.0163883809, -0.016065415, -0.0257874765, 0.0138874752, 0.03560891, -0.0280565098, -0.0166202523, 0.00969721749, 0.0162724443, 0.00862895, 0.00083484262, -0.021232849, -0.00183116761, 0.00305160088, -0.0293649305, -0.0174235236, 0.00889394712, -0.0103762709, -0.0079457555, 0.000700791657, -0.00371616264, -0.052568689, 0.0239325017, 0.0297458619, 0.0370663926, 0.00720045296, -0.0331576951, -0.00884426, -0.0206034817, 0.0141607532, 0.0146410596, -0.0265824664, 0.00525852526, -0.00225040037, 0.00351120438, 0.0102686165, -0.0320645832, 0.00878629182, -0.0067201471, 0.03878887, -0.0508462116, 0.0520718209, 0.0012473471, -0.0182847623, 0.0433931835, -0.00443041092, 0.00778013328, -0.0392526127, 0.00941565912, -0.00933284685, 0.025406545, -0.00496040424, -0.019841617, -0.0220444, -0.00863723084, 0.0173572749, 0.00616945093, -0.0383582488, 0.018500071, -0.0259199757, -0.00714248512, -0.0233859457, 0.0243962444, -0.0107820472, -0.0132415462, 0.00736193545, -0.0113451649, -0.0197919291, -0.0172247756, 0.00683608279, 0.0131256105, -0.0367351472, -0.0151213659, 0.00656694593, 0.0357082859, -0.00529579027, -0.0307892859, 0.0182847623, 0.020885041, -0.00134361535, 0.000879353785, 0.0252243597, 0.000975104515, -0.00816934649, -0.0143512199, -0.0545892902, 0.0426313207, -0.0698928386, -0.00993737, 0.00137259928, -0.0249759257, -0.0269302744, -0.0123223392, -0.0383251272, -0.00694787828, 0.0540592968, -0.0126618668, 0.00560633326, -0.0323958285, 0.0156347957, -0.00424822606, 0.0100615881, 0.0523036942, 0.0183675736, 0.00201438786, 0.0370332673, 0.0106081432, -0.00501009123, -0.0134899803, -0.0272780824, -0.00130117452, -0.00630194927, -0.0108482959, 0.0268971492, 0.0439231768, -0.0105170505, -0.00963096879, 0.0424988233, -0.00555250561, -0.00816934649, 0.0094073778, 0.0348139219, -0.0119000012, 0.0302924179, -0.0614129491, -0.0359732807, 0.00492313923, 0.044552546, -0.0112209478, -0.0123637449, 0.0296299271, -0.00891050883, 0.00359401572, -0.037000142, 0.00763935363, 0.00296671921, -0.00139433728, -0.022723455, 0.018947253, -0.0125128059, 0.0538274236, -0.0101443995, -0.0170591529, -0.0502830967, 0.0436250567, -0.00149785157, 0.0296630505, -0.0050514969, 0.0576698743, 0.0134982616, -0.0165043157, -0.00390869891, -0.0125045246, -0.0222597104, 0.0484943688, 0.0105998619, -0.0119662508, -0.0074199033, 0.0139702866, -0.0149143375, 0.0070472518, 0.0304746032, 0.00332073797, 0.000319341547, 0.0138295079, 0.016959779, -0.00338284648, 0.0345820487, 0.00549453776, -0.000229931087, -0.0115604745, 0.00939081516, 0.0238000024, 0.0180528909, -0.0104011148, 0.00388178532, 0.00811552, 0.036304526, 0.0272780824, 0.0105501749, 0.0120490622, -0.0445856713, 0.0287355632, 0.00517571392, -0.00613632658, -0.0255059171, -0.0266155917, 0.0272283964, -0.00483204657, 0.00541172642, -0.019444121, 0.0136390412, -0.0300605465, 0.0247771777, -0.000200558919, -0.0342508033, 0.00509290257, -0.000651104783, -0.0290833712, 0.0307727251, -0.0151876146, -1.2518758e-05, 0.000111407244, 0.00364991347, 0.0312364679, -0.0180694517, -0.0390207432, 0.0213156603, 0.018152263, -0.0447844155, -0.0116101615, -0.00325862947, 0.00144816469, 0.00955643784, -0.0159660429, -0.0171585269, 0.0206531677, 0.0251912344, -0.0215144083, 0.00445525441, 0.0258702878, -0.00822317414, -0.00537446141, -0.00207960187, -0.0208022296, -0.0045297849, -0.0131918592, -0.00611148309, -0.00430205325, -0.00431861542, -0.0170757156, -0.00687748846, 0.0275596417, -0.00539102359, 0.00628952729, 0.00766833778, 0.0230547, 0.00304124947, -0.0166285336, -0.0204544216, -0.0142766889, 0.0128440512, -0.00699342461, 0.0507799648, 0.00753583945, -0.0189141296, -0.00921691116, -0.0159826037, 0.00198954437, -0.00957300048, 0.00934940949, -0.0156679209, 0.0261849724, 0.0208187923, -0.0196759943, -0.0177050829, -0.0295802392, 0.0213156603, -0.00469540758, -0.0242306218, -0.0130842049, -0.0153283942, -0.0296961758, 0.0112375095, -0.00387557456, 0.0100781498, 0.0164960343, 0.0116432859, -0.0174400862, 0.00686092628, -0.0152952699, 0.00362507, -0.0112209478, -0.0235018823, 0.0165954083, 0.0316008404, -0.0140945036, -0.0137881022, 0.0251746718, 0.0114776632, -0.0462087728, -0.0456787795, 0.0343833, 0.00165001757, 0.105269879, 0.00367475674, 0.0462418981, -0.0177878942, 0.0351782925, 0.0253568571, 0.0107986098, -0.00982971583, 0.00779669546, -0.0011603951, 0.0231706351, -0.0171585269, -0.0485606194, 0.0259365365, -0.022425333, -0.00207960187, 0.0215475317, -0.0101029938, -0.00447181659, 0.0164297856, 0.0194606837, 0.0104922075, 0.00182909728, 0.0210672263, -0.000798095076, 0.0180528909, 0.0230381377, -0.0238496903, -0.0448175408, 0.00585476775, 0.0269137118, 0.00517985458, -0.0180363283, 0.00674085, 0.0203053597, 0.00562289543, -0.0191294383, -0.0189638156, -0.0274933912, -0.0109228268, 0.00177526986, 0.00315097463, -0.0024512182, -0.0568086356, 0.0122643718, -0.0300771091, -0.0153283942, 0.00846332777, -0.00858754478, 0.00573883159, 0.0159743242, 0.0216634683, -0.00709693879, -0.0292489938, -0.0122560905, -0.021580657, 0.00695201894, 0.0337373726, -0.00782153849, -0.0355757885, -0.00201852852, -0.0301267952, 0.0142932516, -0.000588996219, -0.0265659038, 0.0146741839, 0.0247771777, 0.00831840746, 0.020288799, -0.0240484364, 0.0104756448, 0.00333523, -0.0209512897, 0.00577195594, -0.0119828125, -0.000645411492, 0.0155022983, 0.00688991044, -0.0173903983, -0.000186584482, -0.00516329193, -0.0287686884, -0.0120159369, 0.00320894271, -0.0053413366, -0.0201563, -0.00840535946, 0.00561047392, 0.0171254016, 0.0077677113, -0.00876972917, -0.0172579, -0.0283215065, 0.0165540036, 0.00397080788, -0.00395217491, 0.00260648946, 0.0166036896, 0.0220940877, -0.0137549769, -0.019642869, 0.0137466956, 0.00691889413, 0.00234149303, 0.0293980539, -0.018400697, 0.0224418957, 0.0100201825, -0.020636607, 0.0164215043, -0.00180011324, 0.020288799, -0.0229553264, 0.0106743919, -0.0172247756, 0.00255887304, 0.0539930463, -0.0134320129, 0.00876972917, -0.00225040037, -0.00403291639, 0.000424149737, -0.0176719576, -0.016413223, 0.0127363969, 0.00252367812, 0.0132001406, 0.0249759257, 0.0306071024, 0.0609492064, -0.0112292292, -0.0024967643, -0.0148149636, 0.00176802382, -0.018847879, -0.00569328526, 0.0167113449, -0.0188313182, 0.0540261716, -0.0118337525, 0.00423994474, 0.0170094669, -0.00324620772, -0.00972206052, -0.00847988948, 0.0125459302, 0.00453806575, -0.00267687929, 0.0468712635, 0.0173407122, 0.0331576951, -0.0181357022, 0.00230629812, -0.0204544216, -0.0358739085, -0.0449169166, -0.0384907499, 0.0294974279, -0.00906785112, -0.0155437039, -0.0279571358, 0.0233031344, -0.0509787127, 0.00350706372, -0.00063247222, -0.0172247756, 0.0148563692, 0.0131421722, 0.0257046651, -0.0123057775, 0.0202722363, 0.0249096751, 0.0251912344, -0.00417990657, 0.0350126699, 0.00387764489, 0.0319155231, 0.00241395296, -0.017108839, -0.00340561965, -0.00828114245, -0.0120325, 0.0250090491, 0.0102023669, -0.0149723049, 0.0506474674, 0.00547797559, 0.0379276313, -0.0120904678, -0.0202556737, 0.00703483028, -0.0207525417, 0.0246778037, -0.0115273502, 0.00471196976, 0.016611971, 0.00619843509, -0.00818176847, 0.000971999078, 0.0169763416, -0.00055121351, 0.0214647204, 0.00898503885, 0.0150385546, -0.00148646499, 0.0315180272, -0.0248103011, 0.00496040424, 0.0409750901, 0.00343046314, 0.0252077971, -0.0244128071, 0.0150385546, 0.00922519248, -0.0188975669, -0.019891303, -0.000586408365, 0.0235350057, 0.00298535172, 0.0054282886, -0.0222928356, 0.0354432873, -0.0138957566, 0.0100119011, 0.0108068902, -0.00188913557, -0.0292324312, -0.0180694517, -0.00469540758, 0.0291164964, 0.0142518459, 0.0146493409, 0.00721701561, -0.0307064746, -0.00237254729, 0.0258206017, -0.0133243576, 0.0110884495, 0.00595828192, -0.0201728623, -0.043161314, 0.00915894285, 0.0184669476, -0.00184565957, -0.0181853883, 0.0273443311, -0.018152263, 0.0125045246, 0.00342632248, -0.0158583876, -0.00956471916, 0.00874488614, -0.0173241496, 0.00478650024, -0.0132167032, -0.00710936077, -0.00266859797, 0.0125045246, 0.0314186551, -0.00710936077, -0.00717561, -0.00593343843, -0.0245784298, 0.0307561625, -0.0156596396, -0.00207235594, 0.00117178157, -0.0459106527, 0.00189431128, 0.0239325017, -0.0167113449, 0.0316836499, 0.0128109269, -0.0195269324, -0.0286693145, 0.000888670096, -0.0344495513, 0.0133492015, 0.00925831683, -0.00898503885, 0.00795403682, -0.03719889, 0.0122809336, -0.00467884541, 0.00875316747, -0.0258702878, -0.025058737, -0.00890222751, 0.0215309691, 0.0115273502, -0.00729568629, -0.0282883812, -0.0108234528, -0.0515087061, 0.0293980539, -0.0453475341, -0.0472025089, 0.00278453412, -0.00530821225, 0.0232368857, 0.000761865056, -0.0167361889, -0.0319652073, 0.00364784314, 0.0583654903, 0.00735779479, 0.0168438423, 0.00714662578, -0.019444121, -0.000155659596, 0.0103431465, 0.0159329176, -0.0416044593, -0.00794989616, -0.019493809, 0.00161585782, 0.0143926255, 0.00654624309, 0.00140882935, 0.000280523702, 0.000958024641, 0.0372651406, -0.0332570672, -0.00416955492, 0.00302261696, -0.0146907466, 0.00197091186, -0.00370167056, 0.00752755813, 0.0353770405, -0.00160447136, 0.00295429747, 0.00388799631, -0.0380601287, -0.0207525417, -0.0068070991, 0.00456705, -0.00619843509, -0.0179369543, -0.00847988948, 0.00693545677, 0.0277749505, -0.0129268626, 0.00428963173, -0.019593183, -0.0118254712, 0.0201728623, -0.0193778723, -0.00273898779, -0.00414471189, -0.00307437405, -0.0257709138, 0.0182185136, 0.0136638843, 0.0016272444, 0.00467056409, -0.00978831, -0.0370332673, -0.0421013273, -0.0252409205, -0.0082066115, -0.00787122548, 0.047533758, 0.016587127, -0.00692717545, -0.00852129515, 0.0256715417, -0.0253568571, -0.0224750191, 0.00520055741, -0.00399151072, -0.00291496213, 0.0185497589, -0.026102161, -0.019841617, -0.0178210177, -0.00731638912, -0.00311370939, 0.0103514278, -0.0119910939, -0.0075689638, 0.0242968705, 0.0216965917, 0.00780497631, -0.00818176847, -0.00946534518, 0.00205475837, -0.0163552556, 0.0244293697, 0.0169266555, 0.00981315318, -0.0140613792, 0.0174400862, -0.00365612423, -0.0451487862, -0.000430619402, 0.00580922142, -0.00751099596, -0.00385901215, 0.00763107231, 0.00289632939, 0.0293649305, -0.00625640294, 0.0208519157, 0.0160074476, 0.00425650692, 0.00142021594, 0.00213860488, 0.00982971583, 0.017754769, -0.000836395368, 0.0132498275, 0.0168438423, -0.0168024376, 0.000806893804, -0.00243465579, 0.021232849, -0.0211997237, -0.00580922142, 0.0282386951, -0.0301599205, 0.0208519157, 0.0120739052, 0.00144609448, -0.0086620748, -0.00235391478, 0.0256715417, -0.00088038895, -0.0283215065, -0.00891050883, -0.0317995846, -0.035112042, 0.00857098214, -0.0123306205, -0.00127219048, -0.0127198342, -0.0106578302, 0.00258785696, -0.00673670927, 0.0271787085, 0.0153532373, -0.0121235922, -0.0326939486, -0.00924175512, 0.0117840655, -0.0463412702, -0.0184669476, -0.00833911, 0.0103183035, -0.00650897762, 0.00310335797, -0.0125624929, -0.0168686863, 0.00218208088, 0.0993737057, -0.025307171, 0.0151379276, -0.0316339619, -0.0134817, 0.00690647261, -0.00658764876, 0.0277418271, 0.0139123192, -0.022971889, 0.0165540036, -0.00988768414, 0.0239987504, 0.0269137118, 0.00598726561, 0.00520469807, 0.00105066993, -0.0096475305, -0.00466228323, -0.0154526113, -0.00142642669, 0.0119082825, 0.0389213674, -0.00435174024, -0.0129020195, 0.00305367121, -0.00259406772, 0.00896019582, 0.00282801013, -0.0146659026, 0.0212162863, -0.0131504536, 0.00770146213, -0.000159800169, 0.00368924881, 0.0172744617, -0.0056643011, 0.000144531805, -0.0262512211, -0.0114114136, -0.00746959029, -0.0195103716, -0.0235350057, 0.0404782221, 0.023468757, -0.000406811101, -0.0277749505, 0.0211997237, -0.0113700079, 0.0129185822, -0.0112871965, 0.0116515672, -0.00452150358, -0.0273443311, -0.00953159481, 0.0291164964, 0.00646757195, -0.00651311828, 0.00570156658, -0.0285036918, 0.000923347368, -0.00983799715, -0.00025037516, -0.0191791244, -0.022375647, 0.0068733478, -0.0172744617, -0.00637233909, -0.0138957566, -0.0159494802, 0.0044428329, -0.000411210465, 0.0105833, 0.000562600093, -0.00251746713, 0.00079343695, 0.0186656937, -0.00909269415, 0.00896847714, -0.00489829574, 0.00044097082, 0.0149143375, 0.00925003551, 0.024363121, -0.00093990966, -0.0277418271, 0.000630919531, 0.0073081078, -0.0106164245, -0.0113782892, 0.0251249857, -0.020090051, -0.00401221355, -0.020885041, 0.0176057089, -0.00946534518, 0.00734951347, 0.0353439152, 0.0134651372, -0.0180528909, 0.00270172255, 0.0307230372, -0.0208353531, -0.0158004202, -0.0132415462, -0.00140779419, 0.0124382759, 0.00134258019, -0.020189425, 0.00750271464, 0.0238331277, -0.00448423857, 0.0104093961, 0.0189803783, 0.0454137847, -0.0352445394, 0.0296299271, -0.000733398658, -0.00799958315, 0.00163552561, 0.00845504645, 0.0015837684, 0.0251912344, -0.036304526, 0.0048154844, 0.0199741144, 0.0127860839, -0.00932456646, -0.0076849, -0.019940991, -0.0143512199, 0.0060369526, -0.0120821865, -0.00211583194, -0.0306567885, 0.025307171, -0.0163718183, 0.0144340312, -0.0021903622, -0.00554836541, -0.023220323, 0.0072211558, 0.019195687, 0.00438486459, -0.000171186737, -0.00653382111, -0.0214978456, 0.0091341, 0.00455462839, -0.0262015332, -0.0238331277, -0.0167775936, 0.0115190689, -0.0128274895, 0.0129599879, -0.0320811458, -0.00101133448, 0.0215475317, -0.00537446141, -0.00179804303, 0.0157672949, 0.0111712608, 0.00161896332, -0.00372858439, -0.0153698, -0.00404119724, 0.00218415121, 0.0169018116, 0.00715490663, 0.0101940865, 0.0190135017, -0.0132001406, 0.00421510125, -0.0120904678, 0.0334723778, 0.0188313182, 0.0117757842, -0.0108317342, -0.00549453776, 0.0126287416, -0.0238000024, -0.0256715417, -0.00911753718, 0.024065, 0.00773872714, -0.0129682682, -0.00490657659, 0.0135893542, 0.0113617275, 0.00462915841, -0.0117923468, -0.00216137804, 0.00422131224, -0.0270296484, 0.0261849724, 0.0185497589, 0.0102520538, -0.0281061959, -0.0109890755, -0.0225412697, -0.0257709138, 0.0137963826, -0.00739091961, -0.00230008713, 0.0143843442, -0.0150551163, -0.0470700115, 0.0140365362, -0.00768904062, -0.00355261, -0.00734951347, -0.0213487837, 0.0102189295, -0.0126204602, -0.00760622928, 0.00737435697, 0.00705967378, -0.0312364679, -0.0115356315, -0.0160736963, -0.00843848381, -0.0172744617, -0.00519227609, -0.00144505932, 0.021580657, -0.0267480891, 0.0297458619, 0.00246363971, 0.00589617342, 0.00302882772, -0.0610817038, 0.0137715396, 0.0156927649, 0.00375342765, 0.0156099526, -0.0268640257, 0.0249096751, -0.0409750901, -0.0241974983, 0.0167941563, 0.00325034838, 0.00350499339, -0.0111961039, 0.00789192878, -0.0102106482, 5.42479502e-05, 0.0198250543, -0.0118585955, -0.0205041077, 0.0175228976, -0.0138460696, -0.015990885, 0.0184835102, -0.0365364, 0.0111132925, -0.0039832294, 0.0318658352, 0.0292158704, -0.0262512211, -0.0323130153, 0.00800372381, 0.00692303479, 0.000345996465, -0.00660007028, 0.0016872827, 0.0187650677, -0.0124962432, -0.00543657, -0.0124631189, -0.0118585955, -0.0237006284, 0.0136059169, -0.00371202198, 0.00899332, 0.00209719921, -0.0125707742, -0.000329692964, 0.00692303479, -0.025307171, -0.00459603406, -0.022872515, 0.0400476046, 0.0154526113, 0.000269137119, -0.00838879682, 0.00215930771, -0.0236509424, -0.00859582517, 0.0306402259, -0.00775943045, 0.0233362578, 0.00648827478, -0.00534961792, 0.00543242926, -0.0146990269, 0.042962566, 0.00925831683, -0.0152538642, 0.0147404335, 0.0181688257, 0.00684022345, 0.0127281155, -0.0111795422, 0.0110967308, 0.0110884495, -0.0208684783, -0.000252316066, -0.0197091177, -0.0117260972, 0.00244293688, 0.0135148242, -0.0350457951, 0.0174400862, 7.55007277e-05, -0.00580094, -0.0136307599, 0.0255390424, -0.00170591532, 0.0149474619, 0.000420526747, 0.00159515499, 0.00787536614, 0.0196925569, -0.0143098133, -0.0108317342, -0.00552352192, 0.0249428, -0.00320687238, -0.00209823437, 0.0111712608, -0.00921691116, -0.0269799605, -0.0227897037, 0.0114031332, 0.00679881778, 0.0105667375, -0.0118668769, -0.00195434946, -0.00322343456, -0.0167196263, -0.0387557447, 0.0405113474, -0.019493809, 0.00535375858, 0.018152263, -0.0153035512, 0.0157093275, 0.00771388412, -0.0230878238, 0.0337704979, -0.0227400158, 0.0195766203, -0.0119331256, 0.0113865705, -0.00308472547, 0.000433983601, -0.0152290203, -0.0142352832, -0.00335800322, 0.00411779806, -0.0158583876, -0.0049686851, -0.0207194183, -0.0169514976, -0.00275140954, -0.0281393211, -0.0196263064, -0.00476579741, 0.025307171, 0.024263747, -0.0137135712, 0.00104342389, -0.0063474956, 0.0208187923, -0.00904300716, -0.0194606837, -0.00961440615, 0.00376170874, 0.00753169879, -0.00223176787, -0.0108897015, 0.00390041806, 0.0075068553, -0.0242968705, -0.00918378681, 0.00423373375, -0.0170591529, 0.0115604745, 0.00623984076, 0.0189803783, -0.0191791244, 0.00604109326, 0.0141855963, 0.0150799602, -0.00969721749, -0.0185828824, -0.0495212302, 0.00342011172, -0.0201728623, 0.00360022648, 0.000457015529, -0.0132332649, -0.00934112817, 0.0107157975, 0.0118668769, 0.0156762023, -0.00567672309, -0.0249096751, 0.019444121, -0.00472439174, -0.00484860875, -0.0123223392, -0.00758966664, -0.0266652778, -0.0145416856, 0.00942393951, 0.0175063349, 0.0329755098, -0.00773458695, 0.0279405732, 0.0048154844, 0.0273940191, 0.0157590136, -0.00430619391, -0.0126121799, -0.0224915817, 0.0200072397, -0.017307587, -0.0149971489, -0.0381263793, 0.0191294383, -0.000605040928, -0.0284374431, -0.00766833778, -0.0183675736, 0.0218125284, -0.0156762023, 0.000302520464, -0.0108979829, -0.00578437792, 0.00974690448, 0.00430619391, -0.0251415484, -0.0084095, 0.00976346619, 0.0266818404, 0.00886082184, -0.000334092329, 0.0114196949, -0.00553594343, 0.00183737837, -0.00992080849, -0.000536203966, 0.00879457314, -0.0139537249, -0.00327519164, 0.0118089085, -0.0286527518, -0.00267480896, 0.00202059862, 0.00946534518, 0.00187567866, -0.0271621458, -0.00711350096, -0.000434501184, 0.00226489245, -0.000774804386, 0.0184835102, -0.00359401572, 0.0126121799, -0.0144671556, -0.0155437039, -0.00311370939, -0.00642616628, 0.0185497589, -0.00624398142, 0.00918378681, -0.00092697033, -0.016587127, -0.0116598485, -0.00372651406, 0.00858754478, 0.00240567187, 0.0259531, 0.0129848309, 0.069362849, -0.00635163626, 0.0021655187, 0.00374721689, 0.00700584613, 0.00946534518, 0.0105087692, -0.00759794796, -0.0186325703, 0.00609492045, -0.00287562655, 0.00625226228, -0.00734123262, -0.017754769, 0.00290047, 0.0127943642, 0.0103845522, 0.000166657992, 0.0281061959, 0.00758966664, 0.0109807942, -0.000431654538, 0.00247399113, -0.00968065485, 0.0145913726, 0.00611148309, -0.0193447489, -0.0158501063, 0.0142932516, 0.0156016722, -0.00607421761, 0.0140862232, -0.0127115529, -0.00899332, 0.000951813767, 0.0212162863, -0.00880285446, 0.0187153816, -0.00486103026, -0.00147714873, 0.0132332649, 0.00133015844, 0.00834325049, -0.00441384874, 0.0272449572, 0.00161689299, 0.000891257951, 0.00083484262, -0.00264375471, -0.0289011858, -0.00672842795, 0.00513430825, -0.00973862316, 0.0130262366, 0.00727912411, -0.0133409202, 0.0409750901, -0.00154960877, 0.00510946475, -0.00829770416, 0.00101702777, 0.0129185822, 0.0173738357, 0.00433517806, -0.00619429443, 0.000398271193, -0.00179493753, -0.00708865793, 0.0048775929, 0.0232700091, 0.00279695587, -0.0019264007, 0.0139951305, -0.0224584583, -0.00445111375, 0.0167361889, -0.000652657531, -0.00374307623, -0.000100214762, 0.0123885889, 0.00348843122, -0.0081403628, -5.61241468e-05, -0.00874488614, -0.018947253, -0.0251581091, -0.0021903622, 0.0121070296, 0.00602453109, 0.00954815652, 0.0263837185, -0.0159991663, -0.000843123766, -0.0150551163, 0.0160240103, -0.00361264823, -0.0060617961, 0.0022338382, -0.0142021589, 0.0117095355, 0.00751513662, 0.0134320129, 0.0101029938, -0.0297293011, 0.00398529973, 0.00183323782, 0.0171254016, -0.00358780497, 0.000355053984, -0.0153366756, -0.00921691116, -0.00480720308, 0.0135810729, 0.00341183064, -0.00928316079, -0.00104290631, 0.00431033457, -0.000425443694, 0.000527146447, 0.0012608039, -0.00939081516, -0.0318823978, 0.0108234528, -0.00755240163, -0.0221603364, -0.0122643718, -0.0289839972, 0.000625226239, 0.00781739783, -0.00468712626, 0.000344961329, 0.0102686165, -0.0128274895, -0.00375549798, -0.00578851858, 0.000874695659, 0.00233735237, 0.0154112056, -0.00114072731, 0.00644272845, 0.00464572059, -0.00738263829, -0.0123389019, -0.0222597104, -0.00229801703, 0.0204544216, 0.0116267232, 0.0012825419, 0.021481283, 0.000795507221, -0.00423373375, -0.0357082859, -0.00826458, -0.00394596439, -0.00359194539, -0.0197588056, 0.000458050665, -0.00183530815, -0.0147073083, -0.00170384499, 0.0103928335, -0.0220112763, -0.0145168426, 0.017804455, 0.0101112742, -0.00804098882, 0.0165540036, 0.0168935303, -0.0029998438, -0.0102106482, -0.0372651406, -0.00244914787, 0.00197401736, -0.00221520546, -0.0122726532, 0.00179079699, 0.0189969409, 0.0144009059, 0.017903829, -0.0206200443, 0.00301433564, 0.00809481647, 0.00371202198, -0.00660007028, -0.00770974346, -0.0160322916, 0.00568500394, 0.00548625691, 0.0156182339, -0.0227897037, 0.0102603352, 0.00963924918, 0.0136970095, -0.000765488076, 0.00570156658, -0.00346979848, -0.0173407122, 0.021729717, -0.0116515672, 0.00987940282, -0.0191294383, 0.0052543846, 0.0235846937, 0.00942393951, 0.0197091177, 0.0136887282, 0.00756068295, -0.00508048059, -0.00579265878, -0.0164049435, -0.0382920019, -0.0255721677, 0.0219119024, 0.00476579741, -0.00322136423, 0.0212990977, -0.000801718095, -0.0102686165, 0.00455462839, 0.0113700079, -0.00710107945, -0.0216965917, 0.0107903285, 0.0142518459, 0.0125707742, -0.0203716103, 0.00440142723, 0.00700170593, 0.0108814212, 0.0109973568, 0.00763107231, -0.00898503885, 0.015717607, 0.0117012542, 0.00782982, -0.00530407159, 0.0144340312, -0.00381760648, -0.00361471856, -0.0182185136, 0.0177216437, 0.00207753154, 0.00350292306, 0.00104187115, 0.000888670096, -0.0221603364, 0.0176885203, 0.0126784286, 0.000727705366, -1.54947938e-05, 0.00221313536, -0.00361885922, -0.00355053972, 0.00705553312, -0.0103597092, 0.00871176179, -0.00114486786, -0.00221934612, 0.00283422088, -0.0217462797, 0.000544485112, 0.00899332, 0.0013912319, 0.00245535863, 0.00180528895, 0.00573055027, -0.00621085661, 0.00230215746, -0.00584648643, 0.0159660429, -0.0118834395, -0.0141773159, -0.00266859797, 0.00937425252, -0.0063474956, 0.000538791821, -0.00259199762, -0.00805755146, -0.00272242539, 0.00751513662, -0.0129931122, 0.0197091177, 0.0130759235, 0.00227110321, 0.000894880912, 0.0102520538, 0.00382174714, 0.0153615186, -0.0054282886, 0.0110056382, 0.0175228976, -0.0143098133, 0.0047906409, 0.00546969427, -0.0138046639, 0.00607421761, -0.0199741144, -0.0149723049, 0.0142766889, -0.00662491377, -0.00215723761, 0.00390248816, 0.0245618671, 0.00524196308, 0.0103348652, -0.0181853883, 0.031435214, 0.00484032743, -0.00823145546, 0.0214150343, -0.00216965936, 0.00236012554, 0.0110387625, 0.0107986098, -0.0136804469, 0.00594586, -0.00943222083, 0.00900988281, -0.0196263064, -0.00337042497, -0.0136059169, 0.0192453749, -0.0040701814, -0.0239490625, -0.0248434264, -0.0169514976, -0.000287252129, -0.0137384152, 0.00101547502, 0.00771802431, -0.00395424524, 0.00262512197, -0.000872625387, 0.0103183035, -0.00051860651, 0.0128606139, -0.0142352832, 0.00751927728, 0.000171833701, 0.0146410596, -0.0192288123, -0.00712178228, -0.00337042497, -0.0167196263, 0.0139454436, 0.0161068216, -0.0131421722, 0.0071300636, -0.0237171911, -0.0242803097, -1.38531213e-05, -0.00512602692, -0.00803684816, 0.0118668769, -0.00230422779, 0.0150799602, 0.00668288162, -0.0151793333, -0.0274768304, -0.00475751609, 0.0143346572, 0.00819833111, 0.00821903348, -0.00975518581, 0.00774286781, 0.0215144083, 0.000859686057, -0.0283546317, -0.0124796815, 0.0105336132, 0.00703068962, -0.0170757156, 0.00712592294, 0.000214921514, 0.00415299274, -0.0190135017, -0.0191791244, 0.0042006094, -0.0036954598, -0.0299280472, 0.000996842515, 0.0042006094, -0.00441384874, 0.0018912059, 0.0120821865, 0.0229553264, -0.0241974983, 0.0215972196, 0.0108151715, 0.00333937048, -0.0102189295, -0.00388385565, -0.000442005956, -0.0291661825, -0.0111712608, 0.00464986125, -0.00277832313, 0.0154526113, -0.00534547726, 0.00226489245, 0.0126949912, -0.00590445427, 0.0081238, 0.00978831, -0.0152041772, 0.015891511, 0.0214647204, 0.0165705662, -0.020239111, 0.0154029243, 0.0028259398, -0.00425236672, -0.00622327859, -0.0170922782, -0.00159411982, 0.00747373095, -0.0168686863, 0.0252077971, -0.00203405553, 0.00096164766, -0.0024263747, 0.00828942377, 0.00931628514, 0.0170591529, 0.00133843964, -0.0209512897, 0.0211666, 0.021928465, -0.00546555407, -0.0174732096, 0.017903829, -0.00685264496, 0.00267894939, 0.0120159369, -0.000978209893, 0.00959784351, 0.0142518459, 0.0133906072, -0.0184338223, 0.0162476, -0.0143926255, -0.0169929042, -0.00477407826, 0.0130676422, -0.00285906438, 0.00762279145, -0.00460431492, 0.0120656239, -0.00158066303, -0.0143512199, -0.00814450346, 0.0139206, 0.000691475347, 0.0062605436, -0.0179535169, -0.00564773893, -0.0139288809, 0.00871176179, 0.00287769688, 0.0315677151, -0.0145665295, 0.017208213, -0.00734537328, -0.00365612423, 0.0042440854, 0.00575953443, -0.000278453401, 0.0041136574, 0.00859582517, -0.00149785157, -0.00842192117, 0.0173903983, -0.00129082298, 0.0149308993, -0.0139123192, -0.00538274227, 0.00681952061, 0.0131587349, 0.0115770372, 0.0209016036, 0.000953366514, -0.00142849702, 0.00543657, 0.0134237316, 0.0162972882, -0.00171937211, 0.0155188609, -0.00899332, -0.0282221325, 0.0119579695, -0.018251637, 0.00186222186, -0.00475751609, 0.00979659148, -0.0235184431, -0.0077925548, -0.0167693123, -0.00962268747, 0.00676569296, 0.00978002883, 0.00237047696, 0.0222597104, -0.000583820511, 0.0059500006, -0.000183608456, 0.00399979157, -0.0108648585, -0.00329589448, -0.0135727916, -0.03372081, 0.00148542994, -0.0113700079, -0.00634335494, 0.00814864412, 0.00700998679, 0.0124796815, 0.0283380691, 0.016686501, -3.82032376e-05, -0.0116018802, -0.0329423845, -0.0260359105, 0.0122064035, 0.0109145455, 0.00148646499, 0.00760622928, 0.00498524774, 0.0265824664, -0.0149391806, -0.00217794045, -0.018450385, 0.00743646547, 0.0228890777, 0.00865379348, 0.0105667375, -0.00489415508, -0.00125252281, -0.0171585269, 0.00898503885, -0.00740748178, 0.0027576203, -0.00170384499, 0.00674913079, 0.0129185822, -0.00018076181, -0.018450385, -0.0118917199, -0.0108979829, -0.00987940282, 0.00901816413, -0.00114176248, 0.0102934595, -0.0024077422, -0.0116929729, 0.0149474619, -0.00170384499, -0.00880285446, -0.00971378, -0.00569328526, -0.00725014, 0.0190631896, -0.0102272108, -0.0114611005, 0.0164629109, -0.0129268626, -0.00227524387, 0.00520055741, -0.0118834395, 0.000212851228, 0.00066507922, 0.0177713316, -0.00221727579, -0.00030536711, 0.00708865793, -0.0158583876, 0.00667046, -0.0116350045, -0.00388178532, 0.00607835827, -0.0222928356, -0.0164711922, -0.0252906084, 0.00282386946, -0.0258702878, 0.015916355, 0.015990885, 0.000552766258, -0.0116432859, 0.00681123929, -0.00500181, -0.0122146849, -0.0213653464, 0.0158583876, -0.000721494493, -0.0024967643, 0.0227565784, -0.0121732792, 0.0149888676, -0.0137798209, -0.00075720693, 0.00968893617, 0.0154608926, -0.0168852489, -0.00368096773, -0.00641788542, 0.00204337179, 0.0107737659, -0.00464572059, -0.0100864312, -0.0030433198, -0.00644686911, -0.0116184428, 0.00138295069, 0.0237337537, -0.00802856777, -0.00604523392, -0.0213156603, 0.0330748819, 0.0135396672, 0.0242471844, -0.00556078693, 0.00137777498, 0.0203219224, 0.00597898476, 0.0106412675, 0.0185497589, 0.00920863, 0.00703483028, 0.00674085, -0.0104922075, -0.0103348652, 0.00229387637, 0.0141276289, -0.00609492045, 0.0018694679, 0.0113286022, -0.00699756527, 0.0233693831, 0.00892707147, -0.0014098644, -0.00405568955, -0.0209016036, -0.0151710529, -0.0111464178, 0.00334351114, 0.00718803145, 0.0138460696, -0.0313358419, 0.0216137804, 0.0018611867, -0.021729717, 0.00121939823, -0.0132746706, -0.00939081516, 0.00599554693, 0.0156265162, -0.0101609612, 0.0161151029, -0.00121836306, -0.0130842049, 0.0245784298, -0.0102106482, 0.0140862232, 0.0206200443, 0.00429377239, 0.0135148242, 0.00967237446, -0.0158335436, -0.0148149636, -0.0214647204, 0.0060369526, -0.0102851782, 0.00347393914, 0.00607835827, -0.00621085661, -0.00440970808, 0.0166699383, 0.00669116294, -0.00588375144, -0.00915894285, 0.00626468426, 0.0238828138, 0.0110636055, -0.018500071, -1.91986637e-05, -0.000371616246, 0.0151462089, 0.0390207432, 0.0143512199, -0.017208213, -0.00352983689, -0.018400697, -0.0234025083, -0.00288390787, 0.00592515711, -0.0056891446, 0.00285285339, 0.0064965561, 0.0206531677, 0.00324620772, -0.0311370939, 0.0149308993, -0.0110222, 0.0010377306, -0.00428963173, -0.00949018914, -0.00476993807, -0.018698819, 0.00553594343, -0.0112706348, 0.00657522678, -0.0377620086, -0.00930800382, -0.0209181644, -0.0082273148, -0.00925831683, -0.00542000774, 0.0126618668, -0.0145085612, 0.0311039705, 0.0163221303, -0.0118089085, -0.00973034184, -0.00773458695, -0.0119579695, 0.00610320177, 0.000312871911, -0.00421717158, 0.0206200443, 0.0150054293, 0.00976346619, -0.0040267054, -0.0106329862, 0.0111961039, -0.00116350048, 0.0031489043, 0.00245949929, 0.0136224786, -0.040180102, 0.00160654157, -0.0135231055, -0.0274933912, -0.0138129452, 0.00852957647, -0.017903829, 0.00206200429, -0.0121401548, 0.00489415508, -0.0127363969, -0.0192619376, 0.0458775274, 0.0092997225, 0.00816520583, -0.000776357076, -0.00640546344, -0.0185497589, 0.00141504023, 0.00532891508, -0.0202556737, 0.00826458, 0.00143781328, -0.00578437792, 0.0171750896, -0.0087283235, 0.00646343129, 0.0028694158, -0.00744474679, -0.0157590136, 0.00716732861, -0.00973034184, 0.00674499, 0.0200238023, -0.00524196308, -0.00328554306, 0.00154443306, -0.016264163, 0.0133823259, 0.0136887282, -0.0189306904, -0.00333108939, 0.00210858579, -0.000851404911, 0.00590031361, -0.00429377239, -0.0182847623, 0.00659592962, -0.0117592216, 0.00746130897, 0.00426478824, 0.00679467712, 0.00766833778, 0.0125376489, 0.00566016091, 0.00529993093, 0.0149060562, 0.00380311464, 0.00336835464, -0.0260690358, -0.0334558152, 0.0131835779, 0.021580657, -0.0136390412, -0.0184669476, -0.00312406081, 0.0129103009, 0.00715490663, 0.0115770372, 0.0038279579, -0.00633507362, -0.0128357708, -0.0329423845, 0.0135727916, 0.00449666, -0.00949847, 0.0130676422, -0.00103566039, 0.00592101645, -0.00250090496, 0.00201749336, 0.000523523486, -0.00825629849, 0.0297789872, -0.00906785112, -0.0134734185, 0.00115211389, 0.00921691116, -0.00835153181, 0.0120490622, 0.00420475, -0.0312199052, 0.00440142723, -0.00527922809, 0.0036105779, 5.03014708e-05, -0.00764763495, -0.000130945555, 0.0100284629, 0.00917550549, -0.00899332, 0.000404482038, 0.00951503217, 0.0143512199, 0.000456497975, -0.00438900525, -0.0180694517, 0.0150054293, -0.00721287495, 0.0126370229, -0.0170425903, -0.0129185822, -0.00970549881, 0.00602039043, -0.0174732096, -0.0222100224, -0.00939909648, -0.0152124586, -0.00623155944, -2.99059211e-05, 0.00555250561, 0.000727187784, 0.00797888078, 0.00305367121, -0.0167196263, -0.0064344476, -0.0125956172, -0.0135313859, -0.0319817699, -0.00847574882, -0.00573883159, -0.00403705705, -0.00723357778, -0.00894363318, 0.0120656239, 0.0160488542, -0.00987940282, 0.0141524719, 0.018500071, 0.0105667375, 0.0123306205, -0.0234025083, -0.0123968702, -0.0130510805, 0.00108586473, 0.0134651372, -0.0224915817, 0.0204544216, -0.00302054663, -0.0115604745, -0.000158635623, -0.00322136423, 0.0132001406, 0.00901816413, 0.00854613911, -0.000320635474, 0.0120656239, 0.0134485746, -0.00867863744, -0.00597898476, 0.016761031, -0.00655452395, 0.0178707056, -0.000680088822, 0.00931628514, 0.00285906438, -0.00880285446, 0.0148398066, -0.0467056409, 0.00649241544, -0.0126453042, 0.0258206017, 0.00484032743, 0.0066953036, -0.000419491611, 0.0136473225, 0.0138212265, 0.0333233178, 0.00611148309, -0.0148812123, 0.018698819, 0.00764763495, -0.0121153109, -0.021481283, 0.020885041, -0.0152621446, -0.00735779479, -0.0190135017, -0.0062357, 0.00468712626, 0.00580922142, 0.0122892149, 0.0054034451, 0.00177941041, 0.0058630486, 0.0137052899, 0.0170425903, -0.0202722363, 0.00598312542, 0.00451736292, 0.00150820299, -0.0123306205, 0.0202722363, -0.000358159392, -0.023120949, -0.041571334, 0.0131835779, -0.00348429056, 0.00197608746, 0.00278039346, -0.0171254016, -0.00962268747, -0.0130427992, 0.0137218526, 0.00822317414, 0.00942393951, -0.00853785779, 0.00943222083, -0.0260524731, 0.0279074498, -0.00538688293, 0.0152124586, 0.0125293685, 0.00411158707, -0.0158004202, -0.018798193, -0.00274933921, -0.00350292306, -0.00281351805, 0.00975518581, 0.0121401548, -0.0220940877, -0.00165519328, -0.0173407122, 0.000875730766, 0.0127363969, 0.00170177477, 0.0100781498, -0.000262408692, -0.0142932516, 0.0148563692, 0.0032793323, -0.00136845873, -0.00375963864, 0.00511774607, 0.00311577972, 0.0228393897, -0.00419646874, 0.0270462111, -0.00859582517, 0.0180363283, 0.00445939507, -0.0120242182, -0.000440453237, -0.0256384164, -0.00457119057, 0.0201728623, 0.00660421094, 0.0286693145, 0.00343046314, 0.00956471916, 0.00778427348, 0.0100947125, 0.00341390097, -0.000627296511, 0.00840535946, 0.00916722417, 0.0102023669, -0.00862895, 0.0079871621, 0.019593183, 0.00148542994, -0.00066507922, -0.00556078693, -0.0159660429, -0.0189306904, 0.021729717, 0.00827286113, 0.0364701487, 0.000943532621, 0.00743646547, 0.00532891508, 0.015990885, 0.0117095355, -0.0151710529, 0.00361264823, -0.0170425903, 0.00379276322, -0.0209181644, -0.0240815617, -0.0129931122, -0.0134651372, 0.0135148242, 0.0208684783, -0.0127363969, -0.00606593676, -0.00600796845, -0.00453806575, 0.0108897015, 0.0103183035, 0.0146741839, -0.0153283942, -0.00968893617, 0.00689819129, 0.00203095, 0.00246363971, -0.0160985403, 0.016860405, 0.0127032725, -0.0037389358, -0.00575125311, 0.000968893641, -0.0219615884, -0.0198581796, 0.00403291639, 0.0137963826, 9.85811766e-06, 0.00707209529, -0.00280730729, -0.00228145462, -0.000429325475, -0.000651104783, -0.0182682, 0.0212494116, 0.0186160076, 0.00336007355, 0.00525852526, -0.0161896329, 0.00428963173, -0.00954815652, -0.0137135712, -0.0265824664, 0.000837948057, -0.00237668771, 0.0110222, -0.0088856658, -0.00182909728, 0.00363335107, 0.016438067, -0.00799958315, 0.00527508743, 0.0160488542, 0.00267480896, 0.00845504645, 0.0019481387, -0.00414057123, 0.00463329908, 0.0052543846, 0.0125624929, 0.00605351478, -0.0139620062, -0.0132829519, -0.0114693819, -0.0140696606, 0.0145748099, 0.0150137106, -0.00220278371, -0.0114859445, 0.00309507689, 0.000281558838, -0.000831737241, -0.0133740446, 0.0056891446, -0.00522540091, -0.0128357708, 0.00756068295, -0.019295061, 0.00650897762, 0.00794989616, 0.0274437051, -0.000112054207, -0.00687748846, 0.00402877573, -0.00317167747, -0.0232865717, 0.00981315318, 0.0014750784, -0.0107489228, 0.0245287437, -0.0177713316, 0.00811552, 0.00496040424, -0.00311577972, 0.00439728657, -0.0329589471, 0.0171419643, -0.0161399469, 0.0151462089, 0.0119579695, -0.00816106517, 0.00437244307, -0.0137881022, 0.0236509424, -0.0151876146, 0.00341804139, 0.00596242258, 0.0161068216, -0.00717146927, -0.00380518474, -0.00688577, 0.0104342392, -0.00499352859, -0.0326442607, -0.018698819, -0.0134982616, -0.0127778025, -0.00616531027, 0.046838142, -0.00232907129, 0.00851301383, -0.00746544963, 0.00310128764, -0.00109414593, 0.0087283235, 0.0109559512, 0.00142746186, 0.0072459993, 0.0130096739, -0.00615702942, 0.0193778723, -0.00364784314, 0.00125252281, -0.00162310386, 0.00766419712, -0.000259691442, 0.00177216448, -0.0111961039, 0.0242471844, -0.00425236672, -0.00411986839, 0.0294146165, -0.0144340312, -0.0108234528, -0.00460431492, 0.0165208783, -0.0223425217, 0.00486517092, 0.0101029938, 0.0080741141, -0.00121318735, 0.00145230535, -0.0223922078, -0.00507219974, -0.0101692425, -0.00320273172, -0.00351534481, -0.0117012542, 0.0041385009, -0.0133077959, -0.0238662511, -0.0106992358, 0.00286113471, -0.000342891057, -0.0140530979, 0.0154526113, -0.00233735237, -0.00127012015, 0.0107737659, 0.0143015329, -0.016338693, 0.023766879, -0.00480306242, -0.0219947137, -0.00474923523, 0.0226572044, -0.00399151072, 0.00719217211, -0.0119993752, 0.00547797559, -0.0138129452, -0.0132746706, -0.00601210911, -0.0331411324, -0.0248931143, 0.0011603951, -0.050481841, -0.00660421094, -0.0216469057, -0.00951503217, 0.0245121811, 0.0165457223, 0.00183220266, -0.0163552556, 0.00823973678, -0.00109621615, -0.0205537956, 0.00915894285, -0.0165291596, 0.00346772838, -0.00640132278, -0.0119745312, -0.00452150358, -0.00379483332, 0.000528958, 0.0205206703, 0.0129351439, 0.00440142723, -0.00255059171, 0.00491071725, 0.00934112817, 0.000946120475, -0.0218125284, 0.0044428329, 0.00683194213, 0.00821903348, 0.00802856777, -0.0183841363, -0.0110470438, -0.0134899803, 0.00396873755, 0.0030867958, -0.000300967775, 0.00576367509, 0.00455876859, -0.0144423116, -0.00193675212, 0.0290171225, -0.0114693819, -0.00275555, 0.0122478092, 0.0141938776, 0.0143180946, -0.000330728129, -0.0187319443, -0.00618601311, -0.00417576591, 0.0210009757, -0.0155022983, -0.00628124643, -0.0109559512, -0.0216965917, -0.0148480879, -0.00447181659, 0.00619843509, 0.0244459324, -0.0144091872, -0.0238331277, -0.000871590222, 0.0136970095, -0.0146162156, -0.00825215783, 0.0834076628, 0.0114196949, 0.00359401572, -0.0203550477, 0.0100201825, -0.0124714, 0.00478650024, 0.0555167757, -4.81988354e-05, 0.0116018802, 0.00746959029, 0.000715283677, 0.00681952061, 0.00691889413, -0.0140116923, -0.00727912411, 0.0145499669, -0.021729717, -0.00902644545, -0.00183530815, 0.0066953036, -0.0145665295, -0.00153408165, 0.00241188263, -0.0107240789, -0.00108275935, -0.00137777498, -0.0122229662, -0.00774700847, 0.0031489043, -0.0148398066, 0.0261518471, -0.0111215739, 0.00958956219, -0.0207028557, 0.0117840655, 0.0252906084, 0.00265824655, 0.0218622163, 0.00127012015, 0.00298121129, -0.00250918604, 0.0176388323, 0.00748615246, 1.41766041e-05, 0.00629366795, 0.00538688293, -0.022375647, -0.00276176096, -0.034217678, 0.00753583945, -0.0196097456, -0.00377827114, -0.0156596396, -0.00863723084, -0.00559391174, 0.0142104402, -0.000888670096, 0.0160985403, 0.00580508076, -0.0072211558, -0.00293359463, -0.0161482282, 0.00432689674, 0.0300439838, 0.00616116961, -0.0179535169, -0.0130510805, 0.000888670096, 0.000101443991, 0.00780911697, 0.0120490622, 0.00464986125, -0.025058737, 0.00258164597, 0.0202722363, -0.0169100929, 0.00331245689, -0.00699342461, 0.000267325609, 0.0080534108, 0.0086620748, -0.0290005598, -0.0139951305, 0.00897675846, 0.00809481647, -0.00752341747, -0.00609078025, -0.0204709843, 0.0102272108, -0.00155374932, 0.0161896329, -0.0252409205, 0.0194606837, -0.0158418249, -0.000132110101, -0.0124548376, 0.00227938429, 0.0370332673, 0.0179203916, 0.0195600577, 0.00378862256, 0.0145002799, -0.0132249845, -0.0226075184, 0.0333895646, 0.0114031332, 0.0133243576, -0.00276797172, 0.00115418423, -0.00158273336, -0.00084778195, 0.0117840655, 0.0251249857, 0.00915894285, 0.00205268804, -0.0218622163, -0.00512188626, -0.00170488015, -0.0107240789, 0.0147404335, 0.0260855984, -0.00502251275, -0.00639304193, -0.00486931158, 0.0224584583, -0.00603281194, 0.00622327859, 0.0225412697, -0.0129020195, -0.00103151973, -0.00750271464, 0.022176899, -0.0263174698, 0.00770560279, 0.0102934595, 0.0117757842, -0.00919206813, 0.0109807942, 0.0275596417, 0.00748615246, 0.000908337766, 0.0119165638, 0.0101278368, 0.00448009791, -0.0175063349, -0.0054903971, -0.00196263078, -0.0451487862, 0.0171419643, 0.00616116961, 0.00608249893, 0.00493970141, -0.000449510757, 0.0137963826, -0.00212411303, 0.00222348678, -0.000842088659, 0.0144505929, -0.0088856658, -0.00369131914, 0.0139537249, 0.0119662508, -0.0171916503, 0.0139454436, -0.00852957647, 0.00741576264, 0.00606593676, -0.00226696278, 0.00880285446, 0.0113286022, 0.00190155732, 0.024015313, 0.00856270082, 0.00150199211, 0.0417369567, 0.0056891446, -0.00261477055, -0.0213653464, -0.0192453749, -0.0110222, 0.0146410596, 0.0175725836, 0.0522374436, -0.0075689638, -0.0101443995, -0.00580094, -0.00414057123, 0.00897675846, 0.00920034852, -0.00928316079, 0.00254231063, -0.00279281521, 0.0127363969, 0.0039832294, -0.00852957647, 0.00545727275, 0.00539102359, -0.0205703564, 0.000767040823, -0.0126867099, 0.0194772463, -0.00537446141, 0.00153511669, 0.00543242926, -0.017108839, 0.0181688257, -0.0146410596, -0.00832254812, -0.0373645127, -0.020934727]
12 Aug, 2024
Difference Between Store‑and‑Forward Switching and Cut‑Through Switching 12 Aug, 2024 Switching is a technique to transmit data between networks using switches that connect multiple LANs. Switches forward data packets based on MAC addresses, efficiently using bandwidth and reducing collisions. The three main types are: Circuit Switching: Dedicated path for the entire connection, used in traditional telephony. Message Switching: Entire messages are stored and forwarded, allowing flexible use but with potential delays. Packet Switching: Data is broken into packets sent independently and reassembled at the destination, used in modern networks like the Internet. Switching Methods Cut-through Switching: Forwards packets as soon as the destination address is read, ensuring low latency but no error checking. Store-and-Forward Switching: Receives the entire frame, checks for errors, and then forwards it, ensuring reliable transmission with higher latency. What is Store-and-Forward Switching? Store-and-forward switching is a method of switching data packets by the switching device that receives the data frame and then checks for errors before forwarding the packets. It supports the efficient transmission of non-corrupted frames. It is generally used in telecommunication networks. In store-and-forward switching, the switching device waits to receive the entire frame and then stores the frame in the buffer memory. Then the frame is checked for errors by using CRC(Cyclic Redundancy Check) if the error is found then the packet is discarded else it is forwarded to the next device. Store and Forward Switching What is Cut-through Switching? Cut-through switching is a method of switching data packets by the switching device that forwards the packets as soon as the destination address is available without waiting for the rest of the data to arrive. It supports low latency and high-speed transmission and requires less storage space. It is used in fiber channel transmission, SCSI traffic transmission, etc. In cut−through switching, data transmission starts as soon as the destination address field arrives at the switching device. Then the device performs a lookup operation to check whether the destination address is valid or not. If the address is found valid and the link to the destination is available then the switching device starts to transmit the packets to the destination without waiting for the rest of the frame to arrive. Cut through Switching Difference Between Cut-through Switching and Store-and-Forward Switching Store-and-Forward Switching Cut-through Switching The switching device waits to receive the entire frame before forwarding the data packet. The switching device forwards the data packet as soon as the destination address is received and doesn’t wait for the entire frame to be received. It supports error checking and collided/ bad frames are discarded before forwarding the packets. There is no error-checking technique. It checks for errors based on FCS bits of the data frame. It relies on higher-level protocols to detect the error. Frames are stored in the buffer memory of the switching device. Frames are not stored in the switching device. It is not further classified into different types. Cut through switching is further classified as Rapid frame forwarding and Fragment free. It has a high latency rate as the device waits for the entire frame to be received before sending the packets to the destination. It has a low latency rate as the device does not wait for the entire frame to be received before sending the packets to the destination. It is more secure as it does not forward corrupted frames to the destination. It is less secure as it sometimes forwards corrupted frames to the destination. It has a high waiting time as the switching device waits for the entire frame to be received before forwarding it. It has a low waiting time as it forwards the frame as soon as the destination address is received. It does not limit routing or arbitration decisions in switches. It puts a limit on routing or arbitration decisions in switches between source and destination. It has networks with more storage requirements. It has less storage requirement. Example: Telecommunication networks or transmission across networks requiring high mobility. Example: Communication via fiber channel and low latency transmission for SCSI transmission. Conclusion Store-and-forward switching as well as cut-through switching are two techniques which are employed in switches so as to transfer packets arrived from the source to the destination. Store-and-forward switching is more reliable, can handle packets of any size but is slower and has lower throughput than cut-through switching. Cut-through switching has greater characteristics by way of throughput but it will transmit packets with errors and can only work on packets whose size is greater than a particular length. Difference Between Store‑and‑Forward Switching and Cut‑Through Switching – FAQs What is the main advantage of store-and-forward switching? Store-and-forward switching is characterized by the main advantage of checking the error in the entire data frame before sending while eliminating the defective frame. Why is cut-through switching faster than store-and-forward switching? Cut-through switching is faster because it begins to forward the packet immediately the address of the switch destination is obtained, not waiting until the whole of the frame is received implying less delay. In what scenarios is store-and-forward switching commonly used? Store and forward switching is used in the telecommunication networks mostly in the cases when data delivery reliability is crucial. What are the limitations of cut-through switching? Like every other technique that is employed in LANs, cut-through switching does not perform error checking and might forward useless messages that are disturbed in the process. It also has the disadvantage of managing packets that are larger a given size limit. Can cut-through switching handle any packet size? No, cut-through switching can only work on packets that are of over a definite size because it forwards the packet as soon as the destination address is received. Which switching method is more secure, and why? Store-and-forward switching is less secure than cut-through switching because when being switched through the network, frames are checked for errors and corrupted frames are discarded but a cut-through switch forwards corrupted frames. How does store-and-forward switching impact network latency? Store-and-forward switching also endures a high amount of network delay as the device has to wait for the complete frame along with the possible errors before passing the packet on. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System/Introduction of System Call/How much Stack size required for BIOS interrupt call?/Difference between Interrupt and Polling/Difference between Difference Engine and Analytical Engine/Difference Between Store‑and‑Forward Switching and Cut‑Through Switching
https://www.geeksforgeeks.org/difference-between-store%e2%80%91and%e2%80%91forward-switching-and-cut%e2%80%91through-switching?ref=asr10
PHP
Difference Between Store‑and‑Forward Switching and Cut‑Through Switching
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, Difference between Difference Engine and Analytical Engine, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Difference between Interrupt and Polling, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, Introduction of System Call, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Difference Between Store‑and‑Forward Switching and Cut‑Through Switching, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How much Stack size required for BIOS interrupt call?, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0457062237, 0.00630164845, -0.0235510413, 0.0523284338, 0.00665061269, 0.027836, -0.0029377935, 0.0186006166, -0.0132038407, -0.00306764082, 0.0149567779, -0.00937334727, 0.0400903337, -0.0142994262, -0.0220577978, -0.00146991119, -0.00196089619, 0.0108584743, 0.0206294786, -0.0260343701, 0.0486277863, -0.0296863224, -0.0351886, -0.0327864252, -0.0361624546, 0.0136420745, -0.00656134309, 0.016531175, -0.0258395988, 0.0380452387, 0.0307413321, 0.0387594, 0.011751174, 0.00323603651, -0.010736743, -0.0397657156, 0.00386092626, -0.0151515491, -0.0184383076, 0.0137556912, -0.000365448941, 0.0296863224, -0.00912988372, 0.0122705633, -0.0476214737, 0.025709752, -0.0142831951, -0.0107529741, 0.00955188647, -0.0429794341, -0.0404798761, -0.00345109589, 0.0117755206, 0.0117998673, 0.0121244853, 0.0370389223, 0.0211488679, 0.0237782747, 0.0239081215, -0.0158900544, 0.0244924333, -0.023031652, -0.0146483909, -0.021781873, -0.012927915, 0.0106799351, -0.0602166541, 0.0198828578, 0.0119378297, -0.0435312837, -0.063982226, -0.007876046, 0.000595471298, -0.0328675807, 0.0181299187, -0.00536025595, 0.0330948122, 0.0149648935, 0.00551039167, 0.013918, -0.0108341286, 0.032753963, -0.0092272684, -0.00871599559, 0.0227881894, -0.0121244853, -0.000833355472, -0.0455114543, 0.0719353631, 0.00198321347, -0.00280388864, -0.0253689028, 0.00853745546, -0.0140478471, -0.00774214137, 0.00450407574, 0.0119784074, -0.00573356682, -0.00375542534, 0.00882961135, 0.00242854911, 0.0282904655, -0.00531967869, -0.00116761064, 0.0535944439, -0.0121326009, -0.0452842228, 0.0251254383, 0.0229991917, 0.0430443585, 0.0160685945, -0.0192336217, -0.000963202678, 0.00614745496, -0.0163526349, -0.030108327, -0.0157764386, -0.0230154209, 0.0188603103, 0.0189901572, -0.00348355784, 0.0536593683, -0.0296538621, 0.0314554907, -0.0339550525, 0.0260019079, 0.016782755, -0.0227557272, -0.01247345, -0.0199802425, -0.00817226, -0.00546169933, 0.0176429916, 0.0144049274, -0.00273896498, -0.0171398353, 0.00383049343, 0.040772032, -0.0269757621, -0.0187142324, 0.0242327396, 0.0178864561, -0.00464609638, 0.0166529082, 0.00698740408, 0.0291182417, 0.00601355, 0.0262453724, -0.0324780382, 0.013796268, -0.0337927416, -0.0436286703, 0.0287124682, 0.0170749109, 0.0398955606, -0.020548325, -0.0016535233, 0.00767315971, 0.00985215884, -0.0497314893, 0.0361624546, -0.0510948859, -0.00852122437, 0.00224392256, 0.0137151135, 0.00728767598, 0.0519064292, -0.0289721638, -0.0238756593, 0.0442779064, -0.0216682572, 0.0602815785, 0.00155410904, 0.0196069311, -0.00254216534, -0.00198219903, -0.0114184413, 0.00895945914, 0.00543735269, 0.00676828669, -0.0181136895, -0.0356755257, -0.023031652, -0.00643961132, 0.0443428308, 0.040772032, 0.0298973247, 0.00397860026, 0.00516954297, -0.0247034356, -0.0133418031, 0.00493419496, 0.0403824896, 0.0361299925, -0.0194770843, 0.00664249761, -0.0506079569, -0.00561995059, -0.00782735366, 0.00733636878, 0.00462580752, -0.00197104039, 0.0221551843, 0.017870225, 0.0187304635, -0.026797222, 0.000731912325, -0.0192660838, -0.00344906701, 0.0129522616, -0.0550552271, 0.0126032969, 0.0208729431, 0.00748244673, 0.0306764077, 0.00315285311, -0.0139910392, -0.0129360305, -0.0571652427, -0.0163364056, 0.0154518206, 0.0130739929, -0.0118972529, -0.00492202165, -0.0623591319, -0.0450569876, 0.0243950486, -0.0359027609, -0.0184383076, 0.0109477444, 0.0108747054, 0.0234536566, 0.00617180113, -0.0190063883, -0.0530425943, -0.031504184, -0.0424925052, 0.019120004, -0.0158170164, 0.019120004, -0.010355317, 0.0389217064, -0.0447648317, -0.0268946085, -0.0250280537, 0.0331272744, 0.0244112797, 0.0410966501, 0.0124247568, 0.000630976399, -0.0278522316, 0.0156060141, 0.00555908447, -0.00631787954, -0.0276736915, 0.0125627192, -0.0213761013, -0.0338901281, 0.0149892401, 0.00391570572, 0.0446025245, -0.0170424487, 0.00270244549, 0.0336304344, -0.0243625864, -0.000511273451, 0.0303193294, -0.0198990889, 0.0142994262, -0.0143318884, 0.0185519233, -0.0280794632, 0.0132038407, -0.00708884746, -0.00805458613, -0.0166529082, -0.0116943661, 0.0249144379, 0.0325105, 0.0412589572, -0.0103958938, -0.0161740966, 0.00367021305, -0.00430524722, -0.0205970164, -0.0260992926, -0.00581877911, 0.0243950486, -0.0557044633, -0.0268946085, -0.0108584743, -0.0353833698, -0.00324618071, 0.00108138402, 0.02820931, 0.0198341645, 0.00488956, 0.00322589208, -0.0270569175, -0.0428820476, -0.0127737215, -0.0112155546, 0.0153057426, -0.0262940638, -0.0500885695, -0.00795314275, 0.011751174, 0.0254987497, 0.0297999401, -0.0169450641, 0.0435637459, -0.0375907719, 0.00593239535, -0.0213436391, 0.0190550815, -0.00559560396, 0.003879186, 0.00464609638, -0.0188440792, -0.0358053744, 0.0347341336, 0.0144860819, 0.0107692052, 0.0412914194, 0.00715377089, -0.0333058164, 0.0310821813, 0.0434338972, -0.0236808881, 0.000620324863, -0.0110207833, 0.00687378785, 0.00473536598, 0.0186006166, 0.0228206515, -0.00180061592, -0.0242489707, 0.0270893779, -0.00111080252, 0.00956811756, -0.00768127525, 0.00784764159, 0.00523040863, -0.00670336327, -0.0164175592, 0.00801806618, -0.0189739261, 0.0121082542, 0.0248657446, -0.00545764156, 0.00169308612, 0.0152570494, 0.00291750487, 0.000205675984, 0.0314067975, -0.017870225, -0.00254419423, 0.00948696304, -6.93062748e-06, 0.0156060141, 0.0556395389, -0.0324131139, -0.0233887322, 0.0434014387, -0.0155086285, 0.00760012073, -0.0140235005, -0.0212624837, 0.00941392407, 0.0186980013, -0.0243625864, -0.0101361992, 0.00225000898, 0.0157115143, -0.00928407721, 0.0173346046, 0.0353833698, -0.00770967919, -0.00616774336, 0.00738911889, -0.00612310832, 0.0206457097, -0.00840760861, 0.0267160684, -0.0235835034, -0.022560956, 0.0443428308, 0.0166691374, -0.0389217064, 0.0199964736, 0.0258395988, 0.022106491, -0.00331516215, 0.046387922, 0.0225934181, -0.00372905028, 0.00183612097, 0.0117105972, -0.0130334161, -0.0549578406, 0.000113806535, 0.0141533483, -0.00751490844, 0.0099414289, -0.0139910392, 0.0143075418, -0.00849687774, 0.00460957689, -0.0230478831, -0.00788010377, 0.0057376246, -0.0385970883, 0.0160117876, -0.00772185251, -0.0270244554, 0.0309685655, -0.0283391587, 0.0344095156, 0.00477188593, -0.00165656663, 0.022577187, 0.0288260859, 0.00762852468, 0.0180487651, 0.0623591319, 0.0215221792, 0.0231615, 0.0190388504, 0.0410641879, 0.012546489, 0.0255961362, -0.0315691084, 0.00407395698, -0.00973042659, -0.0339225903, -0.0356106, 0.0465177707, 0.0133742644, -0.0336304344, -0.000496817811, 0.0204996318, 0.0190713126, 0.00977912, -0.0513870418, -0.0617423579, -0.00247318391, -0.0582689457, -0.0353509076, 0.018486999, -0.00549821882, -0.0399280228, 0.0179838408, -0.0253526717, -0.0170424487, 0.0211488679, 0.0149567779, 0.039343711, -0.0430768207, 0.0500885695, 0.0234049633, 0.0549253784, 0.0333382748, 0.022106491, -0.0235185791, 0.0476539321, 0.000888642, -0.0373960026, -0.00301489048, -0.00942204, 0.00344703812, 0.0110288989, -0.0307413321, 0.0207268652, 0.0303193294, 0.0364546105, -0.0125221424, -0.00852122437, -0.0226745736, 0.0120027531, -0.0596323423, 0.0103147393, 0.0391814038, -0.00598108815, -0.0403175652, -0.0149648935, 0.0421354249, -0.00844007, 0.0259694457, 0.018486999, -0.0361624546, 0.0131551474, -0.000145317317, -0.0314554907, -0.0269757621, -0.0182922278, -0.0142913107, -0.0257746745, 0.0108178975, -0.0111262845, 0.0177566092, -0.00874034129, -0.0118972529, -0.000412873604, 0.0601192676, -0.0596648045, -0.00658163149, 0.000520403381, 0.0558667704, -0.00447972957, -0.0466476195, -0.00218508532, 0.037168771, -0.00554691162, 0.00802618172, 0.0113859791, 0.0174157601, -0.0386295505, 0.0184220765, -0.0129522616, 0.0169450641, 0.0272841491, 0.00897569, 0.0105176261, 0.0143481186, 0.000410591136, 0.00561589282, 0.0294590909, -0.0404149517, 0.00381223345, -0.0658974722, 0.00793285388, 0.0210352521, 0.00734448386, -0.00252999226, -0.0168639086, 0.0135771511, 0.0115239415, 0.00220537395, -0.004544653, 0.00724709872, -0.00769750634, 0.00328878686, -0.00591210695, -0.00480029, -0.0140235005, 0.0536269061, -0.0199640114, 0.00425655441, 0.0121163698, -0.0105663184, 0.0213436391, -0.00463392306, 0.00849687774, 0.0135122277, -0.0260668322, 0.00316299731, -0.0150135858, 0.00245898194, 0.00411859201, -0.0158170164, -0.00614745496, 0.0359027609, 0.027738614, 0.0292643197, 0.00674394052, -0.0183246899, 0.0180649962, 0.0323644206, -0.0221714154, 0.0374933891, -0.0167178307, -0.00932465401, 0.0260019079, -0.00122137554, 0.0430118963, 0.0333382748, 0.0137232291, -0.0167665239, 0.00628135959, 0.0154923974, -0.0100712758, -0.015516744, 0.0108665898, -0.0277710762, 0.00356471236, -0.0131551474, 0.00366209773, -0.00143744948, -0.0119215986, -0.00103624177, 0.0165636372, 0.00576602854, -0.0106393574, 0.0180487651, -0.00649236143, 0.0245411266, -0.018340921, -0.0093408851, 0.0012791981, -0.0388892442, 0.0240379684, 0.0285663903, 0.0234536566, -0.0149324313, 0.0209540967, -0.000364180916, -0.0176916849, 0.0259532146, -0.0273003802, -0.00872411113, 0.0223986469, -0.00945450179, 0.00825747196, -0.00344703812, -0.00271664746, 0.000280997512, -0.00379803148, -0.00347747118, -0.00129035686, 0.00307169859, 0.0401227959, 0.00344500924, 0.0144779664, 0.00265578157, 0.01489997, 0.0364546105, -0.0143156573, -0.00645584194, -0.0192660838, -0.0273653045, 0.00932465401, 0.0114671336, 0.00184525084, -0.00368644414, -0.0146078132, -0.0397007912, -0.0142831951, -0.0157602075, -0.00311227585, -0.013487881, -0.0358053744, 0.0141371172, 0.0173832979, 0.111798465, -0.000788213278, 0.0316178, 0.00944638625, 0.032624118, 0.0196231622, 0.0148756234, -0.0137881525, 0.0150703946, 0.005875587, 0.0348315202, 0.0121244853, -0.0353184454, 0.00336994138, -0.0382075459, 0.00557125779, -0.000274910941, -0.0277061537, -0.0307575632, 0.0264401417, 0.0377206206, -0.00748244673, -0.0182759985, 0.0253689028, 0.0181623809, -0.0260992926, 0.0561913885, -0.0263752192, -0.0403175652, 0.0150054703, 0.0133093409, -0.0254987497, -0.0224960335, 0.00403743749, 0.0219766442, 0.0306114852, -0.0234211944, -0.0228206515, -0.0120839076, 0.00268012797, -0.0107205119, -0.00389338797, -0.00130050117, -0.0442779064, 0.0106880507, -0.00993331335, 0.0211001746, -0.0209703278, -0.0140478471, -0.00130760216, -0.00177931285, -0.0167016, -0.0276574604, -0.0152002415, -0.0118079828, 0.0106555885, -0.0468423888, 0.0346042886, 0.017253451, 0.00317517063, -0.0256448276, 0.00308184279, 0.00349167315, 0.00215668138, -0.0180974584, -0.0294428598, -0.0425574295, 0.00150947401, 0.0125059113, -0.00728361821, 0.0135122277, 0.0111100534, 0.0071862326, -0.0163364056, -0.0316664949, -0.022414878, 0.0220740288, -0.00305952528, 0.0284527745, 0.0294428598, -0.0256610587, -0.0204184763, -0.0108178975, -0.00405163923, 0.0290695485, -0.0322670378, 0.00325632514, 0.0200127047, 0.00109964376, -0.00750273513, -0.0038690418, -0.0126032969, 0.00085313688, 0.0193959307, -5.45890944e-05, 0.0243463553, -0.00148107, 0.0306114852, 0.0245248955, -0.0192985442, 0.00281200418, 0.00742563838, -0.0217331797, 0.0334681235, 0.0132849952, -0.00979535095, -0.0148512768, -0.00784358475, -0.0248819757, -0.000737491704, -0.0156303607, -0.0250280537, -0.00894322805, -0.00452030683, 0.0349938273, 0.0144941974, -0.000376607699, 0.0190226194, 0.0329812, 0.0116294427, -0.00312039116, 0.0107692052, -0.0448622182, -0.0478811674, -0.0115320571, 0.018032534, -0.00296011101, 0.00310010253, 0.0315691084, 0.0386620127, -0.0191362351, -0.0185356922, 0.0111912079, 0.00400903309, -0.0256285965, 0.00962492637, 0.0178215317, -0.0371038467, 0.052360896, -0.00574979791, 0.0136177279, 0.00662220875, -0.0142263873, 0.0190388504, -0.0138774225, 0.0143318884, 0.0264563728, 0.00180365925, 0.046874851, -0.0107935509, -0.00532373646, -0.00643149577, -0.00928407721, -0.0291993953, 0.00172250462, -0.0123922955, -0.0193797, 0.000973854214, 0.00285258144, -0.0114590181, 0.0252877474, 0.000485659082, -0.066481784, -0.0216682572, -0.053919062, -0.0332246609, 0.0016190327, -0.00569298957, -0.00310010253, -0.0189090036, 0.018032534, 0.0301894806, 0.0248657446, 0.00022051204, -0.0122218709, -0.0314879529, 0.00915422942, -0.0111830924, -0.00842383876, 0.0108178975, -0.0295727067, -0.0349938273, 0.0121001387, -0.0059039914, -0.0151109714, 0.0566133931, 0.0149324313, -0.0136583056, -0.0116294427, -0.0350587517, -0.00844007, -0.0213761013, 0.003154882, -0.0121650621, 0.0302219428, -0.00914611388, -0.00114123547, 0.013252533, -0.00740129221, 0.00648424588, 0.00594456866, -0.0284040812, 0.00869164895, -0.011605096, -0.00176105311, 0.0385970883, -0.0147782378, 0.0134148421, 0.0473293141, -0.0163445193, 0.0157439765, 0.00352210621, 0.0286313146, 0.0252552871, 0.0312769525, -0.0128224138, -0.0149567779, 0.0045243646, 0.00916234497, 0.00704015465, 0.0335655101, 0.0216844883, 0.0396683291, -0.00848876312, -0.00439857505, 0.00386295514, -0.00698740408, -0.00989273563, -0.0207755566, -0.032932505, 0.0265050661, 0.0193797, -0.0262940638, 0.0276574604, 0.00892699696, 0.0271543022, 0.000240927475, 0.0196069311, 0.0212949459, -0.0286150835, 0.0264726039, 0.0349938273, 0.0197367799, -0.0343770534, -0.0292643197, 0.0142507339, -0.0201912448, -0.0310984123, 0.0305303298, -0.0518415086, -0.0302868672, -0.0175456069, -0.0154112428, -0.0100875068, -0.00782329589, -0.0157277454, -0.00527098589, -0.0113129402, 0.00413076486, -0.0243788175, -0.00130455894, 0.016928833, -0.0323319621, -0.0195907019, 0.00960869528, -0.00163830689, 0.00177018298, -0.0108422441, 0.00367832859, -0.0167016, 0.00116862508, 0.0132444175, 0.0496341027, -0.0276249982, -0.0180487651, -0.0049625989, -0.0147620067, 0.00788416155, -0.00483275158, 0.00871599559, 0.018032534, -0.0071862326, 0.00586747192, -0.0285988525, -0.00849687774, -0.00650859252, 0.0122218709, -0.0146240443, 0.00734042609, -0.000174609027, -0.0248982068, -0.0304491762, 0.0114346715, -0.0247521289, 0.00551039167, -0.01991532, -0.00555908447, -0.0195744708, 0.0243301243, 0.00478405878, -0.0151028559, 0.0116619049, -0.0104364716, 0.02100279, 0.00276331138, -0.00357079878, -0.000193629618, 0.013398611, 0.000650250586, -0.00360528962, -0.0317963399, 0.0171236042, -0.0632031411, -0.0374284647, -0.0451543741, -0.0149486624, 0.0205970164, 0.0483356304, -0.013090224, 0.0158657078, -8.09167614e-06, 0.021473486, -0.0103877783, 0.0209216345, -0.0292156264, -0.0285176989, 0.00619614776, 0.0016656965, -0.023031652, 0.0152732804, 0.0434663594, 0.00344298058, -0.0042240927, -0.00128934241, -0.0174969137, -0.00886207353, 0.025401365, 0.00673988275, -0.013706998, -0.00413888041, 0.0221876465, 0.0185032301, -0.0276574604, 0.00704827, -0.0340524353, 0.00190408796, -0.00314879534, -0.00268215686, -0.0120595619, 0.00335573941, 0.00499506062, -0.0326403491, -0.0137475757, 0.00603383873, 0.0102335848, -0.0383698568, -0.0284365434, -0.0185194612, -0.00751490844, -0.0182597674, 0.0351561382, 0.0048449249, 0.025709752, 0.00840760861, 0.0101118535, -0.00238188519, 0.022577187, -0.0154193584, -0.0347016715, -0.0062935329, -0.0220740288, 0.000283787202, 0.0172859132, -0.0168152172, -0.0251092091, -0.0121082542, -0.0172047578, 0.0026314354, -0.021944182, -0.0149080856, -0.0199802425, 0.0238918904, 0.0209865589, -0.00582283689, -0.00454871077, -0.0185681544, 0.0226421114, -0.00346529786, -0.0105500873, -0.012619528, -0.00836703088, 0.00228652847, 0.00785575714, -0.00340848975, -0.0475890115, 0.0161740966, -0.00589993363, 0.00953565631, -0.0164824836, 0.00875657238, 0.00680074887, -0.00568081625, -0.00788010377, -0.0204022471, 0.00597297261, -0.0126519892, 0.00505186897, 0.030254405, -0.0238918904, 0.00822501071, -0.0231290385, -0.00977100432, 0.0106068961, -0.0151515491, -0.00414496707, 0.00425655441, 0.0197205488, -0.0275600739, -0.0110938232, 0.032429345, -0.0125059113, -0.0277223829, 0.0229504984, 0.00370673276, 0.0226583425, -0.000814588508, 0.0145591209, 0.0133093409, -0.0361949168, -0.00724304095, -0.00539271766, -0.0259207543, 0.0214247927, 0.00400091801, -0.0151109714, -0.0285826214, 0.012781837, -0.0161984414, 0.00899192, 0.0221227221, 0.0130009539, -0.00864295661, 0.0213598702, 0.00647207303, -0.0305303298, -0.00452842237, -0.048433017, -0.0129116839, 0.0062245517, 0.00128325587, 0.00637468742, -0.00648424588, -0.00305546774, 0.0108584743, 0.114005871, -0.0188278481, 0.00141513196, -0.0457062237, 0.0102741625, 0.00936523173, -0.00118485594, 0.0240542, 0.00749056228, 0.00851310883, 0.0218305662, 0.0143886963, 0.00639497628, 0.013325572, 0.00941392407, 0.00785169937, -0.01991532, 0.00829399191, -0.0159549788, 0.00928407721, -0.0223012622, 0.00729579153, 0.00135629496, -0.000426822051, -0.00859426335, 0.0133174565, 0.0309847947, -0.00800995063, -0.00125079404, -0.00124673627, 0.0223986469, -0.000468413753, 0.0203048605, 0.0289883949, -0.00807487499, 0.044505138, 0.00494636782, -0.0145104285, 0.00412265, 0.00162917702, -0.000340849, -0.0143481186, -0.0239892751, 0.0133418031, -0.00910553709, -0.0158007853, -0.00511273462, 0.00803023949, -0.0347341336, 0.00114022102, -0.00474348152, 0.00622860948, 0.014429274, -0.0168314464, -0.012457219, 0.02820931, 0.0125059113, -0.00983592775, 0.0345069021, -0.00891076587, -0.01247345, -0.00421597715, -0.00593239535, -0.00430930499, 0.00192539103, -0.00191118894, -0.0198666267, -0.0205158629, -0.022414878, -0.00118992815, -0.00318328594, 0.00986839, 0.0099657746, 0.0257422142, -0.0412589572, 0.0254825186, 0.00841572322, 0.00139585778, 0.00677640224, -0.0101848925, 0.0113859791, -0.00138571346, 0.0110694766, 0.00992519781, 0.00494636782, -0.00194973731, -0.0197367799, 0.0103390859, 0.0259045232, -0.00909742154, 0.0172047578, -0.0213436391, -0.030871179, -0.0054657571, -0.0010641386, -0.0205807853, -0.000232685226, 0.0117917517, 0.00471913535, 0.00482463604, -0.020694403, 0.00921103824, -0.00474753929, -0.00994954444, -0.0137394601, -0.0138855381, 0.0401227959, 0.0082655875, 0.00180365925, 0.00506404182, 0.0159874409, -0.0151272025, -0.00110573031, 0.0137475757, 0.0221714154, -0.0119784074, 0.0364870727, -0.0107529741, 0.00435799779, -0.0134635344, -0.0273977648, 0.026959531, 0.0145347742, -0.00759200519, -0.0127169136, -0.0229991917, 0.00859426335, 0.0249955915, 0.000318277889, 0.0306114852, -0.0128142983, 0.022414878, -0.0118242139, 0.0104527017, -0.0147051988, 0.0313418768, -0.00806675944, 0.0127656059, -0.0110532455, 0.000297228427, -0.00946261734, 0.0265699904, -0.0196556244, -0.0137151135, -0.011678135, -0.0106880507, -0.0220577978, -0.00577820186, -0.00014316164, -0.0132200709, -0.0313581079, -0.0232588854, -0.00882149581, 0.0137556912, 0.0240866616, 0.000341356208, -0.00628135959, 0.00278765778, 0.0233075786, -0.00689407624, 0.0108665898, -0.0044107479, 0.0180000719, -0.00441480568, -0.0192336217, -0.0150785102, 0.00676422939, 0.00611499324, 0.0302868672, 0.00760012073, -0.00297025545, -0.00524258194, 0.025092978, -0.0134959966, -0.00282417727, 0.0142020406, 0.00135933817, -0.000539677567, 0.0334681235, 0.0126844514, -0.0125221424, -0.0150785102, 0.0246872045, 0.0169450641, 0.0031305356, 0.0115077104, 0.00874034129, -0.00735665718, 0.0116456738, 0.00911365263, -0.00541300653, -0.0167665239, 0.00137658359, -0.0397007912, 0.0154355895, 0.00894322805, 0.00706044305, -0.000137328665, -0.0132281864, 0.0128954528, -0.0226096492, 0.00628947513, -0.00778271863, 0.0062935329, 0.00671147881, -0.00648018857, -0.0263589881, 0.0212300215, 0.0106961653, 0.00418757321, -0.00634628348, 0.0104445871, 0.00445944071, -0.0141452327, -0.0220091064, -0.0100875068, 0.0106880507, -0.0248332825, -0.0117755206, 0.0218630284, 0.00111283129, 0.00270244549, 0.012781837, 0.0213111769, -0.00848064758, -0.0302868672, 0.0477837808, 0.00757983234, 0.0187304635, 0.00297228433, -0.0156060141, 0.0280145407, 0.0274139959, 0.0151272025, 0.0145185431, 0.00380006037, 0.02100279, -0.0242814329, -0.0322021134, 0.0347341336, 0.0103309704, -0.00720246369, 0.0320560336, -0.00147092564, 0.0179838408, 0.000110763242, 0.0127331438, -0.00437828619, -0.0255799051, 0.00652888091, 0.00805052835, 0.00253202091, 0.0164824836, -0.0130739929, 0.020223707, -0.0163850971, -0.000373057177, 0.0220902599, -0.00218508532, -0.0213111769, -0.00340240332, -0.0139748082, 0.00846441649, 0.0145185431, 0.00944638625, 0.0288260859, -0.0101118535, -0.00283229281, -7.75406079e-05, -0.00201161765, -0.00767721748, 0.0218954887, -0.00998200569, 0.00506404182, 0.00946261734, -0.0203373227, 0.00308590056, -0.00677234447, -0.0239568148, -0.00291344733, -0.00769750634, 0.0215708707, 0.00428495882, -0.015354435, -0.0216033328, -0.00735259941, -0.00797748938, -0.00322792097, 0.00408207253, -0.00398874469, 0.00285055256, 0.00362354936, 0.0284690056, -0.000105564279, -0.0335005857, 0.0324131139, 0.01356092, -0.00207958464, 0.0160361324, 0.0156952832, 0.0107610896, 0.00575385522, -0.018486999, 0.0171885267, -0.0126519892, -0.00150947401, 0.0165636372, 0.00691842288, 0.0137475757, -0.00222363393, 0.0147944689, -0.0478811674, -0.00511273462, 0.00853745546, 0.0114022102, -0.0125302579, 0.023664657, 0.00848876312, 0.0238269661, -0.00711319363, -0.0106880507, -0.0210677125, -0.0084481854, 0.0184707679, 0.0111993235, 0.0134554189, 0.00953565631, 0.0125302579, 0.00831833854, -0.0116294427, 0.0100388145, -0.0206619408, -0.0102011235, -0.0192823131, -0.00346935564, -0.00641526468, -0.0195582397, 0.00770156411, 0.0160685945, 0.00538054481, -0.0178377628, -0.00167685526, -0.0176916849, 0.00697117299, 0.00359717407, -0.0120757921, 0.00525069749, 0.0171560645, -0.00402120641, 0.01991532, -0.0200938582, -0.00971419644, -0.0218630284, -0.0206781719, -0.0139017692, 0.000524968316, -0.0168152172, 0.018016303, -0.0121975243, 0.0250280537, -0.0112399012, 0.0191037729, -0.00461769197, -0.0160442479, -0.0133742644, 0.0101524303, -0.000849079166, -0.00738911889, 0.0320722647, 0.0217169486, 0.00921103824, -0.0240379684, -0.00588370254, 0.018486999, -0.00724709872, 0.0103147393, 0.00596079929, 0.0370389223, 0.0195907019, -0.0159874409, -0.0159225166, -0.0339225903, -0.0147620067, -0.000500368362, -0.00428090105, 0.000778576185, -0.0157115143, 0.0245898198, 0.0170424487, -0.00255230954, 0.0105419718, -0.00147194008, 0.0045933458, 0.0229667295, -0.0323806517, 0.00983592775, -0.0164175592, -0.0232101921, -0.00185843848, 0.0272354558, -0.00878903456, 0.0105257416, -0.0100063523, 0.0167989861, -0.00410033204, -0.012692567, -0.00786793, -0.0416485, 0.0342147462, -0.0227557272, -0.00958434865, -0.00456088409, -0.0203373227, -0.0218630284, 0.015046048, 0.0136096133, 0.0148593923, 0.024930669, -0.0161010567, 0.0113859791, -0.00572950905, -0.0023068171, 0.00426467, -0.0214085616, -0.0130009539, -0.00874845684, 0.0159468632, -0.0180974584, 0.0136177279, -0.0350587517, 0.0137232291, -0.0151109714, 0.0155329751, -0.00255636731, -0.024784591, 0.00917857606, 0.026651144, 0.00702392356, 0.0186168458, -0.00310213142, -0.0142588494, -0.025563674, -0.0262616016, -0.00582283689, 0.00125688058, -0.00223174924, 0.0286637768, 0.025239056, -0.0162714813, -0.0201587826, 0.0083345687, -0.0121894088, -0.0145672364, -0.0100956224, -0.0155573217, -0.00860237889, 0.00715377089, 0.00462580752, 0.00151048845, -0.00273084966, -0.0080140084, -0.0110532455, -0.0090487292, 0.0139504615, 0.0131876096, -0.00144759379, 0.0190875437, 0.0167340618, -0.015752092, 0.0231128074, -0.00831833854, -0.00309604499, -0.0149405468, -0.00913799927, 0.0120920232, -0.0147782378, 0.00228855736, -0.00360326073, 0.0208404809, 0.0175131448, 0.00557937333, 0.027836, -0.0019588673, 0.030725101, -0.0021789989, 0.0521661267, 0.00362557825, 0.0158251319, 0.00648830365, 0.00171743252, 0.0107529741, 0.00445944071, -0.0343770534, -0.00992519781, -0.0106555885, 0.0110694766, 0.0130658774, 0.00968173426, -0.00309604499, -0.010972091, -0.0144455042, 0.00680886395, -0.00166873983, 0.018178612, 0.016782755, -0.0114103258, -0.0304654073, 0.0233075786, 0.00596079929, -0.0107935509, -0.00839137752, -0.00460957689, 0.0106799351, 0.0254500564, 0.0124085257, 0.0113372868, 0.000289873802, -3.29690229e-05, 0.0108665898, 0.00279374444, 0.0229667295, -0.0121731777, -0.00135730929, -0.0236808881, 0.00335776829, 0.0139666926, -0.0192498527, 0.020694403, 0.00493419496, -0.0119053684, -0.00147701229, 0.017870225, -0.0117836362, -0.0107610896, -0.0118079828, -0.00652482314, -0.0169775262, 0.011605096, 0.000512034283, 0.00522635086, -0.00867541786, 0.012311141, -0.0213598702, -0.0138936536, -0.015516744, -0.00278765778, -0.00191118894, 0.0124247568, -0.00908119, 0.00139890099, 0.0146889677, 0.00499911839, 0.0102498159, 0.0128142983, 0.0254987497, 0.0118079828, -0.010355317, -0.000216834727, -0.0103147393, 0.00179554371, 0.00884584244, -0.00341863418, -0.0113454014, -0.00159570074, -0.00839949306, -0.00296214, -0.00366412662, 0.0155329751, 0.00295605347, 0.0088133812, -0.018957695, 0.0209054034, 0.0036073185, 0.000123063219, 0.0187142324, 0.0248495135, -0.00972231105, 0.0083508, 0.0150135858, 0.000205929595, -0.0116375582, -0.00437422842, -0.00699146185, -0.0314717218, 0.00584718306, -0.000716695853, 0.0275600739, -0.00120717345, -0.00449190242, 0.00775431423, 0.0215221792, 0.0165068284, -0.00582689466, 0.00970608089, -0.0106312418, -0.0120757921, -0.00326849823, 0.0187304635, 0.0284040812, 0.00666278601, -0.021798104, -0.027105609, 0.0208404809, -0.0113210557, -0.0221227221, -0.0135446889, -0.00458928803, 0.0047272509, -0.0129116839, -0.000942914048, 0.00816820282, -0.00502346456, -0.00889453571, -0.000705537095, 0.00401511975, 0.000745099911, 0.030416714, 0.0108909365, 0.00446755625, -0.00252187671, 0.00721057924, 0.0105095105, -0.00911365263, -0.00739723444, 0.00488144439, 0.00787198823, 0.0235997345, -0.018795386, -0.0114265559, -0.0106474729, 0.00693871127, 0.00554285385, -0.00402729306, -0.0162065569, -0.0295077842, -0.00406989921, -0.0154274739, -0.0209540967, 0.00438234396, 0.00449190242, -0.00452842237, 0.0108341286, 0.00138469902, -0.00443509454, -0.0185194612, -0.00363572245, -0.0269757621, 0.00624484, 0.00123050541, -0.0148593923, 0.0130496463, 0.0120433308, 0.0189414639, 0.0117917517, -0.00770156411, -0.0220253374, -0.000489970436, 0.00326849823, 0.015443705, -0.00990896672, 0.0061271661, 0.0113454014, 0.0190713126, 0.031991113, 0.00319951703, 0.011913483, 0.0185519233, -0.00424438156, -0.0208404809, -0.0204996318, -0.00820066407, -0.00432959339, -0.0130334161, 0.00607441599, -0.0279496163, 0.0173183735, 0.036357224, 0.00668713218, -0.0176105313, 0.0185681544, 0.0130090695, -0.0215546396, 0.0155329751, 0.0122624477, 0.0121163698, -0.0173021443, 0.0166853685, -0.00302503468, 0.00587964477, 0.0155410906, 0.00311633362, -0.0139666926, 0.00474753929, 0.010590665, -0.00510056177, -0.0200127047, 0.00173264893, 0.0194770843, -0.0123273712, -0.00938146282, 0.0328513496, 0.00152164721, -0.00476782816, -0.00262331986, 0.00266998378, 0.00499100285, -0.0123922955, 0.0321534202, 0.0103634326, 0.0307737943, -0.00977912, 0.0141939251, -0.0124896802, 0.0094788475, -7.01859753e-05, -0.0114022102, 0.00424843887, -0.0283391587, 0.00694276905, 0.030108327, -0.00141716085, 0.0037107903, 0.00615962781, 0.00855368655, -0.0106474729, -0.0109639755, -0.022723265, -0.00600543432, -0.00298445742, -0.0199964736, -0.014266964, 0.0308549479, -0.00238797162, -0.0251903627, -2.01301245e-05, 0.00736071495, 0.012927915, -0.0228044204, -0.00995766, 0.0118323285, 0.00047044261, 0.015135318, 0.00235753879, -0.000448125124, -0.0131794941, 0.0024650686, 0.00924349949, -0.00346935564, -0.0134229576, 0.0244762022, -0.00540083321, 0.00928407721, 0.0155005129, -0.00388121489, 0.0173670668, 5.37014676e-05, -0.00310416031, 0.0265862197, -0.00956000201, -0.0170749109, -0.000112918904, 0.00380817591, -0.018178612, -0.00244072219, 0.018795386, -0.0174482223, -0.00331719103, 0.0251741316, 0.0229180362, 0.00456088409, 0.0231128074, -0.0064964192, 0.00872411113, 0.00539271766, 0.022885574, 0.00602166541, -0.000961681071, -0.00235753879, -0.00930842292, 0.00441480568, 0.00219320087, -0.0359027609, -0.000677133037, -0.00143643504, -0.000405011786, -0.00089980074, -0.0164662525, -0.0034795, -0.00125992391, 0.013942346, -0.0158657078, -0.00310010253, 0.0138449613, 0.0144130429, 0.0122137554, 0.0112642469, -0.0145104285, 0.0175943, 0.00211813301, 0.00331313326, 0.0115807503, -0.00200553099, 0.00147092564, -0.0081966063, 0.0106312418, -0.0258882921, -0.00251579, -0.0150866248, 0.00933277, -0.00820878, -0.00810733624, -0.00422815047, 0.020077629, -0.0147295455, -0.0131551474, -0.00361137604, 0.00416728435, 0.00446349848, -0.000510005455, -0.0272029955, 0.00821283739, -0.0175131448, 0.0211001746, 0.0131389163, 0.0103715472, 0.0012497796, 0.00417134212, -0.0133823799, -0.00759200519, 0.00459740357, -0.00378991617, -0.0218954887, -0.0268946085, 8.85091504e-05, -0.00450001797, -0.0157602075, 0.0192173906, 0.013487881, 0.00826153, 0.00150947401, -0.00583095243, -0.00436205557, 0.0102417, -0.00818037521, 0.00191423227, 0.0193472374, 0.00928407721, 0.00801806618, 0.00896757469, 0.0058552986, 0.0186817702, -0.00490579056, 0.00426061219, 0.0127737215, 0.0137313446, 0.00912176818, -0.0113048246, -0.034312129, -0.0186655391, 0.0209703278, -0.00453247968, -0.0190388504, -0.010428356, 0.0232913475, -0.0174969137, -0.00333545078, -0.0161254033, -0.00190104463, -0.0173508357, 0.0162146725, -0.00105805206, -0.00475971261, 0.0108747054, 0.0150135858, 0.00963304192, -0.0110613611, 0.00678857556, -0.0129928384, -0.0190875437, 0.00819254853, 0.00835891534, 0.00411656313, 0.0079450272, 0.00253202091, -0.0204671696, 0.00136542483, 0.00613122387, 0.00685755676, 0.00527504366, 0.00238594296, 0.0113048246, 0.00271461857, -0.0042240927, 0.00638686074, 0.0230641142, -0.00755954348, 0.00203292072, 0.00410236092, -0.0241678152, 0.0274951514, 0.00596079929, 0.00393396523, 0.0148269311, -0.0281768497, -0.00511273462, -0.00477594323, -0.00110167265, 0.0240704305, -0.00290127401, -0.00193756411, 0.00510461908, 0.0158657078, 0.00512085, 0.010193008, -0.0194446221, 0.0110938232, 0.0126114124, 0.00380006037, 0.00942204, -0.00863484107, 0.0178864561, 0.0136664212, 0.0078070648, 0.00162613369, -0.0112967091, -0.00646395748, 0.00577820186, 0.00198930013, 0.00655728532, 0.00523040863, 0.00727144489, -0.000643656764, -0.02335627, -0.00998200569, -0.00039461386, 0.00424438156, 0.00401106197, -0.020694403, 0.0207268652, 0.0020521949, -0.00249753031, -0.010193008, 0.00779489148, 0.00854557101, 0.0030108327, -0.00237376965, 0.00321169, -0.0229342673, -0.000303061417, 0.0153219737, 0.0117105972, -0.026018139, -0.00358905853, -0.00356674101, -0.0138368458, 0.00397860026, 0.0132281864, 0.00413685152, 0.0111830924, -0.00691030733, -0.00294590904, 0.00519794691, -0.0114346715, 0.00156831113, 0.0186980013, -0.0171398353, -0.00177931285, 0.0153625505, -0.0126844514, -0.000765895762, -0.0177241471, -0.00371890585, -0.0115807503, -0.0294590909, -0.00964927208, -0.0259856768, -0.0036762997, -0.00291344733, 0.00457305694, -0.0158819389, -0.00258477149, 0.00968173426, -0.027105609, -0.0144941974, 0.00348152895, -0.00524663972, -0.00168192736, -0.00978723541, 0.00231290376, 0.00742158061, 0.00684944121, -0.00572950905, 0.00708073191, 0.00678046, -0.0173021443, 0.00455276854, 0.000855165767, 0.00800995063, 0.0156141296, 0.00254013645, 0.00614339719, -0.0128954528, 0.00855368655, -0.00313865114, 0.00795720052, -0.0148025844, -0.0242814329, 0.0105176261, 0.00637468742, -0.0192823131, -0.00299663073, 0.00539677544, -0.00426872773, 0.0034409517, 0.006545112, -0.0167340618, 0.0148188155, 0.00749867782, 0.0251416694, 0.019120004, -0.0198666267, 0.00852122437, 0.00443915231, 0.0169450641, 0.000694885559, -0.0258395988, -0.00450407574, 0.0163932126, -0.000518628105, -0.00916234497, -0.00382440677, -0.00765692908, 0.0132687641, -0.0131389163, -0.0117105972, 0.0102335848, 0.0110694766, 0.00352007733, -0.00199031457, 0.027738614, 0.0101037379, 0.0117836362, 0.00673176721, 0.00745404279, 0.00271664746, 0.0199964736, 0.002548252, -0.00230478845, -0.0115807503, -0.000153052359, -0.00590804918, 0.00260506, -0.0178053, -0.0320073441, -0.0185681544, 0.00519794691, -0.00236159656, 0.0177890714, 0.0157277454, 0.0252715182, 0.000862266752, -0.0171722956, -0.0119378297, -0.00198727124, -0.0265862197, -0.0266998373, -0.0303193294, 0.00337399915, -0.0104364716, 0.0167016, 0.0252228249, 0.00308995834, -0.00241434691, -0.00964927208, -0.013398611, 0.0111749778, -0.00084705028, -0.00514113903, 0.0112236701, -0.0041064187, 0.0214897171, -0.00257056952, 0.00663844, -0.0187466945, 0.00288707204, -0.00269433, 0.013942346, 0.00156121, 0.0388892442, 0.00410844758, 0.00257665594, -0.00451219128, 0.00688190339, -0.00101341703, -0.0180000719, 0.00335776829, 0.0036519533, -0.0136988824, 0.0236484278, -0.00379600259, 0.0129928384, 0.00815602951, 0.00331110437, 0.00213233498, -0.00365398219, -0.0242976639, 0.00092617597, 0.00652482314, 0.00218102778, 0.0155248595, 0.00694682682, 0.0164094437, -0.00521823578, -0.00920292269, -0.00478811655, -0.0171560645, -9.86534651e-05, -0.00574574, -0.00900815148, 0.0101848925, 0.000325886125, 0.00538054481, 0.0313418768, -0.0224798024, 0.00793285388, 0.0172696821, -0.00525881303, -0.0162633657, -0.00512085, 0.0244437419, 0.0101605458, 0.0123760644, -0.0082453, 0.00967361871, -0.017561838, 0.000264766626, 0.0157764386, -0.0113291712, -0.00716188643, 0.00174887991, -0.0189901572, -0.000303568639, -0.0128467605, -0.000827776094, 0.0202886295, 0.000998707837, 0.00732013769, 0.021019021, 0.0420055799, 0.00950319413, 0.00889453571, -0.00464609638, 0.00725115649, 0.00334559497, -0.00204002182, -0.0162390191, -0.0134797655, 0.00641932245, 0.0163201746, -0.00328067155, -0.013236302, 0.000187289421, 0.0472968556, 2.35538319e-05, 0.000231417187, -0.0358703, 0.0192336217, -0.00723898318, -0.0171398353, -1.59535211e-05, -0.00848876312, 0.012781837, 0.0130253006, 0.0299947113, 0.00547387218, 0.0117917517, 0.0156141296, 0.00791256595, -0.00978723541, 0.00560777728, -0.0104527017, 0.00315893977, -0.0023311635, -0.0228368826, 0.00426061219, -0.00147904106, 0.035415832, 0.0136501901, -0.000148867824, -0.00533591, -0.0113048246, 0.0122624477, -0.0038446954, 0.0177890714, -0.0240542, -0.00545764156, -0.00760417851, -0.0152976271, -0.0289883949, -0.00900003593, 0.00195582397, -0.0112317856, 0.00933277, 0.0161254033, 0.0149973556, 0.00605006935, 0.0048936177, 0.00712942472, 0.00120615901, -0.0154923974, 0.0196069311, 0.000457255, -0.0142426183, 0.0234698877, 0.00835891534, -0.00270650326, -0.0068656723, -0.00185336638, -0.024930669, -0.0059892037, 0.00467450032, 0.0168476775, 0.00932465401, -0.00138368458, -0.0100144679, -0.0180487651, -0.00540894875, -0.0056037195, 0.00656945817, -0.001518604, -0.0102254692, 0.00487332884, 0.00970608089, -0.0292480886, 0.014429274, 0.0227394961, -0.0106068961, 0.00671959436, 0.0105825495, -0.0101686614, -0.00539271766, -0.00643149577, -0.0019274198, 0.003879186, 0.0108178975, 0.00273287855, 0.000428597297, -0.0100631602, 0.0182435364, -0.00218102778, -0.00334559497, -0.000349471637, 0.00295808213, 0.000970810943, 0.0103958938, 0.00449190242, -0.00813574065, 0.0238918904, 0.00503563788, -0.00656945817, -0.00625295565, 0.0125383735, 0.0041754, -0.00120210135, 0.0124247568, 0.00434582448, 0.00914611388, 0.00518983137, 0.0243463553, -0.0119540608, 0.0127169136, 0.00533996755, 0.012927915, 0.00219725864, 0.0471020825, 0.0125951814, 0.00921915378, 0.0103796627, -0.00562806614, 0.00290127401, -0.00257868483, 0.00540083321, 0.00856991764, -0.0201263204, 0.0119378297, 0.00564835453, 0.00388324377, -0.0116537893, 0.00976288877, -0.00677234447, -0.0032969024, -0.000425046805, 0.0112723624, -0.0022723265, 0.0133418031, -0.0179189183, 0.0204022471, 0.00555096893, -0.00169410056, 0.0139261158, -0.0228693429, -0.00285866787, 0.00605412712, 0.00437422842, -0.0274139959, -0.00119297148, 0.00334356609, 0.00782735366, -0.00388730154, 0.000645178428, -0.000302554196, 0.00450001797, 0.00320966123, 0.00950319413, 0.00734854164, -0.00255433843, 0.00769750634, -0.0164662525, 0.00141005975, -0.00366412662, -0.00723086763, 0.00246101082, -0.0203048605, 0.00323400763, 0.0154193584, 0.0146402754, 0.0217007194, 0.00389744574, -0.0201263204, -0.041713424, -0.00437017065, -0.00589993363, 0.0284527745, -0.00268012797, 0.0204347074, 0.0090487292, -0.00667090155, 0.000102203972, -0.015354435, 0.0113454014, -0.00895945914, 0.00952754077, 0.0102903927, -0.00503158, -0.00960058, 0.00453247968, 0.0143075418, 0.0138855381, 0.0120027531, 0.000674596929, -0.0158089, -0.0131551474, 0.00199031457, 0.0106231263, 0.000271867641, 0.00580254802, -0.00865918677, 0.00292156264, 0.0136745367, -0.00595268421, 0.00136441039, -0.000143415251, -0.0139342314, -0.0159062855, -0.00701175025, -0.00697928853, -0.0117674051, -0.0100388145, 0.00158454198, -0.0095762331, 0.0159955565, 0.00775025645, 0.011605096, -0.00112094684, 0.00898380484, -0.00645178417, 0.00050848379, -0.000201364644, -0.0162146725, -0.00148715661, -0.00538054481, -0.00348761538, -0.00510461908, -0.0229342673, 0.00900815148, 0.0238918904, 0.0147214299, -0.00581472134, -0.0106150107, -0.0336304344, -0.0253364407, -0.0570029356, 0.00161598937, 0.0201587826, 0.00419163099, 0.00621643616, -0.00125992391, 0.00172656239, -0.000163830686, -0.00494636782, 0.01991532, 0.0168152172, -0.00766504416, 0.00897569, -0.00860237889, 0.00180771691, -0.0114509026, 0.0109152831, 0.00977912, -0.00582689466, -0.00747838896, -0.0109558599, -0.0233238097, -0.0183733832, 0.00907307491, 0.00854557101, 0.00413888041, -0.00185742404, -0.0201750137, 0.0095762331, -0.000608658884, -0.0198179334, -0.00347747118, -0.0125546046, -0.0236159656, 0.00706450082, 0.00035352938, 0.00446349848, -0.0143805807, 0.00777866086, 0.00376962754, 0.00169815833, 0.00827776082, 0.00995766, -0.0199964736, -0.00148918538, 0.0132119553, 0.0051167924, 0.000399939629, -0.0170424487, 0.0161254033, -0.00920292269, 0.0112399012, -0.0164013281, 0.00620426284, -0.00219117198, 0.00809110515, 0.0122462166, -0.026797222, 0.018649308, 0.0120027531, -0.00695494236, -0.00243869331, 0.00145570922, -0.00265375269, -0.0110938232, -0.00778677594, 0.0119946375, -0.00216885447, 0.00265172403, 0.0216195639, 0.0056686434, -0.0123679489, -0.00240420271, 0.00295808213, -0.0224311091, 0.0179513805, 0.0120189842, -0.00923538394, 0.000936320284, 0.00439451728, 0.0192498527, -0.0125302579, -0.000232938837, 0.000465624064, 0.00676017161, 0.0144779664, 0.00416728435, -0.015208357, 0.0133823799, -0.00702798134, 0.00969796535, 0.00743375393, -0.00209784438, 0.0384672433, 0.00392990746, 0.0202723984, -0.0154599361, 0.0111019379, 0.00777054531, 0.0118729062, -0.0182435364, 0.00466638478, -0.00693871127, 0.00937334727, 0.0194446221, -0.0324131139, -0.00954377186, 0.00777866086, 0.00269230129, -0.0102498159, 0.0162714813, 0.00363572245, -0.00101088104, 0.0026314354, 0.0179838408, 0.000727854611, 0.0141858095, 0.010574434, 0.00702798134, -0.0104445871, 0.00988462, -0.0316015705, 0.00834268425, 0.000710102031, 0.0139342314, -0.0158089, -0.00776648754, -0.0125059113, -0.0223824158, -0.0281768497, 0.0132849952, 0.008310223, 0.0287124682, -0.0111993235, -0.0169126019, -0.0168476775, -0.0110857077, -0.0170424487, -0.0100550447, 0.0131551474, 1.87035812e-06, -0.0109071676, 0.00882961135, -0.00198727124, 0.00725115649, -0.0150054703, -0.0246872045, 0.0120676775, -0.00563212344, -0.0188765414, -0.016620446, -0.00786387268, 0.0139504615, -0.00632193685, -0.0367143042, 0.00346935564, 0.00079176377, 0.00772591028, 0.00462174974, 0.0127980681, -0.00405569701, -0.0234211944, -0.00831833854, -0.0207755566, 0.0105419718, 0.00564835453, 0.00927596167, -0.00281200418, -0.00649236143, -0.00188988587, 0.00419568876, 0.0105338562, 0.00697117299, 0.0153219737, -0.0193472374, 0.0148593923, 0.0146727376, -0.0051857736, 0.00697117299, 0.0113454014, -0.000641120714, 0.0116943661, 0.00760823628, 0.00654105423, -0.00426061219, -0.0329487361, 0.00822501071, 0.0179513805, -0.0102822781, -0.00898380484, 0.00222972035, 0.0226583425, -0.0104608173, 0.00408004364, 0.00865918677, -0.0190063883, -0.00781112257, 0.0192173906, 0.00405569701, -0.0123517178, 0.00612310832, 0.0155086285, -0.011353517, 0.0028444659, 0.0137719223, -0.0073039066, -0.018178612, -0.0119053684, -0.015516744, 0.0125059113, -0.00287692761, 0.00379803148, -0.00163830689, 0.012148832, 0.0115726348, 0.00959246419, -0.0267647598, 0.00577414408, 0.00916234497, 0.0195907019, 0.0166853685, -0.00140600209, 0.0259694457, -0.00140194432, 0.01347165, 0.0085618021, 0.0118160984, 0.00812356733, 0.0108422441, -0.0105825495, -0.000379143778, -0.00132281869, 0.0180974584, -0.0248982068, -0.00147599785, 0.00534808263, -0.014266964, 0.00889453571, -0.000349978858, 0.0322832689, 0.00836703088, -0.0154923974, -0.0182435364, 0.00377977174, -0.00863484107, -0.00606630044, -0.00281200418, 0.00144657935, -0.0169937555, -0.00745404279, 0.00167279749, 0.0134310732, 0.0013380351, -0.00861861, 0.00960869528, 0.0312282592, 0.00313256448, 0.0185519233, -0.00386701291, 0.0349938273, -0.0102741625, -0.00964927208, 0.0184545368, 0.00941392407, -0.00897569, 0.0171885267, 0.00343486504, -0.00561589282, -0.0112317856, 0.00339225889, -0.00678046, 0.00947073195, 0.0178864561, -0.0202561673, -0.000472471467, -0.0100712758, 0.00741346553, 0.0130415317, -0.000945957378, -0.00882149581, 0.00626107119, -0.0205645561, -0.0141127706, 0.0109071676, -0.0195095465, -0.0191037729, -0.030871179, -0.00910553709, -0.000100492121, 0.00374528114, 0.0086997645, 0.00760823628, 0.00163932133, 0.00326646934, -0.0162714813, -0.0153463194, -0.0137151135, 0.002489415, 0.00230884599, 0.0068656723, 0.00103015522, -0.000120590543, 0.0137313446, 0.00348761538, -0.00384266651, -0.0157115143, 0.00179960148, -0.029329244, 0.0104851639, -0.0119378297, -0.0253851339, 0.0128061827, -0.00914611388, 0.00439857505, -0.00678857556, 0.0125708347, -0.000323350047, 0.00165859552, 0.00490173278, 0.00753519731, 0.0104932794, -0.0102173537, 0.0108503597, 0.0215059482, -0.0117349438, 0.00325023849, 0.0273815356, 0.0103066238, -0.000223301729, 0.0232588854, -0.00662220875, 0.000953058363, -0.00715377089, -0.0243625864, -0.00192437659, 6.71426824e-05, -0.0262291413, 0.00852934, 0.0270082243, -0.00882149581, -0.0015946863, 0.0054657571, 0.0118729062, -0.0249144379, 0.0165474061, -0.0272192266, -0.015914401, -0.00180061592, 0.0312607214, -0.00473130867, -0.013487881, -0.00533185201, 0.00725927157, 0.022106491, -0.0077380836, -0.0164906, -0.00585124083, 0.00501940725, -0.00312039116, -0.00028632328, -0.00615151273, -0.0118729062, -0.0183733832, -0.0212624837, 0.00496665668, -0.00520606246, -0.00110775919, 0.00263346406, -0.00871599559, -0.010899052, -0.00200451654, -0.00618803222, -0.0052344664, 0.0814142153, 0.0227557272, 0.0207106341, -0.0320560336, -0.00582689466, -0.0316664949, -7.76674133e-05, 0.0478487052, 0.00672770943, 0.0082655875, 0.00518171629, 0.00488956, 0.000709087588, 0.00556314224, -0.0128224138, -0.0145672364, -0.0185681544, -0.00327864266, 0.0268783774, -8.41978108e-05, 0.00995766, -0.0125870658, -0.00319343037, 0.0108503597, -0.0109233987, -0.00648018857, -0.00757983234, -0.00320763234, -0.0235997345, 0.0036073185, -0.0113048246, 0.0119297141, -0.00676828669, 0.00924349949, -0.0190875437, -0.00626918674, 0.00453247968, 0.0195420086, 0.00892699696, 7.98230758e-05, 0.015752092, -0.00251376117, -0.0157845542, 0.00789227709, 0.0108909365, 0.00480434764, -0.0035099329, -0.0142263873, 0.0143805807, -0.0169937555, 0.000220765651, -0.0209378656, -0.00912176818, -0.00776648754, 0.00176612521, 0.020077629, -0.000538155902, 0.0167016, 0.0253526717, 0.00736071495, -0.00744592724, 0.0149811246, -0.00352007733, -0.00216073915, 0.00862672552, 0.00641526468, -0.013918, 0.00473942375, -0.00594456866, 0.0118323285, 0.000430372573, -0.0149080856, -0.0148593923, -0.030416714, 0.0283878502, 0.00572139351, -0.0124004101, 0.00223377813, -0.0123192556, -0.0112317856, -0.00176916854, -0.00782735366, -0.00293576485, 0.00359108741, 0.0115239415, 0.00967361871, -0.0196231622, -0.00568487402, -0.0145834675, -0.0137151135, 0.00243260665, 0.00319140148, -0.0199964736, -0.00288707204, -0.00234130793, 0.0160929412, -0.00686161453, 0.00947073195, 0.0201750137, 0.0028099753, 0.0173183735, 0.0100388145, -0.0025827426, 0.0083345687, 0.000894728582, 0.0261317547, -0.0136664212, -0.00499911839, 0.0152651649, -0.00482869381, 0.0143481186, 0.00286475453, 0.0371363088, 0.0286962371, 0.00654105423, -0.000448885927, 0.00514925411, 0.00860237889, 0.0142507339, -0.00941392407, 0.0165068284, 0.0105500873, -0.0150379324, -0.010266047, 0.00696305791, 0.00445538294, 0.00671553658, 0.00405975478, 0.0143075418, -0.0228531118, 0.00802618172, 0.0026760702, 0.0136826523, -0.0143318884, 0.0159874409, 0.00322589208, -0.00818443298, -0.0059892037, -0.0148269311, 0.00669524772, 0.0216195639, -0.0223174933, 0.0183246899, -0.00309604499, -0.00583095243, -0.0162390191, 0.00118282717, -7.35462818e-05, -0.0592103377, -0.0221551843, 0.00828587636, -8.93967735e-05, 0.0175943, -0.00564429676, 0.00241637579, -0.00513302349, -0.00309401611, -0.0109152831, -0.00377977174, -0.00821283739, 0.0194446221, 0.00373310782, 0.00500317616, -0.00566458562, -0.0151515491, 0.00422815047, -0.00956811756, 0.00739723444, -0.000371281931, 0.00612310832, 0.0160280168, -0.00697928853, 0.00241231802, 0.00497477222, -0.0095762331, 0.0095762331, 0.00194669398, 0.00852122437, -0.00641526468, -0.0146970833, -0.00672770943, 0.00487738661, 0.00113413436, 0.0557044633, -0.000183485303, -0.00741346553, -0.0331759676, 0.018957695, 0.0167340618, 0.0124328723, -0.0115564037, 0.0137313446, -0.0104445871, -0.00366615551, 0.0205320939, 0.00071314536, 0.00680074887, -0.0128224138, -0.0274464581, -0.00546981441, -0.0205158629, -0.0056686434, 0.00111790351, 0.00816820282, -0.000643656764, -0.00856991764, -0.00165149441, 0.00225812453, -0.00201466097, -0.00282417727, -0.0062935329]
29 Oct, 2024
Difference between Message and Packet Switching 29 Oct, 2024 The Message and the Packet Switching are a two fundamental methods of the data transmission in a computer networks. A Message Switching transmits the entire message as a single unit through a intermediate nodes using store and forward technique where each node must receive the complete message before forwarding it. A Packet Switching divides a messages into the smaller packets that are sent independently through the different network paths and reassembled at a destination. While the Message Switching requires a more storage and can cause the delays. Packet Switching offers a efficient resource utilization and forms the basis of a modern internet communications. What is Message Switching? In this technique the entire message is transmitted without any break from one node to another. It firstly stores and then forwards information that requires more time. Due to this, the access time is increased. No direct link is present between the sender and the receiver. Advantages of Message Messaging allows for a quick and a convenient communication enabling the people to stay connected regardless of distance or time zones. It provides written record of a conversations which can be useful for a reference or documentation purposes. Messaging platforms support the multimedia sharing allowing users to easily exchange the photos, videos and files. This versatility enhances the richness of a communication and facilitates collaboration in the both personal and professional settings. Messaging offers less intrusive form of a communication compared to the phone calls allowing recipients to respond at convenience. It also provides the options for group conversations making it easier to coordinate with a multiple people at same time. Disadvantages of Message The instantaneous nature of a messaging can create the pressure for immediate responses leading to stress and a constant interruptions. This can negatively impact the productivity and personal time blurring the lines between a work and leisure. Messaging lacks the variation of face-to-face communication such as a tone of voice and body language which can lead to the misunderstandings. This limitation can sometimes result in a miscommunication or misinterpretation of the sender intent. Excessive reliance on a messaging can reduce in person interactions and potentially impact the development of a social skills. It may also contribute to sense of disconnection or isolation despite the increase in communication frequency. What is Packet Switching? The packet switching information is transferred in the form of a data packets between the sender and the receiver. These packets are forwarded one by one from a sender to a receiver. Each packet is associated with a Header. Then, these packets then reassembled into the original message. This improves the performance as the time require to access the data packet is reduced. Due to this, the overall performance of the network is improved. Advantages of Packet Switching Efficient use of network resources as multiple users can share the same communication lines simultaneously. This leads to better utilization of available bandwidth and reduced costs. Improved reliability through dynamic routing, allowing data to find alternative paths if one route is congested or fails. This enhances network resilience and ensures data delivery even in partial network failures. Flexibility in handling various types of data and traffic patterns. Packet switching can easily accommodate different data types and varying loads, making it adaptable to diverse network requirements. Disadvantages of Packet Switching Potential for packet loss or out-of-order delivery, requiring additional protocols for error checking and sequencing. This can lead to increased complexity in network management and potential data integrity issues. Variable latency due to different routing paths and network conditions, which can affect real-time applications. This unpredictability can be problematic for time-sensitive services like voice or video communications. Overhead from packet headers and routing information, reducing the effective data transmission rate. Each packet carries extra information for routing and reassembly, which consumes some of the available bandwidth. Difference between Message and Packet Switching Message Switching Packet Switching A complete message is passed across a network. Message is broken into smaller units known as Packets. In this, computer language used is ASCII, baudot, morse. In packet switching, binary type is used. In message switching there is no limit on block size. Packet switching places a tight upper limit on block size. Message exist only in one location in the network. Parts i.e. packets of the message exist in many places in the network. Example: Hop-by-hop Telex forwarding and UUCP(UNIX-to-UNIX Copy Protocol) Example: Frame Relay, IP, and X. 25 Physical links are allocated dynamically. Virtual links are made simultaneously. Access time is reduced due to increase in performance as packets are stored in disk. Packets are stored in main memory. Conclusion Message switching and packet switching are two ways to send data across networks. Message switching sends entire messages as one unit, like a complete letter. Packet switching breaks data into smaller packets, sending each separately, like mailing a letter in pieces. Packet switching is more efficient and flexible, allowing better use of network resources. It’s the basis for how the internet works, while message switching is mostly obsolete for data communications. Think of message switching as sending a postcard, and packet switching as sending a series of text messages. Frequently Asked Questions on Message and Packet Switching – FAQ’s Which method is more efficient? A Packet switching is efficient. It allows the network resources to be shared better as small packets from a different sources can be interwoven on the same lines reducing wait times and making it better use of a available bandwidth. Give the real world analogy for the message and packet switching? A Message switching means sending a complete postcard through a mail. The Packet switching is more like sending the series of a text messages where each message can take its own route to reach the recipient quickly. Which method is used for a internet? The internet uses a packet switching. This allows fast & more flexible data transmission enabling the quick loading of a web pages and smooth video streaming and rapid file downloads. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System/Introduction of System Call/How much Stack size required for BIOS interrupt call?/Difference between Interrupt and Polling/Difference between Difference Engine and Analytical Engine/Difference Between Store‑and‑Forward Switching and Cut‑Through Switching/Difference between Message and Packet Switching
https://www.geeksforgeeks.org/difference-between-message-and-packet-switching?ref=asr10
PHP
Difference between Message and Packet Switching
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, Difference between Difference Engine and Analytical Engine, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Difference between Interrupt and Polling, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, Difference between Message and Packet Switching, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, Introduction of System Call, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Difference Between Store‑and‑Forward Switching and Cut‑Through Switching, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How much Stack size required for BIOS interrupt call?, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0526469946, -0.00493374933, -0.0150986454, 0.0413611382, 0.00875416398, 0.0356877074, 0.00131922506, 0.0165475048, -0.0343151, -0.0146334851, 0.0341625921, -0.0274215806, 0.0498102792, -0.025530437, -0.0260489751, -0.00979124289, -0.00588694634, 0.020284038, 0.012894853, -0.0015003325, 0.0439538322, -0.0227699764, -0.0335220434, -0.0265370123, -0.0289314445, 0.0207720753, -0.00550948037, 0.0174778253, -0.0245086085, 0.0337355584, 0.00181393442, 0.0204365496, 0.0173710678, -0.0177370962, -0.00947859418, -0.029861765, 0.0110570891, -0.0228004791, -0.00171861472, -0.00547897816, -0.0103860376, 0.0379753821, 0.00894480385, -0.0211838558, -0.0484376736, 0.0254084263, 0.00270898663, -0.015647687, 0.0416051559, -0.0576188713, -0.00973786321, -0.0211228523, 0.0214431267, 0.0592964962, -0.0169592872, 0.023013996, 0.0210008435, -0.00898293126, -0.0154417958, -0.0221751817, 0.0198722575, -0.0243255943, -0.00291297096, -0.0151291471, -0.025789706, 0.0321494378, -0.0686302, 0.00904393569, 0.0329730026, -0.0461805, -0.0362672508, 0.0295414906, 0.001338289, -0.0127957202, 0.0132608805, -0.0161357243, 0.0319054201, 0.000322657288, -0.00116671354, 0.0106376819, -0.0165017508, 0.0311733652, 0.0185149051, -0.00925745256, 0.0233037677, 0.00273948908, 0.0110647138, -0.0468820557, 0.102304757, 0.0247373767, -0.0123458114, -0.00959297735, 0.0126660857, -0.00322561967, 0.00392717309, -0.00892192684, 0.0264912602, -0.0121322954, 0.00817462, 0.0171270482, 0.0272385664, 0.00830425508, 0.00435420545, -0.0416356586, 0.042428717, -0.0125135742, -0.014000562, 0.0371213146, 0.0363282561, 0.0451434255, 0.0348946452, 0.016425496, 0.0225412101, 0.0238985624, -0.0127575928, -0.0261709858, -0.00345248054, -0.0373958349, 0.00179677689, 0.00682489248, 0.00647792872, 0.0458144732, -0.0270403, 0.0230597481, -0.0348946452, 0.0170355421, 0.00384519785, 0.00160423107, -0.0249813944, -0.0254084263, -0.0114536183, 0.019796, 0.000356495788, -0.00130016112, 0.00243827864, -0.0269792955, -0.0137794204, 0.0370603092, 0.00218282174, -0.0149461338, 0.0263539981, 0.00960822869, 0.00107044051, -0.0157239418, -0.0143513381, 0.033674553, 0.0160899702, 0.0193079636, -0.0290077, 0.0324544609, -0.0384329148, -0.0389209539, 0.00907443836, 0.0156781897, 0.000780192, -0.0160442162, 0.0169592872, 0.00490324711, -0.00201696553, -0.00460203644, -0.00188542425, -0.0364502631, 0.0237765536, -0.0127118388, 0.0128567256, 0.0061347778, 0.0597845353, -0.027604593, -0.0204060469, 0.0435573049, -0.0333390273, 0.0434963, 0.00642073713, 0.04615, 0.00819749665, -0.00303307385, 0.00154227321, 0.00910494104, -0.0216108896, 0.0152435312, -0.0279401187, -0.0183928944, -0.00293394132, 0.0143818408, 0.00700028101, 0.0342540964, 0.00510532456, -0.00104375102, -0.0116290068, -0.0151977781, -0.0213363692, 0.0126965884, 0.0496882685, 0.0349251479, -0.00828137808, -0.00629110215, -0.0471565761, -0.0011752923, 0.0193994716, -0.00892955251, -0.0184386484, 0.00453340635, -0.0060432707, 0.0190334432, 0.0211381037, -0.0201162752, -0.00493374933, 0.00109236408, 0.00928795431, -0.0020284038, -0.0498407818, -0.00958535168, 0.0132532548, 0.00096749526, 0.00135354011, -0.00751500763, -0.0240358226, -0.0253169201, -0.0594490096, -0.0137107903, 0.0164865013, 0.0116290068, -0.000387236389, 0.00142693636, -0.0811361521, -0.0286721755, 0.0306395739, -0.040049538, -0.0257592034, 0.0149385082, 0.0172643103, 0.0295719933, 0.00181870046, 0.000977980439, -0.0388904512, -0.0437098145, -0.0123839397, 0.0219769161, -0.0683861896, 0.0432217792, -0.0101038916, 0.0246763714, -0.0282146409, -0.027604593, -0.0286721755, 0.0413916409, 0.0277266037, 0.0320884325, 0.00378228677, -0.0230292473, -0.0187284201, 0.00964635704, 0.00153083482, 0.00722142262, -0.0248593856, -0.0116976369, 0.00133638259, -0.0204365496, -0.000101515514, 0.0020684381, 0.0208940841, 0.00566961756, 0.00866265688, 0.0459974892, -0.0272080638, -0.00939471275, 0.0320579298, -0.0176760908, 0.00330759468, -0.0219006613, 0.0109350793, -0.051182881, 0.00831188075, 3.2498072e-05, -0.0195367318, -0.00771708554, -0.0141835762, 0.0243408456, 0.0250576511, 0.0625297427, -0.0383414067, -0.0434657969, 0.00525783608, 0.013672662, -0.0347421356, 0.00725192484, -0.0251644086, -0.00319321104, -0.055392202, -0.00313601922, -0.0314783864, -0.0193384662, -0.000572395, 0.0115985051, 0.0289619472, -0.0166695137, 0.00265179481, 0.00417881692, -0.0139395576, -0.00809836388, -0.0413916409, 0.00425126, 0.0196282379, -0.00115908787, -0.0620417073, -0.0258659627, 0.00718710758, 0.0381583944, 0.00188065832, -0.023273265, 0.0479191355, -0.00855589937, -0.0116671352, -0.0127194645, 0.0126889627, 0.00828900374, 0.00993612874, -0.0112858564, -0.0101801474, -0.0518844351, 0.012353437, 0.0193232149, 0.00700028101, 0.0548431613, -0.0187894255, -0.0102030234, 0.0270403, 0.0687522143, -0.00615765434, -0.00582212908, -0.0137565434, -0.021931164, 0.0172490589, 0.0172490589, 0.0435878076, -0.0219464153, -0.00788484793, 0.0181946307, 0.0127652185, 0.0366332792, 0.0129711088, -0.00167190807, 0.00631016633, -0.0113239838, -0.0226784702, 0.0135430275, -0.0190639459, 0.0370908119, 0.0212143585, -0.00594795123, 0.00168429967, 0.0181336254, 0.0340405814, 0.00225717109, 0.00817462, -0.0153884171, 0.0102411518, -0.00957772601, 0.00499094091, -0.0260947291, 0.0271318071, -0.0107520651, -0.0468210503, 0.0102030234, -0.037700858, -0.0118882768, 0.0076217656, -0.0323324539, 0.0134515204, 0.00175769581, 0.014191201, -0.0066876323, -0.0205890611, 0.00091459282, -0.0322104432, 0.0337660611, 0.0249966457, -0.0292669702, -0.0231360048, 0.0100810146, 0.0157391932, 0.0115908794, 0.0151672754, -0.00791535061, -0.0242493395, -0.00245543616, 0.0267810319, -0.00616528, -0.0363282561, 0.0393784866, -0.00780859217, 0.0255609378, 0.0105080474, 0.0481326506, -0.0205738097, -0.000886473514, -0.00719854608, -0.0193689689, 0.0157544445, -0.0327289812, 0.0329119973, 0.0118882768, -0.0258659627, 0.019155452, -0.0143818408, 0.027741855, -0.0131236203, -0.0322104432, -0.031508889, -0.0018253728, -0.00759126339, -0.0354436897, 0.00931845699, -0.0240358226, -0.0195672344, 0.0340710841, -0.0517319255, 0.048712194, 0.0228462331, -0.000964159088, 0.0126737114, 0.0143284621, 0.0274215806, 0.0179506112, 0.0191249512, 0.0184996538, 0.0198570061, 0.0080754878, 0.0243408456, -0.00803735945, 0.0250729024, -0.0164559986, -0.00316652143, 0.0112553537, -0.0165322535, -0.0351386666, 0.018987691, 0.00838813651, -0.0230292473, -0.00220188568, 0.0296635, 0.0556667224, -0.000888379873, -0.0313868821, -0.0653969571, 0.0089066755, -0.0462110043, -0.0131007433, 0.0175388306, -0.0107368147, -0.037883874, 0.0220531728, -0.0197502486, -0.00359927304, 0.000181941534, -0.0200857744, 0.0333390273, -0.0498712808, 0.0269030407, 0.0114688696, 0.048498679, 0.0264760088, 0.0174015705, -0.0159222074, 0.0500542969, 0.0093565844, -0.0101572704, 0.0319969282, -0.00552854454, 0.0204365496, 0.0156171843, -0.0405375734, 0.0176760908, 0.0341320895, 0.0389819555, -0.0409036, -0.0074196877, -0.012612707, 0.0106300563, -0.0430997685, -0.00285387272, 0.0360842384, -0.00175007025, -0.00336288, -0.00252025365, 0.00244209147, 0.00215613237, 0.0117281396, 0.020802578, -0.0542331152, 0.0195672344, 0.00449146563, -0.0275740921, -0.00848726835, -0.0193384662, -0.00693927612, -0.0167610217, 0.013482023, -0.00112667924, 0.026567515, -0.00401486689, -0.00570393261, 0.00592507422, 0.0632007942, -0.039531, 0.0132303787, 0.0204823036, 0.0393174812, 0.00664950442, -0.0326984785, 0.00157849467, 0.0434047915, -0.0144657223, 0.0270555522, 0.0013506806, 0.0117433909, -0.0325154662, -0.00374797173, 0.000114919851, 0.018118374, 0.00936421, 0.0161967278, 0.0277876072, 0.0181946307, -0.0106071793, 0.00981411897, 0.0322714485, -0.0085482737, -0.0162729844, -0.0549041629, -0.0305023137, 0.0133981416, -0.00338766328, 0.00788484793, -0.00950909592, 0.00382232107, -0.00894480385, -0.00363740092, -0.0104851704, 0.0232122615, 0.000232341845, 0.017813351, -0.0133981416, 0.00869316, 0.012566953, 0.0380668864, -0.0303193, 0.000489943428, 0.000892669254, -0.00566580473, 0.0108054448, 0.0193537176, 0.000811647507, 0.00862452947, -0.0335525461, -0.0014183576, 0.0211228523, 0.00766370632, -0.00679439027, -0.00879991706, -0.0114459936, 0.0438623279, 0.0273453239, 0.0319054201, -0.00107330014, -0.0165780075, 0.0220989268, 0.0133676389, 0.000969878223, 0.0342235975, -0.0152206542, -0.00817462, 0.0129406061, -0.0064283628, 0.0333390273, 0.0197655, 0.019979015, -0.0191249512, 0.0129482318, 0.00812124088, 0.0077933413, -0.0015937459, 0.0272843186, -0.0153274126, 0.0242035855, 0.0132608805, 0.0122009255, 0.0121627972, 0.00993612874, 8.66218e-05, 0.0308378395, 0.00417119125, -0.00765226781, 0.0135964062, -0.00365455844, -0.00208750204, 0.000434657966, 0.0123610627, 7.72089843e-05, -0.0100276358, 0.0155790569, 0.0474616, 0.0384024121, -0.0170355421, -0.0141073205, 0.0172033049, -0.00429701339, 0.0210770983, -0.00591363618, 0.00301210349, -0.00316461502, -0.0206653178, 0.0174625739, -0.00624153577, -0.0149613852, -0.00647411589, 0.00732055539, -0.00277761696, 0.000245686591, -0.000545228831, 0.00735868327, -0.018896183, 0.0139471833, -0.00579543971, 0.0157696959, 0.00905156136, 0.00423600897, -0.0287484303, -0.010729189, -0.0196587406, 0.0086169038, 0.0176150855, 0.0061347778, 0.010142019, -0.00126489287, -0.0242950935, -0.0216108896, -0.0223886985, -0.0182098821, -0.00947859418, -0.0331255123, 0.012612707, -0.00276617846, 0.130915925, 0.0087084109, 0.0512438864, 0.0159679614, 0.0303650536, 0.0215651356, 0.0216566417, -0.016379742, 0.0142750824, 0.0051510781, 0.0188199282, -0.00682107965, -0.0290534534, 0.0100047588, -0.053440053, -0.00495662587, 0.014259832, 0.00064579118, -0.0200552717, -0.000235678031, 0.0216108896, -0.0163644906, -0.00843389, -0.00753788417, 0.0190334432, -0.0131159946, 0.0317529067, -0.00547897816, -0.0172948111, 0.00449527847, 0.0113773625, -0.0282298904, -0.0272843186, -0.0194604769, 0.00451053, 0.0165475048, -0.0410561152, -0.00259841583, -0.0142827081, -0.0140768178, -0.000145720041, -0.0139166806, -0.00329996902, -0.0200400203, 0.00293394132, -0.0164407473, -0.00568105606, 0.00860165246, -0.0219006613, 0.0179353599, 0.0213821214, -0.00339910155, -0.00569630694, -0.00220760494, 0.0034734509, -0.0128109716, -0.028824687, 0.0320884325, 0.014755494, -0.00940233842, -0.050877858, -0.0214431267, 0.00947859418, 0.00375369098, -0.0237308, -0.0453264378, -0.0269792955, 0.0184996538, 0.0173558164, -0.00505957147, 0.0347421356, 0.0110113351, -0.00750356913, -0.031295374, -0.00702315755, -0.0171880536, 0.0158154499, 0.0125364512, 0.011484121, 0.0326679796, -0.0152359055, -0.00299685239, -0.00224573282, -0.000157635, 0.0278181098, -0.00303688669, -0.000971308036, 0.0166390128, -0.0105538005, 0.00492993649, -0.00504432, -0.00599370478, 0.00830425508, 0.0111257192, -0.00235630362, 0.0399885327, -0.0099895075, 0.0305023137, 0.00117338588, -0.024356097, 0.0122619299, 0.0095395986, -0.0101343933, 0.0195214804, 0.0212296098, -0.0167610217, -0.0102030234, -0.0189114343, 0.00103707868, 0.00802210812, -0.0237460509, -0.0316309, 0.00064245495, 0.00154322642, 0.0146792382, 0.00774758775, 0.0217176471, 0.0293432251, 0.0209398381, 0.0100123845, 0.00815174356, -0.0323324539, -0.0275588408, -0.0382499024, 0.00639023446, -0.000390810892, 0.00911256578, 0.0130626159, 0.0323019512, 0.0236850455, -0.016730519, -0.0156324357, 0.00658849953, 0.0236850455, -0.0344371125, -0.0219159126, 0.0119797839, -0.0181946307, 0.0280468781, -0.00644361367, 0.0310056023, -0.00249356404, -0.0216261409, 0.0319664255, 0.00478505064, -0.00574587332, 0.0152130285, 0.01536554, 0.0391954742, 0.00737393415, 0.010942705, 0.00541034807, -0.00397292618, -0.00410256116, 0.0119340299, -0.0281993896, -0.0229529906, 0.000613382435, -0.0108740749, 0.00152130285, 0.00748831779, -0.00635973224, -0.057344351, -0.0434657969, -0.060028553, -0.0366332792, 0.00065722951, 0.000338146754, -0.0120941671, 0.00475073513, 0.0215498842, 0.0130092371, 0.0095395986, -0.00865503121, -0.00188351783, -0.0253321715, 0.0242798422, 0.000639595382, -0.00603564549, 0.0274673328, -0.0140539408, -0.0461194962, -0.0179048572, 0.0179658625, -0.00104470423, 0.0423677117, 0.0369993076, -0.0105385492, 0.00183204515, -0.0307310801, -0.013131246, -0.0287179276, 0.00355351949, 0.00580687774, 0.0457839742, -0.00479648868, 0.00845676661, 0.00324849645, 0.0238680597, -0.00651224377, -0.00169287843, -0.0311886147, 0.0165780075, -0.0111638466, 0.00384138501, 0.0394394919, -0.0313563794, 0.00188828388, 0.0238680597, -0.000436564354, 0.0154265454, -0.00171194237, 0.0283213984, 0.027391078, -0.00174530421, -0.0169745367, -0.0149003798, 0.0114383679, 0.0173710678, -0.0183776431, 0.0179506112, 0.0111409696, 0.0214736294, -0.0294804852, -0.00603183266, 0.00156038394, -0.0194757264, 8.16175179e-06, -0.016425496, -0.0372433253, 0.0320579298, 0.0204365496, -0.0174778253, 0.0264912602, 0.0015136773, 0.0239748191, -0.00153941358, 0.00703840889, 0.0021199109, -0.037883874, 0.0251796599, 0.0212296098, 0.0093565844, -0.0103174075, -0.0547516532, 0.00278714881, -0.0194909777, -0.0102335261, 0.0304565597, -0.04615, -0.00439614616, -0.00393098546, -0.0113849882, -0.0313563794, -0.0178438537, 0.00692021241, -0.0159527101, -0.00148412818, 0.0124906972, -0.0281536356, 0.0108130705, 0.0203755461, -0.0345591195, -0.0269487947, 0.00331903296, 0.0034848894, -0.0256676972, -0.00719854608, 0.0205738097, -0.0239443164, 0.0227547251, -0.00309979753, 0.05591074, -0.023273265, -0.0549956709, -0.00886092242, 0.0154341711, 0.000814030471, -0.011461244, 0.0167457704, 0.00698884251, 0.0149080055, 0.00508626085, -0.0060661477, -0.0100886403, 0.0075302585, 0.0273453239, 0.0118272724, 0.00516632944, -0.00844914094, -0.00713372836, -0.0420321897, -0.000477551832, -0.0141454479, -0.00812886655, -0.0416966639, -0.0130016115, -0.0277723558, 0.0120102856, 0.0216871444, -0.0105461748, 0.0159832127, -0.00492612366, -0.00190734782, 0.0154951755, 0.00846439227, 0.00288818777, -0.0316003971, -0.00016990742, 0.0141301965, -0.0327594839, 0.00973786321, -0.0587169528, -0.0304718111, -0.0360537358, -0.0147097409, 0.0350776613, 0.0199637637, -0.0130702415, 0.0211381037, 0.00925745256, 0.00634066854, -0.0077132727, 0.00843389, -0.0339185745, -0.0219464153, 0.00873128697, -0.00985224731, -0.00858640112, 0.0185301546, 0.0116213812, 0.00725573767, -0.0159679614, -0.0123686884, -0.00988275, 0.0075302585, 0.0130397389, 0.0173558164, -0.0131159946, -1.39181702e-05, -0.00104851706, 0.00785434619, -0.0280621275, 0.0105843032, -0.0281078815, 0.0165475048, 0.015906956, -0.00349251484, -0.0148088736, -0.0121322954, 0.00701553188, -0.00835763384, 0.00324277719, 0.00510532456, 0.0231207535, -0.0360842384, -0.0256524459, -0.00488418294, -0.0185759086, -0.0258354601, 0.0337050557, 0.0166237615, 0.0190181918, 0.0253626741, 0.0198722575, -0.0217176471, 0.00635973224, 0.00332284579, -0.0347421356, -0.0162577331, 0.00389285781, -0.00892955251, 0.00552854454, -0.037792366, -0.0160594676, -0.00680964161, -0.0139319319, -0.0166390128, -0.017554082, -0.0053226538, 0.0121399211, 0.0258354601, 0.0234562792, -0.000987512409, -0.0118577741, -0.0110265864, 0.0252559148, -0.00655799732, -0.0096311057, -0.018987691, 0.00577637553, -0.00783909485, 0.00378038059, -0.0179506112, -0.0675931275, 0.0167915244, -0.0142674567, -0.00970736146, -0.0240205713, 0.0250729024, -0.0059746406, 0.0121551715, -0.0158917047, -0.0219006613, 0.00556667242, -0.00645886501, -0.00951672159, 0.00828137808, -0.0220226701, 0.0124601955, 0.00724429963, -0.0211381037, 0.006706696, -0.0261252318, -0.0158459526, 0.0317529067, 0.0105080474, -0.0204670522, -0.0194299743, 0.00846439227, -0.0260642264, -0.0223581959, 0.0174778253, 0.00375369098, 0.000394385395, -0.00139452762, 0.0231817588, 0.009898, -0.0326374769, 0.0050405073, -0.0267047752, -0.0177828483, 0.016379742, -0.00387188746, -0.0258964635, -0.024142582, -0.0171728022, -0.0202992894, 0.00879991706, 0.0292517189, 0.00663044024, -0.0159374587, -0.0100200102, 0.0129711088, -0.0294804852, 0.0137184151, -0.0178896077, -0.00886092242, -0.00016990742, 0.0279401187, 0.0141301965, -0.000930797134, 0.0203755461, 0.0162119791, 0.0894327834, -0.0217328984, -0.00129825471, -0.0699723065, 0.00995900575, 0.0147936223, -0.0117205139, 0.0388599485, 0.0165780075, -0.00772471074, 0.0370603092, -0.00879229233, 0.0246001165, 0.00266704615, 0.0121017927, 0.0106224306, 0.000276665523, 0.0220836755, -0.0204823036, 0.0236087907, -0.0220836755, 0.020848332, 0.00566580473, -0.0167457704, -0.00512820156, -0.00377466134, 0.00557048479, -0.0131159946, -0.00481936568, 0.00411399966, 0.00769802136, -0.0329425, 0.00748450495, 0.0179658625, -0.00230864389, 0.046424523, -0.0197044946, 0.000264035654, 0.00616146717, -0.00254313042, -0.00129539508, -0.0104775447, -0.0177981, 0.0140768178, 0.0134057663, -0.0149308825, 0.00873128697, 0.00405680761, -0.020802578, 0.0121170441, 0.00522352103, -0.00334000331, 0.000209345963, -0.00895242859, -0.0104699191, 0.025225414, 0.00566961756, -0.00474311, 0.0391649716, -0.000735868292, -0.016425496, -0.00382422749, 0.00854064804, -0.000969878223, -0.00748831779, -0.00946334284, 0.00154132, -0.00250500254, -0.0269487947, -0.0058755083, -0.00250118971, -0.0071604182, 0.0196282379, 0.00739299832, -0.0201925319, 0.0177218448, 0.00497187721, -0.0211686064, 0.00885329675, -0.0209550895, -0.00831950642, -0.00567343039, 0.00720617175, 0.00285387272, -0.00343913585, -0.0087236613, -0.0075302585, -0.00619578222, 0.0157391932, -0.000247593, 0.00469735637, -0.0530435219, -0.0190791972, -0.0122543043, 0.0143970922, -0.00396911334, 0.0192317087, 0.0137336664, 0.018636914, 0.0202535354, -0.0172033049, 0.0211838558, 0.0111562209, -0.019933261, -0.0148546267, -0.0227699764, 0.0256676972, -0.00847964361, -0.024096828, 0.00465160282, 0.0250271484, -0.00939471275, 0.00851014536, 0.00640548579, 0.0036602777, -0.00495281303, 0.0375483483, -0.0177828483, 0.00636735791, 0.00485368073, -0.0322409458, 0.00880754273, 0.0247678794, -0.0272690691, -0.00307501457, -0.00320846215, -0.00495281303, -0.00549041666, -0.00467447937, 0.0291144587, -0.0263692494, 0.0194604769, -0.0172948111, 0.00936421, -0.0141301965, 0.0072595505, 0.0218091533, 0.00898293126, 0.0190639459, -0.0123076839, 0.0189571884, 0.0148241241, -0.00687064603, -0.00627203844, -0.0101496447, 0.0044990913, 0.00296253711, 0.0142064523, 0.00261938618, -0.0256982, -0.0369688049, -0.0111714723, 0.00437326916, -0.00698502967, 0.0316309, -0.0110113351, -0.00606996054, 0.00308264, 0.0131998761, 0.00725573767, 0.000814030471, 0.00671432167, 0.006977404, 0.00415212754, -0.0180573687, -0.0191097, -0.00745019, -0.00565436622, 0.0134438947, 0.0182861369, -0.00203412306, -0.0199942663, 0.0124220671, -0.0127118388, -0.00750356913, 0.00627966365, -0.0104317917, -0.00993612874, 0.00892955251, 0.00877704099, -0.0168830305, -0.0205128063, 0.0159374587, 0.0187436715, -0.00359736662, 0.00509388652, -0.00666856812, -0.0192317087, 0.0202687867, 0.0143055851, -0.00566580473, -0.00342960376, 0.00909731537, -0.0335220434, 0.00481555285, 0.00611952646, 0.00317605329, 0.00430082623, -0.0116518838, 0.00423600897, -0.0180421192, 0.0213363692, -0.0156324357, -0.00210656598, 0.00235439744, -0.0205433089, -0.0309140943, 0.0403850637, 0.0165627562, -0.0043084519, 0.00575731182, 0.0206958205, 0.00153369445, -0.00725192484, -0.0311123598, -0.000184801131, 0.00829662941, -0.0117433909, -0.000317891303, 0.0206500664, -0.0104546677, -0.0118730254, 0.00606233487, 0.00461347494, -0.0323324539, -0.0305938199, 0.0490782224, 0.0129101044, 0.017554082, 0.0131617486, -0.00811361521, 0.0331255123, 0.0330340043, 0.0111562209, -0.0086169038, 0.0208940841, 0.0119187795, -0.0140615664, -0.0320579298, 0.0219159126, -0.0198417548, 0.0251949113, 0.0163034871, -0.0134667717, 0.01536554, 0.000157635, -0.00180916849, 0.0142903337, -0.00474692276, 0.0085482737, -0.0112553537, -0.0115680024, 0.0191859547, -0.0191097, 0.0111485953, -0.0271470584, -0.0022152306, 0.0078924736, -0.00242874678, -0.0110952165, -0.000304784829, 0.0153960427, -0.00928032864, 0.0166237615, 0.000493756204, 2.70171859e-05, -0.010378412, 0.0290229507, -0.000242112117, -0.00564292818, -0.01200266, 0.0329425, 0.0142445806, 0.0125364512, 0.018636914, -0.0149537595, 0.0150223896, -0.00130588026, -0.0207873266, -0.000760651426, 0.00368315447, 0.0343456045, -0.0127423415, -0.0315698944, -0.0148698781, 0.0115832537, -0.00518539315, -0.00833475683, -0.00489943428, -0.0186826661, 0.00796872936, 0.010378412, 0.0359927304, -0.00566580473, -0.0202535354, 0.0525249839, 0.0246458687, -0.000849775388, 0.00346582546, 0.00868553389, 0.00186921994, 0.0226327162, -0.00863978, 0.0312343687, -0.0166085102, -0.00160327787, 0.0182251316, 0.00609665, 0.042520225, -0.00635591941, 0.0127575928, -0.0503898226, 0.00778952846, 0.00665713, 0.0066190022, 0.00216566422, 0.0167915244, 0.00432370277, 0.0111714723, 0.0112019749, 0.00512438873, -0.00142598315, -0.00385473, -0.00655799732, 0.00401486689, 0.0103021562, 0.00583356759, 0.00573824765, 0.013649785, -0.0044990913, 0.00711466465, -0.00818987098, -0.0212601125, -0.0102259, 0.00522352103, -0.0173253138, -0.0126660857, 0.00769802136, -0.0124373185, -0.000702506397, -0.00698121684, 0.0138938036, -0.0162882358, 0.00138594885, 0.0226327162, 0.00233533327, 0.00194070966, 0.0355046913, -0.00206653168, 0.0391649716, -0.0304565597, -0.000470879459, -0.0111104678, -0.0197655, 0.000725383172, 0.000467304984, -0.00839576218, 0.0146563612, -0.00403011823, 0.00821274798, -0.0314173847, 0.0190486945, -0.011834898, -0.0362062454, -0.0127042131, 0.0186216626, 0.00969973579, -0.00779715367, 0.0216566417, 0.0111333448, 0.010965582, -0.00258697756, -0.0085482737, 0.00857877545, -0.0180421192, 0.0258812122, -0.00417500408, 0.0369993076, 0.026567515, -0.020024769, -0.021931164, -0.0247678794, 0.00181488763, 0.000811170903, 0.015906956, -0.00791535061, -0.00185110921, 0.0234562792, 0.0140691921, 0.0053340923, 0.00765608065, -0.0101038916, 0.013649785, 0.037700858, -0.0263387486, 0.00525021087, -0.0239595678, -0.0245848652, -0.0106605589, 0.0220379215, -0.0126813371, 0.0270250496, -0.00916594546, 0.0151215224, -0.00545991398, -0.00915069412, -0.0247526281, -0.0390734635, -0.0027852424, -0.0146639869, -0.00212563, 0.0174168218, -0.0175998341, -0.0286569241, 0.0225259587, 0.0072404868, 0.0199942663, 0.0115527511, -0.0119950352, 0.0242950935, -0.0190181918, -0.0116747608, -0.0121551715, -0.0205433089, -0.0339490734, 0.00556285959, 0.0204975549, -0.0239443164, 0.00505575864, -0.0187284201, 0.000274997408, -0.00362405623, -0.00924220122, -0.00242493395, -0.02466112, 0.0104546677, 0.0408425964, 0.00681345444, 0.00128872273, 0.00547516532, -0.00918882154, -0.0138099222, -0.0229224879, -0.0104851704, 0.00557429763, 0.00290915812, 0.0116137555, 0.00818224531, -0.0196434893, -0.0173863191, -0.00611190125, 0.00451053, -0.02188541, -0.00570393261, 0.00698884251, 0.00750738196, 0.00802210812, -0.00878466666, -0.00730911689, 0.00916594546, -0.00782384351, -0.000220903472, -0.0145724807, 0.00627966365, 0.0261557344, -0.00183204515, 0.0130473645, 0.0114078652, -0.0145267267, 0.023075, -0.000434181362, -0.0211838558, -0.00856352411, 0.00334190973, 0.0134057663, -0.00610808842, 0.00590601051, 0.00748069258, 0.011766267, 0.00589838484, 0.00442283554, 0.0161814764, 0.0111257192, 0.022236187, 0.00296444353, 0.0630787835, 0.00409112265, 0.0201162752, 0.0102869049, 0.0162272304, 0.00628728932, -0.00544847595, -0.00854064804, -0.00302926102, 0.00707272394, 0.00823562499, -0.0087236613, -0.00661137654, -0.00802973378, 0.00971498713, -0.0194452256, -0.0120636653, 0.00745781558, 0.0115222493, 0.0232885163, -0.0156095587, -0.0343761072, 0.0284434073, 0.0112629794, -0.00779715367, -0.00145171944, 0.00472023292, -0.00433514128, 0.0234410278, 0.00426269835, 0.00969973579, 0.000691544614, 0.00511676306, 0.0135430275, 0.0143742152, 0.0247678794, -0.00328281149, 0.00625678711, -0.0102335261, 0.00718710758, -0.0061347778, -0.00253741117, 0.00165951648, 0.00430463906, -0.00566961756, 5.27237244e-05, 0.00398817752, -0.0133676389, 0.00401867973, -0.000798302761, -0.00906681269, -0.0178743564, 0.00216185139, 0.0215498842, -0.00372890779, -0.00566580473, -0.00693927612, -0.0265370123, -0.00306166965, -0.00585644413, 0.0154112941, 0.00981411897, 0.0131236203, 0.00610427558, 0.0180573687, 0.00116099429, -0.00233533327, 0.0195367318, 0.0012572672, 0.0327899866, 0.0103479102, -0.0179201085, 0.011484121, 0.000217328983, 0.0205585584, 0.0129558574, 0.00507863518, 0.00383947883, -0.0102259, 0.000635782606, 0.00301591633, -0.00277189771, 0.000661995495, -0.0195824858, 0.00339147588, -0.0172490589, 0.020802578, -0.00320083648, 0.00594413839, 0.0205280576, 0.0137870461, -0.0129329814, 0.0129482318, -0.00611952646, 0.00133066345, -0.00298160105, -0.0115908794, 0.00371175027, -0.020024769, 0.00763320411, 0.00457153423, 0.0247221254, 0.0103479102, -0.00215803878, 0.0296635, 0.0115908794, 0.0251491573, -0.00658849953, 0.0149080055, -0.0136192832, -0.00406062044, -0.00227242243, 0.0338880718, 0.0229224879, 0.0137031646, -0.00818987098, -0.029083956, 0.016425496, -0.0104165403, -0.0195367318, -0.00766370632, -0.0066876323, -0.00289962627, -0.00367171597, 0.015647687, 0.00760651426, 0.00219044741, -0.00623772293, -0.002811932, -0.014023439, 0.0142445806, 0.0330645069, 0.00969211, -0.00183299836, 0.00593651272, 0.00370603101, 0.0114688696, -0.0146411108, 0.0143513381, -0.00981411897, 0.0100505119, 0.0298465136, -0.0174320713, -0.0125364512, -0.0088151684, 0.00818224531, 0.000382708706, 0.00311314245, -0.00252216, -0.0130244875, -0.0023944315, -0.00737774698, 0.00937946141, -0.0136192832, 0.00420169346, -0.00624916144, 0.00042131322, 0.0166390128, 0.00312458072, -0.00370793743, 0.00879991706, -0.0138327992, 0.00658849953, 0.00553235691, 0.000926507753, 0.00592126139, 0.00204556133, 0.00162901415, 0.0168525279, -0.00399961602, -0.0341320895, -0.0159222074, 0.0137565434, 0.0238070562, -0.00687445886, 0.00222476246, 0.00603945786, 0.0184691511, 0.029602496, 0.00594032556, -0.00609283708, 0.0104089146, -0.00215422595, -0.0150757683, 0.0140081877, -0.0036354945, -0.00299494597, -0.0143437125, -0.014259832, -0.0292669702, 0.0149156312, 0.0169745367, -0.0114536183, -0.0215193816, 0.00818987098, 0.0161662269, -0.0273605753, 0.0170202907, 0.000346725516, 0.027741855, -0.0208635833, 0.0125135742, -0.00310932961, 0.000813553866, 0.0215041302, 0.0017843853, -0.0101038916, 0.000965588843, 0.0121322954, -0.000814983679, 0.00468210503, -0.0010418446, 0.0175388306, 0.00764464214, -0.00266704615, 0.0197044946, 0.000558573636, -0.0163339898, 0.00222094962, -0.0075226333, -0.0137412921, 0.00174816384, 0.030990351, 0.0190486945, 0.0113468608, 0.00226098392, 0.0125135742, -0.0213516187, 0.012071291, 0.0121322954, -0.0066876323, 0.00384710426, -0.0186826661, 0.00621103356, 0.000757791859, 0.000672004069, 0.0132913832, 0.00601658132, 0.0124830715, 0.000936992932, -0.0113926139, -0.0150147639, -0.0203297921, -0.0201925319, -0.0132380044, -0.0198112521, 0.0318444148, 0.00912019145, -0.0115375, -1.37617862e-05, 0.00426269835, -0.00423219614, -0.014214078, -0.00472404575, 0.0135582788, -0.00259650941, 0.00925745256, -0.00281574484, 0.00720235892, -0.00616909284, -0.0161509756, 0.00769802136, -0.00338766328, -0.00818224531, 0.0262472406, 0.00749594346, -0.00851777103, 0.00370221841, 0.00312458072, 0.00812124088, 0.01647125, 0.00763320411, 0.00278714881, 0.00281002559, -0.000983699574, 0.00374034629, 0.00530740246, -0.00676388806, -0.0059746406, 0.00991325174, -0.0103326589, 0.00735868327, 0.0151596498, 0.0130016115, -0.000922218373, 0.0183623936, -0.0023391461, -0.00181107491, 0.00186350069, 0.0130092371, 0.0118043954, -0.00763320411, -0.00976074, -0.0161662269, 0.00851014536, -0.00100752956, -0.0278638639, -0.00413306337, 0.00239252532, 0.00201696553, -0.0152892843, -0.00535315601, 0.00869316, -0.000577161, 0.0206653178, -0.0150147639, -0.00703459606, 0.00734343193, 0.0117586423, -0.0112019749, 0.00223810715, -0.00751882046, 0.0224039499, -0.00487655727, 0.0104317917, 0.00488418294, 0.0128414743, -0.0114536183, -0.0121856742, -0.000752549269, -0.0194147229, 0.00408349745, -0.0230444986, 0.0111943493, -0.00847201794, -0.00676007522, -0.0100428872, 0.00533027947, -0.0246153679, -0.000221856666, 0.0160137154, -0.00804498512, -7.90558042e-05, -0.00871603563, -0.0224039499, 0.0146563612, -0.018850429, 0.0171880536, 0.00435801782, 0.0300752819, -0.000596224912, -1.4111788e-05, -0.00236202287, -0.00154703925, 0.001270612, -0.000895052275, -0.0265980177, -0.0219006613, 0.00563148968, -0.000968448468, -0.0099208774, 0.00827375241, 0.00701934472, 0.0145724807, 0.0227089729, -0.0170050394, 0.00286531099, 0.0100047588, -0.00708416244, -0.00485749356, 0.0340710841, 0.0123076839, 0.0109960837, 0.0115908794, 0.018850429, 0.023624042, -0.00171098916, 0.00190639461, 0.0195214804, 0.00719092041, 0.0108054448, -0.00390810892, -0.0295109879, -0.0326984785, 0.00667619379, 0.00287865591, -0.0270708036, -0.0104851704, 0.0214888807, -0.0126584601, 0.00492993649, -0.0127652185, 0.000818796456, -0.0337660611, 0.00987512432, -0.0123076839, -0.024096828, 0.0221294276, 0.00203031022, 0.00735868327, -0.00414831471, -0.00370984385, -0.0194299743, -0.0225107074, 0.00329996902, 0.0081669949, -0.00806023646, 0.0106224306, 0.0101115173, 0.00253169192, -0.000463253877, 0.00799923204, 0.00191402016, -0.00115050911, -0.000211014049, 0.0153579153, 0.0250118971, 0.0113697378, -0.00329996902, 0.0059327, -0.00454484485, 0.0086169038, -0.00168620597, -0.0174015705, -0.00504432, 0.00192355213, -0.00107711297, 0.0108359465, -0.0216108896, -0.00492231082, -0.0032027429, -0.00305023137, 0.00677151373, 0.00897530559, -0.00518158032, 0.0215041302, 0.00391954742, -0.00119054341, 0.0109960837, -0.00912019145, -0.000930320588, 0.0154417958, -0.00530740246, 0.00444189925, -0.00501763076, 0.0096311057, 0.0115908794, 0.00555523392, 0.00318367896, 0.00203412306, -0.0240510739, 0.00379753811, -0.00217710272, 0.00892955251, -0.00522733387, -0.0192774627, 0.000137022114, -0.0149842612, -0.013954808, -0.00820512231, 0.00870078523, -0.0100962659, -0.0161052216, 0.0089066755, -0.00377847417, -0.0238223076, -0.00481555285, 0.0113392351, 0.00877704099, 0.0196434893, 0.00528452592, 0.00156324357, -0.0122695556, -0.00865503121, 0.0148393754, 0.0108588235, -0.0174625739, 0.0248898882, -0.00796872936, 0.00273948908, 0.00494137499, 0.0196129885, -0.00709178811, 0.00549804186, 0.000711561763, 0.000441092037, 0.00492612366, -0.0017024104, 0.00296825636, 0.0325154662, 0.0067982031, 0.00144504709, -0.000864073343, -0.0153960427, 0.00146697066, -0.00969973579, 0.00783146918, 0.0055933618, -0.039866522, -0.0119492812, -0.0253169201, 0.0157849472, 0.00716804387, 0.0123915644, -0.0195367318, -0.0167915244, 0.000244733412, -0.0180268679, 0.00243827864, 0.000298589061, 0.00359736662, -0.0131998761, -0.00562767684, -0.0050405073, 0.0163339898, 0.0108511979, -0.013695539, 0.00215613237, 0.0136040319, -0.0228462331, -0.0107825678, 0.00958535168, -0.012612707, -0.00449527847, -0.0184081458, 0.00260222866, 0.00161090342, 0.0193537176, 0.00439233333, -0.00455247052, -0.0110723395, -0.0105004217, 0.0225869641, -0.00411399966, -0.0294194818, -0.0031627086, 0.000973691058, -0.0111485953, 0.0049604387, 0.0114993723, -0.00810599, -0.00331140752, 0.012871976, 0.0316614024, 0.0186521653, -0.00530358963, 0.0236697961, 0.018118374, -0.00423219614, -8.17366672e-05, -0.0288704392, 0.0101191429, -0.00470116921, 0.000881707529, -0.00466685416, -0.0059327, 8.54898826e-05, -0.00911256578, -0.00745400274, -0.00931083132, 0.0246001165, 0.0193232149, 0.00778571563, -0.0124144414, 0.0139471833, -0.0180421192, 0.0143284621, -0.00235249102, 0.00472785858, -0.000260461151, 0.00693927612, 0.00128205039, 0.00541416043, -0.00429320056, 0.00186826673, 0.00563911535, -0.0061347778, -0.00140882563, -0.0136345346, -0.020802578, -0.0131464973, -0.0140691921, 0.00765608065, -0.00522352103, 0.0195367318, -0.00146506424, -0.00523495954, -0.0149461338, -0.000693927635, -0.0139929364, -0.0175998341, -0.0301362853, 0.00551710604, -0.0181946307, -0.00132875703, 0.0212143585, 0.0052425852, -0.00627966365, -0.000761604635, 0.0213058665, 0.0216566417, 0.00767895766, -0.000146911538, 0.00600514282, 0.00746162841, 0.0150986454, 0.00144695351, 0.0227699764, -0.0181946307, 0.0108359465, 0.00909731537, 0.0149842612, 0.00745781558, 0.0379143767, 0.00729386555, 0.00445715059, 0.010683435, -0.00109141087, -0.00629491499, -0.0150452666, 0.00640548579, -0.00750356913, -0.0120941671, 0.0137641691, -0.00148317497, 0.0123839397, -0.00396530097, 0.0126813371, -0.000535696861, 0.0114231165, -0.0201620292, 0.0174015705, 0.017767597, -0.00394242397, 0.0108359465, -0.00151939644, 0.0140996948, -0.00199218234, -0.00415975321, -0.0168220252, 0.0108435722, 0.00301401, -0.0132685062, -0.00674482388, 0.0204365496, -0.00942521449, -0.000635782606, 0.0246916227, -0.00855589937, 0.00776665146, -0.00475454796, -0.0174320713, -0.0204823036, -0.00544847595, 0.039531, 0.00982937, 0.00623772293, 0.00123248412, 0.00392336026, -0.00616909284, -0.0109045766, -7.19068194e-05, -0.00219997927, -0.0212753639, 0.0133752646, -0.0150223896, -0.0124906972, -0.000525688287, -0.00459441077, 0.019933261, -0.0189571884, 0.00788484793, -0.0055132932, 0.0277266037, 0.00674101152, 0.012566953, 0.0130168619, 0.0140463151, -0.000318606209, -0.0216718931, -0.0139090549, -0.0163949933, -0.00887617283, 0.0243255943, -0.00467447937, -0.00892192684, -0.00650461856, 0.0206653178, 0.00655418448, -0.0121322954, -0.0202535354, 0.0126203327, -0.00181202812, -0.0102030234, -1.83788361e-05, -0.00385663635, 0.00753407134, 0.0147097409, 0.0362672508, 0.00266323332, 0.0151291471, -0.00737393415, 0.0153807914, -0.00903631, 0.010729189, -0.000910780043, -0.00989037473, -0.00666856812, -0.0321189351, -0.00477742497, -0.00416737841, 0.0295719933, -0.00684014382, -0.0113468608, -0.000373176736, -0.00149175373, -0.00557048479, -0.0022952992, 0.0195519831, -0.0243866, -0.0175845847, -0.000471832667, -0.0215651356, -0.00729386555, -0.0100810146, 0.00869316, -0.0218091533, 3.836619e-05, 0.0119950352, 0.00552854454, 0.016989788, 0.00613096496, -0.00709560048, 0.00346201262, -0.0229529906, 0.00704984739, -0.0089066755, -0.0216718931, 0.0159832127, 0.0164407473, -0.00704222172, -0.0121170441, 0.0187131688, -0.0292669702, -0.0199027602, 0.00866265688, -0.00256219436, 0.0124449441, 0.00277761696, 0.00572680915, -0.0282756444, -0.00966923311, -0.0173863191, -0.00033981484, -0.00388332573, 0.0064283628, 0.0235477854, -0.0126813371, -0.0248746369, 0.0182708856, 0.00631397869, 0.00343913585, 0.0228767358, 0.0194147229, -0.0130702415, 0.00286340457, 0.00619197, 0.00534171751, -0.0122771813, 0.0185149051, -0.00964635704, -0.00522352103, -0.00698502967, -0.00301401, -0.0374568403, -0.0130092371, 0.00739681115, 0.0134896478, 0.00309979753, 0.0105156722, -0.0183623936, -0.00701171951, 0.0203450434, -9.67495289e-05, 0.00234295893, 0.00113621121, 0.00220760494, 0.0259727202, -0.000655799755, -0.00838051084, -0.00152988161, 0.00605852203, -0.00386235537, 0.00710703898, -0.0217939038, -0.0115985051, -0.00252787932, 0.0106986864, 0.00268039084, 0.0392869785, 0.0183623936, 0.0221141782, 0.00700409384, 0.00462491345, 0.0243866, -0.00433514128, 0.0226937216, -0.00724811247, -0.000491373183, 0.00710703898, 0.0143589638, 0.0110494634, -0.0177218448, -0.00285959197, 0.00125917362, 0.0025107218, 0.00770946, 0.0122695556, 0.0113773625, 0.00334381615, -0.033247523, 0.0273605753, 0.0133752646, -0.0113392351, 0.0179048572, -0.0233037677, 0.0109274536, 0.0324544609, -0.00152511569, -0.0163492393, -0.00627585081, -0.00378991244, 0.00661518937, -0.00113907072, -0.000631493225, 0.00110284926, 0.00785434619, -0.00331522012, 0.0187131688, -0.0202382859, -0.0124373185, 0.00549041666, 0.00144790672, 0.0160137154, -0.00110856851, 0.0100276358, 0.0143513381, -0.0222971905, -0.00172814669, 0.0201162752, 0.0132227531, -0.00177961937, 0.00242493395, -0.0114383679, -0.0457839742, 0.00887617283, -0.000540462846, 0.0344981179, -0.00441902271, 0.0141149452, -0.0045982236, 0.00399580318, -0.00765608065, -0.00928032864, 0.00360499229, 0.00291106454, 0.0170965474, 0.0201162752, 0.00190925424, 0.00320655573, 0.00846439227, 0.00533027947, -0.00514726527, -0.00153178803, -0.0024192147, -0.0231817588, -0.0207415726, -0.0031303, 0.0201925319, -0.00915069412, -0.00685539516, -0.00512820156, -0.0071604182, 0.00301019708, -0.022236187, 0.00292822206, 0.00323515153, -0.0224192012, -0.00802210812, -0.00424744701, -0.0202077832, -0.0278943665, -0.00777809, 0.00477742497, -0.00103421905, 0.0295414906, 0.0126965884, 0.00642073713, 0.0166695137, -0.000919358805, -0.016684765, -0.00756457355, 0.000327423273, -0.00456009572, -0.000707749, -0.00326565397, 0.0159832127, 0.0041254377, -0.0148851294, 0.00895242859, 0.0162882358, 0.0190334432, 0.00104756386, 0.00874653831, -0.0267047752, -0.0250729024, -0.0557582304, 0.00483080372, 0.0208635833, 0.0268572867, -0.00526164891, 0.00196358655, -0.0159832127, -0.00430082623, -0.00636735791, 0.0223734472, 0.0102716545, 0.00167000166, -0.0089981826, -0.00207034452, -0.018896183, -0.00217900891, 0.0187436715, -0.0146106081, -0.00322752609, -0.0146411108, -0.00269373553, -0.0141988266, 0.00668000663, 0.00756838638, 0.0167610217, -0.00683251815, -0.0203755461, -0.00962348, 0.0061462163, -0.000342674437, 0.00265751407, -0.0130092371, 0.00609665, -0.020284038, 0.023013996, 0.0104699191, -0.00586407, -0.00621103356, -0.00505957147, 0.0103479102, -0.00264226296, 0.0136040319, -0.0153731657, -0.00131636544, -0.0045982236, -0.00483080372, -0.000144647696, 0.0127575928, -0.0083423825, -0.000888379873, -0.00617671851, 0.0127194645, -0.00264226296, -9.63920756e-05, -0.00252216, 0.0101801474, -0.00116004108, -0.0339795761, 0.00829662941, 0.00548279099, -0.0124373185, -0.0122543043, -0.00194070966, -0.00133542938, -0.00862452947, -0.00143646833, -0.00196168013, 0.00288437493, -0.000480411429, 0.0174168218, 0.0169440359, -0.00376703567, -0.00550948037, 0.00567724323, -0.019796, 0.0064169243, 0.00637498358, -0.00525021087, 0.0105004217, -0.0116823865, 0.0339490734, -0.0242188368, 0.012048414, 0.00688971, -0.000881707529, 0.00114574318, 0.00378800603, -0.0157544445, 0.00873128697, -0.0260489751, 0.00554760825, 0.0041178125, 0.0114154909, 0.0262929946, 0.0132837575, 0.0146106081, -0.0181336254, 0.0238985624, 0.00419788109, 0.00349823409, -0.0041254377, -0.0075111948, 0.00763320411, 0.00821274798, 0.0238680597, -0.0316919051, -0.00902106, 0.0161052216, -0.00610808842, -0.0251796599, 0.0193689689, -0.00256028795, 0.00682870531, -0.00819749665, 0.033674553, 0.00135925936, -0.00109617691, 0.00537603255, 0.00891430117, -0.00721761, 0.00889142416, -0.0281078815, 0.00407587178, -0.00380897638, 0.0240510739, -0.0105080474, -0.0128185973, -0.0155256772, -0.0256371945, -0.0260337237, 0.0117510166, 0.00136974454, -0.0020684381, 0.000849775388, -0.0118806511, -0.0165322535, 0.0056848689, -0.00266513973, 0.00168620597, 0.0102716545, -0.00331903296, 0.00248021935, 0.00617290568, -0.00614240346, -0.0130244875, -0.0130016115, -0.0296635, 0.0196434893, -0.00774377491, -0.0127118388, -0.0117433909, -0.00876941532, 0.0141835762, -0.0130092371, -0.0361147374, 0.00930320565, 0.0125974556, -0.00139929366, 0.0186064113, -0.000108843218, 0.00514345244, -0.0162882358, -0.0178286023, -0.026872538, -0.00465160282, 0.0100962659, -0.00575349899, -0.00331903296, -0.00494518736, 0.0083423825, 0.0261557344, -0.000683919061, -0.00454865769, 0.00228767353, -0.0141683249, 0.0022952992, -0.0117815183, -0.0102106491, 0.016684765, 0.0254694317, -0.00937946141, 0.0226327162, 0.00175578939, -0.00580687774, -0.014259832, -0.02136687, 0.0249661431, 0.025530437, 0.00406443328, -0.0115756281, 0.015601933, 0.00431226473, -0.00759507623, 0.00221141777, 0.00357067701, -0.00841863826, -0.0161052216, 0.0175235793, 0.013954808, -0.00163187378, -0.00230101822, 0.0154341711, -0.0105004217, 0.0119569069, -0.00431607757, -0.00140501279, -0.0159832127, -0.025225414, -0.00645505218, -0.00627203844, -0.00757601205, 0.0109122023, -0.00216757064, 0.00539128389, -0.00601276848, -0.00396148814, -0.0415136479, 0.0022152306, 0.00548660383, 0.0210313443, -0.0051396396, -0.00400724122, 0.00763701694, -0.00608521141, -0.00453721918, 0.00572299678, 0.0162577331, 0.0197502486, 0.00941759, -0.0198570061, 0.00413306337, -0.00272614416, 0.0239748191, -0.0136345346, -8.73962781e-05, 0.0189571884, -0.00815174356, 0.010965582, 0.00952434726, 0.0258507114, 0.0180116165, -0.00763701694, -0.0207110718, -0.00221904321, -0.0104927961, 0.00621865923, 0.0189114343, 0.00419788109, -0.00662662741, 0.00546753965, 0.00144790672, -0.00242684036, -0.00606233487, -0.0200400203, 0.00562005118, 0.0264302548, 0.0154112941, 0.0115756281, 0.00104565744, 0.018118374, -0.0185301546, 0.00384329143, 0.00989037473, 0.0149156312, 0.00970736146, 0.00898293126, 0.0208940841, -0.00409493549, -0.00564292818, 0.00084072, -0.0103174075, 0.0133371362, 0.0135735292, -0.0219159126, 0.00635973224, -0.0187436715, 0.00719092041, 0.017554082, -0.00209703413, -0.00411018683, 0.00033767015, -0.023532534, -0.0163034871, -0.00424744701, -0.0157086924, -0.0115527511, -0.0238223076, 0.0164559986, -0.0162119791, -0.0149003798, -0.00363168167, 0.00826612674, 0.00655799732, -0.00256410078, -0.0186064113, -0.0109045766, 0.00511676306, -0.00107044051, 0.000449194224, 0.00850252, 0.0105614262, -0.000480411429, 0.00333047146, 0.0127880946, -0.0180116165, -0.0140539408, -0.0233342703, -0.0204212982, -0.00213325559, -0.00211037882, -0.0194147229, 0.0205128063, -0.0117433909, 0.00609283708, -0.00376131665, 0.0105156722, -0.00931083132, 0.00592126139, 0.00656562299, -0.0138556762, -0.00448002713, -0.00640167296, 0.0050405073, 0.00927270297, -0.0141149452, 0.00431607757, 0.022144679, 0.00644742651, -0.00730149122, 0.0274063293, -0.0116137555, -0.0102945305, 0.00261176052, -0.0193537176, 0.00101134228, -0.00481174, -0.0183928944, -0.00438089482, 0.0121551715, -0.00140501279, -0.0089066755, 0.0208940841, 0.0109122023, -0.0204060469, 0.0168830305, -0.0200857744, -0.0227699764, 0.0168372765, 0.0282451417, -0.00299875881, -0.00901343394, -0.00130683347, 0.00235821, 0.00627203844, -0.0125593273, -0.00928032864, -0.0105232978, -0.00851014536, 0.0126355831, 0.00321227498, -0.0114688696, -0.00879991706, 0.0039462368, -0.0211838558, -0.000268801639, 0.00787722226, 0.00413306337, -0.00479648868, -0.00173577224, 0.00734724477, -0.000837860396, -0.00313220639, -0.00741206203, 0.0786349624, 0.0163492393, 0.0179201085, -0.0188809317, 0.00775902579, -0.0288704392, 0.000568105606, 0.0464855246, 0.00374606531, 0.00492231082, 0.00306548248, 0.00766370632, 0.00326374755, 0.000341006322, -0.0187589228, -0.023364773, -0.0214736294, 0.00510532456, 0.0269945469, -0.0182861369, 0.0101725217, -0.00687064603, -0.0103326589, -0.0167457704, -0.0050405073, -0.0101115173, -0.0216108896, 0.000823562441, -0.0116137555, -0.00155752443, 0.000489943428, 0.0259117149, -0.00672576, 0.00508244801, -0.0282146409, -0.010378412, 0.0121475467, 0.011270605, -0.00124201609, -0.00535696885, 0.0137184151, -0.0113621121, 0.00457534706, 0.00249737687, 0.00946334284, 0.0148851294, 0.00507100951, -0.00285387272, 0.0152664082, -0.0294804852, -0.00313792541, -0.0321189351, 0.00137927651, -0.000957010081, 0.0131846247, 0.0189724397, -0.000252359, 0.0106986864, 0.0329425, 0.0136040319, -0.00715660537, -0.0114154909, -0.028001124, 0.00869316, 0.0288551878, -0.00157658837, -0.0234562792, -0.00494518736, -0.00616528, -0.0087084109, 0.00863215514, -0.0023791804, -0.00493374933, -0.0178743564, 0.0206805691, -0.00243255962, -0.0174015705, -0.00572680915, -0.00576493703, -0.00132017827, -0.00146506424, -0.00491087232, -0.00973786321, -0.00555523392, 0.000588122755, 0.0196129885, -0.0226174649, -0.00695071463, -0.000309789117, -0.0210770983, -0.0101267677, 0.00850252, -0.0198112521, -0.000649603957, 0.0168372765, 0.0114078652, 0.00499094091, -0.00419788109, 0.019979015, 0.00301401, 0.00869316, -0.00649699289, 0.0108435722, 0.0110647138, -0.00788484793, 0.0274825841, -0.00826612674, -0.00547897816, 0.00853302237, -0.0160442162, 0.0191859547, 0.00252025365, 0.018850429, 0.0267047752, 0.0055132932, 0.00684776949, 0.00698502967, 0.0143894665, 0.00488799578, -0.019201206, 0.0141149452, 0.0207720753, -0.00539890956, 0.00211037882, -0.00934895873, 0.0193537176, 0.00679057743, 0.017859105, 0.0166085102, -0.0223124418, 0.00566961756, 0.0123915644, 0.0296329968, -0.015906956, -0.00786197092, 0.00161090342, -0.0157239418, -0.0125288256, 0.00117815181, 0.0054027224, 0.0137260407, -0.00460584927, 0.0179963652, 0.000409398228, -0.0237918049, 0.0103021562, 0.00117433909, -0.00883042, -0.0369688049, -0.0215803869, 8.05749551e-06, 0.0130931176, 0.00621103356, -0.0223886985, -0.000860260567, -0.00277189771, 0.00307501457, -0.0122771813, 0.0222056843, 0.000725383172, -0.00947859418, 0.0131464973, 0.0165627562, 0.00532646663, -0.0113087324, 0.00912019145, 0.00183681119, 0.00700790668, -0.00354780024, 0.00580687774, -0.00333619048, 0.0188656803, -0.0199180115, -0.000133328474, 0.00470116921, 0.00737393415, -0.0116213812, 0.0195367318, 0.00405299477, -0.00323324534, 0.00108283211, 0.00368506066, 0.0019054414, 0.0498712808, 0.00328090508, -0.0154494215, -0.0320274308, 0.0102640288, 0.00925745256, 0.0129939858, -0.0038108828, -0.00217710272, -0.00441139704, -0.00196168013, 0.0145801054, 0.0173100624, 0.00475454796, -0.0294957366, -0.0303803049, -0.0172795597, -0.0116976369, -0.01536554, -0.00101515511, 0.0085482737, 0.00379944453, -0.0153350383, 0.00359927304, -0.00408349745, -0.00944046583, 0.0094480915, 0.00580687774]
31 May, 2021
How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)? 31 May, 2021 In this article, we will look into how we can connect two computers/laptops using a virtual program called CISCO Packet Tracer. It can help us share files among the systems easily. A virtual program is used to set up the appropriate connection as it gives us a brief idea about the requirements for establishing a physical connection like hubs, switches, and routers, etc. Prerequisites: Laptop/Desktop CISCO Packet Tracer program Setting Up: Follow the below steps to initiate the setup for the connection: Step 1: Download Cisco Packet Tracer. Step 2: Run and install the setup (You can be requested to log in to your Cisco Networking Academy Account or you can also log in as a guest). Step 3: After the installation procedure has completed this display (below) will appear when you run the Cisco Packet Tracer-Start the application. Cisco Packet Tracer Implementation: Follow the below steps to implement the connection: Step 1: From the bottom toolbar, click on ‘End Devices’ and select ‘PC’ and then click on the screen (for two PC’s do this step twice). Bottom toolbar->End devices->PC This is how it will appear on the screen Step 2: Now to connect the PC’s, we require a wire; we use cross-over wire to connect similar devices. Select Connections from the bottom toolbar, and select cross-over wire (that is the fourth wire). A Cross-Over Wire is largely used to connect the computing gadgets, additionally, cross wire cables are used to connect devices of equal type. Step 3: After selecting the wire click on the computer on the screen(here PC0) and select FastEthernet0. Then, drag the wire to the other pc (here PC1) and do the same. Step 4: Now, we will assign the IP address to both the PCs (PC0 & PC1). An IP address (Internet Protocol) is nothing but the numerical designation of the devices connected to the network, that use the Internet protocol as a communication medium. Click on PC0. A dialog box will appear on the screen, select Desktop and then select IP configuration : After clicking on IP configuration this is what will appear Now in IPv4 Address, write 192.168.1.1, Subnet mask will be 255.255.2550 Similarly, assign 192.168.1.2 to PC1 We have successfully connected two computers. Now to check this, we will transfer data from one computer to another and check whether the transfer is successful or not. To do so follow the below steps: Step 1: From the Secondary Toolbar at the top, select ‘Add sample PDU’ that is the second last icon. Step 2: Now click on PC0 and then PC1. Now if in Realtime box- PDU list window it shows successful, that means all the connections are correct and the data transfer is successful You have successfully connected two computers, using the virtual program Cisco Packet Tracer. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System/Introduction of System Call/How much Stack size required for BIOS interrupt call?/Difference between Interrupt and Polling/Difference between Difference Engine and Analytical Engine/Difference Between Store‑and‑Forward Switching and Cut‑Through Switching/Difference between Message and Packet Switching/How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?
https://www.geeksforgeeks.org/how-to-connect-between-devices-via-switch-on-cisco-packet-tracervirtual-program?ref=asr10
PHP
How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, Difference between Difference Engine and Analytical Engine, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Difference between Interrupt and Polling, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, Difference between Message and Packet Switching, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, Introduction of System Call, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Difference Between Store‑and‑Forward Switching and Cut‑Through Switching, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How much Stack size required for BIOS interrupt call?, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0581126, 0.00437041884, -0.00697803544, 0.00358214695, -0.000821532274, 0.0390610322, 0.00782285, 0.0313978344, -0.0042174207, 0.0342449248, -0.0057839863, -0.0458727665, 0.0204618089, -0.0542277843, -0.037437927, -0.0168297701, -0.012951606, 0.0308390576, -0.0176280215, -0.00152665318, 0.0789203197, -0.0226436909, -0.0370920151, -0.0319566093, -0.0106965499, 0.0315840915, -0.00713103358, 0.0115480172, 0.00395466341, 0.00557777192, 0.0299343746, 0.0115081044, -0.00194573437, -0.0363203734, 0.00519195106, -0.052311983, 0.0102042956, 0.0113484543, -0.0341118835, 0.0226969086, -0.00356884277, 0.0211935379, 0.0306794085, -0.0228166468, -0.0233621169, -0.0249586161, 0.0210205838, -0.00296849222, 0.0203952882, -0.0522853769, 0.0110358065, -0.014288675, 0.00818206277, 0.0568886176, -0.000356925855, 0.0334998928, 0.0400455408, 0.0186258331, -0.00107098545, -0.035814818, 0.0345110074, 0.0506356582, -0.00889383536, -0.0174151547, -0.0161645617, 0.0330209434, -0.0751951486, 0.0340586677, 0.00475291349, -0.0138230296, -0.0019357563, -0.00613987306, 0.000256936706, -0.0329677239, 0.000853961217, -0.0140891122, 0.0378370509, 0.0137831168, 0.0204085913, 0.0237878505, -0.0411098748, -0.0125990463, 0.0190781746, 0.0277524926, -0.00460324157, -0.013583554, -0.0323557332, -0.0573143512, 0.0176679343, 0.0326218158, 0.0089404, 0.0111555438, 0.00490258541, -0.037437927, -0.0206746757, 0.00488595525, 0.0371718407, -0.00441033114, -0.00134787837, 0.000237188346, 0.0463783257, 0.00237479387, 0.00946591422, -0.0406043157, 0.00110175135, -0.0247324463, 0.00622967584, 0.00765654817, 0.0231492501, 0.00343247503, -0.0469104908, 0.0045433729, 0.0204085913, 0.0194906034, -0.00475291349, -0.00128385203, -0.0153663121, -0.0366928913, -0.0103705982, -0.00239973911, 0.0444891341, 0.0141822416, -0.0239208918, 0.012765348, -0.0340586677, 0.0181069709, -0.0313446186, 0.0249320082, -0.0245594922, -0.0121600088, -0.0141955456, -0.0454204269, -0.00813549757, 0.0254641753, 0.027858926, 0.00888053142, -0.0118407086, 0.0108428961, 0.000472713669, -0.0175348911, 0.0201824214, 0.00199229899, 0.0015649026, 0.00645252084, -0.0109692859, 0.0274331924, 0.00124976016, 0.0134904254, -0.00733059598, 0.045074515, -0.0467242338, -0.0418815166, 0.0182400122, 0.0211137123, 0.00115912547, -0.0166169051, 0.0332604162, 0.025517391, -0.0135769024, -0.0214596204, 0.0225904752, -0.0481344759, 0.000983676873, 0.00466643646, 0.0212866664, 0.0149272755, 0.0527643263, 0.0217523128, -0.0622635, 0.0225904752, 0.00351562607, -0.0106034204, 0.0439303592, 0.0443827, -0.0331007652, 0.00786276255, -0.0106965499, 0.0371984504, 0.0254375674, -0.0072574229, -0.0556646325, -0.0424669, -0.0299343746, 0.0279121418, 0.00741042104, 0.0204218961, 0.01357025, -0.0122331809, 0.00258267135, -0.0207944121, -0.00754346233, -0.00928630866, 0.016816467, 0.00847475417, -0.0316373073, 0.00806897692, -0.0222844798, 0.0345376171, 0.040737357, 0.00519860303, -0.0453938171, 0.0101178186, -0.0110091977, 0.010224252, 0.00454669911, -0.00915326644, 0.00412096549, -0.0304399338, 0.0267280713, -0.017388545, -0.0278057083, -0.00693812314, 0.0415888242, -0.01573883, -0.0039247293, -0.0194373876, -0.0272070207, 0.0242002793, -0.031823568, 0.0194107797, -0.0137299, 0.0234818552, 0.000277516607, 0.00339588849, -0.0654032826, -0.0327814668, 0.0300940257, -0.0157122202, -0.0165237747, -0.0113418018, 0.0227102134, 0.0391408578, 0.0379967019, 0.003755101, -0.0475224853, -0.0105235958, 0.0190781746, 0.0173486341, -0.0364268087, 0.0172422, -0.00372849265, 0.0105102919, -0.0396198072, -0.0397794582, -0.0124926129, -0.0183863584, 0.00278389687, 0.0561435819, 0.000129507753, -0.0347238742, -0.0186923537, 0.0345642269, 0.0297215078, 0.0259830374, -0.0111555438, -0.00880070589, 0.00146927894, -0.0396996327, -0.00137947581, 0.0221913494, -0.0231625549, -0.0153264, -0.0170958545, 0.0137964208, 0.00450678635, -0.0102907727, 0.0140225915, -0.0185327046, 0.0420411676, -0.000207461853, 0.0286305659, -0.037437927, 0.00309321866, -0.0114748441, 0.00272402819, -0.0368791483, -0.014102417, 0.000232822917, 0.0251581799, 0.0243200175, -0.0104304664, -0.045047909, -0.00992490817, 0.0060700262, -0.00154162035, -0.0547067337, -0.0563564487, 0.0158851743, -0.0210871045, -0.00500901882, 0.00378503534, -0.0440367907, 0.0478151739, -0.0141955456, 0.024971921, 0.0239741076, -0.0230162088, 0.00102192629, -0.00155908207, 0.0247723591, 0.000207150035, -0.0302004591, 0.0259032119, 0.020980671, -0.0383958258, 0.00126639032, 0.011042458, 0.0293489918, 0.0107830269, -0.0274331924, 0.0266881585, -0.0341118835, -0.0568886176, -0.0127254352, 0.0318501741, -0.0431853235, 0.0304665416, -0.0277791, -0.0455268584, -0.024439754, 0.0209939759, -0.00423072511, -0.0207012836, 0.0859449133, 0.0394069403, -0.0253577419, 0.0250783544, 0.0372782759, 0.00265917042, -0.0463517159, -0.00360542908, -0.0199562497, -0.0386086926, 0.00853462331, 0.0167366415, -0.0285241343, -0.026076166, 0.0174550675, 0.00796254352, 0.040710751, 0.00628289254, 0.00908674579, 0.0104903355, -0.0112353684, -0.0197433829, 0.00579729071, 0.00828184374, 0.035096392, 0.0101510789, -0.0257568676, 0.00102192629, 0.00931291655, 0.0220450051, 0.00705786049, 0.0287103914, -0.0189983509, -5.38403e-05, 0.0161645617, -0.000149360058, -0.0194373876, 0.0164040383, -0.0397262424, 0.00430722395, 0.0291893426, -0.0343247503, -0.0133241229, -0.0202356372, -0.0273799747, -0.00348901772, -0.0276194494, -0.0305995829, 0.0266748536, 0.00208542822, 0.00595694082, -0.0521523319, 0.0145015419, 0.0147942333, -0.00290030823, -0.00790932681, 0.00116328313, -0.0166834258, 0.0230295118, 0.02027555, 0.00759667903, 0.00106932234, 0.0114415837, 0.0187056586, 0.0230694246, -0.0186125301, 0.0346706584, -0.00841488503, 0.0212068409, -0.0161379538, 0.0605605654, 0.0288966503, 0.000157883042, -0.00584385544, -0.00871422887, 0.00291028642, -0.0128252171, 0.00897366088, 0.00144682813, -0.0338724069, -0.0265152045, -0.000912166957, 0.0357882082, -0.00313812029, -0.00103523047, -0.0307858419, -0.0186790507, 0.0133507317, -0.0123329628, 0.0338990167, -0.0547599494, 0.0272735413, 0.0405777097, -0.00897366088, 0.0435578413, -0.00298844837, 0.0241736714, 0.039247293, 0.03113175, 0.00560770649, -0.0237745456, 0.0106034204, 0.0182267092, 0.0123263104, 0.0294288173, -0.0162576921, 0.0204085913, -0.00162560283, -0.0217523128, -0.00691151479, 0.015911784, -0.00529505825, -0.0598687492, 0.0384224318, 0.0027606145, -0.0235217661, 0.0280185752, 8.09163612e-05, -0.00835501682, -0.00495912833, -0.0470967516, -0.0379700921, -0.0055977283, -0.0542277843, -0.0230295118, 0.0207545, -0.0200360753, -0.0355753414, 0.0122331809, -0.0303068925, -0.00541812181, -0.0140358955, -0.0229896, -0.0290296916, -0.0137831168, 0.0284709167, 0.0260096453, -0.00955904368, 0.0245861, 0.00605339603, -0.0122464858, 0.0134305563, -0.00766985212, -0.0393005088, -0.00215527508, -0.00858784, 0.0210871045, 0.0425733328, -0.0282048341, 0.0577933, 0.00586381136, 0.0189451333, -0.000348402857, -0.0156457, -0.0117741879, -0.00384157803, -0.0395399816, -0.00668867, 0.0618909821, 0.00908009335, 0.0132709062, 0.0126123503, 0.0494648926, -0.0183065329, 0.000841488538, -0.0120735317, -0.0271005873, 0.0638067871, 0.0134239038, 0.0073638563, -0.0212600585, -0.0317437425, -0.0164040383, -0.0446753912, 0.0263023376, -0.0189584382, 0.028763609, -0.0176546294, -0.0180537552, -0.0171224624, 0.0636471361, 0.000259015505, 0.00253444375, 0.0154860504, 0.0578997321, -0.0150869247, -0.0278855339, 0.0124460477, 0.0252912212, 0.0222046543, 0.0361075103, -0.000223260548, 0.0320364349, -0.00810889, 0.00111838151, -0.0134372087, -0.00683168974, -0.0137698129, 0.00888718292, 0.0142354583, -0.0146079753, -0.00559440209, 0.0297747254, 0.0149937961, -0.0130314315, 0.00415755203, -0.0152598796, -0.0147277126, 0.0278323162, -0.0028653848, -0.00969873741, -0.0380233079, -0.00487265084, -0.00730398763, 0.0272469334, -0.00985173509, -0.0134970769, 0.0128185647, 0.0152864875, -0.00322792353, 0.00256604119, -0.0134438602, 0.0199695546, -0.025876604, -0.0313712247, 0.00831510406, -8.60093569e-05, 0.00698468741, 0.0121400524, 0.0377306156, 0.00385155622, -0.0013861279, -0.00509216962, 0.0304665416, -0.0156590044, -0.00209041708, -0.0281516165, -0.014288675, 0.018812092, 0.00566424895, 0.00391807733, -0.0267945919, -0.00685829809, 0.00295518804, 0.0307060163, -0.00634941366, 0.020648066, -0.0160315204, -0.00668534357, -0.000831926183, 0.00753681036, 0.0301738493, 0.0358680338, 0.0165636875, -0.0140625043, -0.0088539226, 0.0255706087, -0.0107830269, -0.0306794085, 0.0236148965, -0.0231625549, -0.0100978622, 0.00693147071, 0.00456000306, -0.0196236465, -0.00941935, -0.0343247503, -0.00244131451, 0.00213698181, 0.00201724423, 0.0065855626, 0.0377040096, 0.000137199226, -0.010237556, 0.000365656713, 0.0187455714, -0.0122398334, 0.0136168143, 0.0386619084, 0.0101843392, 0.0105701601, 0.0166302081, 0.0126056978, 0.0241071507, -0.00353558222, -0.00778958946, -0.0233621169, -0.0158319585, -0.0266216379, 0.0410034433, -0.00784280617, 0.0178009756, -0.0299343746, 0.00697138347, 0.0158718713, -0.00217190525, -0.0157122202, 0.00744368136, -0.0172954164, 0.00671195192, 0.0158984791, 0.00665208325, 0.00240472821, -0.0036087553, -0.0146345831, -0.0304665416, -0.0331539847, -0.00201724423, -0.0177211501, 0.0141689377, 0.00299842656, -0.0128917377, -0.0185859203, -0.00251781358, 0.0187721793, -0.00179938856, 0.0137165962, -0.0335531086, -0.00467308844, 0.000331980526, 0.11100997, 0.00605339603, 0.0279121418, 0.0177743658, 0.000624464301, 0.02027555, 0.0257169548, -0.00217855722, 0.00485269492, 0.0116145378, 0.0163508207, -0.00711772917, -0.0151667502, -0.00603011344, -0.00788271893, -0.0106898984, 0.00844814628, -0.0168696828, -0.0218055286, 0.029295776, -0.00279221195, 0.00124477106, -0.00593365822, 0.00692481874, -0.00421409495, -0.0158585664, 0.0304665416, -0.0292425584, -0.0103839021, 0.0118207522, 0.0343513601, -0.00212534075, -0.00722416257, -0.00226170826, 0.0610927343, 0.032382343, -0.0304931495, -0.0190781746, 0.000570416159, -6.38703932e-05, -0.018452879, -0.00678179879, 0.00520192925, -0.0302004591, -0.0106233768, -0.0172688086, 0.00324289058, -0.0073505519, 0.0252779163, -0.00208043912, 0.0171490703, 0.000809059653, 0.00131461793, -0.0028188203, -0.0179606248, 0.0245328844, -0.033287026, 0.00794258714, 0.00317304372, -0.0194107797, -0.0197433829, -0.0243067127, 0.0361075103, -0.0168962926, -0.0047895, -0.0615716837, -0.0116943624, 0.0104038585, -0.00799580384, -0.0173619371, 0.020089291, 0.00321960845, 0.00310319685, -0.0129449544, 0.00568420533, 0.0133906435, -0.000806980883, -0.0251581799, 0.0205416325, 0.0125258733, -0.0035023219, -0.0282048341, -0.00972534623, 0.00307326252, 0.0109493295, 0.00110091979, -0.0111156311, 0.00468639284, -0.00778293749, -0.00880735833, -0.00565759698, 0.0109227207, -0.00356219057, 0.00145264866, -0.0145813664, 0.0324887745, -0.0193043463, 0.00828849617, -0.00338757341, -0.00919983163, 0.0152465748, -0.0102176005, -0.0242801048, 0.00715764146, 0.0241071507, 0.0315840915, -0.0113750622, 0.0217390079, -0.0106100729, 0.0138496375, -0.0282846577, -0.0140358955, -0.00140275806, 0.000953742478, 0.00544473, -0.00683168974, 0.00929296, 0.0114415837, 0.0210471917, 0.00699799182, -0.000116307521, -0.00428726757, -0.0132309934, -0.0180404503, -0.0155791789, 0.021911962, 0.00626293663, 0.0117475791, 0.0207278915, 0.0570482686, 0.000309737632, -0.022351, 0.0143685, 0.0157654379, -0.0214995332, -0.00258599734, 0.00193409319, 0.00335763907, -0.00818206277, -0.000218271482, -0.00346906157, 0.0145281497, -0.0323025174, 0.0326750353, -0.00643589068, 0.00858118758, 0.0164971668, 0.0214596204, 0.0292159505, 0.00149006664, -3.86392494e-05, 0.0174284577, -0.0315574817, -0.00757672312, 0.0186923537, -0.0239741076, -0.0216724873, 0.0307326242, -0.0178408884, 0.0143285878, -0.0149538834, -0.0132842101, -0.0344045758, -0.0366928913, -0.0495447181, -0.053376317, 0.00570416171, 0.00306162145, -0.00854792725, -0.0348037, 0.0343247503, 0.00305829523, 0.00721085817, 0.0263954662, -0.0276460592, -0.0148873627, 0.000547549629, 0.0112353684, 0.0106034204, 0.0512210429, 0.00212866673, -0.00888718292, -0.0119005768, 0.0431587175, -0.00579729071, 0.0426797681, -0.00129798776, 0.0165902954, 0.0160315204, -0.0226303879, 0.000294978323, -0.0121799642, 0.0120136626, 0.00149588729, -0.000494332926, -0.0115945814, 0.013756508, 0.00271405, 0.0218188334, 0.0130646918, -0.024067238, -0.0445157401, 0.0238676742, -0.00814880244, -0.0134505127, 0.039832674, 0.0267147664, 0.0106100729, 0.0243067127, -0.0231625549, 0.0213664919, -0.00176612812, 0.035655167, -0.00100363302, 0.0253976546, 0.00477287, 0.0118673164, -0.023348812, -0.0153130963, -0.0166967288, 0.00898031238, -0.0129316505, -0.00931956898, -0.0012231518, 0.00868762098, -0.0026142688, 0.0095324358, -0.019716775, -0.0086211, -0.0219784826, 0.034191709, -0.0222844798, -0.0232423786, 0.0103639457, 0.0194240827, 0.0191979129, 0.0144882379, 0.0162443873, -0.000296433456, -0.00961226, 0.0437174924, 0.0175748039, 0.00668534357, -0.0243200175, 0.00234652241, 0.00919983163, -0.0396464169, -0.00163391803, 0.0106167253, -0.046697624, 0.0027656036, 0.0200626832, 0.00511545222, -0.0102907727, 0.00127969449, 0.000652735704, -0.00087225443, -0.00898031238, 0.0160847381, -0.0408437923, 0.00412761793, 0.0430256762, -0.0215261411, 0.00188919168, 0.00962556433, 0.00309321866, 0.00543142622, 0.0131844291, 0.0152465748, -0.015911784, 0.0103839021, 0.0372250602, 0.0630085319, -0.009579, -0.0209540632, -0.014834146, 0.0133640356, -0.00915991887, 0.000903020322, 0.0036021031, 0.00644254265, 0.0374911427, 0.0217922255, -0.0303867161, -0.0332604162, 0.0106034204, 0.0178674962, -0.0132176895, 0.0192112159, -0.0126056978, -0.019903034, -0.0265019, -0.0180670582, -0.0249586161, 0.00456000306, -0.0435046256, -0.0534029268, -0.00921313558, 0.00613322109, 0.0161778666, 0.0057307696, -0.0207278915, 0.0113551067, -0.0103839021, 0.0365332402, -0.0139427669, -0.0200094674, 0.00156240806, -0.00655895425, 0.0100779058, -0.0226436909, -0.00414757384, -0.0547067337, -0.0191979129, -0.0141689377, -0.0309188832, 0.0162177794, 0.0416686498, -0.00620639371, 0.00413427, 0.00266249641, -0.019184608, 0.0161911715, 0.00695807906, -0.0327016413, -0.00793593563, 0.0205283295, 0.0017727802, 0.0117741879, 0.025863301, 0.00178608438, 0.0227102134, -0.0257435627, -0.0103173815, -0.0293489918, -0.0124992644, 0.0135236857, 0.0227501243, -0.006386, -0.0279387496, 0.00465645827, -0.014301979, 0.00997147337, 0.00343580102, 0.00506556127, -0.00453339471, 0.0116344942, -0.00373847084, 0.0145015419, 0.00489925919, 0.00406442303, -0.00936613325, -0.0114216274, 0.0204751119, 0.0167366415, -0.0290563, -0.0118207522, -0.0378370509, 0.0209274534, -0.0348303095, 0.045766335, 0.00128218904, 0.0265684202, 0.0140492, -0.0145015419, 9.13622061e-05, 0.0164971668, -0.0240406301, -0.0171224624, -0.0369855836, -0.00707781687, -0.00207378692, 0.00570083549, -0.0528175421, 0.0149937961, 0.00629952317, 0.0156590044, -0.017907409, -0.0167765543, 0.0116012329, 0.0120003587, -0.000755427231, 0.0140358955, -0.0124726566, 0.00131461793, 0.011388367, -0.00266415928, -0.0153264, 0.00955904368, 0.00399457617, -0.00759667903, 0.0105967689, -0.0125990463, -0.00348236575, -0.0859449133, 0.00225505629, 0.0065855626, 0.0122664422, -0.000426149083, -0.0126456106, 0.0150736207, 0.00289698225, -0.0136633795, -0.0169095956, -0.00335431308, -0.0263954662, 0.0276194494, -0.0132509498, -0.015379617, 0.00123146689, -0.00812884606, -0.0338191912, 0.0187056586, -0.0182134043, -0.00269243075, 0.0142487623, -0.00585715938, -0.0232423786, -0.0160980411, 0.0261959042, 0.00291527552, -0.0105768126, 0.00970539, 0.0203154627, 0.00459326338, 0.012392831, 0.0243333206, 0.00997147337, -0.0189318284, 0.0192644335, -0.0102508608, -0.018279925, -0.0001114224, -0.0203553755, -0.00450678635, 0.0161246508, -0.0227368213, -0.0154328337, -0.00573409582, 0.0276194494, -0.00719090225, -0.0010460401, -0.0106898984, 0.0182666201, 0.003345998, 0.00590705, -0.0425733328, -0.0202622451, 0.0203952882, 0.0144882379, 0.01573883, 0.0414557829, 0.016643513, 0.012206573, 0.0657225847, -0.0370121934, -0.00528508, -0.0350431763, 0.0254907832, -0.0234552454, -0.00689821038, 0.029508641, -0.00192411512, -0.00462652417, -0.000711357163, 0.00391142489, 0.0160581283, 0.0100113852, -0.0128318686, -0.000541729038, -0.0148740588, 0.00628954498, 0.000503479561, -0.00952578336, -0.0149937961, 0.00155825051, 0.00831510406, -0.0117874919, 0.00918652676, -0.0151401414, 0.0200094674, -0.0144616291, -0.0136367707, 0.0133374268, 0.0192112159, -0.026781287, 0.0288434327, -0.000230536258, 0.0180936661, 0.0208476298, 0.005112126, -0.0160448253, 0.00255772611, 0.0194773, -0.00847475417, -0.0133174704, 0.000470634899, 0.00490923738, 0.00725077093, -0.0124859605, -0.0105102919, -0.00423072511, -0.0227767341, -0.0117874919, 0.0189983509, -0.0177610628, -0.00939274207, 0.0113950185, -0.0216591842, 0.0268078968, 0.00383492606, 0.0116943624, 0.00790267531, -0.00462319795, 0.00220183958, -0.000400372257, -0.0214197077, 0.00896700844, 0.00476289168, 0.00824858341, 0.0152997915, -0.0103839021, 0.0100978622, 0.0150869247, -0.00139444298, 0.0283910912, -0.0292159505, 0.0162843, -0.0353624746, 0.000662298058, 0.0126855234, -0.00413094368, -0.00254941103, -0.0325686, 0.0135170333, -0.012306354, 0.0136367707, 0.0251182672, 0.00900026876, -0.0279121418, -0.00677182106, -0.00213698181, 0.0150869247, 0.00949917547, -0.0172022879, 0.0317969583, -0.0190914795, 0.00810889, 0.0164971668, -0.0368259326, 0.00302669802, -0.0102442084, 0.0121600088, 0.00362538546, -0.00369855831, 0.0106167253, -0.000878906518, -0.0145015419, 0.0198232085, -0.0193043463, 0.0037018843, 0.00412096549, -0.000378545112, -0.0173353292, 0.00547133852, 0.0194639955, -0.0385554768, 0.0124260914, -0.0216724873, 0.00515203876, 0.0085612312, 0.00928630866, -0.00898031238, 0.000735886744, -0.0196103416, 0.0161778666, 0.00205050479, -0.00623965403, -0.00978521444, -0.0207411963, -0.0171091575, 0.00150669692, -0.0131844291, -0.0098251272, 0.0138230296, 0.022351, 0.0086676646, 0.0147942333, -0.0082751913, -0.0157255251, 0.000920482038, 0.0404978842, 0.00809558574, -0.0359744653, 0.0177078452, -0.00111505552, 0.00182267081, -0.0004101425, -0.0230162088, 0.0164439492, -0.0186258331, -0.00139527454, -0.00989164785, 0.00679177698, -0.0201558117, -0.0106765935, -0.00678179879, -0.0013038083, 0.0168696828, -0.00412429171, 0.014661192, -0.0107497666, 0.0129249981, 0.0237745456, 0.0118407086, 0.0190382618, 0.00395466341, -0.0184129663, -0.0216458794, 0.00746363774, -0.0259032119, -0.00382827409, -0.00564761879, -0.00657225819, 0.000720919517, 0.00733724795, -0.0100712543, 0.00699133938, 0.00248787925, -0.00367195, 0.0131711252, 0.000431969675, 0.0168297701, 0.0104836831, -0.0232689884, -0.0183331426, 0.0141689377, 0.0111555438, -0.0112420209, 0.0141822416, -0.0275928415, 0.015565875, -0.0105635086, 0.0107763754, 0.0115546687, -0.00728403125, 0.0134239038, -0.00458661141, 0.0094858706, -0.0103439894, -0.0341384932, 0.0160182174, 0.0088539226, 0.016816467, -0.0103972061, -0.027326759, -0.00321295625, 0.019543821, -0.0030882298, -0.00161063566, -0.0225638673, -0.0136035103, 0.00723746652, 0.00914661493, 0.00129632477, 0.0221381336, -0.0113418018, 0.0243599284, 0.012392831, 0.00405777106, -0.0150470128, 0.0145946713, 0.00772972079, -0.00452341652, -0.0274065826, -0.0183464456, -0.0104437713, -0.0203420706, -0.00489260722, -0.0396198072, 0.0472297929, 0.00443361374, 0.0174683705, -0.0183730535, -0.0172555037, 0.0265418123, 0.0132576022, -0.00966547709, 0.0190648716, 0.0157787409, 0.0045566773, 0.00999142881, -0.019716775, -8.58794374e-06, -0.00386153441, -0.00574407401, 0.0241603665, -0.00580394268, -0.00181601872, -3.85093263e-05, -0.0294288173, -0.00653567212, -0.0129050417, 0.0162709951, 0.0104371188, -0.000212554849, -0.000961226062, -0.0274864081, -0.0138363335, -0.00095540547, -0.00910005, 0.00772306882, 0.00299676345, -0.0341118835, 0.00587046379, -0.00527177611, -0.00727072731, -0.000210060316, -0.0305463672, 0.0114415837, -0.00743702939, 0.00619308976, 0.00975860655, -0.0091931792, 0.00206547184, 0.0443294831, -0.000840657041, 0.0326484255, 0.0189052206, -0.00119155447, -0.00938609, 0.0216059666, -0.0277524926, 0.00551125128, -0.0162044745, 0.00385820842, 0.00709777279, -4.56811031e-05, -0.0114349313, 0.021353187, -0.0112553248, 0.0228299499, 0.00211203657, -0.0158984791, 0.0204751119, 0.022071613, 0.0299609844, -0.0248787925, -0.0180404503, 0.0398592837, 0.0128185647, 0.00314310938, -0.000684748811, 0.00138695934, -0.00357549475, 0.0102508608, 0.00585050741, 0.02116693, -0.0193043463, 0.00113833777, -0.00749689806, -0.0263156425, 0.0326750353, -0.03477709, 0.0296150744, -0.0331273749, 0.00284542865, 0.0276726671, 0.000542144815, -0.0124127874, 0.0366130657, 0.0261293836, 0.0112819336, 0.0188919175, 0.0180670582, 0.00435378868, 0.015752133, -0.00303335, 0.0123130064, 0.010955981, -0.0121600088, 0.0039646416, 0.00870757736, 0.0230827294, -0.00204884168, -0.0175748039, -0.0137165962, -0.00168879761, 0.00105851272, -0.0161778666, 0.00493584573, 0.0182533171, -0.00101111666, 0.00561768422, 0.000288949872, 0.00563098863, -0.0068250373, 0.0166302081, 0.0123595707, 0.0165370796, 0.0177211501, 0.0257701706, -0.0140758082, 0.0135635976, -0.0421209931, 0.0235616788, -0.0143152829, -0.0145015419, 0.00367195, -0.00240472821, -0.0226969086, -0.0109160691, 0.018639138, -0.00796254352, -0.0276460592, -0.00449680816, -0.0230162088, -0.0188919175, -0.0120070102, 0.00371186249, 0.0167366415, -0.0278855339, 0.024971921, 0.0216458794, -0.000950416434, -0.00753015839, 0.00543475198, 0.036746107, 0.00374512305, 0.0160714332, 0.0207678042, 0.0209274534, -0.00907344185, -0.0267413743, -0.0283644833, -0.0329145081, 0.00448683044, -0.0324355587, -0.00874748919, 0.0268744174, -0.0157122202, 0.00810223725, 0.0535891838, 0.000124310813, 0.0179739296, -0.0083217565, 0.0345376171, 0.0386353, -0.0125391772, 0.0268744174, 0.00102774682, -0.0278323162, -0.0250118338, 0.0189584382, -0.00570416171, 0.0216591842, -0.0148607539, 0.00488928147, 0.00205383077, -0.0137165962, -0.0204751119, -0.0244131461, -0.00759002706, -0.00823527947, -0.0040178583, -0.00802906416, -0.0217390079, -0.0288966503, -0.0163508207, -0.00847475417, 0.0190914795, -0.000730897649, -0.00802906416, 0.0205948502, -0.0277524926, -0.00704455609, -0.00605007, 0.00146428985, 0.00316805462, -0.0221647415, 0.0364002, -0.0140092876, 0.0213664919, -0.0427595936, -0.0132908626, 0.0028138312, -0.000649825379, 0.0024496296, 0.0261293836, 0.0198631212, 0.0107830269, -0.0237479378, 0.0208609328, -0.0123462668, -0.0240938459, -0.0185992252, -0.00595694082, -0.00818871427, 0.0042174207, -0.00483273854, 0.0253045242, 0.0279919673, -0.0125923939, -0.0115280608, 0.000996981, -0.00444359146, -0.0236548092, 0.00167549355, -0.00421076873, -0.0127121313, 0.0212999713, 0.00239973911, 0.0066786916, -0.0149139706, -0.0180537552, -0.00524516776, 0.00147509947, 0.00217855722, 0.0137165962, 0.0067053, -0.00759002706, -0.0248388797, -0.00697138347, 0.0194107797, -0.00223011104, -1.01340329e-05, -0.006878254, 0.00416753, 0.015565875, -0.00305164326, -0.0136101628, -0.00804236904, 0.0103306854, 0.0128185647, 0.00725077093, 0.0133640356, 0.00142105133, 0.0244796667, 0.000619475264, 0.0720553696, -0.00392140308, 0.0010992568, -0.00174783485, 0.00275728852, 0.0118274046, -0.0057540522, -0.023708025, 0.00605672179, 0.014301979, 0.0158319585, -0.000417418225, -0.0136766834, -0.00412761793, -0.0141290249, -0.00342249684, 0.0120136626, 0.0228964705, 0.0201558117, 0.0082219746, -0.017920712, -0.0221381336, 0.0046897186, 0.017907409, -0.00268245256, 0.00441365736, -0.00198065792, 0.00893374812, 0.0142088505, -0.00127636851, -0.00550127309, 0.0189451333, 0.00113168568, 0.0178408884, 0.00785611, 0.00818206277, -0.0160315204, 0.000528424862, -0.00388481678, 0.0110225026, 0.0089004878, -0.0128651289, 0.00327448803, 0.0140225915, 0.0229629911, 0.0166701209, 0.0185593124, -0.00719090225, -0.000709278393, -0.00707116444, 0.0101178186, -0.0040178583, 0.00517199468, 0.0128451725, 0.0197699908, 0.00758337509, -0.00373514486, -0.00351895206, -0.00701129576, 0.00266914838, -0.00108013209, -0.00868762098, 0.00975195412, 0.00618311157, -0.00100363302, -0.013929463, -0.0217257049, -0.00432052836, -0.0122331809, 0.0310253166, 0.0244796667, -0.0179606248, -0.0108761564, -0.0163774285, 0.0137032913, -0.00411763974, 0.00717094587, 0.0221248288, -0.0134638166, -0.0212866664, -0.0138097247, 0.00265418133, 0.00195404957, -0.0169495083, -0.00363868964, -0.0186923537, 0.0381031334, -0.00673856027, 0.0165503826, 0.00826188736, 0.00618311157, -0.0196635593, 0.0123130064, -0.00753015839, 0.0200227704, -0.0168430749, 0.00760333147, 0.000646499335, -0.0376507901, -0.00102774682, 0.00101111666, 0.0232822914, 0.00574407401, 0.00470302301, 0.00965882465, 0.0164705589, -0.00121899426, -0.00156573416, 0.00585050741, -0.00651238952, -0.0188520048, -0.00925304834, 0.0315840915, 0.00979851838, 0.019171305, -0.00087225443, -0.0135170333, 0.0153397042, 0.00893374812, -0.0292425584, -0.0238144584, 0.00548131671, -0.00540481787, -0.0106632896, 0.0124527, -0.00021130759, -0.00759667903, -0.00818206277, -0.00869427249, 0.00294687296, 0.0131578213, 0.0267280713, 0.0118007958, -0.0202356372, 0.0201824214, -0.00161811931, 0.00279054907, -0.00841488503, 0.00428726757, -0.00743037695, 0.0109227207, 0.0145414546, -0.0095390873, -0.000940438302, 0.00450013438, 0.0100779058, -0.017016029, -0.004796152, -0.000715514703, -0.00921313558, 0.0258100834, -0.0115679726, 0.0063095009, -0.00417085644, 0.0136899874, 0.0282580499, -0.00645584706, 0.0127054788, -0.0193043463, 0.00462652417, 0.0211270172, -0.0109626334, -0.0123595707, 0.012219877, -0.00264752912, 0.0138895502, 0.00842153747, -0.0083217565, -0.00598687492, -0.010869504, -0.0315574817, 0.0192511287, 0.0130913, 0.00634941366, -0.00850801449, 0.00621969812, -0.0105302483, 0.00780289387, 0.0246925335, -0.00762994, -0.00114083232, -0.00544805638, 0.0221913494, -0.0154195288, 0.00582722481, 0.0062163719, -0.0145015419, -0.020807717, -0.00933287293, -0.0195305161, 0.0289232582, 0.0045965896, 0.00724411895, -0.00352227804, -0.0240140203, 0.0240539331, -0.00333601981, 0.00121816271, 0.0106765935, 0.00951913092, 0.0128318686, -0.00174284587, 0.0015116859, -0.00354888639, -0.00425733346, -0.00627624057, 0.0102641648, -0.00152083253, 0.011128935, -0.00118905993, -0.0239075869, -0.00114083232, 0.0170825496, 0.00518197287, -0.00367860217, 0.00201890734, 0.00385820842, -0.00320963026, 0.00597024476, 0.00715764146, -0.0121799642, -0.0260096453, 0.0300674159, 0.0257701706, 0.0176147167, 0.00575737795, -0.0215660539, -0.00794258714, 0.0167100336, 0.0027722558, -0.0213664919, -0.00267912657, -0.00770311244, 0.0185460076, -0.0243599284, -0.00546136033, 0.0166967288, 0.00705120852, -0.0106300293, -0.0201824214, -0.0185992252, -0.00967212953, -0.019171305, -0.00713768555, -0.0160315204, -0.0123994835, 0.0160315204, -0.0150071, -0.0103373379, -2.33732389e-05, -0.00253111776, 0.017188983, 0.0208742376, -0.0167765543, 0.0239341967, -0.0163774285, 0.00947921909, 0.00721085817, 0.0152332708, -0.00119155447, -0.00871422887, 0.0291893426, -0.00560770649, 0.00267413747, 0.033287026, 0.0115081044, -0.0163641255, 0.00404446665, -0.00253943284, -0.00339422561, -0.014288675, -0.00357216876, 0.03113175, 0.0234951582, -0.00011869811, -0.00597689673, -0.000580394291, -0.0112752812, -0.0163641255, 0.00651904149, -0.00691151479, 0.00307991449, -0.0110624144, 0.0100712543, -0.0105369, 0.000103523045, 0.000574989477, 0.00357216876, 0.0067319083, 0.0171224624, -0.0017777693, 0.00865436066, 0.00354556041, -0.0211004093, 0.0196369495, -0.0038715126, -0.0456332937, -0.00695142709, 0.000697221491, -0.00374844903, -0.0169495083, 0.0072574229, -0.0059003979, -0.0066254749, 0.00615982898, 0.0138097247, 0.00198731, 0.0174550675, -0.0019939621, -0.00737716025, 0.00213199272, -0.00883396715, 0.00462652417, -0.0125990463, -0.00190083287, -0.0117675355, 0.0108894603, -0.00345908338, -0.00816875882, 0.00669532176, -0.00939274207, 0.00874083769, 0.00556446752, 0.0104437713, -0.0158186536, 0.000671860413, 0.00592368, 0.00788271893, 0.012951606, -0.0301206335, 0.022617083, -0.012020315, 0.0110225026, 0.00691151479, -0.00159733149, 0.00329111819, -0.00348569173, 0.0236681122, -0.00327448803, 0.0227501243, -0.0201159, 0.00884727109, -0.00555449, -0.000527177588, -0.000159857882, 0.00701129576, -0.0253178291, -0.0191180874, -0.00637934776, -0.0140092876, -0.00319466298, 0.000282297784, -0.00516534271, -0.000702626305, 0.0278057083, -0.012765348, -0.00676184287, 0.0120801833, -0.0110091977, 0.0118207522, 0.00173619378, 0.0166169051, 0.0152997915, -0.00278389687, -0.00580394268, 0.0166169051, -0.00730398763, 0.00233321823, 0.012772, -0.0053748833, 0.00398459798, -0.0124460477, -0.0183996633, -0.0133041665, 0.0089404, 0.03113175, 0.000945427339, -0.00868096855, -0.00440035295, -0.00280052703, -0.00750355, -0.0141423289, 0.000398917124, -0.0223909132, 0.00620639371, 0.0211270172, -0.000456914975, 0.00984508358, 0.0268478077, 0.0124393962, -0.00501567079, -0.0114681916, -0.0159916077, -0.00732394401, -0.000768315629, -0.00518529909, 0.00600350508, 0.0240273252, -0.00917987525, 0.0101643838, 0.00229663169, 0.0337659754, 0.0153929209, -0.0114615392, 0.0151002295, 0.0165104717, 0.00504227914, -0.00122564635, 0.00585715938, 0.00320297806, -0.0104770316, 0.0180670582, -0.00753681036, -0.00470302301, 0.00998477731, -0.00555116357, -0.00951247942, 0.000216816348, -0.00701129576, 0.00442030933, 0.000932123163, -0.0031281421, 0.0163375176, -0.00872753374, 0.000424486061, 0.011488148, -0.00288035208, -0.0148873627, 0.0252912212, 0.0222046543, -0.00893374812, -0.0119005768, -0.00935948174, 0.0122464858, -0.0169495083, 0.0174683705, 0.0154727455, -7.37445807e-05, 0.00179938856, 0.0060467436, -0.0159916077, -0.0172022879, 0.000978687778, -0.0298279412, -0.00624963222, 0.000263588794, 0.00744368136, -0.0167898592, -0.00175615, -0.000776215, -0.00467974087, 0.00484271673, -0.0170692466, 0.00879405439, -0.0272070207, 0.00413759565, -0.0115081044, -0.0026076166, 0.00609330833, 0.00580061646, 0.00540481787, 0.000952910923, -0.0105302483, -0.0215793587, 0.0038182959, -0.00409768336, 0.00698468741, 0.0176014118, -0.00164639065, -0.0183863584, -0.0321694762, 0.0111888042, -0.01573883, -0.0194906034, -0.00507221371, -0.00144433358, -0.00684499368, -0.0145414546, -0.00788271893, 0.028603958, -0.0290563, -0.0156723093, 0.0179606248, -0.00648245541, 0.00263921404, -0.0066786916, 0.00997812487, -0.00785611, -0.0144217163, -0.0166036, 0.00608665636, -0.00253610685, 0.00160814112, 0.00374844903, -0.00662214914, -0.0265019, 0.0045965896, -0.0137032913, -0.0126123503, 0.00137698126, -0.0180005375, -0.00812884606, -0.00112087606, -0.00382827409, 0.00431720214, 0.0307326242, -0.00718425, -0.0121334, -0.0125391772, -0.0119005768, -0.0131511688, -0.0112885851, -0.0235749837, 0.0214197077, -0.00220017647, 0.0117276227, 0.0117741879, -0.00400122814, -0.0192910414, 0.0129649108, -0.0063627176, -0.0160448253, 0.0310519245, -0.00482276035, -0.0207278915, 0.0170426369, 0.00658888835, -0.00514538633, 0.00575072598, -0.000524683099, -0.00838162471, 0.00671860436, 0.00568087911, 0.0263023376, 0.022617083, 0.00512543041, 0.00580061646, 0.0166967288, 0.010124471, -0.00270074583, -0.00570083549, 0.0240007173, 0.0113551067, 0.0107298102, 0.0110491104, -0.0070246, -0.00105269218, 0.00668201782, -0.00384823023, -0.0150736207, 0.00497243227, 0.0136234667, -0.00291693863, -0.00597024476, 0.0118540125, -0.0047429353, 0.0368791483, 0.000486433593, -0.00785611, 0.000869759882, -8.94393379e-05, 0.00282380939, 0.000616980717, 0.00783615466, -0.00933287293, 0.00456332928, -0.00186424633, -0.00933287293, 0.000144890684, 0.0123994835, 0.0108029833, -0.00691816676, 0.0348569155, 0.00737050828, 0.0283910912, -0.000749190862, -0.0274598, -0.01573883, -0.00190083287, -0.00749024609, -0.0122398334, -0.00600017933, -0.0103572942, -0.0230827294, -0.00639930414, 0.00235317438, 0.00931291655, -0.00814215, 0.00326284696, 0.0162177794, 0.0223776083, -0.0060667, -0.00780954584, -0.0150470128, -0.0147676254, 0.013383992, 0.011388367, -0.0109958937, -0.00749024609, -0.00786941499, 0.0131777767, 0.00665540947, 0.00677847303, 0.00434381049, 0.00344910519, 0.00259930152, -0.0073638563, 0.00145015412, -0.0111555438, 0.00528508, 0.00653899787, 0.005205255, 0.00692481874, 0.0124260914, -0.00602678768, 0.0098783439, 0.0183065329, -0.0202223342, -0.00119986956, 0.00788271893, 0.000787440396, 0.00784280617, 0.0170692466, -0.00232324, -0.00018532289, -0.0112353684, 0.0352826491, 0.0032345755, -0.00294853584, -0.0161645617, 0.0192644335, 0.027326759, 0.0114083234, 0.00708446885, -0.00477287, -0.00620972, -0.0246925335, 0.019171305, 0.00972534623, -0.00215860107, 0.00658223638, -0.0077962419, -0.0160448253, 0.00888053142, 0.0181734916, 0.0154328337, -0.015033708, -0.00311317504, 0.00802241266, -0.00882731471, -0.0244663619, -0.0156457, -0.00587046379, -0.00692481874, 0.0089404, -0.00906678941, -0.0197034702, -0.0323025174, -0.00836832076, 0.0338990167, -0.0331805907, -0.00665873522, 0.0149405794, 0.0239741076, -0.00558775, 0.0156457, 0.0308656674, -0.0117808394, 0.013583554, -0.0121666603, -0.00166385237, -0.0181867965, -9.25705e-06, 0.0246393159, -0.00635273941, 0.00663212733, -0.00601015752, 0.00685164565, 0.019716775, 0.000585799105, -0.0235084631, -0.00123479299, 0.00387483859, 0.00290529733, -1.48372637e-05, -0.00053507695, -0.00445689587, 0.0022567194, 0.0116677545, 0.018652441, 0.00594696263, 0.00784945861, -0.00695807906, -0.0226569958, 0.00833506, 0.00658888835, -0.00767650409, -0.00627291482, -0.00497908425, 0.00858784, 0.0108562, 0.0157122202, 0.0190515667, 0.0117874919, -0.00774967717, -0.00272569107, -0.00200394, -0.00820867065, 0.0240140203, -0.015911784, -0.00256770407, 0.00518529909, -0.00185094215, 0.0127919558, -0.00200892915, -0.000373971823, -0.00301505672, -0.0216990951, 0.0149272755, 0.026608333, -0.00685829809, 0.00430057198, -0.00162310828, 0.00867431704, -0.0156590044, 0.00742372498, -0.00515869074, -0.00433050608, 0.0126323067, 0.0110557629, 0.00758337509, 0.0205017217, 0.00164140156, -0.0178408884, -0.00664875749, 0.00356219057, 0.0282048341, 0.00469969679, 0.00576403039, 0.00322792353, 0.0019274411, -0.0052817543, -0.0214463174, 0.00443028752, 0.00852131844, -0.00391475111, -0.0111355875, -0.0220450051, -0.0102974251, 0.016111346, 0.0136500746, 0.00618976355, 0.0191446953, -0.0139560709, -0.0178408884, 0.000618643768, 0.0309987087, 0.00384823023, -0.00547466474, 0.0101111671, 0.00512543041, -0.012120096, -0.010942677, 0.00625295844, -0.017388545, -0.0140492, -0.0126056978, -0.00884727109, -0.00406774879, -0.00123229844, -0.0089537045, 0.00247956417, 0.00460656779, -0.00747694168, -0.0172155909, -0.021353187, 0.0127054788, 0.032408949, -0.000533829676, -0.00624298025, -0.0103839021, 0.0025028463, 0.0216458794, 0.0224973466, -0.0305995829, -0.00916657131, -8.73605604e-05, -0.00320963026, -0.00492586754, 0.0263289455, 0.0133640356, 0.00529173249, -0.000918819, 0.00533164479, 0.0207145885, -0.00597689673, 0.0253178291, 0.00510547403, -0.0138895502, -0.00614985125, -0.0029302428, 0.027326759, -0.0228698626, -0.000462735537, 0.0154062249, 0.00605672179, 0.0294288173, 0.00274232146, 0.0185859203, 0.00396796782, -0.000828600139, 0.0424402915, 0.00695807906, -0.0156190917, 0.00512875617, -0.0142088505, -0.00306328433, 0.0223909132, -0.00181269273, -0.00262757298, -0.0150736207, 0.00248621614, -0.00366529799, -0.00327116204, -0.0100047337, 0.00567422714, 0.0145813664, 0.013929463, 0.0207944121, -0.025504088, -0.0168829877, -0.0144882379, -0.0208343249, 0.0230162088, -0.0085612312, 0.00353890844, -0.0048593469, 7.08732705e-06, 0.00122897245, 0.0137432041, -0.00933952536, -0.00331772654, 0.00501234503, -0.00262424699, -0.0112486733, -0.000828600139, -0.0191180874, -0.0171091575, -0.0307858419, 0.0177344549, -7.99809059e-05, -0.0104903355, 0.018652441, 0.0010443771, -0.00204551569, -0.00793593563, -0.00221846974, 0.00554783735, 0.00528508, -0.0115147559, -0.00818206277, -0.00961226, -0.00695807906, 0.0303068925, 0.0110690668, -0.0180670582, -0.0133307753, 0.0175082833, 3.65604756e-05, 0.00529505825, 6.52735689e-05, -0.00191912602, 0.0197966, -0.00731729157, -0.00512875617, -0.00897366088, 0.0125657851, -0.01484745, 0.003755101, 0.000363993691, 0.00844814628, -0.0268078968, -0.0219385717, 0.0302270669, -0.0114216274, 0.0115546687, 0.0113351503, 0.0267147664, -0.000630284892, 0.011388367, 0.00438372279, -0.0137831168, 0.00121234218, 0.0164173413, 0.0117475791, 0.00738381268, 0.0102309044, -0.0055977283, -0.0290829092, 0.00263921404, 0.00993821211, -0.00229995791, -0.00605007, -0.00155825051, -0.0209939759, -0.0452075601, -0.0336329341, -0.0006535672, 0.0198764242, -0.00285208086, -0.015911784, -0.00475291349, 0.000858950254, -0.00544473, -0.00858784, -0.00947921909, 0.0302802827, -0.00577400858, 0.000849803677, -0.00787606649, -0.0122464858, -0.0107763754, 0.0029302428, -0.00034965013, -0.00995816849, -0.00926635228, -0.000100404883, -0.029295776, 0.0133773396, -0.00323623861, 0.008960356, -0.010237556, -0.0171623752, -0.0132509498, -0.00538486149, 0.019916337, -0.0019939621, -0.00618311157, -0.0112952376, -0.0339256264, 0.0114482353, 0.00718425, 0.0131644728, -0.0119537935, 0.00187588751, 0.00512210419, 0.00474626152, 0.00608998211, 0.0169495083, -0.00563431438, -0.00184429006, -0.0146212792, 0.00346573535, 0.00703790411, -0.0105302483, 0.00665208325, -0.00768315606, -0.00609330833, 0.00782285, -0.0138496375, 0.00671860436, 0.00272901729, 0.00709112082, -0.0288434327, -0.00243466254, 0.000693479669, -0.0161778666, 0.00175947603, -0.016816467, 0.000831926183, 0.00223343703, 0.0014085786, 0.00252446556, 0.0204085913, 0.00700464379, 0.039087642, 0.00189085468, 0.00776963355, -0.0104504228, 0.0180936661, -0.00533164479, -0.00263588806, -0.0144350212, 0.0019939621, 0.00738381268, -0.0128052607, 0.00824858341, -0.0262225121, 0.0263555534, 0.00113667478, -0.0117076663, 0.00753015839, 0.00269409386, -0.00624298025, 0.00996482093, -0.0242268872, 0.00410433533, -0.0122398334, 0.00100446458, 0.00931956898, 0.00668867, -0.0056376406, -0.00535492692, -0.00860114396, 0.0014617953, -0.000691400899, -0.0116943624, -0.0119737498, -0.00800245628, 0.00344245322, 0.0121600088, -0.0131378649, 0.0161778666, 0.00880070589, 0.0136633795, -0.0122265294, 0.0352826491, 0.00709777279, 0.00626293663, -0.0103705982, 0.01484745, 0.0051753209, -0.00711772917, 0.0283644833, 0.00110341434, -0.00660219276, 0.0132442983, -0.0199828576, -0.00101111666, 0.0032861291, 0.0210205838, -0.0114681916, 0.00547133852, 0.00899361633, -0.0140758082, -0.0123263104, 0.0131711252, 0.0179739296, -2.17362012e-05, 0.000694726943, -0.0147676254, 0.00737050828, -0.00801576, 0.0225106496, -0.00214529689, 0.0202622451, -0.0189185254, 0.000845646078, 0.00505558355, -0.00452009076, -0.0334466733, -0.0230960343, -0.0211137123, 0.00562101044, -0.00955239125, 0.0106433332, -0.0122863976, 0.0110291541, 0.017907409, 0.00776298111, -0.0261027757, 0.00698468741, 0.00367527595, -0.00491921557, 0.00778293749, -0.023335509, -0.00168464007, -0.0174816754, -0.00237479387, -0.0104903355, -0.00038706811, 0.0157255251, -0.00473295711, -0.0226569958, -0.027858926, 0.00367527595, 0.00701129576, -0.00291194953, -0.00288367807, 0.0291095171, -0.00634276168, -0.00126971642, -0.0257435627, -0.017002726, 0.0224574339, 0.0239475, 0.0101643838, 0.0301738493, -0.000402866805, 0.0080357166, -0.0149538834, -0.00507886568, 0.0197300799, 0.0121533563, -0.00913331, -0.0163242128, -0.00209706929, 0.0112885851, 0.00314976159, -0.0103639457, -0.00100197, -0.00376175321, -0.00250617252, 0.00816210639, 0.00424402906, -0.0144084124, -0.0119804023, 0.0239608046, -0.00543142622, 0.0174550675, 0.00472963136, 0.0131844291, -0.0147809293, -0.00476289168, -0.00363536365, -0.00710442523, -0.019916337, 0.00963221677, 0.00465313252, 0.00192411512, 0.0028653848, 0.0264087711, -0.0403116234, -0.00662214914, 0.0014360185, -0.00150835991, -0.00805567298, -0.00158070133, 0.0198365133, 0.00851466693, 0.0210871045, 0.00429059379, 0.00757672312, 0.00591037609, 0.00451011257, -0.00620306795, 0.00994486455, 0.0020870911, 0.0154062249, -0.037464533, 0.00389146875, -0.029136125, -0.0235749837, 0.00935948174, 0.0136367707, 0.0200360753, -0.00191912602, 0.00333103072, -0.0196635593, -0.00967878103, 0.00656228, 0.0060467436, 0.00957234763, -0.0184794869, -0.0331805907, 0.00441698357, 0.00164140156, 0.0054680123, 0.00490591163, -0.0109626334, 0.0144882379, 0.00812884606, 0.0319033936, 0.0235217661, 0.00592368, 0.0126988273, 0.00240140199, -0.00646249903, 0.00727072731, 0.0110823708, -0.00553120719, 0.0158851743, 0.00923309196, -0.0257169548, -0.00727737928, 0.00635273941, 0.00677514682, 0.00276726671, 0.00560438028, -0.0318501741, 0.0229496881, -0.0260229502, 0.00596026657, -0.00262258388, 0.0276992749, -0.0164439492, -0.0269409381, 0.0125258733, -0.0131578213, 0.0326750353, 0.0154860504, -0.00622635, -0.0067951032, 0.0151268374, 0.0112420209, -0.00133540574, 0.0152864875, -0.00555449, 0.00170293334, 0.0088539226, -0.020648066, -0.00805567298, 0.0153264, 0.00845479779, -0.011042458, 0.00137365516, -0.00998477731, -0.0073106396, -0.000625711575, -0.00347903953, 0.0100446455, -0.0212334506, -0.0418549068, -0.00986504, -0.00675519044, -0.0108961128, 0.00884061866, 0.000143019788, 0.00904018153, -0.000446521095, 0.00664875749, -0.00290363445, 0.00340919266, 0.0194506925, 0.0129915187, -0.0239208918, 0.00712438114, -0.00622635, 0.014115721, -0.0117874919, 0.0028188203, 0.0212467536, 0.0288966503, 0.000902188825, -0.00389812095, 0.00613322109, -0.00985173509, -0.0243865382, 0.00258100824, -0.0024496296, -0.000558775, -0.00859449152, -0.0354955159, 0.0111156311, -0.0167100336, 0.00405444484, -0.00278888596, 0.0240938459, -0.00115829404, -0.00869427249, 0.0183730535, -0.0229097754, 0.0016147932, 0.000741291558, 0.0209274534, 0.00404114043, -0.00641260855, 0.00935282931, 0.0202489421, 0.00685164565, -0.00437041884, -0.0104903355, -0.00364534161, 0.0182932299, 0.00940604601, -0.00830845255, -0.00390144694, -0.0149405794, -0.00306993653, 0.0120003587, -0.00687160203, 0.00854127482, -0.00500236684, -0.00936613325, -0.0221913494, -0.00790267531, -0.00388481678, -0.00100446458, -0.00182599691, 0.0199828576, -0.000598687504, 0.0136633795, -0.015033708, -0.0195039082, -0.0216458794, 0.00207378692, 0.0415356085, -0.0049657803, 0.0141423289, -0.00570748746, 0.027326759, 0.00359877711, 0.015565875, -0.00240140199, 0.000175448702, 0.00430057198, -0.0131511688, 0.0225904752, 0.00443361374, 0.00437041884, -0.00332105253, 0.00519195106, 0.0117342751, -0.0319832154, -0.00354223442, -0.0248787925, -0.0103572942, -0.0180936661, 4.9474871e-05, -0.00535160117, 0.00554783735, 0.018279925, -0.00292691658, -0.0163774285, -0.00680508139, -0.0184262712, -0.000777878, 0.0161246508, 0.00173619378, 0.00173120468, 0.0028737, -0.0131644728, 0.00810223725, 0.0238942839, 0.00100363302, 0.00461987173, -0.0152598796, 0.00103855657, -0.00815545395, -0.00075792172, -0.0133241229, -0.0157920457, 0.00163391803, -0.0209008455, 0.0318501741, -0.0116078854, -0.0270340666, 0.0236548092, -0.0190648716, -0.0167100336, -0.00458993763, 0.00271405, 0.00807562936, 0.0222711749, -0.00307825161, -0.0115812775, 0.0111555438, 0.000858950254, 0.00745033333, 0.00569418352, -0.0261692964, -0.0103506418, -0.00149339275, -0.00489925919, -0.0119205331, 0.0026142688, 0.0224707369, 0.00203221152, 0.00956569612, -0.00278556, -0.0110225026, -0.02027555, -0.000690153625, 0.00981847476, 0.010683246, 0.00349566969, -0.00899361633, 0.00439702719, -0.013756508, -0.00945261, 0.0295884665, -0.00466643646, 0.0125125684, 0.00205881987, 0.0123396143, -0.00606337376, 0.00597689673, 0.0304665416, -0.00566424895, 0.0231492501, -0.000458578, -0.00749024609, 0.00760333147, -0.00445356965, 0.00378503534, 0.00325619476, -0.00471965317, 0.0142221544, -0.000874749, -0.0176147167, -0.00447685225, 0.000712604437, 0.038209565, -0.0073439, 0.000288118346, 0.00163973856, -0.00622635, -0.00701794773, -0.00330941146, 0.0174683705, 0.00504560536, -0.0051753209, -0.00833506, 0.0152332708, 0.00194240839, -0.0239075869, 0.00397462, -0.010224252, 0.0151933581, 0.0363469832, 0.00652901968, 0.0155924838, -0.0136766834, 0.0151534462, 0.00376175321, 0.00160814112, -0.0166701209, 0.000467308855, -0.00755011477, -0.0017245526, -0.0109493295, 0.0194639955, -0.00332437875, 0.00169295527, 0.0111222835, -0.00102109485, -0.0312381834, 0.0238011535, -0.00486599887, 0.00143102941, -0.00254109595, 0.0141423289, -0.0241736714, -0.00836832076, 0.00328114, -0.00695142709, -0.00749024609, 0.00489593344, -0.00567090092, -0.0148740588, 0.00102442084, 0.00336928014, -0.00300175254, 0.00685164565, -0.00475623971, 0.0204618089, 0.0168563798, 0.00939939357, 0.0132576022, 0.0284709167, 0.0100113852, 0.00321129314, 0.00206214585, -0.00285208086, 0.0101776877, -0.00645917282, 0.00139776897, 0.00234984839, 0.00796919595, 0.000538403, -0.0110225026, 0.0017245526, 0.0065323459, -0.0249320082, -0.0244131461, -0.024426451, -0.0125325248, 0.0066387793, 0.0263289455, 0.00363203743, 0.017188983, 0.00517199468, -0.00079825, 0.00988499541, -0.00672193, 0.0220450051, -0.00619641552, -0.0063095009, -0.00547133852, 0.0024496296, -0.00592035428, -0.000231367769, -0.00525181973, 0.00681838533, -0.00973865, 0.00633943547, 0.00451011257, -0.0073439, -0.010137775, -0.0060667]
03 Apr, 2023
Types of Node Devices in a Computer Network: End devices and Intermediary Devices 03 Apr, 2023 Pre-Requisite: Physical Components of Computer Network The computer network is a term used to refer to any group (or system) of interconnected nodes (computers, printers, or any other devices) connected by communication links known as transmission media (or channels) usually meant for the exchange of information and resource sharing. What is Node in Computer Networks? In Computer Networks, a Node is any device that is capable of sending or receiving data, to and from other nodes at definite and desired flow rates securely and reliably. In simple words, you can say that Nodes are the connection point among network devices that results in the transfer of data from one point to another. In a Network, more than one node can be used at one time. On the basis of functionality and usage, the node devices can be broadly classified into the following types: End Devices Intermediary Devices End Devices and Intermediary Devices 1. End Devices End devices are node devices that serve as a source point or a destination point in the communication that occurs on a computer network. With the coming advancements in computer networking systems, we have nodes that can act as a client, a server, or both. The rest of the network is built around these end devices to establish communication links between them. Software installed on the node devices determines the role they offer to play in a computer network. According to their usage, the end devices can be broadly grouped into the following categories: End Devices as Clients: Perform the tasks of requesting data, displaying received data, etc. meant usually for usage by end clients. End Devices as Servers: Equipped with programs that provide information and services such as webpages or e-mails to other nodes (or hosts) on the network. Functions of End Devices They serve as the originator of the data or information that flows through the network. Act as an interface between end-users (humans) and the communication network having several node devices. Examples of the End Devices Some examples of End Devices are Work Stations, Laptops, Desktop Computers, Printers and Scanners, Servers (File Servers, Web Servers), Mobile Phones, Tablets, Smart Phones, etc. 2. Intermediary Devices Intermediary devices are node devices that are designed to forward data from one side to another side in a computer network. These intermediary devices work as a connecting medium (along with other services being offered) for other nodes and handle the tasks in the background ensuring that the data flows effectively at desired flow rates across the entire computer network. The intermediary devices for the management of the data flowing through them use various addressing systems such as IP Addresses, MAC Addresses, and Port Numbers (or Port addresses) along with information about the network interconnections. Further various types of switching in computer networks determine the path that messages take through the network during communication. Functions of Intermediary Devices Signal damping is a common phenomenon that is overcome via the regeneration and retransmission of the data signals done by these devices. To ensure successful transfers these devices keep a record of information on the source address, destination address, or different pathways existing through the network depending upon the switching technique being employed. They also detect faults and errors effectively using redundancy bits, etc. and notify the devices to further ensure fault tolerance by performing corrections while transferring data in a computer network. Maintenance of a definitely desired flow control and response timeout during the entire course of the communication. Setup, grouping, and direction of messages (or packets) according to their priorities are done by these devices. Provide network security by permitting or denying the flow of data, based on security settings. Examples of the intermediary devices Some examples of Intermediary Devices are Hubs, Switches, wireless access points, and other devices used for accessing the network, file servers, web servers, print servers, modems, and devices used for internetworking such as routers, bridges, repeaters, security firewalls, etc. Some Other Nodes in Computer Network Data Communications Telecommunication Nodes Cable TV Network Nodes Distributed Network Nodes LANs & WANs 1. Data Communications: Data Communication is defined as the exchange of data between two devices via some form of transmission media such as a cable, wire or it can be air, or vacuum also. For the occurrence of data communication, communicating devices must be part of a communication system made up of a combination of hardware or software devices and programs. Data Communications 2. Telecommunication Nodes: Telecommunication Nodes are the nodes connected in the telephone networks which might be used privately or publicly to communicate with one another. 3. Cable TV Network Nodes: Nodes in cable TV Network Devices basically deals with the Fibre Optics cables, which are connected in homes and business areas. 4. Distributed Network Devices: Distributed network nodes are the nodes that are distributed among servers and clients. 5. LANs & WANs: LAN & WAN are used to perform actions. Here, for every Network Interface Card, we require a MAC Address. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System/Introduction of System Call/How much Stack size required for BIOS interrupt call?/Difference between Interrupt and Polling/Difference between Difference Engine and Analytical Engine/Difference Between Store‑and‑Forward Switching and Cut‑Through Switching/Difference between Message and Packet Switching/How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?/Types of Node Devices in a Computer Network: End devices and Intermediary Devices
https://www.geeksforgeeks.org/types-of-node-devices-in-a-computer-network-end-devices-and-intermediary-devices?ref=asr10
PHP
Types of Node Devices in a Computer Network: End devices and Intermediary Devices
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, Difference between Difference Engine and Analytical Engine, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Difference between Interrupt and Polling, Types of Node Devices in a Computer Network: End devices and Intermediary Devices, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, jQWidgets jqxToolBar close Event, How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, Difference between Message and Packet Switching, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, Introduction of System Call, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Difference Between Store‑and‑Forward Switching and Cut‑Through Switching, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How much Stack size required for BIOS interrupt call?, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0456277058, 0.0152350143, -0.0156216891, 0.0319548622, 0.0299286824, 0.0151808793, -0.0128298923, -0.00504611479, 0.00352841383, 0.0180190764, 0.00526652, -0.0194111094, -0.00610560598, -0.03693524, 0.00237418734, -0.00110395846, -0.00371981808, 0.00465557259, 0.00300833513, 0.00210158131, 0.0112367896, -0.0199679211, -0.0208031405, -0.0184985548, -0.0318620577, 0.0209887456, 0.00520465197, -0.00864606351, -0.0450708941, 0.0261547286, 0.0134099051, 0.00143456599, 0.0410804041, -0.0276086293, -0.0226437151, -0.034584254, -0.00238192105, -0.0342130475, 0.00621387502, -0.00968235359, 0.0156371556, 0.00278019672, 0.0131314993, -0.0389150195, -0.0193337742, 0.00872339867, -0.0111826546, -0.0327591449, 0.0339965075, -0.036223758, -0.0271910187, -0.0389150195, 0.0250720382, 0.0434623249, -0.00668948563, 0.0277942326, 0.039502766, 0.0384200737, -0.0192564391, 0.0113759926, 0.0509792939, 0.0244378895, -0.0135413753, -0.00968235359, 0.00213058176, 0.035512276, -0.0412660055, 0.0227519851, 0.0230149236, -0.038791284, -0.0169673208, 0.0210506134, -0.0221023709, -0.0302998908, -0.0208804756, -0.0237264074, 0.00727336574, 0.0308567025, 0.0333778262, -0.0325735435, 0.00314560509, 0.0374920554, 0.0368733741, -0.0100303618, 0.0195967127, 0.00227945205, -0.00209384761, -0.0616824739, 0.0634766445, 0.0270363502, 0.00773737626, 0.0412350744, 0.00852232706, -0.0556503348, -0.00839859154, -0.00932661258, 0.0479477607, -0.00530132093, -0.0150107425, 0.0206639376, 0.0286603868, 0.0102623673, 0.00755177205, 0.0110511854, 0.0237418748, -0.00352261355, -0.0043539661, 0.031985797, 0.00187247596, 0.0438025966, 0.0136805782, -0.0166889131, 0.00330027519, 0.0309185702, -0.0454730354, 0.00556812668, 0.0198132508, -0.0488757789, -0.0210815463, 0.0244688243, 0.0348935947, -0.00539412303, -0.0175396, 0.0312433783, -0.058898408, 0.03316129, -0.0272992887, -0.00100825634, -0.0115229292, 0.00330220861, -0.0148560721, 0.00483344356, 0.0146627342, 0.0193801746, -0.00158343604, -0.00289426604, 0.0360381529, 0.0466485284, -0.00706842775, -0.0363784283, 0.0361618921, -0.000689732376, -0.0202463288, -0.0120642753, -0.00552172586, 0.0278097, 0.0107573122, 0.0281499755, -0.0280881058, -0.000801868271, -0.0192564391, 0.0146627342, 0.0190244336, 0.038327273, -0.0139125837, -0.020679405, 0.0220869035, 0.0214836895, -0.0519691855, -0.0163486395, -0.0110434517, -0.024638962, -0.0305009615, -0.00707616145, -0.0160547663, 0.0265104715, 0.0383891426, 0.00375268562, -0.048349902, 0.0260155257, 0.0105021056, 0.00931114517, 0.0126829557, 0.0188388284, -0.0047290409, -0.00428436417, 0.001475167, 0.0204783324, 0.0169982538, -0.00996849407, -0.00648841448, -0.0338109024, -0.0301606879, 0.00407555932, 0.00637241174, 0.00698722573, 0.0150803439, 0.00317073893, -0.0112986574, 0.0164105073, -0.00634921156, 0.00175067317, 0.0603213757, 0.00712642912, -0.015242747, -0.0314753838, -0.0275931619, 0.0306865666, 0.0178334732, -0.00147033355, -0.0132165682, -0.00818205345, 0.0219012983, 0.0324188732, 0.0361000225, -0.00253465772, 0.00955861807, -0.0304236263, 0.0138507159, -0.0157299582, -0.0334706306, -0.0137037793, 0.0318620577, 0.00864606351, 0.0182665493, -0.0049339789, -0.0173539948, -0.0177252032, -0.00802738313, -0.000890320283, 0.0129845627, -0.00159020291, 0.0161939692, 0.00742030237, -0.0580013208, -0.0408019945, 0.0138429822, -0.0578775853, -0.0429055095, 0.00125476194, -0.0052471864, 0.0751697123, 0.0225509144, -0.0218394306, -0.0375229865, -0.0057421308, 0.014314726, -0.00390348886, -0.0452874303, 0.0240202807, -0.0291862655, 0.00609400542, -0.0222725067, -0.0255979169, -0.0183748193, -0.00954315066, 0.018220149, 0.0497728661, 0.00341821113, -0.0126520218, -0.0318929926, -0.00571119692, 0.0263093989, 0.0161321014, -0.0216074251, -0.0256907195, 0.000150561769, 0.00900953822, 0.0130386967, -0.00444290135, 0.00833672285, 0.00757883955, -0.0280107707, 0.0143301934, -0.0218703654, -0.0188388284, 0.0453183651, -0.00881620124, 0.00997622777, -0.0251957737, 0.0145080639, -0.0401214473, -9.40104728e-05, -0.00300060166, -0.0252112411, -0.0297894794, 0.0124122826, 0.0318001918, 0.011801336, 0.0251493733, 0.0106181083, -0.058434397, -0.0121725444, -0.0155675551, -0.0381416678, -0.0212207511, -0.032233268, 0.0180654787, -0.0244069565, -0.00794231426, -0.0215919595, 0.0194575097, 0.0305473618, 0.000532645441, 0.020571135, -0.00828258879, -0.0146704679, 0.0131160319, 0.0365021639, -0.0169827864, 0.0333468914, -0.0473909453, 0.0144152613, -0.0010256567, -0.0386366136, -0.0353266709, -0.00330607523, 0.0353885405, 0.0320167281, -0.0162094366, 0.00683255587, -0.0309959054, -0.0425033681, -0.0585581325, 0.0192255042, 0.0164105073, 0.021359954, -0.0375539213, -0.00140556542, -0.020107124, 0.0197049826, 0.0027357291, -0.0419465564, 0.0937920064, 0.00760590658, -0.010270101, 0.0159310289, 0.0637241155, -0.0500512719, -0.0373064503, -0.0232778639, -0.011693066, 0.0155056864, -0.024886433, 0.0223343764, -0.0540108308, -0.00275892951, 0.00107495778, 0.0103474362, 0.0448543541, 0.00943488162, -0.0322642028, -0.0176014677, -0.0133016361, -0.0275931619, -0.00284786499, -0.0368115045, 0.0378323272, 0.0168590508, 0.0154592851, 0.00148290046, 0.00562999491, 0.0148483384, 0.0265878066, 0.0255515147, 0.00890900288, -0.0161785018, -0.0209423434, -0.012566953, 0.00613654, 0.00110975862, -0.0275158267, 0.0138661824, 0.0208186079, -0.0330684856, -0.0421321616, 0.00795778167, -0.0133403037, 0.00999942794, -0.00827485509, -0.0327282138, -0.0274230242, -0.02267465, -0.0131469658, -0.0277168974, 0.00256172498, 0.0294028036, 0.0188388284, 0.00943488162, -0.0158536937, -0.00569959637, 0.0165342428, 0.0154283512, 0.01846762, -0.0184985548, -0.00187150936, 0.0368733741, -0.00643428, -0.019395642, 0.045998916, -0.0251029711, 0.0309804399, -0.0128917601, 0.0171838589, 0.035512276, -0.0341511779, -0.0327282138, -0.0447615534, 0.00425343029, -0.0203855317, -0.0059470688, 0.00940394774, -0.00452023651, 0.0320476629, -0.0407710634, -0.00173810625, -0.0390078239, -0.0346770585, -0.00677455449, 0.00658895029, 0.000212067331, -0.0259536579, -0.0173230618, -0.00314753829, -0.0151654119, 0.0326663442, -0.0234789345, 0.0356669463, 0.0135181751, -0.013958985, 0.0203855317, 0.0182665493, 0.0227829199, 0.01972045, -0.00593160186, 0.0526187979, -0.0112986574, -0.0176788028, -0.000776251, 0.0301916208, 0.0199833885, -0.0140595203, 0.0152118132, 0.0275931619, -0.0163950399, -0.0728187263, 0.0240357481, 0.0139125837, -0.0175396, 0.0171065237, -0.0144307287, -0.0150571428, 0.00691762427, 0.00313400477, -0.0507936925, -0.00711482856, -0.0419156216, -0.0667556524, -0.00241285493, -0.0146550005, -0.0247626975, -0.0245152246, -0.038791284, -0.0129845627, 0.00917967595, 0.0149024725, 0.0260619279, -0.0377085917, 0.0525259972, -0.00287299883, 0.0128066922, 0.0233706664, -0.0206484701, -0.00285366504, 0.0234789345, -0.0320785977, 0.000190558509, -0.0206639376, -0.0111903884, 0.020679405, 0.0408019945, -0.0482880324, 0.0493088551, 0.0585581325, 0.0188697632, -0.0204783324, -0.00434236554, -0.00654641585, -0.00254239119, -0.00630281027, -0.0034336783, 0.0508555584, 0.0200452562, 0.00108849152, -0.00761750713, 0.00822072104, 0.0242677536, 0.0443284772, -0.00550239207, -0.0421940275, 0.00765617425, 0.00214604894, -0.0389150195, -0.0137579134, -0.0216228925, -0.00573053071, 0.0130773643, 0.0178180058, -0.0126597555, 0.0423796326, -0.0383891426, -0.00643428, -0.00857646205, 0.0644046664, -0.0225509144, -0.00229298556, 0.019287372, 0.0302844234, -0.00708002783, -0.0252576414, -0.0118400035, 0.014422995, -0.00866926461, 0.0263093989, 0.00798871554, 0.0041142269, -0.0141445892, 0.0196740478, -0.0101308972, 0.0174777322, 0.0223653093, -0.00380295329, 0.00925701112, -0.00399435777, -0.0307793673, -0.00907914061, 0.0257216524, -0.00813565217, -0.0318001918, -0.0347698592, 0.00134756404, 0.012017874, 0.012157077, -0.0138971163, -0.0440810062, -0.00769484183, -0.0187305603, 0.00703749387, -0.0191636365, -0.00550239207, 0.0132243009, 0.023386132, -0.0160857, -0.0123968162, -0.0261083283, 0.0344914533, 0.00614427356, -0.00571119692, -0.000585813366, -0.0249637682, 0.00598186953, -0.00747057, 0.042317763, -0.0185449552, -0.0192564391, -0.00806605071, 0.0204938, -0.0330375545, -0.00113102573, -0.00525105279, 0.00774124311, 0.0351101346, 0.00227171835, -0.000340274419, 0.0157067571, -0.00801191572, -0.0110125178, 0.00748603744, 0.00196527806, 0.0101463646, 0.000938171404, -0.0292636, -0.021035146, -0.00139493181, 0.0398430414, 0.0206484701, 0.0338418372, -0.0080505833, -0.00439263321, -0.00125766196, -0.0127525572, -0.0142837921, 0.0434313901, -0.0232933313, 0.0050615822, 0.0214527547, 0.0138739161, -0.00304700271, 0.00706069404, -0.00467877323, 0.0186068248, 0.0138429822, -0.00687122345, -0.0133171035, 0.0436479263, 0.0224117115, -0.0102004986, -0.017586, -0.000767067482, -0.0337490365, -0.00175067317, 0.0352029353, 0.0268816799, -0.0163795725, 0.0325426087, 0.000107362866, 0.0177252032, 0.000550529221, -0.0422558971, -0.0110743856, -0.0224426445, 0.0188233629, 0.0180500112, 0.030732967, 0.00622547511, 0.0104325041, -0.00911780819, 0.011499729, -0.00058678, 0.00812791847, -0.00928794499, -0.00283626467, 0.02381921, 0.0371208452, 0.0013630311, -0.017756138, 0.00794231426, -0.0325426087, -0.0184366871, 0.00972875487, 0.0166270453, -0.0104866391, -0.0181737468, -0.00165110431, 0.0117549347, -0.019039901, -0.0363165624, -0.000685382285, -0.0183438845, 0.0163950399, -0.00856872834, 0.0314753838, 0.0144384624, 0.114332207, -0.00127796247, 0.0231077261, 0.00841405801, 0.0317383222, 0.0132861696, 0.0140981879, 0.0143301934, 0.00714962976, -0.00103242358, 0.00955861807, -0.0119637391, -0.0327282138, 2.30192745e-05, -0.0320167281, -0.0124586839, 0.015296882, -0.00304120267, -0.0409566648, 0.0233087987, 0.00986022502, -0.0165497102, -0.0182974841, 0.00265066046, 0.00352261355, 0.00255785836, 0.0522475913, -0.0511339642, -0.0202463288, 0.0311505757, 0.020571135, -0.0127061559, -0.00827485509, -0.0202927291, -0.0139125837, 0.0368733741, -0.0435551256, -0.0308257695, -0.0191945713, 0.00631827721, 0.0125901531, -0.00779537763, 0.0111362534, -0.0226901174, -0.0139125837, -0.00873886608, -0.00549852522, 0.0206330027, -0.0130541641, -0.0055642603, -0.0133635048, 0.0132320346, -0.0276859645, 0.0145467315, -0.0134176388, 0.0192719065, -0.00614040671, 0.0316455215, 0.013494974, -0.0141213881, -0.0291707981, -0.0325116739, 0.0295420066, -0.00246312283, 0.00375655224, -0.0534849502, 0.0122266784, -0.00387255498, -0.00510411616, -0.0244842917, 0.0127912248, 0.0293409359, 0.00139493181, -0.0078727128, -0.0224271771, -0.0226282496, 0.00103339017, 0.0165033098, 0.0021035145, 0.0125592193, -0.0114533277, -0.014368861, -0.0182510819, -0.0141445892, 0.0231231935, -0.00924927741, 0.00293293339, -0.00215184898, -0.00542892376, -0.0142373908, 0.0094658155, -0.00528585399, 0.00218278309, -0.00313787139, -0.00758270593, 0.0363165624, -0.00736616785, 0.0207103379, -0.00961275212, 0.0170755889, -0.0178334732, 0.0385128781, -0.01390485, 0.0217620954, 0.0105407732, -0.0393171608, 0.00431143166, -0.00782631151, -0.0346461236, -0.0187150929, -0.0267424751, -0.0101772984, 0.000419301214, 0.0367805697, 0.0195812453, -0.000667015207, 0.014067254, 0.0119250715, 0.0506390221, -0.012102942, 0.0172302593, -0.00152446807, -0.00733910035, -0.0412969403, -0.0301606879, 0.00387255498, -4.06311347e-06, 0.00759817334, 0.0335943662, 0.0373373851, -0.012102942, -0.00862286333, 0.00832899, 0.0114687942, -0.0285211839, -0.00907140691, -0.0226591825, -0.0321404673, 0.0389150195, 0.000760784, -0.0184521545, -0.0075479052, -0.0570114329, 0.00891673658, -0.0045318366, -0.0181582812, 0.0059470688, 0.0167971831, 0.00904047303, 0.022210639, 0.00688669039, 0.00200491236, -0.000789784652, 0.00571119692, 0.0136651117, -0.0416681506, -0.0211279485, 0.0585581325, -0.00536705554, 0.00214411551, -0.00323647377, -0.017292127, -0.0580013208, -0.0477002859, -0.052092921, -0.0474528149, -0.017756138, 0.0247936323, -0.0183748193, -0.00366181671, 0.0459370464, 0.00447770208, 0.0241130833, 0.00702202646, 0.0180809461, -0.0132939033, -0.0159464963, 0.00567252934, 0.00192467717, 0.00739710173, -0.00860739592, -0.0312588438, 0.00923381, 0.0268971454, -0.0142915258, 0.0265723392, 0.00356708118, -0.000898053811, 0.00996076, 0.00376235228, 0.00662375102, -0.0413278751, -0.0154360849, -0.00351681351, 0.0128685599, 0.0154283512, 0.00634921156, -0.0016404707, 0.00880846754, 0.0381416678, 0.00816658605, -0.00815885235, 0.00955861807, -0.00104499049, -0.025706185, 0.0257989876, 0.0166889131, -0.00607080478, 0.0381726027, -0.0114301275, 0.0247008298, -0.015242747, 0.0141755231, -0.00239352114, 0.0144848637, 0.0109738503, -0.0164878424, 0.00351874693, -0.0267115422, -0.00559519418, 0.0130696315, -0.00368501735, 0.0324807391, 0.0152272806, 0.000182825, 0.00247472315, -0.00203777966, -0.00361541566, -0.00598960323, -0.00498038, 0.0252731089, -0.0187924281, -0.00692535797, -0.00877753366, 0.0331922248, 0.0230613258, -0.00931114517, 0.0260619279, 0.0328519493, -0.0300678853, -0.0185140222, 0.0477930903, 0.0166115779, 0.00836765766, -0.0320476629, -0.00807378441, -0.0269126128, 0.00955088437, 0.00774124311, -0.0313361809, 0.0212207511, -0.00412582746, -0.00568412943, -0.00491464511, -0.0219477, 0.00119579397, 0.0226437151, 0.0119250715, -0.00920287613, -0.0386984833, -0.00883940142, 0.0342439786, -0.00673588691, 0.0224117115, -0.0318311267, -0.0293564014, -0.0123736151, -0.0152350143, -0.0113141248, -0.027453959, -0.0153278159, 0.025706185, 0.00634921156, -0.00949674938, -0.0107727787, 0.0164259747, -0.0418846868, -0.0108887814, 0.0332850255, -0.0336871669, 0.017400397, -0.0146782007, 0.00235292036, -0.0215764921, -0.0124973515, -0.0274384916, -0.0137811136, -0.0187769607, 0.0182356164, -0.0207567401, -0.00921061, 0.000917387544, 0.00968235359, -0.0267424751, 0.0203855317, -0.0296038743, -0.00259459252, -0.0174931977, 0.020540202, 0.0185449552, 0.0446068831, 0.0130696315, -0.00494557945, -0.0408019945, 0.0309959054, -0.00859966222, 0.0288305227, -0.00458210427, 0.00394022325, -0.00369855086, -0.0114146601, -0.00376815256, -0.0683642253, -0.030732967, -0.0282427762, -0.00399435777, 0.0077605769, 0.0482571, -0.0113295913, 0.017586, -0.00957408454, 0.00249599013, 0.0282891784, 0.00753243826, -0.0222415738, -0.0146240667, 0.013247502, -0.00405235915, 0.00479477597, 0.0448852889, 0.00931114517, 0.00436556619, -0.0236490723, -0.0128530925, -0.0280571729, -0.000530712074, -0.00616360689, 0.0255515147, -0.000910620729, -0.00216538273, 0.000649131485, 0.0226282496, -0.00197494496, -0.0088703353, -0.0285211839, -0.00598573638, -0.00907140691, -0.00548692513, 0.00697949249, 0.00230651931, 0.0242522862, -0.0417609513, 0.0325735435, 0.0243914891, -0.00511571672, -0.0231541283, 0.000565996219, -0.0319548622, -0.0338418372, -0.00598186953, 0.0402761176, 0.00409489311, 0.0129536288, 0.00605533784, -0.00552559271, 0.00508091599, -0.00192081043, -0.035295736, -0.0315681845, -0.0513195693, 0.00580013217, -0.00546759134, 0.00128376263, 0.0078804465, 0.0344914533, -0.013603243, -0.00462077186, -0.0241130833, 0.00786884595, -0.033408761, 0.0151499454, 0.017647868, 0.0325116739, 0.00185604231, 0.00959728565, -0.000924154418, 0.00171780586, 0.00272412878, 0.00307407, 0.00287686544, -0.00528198713, 0.00170717225, -0.00566092879, 0.00429983111, -0.0924927741, -0.00165497104, -0.0222725067, 0.0118864039, -0.000472227432, 0.0259072576, 0.0188233629, -0.0170601215, -0.00882393401, -0.0126365544, -0.00977515616, -0.0120410742, 0.024066681, 0.0166425128, -0.0087698, 0.00815111864, 0.00224078447, -0.0317383222, 0.0200607236, 0.0045318366, -0.0170291886, 0.0258299224, 0.000946871587, -0.0110821193, -0.017756138, 0.027098218, 0.00368695077, -0.0131314993, 0.0188852306, 0.0165961124, 0.0170601215, -0.000649131485, 0.0016607712, 0.0110511854, -0.0279025026, 0.00525491964, -0.00338534382, 0.0115615968, 0.00578079838, -0.0116543993, 0.00058823009, -0.00445450144, -0.028381981, -0.0234634671, -0.00675908756, 0.0297585446, 0.00201651268, -0.00152350136, -0.00119192712, -0.00800418202, 0.00185217557, -0.00561066112, -0.0339655727, -0.00251919078, 0.0163641069, 0.0114223938, -0.000161195334, 0.0205247346, -0.0148792723, -0.00365988328, 0.0893993676, -0.0444212779, -0.00559519418, -0.0242677536, 0.0327282138, -0.0213754196, -0.00127216231, 0.0258763228, 0.0182820167, -0.00513118366, 0.00348781282, 0.00044685186, 7.83622e-05, 0.0136728445, -0.0122266784, 0.000704716076, -0.0138197811, 0.00235292036, -0.00011890271, 0.0206948724, -0.00161243672, 0.00982929, 0.0202927291, -0.00863833, -0.000483586016, 0.0246698949, 0.0136341769, -0.0182510819, 0.0027183285, 0.000564546208, 0.0290470626, -0.0038242205, 0.020107124, 0.0112909237, 0.0210815463, 0.0398739763, -0.00670881942, -0.00312820449, 0.0156603567, 0.0165651776, -0.015598489, -0.0200916585, 0.00293680024, 0.0278870352, -0.000445885147, 0.000473919121, -0.0282891784, -0.00661215046, -0.0254277792, 0.0129149612, 0.0185140222, -0.014013119, -0.00498424703, -0.0301297531, -0.0205556676, 0.0210815463, 0.00578853209, 0.010873314, 0.0328519493, 0.021715695, -0.00221371721, 0.00234518666, 0.00270672841, -0.00730043324, 0.00536318868, -0.0183129497, -0.00465943944, -0.0248090979, -0.0249328353, -0.00290199951, -0.0187305603, -0.000396584044, -0.0163177047, 0.0148715386, -0.017292127, -0.0165651776, -0.0127061559, 0.0129458951, 0.0105098393, -0.015188613, -0.0098756915, -0.0110743856, -0.0185140222, 0.00083666906, 0.00133113028, -0.0221023709, -0.0120333405, 0.00602440396, 0.0163177047, 0.00349361286, -0.0154592851, 0.0127138896, -0.0120410742, -0.0102546336, -0.0029832013, -0.0216692928, 0.0245461594, 0.0255669821, -0.00189954333, 0.0106722433, 0.0234016, 0.00409102673, 0.0124122826, 0.00788431335, -0.0112754572, -0.02381921, 0.0291553307, -0.00860739592, -0.0204783324, -0.00360188214, 0.0256907195, -0.0163641069, -0.0094658155, -0.00121512765, 0.0154283512, -0.0181582812, 0.0222570412, -0.00384548772, -0.00157376914, -0.0117317336, -0.00447770208, 0.0429983139, 0.00310113723, -0.00103822362, -0.0104015702, -0.00375655224, 0.0221642386, 0.00895540416, -0.0279025026, -0.0098988926, -0.0230613258, 0.01128319, -0.0347389244, 0.0230458584, -0.0342749134, 0.0200607236, -0.0102469, 0.0156835578, 0.0213290192, -0.0158227608, -0.0116311982, 0.00716123, -0.0141059216, 0.00668948563, -0.00594320195, -0.00182704162, -0.000254480809, 0.000240826324, 0.0130154965, -0.0140053853, -0.0294337366, -0.0315991193, -0.000534578867, -0.0160547663, 0.00260039256, 0.0145776654, -0.0209887456, -0.00450863596, 0.0199060533, -0.0098988926, 0.0220250357, -0.00537092239, 0.0155211538, -0.00355741428, -0.0214527547, -0.0258299224, -0.00424569659, 0.0132088345, 0.0090482058, -0.00194014423, -0.0124973515, 0.00753243826, 0.00742030237, 0.00107109104, 0.0185449552, 0.00632601092, -0.00828258879, 0.0139667187, 0.00736616785, 0.000823618786, -0.0323879384, -0.00264872704, 0.000986022409, 0.0225199796, 0.0117626684, 0.0285366494, -0.00673975376, 0.00621000817, 0.00276086293, 0.0161321014, 0.00272412878, -0.00779537763, 0.0115306629, -0.0234016, 0.0210506134, 0.00275892951, -0.0170137212, 0.00539025618, 0.0113527924, 0.00318813929, -0.0153278159, 0.00173230609, 0.00392668927, -0.00462463871, 0.0059548025, -0.0178489406, 0.0169982538, -0.023386132, 0.0247781649, -0.0100458292, 0.00120449415, -0.00094348815, -0.00284593157, -0.0272528883, -0.00436943304, 0.00278986362, -0.00486051058, -0.00561452797, 0.00612494, -0.00386675471, 0.00877753366, -0.0195967127, 0.0123349475, -0.00546372449, -0.00229491899, -0.0031262713, 0.0310423076, -0.00296000089, 0.0296812095, 0.0158691611, -0.0151576791, 0.0412969403, 0.0119405389, 0.01868416, 0.013494974, -0.0220869035, 0.0118168024, -0.00518145133, -0.0172147918, 0.0200143233, 0.00208998099, 0.00482571, 0.0264022015, -0.0203700643, -0.0167507809, 7.1595382e-06, 0.0103319688, 0.00349747972, 0.00111265865, -0.00076900085, 0.00264292699, -0.0193647072, 0.0125360191, -0.0278406348, -0.0051195831, 0.0122730797, -0.00629894342, 0.0191172361, 0.008793, -0.0361618921, 0.00972102117, -0.00371401804, 0.0250720382, -0.0175550673, -0.00629121, 0.0143765947, -0.0114919953, -0.0215300899, 0.00571893, -0.0111671882, 0.00839085784, 0.0306711, 0.00562612806, 0.00460917177, 0.0027260622, -0.00305666961, 0.0146550005, -0.00347041246, -0.0231850613, 0.00474837469, 0.0141368555, 0.0485045724, -0.0166734457, 0.00513118366, -0.0325426087, -0.0193183068, -0.0113218576, -0.00456277048, 0.0359144174, -0.0055642603, 0.0169673208, -0.00583106605, 0.020215394, -0.0291089304, -0.00694469176, 0.0329138152, 0.0117240008, -0.0165033098, -0.0160392988, 0.00380875356, 0.00842179172, 0.000855036138, -0.00610560598, 0.00950448308, -0.0171219893, 0.00302960235, 0.0105794407, -0.0214682221, 0.000706649444, -0.0118864039, 0.0243760217, -0.0223807767, 0.0218858328, -0.00215378241, 0.0212362166, -0.019395642, 0.00269706151, 0.00960501842, 0.0145312641, 0.0189625658, -0.0125746867, -0.00831352267, 0.00087727, -0.00208418071, 0.0163331721, -0.0131546995, -0.012621088, 0.000428484753, -0.0226591825, -0.00718056364, 0.00105852413, -0.00311467098, -0.0261547286, 0.00588520057, -0.00966688711, 0.00498811388, -0.00309920404, -0.00504224841, 0.0250101704, 0.0124586839, -0.012017874, 0.0241130833, -0.00939621404, 0.00791911408, -0.00311853783, -0.0179881435, 0.0230922587, 0.0223807767, -0.0237573422, 0.0180500112, -0.00893993676, 0.0235253368, 0.00533998851, -0.00466717314, -0.0329138152, -0.00784951262, -0.0106877098, 0.0168745182, 0.0112135885, -0.00027840634, -0.0174158644, 0.0153432833, -0.00836765766, -0.0267579425, 0.0177716054, 0.0201999266, 0.0127448235, -0.00367728388, 0.0263712667, 0.0208186079, 0.00031151544, -0.0121493433, -0.00747830374, -0.0253040437, 0.00701816, 0.00516985124, 0.0128066922, 0.0344605185, -0.00618680753, -0.00582719967, -0.011035718, -0.0380488671, -0.00433463231, -0.00697175879, -0.0115693305, -0.00343174487, -0.0130464304, 0.00893993676, 0.0263093989, -0.0118941376, -0.00258685905, 0.00853006076, 0.00392668927, 0.0155056864, -0.0248245653, -0.00120836089, -0.0155366203, -0.0142373908, -0.0307639018, 0.0232933313, 0.010161832, 0.010873314, -0.0140981879, 0.0106567759, -0.0088858027, 0.00584266661, -0.00456277048, -0.034584254, 0.00480637606, -0.037863262, 0.00280339713, -0.0055371928, -0.000574696402, -0.0225045122, -0.00796551444, 0.0274848938, 0.0152814146, 0.0219167657, 0.00326934108, 0.0380179323, -0.0052394527, 0.0157144908, 0.0111749209, -0.017400397, -0.0146472668, -0.0381726027, 0.0131314993, -0.0103010349, 0.0177406706, -0.0386675484, -0.014724602, 0.0157222245, 0.0018144747, 0.00055681268, -0.0212052837, -0.00275892951, 0.0244688243, 1.16078163e-05, -0.00272219535, 0.00310113723, -0.0134563064, -0.0122344121, -0.00123832817, 0.0113605252, -0.00501904776, -0.0133635048, 0.0204319321, 0.00791911408, -0.00179900764, 0.00214798236, 0.0133248372, -0.00440810062, -0.00599733647, -0.0261547286, 0.00188020954, -0.0125050852, 0.00276279636, -0.0137811136, 0.00970555469, -0.0060398709, -0.0255051143, 0.000645264692, -0.00494557945, 0.0230613258, 0.0252421759, 0.00629507657, 0.0326354094, 0.00900180545, 0.0030238023, 0.0137656471, -0.00270672841, 0.0176324025, -0.00447770208, 0.00784177892, -0.0127912248, -0.00134659733, 0.00739710173, 0.0043268986, 0.0195348449, 0.00584653299, 0.00478317589, 0.0190244336, -0.0152659481, 0.00835219, -0.00394795649, 0.0622083507, -0.0134485727, 0.00624867575, -0.00690215733, 0.0201844592, 0.022535447, -0.008878069, -0.0189006981, 0.00226205145, -0.00719603058, 0.024066681, -0.0125050852, -0.00446223514, 0.014206457, -0.00684802281, -0.00690215733, -0.00123446144, 0.0049417126, 0.0210506134, 0.01857589, -0.00457823742, -0.0435860604, -0.00339114387, -0.0121648107, 0.00230651931, -0.0333159603, -0.0195967127, -0.00116582657, 0.0125205517, -0.00573826395, -0.00218471652, 0.0129536288, -0.0102546336, 0.0227983855, 0.00869246479, 0.0247317627, -0.0238810778, 0.00490304502, -0.0282582436, 0.00719216373, 0.012102942, -0.0074551031, 0.0297121443, -0.00247858977, 0.00839085784, 0.00924927741, 0.00709936162, -0.0049417126, -0.00372175151, 0.00327707478, 0.0102623673, -0.0077605769, 0.00219631661, 0.000779634458, 0.0231695939, 0.00129922957, -0.000783501193, -0.0149102062, -0.00156410225, 0.00410649367, 0.00861513, -0.0114069264, 0.0142528582, 0.00407555932, -0.0059548025, -0.00590066798, -0.0161630344, 0.00445450144, -0.0153046157, 0.022071436, 0.00403689221, -0.0145467315, 0.00506544858, -0.00445836829, 0.00598186953, 0.0107341111, -0.0112290559, 0.0129381614, -0.0176788028, -0.00262745982, 0.00270286156, -4.23228375e-05, 0.00513505051, -0.000107000356, -0.00976742245, -0.00496491324, 0.0231695939, 0.0225509144, -0.000951221678, 0.00709549524, 0.00716123, 0.00851459429, 0.00810471829, -0.00208031409, -0.00479864283, -0.0231695939, -7.63079879e-05, -0.00850686058, -0.0290625282, -0.00363668287, -0.00480250921, 0.0235098694, -0.00512731681, -0.00910234079, 0.0263248663, 0.00364054972, 0.0046439725, 0.00667401869, 0.00205131341, 0.00756723899, -0.0230149236, -0.0118400035, -9.292295e-05, 0.0127061559, 0.000565512863, 0.00834445655, 0.00154863531, 0.0158304945, 0.000727433246, -0.00673202, -0.0323260687, -0.0173849296, 0.00327320793, -0.00543279061, -0.000702782709, 0.012017874, -0.00218664971, 0.00178160728, -0.00993756, 0.00307793682, -0.00191404356, 0.0255051143, -0.00751310447, -0.0120952092, 0.00431143166, 0.0164105073, -0.0251029711, -0.013657378, 0.00808151718, -0.00593160186, 0.0148019372, 0.00608240534, -0.0128685599, -0.00858419575, -0.0135413753, 0.010625842, 0.0143611273, 0.0226437151, 0.0164569076, 0.0118477363, -0.0204164647, -0.0151499454, -0.0110202515, 0.00471357396, -0.014013119, 0.015134478, 0.00727723259, 0.00724629825, -0.0171529241, -0.0210660808, -0.0068596229, 0.0113759926, -0.00908687338, 0.0023683873, -0.00528198713, 0.0224271771, -0.000590646814, 0.0138816498, -0.00607080478, -0.0131082991, -0.0215300899, 0.00392668927, 0.00408329302, 0.000300640182, -0.0167662483, 0.0196276475, 0.0189161636, -0.0045241029, 0.0241130833, -0.00485277735, -0.00927247759, 0.00763684046, 0.0210815463, -0.0202463288, 0.0135645755, 0.0047445083, -0.0239738803, 0.000167116305, -0.0189625658, -0.0132397683, 0.0259536579, 0.0046517062, -0.00477157533, -0.0276550297, 0.00508478237, 0.019751383, -0.0277014319, 0.00149740081, -0.0181737468, 0.0202772617, -0.0172457267, -0.0059548025, -0.00228331867, 0.00360961561, 0.0114223938, -0.0131237656, -0.00612107292, -0.00741643552, 0.0184985548, -0.00101695652, -0.035512276, -0.0196121801, 0.00937301386, 0.00828258879, -0.00618294068, 0.0251029711, -0.00539799, 0.00816658605, 0.0147864707, -0.00400209101, -0.000666531851, -0.00762910722, 0.00859966222, 0.00202811277, 0.00927247759, -0.0228138529, -0.00687895669, -0.00282659777, 0.00297160097, -0.00441970071, -0.0244378895, -0.00663535111, 0.00954315066, 0.0247472301, 0.0182974841, -0.00532065472, 0.0272374209, 0.00513505051, 0.018220149, -0.00697175879, -0.0121106757, -0.0168899857, -0.0283974465, 0.0182974841, -0.0111594545, -0.0169209186, 0.0355432108, -0.00239738799, -0.0249173678, -1.93790875e-05, 0.000635114498, 0.00366955018, 0.0158227608, -0.00247665634, 0.0227983855, 0.00283433124, 0.019751383, 0.00319200614, 0.00150803442, -0.00771804247, -0.00515051745, 0.0166115779, -0.0146782007, -0.00395569, 0.0142605919, -0.000738550152, 0.00254819146, 0.0189625658, -0.00945034903, -0.00210544793, -0.0240976159, 0.0106026419, 0.0143997949, -0.0101927659, -0.00536318868, -0.0163641069, 0.0172457267, 7.56433874e-05, -0.00442356756, 0.00283239782, -0.0124586839, 0.0169982538, 0.0184366871, 0.0130618978, 0.00647681439, 0.0189780332, 0.00515051745, 0.00951221678, -0.00141039875, -0.00106819102, 0.00108752481, 0.000530712074, 0.0119714728, -0.00235098694, 0.00121706107, -0.0206020698, -0.0236954726, 0.00102662342, -0.00284979818, -0.00436169934, -0.00470970711, 0.0110202515, 0.00231231935, 0.00467104, 0.0269590151, 0.00177000696, 0.001475167, -0.00082603551, 0.00261199288, 0.000726466533, 0.00859192945, -0.0046439725, -0.0150339426, -0.00330800866, -0.00225431798, 0.00741256867, -0.000761267322, -0.000219075824, 0.00462077186, 0.00103339017, -0.00367341703, 0.00863059703, -0.00208611414, -0.0215455573, -0.0070452271, -0.00670108618, 0.00166270451, 0.00562999491, 0.011089853, 0.000713899615, 0.0260619279, -0.0108269136, 0.0128221586, -0.0123426812, -0.0384510085, 0.0030663365, -0.0204628669, 0.0041142269, 0.0131469658, 0.00122479454, -0.0115383966, 0.00881620124, -0.0118477363, -0.00783404522, -0.00593160186, 0.00411809376, -0.0221023709, -0.0158536937, 0.000443710102, -0.00518531818, 0.00164627086, 0.00959728565, 0.0170291886, -0.00267772772, 0.0071650967, -0.00297933444, 0.0109119816, -0.0116775995, 0.0142528582, 0.0138816498, 0.00739323534, -0.00533612166, 0.0135800429, 0.00662375102, 0.00043186816, 0.00866926461, 0.0068673566, -0.0088935364, 0.00453957031, 0.0155598214, 0.00323260692, -0.0289078578, -0.00502291461, -0.0276550297, -0.00937301386, 0.0125360191, 0.00510411616, -0.00195077783, -0.016008364, 0.00667788554, -0.0145467315, 0.00361541566, 0.00295806746, -0.00486824429, 0.019751383, -0.006747487, -0.0136109767, 0.0228447877, 0.0120642753, 0.024066681, 0.00922607724, -0.0137656471, -0.00774124311, -0.00173520623, 0.0125050852, -0.00518145133, 0.00528198713, 0.0233087987, 0.00131759665, -0.00285366504, -0.00320940651, 0.00387062156, 0.0172766596, -0.0126365544, -0.000223909272, 0.00668561878, 0.00391315576, 0.0126984231, 0.00162887049, 0.0210196786, -0.0159155633, 0.0169982538, 0.0133016361, -0.00636081165, 0.0169209186, -0.0144152613, -0.00687509, 0.0233397316, -0.017864408, -0.0149488738, -0.00667015184, -0.0103010349, 0.0166889131, 0.00958955195, -0.000149232568, 0.00142199907, -0.000114069269, -0.00764844101, 0.00732363341, -0.000271397847, 0.00990662538, 0.0065696165, 0.0133635048, 0.00142103236, -0.000426309707, 0.0219012983, 0.0106103756, 0.00662375102, -0.00513118366, -0.00612107292, -0.010571708, -0.0143533936, 0.00869246479, 0.0124200163, 0.0189780332, 0.00682095531, -0.000867119757, -0.010517573, -0.00430369796, 0.00403689221, -0.0274230242, 0.00198557856, 0.0139821852, 0.020540202, -0.0327900797, -0.00945034903, 0.000562129484, -2.71428053e-05, 0.00426116353, 0.00999169424, -0.00903273933, 0.0106954435, 0.000392475602, -0.0253813788, -0.00791911408, 0.00639174553, -0.0155830216, -0.000795584812, 0.00699882628, 0.00486437744, -0.00429596473, 0.00293873367, -0.00732750027, -0.0200143233, -0.0298668146, -0.0322951376, -0.0155752879, -0.0105949081, 0.021035146, 0.00269706151, 0.0088858027, -0.00686348975, 0.0301606879, 0.00278599677, 0.00190631009, -0.0112367896, 0.0166115779, -0.00551785901, -0.00917194225, -0.0118090687, -0.0185140222, 0.0117549347, -0.00488757808, 0.0109429164, -0.02256638, -0.0163177047, 0.0179262757, -0.00708002783, -0.0221333038, 0.00986022502, -0.00534772174, -0.000362266583, -0.0103706364, 0.00518145133, -0.00948901661, 0.018931631, -0.00744737, -0.0145157976, 0.0105330404, -0.0243141539, -0.0232933313, -0.00272026192, -0.005436657, -0.00588133419, 0.0150184752, 0.0140981879, 0.00598573638, -0.00448156893, -0.0137347132, 0.00203777966, 0.00295806746, -0.00912554096, -0.0108037125, -0.000220405025, -0.00954315066, -0.00021218817, 0.0222261064, 0.0133789713, -0.00665855175, 0.0196585804, -0.0109738503, -0.00058823009, -0.00370241771, 0.00141233217, 0.00709162839, 0.00598960323, 0.0122962799, -0.00126249541, -0.00721149752, -0.0167662483, -0.0199215207, 0.0234170668, 0.0332231559, 0.00613654, -0.00394602306, -0.00872339867, 0.00871566497, 0.00934981275, -0.00825938862, -0.00580786588, 0.0101540983, 0.0209578108, 0.0251803063, -0.0143765947, 0.0247317627, -0.0259691253, 0.0129072275, 0.0136109767, -0.00437716627, -0.0208340753, 0.014206457, 0.00616360689, -0.00838312414, 0.00943488162, 0.0151963467, -0.0105871744, 0.00977515616, 0.0136341769, -0.0129304277, -0.00540959, 0.0313671157, -0.0208650082, 0.0157995597, -0.00445450144, 0.028737722, 0.00878526643, -0.00694469176, -0.0140440529, -0.0108887814, -0.0121416096, -0.0203391295, -0.00114842621, -0.00527812028, -0.0362546928, 0.000402384176, -0.00016482042, 0.0046439725, 0.00107592449, -0.00752083817, 0.00943488162, -0.0080505833, 0.0159619637, 0.00731203333, 0.00820525363, 0.00872339867, 0.0070722946, 0.00335054309, -0.000948321598, -0.00490691187, 0.00557972724, -0.00204938, 0.0203545969, -0.0171065237, 0.00755177205, -0.00386675471, 0.0116621321, -0.0107727787, 0.0117549347, 0.0027086616, -0.00238192105, 0.00784564577, 0.011445594, -0.0025636584, 0.013657378, 0.0013030963, 0.00355161424, -6.39827049e-05, -0.00375075219, -0.00841405801, 0.0198287182, -0.0144384624, -0.000383292063, 0.0214372892, -0.00480250921, 0.0259381905, -0.00910234079, 0.0285366494, 0.0112058558, 0.00203777966, -0.0191017687, -0.0117549347, 0.0200607236, 0.00281113083, 0.00823618751, -0.00352261355, -0.0132011008, 0.00501131406, -0.00739323534, -0.0053593223, 0.000139565687, 0.00934208, -0.00368888397, -0.0114378603, 0.00157086912, 0.0234944019, 0.000812501821, 0.00839859154, -0.00142876594, 0.0152814146, -0.0174622647, -0.00622934196, 0.0038242205, -0.0119560054, -0.0172147918, -0.00074048352, -0.0180654787, -0.000180045769, -0.022999458, -0.00529745407, 0.0253968462, -0.0257989876, 0.0159619637, 0.010161832, 0.0253659114, 0.00407555932, -0.00619454123, 0.0161475688, -0.00669721933, 0.00986795779, -0.0148792723, 0.00870019849, -0.0100690294, -0.00244572246, 0.0190708339, 0.00761364028, -0.0166115779, -0.00136206439, 0.00732363341, 0.0113063911, -0.00743963616, -0.00668948563, -0.00962048583, 0.00572666386, -0.0120410742, -1.6237349e-05, -0.0122885471, 0.00152640149, 0.00760590658, 0.0135336416, 0.00559906103, -0.0162558369, 0.0117240008, 0.0114765279, -0.0138971163, -0.00140363199, -0.00941168144, 0.00649614818, -0.0132552357, -0.00859192945, -0.00136979786, -0.0200916585, 0.010270101, 0.0144693963, 0.0143224597, -0.00166463794, -0.00578079838, -0.00297933444, -0.021035146, 0.00521238521, -0.00994529296, 0.00876206625, -0.0109738503, 0.000735650072, -0.0162249021, -0.00181640801, 0.00525878649, -0.00157473586, 0.00038522543, 0.00890900288, 0.0244533569, 5.80315318e-05, -0.0123890825, 0.00154186843, -0.00653868215, -0.0141600557, -0.00970555469, -0.0171374567, -0.00771030923, 0.0192100368, 0.00637241174, -0.00325000728, -0.00274926261, 0.00814338587, -0.000416401163, -0.0015679691, 0.0207567401, 0.01868416, 0.00693695806, 0.0133944387, -0.00999942794, -0.0117162671, 0.000654931588, -0.0161321014, 0.00296193408, 0.0107418448, -0.0178953409, -0.0142837921, -0.00735843414, -0.0155366203, 0.0135027077, 0.00395762362, -0.0050345147, 0.00916420855, 0.0167817157, -0.00781471096, -0.0150571428, 0.00791911408, 0.0080505833, -0.0138816498, 0.0169518534, -0.00245732255, -0.0101308972, 0.00904047303, 0.0100071616, -0.00189567648, -0.00266032736, -0.0111207869, 0.00566866249, 0.0120410742, 0.0135259079, 0.0265414044, 0.0275931619, 0.00709936162, 0.00800418202, -0.017400397, -0.0257525872, 3.91206813e-05, 0.0180036109, 0.00629894342, 0.0105330404, -0.00359994872, 0.0064497469, 0.00980609, -0.00592386816, -0.0203545969, -0.0137733808, -0.00641107932, -0.0132552357, 0.0143611273, 0.0496491306, 0.00473290775, -0.0189006981, 0.00365214981, 0.0103474362, 0.00995302666, 0.0109119816, 0.0204009973, -0.0169827864, -0.0131082991, -0.000537962245, 0.0132397683, 0.0139667187, -0.00355354766, -0.00133403041, 0.00312820449, 0.0198132508, 0.0154902199, -0.008878069, 0.0105485069, -0.010161832, -0.0143379271, 0.0225045122, 0.00717669679, -0.000489627826, 0.0216847602, -0.0157531593, 0.0149798077, 0.00441196701, -0.00633374415, -0.00913327467, -0.00224271766, 0.00320940651, 0.0046517062, -0.0118090687, 0.0023084525, 0.00893993676, 0.00842179172, 0.00413356069, 0.000219559166, -0.0162867717, -0.0134331062, 0.00386482128, 0.00505771535, 0.0135104414, -0.0123426812, 0.00421089586, 0.00979835633, 0.00835992396, -0.00389768882, 0.0195967127, -0.0140517866, -0.0142373908, 0.00172843935, -0.00619067438, -0.022071436, -0.0028207975, -0.0159155633, 0.0127216233, -0.0231231935, 0.0237418748, -0.0020609803, -0.0208031405, 0.0145080639, -0.0123890825, 0.0115151955, 0.018220149, 0.000200829571, 0.019503912, 0.0090482058, -0.00920287613, 0.0018753761, 0.00281113083, -0.0212516841, 0.00682482217, 0.0155830216, -0.0155752879, -0.0151576791, 0.0158382282, 0.0105949081, 0.00126829557, -0.00614427356, -0.00447383523, -0.00261199288, 0.0313825831, -0.0111207869, 0.00951221678, 0.0128762936, -0.0164569076, 0.00750150438, -0.00363474945, 0.00238578767, -0.0273302235, 0.00404462544, 0.0158846285, -0.000611430616, 0.0284747817, 0.00714576291, 0.00184830884, 0.00275312946, -0.00660441723, 0.00755563891, 0.0153587498, 0.0198441856, 0.0164259747, 0.00859192945, 0.00877753366, 0.00489917817, -0.0158536937, -0.0129226949, 0.00655414956, 0.000880170031, 0.0117394673, 0.0111439871, 0.00466330629, -0.0176633354, -0.0282118432, -0.0578775853, -0.0222415738, 0.0121725444, 0.0125282854, -0.020926876, 0.0100922296, 0.005436657, 0.0224426445, -0.0146163329, -0.000450476917, 0.00912554096, 0.00310693751, -0.00425343029, 0.0109583829, -0.00843725912, 0.0074551031, 0.0137501797, -0.0105021056, -0.00184830884, -0.00711869542, 0.00324614067, -0.0390696898, 0.00447770208, 0.00234325347, 0.0180036109, -0.00569573, -0.0229375884, -0.000482135976, -0.00292906677, -0.00659281667, 0.00962048583, -0.00703749387, -0.00599347, -0.0180654787, -0.0117626684, -0.00549079198, 0.00921061, -0.00613267301, 0.000417126168, 0.0220095683, 0.00272219535, -0.00245732255, 0.0031359382, -0.0135723092, -0.0221487712, -0.0020203793, -0.00298126787, 0.0125360191, -0.00687509, 0.00614814, -0.00897860434, 0.0123968162, -0.011801336, -0.0087698, 0.00541345682, -0.00162017019, -0.00276279636, -0.0161321014, 0.0198751204, -0.00157183583, 0.000880170031, 0.019287372, -0.00931114517, 0.00402529165, 0.0257371198, -0.00127409573, 0.00141716562, 0.00178257399, -0.0180654787, 0.0281035732, -0.0144461961, -0.0159155633, -0.00565319555, 0.00487984437, -0.00111362536, 0.0082903225, 0.00280339713, -0.00067571539, 0.0232623965, 0.0204009973, 0.00131566334, -0.00907914061, -0.00155346876, 0.00813565217, -0.00105755741, 0.025350444, -0.0125360191, -0.019503912, 0.000744833611, -0.00497264648, 0.0155830216, -0.00136883114, 0.00470584072, 0.0121106757, -0.00224851794, 0.0157686267, -0.00304893614, -0.00682095531, -0.00420316262, 0.00957408454, -0.0144384624, 0.00912554096, -0.00863833, 0.00453570345, 0.0418846868, -0.0198287182, 0.0019266106, 0.00815885235, -0.00225431798, -0.0272374209, 0.0283201113, -0.000749667059, 6.09315975e-05, -0.0134563064, 0.0293718688, 0.00877753366, 0.00631441036, 0.0152504807, 0.00276666298, -0.00764844101, 0.0055642603, -0.024530692, 0.00661215046, -0.0103938365, 0.00785724539, -0.0164569076, -0.00249019, 0.00168397173, -0.00870019849, 0.00694469176, -0.00365795, -0.00612107292, -0.0043191649, -0.0114069264, -0.0184057523, -0.00189180975, -0.00399435777, 0.0155211538, 0.0212362166, 0.0090559395, 0.000552945945, 0.00275699608, 0.0181582812, -0.0104325041, -0.017292127, -0.0189934988, -0.0168899857, 0.00972102117, -0.00822845381, -0.0113063911, 0.0126829557, -0.0257216524, 0.0170910563, 0.0137115121, -0.0221178364, -0.00614814, 0.01447713, 0.000537478889, 0.0140827205, 0.01972045, -0.0111749209, -0.0120874755, -0.0111207869, -0.0226437151, 0.00540959, 0.00254045799, 0.00297160097, -0.0102546336, -0.0189006981, 0.00513505051, 0.0175086651, 0.00302186888, 0.0103242351, 0.023850143, -0.0187460277, -0.000408909313, -0.00444290135, -0.008878069, 0.0118632037, 0.0268043447, 0.0135181751, 0.0250565708, 0.0115925306, 0.00849912688, -0.000494219596, -0.0148174046, 0.0190708339, 0.00295226718, -0.00448156893, 0.00398662407, -0.0102623673, 0.0191017687, -0.00023780542, -0.0139667187, -0.0146704679, -0.00978289, -0.0100844968, 0.00105272396, 0.00868473109, -0.00875433255, -0.00933434628, 0.0229066554, 0.00664308481, -0.00677455449, 0.00508864922, -0.0107727787, -0.012976829, 0.00641494617, -0.0180500112, -0.0104789054, -0.00329640834, 0.0263403337, -0.0103087686, -0.00295420061, 0.00890126918, 0.00691375742, -0.0227674525, -0.0144075286, 0.0011068586, 0.00811245106, -0.00391508918, -0.0181273464, 0.0188697632, 0.0117626684, 0.0251803063, -0.0160392988, 0.00103435689, 0.0165033098, -0.0173230618, 0.000770934217, 0.0174622647, 0.0166425128, 0.0186686926, -0.00779537763, 0.0159464963, -0.00754017197, -0.00851459429, 0.0267115422, 0.0186686926, 0.0285521168, 0.00163757068, -0.00262939325, -0.0166889131, -0.000918354257, -0.0136341769, 0.00726949889, 0.0174313299, -0.00215378241, -0.00503838155, -0.00198944542, 0.0060669384, -0.00520851882, 0.000247472315, -0.0140208527, 0.0033215424, 0.0148406047, 0.0181428138, -0.00209578103, 0.00357094803, 0.0319548622, 0.00215764926, -0.00364441634, 0.0190089662, -0.00287493225, -0.0163795725, 0.0288614575, 0.000592096825, 0.00517758448, -0.0182356164, 0.0107959798, 0.000980222365, 0.00648068078, 0.0169827864, -0.0257835202, 0.0098988926, 0.00745123625, -0.00242638867, -0.0060669384, -0.00467104, -0.0102237, -0.00765230786, -0.000759333954, -0.00183187507, -0.00477544218, -0.00962821953, -0.00928794499, -0.0175396, 0.00913327467, -0.0120488079, 0.000920771, 0.0243760217, 0.0135259079, -0.00691762427, -0.0107109109, 0.000718249707, 0.00138913165, 0.018111879, 0.000623514235, 0.0110434517, -0.00225045136, -0.00993756, -0.00337567693, -0.0143533936, -0.0129149612, -0.0124741513, -0.0165342428, -0.0197049826, -0.0299596153, -0.00072984997, -0.00544825755, -0.0186222903, 0.00918741, -0.0126906894, 0.0127834911, 0.00799644925, -0.0110202515, 0.00160663656, 0.0124896178, 0.0163795725, -0.0113837263, 0.00570346322, 0.00736616785, 0.0165033098, 0.0243605543, -0.00193144404, 0.0137347132, 0.0363165624, -0.0260309931, -0.00324227381, 0.0115151955, -0.0171529241, 0.00600120332, 0.00555265974, -0.000612397271, -0.00373915187, 0.00952768419, -0.00190437678, 0.00648068078, -0.00486051058, -0.0062448089, -0.0128608262, 0.024066681, 0.0154902199, -0.00700269267, 0.008468193, -0.0160547663, 0.00619840808, 0.00980609, 0.0206484701, -0.00223111757, -0.0129536288, 0.00132919697, 0.00156506896, -0.0107341111, -0.0108655812, -0.00414516125, -0.00326740788, 0.00772190932, 0.0117394673, 0.00217698305, -0.0034762125, -0.0177870728, -0.0147632696, 0.00419156207, -0.0107959798, 0.00264486019, -0.00501904776, -0.000136665607, -0.0227829199, -0.00743576931, -0.000506061537, -0.000920287624, 0.00270672841, 0.0752315819, 0.0137424469, 0.0243605543, -0.0247008298, -0.00205324683, -0.0286603868, -0.00529358722, 0.0494016595, 0.0133016361, 0.00367341703, -0.000492527906, 0.0187614933, 0.00977515616, -0.00727336574, -0.00105755741, -0.0214836895, 0.00691375742, -0.0190553684, -0.00287686544, -0.0183129497, -0.00351294666, 0.00302960235, 0.00607853848, -0.0145544652, 0.00735456776, 0.00764457416, -0.0148483384, -0.00753243826, -0.0173230618, 0.0200607236, -0.00569959637, 0.00625640899, -0.00808151718, 0.00717669679, -0.00730043324, -0.0234016, 0.0180345438, 0.0122421458, 0.0173694622, 0.0054443907, 0.0117008, 0.00343561172, 0.00206484715, 0.010161832, -0.00176807365, -0.00797324814, -0.0133093698, -0.0169673208, -0.00364054972, -0.0243450888, -0.00385708781, -0.0210660808, 0.0098756915, -0.0311041754, 0.000807185075, 0.00187344267, -0.0180345438, -0.0021731162, 0.0323260687, 0.00385902124, -0.00359221525, 0.00522785261, -0.0197977852, -0.00726949889, 0.00562226167, 0.00607853848, -0.00435009925, 0.0178334732, 0.0126674883, -0.00733910035, 0.00373335183, -0.00777604384, 0.00204164651, -0.015791826, 0.00767164165, 0.0199369881, 0.00372755155, 0.01857589, -0.0184830874, 0.0130000291, 0.00949674938, -0.000218471643, 0.000838602427, 0.000378941972, 0.00497264648, -0.00266419398, -0.0166579802, -0.00806605071, -0.00676682079, -0.00754403835, 0.0078804465, 0.0247317627, -0.0107573122, 0.0210815463, 0.00443516765, 0.0126984231, 0.000567446288, 0.0087698, 0.0273611564, -0.00237418734, 0.0204783324, -0.0016192036, 0.00816658605, -0.00839859154, -0.00747443689, 0.0369043089, -0.0186532252, 0.0046517062, 0.0179881435, -0.0196121801, 0.000498811365, 0.00610947236, 0.00756723899, 0.0175241325, -0.010571708, -0.00755177205, -0.00308953715, -0.00108849152, 0.022999458, 0.00185410888, 0.0104325041, 0.00910234079, 0.0123349475, -0.00632214407, 0.00954315066, 0.00627187639, -0.00403302535, -0.00801964942, 0.00693309121, -0.0268043447, -0.00567639619, 0.019859653, 0.00417222828, -0.0212052837, 0.0110589182, 0.0309340376, -0.0138739161, -0.00141233217, -0.00955088437, 0.00832899, 0.0190089662, 0.000246626441, -0.000104764884, -0.00756723899, -0.0190708339, 0.0101386309, 0.00108945812, -0.0151499454, -0.0284747817, -0.0211124811, -8.85728514e-05, 0.0242677536, 0.00468650693, -0.022999458, -0.00718443049, -0.00722696446, 0.0094580818, -0.0234170668, 0.00384935434, -0.0144075286, -0.00108269136, 0.00145099976, 0.0411732048, -0.00914874207, -0.00928794499, 0.0172766596, 0.00776831, 0.00890900288, 0.017864408, 0.00985249132, 0.0161475688, 0.00774124311, 0.00670881942, -0.0017429397, -0.00573826395, 0.0157686267, 0.00459370483, 0.00439263321, -0.0181273464, -0.0110975858, -0.00705682766, 0.0156603567, 0.00856099464, 0.0429364443, 0.0102004986, -0.0168745182, -0.0342130475, -0.0023258531, 0.0137579134, 0.024066681, 0.00120256073, 0.0054443907, -0.00336407661, -0.00394022325, 0.0150339426, 0.0110202515, 0.0174158644, -0.0110589182, -0.00101308979, -0.00906367321, 0.00496878, -0.00370821776, 0.0148096709, 0.020215394, 0.0105330404, 0.000669915287, 0.00723469816, -0.00261779292, -0.00653094891, -0.00418769522, -0.0126674883]
12 Sep, 2023
Types of Errors in Computer Network 12 Sep, 2023 Computer networks are the backbone of communication systems by which data and information can be exchanged between multiple communicating devices and users. In modern days, computer networks are essential for daily work life real-time video streaming, online gaming, various communicative applications, etc. However, there are many types of errors present in computer networks which can lead to restricted communication, and delay in packet transmission that produces glitches in videos and distorts the audio in real-time applications. In this article, we will discuss various types of errors in computer networks with their cause and countermeasures. Common Network Problems There are basically 5 ways through which errors occurred during transmission that are mentioned below. 1. Transmission Error During the data transmission phase, data may be transmitted inaccurately due to many reasons like external electromagnetic interference, interrupted/degraded signal faulty hardware, etc. This leads to loss of data or corrupted data packets and inconsistency in data packet arrivals which triggers non-reliable data communication. This type of mis-transmission of data is called Transmission error. Transmission errors can easily resolved by using error detection and correction mechanisms(CRC, checksums etc.), and high-quality networking equipment and data cables can reduce this error. 2. Data Packet Loss Data packets can be lost during data transmission due to the presence of errors in routing protocols, highly congested networks, or may be for faulty networking devices. Data packet losses can lead to back-to-back packet retransmission which results in delay in next packet arrival and reduced network performance. During real-time communication, data-packet loss may badly affect the live streaming with distorted audio and videos with glitches. Countermeasures involve implementing forward error correction and congestion control technique reduces packet loss. Also, it is required to ensure that all networking devices are up-to-date and these devices are using optimized network configurations as per requirements. 3. Network Latency If one of the two communicating devices uses high latency but another one is running at low latency then the delay may occur during data transmission which is called a network latency problem. It can be a consequence of high network congestion and different processing power of two communicating devices which leads to processing delays. The latency problem can directly effect real-time applications like online gaming and video conferencing. In modern technology, this problem can be easily solved by only implementing Quality of Service(QoS) techniques. Also, increasing the network bandwidth, optimizing network routing protocols, and utilizing a caching system can reduce this problem. 4. Configuration Errors Misconfigured or pirated software faces configuration errors which results in inaccurate network operations. Configuration errors may lead to security vulnerabilities(mainly unauthorized access), instability in network connectivity, and incorrect packet routing which results in communication failures. 5. Hardware Failures Using very old and unmaintained network devices(switches, routers etc.), no backups for power-cuts or manufacturing defect lead to hardware failure. This results network outages, high downtime, restricted productivity for business farms or users and loss of data if no backup taken. This problem can be handled by performing regular maintenance of networking devices, preparing alternative device if possible, taking data backups and disaster management tools to minimize the data loss and downtime and it is also required to replace the aged hardware in time. Types of Errors in Computer Network 1. Single-Bit Error It is nothing but a special type of transmission error. During transmission of data packets from one networking device to another, if only one bit from this whole data packet is being changed/corrupted/altered then Single-bit transmission error occurs. This single bit corruption can be occurred due to induced noise in data transmission cable or presence of electromagnetic interference. The word single-bit error can lead to be sound a very simple and harmless but in reality single-bit errors can corrupt the whole data and the receiver may get fully incorrect data when they decode it. Also a very worthy error detection mechanism is required to detect it as the error is truly very small but results high data damage. For example say one sender sent a data packet to a receiver and the data packet is 0111. And during transmission single-bit error occurred and receiver receives 0011 instead 0111 i.e. only one bit is flipped. Now let receiver will decode it to decimal and so receiver will get 3(0011) instead of the correct data 7(0111). So, when this data is used for complex logic a huge data corruption will occur. Countermeasures involve implementing error detection and correction methods like CRC, parity bits etc. 2. Burst Error Similarly it is one kind of Transmission error and very likely to single bit error. But in Burst error, multiple data bits of a data packets are being changed/corrupted/ altered during transmission. And these multibit corruption occurs in a very short period so it is called ‘Burst’. Communication line interference, impulsive noise are the main factors which lead to burst error. As multiple bit are being corrupted so it can fully corrupt a data packet and making it fully valueless. Burst errors can be rectified by retransmission but it consumes additional network resources and burst error can occur in that also. So, we need to implement robust error detection and correction techniques like Reed-Solomon codes or convolutional codes. These algorithms adds redundancy bits of data so that the receiver can reconstruct the original data from that if burst error occurred. For example the sender sends a data block of 110001 and receiver receives 101101. Here, we can see that in a single instance total 3bits of data corrupted i.e. burst error occurred. Difference Between Single Bit Error and Burst Error in Computer Network Single-Bit error Burst Error Only one bit of a data packet is altered or corrupted. Multiple bits of a data packet is being corrupted in a very short period of time(bursting). May occur randomly and can affect individual bits in a data packet. It occurs like a cluster and affect consecutive bits of a data packet. Minor data corruption and easy to restore the original. This error can be handled using CRC, parity bit etc. High data corruption(Clustered errors) and hard to detect and restore to original. Robust coding required like Reed-Solomon codes or convolutional codes. As only one bit is altered so it is easy to correct the wrong sequence. In a short sequence multiple bits are altered so it is hard to correct and may lead to entire corruption of data packet. FAQs On Types of Errors in Computer Network Q.1: Write some common causes of errors in computer networks? Answer: Various factors can lead to result in errors in computer networks like transmission problem(electromagnetic interference, signal degradation etc.), malfunctioning communication cables or outdated networking devices, misconfigured networking devices, excessive network traffic, data packet loss etc. Q.2: How to detect and correct errors in computer network? Answer: Implementing error detection and correction mechanisms within the transmission network can restrict errors. Some very common and widely used algorithms are Cyclic Redundancy Check (CRC), parity bits , checksum etc. Also some more robust codes are Reed-Solomon codes(for Burst error) and Hamming codes(For single-bit error) etc. Q.3: What are some potential consequences of errors in a computer network? Answer: What kind or amount of error is occurring that measures the consequences of that particular error. Like a single-bit error may lead to minor glitches where as a burst error may harm the whole data block. A hardware failure may lead to huge data loss, service breakdown etc. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System/Introduction of System Call/How much Stack size required for BIOS interrupt call?/Difference between Interrupt and Polling/Difference between Difference Engine and Analytical Engine/Difference Between Store‑and‑Forward Switching and Cut‑Through Switching/Difference between Message and Packet Switching/How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?/Types of Node Devices in a Computer Network: End devices and Intermediary Devices/Types of Errors in Computer Network
https://www.geeksforgeeks.org/types-of-errors-in-computer-network?ref=asr10
PHP
Types of Errors in Computer Network
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, Difference between Difference Engine and Analytical Engine, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Difference between Interrupt and Polling, Types of Node Devices in a Computer Network: End devices and Intermediary Devices, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, Types of Errors in Computer Network, jQWidgets jqxToolBar close Event, How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, Difference between Message and Packet Switching, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, Introduction of System Call, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Difference Between Store‑and‑Forward Switching and Cut‑Through Switching, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How much Stack size required for BIOS interrupt call?, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0346198305, 0.00134588557, -0.0113864299, 0.0136811854, 0.0545341708, 0.0471020266, -0.0341751724, 0.012053418, 0.0118310889, 0.0187391732, 0.0274258927, -0.0314754583, 0.0314437, -0.0157377291, -0.0015096548, -0.00180642458, 0.0116166994, -0.0186756514, 0.00851203129, -0.00223520235, 0.024551494, -0.00778152142, -0.0184215605, -0.0132841682, -0.0553599671, 0.0221058726, 0.0180245452, 0.00176771556, -0.0399874933, 0.0233128034, 0.0494841225, 0.00439100154, 0.019930223, -0.0377006754, 0.0108544286, -0.0423695892, -0.0172940344, -0.0197714157, -0.0334446616, 0.00893286895, 0.00810707454, -0.00481580896, 0.0268541891, -0.00322377309, -0.0104415314, 0.0208354201, 0.0057249763, -0.0225346498, 0.0240433123, -0.0398922078, -0.0269494727, -0.0166588072, 0.00255480059, 0.0438941345, 0.0170875862, 0.0206766147, 0.049357079, 0.0123869115, 0.0123551507, -0.0129903769, 0.0338257961, 0.0401463, -0.0401463, -0.0254566912, -0.00332699739, 0.00516915368, -0.0539942309, 0.00620536646, 0.0244403295, -0.0358267613, -0.068604432, -0.00777755119, -0.00888522714, -0.0277276244, 0.00261832308, -0.0248849876, 0.00487933168, 0.0290933624, 0.0226934571, 0.00833734404, -0.0166111663, 0.0288710315, 0.0170875862, -0.00668575615, 0.0143481726, -0.00998099241, -0.0165635236, -0.0606641062, 0.0589172319, 0.0276005808, 0.0208195392, 0.0292521678, 0.030109724, -0.0488488972, -0.00265603978, -0.00701130973, 0.0256154984, 0.0129030328, -0.0178339761, 0.0167858526, 0.0145149194, 0.00114837, 0.024551494, -0.0227728598, 0.0339210816, -0.0149039952, -0.0307290684, 0.0204701647, 0.0204066429, 0.0778152123, 0.012736286, -0.00859143492, 0.0135859009, 0.0207877792, -0.00542721432, -0.0233128034, -0.00377562596, -0.0416390784, -0.0252661239, 0.0194379222, -0.0148007711, 0.00718202675, -0.0335717052, 0.0560904779, -0.0503099188, 0.0513262786, 0.0124583747, 0.0132524073, -0.00454186741, -0.0101080379, -0.00385701424, -0.0126568824, -0.000316868711, -0.00393840251, 0.00897257, -0.0431001, -0.0193426386, 0.0317930728, 0.0346833542, -0.0495158844, 0.0309672784, 0.00221138122, -0.00566939404, -0.00563366245, -0.0167223308, 0.00842468813, -0.00799194, 0.0332540944, -0.0557093397, 0.0245356131, -0.0470067412, -0.00620139623, 0.00443070289, 0.00206250022, 0.00615772419, -0.019930223, 0.0292362869, 0.0350962505, -0.00679295044, -0.0236780588, 0.00265206955, -0.0318883583, -0.00511357142, -0.0160871036, 0.0185009632, 0.0140464399, 0.0380500518, -0.0176910497, -0.0513262786, 0.0445611216, 0.00620536646, 0.0134509159, -0.0168176144, 0.0502146333, -0.0238527451, 0.0331905708, -0.00288035395, 0.044719927, -0.0160474032, 0.00568924518, -0.0211212728, -0.00283866725, -0.0202319548, 0.00443864334, 0.0370019265, 0.00976660382, 0.0163253136, -0.00681280158, 0.000745894562, -0.0209148247, -0.00574085722, -0.024551494, 0.0533590056, 0.0111720413, 0.0134985577, -0.0252661239, -0.0438941345, 0.00341632613, 0.0235351324, -0.0530413911, 0.00987776835, 0.00250120321, 0.0105923973, 0.00943310931, 0.0366525538, -0.000890309282, 0.0291410033, 0.00234835199, 0.0147610698, 0.0109497122, -0.0654918253, -0.014594323, 0.020168433, 0.00377761107, -0.0100603951, -0.0116643421, -0.0237415805, 0.00765844621, -0.0231222343, 3.48164781e-06, 0.0193744, 0.000932492258, 0.00861525536, 0.0235668942, -0.0537401401, -0.0506592914, 0.0062807994, -0.0416708402, -0.0527237765, -0.0181515887, -0.0124821952, 0.0282040443, -0.0034123559, -0.0424648747, -0.0273147281, 0.0216770954, -0.0237415805, 0.0278705508, -0.0510404296, -0.0012684674, -0.0291568842, 0.0239639096, -0.0181833506, -0.0399557315, -0.0413214676, -0.00422028452, 0.0404321514, 0.0580279157, -0.0114578931, 0.013093601, -0.0269494727, -0.00998099241, 0.0439576544, 0.0448787324, -0.0316977873, 0.000264760311, -0.029220406, -0.00416073203, 0.034302216, -0.0119740143, 0.00813089591, -0.0179610215, -0.0391934589, 0.00685647316, -0.0208195392, -0.0104018291, 0.00776961073, 0.0127759874, 0.00778549165, -0.033381138, 0.0548200235, -0.0400827751, -0.0145705016, -0.0353185795, 0.00463715149, -0.021089511, 0.00284859259, 0.0108306073, 0.0118469689, 0.0271876827, -0.00999687333, -0.0420837365, -0.00450216606, -0.0240591932, -0.00443467312, -0.0264571719, -0.0237257, 0.0218200218, -0.0694937482, -0.0149754584, -0.000773189415, -0.0126092406, -0.00900433213, 0.0122122243, 0.00430762768, 0.0122281052, -0.0235192515, 0.0143402321, -0.00707086222, -0.00767432712, -0.00414088089, -0.0197237749, -0.012974496, 0.00445849402, -0.0606641062, -0.0228522643, 0.0140464399, 0.0191838332, 0.0189932641, 0.00281881634, 0.013776469, -0.00537957205, -0.0186438896, -0.0531684346, 0.0109814731, 0.00878200307, 0.0225981735, -0.0106479796, -0.0368748829, -0.016912898, 0.0505322479, 0.0204860456, -0.0313484147, 0.0674610287, 0.0102112619, -0.00836116541, 0.00456965854, 0.0725428388, -0.0356361903, -0.0110291159, -0.0237098187, 0.00394435786, -0.0210259892, -0.00526046706, 0.0339846052, -0.0246785395, -0.0332858562, 0.0379547663, 0.00697557814, 0.0309196375, -0.0311578475, -0.0197237749, -0.0313801765, -0.00342625147, -0.0168493763, 0.0161665082, -0.0176751707, 0.00547882635, 0.0097030811, -0.0170240626, 0.00172106607, 0.0348739214, 0.0227411, 0.0423060656, 0.0249485113, -0.012736286, -0.0033091316, 0.0115372967, 0.0129427342, 0.00678898, 0.0171193462, -0.01379235, -0.013689125, 0.031062562, -0.00720187742, -0.0234398488, 0.00435129972, -0.0111879222, -0.00526046706, -0.0151183847, -0.00946487114, 0.0186438896, -0.0123075079, 0.0104415314, -0.0417026021, 0.00652297959, 0.0430048145, 0.0107829655, -0.0223599635, 0.0101874406, -0.0144910989, 0.00390068605, 0.015054862, 0.00844056904, -0.0146419648, 0.00597112672, 0.00395626854, -0.0206130911, -0.0121487016, 0.0254249293, -0.0207877792, 0.0370336883, -0.00745596783, 0.0141576044, 0.0247103013, 0.00590760401, -0.0225664116, -0.00764256576, 0.0176434088, -0.026187202, -0.0218041409, 0.0353185795, -0.00437909085, -0.00727731036, -0.0177545734, 0.0225981735, -0.0192155931, -0.0308878757, 0.0113705499, 0.00384113356, 0.0170875862, -0.000104899176, 0.00200394029, -0.0072971615, 0.00389473094, 0.0376371555, -0.00611802284, 0.0410356149, 0.0146816662, -0.00442276243, 0.0228522643, 0.0191520713, 0.0215024073, 0.000324312772, 0.0419884548, 0.00835322496, -0.0186280087, -0.000696267525, 0.0214706473, 0.00453789718, -0.00248532253, -0.0194538031, 0.0111720413, 0.0189932641, -0.0119581334, -0.046117425, 0.0490077026, 0.0242497623, -0.00859937537, -0.00322774332, 0.00187888008, 0.0298397522, -0.00140146783, -0.0271559209, -0.0693667084, -0.0051810639, -0.0774976, -0.0243768059, -0.00392252207, -0.024329165, -0.0423378274, 0.00691602565, -0.0145705016, -0.00518900435, 0.0172940344, 0.0064118146, 0.038240619, -0.0548517853, 0.068795, 0.00864701718, 0.0135462, 0.0166270472, -0.0148404725, -0.0168652572, 0.0316183865, -0.0029716678, -0.0130300783, -0.00929812435, -0.0050500487, 0.00946487114, 0.0278229099, -0.0420519784, 0.0270606373, 0.0110767577, 0.0399239697, -0.0275211763, -0.00890904758, 0.0182151124, -0.0168334953, -0.0362078957, 0.0253772885, 0.0608546734, -0.0172463916, -0.0171193462, -0.00744802738, 0.0243450459, 0.0292839296, 0.0077656405, -0.00209823158, -0.024551494, -0.0196284913, 0.0174687207, -0.0246785395, -0.00129526597, -0.0344927832, -0.0311578475, -0.0283310898, -0.0102747846, -0.0379547663, 0.0489124209, -0.0235510133, -0.00646739732, -0.0136573641, 0.0963003, -0.0248373449, -0.00878200307, 0.0115214158, 0.0625697821, 0.0031642206, -0.0381770954, 0.000651603157, 0.0128077492, -0.00460936036, 0.0321265683, -0.00224512769, 0.032682389, -0.0271876827, 0.00228284439, -0.0132285859, 0.0319518782, 0.0212959591, 0.0145784421, 0.0207401365, 0.028267568, -0.0139273349, -0.00148881145, 0.00882964488, -0.00885346532, -0.0328412, -0.0393522643, -0.000934973592, 0.0154677592, -0.0170558244, -0.0286487024, -0.0453869142, -0.00228482927, 0.00719790719, 0.0377006754, -0.0269177109, -0.00925842207, -0.0192949977, 0.0432589054, -0.0399239697, 0.00929018389, -0.00931400433, 0.0222170372, -0.00558602065, 0.00643960573, 0.0261395592, -0.00897257, 0.0204701647, 0.000439199386, -0.00603067921, -0.00186200684, -0.0339210816, -0.00261832308, 0.00249127788, -0.000653588271, 0.00536766183, -0.00472449511, -0.0204542857, 0.0193267576, 0.0123154484, 0.0319518782, 0.0251390785, -0.00843262859, 0.00859143492, 0.0324759409, -0.0158330146, 0.00107591448, -0.0175798852, -0.0218994245, 0.00808722433, 0.00468876353, 0.0277593862, 0.0134588555, 0.0218041409, -0.0173575561, 0.00984600652, 0.0245832559, 0.000173694672, -0.0250755548, 0.0173575561, 0.0122439861, -0.00633638166, -0.0299985595, 0.0185644869, 0.0137129463, 0.00569718517, -0.0072654, -0.0128236292, 0.0157774314, -0.0115452372, 0.0161982682, 0.0174846016, 0.00851997174, 0.00585599197, -0.00459348, 0.0131015414, -0.00929018389, 0.0112038031, 0.0388758443, 0.0172146317, 0.00994129, 0.0151660265, 0.00690411497, 0.00386296958, 0.00555822952, -0.0269971155, 0.0146260839, 0.00100097759, -0.0145149194, 0.044497598, 0.02155005, -0.00599891786, -0.0156027442, -0.0230110697, 0.0112038031, -0.0262666047, 0.00177863345, 0.0247103013, -0.00376967061, 0.00587187242, 0.0156106846, -0.00203470909, 0.0188026968, -0.00939340796, -0.0184692033, -0.0147769507, -0.0265048146, -0.0166270472, -0.000174315, -0.0219470672, -0.0116405208, 0.00127938529, -0.000953831885, -0.0127283456, -0.0166270472, -0.00422028452, -0.0210577492, -0.0249802712, 0.000812891056, 0.000850607641, 0.102525517, -0.00131809444, 0.022931667, -0.00278705521, 0.0405274332, 0.014356113, -0.0126410024, 0.0200096257, 0.0174369607, -0.000490811537, 0.0315231, -0.029220406, -0.0371607356, 0.0304590985, -0.0311260857, 0.0052564973, 0.0102112619, -0.00930606481, -0.0137447072, 0.03754187, -0.00732892286, 0.00668178592, -0.0276005808, 0.0066936966, -0.00476419693, -0.00906785484, 0.0257901847, -0.0143402321, -0.0353503413, 0.0259648729, 0.0408768095, -0.0198984612, -0.0224234853, -0.00407338841, 0.0451010615, 0.0318724774, -0.0385582335, -0.0322377309, -0.0133000491, 0.0231857579, 0.00672148773, -0.0141258435, 0.00678501045, -0.0109973541, 0.0138479322, -0.0212324373, -0.00874230079, -0.00971102063, 0.00626491895, 0.0107988464, -0.0104177101, -0.00476419693, -0.00702322, 0.0231539961, -0.00690014521, -0.0234557278, -0.024090955, 0.00907579437, 0.0128156897, -0.0135938413, 0.00214984384, -0.00611008238, 0.0305385012, 0.00563763268, -0.00963161793, -0.0289821979, -0.00312848925, 0.00750758, 0.00645151641, -0.0222011562, 0.00244760606, 0.00750361, 0.0136176627, -0.00131213921, 0.00673339795, -0.00530810934, -0.0027056667, 0.00814677682, 0.024090955, 0.0231063552, -0.0518662222, -0.0208830629, -0.000521084, 0.00689617498, 0.0269018319, -0.0266636219, -0.00650312845, 0.0159362387, 0.00242577028, 0.0135064982, -0.00617757533, -0.0129506746, 0.00712247426, 0.0146737257, -0.00853585266, 0.0204860456, 0.0140861422, 0.028759867, -0.0200413875, -0.0210101083, -0.0137288272, 0.0118628498, -0.0139432158, 0.0192473549, 0.0277435053, 0.00157119241, -0.007535371, -0.00709468313, -0.00632447097, 0.00717805652, -0.037319541, -0.0412261821, -0.0187232941, 0.0160871036, 0.00391656673, 0.0100603951, -0.0104256505, 0.0213753637, 0.0395110734, -0.013689125, 0.00124266127, 0.0130697796, -0.0196761321, -0.0467844121, 0.0162538514, 0.0183262769, -0.0107273832, 0.00947281159, 0.0457362905, 0.00119700446, -0.00976660382, -0.017611647, -0.0148801748, 0.0157456696, -0.0186280087, -0.00574482745, -0.00497461529, -0.0205972102, 0.0311260857, -0.0138638122, 0.0102350824, -0.00333493785, -0.0164206, 0.0134509159, -0.00792444684, -0.0199778657, 0.0379865281, -0.00685647316, 0.0239956714, 0.003098713, 0.0312531292, -0.0124266129, 0.000307439564, -0.0319518782, 0.0227411, -0.0266636219, -0.00492300326, 0.0176751707, -0.0167382117, -0.0111720413, -0.0125854202, -0.030586144, -0.0348739214, -0.032682389, -0.0480231047, -0.0213753637, -0.0228046216, -0.000143174038, -0.0131730037, -0.00827382132, 0.000460539, 0.0214547664, 0.0166270472, -0.0022887995, 0.00394237274, -0.0178180952, -0.00847233, -0.0232969224, 0.0135462, -0.000322079548, -0.0427507274, -0.0103303669, 0.0140226195, 0.011235564, -0.0155868642, 0.0347151123, 0.0218835436, -0.0255678557, -0.00952839386, -0.0155789237, -0.00197813427, -0.0178180952, -0.00566939404, -0.0191838332, 0.00511754118, 0.00458950968, -0.0096872, -0.000281385379, 0.0233922061, 0.0245038513, 0.0304432176, -0.0302685294, 0.0216770954, -0.00674133841, -0.0139749767, 0.0424966365, -0.0182945151, -0.00420440361, 0.0507228151, -0.020851301, 0.00239400892, -0.00828176178, 0.0148087116, 0.00661032321, 0.0269177109, -0.0127759874, -0.0240274332, -0.0298715141, 0.00186597707, -0.00845644902, 0.0299985595, 0.00503019756, 0.0148722343, -0.0180404242, -0.0435447581, 7.11527828e-05, -0.02710828, -0.0202954784, -0.0348739214, -0.00325354934, 0.0295856614, -0.00733686285, -0.0130459592, 0.00755919237, 0.0120692989, 0.0113864299, -0.00202279864, 0.0306814276, 0.0303955749, -0.0279975962, 0.0160077009, 0.0055185277, -0.0146022635, -0.00823412, -0.0324759409, -0.00789268594, -0.0264412928, -0.0164682399, 0.000136350325, -0.0529143438, 0.00472052488, 0.00190865633, -0.00907579437, -0.00930606481, -0.0155471619, -0.0121407611, 0.000165506208, -0.00550661748, 0.00482374942, -0.0249008685, -0.0135064982, 0.0397334024, -0.0404003896, -0.00606244057, 0.00307886209, -0.0130380187, -0.0186280087, -0.00883758534, 0.0154518783, -0.0119025512, -0.0203748811, 0.0277117454, 0.0161426868, -0.0167699717, -0.0174051989, 0.0156424455, 0.00927430298, -0.00841674767, -0.00270963693, 0.00730510149, 0.0290774815, 0.00310466811, 0.00868671853, -0.0222805608, -0.00371011812, -0.00859143492, 0.0123472102, -0.0048912419, 0.0016634987, 0.00432747882, -0.000306198897, -0.0424966365, 0.0189297423, 0.00209823158, 0.0106876818, -0.029188646, -0.0391934589, -0.0113626095, 0.0440529399, 0.0110370554, 0.0015076698, -0.00317216106, 0.0118310889, 0.0151422052, 0.00603067921, -0.0015404236, -0.00510960119, -0.0222170372, -0.0231381152, 0.0223123208, -0.0137685286, -0.00161883433, -0.0349692032, -0.0358902812, -0.0348103978, -0.00901227258, 0.0160553437, 0.0145228598, -0.0175004825, 0.00432747882, 0.000452350563, 0.0102350824, 0.0308243539, -0.00614184374, -0.0432589054, -0.0370019265, 0.00449819583, 0.0103780087, 0.00226696371, 0.0348739214, 0.00338059454, -8.46141193e-05, -0.0119025512, -0.00109973538, -0.0270288754, 0.0140940817, 0.0111243995, 0.0136653045, 0.00100742909, 0.00332501228, 0.0127759874, 0.0200890303, -0.0158965364, 0.00395626854, -0.00762271462, -0.0154836392, -0.0211847946, -0.0294109751, -0.00843262859, -0.00359696848, 0.00297762291, -0.0323012546, 0.0281246416, -0.00380143197, 0.0205654502, -0.0187074132, -0.0146737257, -0.0169446599, -0.0110767577, 0.0106241591, 0.0551058762, 0.0138399918, 0.0305543821, 0.0250914358, -0.00946487114, 0.00866289809, -0.00450216606, -0.0296015423, -0.0377642, -0.0115293562, 0.00407735817, 0.0052048848, 0.00939340796, -0.0353821, 0.00863113627, 0.00811501499, -0.0109576527, -0.022709338, 0.0037637155, -0.00294983177, -0.00627285894, 0.031046683, 0.0253772885, -0.00144315464, 0.00268978602, -0.00569321495, 0.00960779656, 0.0126886442, 0.0141734853, -0.002953802, -0.0108306073, 0.00286645838, -0.00678501045, 0.00936164707, -0.0789586231, 0.00878200307, 0.00362277473, 0.00979042426, -0.0129665555, 0.0205336884, 0.0105129946, -0.0108067859, -0.0112196831, -0.0217247363, -0.00261832308, 0.00580040971, -0.00697557814, 0.0169764217, -0.0296650659, -0.0151183847, -0.00164464046, -0.012974496, 0.0265048146, -0.00547485612, 0.00109775038, 0.0295380205, 0.0045537781, -0.00939340796, -0.0213753637, 0.0151501456, -0.0268224273, -0.0085279122, 0.0195173267, 0.0346515924, 0.0139273349, 0.00196523126, 0.00235629221, 0.0120216561, -0.0103224264, 0.00752346078, -0.00328928092, -0.000329771749, 0.0110211754, -0.0234557278, -0.0215182882, -0.0287122261, -0.000860036758, 0.00538354227, 0.0134270946, 0.0337940343, 0.0261554401, -0.000100929014, -0.000356074073, 0.0136256032, -0.0165635236, -0.0046847933, -0.0187550541, -0.0151104443, -0.00477213692, -0.00801179092, 0.00416470179, 0.00454583764, -0.00775373029, 0.000703711587, 0.0913455337, -0.00822617952, 0.00955221429, -0.039638117, 0.00744008739, 0.0049150628, -0.0236621778, 0.0266795028, 0.0307449494, -0.00539148273, 0.0443387926, -0.00680486113, 0.00430762768, 0.0203113593, -0.0138399918, -0.0101159774, -0.0122836875, 0.00949663203, 0.00848821085, 0.0185803678, 0.0212006755, 0.00971896108, 0.0105447555, -0.0198031776, 0.00515724299, 0.00138360215, 0.0219470672, -0.00922666118, -0.0145784421, 0.00361681939, 0.0296333041, -0.0124186724, 0.000541431131, 0.010433591, 0.0201207902, 0.0408768095, 0.0184692033, 0.00618154509, 0.00195530569, 0.0207877792, -0.014149664, 0.000462772237, -0.0165476426, 0.00760286395, -0.00757110259, -0.0156583264, -0.0149039952, -0.0137288272, -0.019231474, 0.0162459109, -0.0179927833, 0.00146300544, -0.00309474277, -0.00925048161, -0.0170717053, 0.0217723791, 0.0108861895, -0.00214984384, 0.0201207902, -0.0173099153, 0.00718599698, 0.00815471634, 0.00083522324, -0.0117596257, 0.00374783482, -0.00133695267, -0.0223599635, -0.0261395592, -0.030808473, -0.0148722343, -0.0148007711, 0.0126886442, -0.00734083308, 0.00601082807, -0.0250437949, 0.0162776727, 0.00687235361, -0.0144593371, 0.00138161704, -0.0237257, 0.00450216606, 0.00690411497, 0.0102271428, 0.00835322496, -0.00381334242, -0.00387885026, -0.0186756514, 0.00405353727, 0.0295539014, 0.00828970224, 0.00768623734, -0.0168334953, -0.0288710315, 0.00384113356, 0.00471655466, -0.0150151597, 0.0153724747, 0.0113308476, -0.00886934623, -0.0106241591, -0.0151819075, 0.00386892469, 0.0115849385, -0.00190964888, -0.00552646816, -0.0112196831, 0.0108464882, 0.0139114549, -0.0199461039, -0.00659841252, 0.0237574615, 0.0023503371, -0.00578055857, 0.0170240626, 0.000220468166, -0.0185168441, 0.0165000018, -0.000684853294, 0.0029299811, 0.00402177591, -0.0201207902, 0.0119184321, 0.0169923026, -0.0129109733, -0.00103323522, -0.0107591441, -0.00530016888, 0.00018870685, -0.0289345551, -0.00352352043, -0.014610203, 0.0174051989, -0.0216770954, 0.0226299353, -0.0319359973, 0.0072217281, -0.00763065508, 0.0256790202, -0.00503416779, -0.0129824365, -0.002808891, -0.00231659063, -0.00201882841, -0.00627682917, -0.00549867703, 0.00771005824, -0.0110608768, -0.00733289262, 0.00336074387, 0.015531281, -0.0205972102, -0.0222170372, 0.00029726603, -0.00453392742, 0.0202001948, -0.00599494763, -0.00859143492, -0.00452995719, 0.016912898, 0.00977454334, 0.0179769024, 0.0236145351, 0.0204860456, 0.00122281048, -0.0183262769, -0.0157059692, -0.0171669889, 0.00698748836, 0.00331508694, -0.0113149676, -0.00372996903, -0.00608626148, -0.00932988524, -0.00474434579, 0.00167342415, 0.0211212728, 0.0247420613, -0.00173099153, 0.00323568354, 0.0124901356, -0.00082281651, -0.00322972843, 0.0226775762, 0.0265842173, -0.00460936036, -0.021327721, -0.0207401365, 0.000109861881, -0.00553043839, 0.00871848, -0.0118549094, 0.0117199244, 0.00291013019, -0.0237574615, 0.0291251224, 0.00631653098, -0.00458950968, 0.0114023108, -0.013435035, 0.00328928092, -0.0402098224, -0.0251231976, 0.000102603924, 0.00919489935, 0.00204661954, -0.0222329181, 0.00335280341, -0.00698748836, 0.0143640535, -0.00573291676, 0.0119898953, 0.0231539961, 0.00524061639, -0.00606641034, -0.0104256505, 0.000981623074, -0.00828970224, -0.00159203575, -0.00367438677, -0.00107492192, 0.00957603566, -0.0195808485, -0.000697756303, -0.00733686285, -0.0106638605, -0.00521679549, 0.0384629481, 0.00224512769, 0.0128712719, 0.00574879721, -0.00808722433, 0.0111641008, 0.0153565947, 0.0248214658, -0.00205455977, -0.029680945, 0.013895574, -0.0145149194, -0.0252343621, 0.00844056904, -0.0131015414, 0.0118707903, 0.00745993806, -0.0162220895, -0.00415279157, 0.000134985574, 0.00407735817, -0.012172523, -0.0270924, 0.00820235908, -0.00643563597, -0.00875024125, 0.0193902813, -0.0123154484, 0.0118390294, 0.00684456248, -0.014594323, 0.0195490867, 0.000338208338, -0.0440847, -0.00310466811, -0.00916313846, -0.0166746881, 0.00474831602, 0.0105685769, 0.0237733424, -0.0137685286, 0.00261832308, 0.0132047655, 0.0115452372, 0.00778549165, 0.0452916324, -0.00132206455, 0.00517709367, -0.0189138614, -0.00604655966, 0.00369225256, 0.0195173267, -0.042877771, 0.00266000978, 0.00618948555, 0.0250914358, 0.00964749884, -0.0202160757, -0.0206130911, -0.0189932641, -0.0288551524, -0.0252026, 0.00120395224, -0.00437512062, -0.00433938904, -0.00936958659, 0.0212006755, -0.0154518783, 0.00580438, 0.0104653519, 0.0172305107, -0.00014652386, -0.001766723, 0.0114023108, 0.0321265683, 0.00873436, -0.018548606, 0.0155392215, -0.0145546207, -0.00875024125, 0.0251708403, -0.0247420613, 0.00099551864, 0.0134509159, 0.0147610698, -0.044497598, 0.00597509695, 0.0136017818, 0.00724157924, -0.00331310183, 0.0220899917, 0.0111243995, 0.00587187242, 0.0269971155, -0.00303916051, -0.00359299849, 0.0114499526, 0.00264214422, 0.00227887416, 0.0017161034, -0.00389870093, -0.00033721581, -0.0140543804, 0.00161585677, 0.011815208, -0.00390267116, -0.00948869158, -0.0125536583, -0.00423616497, 0.00111760118, -0.000857059145, 0.00697954837, 0.0133318109, -0.0122598661, -0.0417026021, 0.0182627551, -0.0122439861, 0.0236621778, 0.0213436019, -0.00883758534, 0.00423616497, 0.0214071237, -0.0020823509, 0.0413532294, -0.0238368642, 0.0150945634, -0.00167441671, -0.00461333059, -0.000221956972, 0.015070742, -0.00384311867, 0.0319359973, -0.00280293566, -0.000422078068, -0.0238845069, 0.0154598188, 0.0106400391, -0.0208671819, 0.0104971137, 0.0190726686, 0.0304590985, -0.00798797, 0.0364937484, 0.0225664116, 0.00882170442, 0.0163253136, -0.00873436, -0.0128792115, 0.007535371, 0.0117596257, 0.0211053919, 0.0127998088, 0.00232056086, -0.00962367747, -0.00927430298, -0.0343339778, -0.0164682399, -0.023408087, -0.016912898, 0.0126727633, -0.00611405261, 0.0259966329, 0.0235986542, -0.0128395101, -0.00614581397, -0.012053418, 0.00789665617, 0.0300144404, -0.00311062345, -0.0147054875, -0.020851301, -0.0246308967, -0.0223282017, 0.0113149676, 0.0135700209, 0.00304313074, -0.00737259444, 0.0127918683, 0.0100683356, 0.00297365291, 0.00630859053, -0.01623003, 0.0255678557, -0.0140464399, -0.00108385482, -0.0050738696, -0.00701130973, -0.0339846052, -0.00468082353, 0.000447635975, 0.0159362387, 0.0267430246, -0.00559793133, 0.00462127104, -0.0281087607, 0.00258259173, -0.014014679, -0.0159521196, -0.0399557315, -0.000949365436, 0.0115372967, 0.00096326106, 0.00627285894, -0.040559195, 0.00173396908, 0.0078728348, 0.0148642939, 0.00621330645, -0.00728525082, 0.00772196893, 0.0198508203, -0.00965543836, 0.0076346253, -0.00628874, 2.95746195e-05, 0.0125218974, -0.0181992315, -0.0142211271, -0.0216612145, -0.025948992, 0.0141020222, 0.00100693281, -0.0219788272, -0.0159441791, 0.0175004825, -0.00468876353, 0.00745993806, -0.0195173267, -0.00863113627, -0.0110291159, -0.0126568824, -0.00119700446, 0.0217247363, -0.00219351565, -0.0119104916, -0.00570512563, 0.00306298141, 0.0112276236, 0.0403686278, 0.000944899046, 0.0167382117, 0.00497064507, -0.0130221378, 0.0209148247, 0.000164761805, -0.00205853, 0.0106638605, -0.00163670012, 0.0212800782, -0.00406544795, 0.0117993271, 0.00456965854, 0.0213753637, 0.00193148479, 0.0168176144, 0.0164047182, 0.00823412, 0.0394793116, 0.00541530363, 0.0556458198, -0.0111958627, 0.0206924938, 0.00871054, 0.00672545796, 0.0174846016, -0.0220582318, -0.0207401365, 0.00587981287, -0.00656665117, 0.0224076062, -0.00163967768, -0.0222011562, -0.00829764269, -0.0121010598, -0.0184692033, -0.00777755119, 0.00291608553, 0.0135303186, 0.0193267576, -0.0147451889, -0.0120295966, 0.0178657379, -0.00184017105, -0.0187550541, -0.0101636201, -0.00585599197, -0.00321781798, 0.00735671399, 0.0166270472, -0.00709865335, 0.0049150628, 0.00707086222, 0.00334486319, 0.00471655466, 0.0106956214, -0.00480786851, -0.00308084721, -0.0143084712, 0.00360490894, 0.00417264225, -0.0147610698, 0.0299667977, 0.00445849402, 0.0109735336, 0.0121010598, 0.014371994, -0.00986188743, -0.0212006755, -0.00060991646, 0.00202577608, -0.00593539514, -0.00629668, 0.0150072202, 0.0165317636, 0.00217962, 0.00615375396, -0.0212483183, -0.0395428315, -0.009155198, -0.00862319581, 0.00115730276, 0.00269574136, -0.0037676855, -0.00181337236, -0.00591951469, -0.00142727396, 0.0188821, -0.00799194, 0.00607832102, 0.0242656413, -0.00546691567, -0.00337860943, 0.00332104205, 0.0158806555, 0.0112673249, -0.000988570857, 0.00721775787, -9.64005449e-05, 0.00232453109, 0.0105606364, -7.83487048e-05, -0.0116564017, 0.00876612216, -0.0269812346, -0.00902815256, 0.0151977874, 0.0135620805, 0.000675424119, 0.029887395, 0.0195649676, 0.00433938904, 0.0117675662, -0.00227490393, 0.0044704047, -0.00403368659, 0.00420440361, -0.0297285877, -0.0328412, 0.0153248329, -0.000274437596, 0.0172146317, 0.0119660739, -0.00879788306, 0.0255360939, 0.0259648729, 0.0111402804, -0.00441482244, 0.0198031776, 0.00297762291, -0.0219311863, -0.00433144905, 0.0137367677, 0.0269653536, 0.012855391, -0.0058837831, -0.0212959591, 0.0158091933, 0.000178285176, -0.0107035618, -0.0246944204, 0.00827382132, -0.00610214192, -0.0139511563, 0.0065944423, 0.0130856605, -3.86470638e-05, -0.00720981788, -0.0192473549, -0.0134588555, 0.00811501499, 0.00552646816, 0.0122360457, -0.0067731, -0.00658650184, 0.00220741122, -0.00297960802, -0.0170558244, -0.0117040435, 0.000604953733, 0.00872642081, 0.0186756514, -0.015650386, 0.00517312344, -0.0119025512, 0.00262427842, -0.0101239178, 0.0182627551, -0.00532796, -0.0100365747, -0.0177704543, -0.014935757, -0.0148245925, -0.000902716, 0.0097030811, 0.00178061856, -0.00108087715, 0.0107909059, -0.0137050059, -0.0171669889, -0.0129506746, -0.00583217107, -0.000470464438, -0.011576998, 0.0134667959, 0.030347934, 0.00819441862, 0.00361681939, -0.00141040073, -0.000738946779, -0.0418614075, 0.00703910086, 0.000744405726, -0.00159997609, -0.0171193462, -0.000616367965, -0.00435924, -0.0106876818, 0.0222805608, 0.0155709833, -0.00831352361, 0.0225187708, 0.0131174214, -0.0185644869, -0.0104097696, -0.00859143492, -0.00890904758, -0.0146499053, -0.00934576616, -0.0123869115, 0.0156662669, 0.0128633315, -0.0109655932, -0.0182151124, 0.0111243995, -2.20840375e-05, -0.0220264699, 0.00952839386, -0.0146022635, 0.0132524073, -0.0147848902, -0.00718599698, -0.00909167528, 0.0228840243, 0.0122598661, 0.00574085722, -0.00138459471, 0.00723760901, 0.00718996674, 0.00416073203, -0.0366525538, -0.0126965847, 0.0178339761, -0.0051810639, -0.00848027, 0.016928779, 0.00234041177, -0.00168930471, -0.00878200307, 0.01089413, -0.000958794612, 0.00462127104, 0.0241703577, 0.0128871519, 0.0204066429, 0.00275926385, 0.00276323408, 0.0138161704, 0.00577261858, 0.0202954784, -0.0228681453, 0.00870259944, -0.00604258943, 0.0282199252, 0.0110688172, -0.0259331111, 0.0134429755, 0.0191361904, 0.00130221376, 0.00081934256, -0.01065592, -0.0105765164, -0.0254725721, 0.00507784, -0.0119978357, -0.00925842207, 0.0371289738, -0.00342228124, -0.0065944423, -1.51284958e-05, -0.00533590047, 0.0161585677, 0.0127045251, -0.0112038031, 0.0212483183, 0.0115531776, 0.00223917258, 0.00410515, 0.0169764217, 0.00267390534, -0.000907678739, 0.0331270471, -0.00574879721, -0.00809913408, 0.0382723808, -0.00475228624, -0.00123670604, 0.00166945392, -0.00987776835, -0.0024098896, -0.0222329181, 0.000249499979, 0.029220406, -0.00623315759, -0.00962367747, -0.00171511085, -0.000396520132, -0.00799591, 0.00898051076, 0.0113864299, -0.0179133806, -0.0207718983, 0.00198607449, 0.0210101083, 0.015396296, 0.0104971137, -0.00355528179, 0.0206130911, -0.00465700217, 0.0142767094, -0.00246150163, -0.0118549094, -0.0154280569, -0.004287777, 0.0140543804, -0.00524855684, -0.0156980287, -0.00800385047, 0.00849615131, 0.00702322, -0.0256631393, -0.0140623208, 0.00209227647, -0.00206647045, 0.0166270472, -0.00168434205, 0.00815471634, 0.000194289896, 0.000102727994, 0.0114261322, 0.00544309476, -0.0160394628, -0.0113387881, -0.00940134842, 0.00555028906, -0.00355925201, -0.00466891285, -0.0129427342, 0.0112911463, -0.00170915562, -0.0170240626, 0.00909167528, 0.00519297458, 0.000709170534, -0.00952839386, -0.00372401369, -0.00373195414, -0.00749169942, 0.00640387461, -0.000593539502, 0.00742420647, 0.00449819583, 0.00349374418, -0.0066182632, -0.0338257961, -0.00183719338, -0.0217247363, 0.0218835436, -0.00615375396, 0.00624109758, -0.0110767577, -0.00512151141, -0.0192791168, -0.00876612216, -0.00622124691, 0.00540736318, -0.00543118408, -0.0332858562, -0.00506592914, -0.022010589, 0.0129824365, 0.00851997174, -0.00213793339, 0.00422425428, 0.0385899954, -0.0208830629, 0.00653489, -0.0102033215, 0.0112593854, 0.00237217289, 0.0210418683, 0.00263420376, -0.00211609737, 0.00356520736, 0.00202478352, 0.0130062569, -0.0114817144, 0.00794032775, 0.0186280087, 0.00928224344, -0.00069080852, -0.0213753637, -0.0249643903, -0.00568130473, 0.0145784421, -0.00273147272, -0.00792841706, -0.00155729684, 0.00401582103, -0.00171908096, -0.0174687207, -0.00747184874, -0.00359696848, -0.0198825803, 0.0331270471, -0.00395229831, -0.0368113592, 0.0271718018, 0.00528428843, 0.0338257961, 0.0066420841, -0.0259648729, -0.000568726, -0.0203748811, -0.00629271, 0.0125695392, 0.0181833506, 0.00848027, 0.00783710368, -0.00720584765, -0.00999687333, 0.0184692033, 0.0306496657, -0.00627285894, -0.00292204064, -0.00277712964, 0.0140861422, -0.00820235908, 0.00321781798, 0.0115293562, -0.0118390294, 0.016928779, 0.0116246399, -0.0124901356, 0.00863907672, 0.0209942274, -0.00966337882, 0.0285216589, -0.0228522643, -0.0258219466, 0.00724951923, -0.0081626568, 0.016690569, 0.00406941818, 0.00713438448, 0.0120692989, 0.00744802738, -0.00377165573, -0.00117715367, -0.0209624656, 0.00489521213, -0.00422822451, 0.0001506181, 0.00941722933, 0.00775770051, 0.0255837366, 0.0167858526, 0.004287777, -0.0122995684, 0.0124424938, -0.00913931709, -0.012275747, 3.39014769e-05, 0.0068247118, 0.0115214158, 0.00313642947, -0.00182627537, -0.00456965854, -0.0134826768, 0.00653091958, -0.00435527, 0.00630065, 0.0066698757, 0.0112832058, -0.01355414, 0.00199798495, -0.00532399, -0.000512151164, 0.0172940344, 0.00924254209, -0.011592879, 0.0096872, -0.0185803678, -0.0147769507, -0.00223917258, 0.00194339524, -0.0104494719, -0.00990952924, 0.00254487502, -0.0181992315, -0.00649121823, -0.00262229331, 0.0145705016, -0.00822617952, -0.00807531364, -0.00872642081, -0.00840880722, -0.00866289809, 0.00042555196, 0.0128950924, -0.00511357142, -0.00349771441, -0.0024158447, -0.00685250293, 0.00506989937, 0.00485948054, -0.00431556813, -0.0106162187, -0.0172781534, -0.016912898, -0.0159679987, 0.0034500726, 0.0113705499, 0.000907182461, -0.0145228598, -0.0067731, -0.00113943708, -0.0146737257, -0.0141417244, 0.000101177146, -0.00872642081, -0.00452598697, -0.00330714649, -0.00905991439, -0.00828970224, 0.0202001948, -0.0206924938, -0.00116425054, 0.00881376397, -0.017611647, -0.00939340796, -0.00075433118, -0.0131809441, 0.00998099241, 0.00526046706, 0.0151183847, -0.00976660382, -0.00352749065, -0.00567336427, 0.00553440861, -0.022947548, -0.0145308, 0.00778152142, -0.0145387407, -0.0146181434, -0.0135779604, 0.0182151124, 0.000154588255, -0.0140067386, 0.0118946116, -0.0140305599, 0.0025607557, -0.00608229125, 0.031999521, 0.0101318583, 0.0024098896, 0.0131730037, 0.0200572684, 0.00599494763, 0.00784504414, -0.024567375, 0.00603861921, -0.000327042246, 0.0048436, 0.0213594828, -0.00227093371, -0.000211163089, 0.00609023171, -0.00566939404, -0.00707483198, 0.00875818171, 0.0200890303, 0.0241227169, -0.00665002456, 0.0321900882, -0.0165158827, 0.0213594828, 0.00259648729, 0.00174687209, -0.00863113627, 0.00410515, -0.0122360457, 0.0159441791, 0.0103541873, 0.0100921569, -0.00116921333, 0.0221058726, 0.00758301327, -0.0231539961, -0.0122042838, 0.0230428316, -0.0100048129, -0.00183719338, 0.00651503913, 0.0239003878, 0.003388535, -0.00558602065, -0.0126013, -0.0100842165, -0.00744802738, -0.0149198761, -0.00198706705, -0.0187232941, -0.038939368, 0.0247420613, 0.0192632359, 0.0106241591, -0.00372798392, 0.00948869158, 0.00961573701, 0.017611647, 0.00255877059, -0.013895574, 0.0108782491, -0.00728525082, 0.00738053489, -0.00411706, 0.0070073395, -0.0279499535, -0.00415279157, -0.00297960802, 0.0138638122, 0.00313841458, 0.0174687207, 0.00796811935, 0.00532399, 0.00886140577, 0.0236621778, -0.0192949977, -0.00427983655, -0.00493491394, 0.0058837831, 0.0136097223, 0.0212165564, -0.00410515, -0.00936164707, 0.00424807565, 0.00047369019, 0.0056773345, 0.0171828698, -0.0253137648, 0.00574879721, 0.0123233888, -0.000259053195, 0.0210736301, 0.00734877354, 0.023169877, 0.00155431917, 0.00384907401, -0.0441482216, -0.00131511677, 0.000727036269, -0.00891698804, 0.003678357, 0.00948869158, -0.00584011106, 0.000662024831, 0.000137466923, -0.0159600601, -0.00182528293, 0.0195014458, -0.00990158878, -0.00855967309, -0.0127601074, 0.0113705499, -0.000576170045, 0.0105923973, 0.0039125965, 0.00866289809, -0.0127521669, -0.00415279157, 0.0163094327, -0.0103224264, -0.0191997122, -0.00369622256, -0.00192255189, -1.18407042e-05, -0.00409720931, -0.0096872, 0.0367795974, -0.0116564017, 0.00047369019, -0.000485600671, 0.0220264699, -0.0229951888, 0.00566939404, 0.00909961574, -0.0194855649, -0.015515401, -0.00666590547, -0.00921872072, -0.0155551024, 0.000396520132, 0.0255996175, 0.00526840752, -0.0168811381, -0.0104097696, 0.0191997122, 0.013776469, -0.0127204051, -0.00323766866, 0.0170399435, -0.00770211825, -0.013673245, -1.63459099e-05, -0.000222081042, 0.0200731494, 0.0297921095, 0.0426236801, 0.00747978874, 0.00687632384, 0.0213436019, 0.00118211634, -0.00539545296, -0.00582820084, -0.0167382117, 0.00416470179, -0.00189178309, -0.00799988, -0.00179252902, -0.0181198288, 0.0293315705, 1.81836606e-06, -0.00684853271, -0.00165357324, -0.0160632841, 0.00778549165, -0.0195014458, 0.0136097223, -0.0172146317, -0.0115293562, -0.00971896108, -0.00632050121, -0.000864503207, -0.0140702613, 0.0198984612, 0.00172007352, 0.00625697849, -0.000790558872, 0.025027914, 0.00188781298, -0.00697557814, 0.00182230526, -0.00148285623, -0.0146419648, 0.00807134341, -0.0142131867, -0.00994923059, 0.0362714194, 0.010314486, -0.00420837384, -0.0220264699, 0.0118628498, 0.0111323399, -0.00173893187, 0.022248799, 0.000366247637, 0.00575276744, -0.00479595829, -0.00804355182, -0.0189138614, 0.00106995914, -0.00616963487, -0.0127759874, 0.0162141491, -0.00650312845, 0.00598303694, -0.0108147264, -0.0312054884, 0.00940928888, 0.0215024073, 0.00167044648, 0.0195332076, -0.00864701718, -0.0195173267, -0.0101477392, 0.00147392333, 0.000633241143, -0.012513957, 0.0109814731, -0.00764653599, -0.00051810639, -0.012109, 0.00387488, -0.00656665117, 0.0108385477, 0.0107194427, 0.00819441862, 0.00597509695, 0.00963955838, 0.0152374897, -0.00313444436, 0.00918696, -0.00107194425, -0.0139432158, -0.0198825803, 0.0227252189, 0.0163411945, 0.0126727633, 0.00514533231, -0.0101874406, 0.00395825366, 0.00861525536, 0.0115849385, -0.0233763251, -0.0195967294, -0.00653091958, -0.00664605433, -0.00566939404, 0.0348103978, 0.0110608768, 0.010195381, 0.00348183373, -0.0018719323, 0.00643166574, -0.00585202174, 0.0181833506, -0.00233445643, -0.0305067394, 0.0100365747, 0.017389318, 0.0216770954, -0.016912898, 0.0060545, -0.0160950441, 0.0163888372, 0.00348183373, 0.00428380677, 0.00102430233, -0.00819441862, -0.0166746881, 0.00967926, 0.00250914367, 0.0107115023, 0.00690411497, -0.0138320513, 0.00661429297, 0.00196523126, -0.00441482244, -0.00809913408, 0.00113844452, 0.000179401788, -0.00516121322, -0.00269971159, -0.0095998561, -0.00281683123, 0.0138082299, -0.00825794134, -0.00353741599, -0.0351280123, -0.00792841706, 0.0138082299, 0.00993335061, 0.0187074132, -0.0229634289, 0.00196225359, -0.0166588072, -0.00503416779, -0.00286447327, 0.0146816662, 0.00719393697, -0.00752743101, -0.0113467285, -0.011235564, -0.0206130911, 0.0122281052, -0.00659047207, 0.00947281159, -0.0247579422, 0.0233922061, 0.00437909085, -0.012855391, 0.00255877059, -0.000576666323, 0.0122995684, -0.00708674267, 0.00479595829, 0.00339846034, 0.009155198, -0.0147451889, 0.00167540915, 0.01355414, 0.00284462259, 0.0172622725, 0.0204701647, -0.0109814731, -0.0124663152, 0.00836910587, 0.00963955838, -0.0111243995, 0.018088067, -0.00114837, 0.0108147264, 0.0128077492, -0.0133079896, 0.0165794045, 0.0111958627, -0.0140623208, -0.00194835803, -0.0164047182, -0.00472449511, -0.0209624656, -0.00643563597, 0.0190885477, -0.00516915368, 0.0325553454, 0.0100445151, 0.0129586151, -0.00172007352, -3.68170658e-05, -0.0116802221, 0.00848821085, -0.00301136938, 0.0013736767, 0.00680486113, 0.00923460163, 0.00420440361, -0.0166588072, -0.0107512036, -0.00284859259, 0.023630416, 0.0202637166, 0.0150389811, -0.004867421, -0.0220423508, -0.00447834516, -0.063236773, -0.00345602771, 0.026187202, 0.0176275279, 0.00207242556, 1.98508201e-06, 0.000920581748, 0.00998099241, -0.00884552486, -0.00225902325, 0.0112911463, -0.00687632384, 0.0096872, 0.0104732923, -0.0139670372, -0.0125695392, 0.0156027442, 0.00803164206, -0.00623315759, -0.0109655932, 0.00759889372, -0.0201366711, -0.00332302717, 0.00344610238, 0.00801973138, -0.000391557434, 0.0129665555, -0.00947281159, 0.00331707206, 0.0117834471, -0.0281246416, 0.0054113334, -0.0115293562, -0.00903609302, 0.00142628141, -0.00844056904, 0.0116484612, -0.0105923973, -0.004867421, 0.00757110259, 0.00617757533, -0.0100524556, -0.0214865282, 0.00224115746, 0.000950854272, 0.00701130973, -0.00879788306, 0.0210101083, -0.0181039479, 0.0105129946, -0.011576998, 0.0136176627, -0.0275529381, 0.0048912419, 0.0247420613, 0.00641975505, 0.00306298141, -0.0283152089, 0.0198031776, -0.000808424666, -0.0212165564, -0.00454186741, -0.00437512062, 0.0102986051, 0.00211411226, -0.000376917451, 0.0141576044, 0.00435527, 0.00871054, 0.0121407611, 0.0237574615, -0.0046530324, -0.000405453, 0.00229674, -0.00720187742, 0.0120692989, -0.00223321724, -0.0122201648, 0.0205813292, 0.0165000018, 0.0121487016, -0.0177545734, 0.0231381152, -0.00663017388, 0.00217564986, 0.0157456696, -0.00931400433, -0.00894875, 0.00227093371, -0.00758301327, 0.00207639579, -0.00708674267, 0.00318010128, 0.0296650659, -0.00853585266, 0.0100206938, -0.0165158827, 0.0105129946, -0.0115452372, 0.0173416771, -0.0148642939, 0.00286645838, 0.00425998587, 0.0109338313, 0.00867877807, -0.0144434562, -0.00375379, 0.00229078461, 0.0015602744, 0.00134191546, 0.0151342647, -0.00882964488, 0.0149436975, -0.0243768059, 0.00918696, 0.00254686014, -0.0101556797, 0.0236621778, 0.000558304309, 0.00223917258, 0.00464112172, -0.0334446616, 0.00566542381, 0.0014044455, 0.00341037079, -0.0137367677, -0.0144593371, -0.00159402087, -0.0179927833, -0.00493491394, -0.000849118805, 0.0111085186, -0.00295777223, -0.019009145, -0.0296650659, -0.00111164595, -0.0153804151, 0.00673339795, 0.0192949977, 0.0133794528, 0.00641975505, -0.00262229331, 0.0151977874, -0.00130916154, -0.0170717053, -0.0108623682, -0.0346833542, 0.00821823906, 0.00534781069, -0.0205813292, 0.00748772919, -0.00847233, 0.0173734371, 0.0100286342, -0.0263142474, 0.00868671853, 0.00180642458, 0.0111561604, 0.0182786342, 0.0037259988, 0.00149178912, -0.039161697, -0.00971896108, -0.0269812346, 0.00397611922, -0.00160295365, 0.000895271951, -0.0144990385, -0.00244363584, -0.00948075112, 0.0112593854, 0.00231659063, 0.0105685769, 0.0144513967, -0.0222011562, 0.0204542857, -0.00268383091, -0.00130221376, 0.00661032321, 0.0212800782, -0.00106301135, 0.014832533, -0.00399001502, 0.0195332076, -0.00440291176, -0.0138241109, 0.0203748811, 0.0211053919, -0.0012595345, 0.00222924701, 0.00222527701, 0.0213436019, -0.00554234907, 0.000350863236, -0.0148245925, 0.00603464944, 0.000889316725, 0.000390068599, 0.0118707903, -0.00537560182, -0.00318804174, 0.0164682399, -0.00389671605, 0.0011543252, 0.00108484726, -0.0207718983, -0.0124742556, -0.00232056086, -0.0113784904, -0.00613787351, 0.0149039952, -0.00674530864, -0.00591951469, -0.00617757533, 0.00784901436, -0.0123789711, -0.0233763251, -0.00387885026, -0.00269971159, 0.0157536101, 0.0162935536, 0.0144910989, 0.0149833988, 0.00422822451, 0.0250755548, 0.000649121823, 0.000669468893, 0.0221693963, -0.00209823158, 0.004867421, 0.00460142, 0.017389318, 0.0103938896, -0.0101080379, 0.00734877354, -0.0179133806, -0.0141814258, 0.0150866229, 0.0024337105, 0.0280452389, 0.0116643421, 0.00371805858, -0.0224076062, -0.00599494763, -0.00135481847, 0.0100127533, 0.00609420147, 0.00268581603, -0.00845644902, -0.00983012561, 0.00500240643, -0.0150469216, 0.00539148273, -0.0101318583, 0.0258378275, 0.011934313, 0.00929812435, -0.00687235361, 0.00668972638, 0.0378594846, -0.00686838385, -0.0117358044, 0.0138479322, 0.0127521669, -0.00562969269, 0.0135779604, 0.00659841252, -0.00591554446, -0.0238051023, 0.000368480833, 0.000747879618, -0.00519694481, 0.00252899434, -0.016928779, 0.00169923017, -1.35931587e-05, 0.00380937243, 0.0203748811, -0.0111641008, -0.0137050059, -0.0191838332, 0.0161585677, -0.0152216088, -0.00459348, -0.0141179031, -0.0180245452, -0.00719790719, 0.0165317636, 0.00657459162, 0.00854379311, 0.0189138614, 0.0150866229, 0.00776167074, -0.0104177101, -0.0155233415, -0.0335399434, 0.0328094363, 0.00335677364, -0.00642372528, -0.00897257, 0.00693984656, 0.000233867468, -0.00231857575, -0.00741626648, -0.00912343711, -0.00181635, -0.014252889, -0.014268769, -0.00401780615, -0.00848027, -0.00797606, 0.014729308, 0.00608229125, 0.00549073657, 0.00326943, 0.00965543836, 3.10479227e-05, -0.00355528179, 0.00840880722, -0.0162062086, 0.00389473094, -0.00994923059, 0.0069835186, 0.00977454334, -0.00113844452, 0.0133397514, 0.0243768059, -0.00727731036, -0.00754728168, 0.0259807538, -0.0104494719, -0.0155471619, 0.00950457249, -0.00751155, 0.00232056086, -0.0181198288, -0.00636020256, -0.00710262312, 0.000665995, -0.00333890785, -0.00471258443, 0.0176751707, 0.00921872072, -0.00885346532, 0.0238051023, -0.0210259892, -0.0234398488, 0.00975072291, 0.0279499535, -0.00263618887, -0.000559296866, -0.000173570603, -0.0053636916, 0.00676515931, -0.0167382117, -0.0052564973, -0.0105050541, 0.00129129586, 0.00711850403, -0.00883758534, -0.0157536101, -0.0186438896, -0.0175322443, -0.0055185277, 0.000693786133, -0.000775670807, 0.0231063552, -0.00855967309, -0.0184692033, -0.0170240626, 0.0161426868, -0.00635623233, -0.0202954784, 0.0893763304, 0.00165853603, 0.0301732458, -0.0334129, 0.00298159313, -0.0405909568, -0.0140543804, 0.0519297458, 0.0130856605, 0.0165158827, -0.000471208827, 0.0301732458, 0.0028743986, 0.0023920238, 0.00495476462, -0.0116166994, -0.0112990867, -0.0103462469, 0.00570512563, 0.00640387461, -0.00300541404, -0.0189138614, 0.00266993535, -0.00618551532, -0.00397016387, -0.0120216561, -0.0287916288, -0.00823412, -0.0124504343, 0.0278229099, -0.0120851789, 0.0118946116, 0.0140226195, -0.0118628498, -0.0295856614, -0.0135859009, -0.00666590547, 0.00308878766, 0.0175163634, -0.0165476426, -0.00819441862, -0.00771402847, 0.0144355157, -0.00182230526, 0.0103303669, -0.00855173357, -0.00647136709, -0.0173257962, -0.0279499535, -0.0185168441, 0.0107909059, -0.0148166521, 0.0160235818, -0.0223758444, 0.00799194, 0.00612993306, -0.0103621278, 0.000317861239, 0.0130141973, 0.0136811854, 0.0152613102, -0.0105288746, -0.00872642081, -0.0144196358, 0.0178657379, -0.00522076571, -0.0260760374, 0.00391458161, 0.00275727897, 0.00855967309, -0.00102727988, -0.0158806555, 0.00781725254, -0.0268065464, 0.00557014, 0.0097030811, -0.00817853771, 0.00665399479, -0.00122380303, -0.00823412, -0.0181992315, -0.0116008194, -0.0117199244, -0.0222329181, 0.01355414, 0.00634432212, -0.0143799335, -0.0246308967, 3.81197788e-05, -0.0110370554, -0.00436321041, -0.000516617612, -0.00878200307, 0.0271876827, 0.0127045251, 0.0122916279, -0.00470067421, 0.0104415314, 0.023868626, -0.00217366475, 0.0206766147, -0.00548279658, 0.00281087612, 0.0129189137, 0.00335875875, 0.0297603495, -0.00777358096, 0.0077179987, 0.0109576527, -0.0130062569, 0.0035810878, 0.00663811434, 0.024218, 0.0325871073, -0.00993335061, -0.0106876818, 0.0182945151, -0.00230666529, 0.0190250259, 0.00723760901, -0.00513739232, 0.0150866229, -0.0292521678, -0.0144910989, 0.00134489301, -0.00484757032, -8.07680262e-05, 0.000396272, 0.0170717053, -0.00928224344, 0.00625697849, 0.0279023126, 0.0178339761, -0.00722966855, 0.00274139829, 0.0377006754, -0.0120772384, -0.0140782017, -0.00766638666, 0.00403170148, 0.0368748829, -0.0172146317, 0.00592348445, -0.00375577505, -0.00421631429, 0.000763264, -0.0165476426, 0.0124980761, -0.0425601564, -0.0201525521, -0.001029265, 0.0289821979, 0.00949663203, -0.0165952854, 0.00987776835, -0.00405353727, -0.000918100413, -0.00674927887, 0.00159203575, -0.00421234407, -0.00317216106, 0.00750758, 0.0116008194, -0.00137069914, -0.00284263748, -0.0166111663, 0.0117596257, 0.021089511, 0.00495476462, 0.0205654502, 0.0183897987, 0.0128236292, -0.000796017877, 0.00131213921, 0.00418852316, 0.0070907129, 0.00983012561, 0.00141635595, -0.00882964488, -0.0242021196, 0.00638799369, 0.00192751456, -0.00313642947, 0.0591713227, 0.00235232222, 0.00233842665, -0.0321424492, 0.00397810433, 0.0213436019, 0.0258060656, -0.0049666753, 0.0249167494, -0.0119740143, -0.0226775762, -0.00685250293, 0.0169605408, 0.020359, -0.00653091958, -0.0161585677, 0.00145208742, 0.00116623566, -0.00339250523, 3.43977481e-05, 0.0144831585, -0.000845644914, -0.00113050418, -0.000924055639, 0.00774976, -0.00509372028, 0.00449422561, -0.00641578482]
11 Sep, 2024
Difference between Storage Area Network (SAN) and Network Attached Storage (NAS) 11 Sep, 2024 When it comes to managing and storing data in an IT setup it’s important to know the different storage options available. Two key technologies are Storage Area Network (SAN) and Network Attached Storage (NAS). SAN is a high-speed network that connects servers to storage devices, enabling efficient data transfer and centralized management making it ideal for large enterprises with demanding storage needs. NAS, on the other hand, is a simpler system that connects to your network letting multiple devices easily share and access files. It’s more affordable and user friendly making it a great choice for smaller businesses and home setups. Both SAN and NAS are essential for data management each offering its own set of benefits depending on what you need. What is a Storage Area Network (SAN) ? It is used for transferring the data between the servers and the storage devices’ fiber channels and switches. In SAN (Storage Area Network), data is identified by disk block. Protocols that are used in SAN are SCSI (Small Computer System Interface), SATA (Serial Advanced Technology Attachment), etc. Components of Storage Area Network (SAN): Node ports Cables Interconnect devices such as Hubs, switches, directors Storage arrays SAN management software How SAN work? A Storage Area Network (SAN) is a dedicated, high-speed network that links servers to storage devices, enabling multiple servers to share and access storage resources efficiently. Key components include storage devices, switches, Host Bus Adapters (HBAs), and high-speed cabling. By operating separately from regular networks, SANs avoid traffic congestion and use protocols like Fibre Channel or iSCSI for fast data transfer. They offer improved performance, scalability, and centralized management of storage, making them suitable for demanding applications and extensive storage needs. SAN Use Cases Disaster Recovery: In disaster recovery scenarios, a SAN provides a reliable solution for ensuring data availability and continuity in the event of a site failure or disaster. Effective disaster recovery strategies involve replicating data to offsite locations to safeguard against data loss and ensure business continuity. SANs facilitate data replication between primary and secondary storage locations. This replication can be synchronous or asynchronous, depending on the organization’s recovery point objectives (RPO) and recovery time objectives (RTO). Synchronous replication ensures that data is mirrored in real-time, while asynchronous replication updates the backup data at scheduled intervals. SANs support disaster recovery by enabling storage to be located at geographically dispersed sites. This geographic separation protects against localized disasters, such as fires or floods, ensuring that data remains accessible even if one site is affected. What is Network Attached Storage (NAS) ? data is identified by file name as well as byte offset. In-Network Attached Storage, the file system is managed by Head units such as CPU and Memory. In this for backup and recovery, files are used instead of the block-by-block copying technique. Components of Network Attached Storage (NAS): Head unit: CPU, Memory Network Interface Card (NIC) Optimized operating system Protocols Storage protocols: ATA (Advanced Technology Attachment), SCSI, FC (Fibre Channel) How NAS works? Network-Attached Storage (NAS) is a file storage solution that connects to a network, enabling multiple devices to access and share files easily. The NAS device houses storage drives and connects to the network via an Ethernet port. It operates with its own system designed to handle file management and network connections, supporting various file-sharing protocols like SMB, NFS, or AFP. Users can access files from the NAS as if it were a local drive, with features such as data redundancy through RAID, automatic backups, and access controls to manage permissions. The NAS can be managed through a web-based interface or mobile apps, providing a centralized, efficient storage solution for collaborative work and data sharing. NAS use cases File Sharing and Collaboration: NAS is perfect for settings where multiple people need to access and work on the same files. It provides a single place where everyone can store and retrieve documents, which makes team projects much smoother for example Small offices, home workspaces or teams collaborating on shared documents or media. Data Backup and Recovery: NAS devices often include backup features that help you keep your important files safe. You can use them to back up data from different computers or devices to one secure spot example backing up personal files, protecting small business data or planning for disaster recovery. Media Storage and Streaming with NAS you can store and stream your music, photos and videos across your network. It turns your NAS into a home media hub letting you enjoy your digital library on various devices like setting up a home media server, organizing your digital photo collection, or streaming videos and music to your TV and other devices. Difference Between Storage Area Network (SAN) and Network Attached Storage (NAS) are as Follows SAN NAS SAN stands for Storage Area Network. NAS stands for Network Attached Storage. In SAN (Storage Area Network), data is identified by disk block. In NAS (Network Attached Storage), data is identified by file name as well as byte offset. In SAN (Storage Area Network), the file system is managed by servers. In NAS (Network Attached Storage), file system is managed by Head unit. SAN (Storage Area Network) is more costly. NAS (Network Attached Storage) is less expensive than SAN. SAN(Storage Area Network) is more complex than NAS. NAS (Network Attached Storage) is less complex than SAN. Protocols used in SAN are: SCSI, SATA, etc. Protocols used in NAS are: File server, CIFS (Common Internet File System), etc. For backups and recovery in SAN, Block by block copying technique is used. For backups and recovery in NAS, Files are used. SAN gives high performance in high-speedefforthigh-speed traffic systems. While NAS is not suitable for that environment which has high speed traffic. SAN needs more time and efforts in organizing and controlling. NAS is easy to manage and provides a simple interface for organizing and controlling. SAN does not depends on the LAN and uses a high-speedfiber channel network. NAS needs TCP/IP networks and depends on the LAN. Mostly used in enterprise environments. Applications include small-sized organizations high-speed and homes. It has lower latency. Compared to SAN, NAS has higher latency. SAN supports virtualization. NAS does not support virtualization. The working of SAN is not affected by network traffic bottlenecks. The working of NAS is affected by network traffic bottlenecks. Conclusion Both SAN and NAS each offer distinct advantages depending on your storage needs. SAN is a robust highspeed network that’s perfect for large businesses needing centralized storage and the capacity to handle big data loads efficiently. NAS on the other hand is a simpler and more budget friendly option ideal for smaller businesses or home use where easy access and file sharing are the priorities. By understanding what each option brings to the table you can make the best choice for your specific situation ensuring your data is stored and managed smoothly. Difference Between Storage Area Network (SAN) and Network Attached Storage (NAS) – FAQs What is the main difference between SAN and NAS? SAN (Storage Area Network) connects servers directly to storage devices over a high speed network ideal for large scale data management. NAS (Network Attached Storage) connects to a network allowing multiple devices to access and share files making it more suitable for smaller setups. Which is more cost-effective, SAN or NAS? NAS is generally more cost effective than SAN. It’s simpler to set up and maintain making it a better choice for smaller businesses or home environments. Is SAN better for high-performance needs? Yes, SAN is designed for high-performance environments. It can handle large volumes of data with low latency making it ideal for enterprises with demanding storage and data transfer requirements. Where are SAN and NAS typically used? SAN is commonly used in large enterprise environments where performance and centralized storage are critical. NAS is more often found in smaller businesses, homes or any setting where easy file sharing is the main priority. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System/Introduction of System Call/How much Stack size required for BIOS interrupt call?/Difference between Interrupt and Polling/Difference between Difference Engine and Analytical Engine/Difference Between Store‑and‑Forward Switching and Cut‑Through Switching/Difference between Message and Packet Switching/How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?/Types of Node Devices in a Computer Network: End devices and Intermediary Devices/Types of Errors in Computer Network/Difference between Storage Area Network (SAN) and Network Attached Storage (NAS)
https://www.geeksforgeeks.org/difference-between-storage-area-network-san-and-network-attached-storage-nas?ref=asr10
PHP
Difference between Storage Area Network (SAN) and Network Attached Storage (NAS)
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, Difference between Difference Engine and Analytical Engine, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Difference between Interrupt and Polling, Types of Node Devices in a Computer Network: End devices and Intermediary Devices, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, Types of Errors in Computer Network, jQWidgets jqxToolBar close Event, How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, Difference between Message and Packet Switching, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, Introduction of System Call, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Difference Between Store‑and‑Forward Switching and Cut‑Through Switching, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, Difference between Storage Area Network (SAN) and Network Attached Storage (NAS), jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How much Stack size required for BIOS interrupt call?, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.039736, 0.0174981486, -0.0258149859, 0.0220589954, 0.0240860377, 0.0044117989, -0.0272011254, 0.00377275888, -0.00527999923, 0.00146438938, 0.00733685168, -0.0425678976, 0.0291089304, -0.0205387119, -0.0192121919, -0.00481422665, 0.00740019651, 0.00497817853, 0.0351751521, 0.0170510076, 0.0535377748, -0.0260087475, -0.0118194483, -0.0197189525, -0.00728841126, 0.0300926417, -0.0053955107, 0.0298243575, -0.0620632805, 0.0288257413, 0.04689027, 0.00529117789, -0.000282956898, -0.0600958578, -0.00247791084, -0.0191674773, -0.0155158201, -0.0181092415, -0.0302267838, 0.024324514, 0.0078846, 0.00460928679, 0.0168572459, 0.0261727, -0.0195251908, 0.0118045434, -0.0194059536, -0.0048701195, 0.026530413, -0.0501096882, -0.0146066314, -0.0225359462, 0.0271415059, 0.0208964255, 0.00703875674, 0.0115586156, 0.0143607035, 0.0273054577, 0.0161865335, 0.00014229356, 0.021984471, 0.026098175, -0.00225247676, -0.0220589954, -0.00295858807, 0.00900990702, -0.0232364684, 0.0114989961, 0.00791441, -0.0528819673, -0.0479634106, 0.0314787813, -0.0152326301, -0.0459065549, -0.0102246422, -0.0185414795, 0.0259640329, 0.0517194, 0.00485521462, 0.0621229, -0.0080411, 0.0250995588, 0.00797402859, -0.0151133919, 0.0250399392, 0.0242350847, -0.0128776832, -0.0627190843, 0.086745508, 0.0170211978, 0.0279463623, -0.00412115688, 0.0554753914, -0.0277376957, -0.000473225053, 0.0334462039, 0.00273315422, -0.00579793844, 0.0175577682, -0.00142899062, -0.00459810812, 0.0235494673, -0.00544022489, -0.0527925417, -0.00982966647, 0.00964335818, -0.0160523895, 0.0238773711, -0.00275364821, 0.0288704541, 0.0151282968, -0.014651346, -0.00458320323, 0.019629525, -0.0387224779, -0.0138464905, 0.0148749165, -0.0310912579, 0.0104780225, 0.0268732216, 0.00383051462, 0.0139359189, -0.0325519219, 0.0344001092, -0.0440285616, 0.0474566482, 0.0136080151, 0.00264372583, 0.0130043738, -0.00211088196, -0.020806998, 0.00965081062, -0.0122665893, 0.00434845407, -0.0157542955, -0.0128106121, 0.0374406725, 0.0370531492, -0.0128106121, -0.0345193446, 0.0119163282, -0.0302118808, -0.00724742329, -0.011715115, 0.00081277336, 0.0228191353, 0.00786969531, 0.032104779, -0.0368146747, 0.0347578228, 0.00384169328, -0.0150612257, 0.0253082253, 0.032402873, 0.00318961148, -0.00870436, -0.000428743777, 0.0221931376, -0.00269030314, 0.00573831936, 0.0229681823, -0.0329990648, -0.0361588672, -0.0217012819, 0.0296753105, 0.0564591028, 0.0190333351, -0.0285127405, -0.0141743943, 0.0553263426, -0.0195699055, 0.0360992476, -0.00267539825, 0.0300181191, 0.000208316837, -0.0163206756, -0.00622272305, 0.00898009725, -0.0175577682, -0.0195848104, -0.0363973416, -0.0311508775, 0.000973464921, -0.00182955514, 0.0187352411, 0.0391994305, 0.039437905, -0.00775791, 0.0123709226, -0.0170808155, -0.0353242, 8.53528472e-05, 0.0619440414, 0.0304652601, 0.00210529263, -0.0160822, 0.00364420563, 0.0491557866, 0.0250548441, -0.0283338837, -0.0242052749, 0.00193947752, 0.0131683256, 0.0244288463, 0.00789205264, 0.00364420563, 0.000996753573, -0.0209858548, -0.00526136812, 0.0218056142, -0.0462046526, 0.0192569066, 0.0215820428, -0.0283785984, 0.0177515298, 0.0143830609, -0.00552220084, -0.023161944, -0.013257754, 0.00753433909, -0.00805600453, 0.00329580763, 0.0205834266, -0.00343926554, -0.020076666, -0.00964335818, 0.029600786, -0.0280506946, 0.0090397168, -0.0163653903, 0.0109102596, -0.0105376411, 0.0145917274, -0.0316576399, -0.0312999263, -0.033565443, 0.00740019651, -0.0289300736, -0.0733908713, 0.0310316402, -0.0532396808, 0.0266198404, -0.0224763267, 0.00167026091, -0.0169317685, -0.0146662509, 0.0317768753, 0.0412264727, 0.00633823499, 0.0247418452, -0.0187203363, 0.0115735196, 0.000312067714, 0.024622608, -0.0203151423, -0.0376493372, -0.0112903304, -0.0152400825, 0.0293474067, 0.013771967, -0.00270893401, 0.0117821861, 0.00241456553, 0.0378580056, -0.0267092697, 0.0138464905, 0.00475833379, 0.0258746054, 0.0185563844, 0.0211945213, 0.0317470655, -0.0658192709, 0.000162321783, 0.0127808023, -0.0230874214, 0.00034769933, -0.000405688, 0.0228936598, 0.0352943912, 0.0393186659, 0.0289449785, -0.0477547422, -0.0118269, -0.015694676, -0.0365761966, -0.0288108364, -0.0139731811, 0.0245778933, -0.0230725165, 0.0422996134, -0.0358905792, -0.023445135, 0.0306739267, 0.0270222686, 0.00683381688, -0.00240711332, -0.00647237757, 0.0136527289, 0.00824231375, -0.0159629621, 0.0168125313, -0.0366656259, 0.0128478743, -0.0145917274, -0.0336250626, -0.00748217246, -0.0483211242, 0.0302864034, 0.0334462039, 0.000449004874, 0.03106145, 0.00302752247, -0.0135856578, -0.0357415341, 0.0452209376, 0.0449228436, 0.0198083818, -0.0170957204, -0.0101501187, -0.0028430766, 0.0546407253, 0.0141594894, 0.0122218756, 0.0507356897, -0.00296976673, -0.0168572459, 0.022133518, 0.0252337, -0.0130490875, -0.0220888034, -0.0169317685, -0.0250995588, -0.00240711332, -0.00461673876, 0.0252933204, -0.0200170465, -0.0159331523, 0.0212243292, -0.0142116565, 0.0260534622, 0.00998616684, -0.0168721508, -0.0311210677, 3.84553568e-05, -0.0114542823, 0.0306739267, -0.0378580056, 0.0321644, -0.0106792366, -0.0049893572, 0.00155568076, -0.0204194747, 0.0306143072, -0.0286319796, -0.0184520502, 0.0158139151, 0.0140402522, -0.00146159471, -0.0135185868, 0.0133993486, 0.0268434118, -0.0338933468, -0.023161944, 0.0342212506, -0.0492750257, 0.0116331391, 5.51067315e-05, -0.0086223837, 0.04307466, -0.00687853107, -0.0137198009, 0.0149717974, -0.0121771609, -0.024339417, -0.00851805136, -0.00902481191, 0.055833105, 0.0191227645, -0.000375179894, -0.00211647106, 0.0285425503, 0.02535294, 0.00705366163, 0.0502289273, 0.0319557339, -0.00555201061, 0.0223421846, 0.00149326725, -0.00580166467, 0.0416736156, -0.0267837923, 0.0119088758, -0.0176919103, 0.0199723337, 0.00744863693, -0.0110891163, 0.0219546612, -0.017870767, 0.0244586561, -0.00542532047, -0.0167081989, 0.0178260524, -0.00539178448, 0.0119312331, -0.0433131345, -0.00190594187, -0.0159629621, -0.009934, -0.010120309, 0.0235643722, -0.0234749429, -0.0172149595, -0.00666986499, 0.026977554, 0.00640158, 0.0466517918, -0.00676674582, 0.028125219, -0.00422176393, 0.0100532379, -0.001702865, -0.00190501031, -0.00238848245, 0.00427765632, 0.0228489451, 0.0254423674, -0.0197636671, -0.00244437507, 0.0192121919, 0.0355626754, 0.00614819955, -0.0086745508, 0.0210454725, 0.00912914518, -0.00323991477, -0.0487980731, 0.025069749, 0.0129000405, -0.0121249948, 0.000404290709, -0.0137272524, 0.0285276454, 0.0170957204, -0.0340722054, -0.0380070508, -0.0213286635, -0.0444160849, -0.0445055142, -0.00932290591, -0.0300181191, -0.0457575098, -0.0208368078, -0.0354732499, 0.0138464905, 0.0201213807, -0.00474715512, 0.0218652338, -0.0170808155, 0.0156052485, 0.00722879218, 0.015545629, 0.0206728559, 0.0132204918, -0.0264111757, 0.0152773447, 0.0258149859, -0.0360694379, -0.0195699055, -0.00857767, 0.00399819296, 0.0327605866, -0.00253380346, 0.0519876853, 0.0586948134, -0.00349702127, 0.0194506682, -0.00594325969, -0.035920389, -0.0186756216, -0.0601554736, 0.0119312331, 0.0652827, -0.00654690107, -0.0189737156, 0.0120281139, 0.0431640856, -0.0267986972, 0.0331183, -0.0136899911, -0.0562504381, 0.00822740886, 0.0152624398, -0.0190333351, -0.0547301546, -0.0317768753, -0.0117672812, -0.0258597, 0.00374108623, -0.0516001619, 0.0444757044, -0.0215075202, 0.00928564463, -0.0388715267, 0.0346683934, -0.0279761702, 0.0280506946, 0.0169764832, 0.0425380878, -0.00488875, -0.0273054577, -0.00159201107, -0.00359017588, -0.00622272305, 0.0198232867, 0.00224688742, 0.00794421881, -0.0386926681, 0.0119908527, 0.0157542955, 0.013406801, 0.0159480572, -0.000171870124, -0.00491110748, 0.00261577941, 0.0247269403, -0.0184222423, 0.0245480835, -0.0272011254, 0.000887762755, -0.0493942611, -0.00236612535, 0.00700149499, 0.00462046498, 0.00149326725, -0.0189290028, 0.00842117053, -0.00901735947, 0.0277227908, 0.00874162186, 0.0152549874, -0.0154860104, 0.00172149588, -0.031210497, 0.00523528503, -0.0181837659, 0.0151953688, 0.00401309738, -0.00802619476, 0.00444160821, -0.0135633005, 0.00928564463, 0.0118492572, 0.0124007324, 0.00289896922, 0.00215559592, 0.0108133787, 0.00947195385, -0.00643511536, 0.0133248251, -0.0204790942, -0.00333120627, 0.0478441715, 0.0236388966, 0.00575322425, -0.0120579237, -0.0202108081, 0.0109549742, -0.00292505254, -0.00336287892, -0.000574763515, -0.0166336745, -0.00744491071, 0.0045310366, -0.00912914518, 0.0293175969, 0.0225359462, 0.0177068152, -0.0161865335, 0.0208219029, -0.0152624398, 0.00783243403, -0.0189886205, 0.00224688742, -0.0106494268, 0.0209113304, 0.0113350442, 0.0283785984, -0.00854786, 0.0102246422, -0.00167212402, 0.0206281412, 0.0200170465, -0.00309645687, 0.00502289273, 0.0180645287, 0.0264111757, 5.14678832e-05, -0.00521292817, -0.00372618157, 0.00959119108, -0.00712445891, 0.0249952264, 0.00310949842, 0.00516821397, 0.0101054041, 0.0044117989, -0.00793676637, 0.0252933204, -0.0140626095, 0.00223011966, 0.00184818602, -0.00108245574, 0.012378375, -0.00752316043, 0.0141669419, -0.00576440291, -0.00359762833, 0.0126392078, -0.0256957486, 0.0140551571, -0.00756787462, 0.0283338837, 0.0147184171, -0.00809326675, 0.00770574342, 0.00125572318, 0.010783569, 0.000247325312, -0.000516541942, -0.0059917, 0.00361812231, 0.00306851044, 0.00910678785, -0.00991164334, 0.00626371102, -0.0472479835, -0.020225713, -0.000846309, -0.0341914408, -0.00142992218, -0.0146066314, 0.0136005627, 0.0391696207, 0.105167747, -0.00562280789, 0.0245629884, 0.00257479143, -0.0160225797, 0.0189886205, -0.00176807318, 0.010120309, 0.021254139, -0.0132875638, 0.0206728559, -0.00783243403, -0.00886086, 0.0211945213, -0.0171702448, 0.00322873634, 0.0265453178, -0.0148600116, -0.0337144919, 0.00547003467, 0.0459363647, -0.00386405038, -0.0263962708, -0.0103662368, 0.0280506946, -0.0370531492, 0.0216714721, -0.0147705832, -0.0328500159, 0.00560045103, 0.045131512, 0.000643232081, -0.00510859489, -0.00114859547, 0.0345491543, 0.00476951245, -0.0359800085, -0.0205983315, 0.00293436786, 0.00938252546, 0.0241456572, -0.00262323185, -0.00545140356, -0.00916640647, -0.00150071958, -0.00365538406, -0.0470095053, 0.00140011276, -0.00617800886, 0.010485475, -0.0182582904, 0.0432237051, -0.0234749429, 0.013488777, -0.0194059536, 0.0172894821, -0.0219993759, 0.019868, 0.00440434646, 0.0120057566, -0.0496029295, 0.0136825386, 0.0223570894, -0.00487384526, 0.00559299858, -0.0205238089, -0.00306478422, -0.00258224388, -0.0169913881, -0.0203300472, 0.0280656, -0.000748030958, 0.0171553399, -0.0243841317, -0.0263068415, -0.00337964669, 0.0310912579, 0.0143532511, 0.0148451077, 0.0133918962, -0.0308825932, -0.0179005768, 0.000843980117, -0.00255057123, 0.0222378522, -0.0438198969, 0.0026381365, 0.0192867164, -0.0308527835, -0.00444533443, 0.00346721197, 0.0189140979, -0.0236388966, 0.0222378522, 0.013555848, -0.0048812977, 0.0118865194, 0.00250772014, -0.00611466402, 0.00635313941, 0.022431612, 0.0212988537, -0.00797402859, 0.0299734045, -0.00545140356, -0.00544767734, 0.0263217464, -0.00673321, -0.0305248797, -0.0301075466, -0.0497221649, -0.0437602773, 0.00434100162, -0.00273688044, 0.0283487886, -0.00362371164, 0.00819014665, 0.0176471956, 0.0363675319, -0.0106270695, 0.00675556716, 0.00379697909, -0.0310316402, -0.0384840034, -0.0217310917, 0.0187948588, 0.00607367605, 0.0452507474, 0.0597083345, 0.0482615046, -0.0125199696, -0.00352124148, 0.0232811831, -0.000831404235, -0.0308229737, -0.0372618139, 0.0127584459, 0.0141073233, 0.0563696735, -0.0135334916, -0.00731076812, 0.00848078914, -0.0426573269, 0.0339529663, -0.0198083818, 0.0189140979, 0.0047322507, 0.00646865135, 0.0630171821, 0.0019376144, 0.0178111475, 0.0161716286, 0.0176770054, -0.036188677, 0.00637549674, -0.0369637199, -0.02419037, -0.00439316826, -0.0208666176, 0.0208517127, 0.013108707, -0.0123932799, -0.0335058235, -0.0199574288, -0.0214926153, -0.0274396017, -0.0375897177, -0.00920366868, -0.00974023901, -0.0212243292, 0.0390503816, 0.0268881265, -0.00235494669, 0.00533216586, -0.000666054955, 0.0050638807, -0.00144575839, 0.00117188413, 0.0358607695, -0.0146811549, -0.0167081989, -0.0252337, 0.0145395603, 0.0171106253, -0.00222825655, 0.0392888598, 0.0129447551, -0.0267390795, -0.00588736683, -0.0264558885, -0.0102842608, -0.0299883094, -0.0141147757, 0.00832429, 0.0230874214, 0.0128478743, 0.00456084637, 0.0164995324, 0.0117523763, 0.0109549742, 0.0118045434, 0.00285239192, 0.0163951982, -0.00824976619, -0.000775511551, 0.0400639027, 0.00473597692, 0.0117225675, 0.0330884904, -0.00830938481, 0.00790695753, -0.00488502393, 0.0462940782, -0.0135633005, 0.00450867973, 0.005276273, -0.01018738, 0.0244586561, -0.00372245535, 0.0028207195, 0.00939742941, -0.00645374646, -0.0161567237, -0.0211349018, -0.0144575844, 0.00844352785, -0.0316278301, -0.00280767772, -0.0333567783, -0.02286385, 0.0251740832, 0.00549239153, -0.0159629621, 0.00607740227, 0.0429852307, -0.00747844623, -0.0106196171, 0.0114542823, 0.0270073637, -0.0408985689, 0.0372618139, 0.0256361291, -0.013555848, -0.0284233131, -0.0429554209, 0.0207920931, -0.00892793108, -0.0234898478, 0.00096042332, -0.0340125859, -0.00443043, 0.00947195385, 0.00735548232, -0.0163951982, 0.00232513738, 0.00104705698, 0.00432982296, -0.000101771337, 0.0172447674, -0.0200468563, -0.0122516854, 0.0112977829, -0.033863537, 0.00845097937, -0.0174981486, -0.0525540635, -0.0170957204, -0.00793676637, 0.032402873, -0.0427169465, 0.00544395112, -0.00233817892, 0.0366060063, -0.031806685, -0.0386628583, 0.000227762852, -0.000805786753, 0.0171106253, 0.00725860149, -0.0375002921, 0.030331118, 0.0112307109, -0.00959864352, 0.012311304, -0.00138055021, -0.00816033781, -0.00563398656, 0.00110947061, 0.01904824, 0.00752688665, -0.00533216586, -0.0235345624, 0.0230576117, -0.022133518, 0.00359949144, -0.0302864034, 0.0016562877, -0.0279016476, 0.0332077295, 0.0335356332, 0.0134366108, -0.013108707, -0.00283003482, -0.00756042218, -0.00112064905, 0.00465772673, 0.000561721856, -2.48169508e-05, 0.0252635106, 0.00701267365, -0.0349366777, 0.00821995642, -0.0318961143, -0.032969255, -0.0200319514, -0.00799638592, 0.0187799558, 0.0269626491, -0.0256659389, 0.00304429024, 0.0185265746, 0.0352645814, -0.00921112113, 0.00615937822, 0.00356781879, 0.00672203163, 0.00142433285, 0.0143159898, 0.00717662554, 0.0449526533, 0.0268583167, -0.00917385891, -0.0350857265, -0.00405781157, -0.0333567783, -0.00636059185, -0.0100308806, -0.00810071826, -0.000858884829, 0.0132726589, 0.00312626641, 0.0211647116, -0.0329096355, -0.00414351374, -0.0333865881, -0.0182284806, 0.00779517181, -0.0116182342, 0.00528745167, -0.00804855209, 0.00778026693, -0.0193910487, 0.0218503289, 0.0158139151, 0.0076274937, -0.0305546895, -0.0321942084, 0.0106792366, -0.042806372, -0.0137272524, 0.000469266, 0.0313297361, 0.0283785984, 0.0374704823, -0.0137794195, -0.0138315856, 0.00617055641, -0.0401831418, -0.0365463868, -0.0253082253, -0.00463537, -0.00356781879, 0.0327605866, -0.0140998708, 0.00773555273, -0.0125795892, -0.0212243292, -0.0178856719, -0.0281103142, 0.00502661895, -0.0244586561, 0.0267539844, 0.0132652065, 0.0131310634, 0.0178111475, -0.000913380238, 0.00879378803, -0.00318961148, 0.0284680277, 0.00104985165, -0.0074262796, 0.0196593329, -0.0263515562, -0.0143383462, -0.0514809228, -0.00519057084, -0.0100308806, -0.016693294, 0.000775977329, 0.0279165525, 0.0116480431, -0.00311695086, -0.0381262898, 0.00104239932, -0.0111710923, -0.0114244726, 0.0130714448, -0.00411370443, 0.00522783259, 0.0170062929, -0.0145395603, -0.00728841126, -0.00081929419, -0.00139731809, -0.0174087193, 0.0248312745, 0.00021297457, -0.0164548177, -0.00320637925, 0.00959864352, 0.0132950153, -0.00947940629, 0.0247865599, 0.017870767, 0.00280022551, 0.00698286435, 0.0025915592, 0.0228191353, -0.00224875053, -0.000459717645, -0.0136676338, -0.0290940255, -0.0329394452, -0.0240562279, -0.0104184039, -0.00175596308, -0.00406526402, -0.0180496238, -0.00678165024, 0.0230278019, 0.00325295655, 0.0156797711, 0.00984457135, -0.0045496677, -0.0360098183, -0.0119983042, -0.0307037365, -0.00223943521, 0.0158884376, 0.025949128, 0.0163355805, 0.00416587107, 0.010783569, 0.00818269514, 0.0841818899, -0.0070946496, -0.0014941988, -0.0134664197, 0.0131161595, 0.00589481927, -0.00190966809, 0.0226253737, 0.0238624662, -0.0206728559, 0.00598052144, 0.0395869538, -0.00511604734, 0.0124827083, 0.00897264481, 0.00775791, -0.0172894821, 0.00740392273, 0.00107220875, 0.0170211978, -0.0351751521, -0.00209038774, 0.027856933, -0.014502299, -0.0109326169, -0.0063680443, 0.0308527835, 0.00253939279, -0.0106196171, -0.00545513, 0.0102171898, 0.0167827215, 0.0156350583, -0.000616217265, 0.00542532047, -0.000353521464, -0.0069456026, -0.0119759478, -0.00234563136, 0.000131930123, -0.00885340758, -0.0125721367, -0.0129596591, 0.0264707934, -0.0220589954, -0.00403545471, -0.0137347048, -0.00697913812, -0.0140402522, 0.0178111475, -0.0152773447, -0.0109251644, -0.0110891163, -0.00283376104, -0.0216267575, 0.0163951982, 0.0137347048, -0.00721016107, 0.0163504854, -0.0117821861, -0.0214777105, -0.00546258222, 0.0194357634, -0.0194506682, -0.00335356337, -0.00387150259, -0.0418822803, -0.0203002375, -0.0111263786, -0.0297051184, -0.0110369502, -0.00151748746, 0.015694676, 0.0247865599, -0.0266198404, 0.0299585, 0.00374108623, 0.0135409441, -0.000996753573, -0.00468381029, 0.0176621, -0.0139806336, 0.00455339393, -0.0127808023, 0.0103587843, -0.0140477046, -0.0115288058, 0.00453848904, 0.020225713, -0.00600660453, -0.00827212259, -0.00823486131, -0.019555, -0.0164548177, 0.0191674773, -0.0181986708, 0.0241605621, 0.00347466441, 0.0168423411, 0.0202853326, 0.0103364279, -0.00639785361, -0.021105092, -0.0100532379, 0.0094868578, 0.0032678612, 0.00745608937, 0.00706856651, -0.0126615651, 0.00796657614, 0.0240860377, -0.00193016208, -0.00865219347, 0.0177515298, 0.0273203626, -0.0310316402, -0.0010954974, -0.0017373322, 0.00423666835, -0.00917385891, -0.00689716218, 0.0370531492, 0.00760141, -0.0173043869, -0.0073070419, -0.00739274407, 0.0127286362, 0.0225806609, 0.00440434646, 0.0308825932, -0.00504897581, 0.0124827083, -0.0265155081, -0.0027517851, 7.44071876e-05, -0.00678910268, -0.0236239918, 0.0184818599, 0.029004598, -0.00160971039, -0.0213435683, -0.00572341494, -0.0204343796, -0.0266347453, 0.00109363429, 0.0012128721, -0.00362557475, -0.0289002638, -0.0110742114, -0.0172000546, -0.0273352675, -0.0275886487, 0.00770574342, -0.00580166467, 0.0383051448, -0.00530235656, -0.0212243292, 0.00551847508, 0.000132279441, -0.00876397919, 0.00998616684, 0.0011178545, 0.0355328657, -0.00706111407, -0.0211349018, -0.0127062788, -0.00253566657, 0.0138166808, 0.0163206756, 0.0192270968, -0.00661769835, 0.0210007597, 0.0255168919, -0.0198530946, -0.0197636671, 0.00372059224, 0.00856276508, 0.00374481245, -0.000876584207, 0.0104184039, -0.0113275917, -0.00498563098, 0.0214329958, 0.0177813377, 0.00121194054, 0.014882369, -0.0234153252, -0.00911424, 0.00950176269, 0.0280805044, -0.00422548968, 0.000570571574, -0.00277041597, -0.0164101031, 0.0217459947, 0.00280022551, -0.0003584121, -0.00173640065, -0.0114617348, -0.00372245535, -0.00199350715, -0.0163653903, -0.000484869379, -0.0254274625, 0.0111710923, 0.00757160084, -0.0243096091, -0.00949431, -0.0067630196, -0.0120281139, 0.00711328071, -0.00576067669, -0.000626930036, 0.00203635823, -0.0165293422, -0.00213323883, -0.00481050042, -0.0239817053, -0.00278345752, 0.0123411128, -0.00455339393, 0.00712818513, 0.00731076812, 0.00725114951, -0.0131385159, -0.0129671115, 0.0631960407, 0.00999361929, 0.0319855437, 0.0129149454, -0.00464282231, 0.0339231566, 0.0293474067, 0.00533589208, 0.0134440633, -0.024622608, 0.0116405915, -0.0262025092, -0.0201660953, 0.0256361291, 0.0286617894, 0.00167957635, -0.00226365519, -0.00448259618, -0.00621154485, 7.69689359e-05, 0.0335356332, -0.0173341967, -0.0205834266, 0.0171404351, -0.00364420563, -0.0088981213, 0.0345789641, -0.0287065022, 0.0235792771, 0.00329767074, 0.0140253473, 0.0259640329, 0.0137943244, -0.0269328393, -0.000638108584, 0.0164548177, 0.0140104424, 0.0198829044, 0.00870436, 0.0258447956, -0.0337443, -0.014219109, -0.00726605393, 0.0223272797, -0.00457202457, 0.0195400957, -0.00750453, 0.036486771, -0.0119088758, -0.0103215231, 0.00163299905, -0.0102619044, -0.0189737156, -0.0049260119, -0.00841371808, 0.0446843691, 0.0129447551, -0.0289300736, -0.0166634843, -0.0110742114, -0.0127733508, -0.0131683256, -0.00907697808, 0.0201959033, 0.0092632873, -0.0057793078, 0.01018738, 0.00322314701, -0.0364569612, 0.0270222686, -0.00688598352, -0.00700149499, -0.00570105761, 0.0148227504, 0.0327903964, 0.00890557375, -0.00203449512, 0.0128404219, -0.0147929406, -0.015545629, 0.013771967, 0.0099265473, -0.000105439292, 0.0157095809, 0.00956138223, -0.0254721772, 0.0188693833, 0.0206132364, 0.0181539562, -0.0193761438, 0.0169913881, 0.0157542955, 0.0184222423, 0.00252821413, -0.00595071213, 0.00418822793, 0.0078100767, -0.0103066182, -0.00824976619, -0.0250101313, -0.00555573683, -0.0174385291, -0.00675556716, -0.00667731743, 0.00190780498, -0.0161418188, -0.0143234422, -0.0130192786, -0.0110891163, -0.00397956185, -0.015396582, 0.00323432568, -0.00543277292, -0.0025692021, -0.015247535, -0.0211349018, -0.0112754256, -0.00691579282, 0.00015766405, -0.00577185536, -0.00281885639, 0.000591997115, -0.0103438804, 0.00781752914, -0.0101054041, 0.00856276508, -0.0152549874, -0.00161902583, 0.0129820164, 0.00379325286, -0.0245182738, 0.00476578623, -0.0184669551, -0.00855531264, -0.011066759, 0.0182284806, 0.0230874214, -0.0104929274, 0.00400937116, -0.0119088758, 0.0148376552, -0.0239817053, 0.0203896649, 0.0310018305, -0.0191674773, -0.019629525, 0.0133173726, 0.00663632946, -0.00427765632, 0.0369637199, 0.0211647116, 0.0319557339, -0.00132465758, -0.0397061892, -0.0233557057, -0.0137570621, -0.00376903266, 0.0101352138, -0.0173789114, 0.00441552512, -0.00424784701, 0.00163486216, 0.0181390513, 0.000881707703, -0.000302286469, 0.00503034517, -0.000128320375, 0.0321345888, -0.0455786511, 0.0255616046, -0.0281997416, -0.00969552435, -0.0191078596, 0.0347876325, 0.00352124148, 0.0233258959, -0.00215373305, 0.0143085374, -0.00869690813, -0.00284680282, 0.00405781157, -0.0444458947, 0.00988183357, -0.005973069, -0.0231321342, -0.0123187564, -0.00143457984, -0.0270073637, -0.0189290028, 0.0185861941, 0.0028728859, 0.0130938021, 0.0103811417, -0.00721016107, -0.0366954356, 0.0125572318, 0.0013302468, -0.0210305694, -0.00974769052, -0.000777840381, 0.0219546612, -0.0184073374, 0.00717662554, -0.0454594158, 0.00710955448, -0.00645747269, 0.00379511598, -0.0141818468, 0.00729213748, 0.0141669419, 0.00872671697, -0.00807090942, 0.0161567237, -0.00196556072, -0.0123336613, -0.005607903, -0.0475460775, 1.59963802e-05, -0.00709837582, -0.0122069707, 0.0320153534, 0.0105972607, -0.0130863497, -0.00546630844, 0.010403499, 0.0108506409, -0.00831683725, -0.0146066314, -0.0069567808, 0.00675556716, -0.00660651969, -0.0140849659, -0.00296976673, -0.00255616056, -0.00554083195, -0.010485475, -0.0167827215, 0.0168125313, 0.0245778933, -0.0317768753, 0.00736293476, 0.0100308806, -0.00306292134, 0.0126988264, 0.00859257486, 0.00175782619, -0.00560417725, 0.0191376694, -0.0214479, -0.00538805872, 0.0050638807, 0.0108580934, 0.0245629884, 0.000856556, -0.00124268152, 0.00223943521, -0.00077458, 0.0205387119, 0.00710955448, 0.0476056971, -0.00848824158, 0.025949128, 0.018019814, 0.0145917274, 0.0189140979, -0.00410625199, -0.025651034, -0.000577092345, 0.00807836186, -0.00565634342, -0.00660279393, -0.0111189261, 0.0147854881, -0.00282258261, 0.00252448791, 0.0183477178, -0.00478441734, 0.0147407744, 0.015396582, 0.00212578662, -0.0146215362, 0.00598424766, -0.00552220084, -0.0259342231, -0.00550729642, -0.0136452764, 0.0049893572, 0.000829075405, -0.0150090596, 0.00406899024, -0.00146532094, 0.0111636398, 0.005641439, 0.0145768225, 0.0258597, -0.0171404351, -0.0139582762, -0.0239966083, 0.0013078897, 0.00181930815, -0.00951666757, 0.00642393716, 0.00447887043, 0.00573086739, 0.00598797388, 0.00738529162, -0.00656925794, 0.00355850346, -0.00664005568, 0.00181185582, 0.00305174268, 0.0026828507, 0.00663632946, -0.001364714, -0.00717662554, 0.0300926417, -0.0157244857, -0.00513095222, -0.00546258222, 0.000384961138, -0.0145917274, 0.0176322907, 0.0114989961, -0.0103513319, -0.00534707075, -0.0187650509, -3.02388366e-06, -0.00940488186, 0.0160822, 0.016574055, 0.0168721508, 0.00107127719, -0.0273203626, 0.000591531338, -0.0146140838, 0.00200095959, -0.0139657287, -0.0111040212, 0.00573831936, -0.0099787144, -0.0115139009, -0.00712073315, -0.00820505153, 0.0099787144, -0.0204492845, 0.0274843145, 0.00452731038, -0.00329394452, 0.00383051462, 0.0182135757, -0.0149121787, 0.0185414795, -0.00225620298, 0.0209709499, -0.00789950509, -0.00608112849, -0.00871926453, -0.0130490875, 0.00984457135, -0.00175782619, 0.0334163979, 0.00602523563, -0.00288406457, 0.0144948466, 0.0175875761, 0.00759768439, -0.00201027491, 0.00521665439, -0.0154562015, -0.0133471824, -0.00658416282, 0.001877064, 0.0262919366, -0.00194506673, -0.00728841126, -0.0250548441, -0.00449004862, -0.00302007026, -0.00895028841, -0.0179005768, -0.0157841053, 0.0135782054, -0.00271266024, -0.00828702748, -0.00576440291, 0.00588736683, -0.00120914588, -0.0101277614, 0.0105301887, -0.0139657287, 0.0294219293, -0.00716172112, -0.0199425239, -0.0175875761, 0.00404663337, -0.00273874355, -0.0188246686, 0.0233855154, -0.00900990702, 0.0164399128, 0.0172894821, -0.0093899779, -0.0165293422, -0.000132745219, 0.0165442452, -0.0106568793, 0.0180943385, -0.000191665458, 0.00196742383, -0.00872671697, -0.015545629, -0.0138241332, -0.0150910355, -0.0113797588, 0.00831683725, -0.00194879295, 0.0274694096, -0.0207175687, -0.0313595422, -0.00754924398, -0.00508623803, -0.00786224287, -0.0210752822, -0.00783243403, 0.015247535, 0.00325481966, 0.0183924325, -0.0126541127, -0.0069567808, -0.024771655, 0.00897264481, 0.00319706369, 0.01904824, 0.00501544029, -0.00322687323, 0.0062488066, 0.0134664197, 0.023594182, 0.00638667541, -0.0117747337, 0.0192270968, 0.00842117053, -0.0233855154, 0.00175037375, -0.014882369, -0.0234749429, -0.000282258261, -0.0093378108, -0.0139061091, 0.00685617421, -0.00397583563, -0.00697913812, -0.0183924325, 0.00947195385, 0.00539923692, -0.0301075466, -0.0011076075, -0.0161716286, 0.0137943244, -0.0257106535, 0.00537688, -0.00673321, -0.00510114245, 0.011715115, 9.07674548e-05, -0.000334191922, -0.0159927718, 0.00387895503, 0.00434472784, -0.0481124558, 0.000861213717, 0.0232215635, -0.0174832437, -0.00105544098, 0.0295113586, -0.00378393731, 0.0129894689, -0.0138464905, 0.000104158418, 0.013257754, 0.00156313321, 0.0237581339, 0.0140998708, 0.0206728559, -0.014584275, -0.0090397168, -0.00168143946, 0.00862983614, -0.00749335112, -0.00552965328, 0.00313185551, -0.00303124869, 0.00977004785, 0.00432982296, -0.0123262089, 0.00909188297, -0.0142936325, 0.016723102, -0.0176770054, -0.00896519236, 0.00641275849, -0.0305248797, 0.000775977329, -0.0140402522, -0.0198530946, 0.0160822, 0.00125013397, -0.0226104688, -1.30343578e-05, 0.0265900306, -0.00189755799, 0.00901735947, 0.00554455817, 0.0236985143, 0.00434472784, 0.022282565, 0.00656180549, 0.00172801665, -0.00347093819, 0.0127360886, 0.0103289755, -0.0106866891, -0.0119386856, 0.0219695661, -0.00264745206, -0.00458692946, 0.0208964255, -0.0221931376, 0.00774300518, -0.00386405038, 0.00833174214, 0.0243841317, 0.00573086739, -0.0129223978, -0.0143607035, 0.0120281139, -0.0182433855, 0.000363069819, 0.0276631713, -0.0167380068, 0.0167827215, 0.000305314, 0.0028672968, 0.021403186, 0.0265751276, 0.00532843964, 0.00173453754, -0.00176807318, -0.00735548232, -0.00778026693, -0.005641439, -0.000666986511, -0.0032212839, 0.010269356, 0.0014112913, -0.0342808701, 0.0346087739, 0.00599542633, 0.00097160181, -0.00772810075, 0.00566752208, 0.0531800613, -0.00257106521, 0.00364420563, -0.00487757148, 0.0175279584, 0.0142489178, -0.00463164365, -0.00241829176, 0.0177962426, -0.0166187696, 0.00449750107, -0.0121100899, -0.00111971761, -0.0180645287, -0.00762004126, -0.011431925, 0.00641275849, 0.0173938163, -0.0330586843, 0.0125870416, -0.0117672812, -0.00833919458, 0.00562280789, 0.0148749165, 0.00892793108, 0.00494464301, -0.000541693647, -0.00571223628, 0.0109698782, -0.00690834038, -0.00205312599, 0.0239369906, -0.00908443052, 0.00921857357, 0.00612211647, 0.00717289932, 0.0045310366, -0.00693069771, -0.0138837527, -0.0160374846, -0.00774300518, 0.000151492568, 0.00400937116, -0.000913846, 0.00545140356, -0.0202555228, -0.00208107242, -0.00711328071, -0.00633078255, 0.000370522175, -0.00126224395, 0.00668477, -0.00276855286, 0.00393484766, 0.0197189525, -0.000972533366, 0.00702385232, -0.00422548968, 0.0127137313, -0.00205312599, 0.0137570621, -0.00819014665, 0.00502661895, -0.000767127611, 0.0101128565, -0.012080281, 0.0041360613, 0.024041323, 0.00114486925, -0.014502299, -0.0195251908, -0.00380629441, 0.00349143217, 0.00274246954, -0.00958373863, -0.00799638592, 0.025800081, 0.00868945569, -0.0155009152, 0.00777281448, -0.00255616056, 0.00178484095, -0.0013526039, 0.0041994066, -0.00407271646, 0.0160672944, -0.00901735947, 0.0174683388, 0.0142489178, -0.0135483965, -0.00495954743, -0.0229234695, 0.0108059263, 0.00792931393, 0.00262695807, 0.00290828478, 0.00403545471, -0.00206616777, -0.00608858047, -0.00877888408, 0.0248014648, -0.00229905406, -0.0184073374, 0.0191525724, -0.0117374714, -0.00632333, -0.00028482, 0.00503407139, 0.000696330157, -0.00487384526, 0.00196742383, -0.0149047263, 0.00700149499, 0.0137347048, 0.0041546924, 0.010485475, -0.0174385291, -0.00830938481, -0.0159480572, 0.000964149483, 0.037381053, 0.00890557375, 0.0148227504, -0.0210603774, 0.00358644966, -0.00836900342, 0.0182731934, 0.0116704, 0.0216416623, -0.005641439, -0.00770574342, -0.00792931393, 0.00725860149, 0.0162610561, 0.0101501187, 0.0236687046, 0.00100327434, 0.0222974699, -0.00589109305, 0.013704896, -0.0144873941, 0.0115064485, -0.00495209545, 0.00756787462, 0.000639971695, -0.0107537601, -0.00104612543, 0.0014355114, -0.0078100767, -0.0100010717, 0.00719525665, 0.0150761306, 0.00102190534, -0.0012128721, -0.00944214407, 0.022565756, -0.00251330948, 0.0235643722, -0.00807090942, 0.0051384042, -0.0136527289, 0.0135931103, 0.00480304798, 0.0126317553, -0.0174087193, 0.00592462858, -0.00433354918, 0.00531353476, 0.00889066886, -0.0169913881, -0.00177925173, 0.00219844701, -0.0177962426, -0.0191674773, -0.00591717614, 0.00532471342, 0.00337405736, 0.0122367805, -0.0142340139, -0.0148749165, -0.00273501733, 0.00013914959, 0.0111189261, -0.0228042305, -0.00967316702, -0.00621154485, -0.0329394452, -0.00821250398, -0.015545629, 0.0176024809, -0.00868945569, 0.00288779079, -0.02286385, 0.00261205318, -0.00571223628, 0.0221931376, -0.0111934496, -0.00373922312, 0.00596561655, 0.00219472102, -0.00302565936, 0.0135185868, -0.00854040775, -0.005973069, -0.00475460757, -0.0031299924, 0.0434621833, -0.0174534339, -0.03106145, -0.00137402944, -0.0150910355, 0.00437081093, 0.00128087495, 0.0199574288, 0.00612584269, 0.00551847508, -0.00821250398, 0.00718407799, -0.00783988554, -0.0177515298, 0.00996380951, 0.000748030958, -0.0124901608, -0.00738901785, -0.00958373863, 0.000995822, 0.000332794589, 0.0140477046, -0.020806998, 0.00625625905, -0.000371919508, 0.0358607695, 0.0197487622, -0.00112623838, 0.0256659389, 0.000883105036, -0.0200319514, -0.0295709763, -0.0218205191, 0.0115735196, 0.0160076767, 0.0098520238, -0.0129671115, 0.00468381029, -0.0022655183, -0.00844352785, -0.00869690813, 0.00848824158, -0.00343181309, 0.0213286635, -0.00307968911, 0.0113946628, 0.0208219029, 0.00272570178, 0.0217758045, -0.00296045118, 0.0212690439, -0.00650218688, -0.00246300595, -0.00710955448, -0.00390131213, 0.0162461512, -0.00672575785, -0.00544022489, 0.00727350637, 0.00930800196, -0.0126988264, -0.0141594894, 0.0298690721, -0.00965081062, -0.00112064905, 0.00133863068, 0.00535824895, 0.001190515, -0.00247418461, -0.0210752822, 0.0112456158, -0.00824976619, -0.0160822, 0.00462791743, -0.0206430461, 0.00015440365, 0.00746726803, 0.0163355805, 0.0146960597, 0.0017541, 0.00255988678, -0.003077826, -4.08715532e-05, 0.023012897, 0.00595816411, 0.0117374714, -0.00296604051, 0.0115511632, -0.0110220453, 0.0163355805, -0.00653572241, 0.00530980853, -0.00280767772, -0.00571968872, -0.00112530682, 0.0045310366, 0.0218950436, 0.0088235978, 0.0155605339, 0.00766848167, -0.0276035536, -0.00357527123, 0.00205685222, 0.00865219347, 0.005641439, 0.0158884376, -0.00678910268, -0.00638667541, -0.00134701468, -0.0201362856, -0.0234004203, -0.0053843325, -0.0210305694, 0.0218503289, 0.018317908, -0.00621899683, 0.015545629, 0.000601312553, 0.016574055, 0.000631122, 0.009934, -0.016275961, -0.0108506409, 0.0150910355, 0.0164101031, 0.00561535545, 0.00694932882, 0.00567497453, 0.0111040212, 0.00877143163, -0.00255057123, -0.0128404219, 0.0270818882, -0.0283935033, -0.0253082253, -0.0373512432, 0.0223869, -0.00287661212, 0.014435227, -0.00511604734, 0.0176024809, -0.0386628583, -0.00689716218, -0.00466517918, -0.02667946, -0.0235792771, 0.00697913812, -0.00129764271, 0.00690834038, 0.0220739, 0.0128106121, 0.00775791, 0.00991909485, 0.00310390932, 0.00762376748, 0.0218652338, 0.00157617475, 0.00278718374, 0.0228787549, -0.0222974699, -0.0107463077, -0.0223719943, 0.000376577227, -0.0178111475, -0.0159927718, 0.0120579237, 0.00508623803, 0.000602244108, 0.0202108081, 0.0420015194, 0.00264558895, 0.00734430365, -0.0104482127, 0.00650218688, 0.00760886259, 0.0140626095, -1.76848062e-05, -0.00559299858, -0.000840719731, -0.00195438229, 0.0302864034, 0.00956883468, -0.000815567968, -0.00168609712, 0.0220440906, 0.0144799417, -0.000614354154, -0.00164045137, -0.0087490743, 0.0128478743, -0.0127584459, 0.00785479, -0.0211498067, 0.00916640647, 0.00390503835, 0.00466517918, -0.00118865189, -0.0035082, -0.00406153779, -0.0106121646, 0.00271079713, -0.022133518, 0.00857767, -0.0274843145, -0.00686735241, -0.00825721864, -0.0170211978, -0.0151506541, 0.00370941381, -0.0172149595, -0.00384914549, 0.011946138, 9.55416253e-05, -0.0226551834, 0.00434100162, -0.00971788168, -0.0270520784, 0.00642393716, 0.00645002024, -0.00202704268, 0.0261279847, 0.021835424, -0.0033591527, 0.00752316043, 0.00754179154, -0.00705738785, 0.00701267365, 0.00648728199, -0.00275737443, 0.0140477046, -0.00129298505, -0.00536942761, -0.0287959315, 0.00062366965, -0.0158586279, -0.00456457259, 0.0154263917, 0.00685617421, -0.00504897581, -0.0106643317, -0.0229085647, 0.000712632202, 0.0102619044, 0.00374108623, 0.0174832437, 0.00936762057, -0.0108059263, -0.0102991657, 0.00614074711, -0.00234190514, -0.00383424084, 0.0332375392, 0.00531353476, -0.0141743943, -0.00436335849, 0.0115660671, -0.00373922312, -0.00581284333, -0.005973069, 0.00467635784, -0.0034783904, -0.00768338656, 0.0150761306, 0.0146289887, 0.0156648681, -0.00462791743, -0.0144426795, -0.0184073374, -0.00081277336, 0.00484776217, -0.0041994066, 0.0150016071, -0.000815567968, 0.0126243029, 0.000775977329, 0.0132801114, -0.0188544784, -0.00285611814, -0.0098520238, -0.00408762135, 0.0267092697, 0.0539551079, 0.0069456026, 0.00549984397, -0.00165442459, -0.0190184303, 0.00402800227, 0.0020773462, 0.0109326169, 0.00552220084, -0.00639785361, 0.00425157323, 0.0252784155, 0.0115139009, 0.00106289331, 0.00616310444, -0.00184539147, -0.00115977402, 0.00433354918, -0.00351006305, -0.0129671115, 0.0203896649, -0.0118939718, 0.0303758327, 0.000148814375, 0.0115362583, 0.00618918752, -0.00646492513, -0.00248908927, 0.00388640724, -0.00299585, -0.00438198959, -0.00288406457, -0.00554083195, 0.011946138, 0.00397210941, 0.0110369502, -0.0152102727, 0.0115213534, -0.0159927718, 0.00633450877, -0.0221484229, -0.0045198584, 0.0128031597, -0.0125050656, 0.0205834266, -0.00184818602, 0.0166634843, 0.00160691584, -0.0141073233, -0.00112530682, 0.00479932176, 0.00997126196, -0.00403172849, -0.0139284665, -0.0085255038, -0.028125219, -0.00550357, 0.00086261105, 0.0140998708, -0.039736, 0.00893538352, 0.0034038669, -0.00552965328, -0.000613422657, 0.00800383836, -0.00456829835, -0.000898941304, 0.000783895433, 0.00443788245, 0.0186756216, -0.0135931103, -0.00710210204, -0.00436708471, 0.00890557375, 0.0126615651, 0.00450867973, 0.00310018309, -0.0077653625, -0.0141743943, 0.00242947042, -0.00638294918, -0.00982221495, -0.00304056425, 0.00364979473, 0.00851805136, -0.0166187696, -0.00350447372, 0.0176770054, -0.0195400957, 0.00206803065, -0.00996380951, -0.0147258695, -0.00379325286, 0.00724369707, 0.00603268808, 0.00516448775, 0.0193165243, -0.00401309738, 0.00228042318, -0.00331071229, 0.0032212839, -0.0073517561, -0.00465400098, -0.000709837594, -0.00767593412, -0.00544022489, -0.00899500214, 0.00279463618, -0.00102935766, 0.00549239153, -0.00747099379, 0.00777281448, 0.0149717974, -0.0048067742, -0.00482540531, -0.0103364279, 0.00180906116, -0.0470691249, -0.0297796428, 0.0162312463, 0.0199425239, 0.00734057743, 0.0133471824, 1.36384069e-05, -0.00896519236, -0.00549984397, 0.0101352138, 0.00327717676, 0.00751198223, 0.00125758629, 0.0181837659, -0.00928564463, -0.00977004785, 0.00823486131, 0.0154412966, -0.0146811549, -0.0222378522, -0.00154636533, -0.0349366777, 0.000590134, 0.00915895402, 0.00848078914, -0.00622644927, -0.0140477046, -0.000131697234, 0.00746354181, 0.00211460795, 0.000757346395, 0.00400937116, -0.0159778669, -0.00780262426, -0.00535824895, -0.00894283596, -0.00101352134, -0.0210454725, 0.00708719715, 0.0215969477, 0.0144650368, -0.0148152979, 0.00568242697, -0.0173938163, -0.0173043869, 0.0119535904, 0.0103960466, 0.0127957072, -0.00329767074, 0.00936762057, -0.0109922355, 0.00374294934, -0.0195848104, 0.00031719121, 0.0173491016, -0.00535079651, -0.0110071404, -0.00987438112, 0.0188842881, 0.00214814371, -0.0157244857, 0.0159629621, -0.0127062788, -0.00159480574, -0.00204939977, -0.000150561027, -0.00599915208, -0.0106866891, -0.000470197527, 0.0162908658, 0.0173043869, 0.00235308358, 0.00372245535, 0.0118567096, -0.0225061364, 0.0183924325, -0.00633450877, 0.00178763561, 0.00767593412, -0.00571968872, 0.00813052803, -0.00920366868, 0.0201959033, -0.00129671115, 0.00168423401, 0.0179601945, -0.00711328071, -0.000713098, 0.00396838319, -0.00190594187, 0.0152549874, -0.0194059536, 0.0028672968, 0.0160523895, -0.00295858807, -2.04212211e-05, -0.00929309707, 0.0110965688, 0.00666241255, 0.00920366868, -0.0157244857, 0.00416959729, 0.00849569403, -0.00168423401, 0.0266198404, -0.0401533321, -0.0233855154, 0.0178558622, -0.0119535904, -0.00627861591, 0.024622608, -0.00174385298, -0.00099954824, -0.0103066182, 0.0180049092, 0.0253082253, -0.0131012546, 0.00780262426, -0.00254311902, -0.0282146465, -0.011946138, -0.0378878154, -0.00891302619, 0.00599915208, 0.000630656199, -0.0129447551, -0.0092632873, -0.0138986576, -0.0204343796, -0.0195848104, 0.005641439, 0.0114840912, -0.00168050791, -0.0126615651, -0.00521292817, 0.00218726858, 0.0193910487, -0.0143905133, 0.00821250398, 0.00285611814, -0.00708347093, -0.0223421846, 0.00369823514, -0.0120728286, -0.0190333351, -0.0218503289, -0.0129074929, 0.0215075202, -0.00414351374, -0.0108133787, 0.00174385298, -0.0129596591, 0.00798893347, 0.00416214485, -0.0215075202, 0.0119610429, -0.00259714853, 0.00443415623, 0.00425529946, 0.00732567301, 0.00285425503, -0.0165144373, -0.0120877326, -0.0117672812, 0.00429256121, -0.0118641621, -0.0186756216, -0.00478814309, -0.00318588526, -0.0136303725, -0.00169168646, 0.00791441, 0.0014215383, 0.0255914144, -0.0122963991, 0.00204008445, -0.010254452, 0.00312626641, -0.00180719804, 0.039557144, 0.00348025351, 0.0129969213, 0.0111487349, 0.00196369761, -0.00823486131, -0.0278718378, 0.00744491071, 0.000634848198, -0.00502661895, -0.00395347876, 0.00595816411, -0.00964335818, -0.0133248251, -0.0119014243, -0.00659161527, 0.00950176269, -0.00936016813, 0.0022878754, 0.0172298644, -0.00596561655, 0.000146252627, 0.0283785984, 0.00640530605, 0.0212392341, -0.00304987957, 2.67673749e-05, 0.00666986499, -0.00156685931, 0.000285052898, -0.00356222945, -0.00166746625, 0.0214926153, 0.00334424805, -0.0035473248, 0.00231582182, 0.0131683256, -0.0270371735, 0.0134217059, 0.000585010508, 0.0242201798, -0.00820505153, -0.00858512241, 0.0140998708, 0.00395347876, 0.0216267575, 0.00482913107, -0.00487757148, 0.0280357897, -0.00753433909, -0.00605131872, -0.00683009066, 0.0158437248, 0.0107463077, -0.0086000273, 0.0133173726, -0.00190221565, -0.00675556716, 0.0197338574, -0.0129298503, 0.0264856983, -0.000419661199, 0.000959491765, -0.00609975914, -0.0109028071, 0.00130136893, 0.00744118448, 0.00143830606, 0.00405035913, 0.00118306268, -0.00763122, 0.000924093, -0.00238289312, 0.00663632946, -0.0263366513, 0.0145321079, 0.0210007597, -0.00472852448, -0.00212764973, -0.00261391629, 0.0236538, -0.00797402859, -0.000861213717, 0.0382753387, -7.44654099e-05, 0.00241456553, 0.0144128706, 0.0103438804, 0.00731076812, -0.00845097937, -0.00866709836, 0.00207548309, -0.00602523563, 0.019868, -0.0371723883, 0.000367028872, 0.00307968911, -0.00215373305, -0.0201362856, -0.00983711891, -0.0208517127, -0.00219285791, -0.00530608231, -0.0123411128, -0.0050638807, 0.00621154485, -0.0113723064, -0.0316874497, 0.00491855945, -0.0296156909, 0.00687107863, 0.0136601813, 0.00795167126, 0.0122069707, 0.0225806609, -0.00299771316, -0.0011178545, 0.00125572318, 0.0189886205, -0.0131459683, 0.00611839024, 0.00769083854, -0.00440807268, -0.00817524269, -0.00866709836, -0.00388640724, -0.0178409573, -0.00830938481, -0.0485596, -0.00700149499, -0.0113499491, -0.0411668532, -0.00205498911, -0.0202108081, 0.0065170913, 0.0112977829, 0.00277041597, -0.00161436817, 0.0117598288, 0.0122069707, -0.0041546924, 0.00257292832, 0.0177366249, -0.00661397213, 0.0103736892, -0.0132055879, 0.00350074749, 0.0313595422, -0.00455712, -0.00189196866, 0.013406801, -0.0118343523, 0.0130714448, -0.0190631449, -0.0175875761, 0.00634196121, 0.00893538352, -0.00164604071, -0.0104929274, 0.000418729644, 0.00289710611, 0.00327903987, 0.00750080356, 0.00255057123, -0.00765357679, 0.00183980213, -0.0174236242, -0.013704896, 0.00291014789, 0.0274843145, -0.00258224388, -0.00821995642, 0.00183607591, 0.0187799558, 0.0124901608, 0.00359762833, -0.0194506682, -0.00568987941, 0.0102246422, 0.0200915709, -0.00351751549, 0.014733322, -0.0147258695, -0.0125572318, 0.00652827, -0.00399074052, -0.00734057743, 0.00551102264, -0.00329208141, -0.0239220858, 0.00216677459, 0.0204641894, -0.0059917, 0.00127808028, 0.077206485, -0.0156499632, 0.0116629479, -0.0222974699, -0.00283376104, -0.0306739267, -0.0283785984, 0.0440583713, 0.0145768225, 0.0169466734, -0.00900990702, -0.00181092427, 0.00687107863, -0.00250399392, -0.0200319514, -0.0148152979, -0.0204194747, 0.00440062024, 0.0178558622, 0.00653572241, -0.0018649539, 0.00340014067, 0.012378375, -0.00666241255, -0.00693815, -0.00587246194, -0.0158437248, -0.0112977829, -0.0140924184, 0.032104779, -0.0112009021, 0.000890557363, -0.001702865, -0.00274992199, 0.00180626649, -0.0152922487, 0.0369339101, -0.0103736892, 0.00726605393, 0.016425008, 0.0118865194, -0.00320265302, -0.015165559, 0.0225508511, 0.0022878754, -0.00225806609, 0.0100234281, -0.0237730388, 0.0150686782, -0.0112381633, 0.00784733798, -0.018168861, -0.013190683, -0.00959864352, 0.00446396554, 0.0272607449, 0.0409581885, 0.0193761438, 0.0286021698, 0.0108059263, 0.0212839488, 0.00236426224, -0.00950176269, 0.000386358442, 0.0146438936, -0.0127808023, -0.00270520779, -0.00903226435, 0.00951666757, -0.00229719095, -0.00880869292, -0.00864474103, -0.00832429, -0.0104258563, 0.00838390831, 0.029004598, -0.00167305546, 0.0176919103, 0.00128739572, 0.0120430188, -0.00815288536, -0.00763867237, -0.00232513738, -0.0204343796, 0.0131385159, 0.0121846134, -0.0174087193, -0.0144277746, -0.016723102, -0.00763122, 0.0075641484, 0.0116107818, 0.00380070508, 0.0303162131, 0.00451613218, -0.00207175687, -0.00897264481, 0.010634522, 0.0309720207, -0.0111785447, 0.00345230731, 0.0111487349, 0.00491483323, 0.00312254019, -0.0113872113, 0.0314787813, -0.00503779761, 0.00220776256, 0.00747472, -0.0161567237, -0.00484403595, 0.00447141798, 0.0196146201, 0.0300032143, -0.0127509935, 0.00483658351, 0.0109698782, -0.0189737156, 0.0326413512, -0.00283748726, -0.0125870416, 0.0186905265, 0.00558554614, -0.031508591, -0.0166038647, -0.00246114284, -0.00800383836, 0.0145768225, 0.00697168568, -0.0153667731, 0.0181539562, 0.0122889467, 0.0234749429, -0.0207771882, 0.00514958287, 0.0268136021, -0.00503779761, -0.0048701195, -0.0250101313, 0.0223123748, 0.0349962972, -0.0080858143, 0.00457947701, 0.00462046498, -0.00994145218, 0.00209225086, -0.00603268808, -0.0154562015, -0.0114915436, -0.014070062, 0.00439689402, 0.042806372, 0.0102022849, -0.0221037082, -0.00838390831, -0.0151804639, -0.00676674582, -0.0107090455, 0.00838390831, -0.00440062024, -0.00222825655, 0.00171497511, -0.00213882816, -0.0121995183, 0.00610348536, 0.00485894084, 0.00271266024, -0.00206244155, 0.0195251908, 0.0143979657, 0.0209858548, -0.0061109378, 0.00258224388, 0.01494944, -0.0117821861, 0.0186756216, 0.0159629621, 0.00631587766, -0.0208219029, -0.0110965688, -0.00102935766, 0.0108133787, -0.0155009152, 0.0444458947, 0.0111859972, -0.0074151014, -0.0189886205, 0.00532471342, 0.0209262352, 0.0262025092, -0.00346907508, -0.0114915436, -0.014800393, -0.00800383836, 0.0120206615, 0.00315421261, 0.0185116697, 0.00235122046, -0.00551474886, 0.00188451633, -0.00822740886, 0.0159778669, 0.00372804468, 0.00593953347, 0.0130043738, -0.00687480485, -0.00133769913, -0.0110369502, 0.00594325969, -0.0161567237, 0.00119144656]
22 Mar, 2023
Difference Between Network Security and Network Administration 22 Mar, 2023 In the world of information technology, there are two important and distinct roles that are often confused: network security and network administration. While these two jobs may be closely related, they require different sets of skills and responsibilities. It’s significant to understand the differences between network security and network administration in order to determine which role is best suited for your particular organization. Network Security Network security is the practice of protecting a network from malicious attacks and unauthorized access. This involves implementing measures such as firewalls, antivirus software, intrusion detection systems, and encryption algorithms to protect data, systems, and networks from unauthorized access. Network security professionals are responsible for developing and implementing policies and procedures that protect the integrity and confidentiality of the network. Network security professionals must have a thorough understanding of security protocols and technologies, as well as the ability to identify and respond to potential vulnerabilities and threats. They must also be familiar with common security tools and technologies, such as firewalls, antivirus software, and intrusion detection systems. Advantages of Network Security: Network Security helps to protect against unauthorized access and other security threats, such as malware and viruses. Network Security can ensure the confidentiality, integrity, and availability of network resources, data, and services. Network Security can help organizations comply with regulations and standards related to data privacy and security. Network Security can help improve the overall performance and reliability of the network. Disadvantages of Network Security: Network Security measures can be costly and time-consuming to implement and maintain. Network Security measures can introduce additional complexity to the network, which may increase the risk of human error. Network Security measures may not be foolproof and can be bypassed by determined attackers. Network Administration Network administration is the practice of managing a network’s physical hardware, software, and operating systems. This includes tasks such as installing and configuring hardware, developing and maintaining software and operating systems, and providing technical support for users. Network administrators must have a thorough understanding of networking technologies and protocols, and must be able to troubleshoot any problems that may arise. Network administrators must also be familiar with network topology, which involves designing and configuring a network’s physical layout. In addition, they must be able to manage and maintain a network’s user accounts and access privileges. Advantages of Network Administration: Network Administration involves managing and maintaining the network infrastructure, including hardware, software, and services. Network Administration can help ensure the smooth and efficient operation of the network, minimizing downtime and maximizing productivity. Network Administration can help optimize network performance and scalability, ensuring that the network can meet the needs of the organization as it grows. Network Administration can help diagnose and resolve network issues, minimizing the impact of problems on users and the business. Disadvantages of Network Administration: Network Administration can be a complex and demanding job, requiring specialized skills and knowledge. Network Administration can be time-consuming and may involve working outside of normal business hours to perform maintenance and upgrades. Network Administration can be stressful, particularly in high-pressure situations such as network outages or security breaches. Similarities between Network Security and Network Administration: Both Network Security and Network Administration are essential components of a well-functioning network. Both Network Security and Network Administration require specialized skills and knowledge, as well as ongoing training and professional development. Both Network Security and Network Administration require careful planning and attention to detail to ensure that the network is secure, stable, and reliable. Difference Between Network Security and Network Administration Factor Network Security Network Administration Knowledge Network Security requires a deeper understanding of security-related concepts and technologies, such as encryption, firewalls, and access control. Network Administration requires a broad knowledge of networking and server technologies, such as routers, switches, and virtualization. Skills Network Security requires specialized skills such as cryptography, malware analysis, and intrusion detection. Network Administration requires skills such as scripting, configuration management, and server administration. Training Network Security personnel must be trained in security-related concepts and technologies, Network Administration personnel must have a broad knowledge of networking and server technologies. Certifications Network Security personnel must typically have a certification in a specific security technology or protocol. Network Administration personnel typically have a certification in a specific vendor’s product or technology. Scope Network Security focuses on protecting the network from external threats, Network Administration focuses on ensuring the network is running optimally. Tools Network Security personnel use tools such as firewalls, IDS/IPS, and antivirus software to protect the network. Network Administration personnel use tools such as routers, switches, and monitoring software to manage the network. Compliance Network Security personnel must ensure that the network is compliant with security policies and regulations. Network Administration personnel must ensure that the network is compliant with policies and regulations related to performance and availability. Troubleshooting Network Security personnel must troubleshoot security-related issues. Network Administration personnel must troubleshoot performance-related and availability-related issues. Monitoring Network Security personnel must monitor the network for security incidents and unauthorized access attempts, Network Administration personnel must monitor the network for performance issues and availability problems. Conclusion: In conclusion, Network Security and Network Administration are both essential components of a well-functioning network. While they share some similarities, such as the need for specialized skills and knowledge, they are distinct areas with different goals and priorities. Network Administrators focus on optimizing network performance and ensuring that the network is running smoothly, while Network Security professionals focus on protecting the network from security threats. Both are critical components of a well-designed and secure network. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System/Introduction of System Call/How much Stack size required for BIOS interrupt call?/Difference between Interrupt and Polling/Difference between Difference Engine and Analytical Engine/Difference Between Store‑and‑Forward Switching and Cut‑Through Switching/Difference between Message and Packet Switching/How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?/Types of Node Devices in a Computer Network: End devices and Intermediary Devices/Types of Errors in Computer Network/Difference between Storage Area Network (SAN) and Network Attached Storage (NAS)/Difference Between Network Security and Network Administration
https://www.geeksforgeeks.org/difference-between-network-security-and-network-administration?ref=asr10
PHP
Difference Between Network Security and Network Administration
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, Difference between Difference Engine and Analytical Engine, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Difference between Interrupt and Polling, Types of Node Devices in a Computer Network: End devices and Intermediary Devices, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, Types of Errors in Computer Network, jQWidgets jqxToolBar close Event, How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, Difference between Message and Packet Switching, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, Difference Between Network Security and Network Administration, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, Introduction of System Call, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Difference Between Store‑and‑Forward Switching and Cut‑Through Switching, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, Difference between Storage Area Network (SAN) and Network Attached Storage (NAS), jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How much Stack size required for BIOS interrupt call?, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0150649939, -0.0181104448, -0.0133300852, 0.00540754665, 0.0397905558, -0.00207814528, -0.0282328222, -0.00072937907, -0.0177734476, -0.00824393425, 0.0156640988, -0.0232777242, 0.0263855811, -0.028332673, -0.0183475893, 0.0137045262, -0.000540598645, -0.00219047745, -0.00349477888, -0.0215178542, 0.0494760871, -0.0234649442, -0.0116201397, -0.0168997534, -0.0541690737, 0.00525465, 0.0228783209, 0.0182352569, -0.0206191968, 0.057014823, 0.0192088038, 0.00151180394, 0.0282577835, -0.0345483869, 0.00221232, -0.0155268041, -0.0547681786, -0.00916755386, -0.0182727017, 0.0318024904, -0.0014166336, 0.00293467822, 0.0240141246, -0.00285042915, -0.0123378178, 0.0111271264, -0.0474541076, -0.0564656444, 0.0197954271, -0.0516728051, -0.00753249694, -0.0225787684, 0.0231154673, 0.0296556968, 0.0169871226, 0.0261609163, 0.0351225287, -0.0253621098, 0.00439967727, 0.00450888881, 0.0423617139, 0.016849827, -0.0361959264, -0.0330007, -0.0106403539, 0.0264105443, -0.0274090525, 0.0146655906, 0.0359213352, -0.0213431139, -0.0489768311, 0.0292812549, -0.0434600748, -0.0194584299, -0.0180979632, -0.00766355125, 0.0270845369, -2.64741211e-05, 0.031852413, 0.0307540558, -0.0163380913, 0.0451825, -0.0160635021, -0.0182727017, 0.026360618, 0.0231653918, -0.0362208895, -0.0577637032, 0.0518225804, -0.00871198438, 0.00188156404, 0.00804423261, 0.035422083, -0.0704447627, 0.0137794139, 0.0146905528, -0.00593488384, -0.00748257153, 0.0175113399, 0.00224352325, 0.00763234776, -0.0358714089, 0.00122395274, -0.0230031349, 0.0446832441, -0.00305481139, -0.00460873963, 0.0203570873, 0.00777588319, 0.075087823, -0.00155704888, -0.00402211631, -0.0265852828, 0.0251499265, -0.0387670845, -0.00991019513, -0.00987899117, -0.0266851336, -0.0256616622, 0.0100599714, -0.00120601081, 0.00497381948, -0.0172367487, 0.0308039803, -0.0763359591, 0.0700453594, 0.0214554463, -0.00758242235, -0.00881807599, -0.0368948802, 0.0140540041, 0.023814423, -0.00122005236, -0.000732889457, -0.00419997564, -0.0496508256, 0.0275089033, 0.0182227753, 0.0232652426, -0.023439981, 0.0192587283, 0.00558540551, -0.0460811555, -0.0107464455, 0.00301736733, 0.0197829455, 0.00695835473, 0.020394532, -0.0319772288, 0.0325014442, -0.0124376686, 0.019296173, 0.000637329125, 0.0334500261, 0.0321020409, -0.00954199489, 0.0107402047, 0.0195208378, -0.0289567411, 0.00729535101, 0.0241264571, -0.0516228788, -0.0201074611, -0.0051017534, 0.00981658418, -0.00150400307, 0.0141663365, -0.0162382405, -0.0305044279, 0.0325014442, -0.0276087541, 0.0175612643, 0.014465889, 0.0262607671, 0.00137684937, -0.0419123843, -0.0226411745, -0.00726414798, -0.0153645463, -0.00378809078, -0.0536698215, -0.0267100967, -0.0245757848, -0.019046545, 0.0335498787, 0.0126810549, 0.0350726023, -0.0178732984, -0.011139608, -0.00785077177, -0.0312283468, -0.0251249652, 0.0415629074, -0.0246132296, 0.00695835473, -0.00754497806, -0.00774467969, 0.00382241444, 0.026360618, -0.0376936868, 0.0256117377, 0.00328883668, -0.00761986617, 0.0273591261, -0.0132926414, -0.0128058689, -0.0108088525, -0.00425614137, -0.00511735491, 0.0276836418, -0.072641477, -0.00795062259, 0.0204694197, -0.0114953266, -0.00153520645, -0.0089304084, 0.0141663365, -0.0215053726, 0.0109149441, 0.0182602201, -0.00470235, 0.0103408014, 0.0405644, 0.00447768578, -0.0472544059, -0.0279083066, 0.0094171809, -0.0215802602, -0.0445085056, -0.00395658892, -0.0290316287, 0.0310286451, 0.0051298365, 0.0102659129, -0.0382678285, -0.0267100967, 0.033949282, 0.0118198413, -0.0428609699, 0.0234524626, -0.0369697697, -0.00228408771, -0.0157015435, -0.0103969676, -0.0268848352, -0.0256866254, 0.00540442625, 0.0553173572, 0.0123253362, 0.00312033831, -0.0148902545, -0.00919875782, 0.00836874731, -0.00418125326, 0.00377248903, -0.025761513, -0.0242263079, -0.0218673311, 0.0126373703, 0.0200700164, 0.000902557862, -0.0356966704, -0.00424054, 0.052022282, 0.0103657637, 0.0131678283, 0.0267350599, 0.0172991566, 0.0382179059, -0.0240640491, -0.00887424219, -0.044458583, 0.00393162621, 0.0203321241, -0.0134548992, -0.0104656145, 0.0265852828, 0.0392663367, 0.0491515696, 0.0171493795, 0.00801926944, -0.0577137806, 0.00683978153, -0.0196830947, -0.0213181525, -0.012206764, -0.0263106935, -0.00115296501, -0.0438345149, -0.0122504486, -0.0249252636, -0.00439031608, 0.0496009, 0.0132926414, 0.0158388373, -0.0207939353, -0.0072204629, 0.0320271514, -0.0154019902, 0.00936725549, 0.0318773761, -0.0150025869, 0.026135955, -0.0129681267, -0.0254619606, 0.00742016453, -0.020207312, 0.0142786689, 0.0436348133, -0.0161508713, -0.0303546526, -0.0206067152, -0.00474603474, -0.0237020906, 0.0210435614, -0.00700828, 0.0146281468, -0.00729535101, 0.0182477385, -0.0187469926, 0.0115078082, 0.0318773761, -0.00932981167, 0.0648031905, -0.00126919767, -0.048852019, -0.0154144717, 0.00429982645, -0.0329258107, -0.012206764, -0.0177360028, 0.00697083585, -0.0472544059, -0.0215552971, 0.025761513, -0.0288568903, -0.00766355125, 0.0345733501, 0.00158123148, 0.00582255144, 0.0305793155, -0.00667128339, -0.046156045, 0.0233276505, -0.0336247683, 0.0191588774, -0.023627203, -0.00171618606, -0.0184099972, 0.00775716128, 0.000899437524, -0.0171868242, 0.00798806641, -0.0390416756, -0.0219796635, 0.0139791155, 0.000530457532, -0.016849827, 0.000191998319, 0.0122878924, 0.0205817521, -0.0213805586, -0.00431854837, 0.00762610696, -0.0327760354, -0.0200700164, 0.00704572396, 0.0129057197, 0.0385673828, 0.0124751125, 0.00922996085, 0.000268349104, 0.0143161127, -0.0044932873, -0.0282328222, 0.0091550732, -0.0107277231, 0.0424615629, -0.018921731, 0.0210685246, 0.0189342126, 0.00763858855, -0.0180605184, 0.0287071131, 0.00189560559, -0.0133300852, 0.0419872738, -0.00145797816, -0.0150400307, 0.020269718, -0.0116950283, 0.0296806581, -0.015564248, -0.00184255978, 0.00454009231, -0.01502755, -0.00979162194, -0.0340990573, 0.0361709632, -0.0188094, 0.0242387895, 0.0341240205, -0.0339742452, 0.0146406274, -0.0286571886, -0.0108275739, 0.00268193078, -0.044458583, -0.00859341212, 0.0120694693, 0.00868702214, 0.00619075121, -0.0123815024, 0.0130804582, 0.00429046527, 0.0404645465, -0.0116014183, 0.0342238732, 0.00643413793, 0.0245008972, 0.0025461961, 0.00119586964, 0.0315279, 0.00496757869, 0.0145532582, 0.0529209375, -0.00478659896, -0.025886327, 0.0717927441, 0.0136046754, 0.0203196444, -0.0351474918, 0.0304794647, -0.0033606044, -0.00717677828, -0.0613583326, 0.0481281, 0.00798806641, 0.00543562928, 0.0220670328, -0.00130040105, 0.00659639528, 0.0371694714, -0.0530707166, -0.0421370491, 0.00135734724, -0.0530207902, -0.00409076363, -0.0146780722, -0.0249876697, -0.0370446555, -0.0224165116, -0.0431355573, 0.0381180532, 0.00897409301, 0.020269718, 0.0521720573, -0.030878868, 0.0215428155, 0.0121381162, 0.0270595737, 0.0237894598, -0.0365703665, -0.0261109918, 0.0198952779, 0.00771347666, -0.0213181525, -0.0077696424, 0.0120507469, 0.0105904285, 0.0560163148, -0.0192712098, 0.0307790171, 0.0379932411, 0.0248254128, 0.0157140233, 0.000203797099, -0.0151773263, -0.0066962461, -0.0204070136, -0.0170620102, 0.0717428178, 0.0152522139, -0.0355968215, -0.0174614135, 0.0492514223, 0.0358464457, 0.0222916976, -0.0486772805, -0.0572644509, 0.0165877193, -0.00304233, -0.0270096492, -0.0468550026, 0.00352910277, -0.0090427408, 0.0169621594, 0.0170495287, -0.0147904037, 0.00449952809, -0.0341739468, 0.00725790719, -0.00137918955, 0.0512234755, -0.0125562418, 0.0232777242, 0.000907238398, 0.0396158174, 0.0169122349, -0.00947334711, 0.00958567951, 0.0425863788, -0.0186221786, 0.0311284959, 0.00683354121, 0.0298054721, -0.00904898159, -0.00447768578, 0.00143613573, 0.0302298386, -0.00659015449, 0.0245508216, 0.00592552265, -0.0249377452, 0.00766355125, -0.00589119876, 0.0113455504, -0.0180230737, -0.0597607195, -0.0180979632, -0.0125000756, -0.00426238216, 0.0318274498, -0.0160635021, -0.0199701656, 0.0259861778, -0.0265852828, 0.013305123, 0.0152397323, 0.0178358536, -0.0285323747, 0.0124813532, -0.00447768578, 0.00290659512, -0.00662135798, 0.0143161127, -0.00407516211, -0.014715516, 0.0194334667, -0.0165502746, 0.000549959659, 0.0193710607, 0.0095357541, -0.0153021393, -0.0231154673, 0.0301050246, 0.0309287943, -0.0162507221, 0.0321519673, -0.0217175558, -0.00093766168, 0.0143535566, 0.0164753869, 0.00428110408, 0.0123565402, -0.00136826839, 0.00845611747, 0.0137669332, 0.0136046754, 0.0239891615, -0.0183600709, -0.00899281539, -0.00210778858, 0.0222542528, 0.00296276133, 0.0232902057, 0.0120632285, -0.00545123126, 0.0146780722, 0.0140290409, -0.0160510205, -0.0175238196, 0.010166062, -0.00566965481, 0.0184224769, -0.00607217848, 0.0160635021, -0.00879311375, -0.0105405031, -0.0192462467, 0.0266102459, 0.00471483124, 0.0135422684, 0.0195957255, -0.0253745914, 0.0163880177, -0.012550001, -0.0201573856, 0.01217556, -0.0166501254, -0.0161134265, 0.0128557943, 0.0204444565, 0.013617157, -0.00901153684, 0.00188312423, -0.0039721909, 0.0172617119, -0.0210061185, 0.00890544616, -0.00642789714, 0.0165877193, -0.00335124345, -0.000289606396, 0.00850604288, -0.00755121885, 0.0171493795, 0.0136421192, -0.00280674431, 0.00968553, 3.42018357e-05, -0.0122005232, -0.00667752419, 0.00395034859, 0.0139291901, -0.0120133031, -0.00833130348, -0.0249627065, 0.00629996322, -0.0159137249, -0.0140415225, 0.0103095984, -0.0114454012, -0.00660263607, 0.0104780961, -0.0154893594, -0.0044340007, 0.00921747927, -0.028782, 0.0168997534, -0.026360618, -0.0050112633, 0.013242716, 0.101698071, -0.00226848596, 0.0562659428, -0.00219359784, 0.0154893594, 0.0113642728, 0.00510799373, 0.0164504237, 0.00348541792, -0.0377935395, 0.0210310798, -0.0163380913, -0.0127185, 0.0108712586, -0.0380431674, 0.0101411, 0.0206816029, -0.0196706131, -0.0359712616, 0.00467738742, 0.00250719185, 0.00416253135, 0.00240578083, -0.00956695713, 0.00952327251, -0.00270377332, 0.0183725525, -0.00245726644, -0.0264355075, 0.00200793776, 0.0636549, 0.00748257153, -0.00967929, 0.000535918109, 0.0424615629, -0.0177235212, -0.0293311812, -0.0277335681, -0.00285354955, 0.00350414, -0.00740768341, 0.0245757848, 0.0248628557, -0.0088118352, 0.0185972173, 0.0130055705, -0.0293561444, 0.00468050735, 0.0124938348, 0.00540442625, -0.0319772288, 0.00623755623, -0.0389667861, 0.00745760882, 0.0209062677, -0.0242762323, 0.0103470422, 0.030529391, -0.00879935455, -0.0169496778, 0.0147404782, -0.0140415225, 0.0283576343, -0.00232153176, 0.0118947299, -0.0204194952, -0.0159262065, -0.0083188219, -0.0261109918, -0.00867454056, 0.00155782897, 0.0119446553, 0.00406892132, 0.0241763815, -0.0279332697, 0.00814408343, 0.00688970694, 0.0061720293, 0.00439343648, 0.00322643, -0.0331504755, -0.041138541, -0.020082498, 0.00206098356, 0.0195582807, -0.0417376459, -0.0036539163, 0.00381929427, 0.0114953266, -0.0248378944, -0.00797558483, -0.0290066656, 0.00585375493, 0.0294809565, 0.00409076363, 0.0180230737, -0.00477099745, 0.0185847357, -0.00655895146, 0.0157265048, 0.0342488326, 0.0290565919, -0.00703324284, -0.000441137847, 0.00311565795, -0.000604565546, 0.0114828451, 0.0150774755, -0.0319522657, -0.0158887636, -0.0401649959, 0.0149276992, 0.00700828, -0.0039971536, -0.00480532134, 0.00949206948, 0.0268848352, -0.00204694201, 0.0372693203, 0.00490829209, -0.0231029857, -0.00548867509, -0.0099726012, -0.0118448045, -0.0192836914, 0.0243261587, 0.0307790171, 0.0186221786, 0.0345983133, 0.0375439115, -0.0127809057, -0.00600041077, 0.0268099476, 0.0022341623, -0.0469548516, -0.0187719557, 0.0340990573, -0.00419373484, 0.0293311812, 0.0102035068, 0.0165627562, -0.0230156165, -0.0580133311, 0.0368948802, -0.00716429716, 0.0187594742, 0.0210061185, 0.0120569877, 0.0391914509, 0.00478347857, 0.0380431674, 0.00435911259, -0.00114048366, -0.0489019416, 0.00881807599, -0.0253870729, -0.0143660381, 0.0420871228, -0.00942966249, 0.0224414729, -0.00612210389, -0.0116638253, -0.0489019416, -0.00982906576, -0.0342737958, -0.032825958, -0.0209936369, 0.00450888881, -0.00583503256, -0.0204194952, 0.0590617657, 0.0150025869, 0.0255618114, 0.0146281468, 0.0361709632, -0.0247380435, -0.00820025, 0.01788578, 0.0109586287, -0.0181853324, -0.0277834926, 0.00299552479, 0.00783204939, 0.0380431674, 0.00946086552, 0.0393412262, 0.0304794647, -0.0123690218, -0.00419685524, -0.0104968185, 0.0217799619, -0.0156141734, -0.0101910252, 0.0073889615, 0.00432478916, 0.0188468434, -0.00262888498, -0.0101785436, 0.0265353583, 0.0451076105, 0.0276337173, 0.00927364547, 0.00045322915, -0.00629684282, -0.0311534591, 0.0274340156, -0.0147404782, 0.00987275, 0.00520784454, -0.0490766838, 0.0198453516, 0.00282234605, 0.0309038311, -0.0102534322, -0.0195957255, 0.004409038, -0.0220545512, 0.00582255144, 0.0256117377, -0.0131303836, 0.0272592753, -0.00316246296, -0.00963560492, 0.0296307337, -0.0418375, 0.03771865, -0.0326012969, 0.00350726023, -0.0198703147, -0.00657143258, 0.0463307835, 0.0113393096, -0.000958723947, 0.0171743426, 0.00593488384, 0.0303047262, 0.00148528104, -0.0118198413, 0.00418437365, -0.0193585791, 0.00236989697, 0.00579134794, 0.00825017504, -0.00296120113, -0.0552175082, 0.0275338665, -0.0142786689, -0.0340241715, -0.0109711094, -0.00941094, 0.0239017922, 0.0122254854, -0.00445272308, -0.00695835473, -0.0170120858, -0.00497069908, 0.0157015435, 0.00543874968, 0.00453385152, -0.0262108427, -0.00607529888, 0.0127621843, -0.00809415802, 0.0114766043, -0.0110959234, -0.039491, -0.0182727017, -0.00806919485, 0.0180854816, -0.0213805586, 0.0369198434, 0.00381929427, 0.0606094524, -0.00660887687, 0.00436223298, -0.0185847357, 0.0137294885, 0.00967929, 0.0167624578, -0.0485275, 0.0248254128, 0.0169122349, 0.0110959234, -0.0194958746, -0.0368199944, 0.0323267058, -0.000544109032, -0.000391602458, 0.00514543802, -0.00780084589, -0.0132801598, -0.00380681292, 0.0288818516, -0.0245508216, 0.0415629074, -0.0604596771, -0.0222168099, -0.0115265297, 0.0210810062, 0.0350975655, -0.00300956634, 0.00634364784, 0.0142287435, 0.0262607671, -0.0199951287, -0.0349727534, 0.00264604692, -0.0164504237, -0.0144908512, 0.0204694197, -0.0332503244, 0.023252761, -0.0231154673, -0.0316776745, -0.0561660901, -0.0139042279, 0.0124002248, 0.0238019414, -0.00808167644, -0.00212807069, -0.000668532506, 0.00536386156, 0.0393412262, 0.0216676295, -0.0181603692, -0.00532017695, 0.0116887875, 0.0305543542, -0.0263106935, 0.0353971198, 0.0171618611, -0.0311284959, -0.0228908025, 0.00937973708, -0.0391415246, 0.0109399064, 0.00853724591, -0.00453385152, 0.00642165635, 0.00732655451, -0.0267600212, 0.0206067152, -0.0401150696, -0.00206722412, -0.0276836418, -0.0307041295, 0.00929860864, -0.0241014939, 0.00355718588, -0.0127559435, -0.0127746649, -0.0245258603, -0.0094234217, 0.0210934877, -0.0011038197, -0.0336497277, -0.0354720056, -0.0358714089, -0.02435112, -0.0256117377, 0.0385424197, -0.00422181794, 0.0411884673, 0.028083045, -0.0208313782, 0.00445272308, -0.000479361974, -0.0274340156, -0.0199701656, -0.00527337193, -0.00237769797, -0.0191214345, 0.0134673808, -0.00253527495, 0.017411489, -0.0198952779, -0.0234774258, -0.00187220308, 0.00908642542, 0.00389106199, 0.00958567951, 0.0203446057, 0.0132551976, 0.0146780722, -0.00537010236, -0.0278833434, 0.0146905528, 0.000651760667, -0.00725790719, -0.0181728508, 0.00541690737, 0.00819400884, -0.00118260819, -0.0272093508, -0.0443587303, 0.00477099745, 0.00244946568, -0.0218174066, -0.00969801191, 0.000849512115, 0.019046545, -0.0203695688, -0.00577574642, -0.00629372243, -0.0180230737, 0.00163817767, -0.00247598859, -0.0224914, -0.0162632037, -0.0196331684, -0.00310629676, -0.028083045, 0.0257365517, 0.0050143837, -0.00790069718, 0.011077201, 0.0271843877, -0.0163880177, 0.0113455504, 0.000287656207, 0.00404707901, 0.00713933446, 0.0221294407, 0.00937973708, 0.0241014939, -0.000487162819, 0.00111864135, 0.00439655688, -0.00808167644, -0.0148652922, -0.0169996042, -0.0107152425, -0.0103657637, -0.0201074611, -0.00221856055, -0.0246381927, 0.0114890859, -0.0131054213, 0.00329819764, 0.0152771771, 0.00483028404, -0.00113424298, -0.00175207, -0.00212963088, -0.0282328222, -0.014341075, -0.0199327208, -0.0237145722, -0.00254463591, 0.016725013, 0.0169996042, -0.00615642779, 0.0170120858, 0.0146281468, 0.0574641526, -0.0116513437, 0.0241763815, -0.0104531338, 0.0232278, -0.00972921494, 0.0061408258, 0.020931229, 0.0178732984, -0.0116763059, 0.00411572633, 0.0357216336, -0.0176860783, 0.0192712098, -0.00746384962, 0.00499878218, -0.0252622589, 0.00379433157, 0.00687098503, 0.0253246669, -0.0160510205, 0.00279426295, 0.00894913077, -0.0135921938, -0.00574142253, 0.0096480865, -0.0093610147, 0.0138293393, 0.00468986854, -0.000435677241, 0.007357758, -0.0116763059, 0.00987899117, 0.00652774796, 0.00893664919, -0.00162569631, 0.0170869734, -0.00224820385, -0.00471171085, 0.00143535563, -0.0145532582, -0.00157499081, 0.0114454012, 0.0141413733, -0.0142661873, -0.00108275737, -0.00819400884, -0.00665880227, 0.00451512961, 0.0208937861, 0.021305671, -0.0278833434, 0.0184599217, 0.00544187, -0.00444024149, 0.00824393425, 0.0152147701, -0.00916131306, -0.0139416717, -0.00728911068, 0.00868702214, -0.00474915514, 0.0287071131, 0.00692715123, -0.0100287674, 0.0205567889, -0.00180199544, -0.0252997037, -0.0125063164, -0.0125812041, -0.00598480925, 0.0220795143, -0.00285510952, 0.0262108427, 3.52256939e-05, 0.019957684, -0.0184474401, 0.00117168704, -0.0141663365, -0.00768227316, -0.00643413793, 0.00727038831, -0.00811912, 0.00923620164, 0.00775092049, -0.0084373951, -0.00710813096, -0.00798182562, 0.0275089033, 0.00413756864, -0.0324015953, -0.0162756853, -0.00883679837, -0.0189591758, 0.00469298894, -0.0299053229, 0.01336753, 0.027958231, 0.00441527879, 0.0151648447, 0.00130820181, 0.00845611747, 0.00921747927, -0.00841867272, -0.00144471671, -0.0215677787, 0.0183725525, -0.00327947573, -0.0117574353, 0.00433415, -0.0135672316, -0.0025243538, 0.0040252367, 0.0224414729, 0.00458065653, -0.00266944943, 0.0136296377, 0.00684602233, 0.0216676295, -0.0129182013, -0.0309537575, -0.00795686245, 0.0126498519, -0.00619387161, -0.00949206948, -0.00493325479, -0.00146967941, 0.00681481883, -0.00468674814, 0.00175050984, 0.00108119729, -0.011170811, 0.00113346288, 0.0270595737, -0.0290316287, -0.00626563933, -0.0124314278, 0.0109087033, 0.00396595, -0.00362895359, -0.0130305327, 0.0221294407, 0.000447768572, -0.0162881669, -0.00987899117, 0.00640293444, -0.0107339639, -0.0151773263, -0.00924868323, -0.00908018462, -0.0193211362, -0.0154768787, 0.000656441203, 1.14209261e-05, 0.0177360028, 0.000530847581, -0.00879935455, 0.0229157656, 0.00484900596, 0.0116638253, 0.00632492593, 0.00345733482, 0.0181104448, 0.0106715569, 0.00406892132, 0.00222012075, 0.0106403539, 0.00895537157, 0.000246506737, 0.00383801619, -0.0113330688, -0.0143285943, 0.00760738505, -0.00746384962, -0.0186596233, 0.03771865, 0.0244384911, -0.0264355075, -0.0323766321, 0.0182102956, -0.00975417811, -0.00493013486, 0.0277335681, 0.0246506725, 0.0223790668, 0.0152397323, -0.00722670369, 0.0022060792, 0.00791941863, -0.00747633073, -0.0154144717, 0.00854348671, 0.00669000531, -0.0309537575, -0.00201573852, 0.0447830968, 0.00382241444, -0.0056509329, 0.0124501502, 0.00575390412, 0.000811287959, -0.0370945819, -0.000836250663, -0.0128682759, -0.00431854837, 0.0199826472, -0.0150150685, -0.00193460984, 0.00299084443, 0.00911138766, 0.0217549987, -0.00142677478, 0.00790069718, 0.00836874731, -0.0358714089, -0.00107105612, 0.0152896577, 0.00642789714, 0.0139416717, -0.0288568903, -0.00699579855, -0.000501984439, 0.0055978871, 0.0011030396, -0.0139167095, -0.00753249694, 0.024475934, 0.00455569383, 0.0205942336, 0.0212682262, -0.0241389386, 0.0212307815, 0.0126373703, 0.00238549872, 0.000400573452, -0.00817528646, -0.00838747, -0.0110397572, -0.0187594742, 0.0303796139, 0.0189591758, 0.01983287, 0.00969177112, -0.0135921938, -0.00660887687, 4.93647276e-05, -0.0133924922, -0.0273591261, 0.000737960043, 0.00418749405, 0.00156172935, -0.00682730041, 0.0334749892, -0.0230780225, 0.0200325716, 0.00870574452, 0.0145407766, 0.00168966327, 0.00412508752, -0.0267100967, -0.00469298894, 0.0164379422, 0.00486148708, 0.003937867, 0.0100287674, 0.0126186488, -0.0204694197, 0.00179263437, -0.0197579823, 0.00816280488, -0.00500502298, 0.0119820992, -0.00770723587, 0.00632492593, -0.00523280725, -0.0111146457, -0.00311253755, 0.0171618611, -0.0278084558, -0.00534201926, -0.000592084194, -0.0024666274, 0.0105966693, -0.0500502288, -0.0168123841, -0.0323516689, -0.00342613156, -0.00532329734, -0.0106029101, 0.00796310324, -0.00550427707, 0.00523280725, 0.0264355075, -0.0176236704, -0.00465554465, 0.0486772805, 0.00691466965, -0.029555846, -0.00575078372, 0.0108774994, 0.0259861778, 0.000449328742, 0.00791941863, -0.0118323229, 0.00533265807, -0.0335249156, 0.0313781239, -0.0125375194, -0.00109913922, 0.013617157, -0.00479908055, -0.0218798127, 0.00690218853, -0.00248847, 0.00920499861, -0.0254869238, 0.0233401302, 0.000217448585, 0.0278583802, 0.0221793652, -0.0283825975, -0.016412979, 0.0211059693, 0.00119196926, -0.0137045262, -0.0216301866, -0.00149776239, -0.00573206181, -0.00606281729, 0.000438017509, 0.00445896341, -0.0178108923, -0.0279083066, -0.0123440586, 0.0319023393, -0.0248004496, 0.00918003544, 0.0094234217, 0.0212931894, -0.0122192455, -0.0296556968, -0.00249003014, -0.016662607, 0.00414693, -0.0235398319, -0.00128323911, 0.0141663365, 0.0188468434, -0.00413132785, 0.0163256098, 0.00634052744, 0.0178732984, -0.00795686245, -0.017099455, -0.000828449847, 0.00301736733, -0.0175363012, 0.00427174335, 0.00917379465, 0.00159761321, -0.0147030344, -0.0130554959, -0.00367575861, -0.0286821499, -0.00385361793, 0.00685226312, 0.0297305845, -0.0192088038, 0.0061720293, 0.0236396827, 0.00468986854, -0.00020984275, -0.0022326021, -0.00141039293, 0.0204194952, -0.00150712347, 0.00721422257, 0.0329507738, -0.0179357044, -0.0193460975, 0.00735151721, -0.0230905041, -0.00210154802, 0.00580070913, 0.00245414604, 0.0256117377, -0.00631244434, 0.00577886682, 0.0163380913, 0.0331255123, 0.0207065661, -0.00140805275, 0.000711047091, 0.013180309, -0.0320521146, 0.0128682759, -0.0427611172, -0.0222417712, -0.0250251144, 0.0291564427, -0.0182727017, 0.0349477902, -0.0121381162, 0.00755745964, -0.000139342606, 0.00452761119, -0.0126373703, -0.0148278484, 0.012393984, -0.0125812041, 0.00352286198, 0.00465242472, -0.0309787188, -0.00266476907, -0.0311784204, -0.00244010473, 0.00262420462, 0.0131428652, 0.00148840144, 0.0288818516, -0.0262358058, 0.0206691213, -0.0173116382, -0.000302087748, -0.00404707901, -0.00943590328, 0.00644037826, -0.0148278484, -0.000410714536, -0.0356217846, 0.00361023145, -0.00527961273, 0.0022279215, -0.0166501254, -0.00374752632, 0.0248753373, 0.0113143474, -0.00705196476, -0.0039971536, 0.0100162858, 0.00711437175, -0.00370072131, -0.0227784701, -0.00978538115, -0.00583191263, -0.0256616622, 0.0268848352, 0.0193960238, -0.0195707623, 0.0121505978, 0.00121225149, 0.00209062663, -0.003937867, -0.00988523196, 0.000163330216, -0.0022622454, -0.0135048246, -0.00634052744, 0.00849980209, -0.00431854837, -0.00369760091, 0.00796934403, 0.016849827, 0.0137294885, 0.0107402047, -0.0128058689, -0.00265696808, 0.0182102956, 0.00201885891, 0.0103782453, -0.00857469, 0.00652150717, -0.0164254606, 0.0213306323, 0.00124969555, 0.00450576842, 0.0152522139, 0.000455959438, 0.00337620615, 0.00463370234, -0.00321706897, 0.0122566894, -0.0107526863, 0.0270845369, -0.00846859813, 0.0369448066, -0.00255399686, -0.00821897108, -0.00414380943, 0.0276586786, 0.0133800106, -0.00553548, -0.0190091021, 0.00382553483, 0.00207970547, 0.000219398789, -0.0116326213, -0.0189466942, -0.00198453525, 0.0122130048, -0.0270346124, -0.00660887687, 0.00485836668, 0.0115514928, 0.0255368501, 0.00519224303, -0.00092049985, 0.00522344653, -0.00105935486, -0.0209187493, -0.00712061208, 0.00551987858, 0.00810663868, -0.000702856225, 0.00596920727, -0.00713933446, 0.0224539544, 0.0332752876, 0.0201573856, 0.0228034332, 0.0345983133, -0.0151024377, -0.00966056809, -0.00299708499, -0.00945462566, -0.00344485347, -0.00805047341, 0.0266102459, 0.0113517912, 0.0190964714, -0.00864333753, 0.00117012684, -0.00485524675, -0.00926116388, -0.00599417, -0.00483964477, -0.00043684736, 0.00489893137, 0.00410948554, -0.00921123847, -0.00459625851, 0.0144159636, -0.0136795631, -0.00650278525, 0.00424054, 0.0158263557, 0.00557916518, 0.00927364547, 0.0050736703, -0.00750129344, -0.00613146508, -0.0188842881, 3.10510245e-06, 0.0205068644, 0.00742640533, 0.0293561444, -0.000335241348, 0.00590056, -0.0153146209, 0.0288568903, -0.00652150717, -0.00222480134, -0.0158388373, -0.0154893594, -0.00942966249, -0.014465889, -0.0105529847, -0.0164005, 0.00885552075, 0.00519224303, 0.00525777, 0.0123690218, 0.0120881908, -0.00263668597, 0.0104406523, 0.0196206886, 0.00668376498, 0.0043809549, -0.0108962217, -0.00174738944, -0.00540442625, -0.00884928, -0.0160510205, -0.000264448667, 0.00864333753, -0.00889296457, 0.0222417712, 6.85986888e-05, -0.00262732501, 0.0322268531, 0.0297555476, -0.0073889615, 0.00984778814, 0.01336753, -0.00952951331, -0.0136670824, -0.0139042279, 0.0180854816, 0.026984686, 0.0156016918, -0.00550739747, -0.017760966, 0.0100287674, 0.0189591758, -0.022341622, -0.0246881172, -0.0210435614, -0.00798806641, 0.000445818354, 0.00450576842, 0.0140914479, 0.00277710124, -0.0084311543, -0.0234774258, 0.00191432761, -0.00737648, 0.023627203, -0.00270377332, -0.0125936856, -0.00248847, -0.0019736141, 0.000671262795, 0.000532797771, 0.0276087541, -0.00516103953, 0.016662607, 0.0369448066, -0.0196456499, -0.00703324284, 0.00205006241, 0.000719238, -0.00523904804, 0.0312533081, 0.0102035068, -0.00241982238, -0.0279831942, -0.0133800106, -0.0117511945, -0.0267350599, -0.00682730041, 0.00546683278, 0.00516416, 0.0127933873, -0.0249003, -0.00537946355, -0.0139541533, 0.00159215264, -0.00627812091, -0.00231373101, -0.000189170518, 0.0198203903, 0.0071955, 0.00974793732, -0.00246350723, -0.0289317779, -0.0331504755, 0.00515167881, 0.0170744918, 0.048602391, -0.000900997722, -0.00841243193, -0.00218111649, 0.015876282, 0.00102971168, 0.014715516, 0.00498318, -9.08311e-05, 0.00412508752, -0.023028098, 0.00275837909, -0.0124501502, -0.00804423261, 0.00686474424, -0.00437783496, -0.0408389904, 0.0161383897, 0.0027802214, -0.0169871226, -0.0208563413, -0.00795062259, 0.0157889128, -0.0119384145, 0.0163880177, -0.0111520896, 0.0139167095, -0.0140415225, 0.00842491351, 0.00502998568, 0.014528296, 0.0144908512, -0.0192462467, -0.00102269091, -0.0292063672, 0.0268848352, 0.0153895086, -0.0542689264, -0.0175238196, 0.0152771771, -0.0139416717, -0.0109773502, 0.0278583802, -0.0101098968, 0.0121193947, -0.0130430143, -0.0185597725, 0.0106403539, -0.00522344653, 0.029431032, 0.0105654653, 0.0185972173, -0.00508927181, -0.00598792918, -0.019957684, 0.00177235215, -0.0122005232, -0.0166750886, -0.000967304921, 0.00353222294, 0.019108953, 0.00211558933, 0.00373816537, 0.028332673, 0.00675865309, 0.0187469926, 0.00210934877, -0.0173990075, 0.00263668597, -0.0146031836, 0.00621571392, -0.0184474401, -0.0166875701, 0.0335249156, 0.0104094492, 0.0017083853, -2.4207e-05, 0.00264760712, 0.00954823568, 0.019957684, -0.0108899809, 0.0151149193, -0.0110522388, -0.00470859045, 0.0118760075, 0.00623755623, 0.00356030604, 0.0177734476, 0.00784453098, -0.0158263557, 0.00999756437, -0.00300644594, -0.0116638253, 0.00764482887, 0.0140789663, -0.0210310798, 0.00871198438, -0.0121568386, 0.00694587315, 0.0245882664, 0.0152022885, -0.0116139, -0.00553236, -0.00981658418, -0.0221169591, -0.0025477563, 0.0165752377, 0.000965744723, 0.013305123, 0.011170811, 0.015876282, 0.00608466, 0.00873694755, 0.0158638, -0.0062562786, 0.00854348671, 0.014715516, 0.0177360028, 0.00156250945, -0.00615642779, -0.00315934257, -0.00158825226, 0.00549179548, -0.0424116403, 7.9763653e-05, 0.00662135798, 0.0132926414, -0.00871198438, 0.00129494048, 0.0173241179, 0.0130055705, 0.00161165476, -0.0161633529, -0.0144783705, 0.0151648447, -0.0044901669, -0.0190091021, 0.0102409506, -0.018734511, -0.00554172089, -0.00324827223, -0.00231685117, 0.0210061185, 0.0021779961, -0.0184724033, 0.0170120858, 0.0187719557, 0.0123565402, -0.0136795631, -0.000511345454, 0.0157764312, 0.00715181557, 0.00583191263, -0.00300176558, -0.0137794139, 0.000861993467, 0.0148652922, -0.00327011454, 0.00632492593, -0.0033075586, 0.00346045522, -0.0274839401, -0.00143223535, -0.00778212398, -0.00200637756, 0.0177859291, -0.0030704129, -0.0293311812, 0.0147529598, -0.00976665877, -0.00973545574, 0.00733903609, -0.00226692576, -0.00200481736, -0.00588495797, -0.0144159636, -0.0090427408, -0.00579446834, -0.00532329734, 0.00547307357, -0.0112831434, 0.019296173, -0.023502389, 0.0145407766, -0.00499254139, -0.00242294278, -0.016787421, 0.0236521643, 0.0329008475, 0.0326761827, 0.00957319792, 0.00177079206, 0.0147279976, -0.000836250663, -0.00168498268, 0.00451512961, 0.0132551976, 0.00458689732, 0.00806919485, -0.0177110415, -0.0210310798, -0.00402211631, 0.00996636, -0.0115452521, -0.00654022908, 0.00498318, -0.00138074975, -0.0324015953, 0.00561036821, 0.0067212088, 0.00315778237, 0.00636549, -0.000376585842, 0.00378185022, 0.0197330192, 0.00183163863, 0.0161009468, 0.00357590779, -0.00949206948, 0.00813784264, -0.0287570395, 0.011170811, 0.00801302865, -0.011389235, 0.015501841, 0.00652774796, 0.00511423452, -0.00854348671, 0.0203695688, 0.0298803598, 0.000865113805, -0.0112706618, -0.00737023912, 0.0118822483, 0.013242716, -0.00598168885, 0.00582879223, -0.00163973786, 0.00882431678, 0.000750831445, -0.0104780961, 0.0119508961, 0.00415629055, 0.0128058689, 0.00956695713, -0.0184848849, -0.00761986617, -0.000512125553, 0.00216863514, 0.0153271025, 4.25389862e-06, 0.00389106199, 0.00687098503, 0.0112269772, -0.0205817521, 0.00319522643, -0.00795686245, -0.00889296457, -0.00483028404, -0.00316402316, 0.000446208403, -0.0102721537, 0.0318024904, -0.00179731497, 0.00972297415, -0.00371008227, -0.00783204939, -0.016412979, -0.00257115881, -0.00750753423, 0.000909578637, 0.00994763896, 0.0118760075, 0.0129681267, -0.00972921494, -0.000331145915, 0.0228908025, 0.00780708669, -0.020394532, 7.264538e-05, 0.0131179029, 0.00910514779, -0.0107714077, -0.0103907268, 0.0179856308, -0.0105904285, 0.0061720293, 0.000502764538, -8.9709727e-05, -0.0232902057, 0.00346981618, -0.004989421, -0.0174239688, -0.00330131804, 0.0103595238, -0.0125687234, -0.0146156652, -0.00988523196, -0.0214804094, -0.00856844895, 0.000542938884, -0.0125375194, -0.0045244908, -0.0045213704, 0.0209811553, -0.00236989697, 0.0212807078, -0.000847171876, 0.00167250133, 0.00339492806, -0.0177360028, -0.00169434375, 0.00700828, 0.00507991109, 0.0187969189, -0.0354470424, -0.0134548992, 0.00193460984, 0.00933605246, -0.00481156167, -0.0128183505, -0.0222168099, -0.0122629302, -0.0150150685, 0.00955447648, -0.00946086552, 0.015751468, 0.00386609929, -0.00610026158, -0.020144904, 0.00486460747, 0.000545279123, 0.00894913077, 0.0020250997, -0.00733903609, 0.00156953023, -0.0144284451, 0.00265540788, -0.00101176975, -0.0142911496, 0.0186596233, -0.0107402047, 0.00671496801, 0.0073015918, -0.0116825467, -0.0172617119, 0.00149230182, -0.0273341648, -0.0214554463, -0.0204569381, 0.00102347101, -0.0146031836, -0.0137045262, -0.00598480925, -0.00833130348, -0.0182477385, -0.00549179548, -0.0178108923, 0.00732031371, 0.0201698672, 0.0218548495, 0.0152522139, -0.0108587779, 0.0019954564, 0.00563533092, 0.0145657398, 0.000871354481, -0.00645286, -0.0112269772, 0.00934853405, -0.00155860907, 0.00800678786, -0.0116201397, -0.0228283964, 0.0131054213, -0.0116638253, 0.00287539186, -0.0143036311, -0.000353768351, 0.00958567951, 0.00786949322, 0.0247754864, 0.00119274936, 0.0103595238, -0.0117823975, 0.00747633073, -0.0172492303, -0.00521096494, -0.000783594965, -0.00899905618, 0.025886327, 0.000768773374, -0.00551363779, 0.0225787684, 0.0011287824, -0.00643413793, -0.0256367, 0.00752625614, -0.0220171083, 0.00366951805, 0.00541378697, 0.032825958, -0.00887424219, 0.00144627679, -0.0180979632, 0.0045213704, -0.02259125, -0.0118822483, -0.0157140233, -0.00495197717, -0.023564795, 0.00600665156, 0.0114141982, 0.00103283196, -0.00573518174, -0.00662135798, 0.00952951331, 0.00170994538, 0.00533889886, -0.00275213853, 0.0061158631, -0.0139791155, 0.0148403291, 0.00294247898, 0.00520160422, -0.0229282472, -0.016787421, 0.00216395478, -0.00344173331, -0.00405643973, 0.0254245177, 0.0236771274, 0.0126935365, 0.0118884891, 0.0218049251, -0.0310536083, -0.00979162194, 0.016188316, 0.00750129344, 0.00712685287, 0.0384176075, 0.0055666836, 0.00748257153, 0.00803799182, -0.00314998161, -0.00030618321, -0.0124501502, 0.010353283, 0.0128183505, 0.0102534322, -7.61070041e-05, 0.0264105443, 0.00442776037, 0.00127777853, -0.00628748164, -0.00649654446, -0.0253870729, -0.011514049, 0.0170245655, -0.00269597233, 0.0100974152, -0.00291595631, 0.00110616, -0.0200450532, 0.0183600709, -0.0265103951, -0.0238893107, -0.00450888881, 0.00411884673, -0.028332673, -0.0220295899, 0.0241888631, -0.0079443818, 0.0310536083, -0.00576014444, 0.0172242671, -0.0183475893, -0.0116638253, -0.00967929, -0.015626654, -0.0408389904, 0.00831258111, -0.00224352325, -0.00209842762, 0.00239017932, 0.00141195313, 0.0296057705, 0.00185192085, 0.0031281393, 0.00370072131, 0.0155767296, -0.0144284451, 0.018073, 0.0141912987, 0.00156718993, -0.00924868323, -0.0242887139, -0.00202353951, -0.0202946812, 0.000972765498, -0.0119134523, 0.00188000384, 0.0193585791, 0.0129306819, 0.00224976405, 0.0199202411, -0.0161508713, -0.00748881232, 0.0056197294, -0.00701452047, -0.00276462, -1.029346e-05, 0.0121568386, 0.00121849217, -0.00276305969, 0.0181354061, 0.0147030344, -0.00425614137, -0.0105717061, -0.00750753423, -0.0197829455, -0.0022856479, 0.00316090276, 0.00310941716, -0.00526401075, -0.00416877214, -0.000815968495, -0.0212307815, 0.00109289854, 0.0062032328, 0.00881807599, -0.000594424491, 0.00624379702, 0.00911762845, -0.00310941716, 0.0221668836, -0.0143036311, 0.00417189253, -0.0239641983, -0.0248004496, -0.0149901053, -0.00688970694, 0.0116014183, 0.00986651, -0.00778212398, -0.00497694, 0.0324764811, 0.000336216472, -0.0264355075, -0.000462980213, -0.0144534074, -0.00635612942, 0.00919875782, -0.00214523263, -0.029431032, 0.0167374946, 0.0197704639, 0.000909578637, -0.000200286726, 0.00107807689, -0.00571333943, -0.00664008, 0.00789445639, 0.0142786689, -0.000112234673, -0.00468674814, -0.00216707494, 0.00951703172, -0.0325513706, -0.00235273503, -0.0117137507, -0.00298928423, 0.00203758106, -0.0102534322, -0.00643413793, -0.0194334667, 0.000396478, 0.021056043, -0.0175612643, 0.00342613156, -0.00766979158, 0.000140220203, -0.00751377502, -0.00555108208, 0.0102222282, -0.0170869734, 0.0149651431, 0.0142037803, -0.00812536106, 0.00593800377, 0.00230749021, 0.0148777738, -0.0102347098, 0.00535450084, -0.0123440586, 0.00121147139, -0.0148028852, 0.00536074117, 0.00173646829, 0.0109523879, 0.00288319262, 0.000737960043, -0.0206566397, 0.00560724828, -0.0137170078, -0.0100474898, 0.0214055218, 0.00130508153, -0.00137684937, 0.00825017504, 0.00885552075, -0.0227285456, -0.0226661377, -0.0152771771, 0.00117558753, 0.0106590763, 0.024912782, 0.00468362775, 0.0152771771, -0.00108431757, -0.0134798614, 0.00732655451, -0.0215303358, 0.0228783209, 0.0212183017, 0.00404707901, -0.0012621769, 0.0104281707, 0.0141039295, 0.0072454256, 0.0112269772, -0.0204943828, 0.0245508216, -0.00154534762, 0.0039721909, 0.014777923, -0.00538570387, -0.0118884891, 0.0289567411, -0.00378809078, 0.0096480865, 0.00986651, -0.022154402, 0.00785701163, 0.00615954818, 0.00463370234, -0.0264604688, 0.012768425, 0.0153520647, -0.00394722819, -0.00833130348, 0.0114266789, -0.0190715082, 0.0220670328, -0.00496757869, 0.012144357, -0.0150400307, -0.00386921968, 0.00288319262, -0.0028410682, 0.00733903609, -0.0146655906, 0.00695835473, 0.00712685287, -0.0253621098, -0.00706444588, 0.0157265048, -0.00991019513, 0.00884928, -0.00157499081, -0.0162382405, -0.0328758843, 0.00803799182, 0.00910514779, 0.0137794139, -0.0367700681, 0.0127122588, -0.0142911496, 0.00238393852, -0.00158279168, -0.0286322255, 0.0127933873, -0.00163661747, -0.00201885891, -0.0108150933, 0.0278583802, -0.0192587283, -0.0079319, 0.00871198438, 0.0119633777, 0.0160635021, 0.013617157, 0.00415005, -3.86141874e-05, -0.0045525739, -0.0179357044, 0.00169590395, -0.0104468931, -0.0189716574, -0.0131678283, 0.0330506228, -0.00689594774, 0.0115327705, 0.0119384145, -0.00310629676, -0.00480220094, -0.00816904567, 0.00532329734, 0.00348853832, -0.00654022908, 0.0162632037, 0.0138792647, 0.0111458488, -0.0131303836, -0.00461186, 0.00675865309, 0.00853724591, -0.0134798614, 0.00300644594, -0.00254307571, 0.00233713351, 0.0079319, -0.00955447648, 0.00227472675, 0.00466490583, -0.0161009468, -0.0083188219, 0.012612408, -0.00751377502, 0.00390042295, 0.013305123, -0.0271344632, -0.0112082558, 0.0275588278, -0.00541066658, 0.00573518174, 0.0108525371, 0.000899437524, -0.00608153967, -0.0200450532, -0.00846235733, -0.0101598222, 0.00568525633, 0.00588183803, -0.0115452521, -0.0101223774, 0.00813784264, -0.00780084589, -0.00924244244, 0.00126685738, 0.00161321496, -0.0328509212, -0.00367575861, 0.00534201926, -0.0217050742, 0.0231903549, 0.0205692705, 0.000150068779, -0.00890544616, 0.00493949559, -0.0132177537, 0.0105654653, 0.00523592765, -0.0106403539, 0.0158513188, -0.00134564599, 0.00574766332, 0.018073, -0.00765106967, -0.00772595778, -0.0141663365, -0.00389418239, 0.0246381927, 0.0147529598, -0.0105966693, 0.0210810062, -0.0191339143, -0.01336753, -0.00417813333, 0.0140040787, 0.0136795631, -0.00650902605, 0.0284824483, -0.0201074611, 0.00680233771, -0.0181853324, 0.00857469, 0.0262857303, -0.000514465792, -0.00803175103, -0.00201105815, 0.0102721537, -0.00839995127, -0.0124751125, 0.00120835099, -0.0101161366, -0.0129930889, -0.0090427408, -7.04513877e-05, 0.00180667592, -0.00205630297, -0.0050393464, 0.0233276505, 0.0224289931, -0.00147279969, 0.0109711094, 0.000692715112, -0.0275588278, -0.000455569418, -0.000390627363, 0.00572270062, 0.0019424106, -0.0133550484, 0.00799430721, -0.00521720573, 0.00972921494, -0.00768227316, -0.00894289, 0.0203196444, 0.00310785696, -0.0113018658, 0.0156640988, 0.00329819764, -0.00585063454, -0.0171868242, 0.00322018913, 0.0237270538, 0.00796310324, -0.000745760859, -0.0267350599, 0.00828137808, -0.00543250935, 0.0117699159, -0.0127247395, -0.00147514, 0.0164005, -0.00458377693, 0.00147826027, 0.00650902605, 0.0067524123, 0.00492701447, -0.0066650426, -0.0210435614, 0.00787573401, 0.00468674814, -0.00114126375, 0.00125515612, 0.0139915971, 0.00692091044, -0.0050736703, 0.0123378178, -0.0131927906, -0.0257365517, -0.00426238216, -0.0379433148, -0.0115889367, 0.00991019513, -0.000845611678, -0.00841867272, -0.0156765804, -0.00796934403, -0.0141164111, -0.00166626065, -0.00143301545, 0.00341365021, 0.00560724828, 0.00900529698, -0.0189966206, 0.00209374703, 0.0238269046, -7.61557603e-05, 0.0150400307, -0.00603161426, 0.00973545574, -0.0115015674, 0.00999756437, -0.0152397323, -0.0337246172, -0.0188468434, -0.0210435614, 0.0120070623, 0.00653398875, -0.00979786273, 0.0051017534, -0.0178982615, -0.0111770518, -0.0164504237, -0.0319023393, 0.00664632069, 0.0110647203, -0.011108405, 0.0188218802, -0.00454321271, -0.0145033328, -0.00463682273, -0.0143161127, -0.0374440588, -0.0118011199, -0.00325139263, -0.0017863937, -0.00287383166, 0.003098496, 0.00556980399, 0.0243885648, -0.0137794139, 0.0115514928, 0.0312782712, -0.0195582807, 0.0028145453, -0.0164629053, -0.00446832459, 0.00299084443, 0.0294060688, -0.00147123949, 0.0161383897, -0.00934229326, -0.00198297505, -0.0103220791, -0.0262857303, 0.020207312, -0.000908018497, 0.00229500886, 0.000448158593, -0.0088680014, 3.73709263e-05, 0.0194334667, 0.0107152425, -0.0120569877, -0.0162756853, -0.0116575845, 0.00638421252, 0.000761362549, -0.00789445639, -0.0243261587, 0.0139167095, -0.0208313782, 0.0209561922, -0.00464306353, -0.0183226261, -0.00878687296, -0.00177703274, -0.0171244163, -0.00196113274, -0.00292531727, 0.0108088525, -0.017099455, -0.00409388402, 0.00889296457, 0.009098907, -0.0266851336, 0.00172242674, 0.0117511945, 0.0131303836, -0.0102659129, -0.020519346, 0.0185472909, 0.00812536106, 0.00407828204, 0.00328259589, 0.00790693704, 0.00168966327, 0.00992267579, -0.0159012452, 0.00194709119, -0.00633116672, 0.00303608924, -0.00803175103, 0.0174614135, -0.00853100512, 0.00352598238, 0.00897409301, -0.0112144966, 0.0314779729, -0.0118697677, 0.00387233985, -0.003937867, -0.0187469926, 0.0176611152, 0.000325490284, 0.00125281583, 0.0088680014, -0.0176985599, -0.0145033328, 0.00283482741, -0.00536698196, 0.00979786273, -0.019608207, 0.0143161127, 0.0213306323, 0.0215802602, 0.0022606852, 0.00742016453, 0.0399403311, -0.0045775366, -0.00225132424, 0.0153395832, -0.00859965291, 0.00705820555, 0.000291556615, 0.0208688229, 0.0124626318, 0.000940782, -0.00517040072, -0.00745760882, -0.0045213704, 0.00894289, -0.0223291423, 0.00642165635, -0.0128557943, -0.0195707623, 0.00689594774, 0.00132068316, -0.0132302344, -0.0150525123, 0.0124064656, -0.0302548017, 0.000320419756, -0.00690218853, -0.0244135279, 0.00356966723, 0.00220919959, -0.0254619606, 0.00906770304, 0.000319054612, 0.00285198935, 0.0186970681, 0.0154519156, -0.0267100967, -0.00728287, 0.00919875782, 0.00659639528, 0.00658391416, -0.00570397871, -0.00393162621, -0.0210685246, -0.00880559534, -0.00825641491, -0.00457441621, -0.017099455, -0.0134548992, -0.0315528624, 0.00239954027, -0.0243136771, -0.0167374946, 0.0159012452, -0.0158138741, 0.0161259081, 0.0134424176, -0.000203992124, -0.00292843767, -0.00529833464, 0.0129806073, 0.00104765361, -0.00240266067, 0.0280081574, 0.00610026158, -0.00126451708, -0.0217175558, 0.0104156891, 0.0243636016, -0.00269597233, 0.000322564971, 0.000425146107, 0.00116466626, 0.00253527495, -0.00379433157, -0.0145033328, 0.00734527642, 0.00348229753, 0.0306042787, -0.00491765328, 0.00405956, 0.016849827, -0.00778212398, 0.0104406523, -0.00686474424, -0.0148652922, 0.0036227128, -0.0067274496, -0.0104156891, 0.0291065164, 0.0137544516, -0.0125812041, 0.00530145504, 0.00905522238, 0.00752001535, -0.000701686076, -0.021430485, 0.00424678065, 0.0088118352, 0.00213275128, 0.0260610655, 0.00922372, -0.0227535069, -0.0103470422, -0.0120195439, -0.0114204381, 0.014341075, 0.00510799373, 0.0105280215, -0.0111208856, -0.0132801598, 0.00565717369, -0.00581631064, 0.0154768787, -0.00981658418, 0.0109711094, -0.00419373484, 0.00861837436, -0.00808167644, -0.00579134794, -0.0325513706, -0.0269347616, 0.0365454033, 0.00583815295, -0.000961844285, -0.0235398319, -0.00791941863, 0.00710189, -0.0103220791, 0.000364299514, -0.0128557943, 0.00579446834, -0.0072454256, 0.00697083585, 0.0100849336, -0.0132551976, -0.0143285943, 0.00271781464, 0.0172617119, 0.00884928, -0.00145095738, -0.0117449537, -0.0209936369, -0.022716064, 0.028457487, -0.00594736496, -0.00704572396, 0.00188624451, -0.0105717061, -0.00156718993, -0.014715516, -0.00580382952, 0.0180355553, 0.010290876, -0.00246194704, -0.016725013, -0.0132926414, -0.0137669332, 0.00304857059, 0.0179107431, 0.00529833464, 0.0283825975, -0.0223541036, 0.00440279767, -0.0230780225, 0.00093766168, -0.0137419701, -0.00436535338, -0.0122754108, 0.00502062449, 0.0204194952, 0.0251249652, 0.0119571369, 0.0223166607, 0.00450264849, 0.0275089033, -0.00599729037, -0.0164379422, -0.00771347666, 0.00603161426, -0.00588807836, -0.0160385389, 0.00427174335, 0.0040252367, 0.000440357748, 0.00340116885, -0.0030969358, -0.00146655901, -0.0171993058, 0.00913635083, 0.00520472461, 0.0288319271, 0.0350226797, -0.00713309366, 0.00159917341, -0.0181603692, -0.0100225266, -0.0114454012, -0.0315279, 0.000219788839, -0.0239142738, -0.0242887139, -0.0244634524, -0.0194833931, 0.0094171809, 0.00176455139, 0.015876282, -0.0055916463, 0.0217799619, 0.00322018913, -0.00161633524, 0.00584127335, -0.012393984, 0.0299053229, 0.00899905618, 0.0102534322, -0.0111583304, 0.00391914509, 0.0203570873, -0.0193960238, 0.017760966, 0.00684602233, 0.0126498519, 0.0234774258, -0.00756994076, -0.00961064268, -0.00650278525, 0.0113143474, 0.0240515675, -0.0126373703, 0.00542314816, 0.0204694197, -0.00418437365, 0.0113829942, -0.000449328742, -0.00179575477, 0.000922840089, 0.00169278355, -0.0277585294, 0.0107589271, 0.00914259162, -0.0136421192, -0.0227535069, -0.00327635533, 0.000777354289, 4.61956324e-06, 0.0146156652, 0.0313531607, -0.011077201, 0.00521096494, 0.00349165872, -0.0200325716, 0.0112082558, 0.00408764323, 0.0174863767, -0.00428734487, -0.00597544806, -0.00613458548, -0.00918003544, 0.00177547254, -0.0137045262, -0.0150899561, -0.00532641774, 0.0160635021, -0.0193585791, 0.0119508961, -0.00918627623, 0.00470859045, -0.0203446057, -0.0182227753, -0.0167749394, -0.00869950373, -0.00803175103, 0.00520784454, -0.00801302865, -0.00836250652, 0.00464306353, -0.00304857059, -0.0214554463, 0.00638733245, 0.000855752791, -0.0121568386, -0.00133316452, 0.02435112, 0.0232028365, 0.0170495287, 0.00138465012, -0.0066962461, -0.00775092049, 0.0205567889, 0.00295652053, 0.00260392227, 0.0088680014, -0.00775092049, -0.00439343648, 0.00355718588, -0.00288787321, -0.00564469211, 0.0198203903, 0.00485524675, -0.0062562786, -0.0165128298, 0.00990395434, 0.0198203903, 0.0229532085, 0.00949831, 0.0212307815, -0.00772595778, 0.0031281393, 0.00351038063, 0.00990395434, 0.0241888631, -0.00817528646, -0.0131927906, 0.000711047091, -0.00401899591, 0.0214055218, 0.0104219299, 0.0156765804, 0.00503622601, 0.0317775272, 0.0329507738, -0.00119664974, -0.00803799182, -0.00571021903, -0.0115452521]
28 Dec, 2020
Internet Administration 28 Dec, 2020 Internet Administration is basically a group that coordinates and guides the Internet with its growth and development. It makes sure that all the protocols are followed by the devices and network for the smooth functioning of the internetwork. Some of the organizations that overlook the growth and development of the internet are – Internet Society (ISOC) : An international, non-profit organization, ISOC formed to provide support for the Internet standard process accomplishes its goals by maintaining and supporting other Internet administrative bodies such as IAB, IETF, IRTF, and IANA. It also promotes research and other activities relating to the Internet. Internet Architecture Board (IAB) : The technical advisor to the ISOC, the IAB’s main purpose is to oversee the continuing development of the TCP/IP Protocol Suite and to serve in a technical advisory capacity to research members of the Internet community, which is accomplished by its two components, the Internet Engineering Task Force (IETF) and the Internet Research Task Force (IRTF). Additionally, IAB is also the editorial manager of the RFCs and is the external liaison between the Internet and the other standards, organizations, and forums. Internet Engineering Task Force (IETF) : Managed by the Internet Engineering Steering Group (IESG), the IETF is a forum of working groups responsible for identifying operational problems, proposing solutions to them, and developing and reviewing specifications intended as Internet Standards. The groups are collected into areas, like, applications, routing, security, protocols, and network management, and each area concentrates on a specific topic. Internet Research Task Force (IRTF) : Managed by the Internet Research Steering Group (IRSG), the IRTF is a forum of working groups focusing on long-term research topics related to Internet protocol, technology, applications, and architecture. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System/Introduction of System Call/How much Stack size required for BIOS interrupt call?/Difference between Interrupt and Polling/Difference between Difference Engine and Analytical Engine/Difference Between Store‑and‑Forward Switching and Cut‑Through Switching/Difference between Message and Packet Switching/How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?/Types of Node Devices in a Computer Network: End devices and Intermediary Devices/Types of Errors in Computer Network/Difference between Storage Area Network (SAN) and Network Attached Storage (NAS)/Difference Between Network Security and Network Administration/Internet Administration
https://www.geeksforgeeks.org/internet-administration?ref=asr10
PHP
Internet Administration
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, Difference between Difference Engine and Analytical Engine, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Difference between Interrupt and Polling, Types of Node Devices in a Computer Network: End devices and Intermediary Devices, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, Types of Errors in Computer Network, jQWidgets jqxToolBar close Event, How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, Difference between Message and Packet Switching, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, Difference Between Network Security and Network Administration, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, Introduction of System Call, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Difference Between Store‑and‑Forward Switching and Cut‑Through Switching, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, Difference between Storage Area Network (SAN) and Network Attached Storage (NAS), jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, Internet Administration, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How much Stack size required for BIOS interrupt call?, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0264628753, 0.00121441158, -0.0156602617, -0.00946817454, 0.00253120088, 0.0240199324, -0.00742062, 0.00442342367, -0.016959399, -0.0226784311, 0.0129207745, -0.0186539274, 0.0104425279, -0.0420525335, 0.0094540529, 0.00453639217, -0.0196282808, -0.00852912292, 0.0067533995, -0.0186256841, 0.0442554168, 0.00879742391, -0.0678940788, -0.0233844835, -0.0208426919, 0.00680282293, 0.0250507705, 0.00199460052, -0.0308968909, 0.043295186, 0.00618855702, -0.000434222748, 0.0175666045, -0.0348507874, -0.023003215, -0.0203625765, -0.0425326489, -0.02228304, -0.0327326283, -0.0220147409, 0.0050835833, 0.0333257131, 0.0186821688, 0.0243588369, -0.0267029349, 0.027874982, -0.0189363491, -0.0322807543, 0.0404144898, -0.0303885322, 0.00367500726, -0.053490594, 0.0271689296, 0.0246836226, -0.00174395158, 0.0415724143, 0.0457804948, 0.014657666, 0.00173247815, -0.0260110013, 0.0789649934, 0.0106472829, -0.0299649, -0.0440294817, 0.0279032253, 0.0296259951, -0.0267170556, -0.00235292246, 0.00900923926, 0.000231232436, -0.0308686476, 0.0150106922, -0.0539707094, -0.0208285712, -0.0122288428, -0.0332127437, 0.0307556801, -0.00306427106, 0.0520784892, 0.0176513307, -0.00667573372, -0.000758565962, 0.0264487546, -0.0305862278, -0.013506799, 0.0314899758, -0.0261804555, -0.0650698692, 0.076592654, -0.00482234359, -0.00778070698, 0.0133726485, 0.0014888898, -0.0274937134, 0.00912220776, -0.0120593896, 0.00472702645, 0.00898805819, 0.000384357729, 0.00434222771, 0.00107937888, -0.0180608425, -0.0253473129, 0.00582846953, 0.0140010361, 0.0149118444, 0.00586730242, 0.00669691525, -0.0107390704, 0.0943852, 0.0184844751, 0.0082537625, 0.00612148177, 0.045102682, -0.0556652397, 0.00193458598, -0.0193741024, -0.0185127165, -0.0243447162, 0.0401603095, -0.0109508857, 0.00643567555, -0.0250648912, 0.0290046688, -0.0627540126, 0.0364605896, -0.00999771431, -0.0299366582, 0.02146402, -0.0349072739, -0.0193741024, 0.00813373365, 0.0138104018, -0.00127530866, -0.00586730242, -0.0455827974, -0.00909396634, -0.00768185966, 0.0557217225, -0.0586306639, -0.0250648912, 0.0238646, -0.0215063822, 0.0158155933, 0.00962350611, 0.0294000581, 0.0171994567, 0.0362911373, -0.0329303257, 0.00451168045, 0.00977177732, 0.0360934436, -0.00687695853, 0.0179902371, 0.0204614233, -0.00670397561, -0.00529539958, 0.0190493166, -0.0249519218, 0.022819642, -0.00964468718, -0.00526009686, -0.010237772, 0.0227631573, 0.0340882502, -0.0188516229, -0.0139445523, -0.0123065086, -0.0456110388, 0.0150954183, 0.00987062417, 0.031292282, 0.00620267773, -0.028100919, -0.0185409579, -0.02651936, -0.0149824498, 0.00155331718, -0.0165357664, 0.0229608528, -0.0272818971, -0.00792897772, -0.0244435631, -0.000359425234, 0.00805606786, 0.0153495977, 0.0453286208, 0.0115157282, -0.0256862175, -0.00780188851, 0.00465289084, -0.0202072449, 0.056371294, 0.0138033414, -0.000637213059, -0.00544720097, -0.0205461495, 0.0368842222, 0.0173265468, -0.0655217394, 0.00170953141, 0.00795016, 0.0128148664, 0.0421372578, 0.014883603, 0.00679929275, -0.011162702, -0.0491977893, 0.026745297, 0.0120946923, -0.0414029621, -0.0369689502, 0.0410358161, -0.00476585934, -0.0222547986, -0.0138104018, -0.00366088608, -0.023455089, 0.0108379172, -0.0132031962, 0.00291953026, 0.0161121357, 0.0116922418, 0.0275925621, -0.0398778878, -0.0497343913, -0.00122765009, -0.0453286208, -0.0327043869, 0.0056660776, -0.00763243577, 0.0619067512, 0.0128007457, 0.0152507508, -0.0581223033, -0.00336963916, 0.0337493457, 0.00555663928, -0.0521349721, 0.00506240176, -0.0261239707, 0.0282986145, -0.0187527742, 0.00809843093, -0.027197171, -0.00850794185, 0.00893157348, 0.0267594177, 0.012539506, 0.01578735, 0.0258556698, 0.0232009105, 0.00264946488, 0.0150106922, 0.0177501794, 0.0162109826, 0.0277620144, 0.0185550805, 0.00603675516, 0.0234268475, 0.0127513222, 0.027465472, 0.0175101217, 0.0470513888, 0.00393271679, -0.038296327, 0.0534341112, -0.00406686682, 0.00409510871, -0.0122429635, -0.00347731239, -0.00425397092, -0.0120593896, 0.0180608425, -0.0129066538, 0.0518525504, 0.0294283, 0.0269853547, 0.056201838, 0.0257709436, -0.0350767262, -0.0421937443, 0.0131467115, -0.0234127268, -0.0367712528, 0.00819021743, -0.0452721342, 0.00410216954, -0.0428150706, -0.00861385, -0.00243058824, 0.0233279988, 0.0207156017, -0.00284186448, 0.0260533653, -0.0113250939, 0.000234983352, 0.00151183654, -0.0107673118, 0.0276349243, 0.0318288803, -0.0183432642, -0.0337211043, -0.0306709539, -0.0745027363, -0.0011332155, -0.0443401448, 0.000480557501, 0.0210403875, -0.0434646383, -0.00229114294, -0.0415441729, -0.0475879908, -0.0327326283, 0.0195435546, -0.0186398067, 0.00903748162, -0.037477307, 0.0164792836, -0.0528127849, 0.0295130257, 0.00940462947, -0.0311228279, 0.0612289384, -0.0263075437, -0.0225231, 0.0177360587, 0.0109438254, -0.0247259848, -0.00542248925, -0.0149118444, -0.0186256841, 0.000293674035, -0.013711554, 0.0157591086, -0.0112121254, -0.0123276897, 0.0412617512, 0.0147847552, 0.0302755646, -0.00030602995, -0.059308473, -0.00747004338, 0.0352461785, -0.0243588369, 0.0323089957, -0.0268300232, -0.00138562953, -0.0128713511, 0.00272536557, 0.000939050864, -0.00241293712, 0.0189928319, 0.00683812564, 0.0285245515, -0.00142711017, -0.0039574285, -0.0484352522, 0.0124689005, 0.0146011813, 0.0550439134, -0.0193599798, -0.00217464403, -0.00834555, -0.0322242714, -0.013485617, -0.0154625662, 0.0146435443, 0.0414876901, -0.00785131194, -0.000725028454, -0.0171570946, 0.0200942755, 0.0229043681, 0.00643920572, -0.0294000581, -0.04518741, -0.00607558852, -0.0116993021, 0.0126665952, 0.0386352353, -0.000184235774, -0.0310945846, 0.0436905771, -0.0283409785, -0.0255450066, 0.0228761248, -0.0172983054, 0.00920693483, 0.0351332091, -0.0276631676, 0.037477307, -0.0273666251, -0.0187245328, -0.016549889, -0.0156320184, -0.0498473607, -0.0422502272, -0.000554251834, -0.0402450375, 0.0212239604, 0.000454521796, -0.0310663432, 0.0151942661, -0.0539707094, -0.0128007457, -0.0115439706, -0.0187951382, -0.027917346, -0.0159709249, -0.0412052684, 0.00537659554, -0.00348790316, -0.0134008909, 0.027874982, 0.042758584, -0.0390871093, 0.0451591648, 0.00483646477, 0.00714525906, 0.016098015, 0.013732736, -0.0243729576, 0.00587789342, 0.0377597287, 0.0339470394, 0.0113321552, -0.0226219464, 0.037929181, 0.0314334929, 0.0372513682, 0.00749828573, 0.0108873416, 0.00951053761, 0.0122500239, -0.042391438, 0.0030536803, 0.0229043681, -0.0133726485, 0.0217605606, -0.020701481, 0.0120452689, 0.00560606271, 0.00270418404, -0.0414029621, -0.0353309065, -0.0261522122, -0.00756889116, -0.00826082285, 0.0421937443, -0.0254461598, -0.0298236888, 0.0262086969, 0.0109014623, 0.0451591648, 0.0130902277, 0.0294000581, -0.0373643376, -0.0110073704, 0.00914339, 0.0137892198, -0.0280161928, -0.023455089, 0.00241646729, 0.0328738391, 0.0159003194, -0.0210121442, -0.0240764152, 0.00983532146, 0.00852912292, 0.0421090163, -0.0221841931, 0.0353591479, 0.0489436127, 0.0390588678, 0.0185127165, -0.0197977331, 0.0102165909, -0.00983532146, -0.0185268372, -0.00145535229, 0.0537447743, 0.0210403875, 0.00267594191, -0.0196706429, 0.0281715244, 0.00500944769, 0.0469666645, -0.020927418, -0.0211815983, 0.0162109826, 0.02187353, 0.00443048403, -0.0263216663, -0.0238363575, -0.0322242714, -0.0207297243, 0.00440577231, -0.0432387032, 0.00802076515, -0.0559476614, 0.00572962221, -0.00219759066, 0.0178349055, -0.00560253253, 0.0160415303, 0.013485617, 0.0601557381, 0.00587789342, 0.00828200486, -0.00316311861, 0.0453851037, -0.000644714863, 0.0341729783, 0.0338623151, 0.0331845023, 0.00206520571, 0.00150389341, 0.0196847655, 0.0203202125, -0.0215628669, 0.0402167924, 0.00374561246, -0.0205461495, -0.0246553794, 0.00499532698, 0.0234833322, 0.0109650074, -0.0358110219, 0.0183715057, -0.0101742279, -0.0277761351, 0.00763949612, -0.0115863336, -0.0250084065, 0.016281588, -0.0108449785, -0.00244647451, -0.0143470019, -0.0227066725, -0.0131114088, 0.0218452886, -0.00683812564, 0.00894569512, -0.0161262564, 0.0303885322, -0.000901983061, 0.022777278, 0.00361852301, -0.00178190193, 0.0142834578, -0.0277902558, -0.021689957, 0.0117769679, -0.00926341861, -0.00461758813, 0.0204049386, -0.0193741024, 0.00822552, 0.00642861472, 0.00965174846, 0.0177784208, 0.0173265468, -0.00810549129, -0.0182161741, -0.00353379664, -0.00152684015, 0.0260816067, -0.00993416924, 0.00332904118, 0.0190069545, -0.00795722, -0.0130831664, 0.00556723, 0.0228337627, 0.00664043101, 0.0169029143, -0.00571550103, 0.0112615498, -0.0125959897, -0.000774452172, -0.0239352062, 0.0229467303, 0.0159426834, 0.00529892975, 0.0275925621, 0.0121441158, 0.0052812784, -0.000861384964, -0.0272677764, 0.0264063925, -0.0139092496, -0.0179196317, 0.000926694891, -0.00171129662, 0.00252590561, -0.0260957293, 0.0207297243, -0.0236527845, -0.0410640575, 0.0161827412, 0.0417701118, 0.00441989349, 0.0267594177, 0.00108379172, 0.0443683863, 0.0288493354, -0.0128925322, 0.00353909191, 0.0183997471, 0.0110991569, 0.0179337524, 0.0142199127, 0.0373643376, -0.0115722129, -0.0198259763, 0.0255167652, 0.0254037958, -0.0391718335, -0.00447637774, 0.0255026445, -0.00595202902, -0.00747004338, 0.0386352353, -0.00692285225, -0.00361146242, -0.0104072252, -0.0158579554, -0.012518324, 0.00680988375, 0.00618502637, -0.00796428, -0.00741355913, 0.0023776344, 0.0174818784, 0.0158155933, 0.0117628472, -0.0176513307, -0.0262228176, 0.0193599798, -0.0331280194, 0.0340600088, -0.00682753511, 0.0907137245, 0.00465642102, 0.0346813351, 0.00954584, 0.00437753042, 0.0211815983, 0.00414100243, -0.000320592313, 0.0119534815, -0.0293435734, -0.00505887158, -0.0336363763, 0.0129137142, -0.00702169957, -0.017496, 0.045639284, 0.0198683385, -0.00595202902, -0.0180749632, 0.0148694813, -0.000769156788, -0.00639684265, -0.0126171717, 0.00755477, 0.0107884938, 0.00375973363, 0.0270277187, -0.0123276897, -0.0082749445, 0.0477292, 0.0222406778, -0.00240411144, -0.00446931692, -0.0342012197, 0.0329303257, 0.0108661596, -0.0220006201, -0.0199107025, 0.00823964179, 0.0134432539, -0.0134361936, -0.0134997386, 0.0149683291, -0.0149824498, 0.0109438254, 0.0129984403, -0.0399343707, -0.00871269684, 0.0279314667, 0.00542601943, -0.0198259763, 0.00582140917, -0.0187951382, 0.0037385521, -0.0063686003, 0.0310098585, -0.0347943045, 0.00550015504, 0.00972941425, 0.00642508455, -0.0122853266, -0.0292870887, 0.0231726673, 0.00593437767, -0.0195576753, -0.0483505279, -0.0134220729, -0.0235539358, -0.00446578674, -0.0231444258, 0.0140645811, 0.020927418, 0.0327043869, -0.00546132214, -0.0313770063, 0.00685224682, 0.000927577494, 0.0137539171, -0.00593084749, 0.0108732199, -0.0258133076, -0.00802076515, -0.0151660237, 0.00646744808, 0.0249095596, -0.0325066932, 0.0036961888, -0.0088539077, -0.00635447912, -0.0165922511, 0.0028330388, -0.0126595348, 0.0209839027, -0.00978589803, 0.0284257047, -0.00523891533, -0.0143611236, 0.0309251323, -0.0192893744, 0.0153072346, 0.00462111877, -0.00740649877, -0.022593705, 0.0106967073, 0.0108802803, -0.0159991663, -0.0269429926, -0.0100047747, -0.0410358161, -0.00643920572, -0.0297954474, -0.00412335107, -0.0226784311, 0.0208144505, -0.028100919, 0.0327326283, 0.053575322, -0.0123700527, 0.0611724555, 0.00953878, 0.0190775599, 0.0107955541, -0.0186962895, -0.029089395, -0.0209132973, 0.0185833219, 0.0194164645, -0.00735001452, 0.0144458497, 0.000995535, -0.0109720677, 0.000151470493, 0.0202778503, -5.26506119e-05, 0.00384092983, 0.00166893343, -0.00305191521, 0.0107390704, 0.0093622664, -0.00251178443, 0.0129490169, -0.0157167464, -0.0469949059, 0.022057103, -0.0118475733, 0.0127725033, 0.0154908085, 0.00476232916, 0.0335798934, 0.0179619957, 0.037844453, -0.0313487649, -0.0140010361, -0.0238646, -0.0184138697, -0.0231020618, -0.000531746366, 0.0464865454, -0.00479763187, 0.0181032047, -0.0254885219, -0.00637566112, -0.0644485429, -0.0138739469, -0.0427021, -0.050383959, 0.0069687455, 0.016775826, 0.00810549129, -0.0133585278, 0.0183856264, -0.021153355, -0.00465995166, 0.0151236607, 0.0105766775, -0.00964468718, -0.00918575283, -0.016733462, 0.0104919514, -0.00510829547, -0.00398920104, 0.00814785436, 0.0175242424, 0.0379856639, 0.0127583826, 0.0149400868, -0.00526362704, -0.0215628669, -0.0329020806, 0.000158861978, -0.00786543358, -0.033551652, -0.00978589803, 0.0142693361, 0.00939756911, 0.0158861987, 0.0309533756, -0.0126312925, 0.00739237759, 0.0214075353, -0.0141140046, 0.0183009, 0.00932696369, 0.0280303136, -0.00470231473, 0.0246695, -0.033918798, 0.0036573559, 0.0224524941, -0.0235821791, 0.00447990792, 0.0152507508, 0.0174395163, -0.0253190696, 0.00753358845, -0.000140659045, -0.0114451237, -0.0145305758, 0.0298519321, -0.0295695104, 0.0103154378, -0.0133585278, -0.00790073629, 0.00325137516, -0.0304450169, 0.0267170556, -0.00888215, 0.00510123465, 0.0038832929, 0.0184844751, 0.0446790494, -0.0122570843, 0.0292588472, 0.00613913313, 0.0217323191, 0.00294424198, 0.0157308672, 0.00543661, -0.00231761974, -0.037562035, -0.011409821, 0.0305862278, -0.00135473965, -0.028326856, 0.00183750363, 0.00622032909, -0.0170864891, 0.00453639217, -0.00109614769, 0.013033743, -0.00980708, -0.00552486675, 0.0301908366, -0.0221841931, -0.000674722134, -0.0239634477, 0.0375902764, 0.0050447504, -0.0139092496, -0.0356133282, -0.00308015733, 0.0112968525, -0.0171994567, 0.0110144308, 0.0140928235, -0.0285810363, -0.0274089873, -0.0208709352, 0.0204190612, -0.0206026342, 0.0331280194, 0.0266746916, 0.0218452886, -0.0284257047, -0.00334492722, -0.02146402, 0.0205885135, 0.00219406048, 0.0440294817, -0.01073201, -0.0220429823, 0.01578735, 0.00352497096, -0.0379009396, -0.0274513513, 0.0399626158, 0.00147653383, -0.0318853669, 0.00619561737, -0.0251354966, 0.00491060037, -0.00732177217, 0.0102307117, -0.0194164645, 0.0137468567, -0.04518741, -0.00569431949, 0.00553898793, -0.00384446, 0.0369689502, 0.00917163212, 0.0158438347, 0.0140857622, 0.0113603966, -0.0161121357, -0.00981414, -0.0198542178, -0.0190351959, 0.0115157282, 0.00360793225, -0.0294847842, -0.0105625568, -0.039736677, -0.0351332091, -0.0197553709, -0.0135350414, 0.0116569391, 0.00821139943, -0.000596615, -0.000822110742, -0.00124177116, 0.000586465467, 0.0238928422, -0.00819727872, -0.0160274096, -0.0207862072, -0.012151177, -0.00278714532, -0.0290611517, 0.00244294433, 0.010957947, -0.0252202228, -0.0229184888, 0.00530246, -0.0139092496, 0.0165781304, -0.00561312353, 0.00887509, -0.0322242714, -0.0163380727, -0.0235115737, -0.00856442563, -0.00563430507, -0.0151801454, -0.00826788321, -0.0424196795, 0.0300213844, -0.0175101217, 0.00488235848, -0.00013823199, 0.0103224991, -0.0242176261, 0.00291246967, 0.0256862175, -0.00153390074, -0.0256014913, -0.00273242616, -0.00676046, -0.0145588182, -0.0245988946, 0.0249519218, -0.00770304119, 0.00975059532, 0.0110567939, 0.0166487359, 0.0185974427, -0.00557429064, -0.00558488118, -0.0331845023, 0.0212380812, -0.017496, 0.00473761745, -0.0192470122, -0.00516831, -0.00780894887, -0.0254461598, -0.0204331819, -0.00260180631, 0.0191058014, 0.00694403378, 4.22252961e-05, 0.0157308672, 0.0193458591, 0.0114804264, 0.00803488586, -0.0220429823, -0.00886096805, 0.00618855702, -0.00762537541, -0.0115369102, 0.00905866362, -0.0380703919, 0.00317900488, -0.0245424118, -0.0535470806, -0.00557782082, 0.0104354676, 0.00524597568, -0.000829612603, 0.00850088149, 0.012744261, -0.028821094, -0.0231444258, -0.00064648, -0.00186221546, -0.0186398067, -0.00867739413, -0.0141493073, -0.0189928319, -0.00539424689, -0.00557429064, -0.021605229, 0.00037332566, -0.00779482815, -0.0040068524, 0.00782307051, 0.00422219839, 0.00101230387, -0.00119852542, 0.000307574461, -0.0274937134, -0.00225937041, 0.00978589803, 0.0244294424, 0.0205602702, 0.00595202902, -0.0120240869, 0.0266605709, -0.00269535836, -0.000700316567, -0.00571550103, 0.0112191867, 0.021647593, -0.0343141891, -0.0162533466, 0.0126877772, 0.0232150313, 0.00286657619, -0.011388639, 0.00198047934, 0.0103931036, -0.0101954089, 0.00980708, 0.0137680387, -0.0169029143, -0.012087632, -0.0266746916, -0.00873387884, 0.000702523, 0.0138810072, 0.00515065854, -0.0106684649, -0.00699698785, -0.0296259951, 0.0510900132, -0.0286516417, 0.0108802803, -0.00905160233, -0.000623974542, 0.0119676031, 0.0228478834, 0.0243305955, 0.00974353496, 0.00509770447, 0.0106402226, 0.0265758447, -0.012087632, 0.0196706429, 0.0148977237, 0.00596261956, -0.0114027597, 0.0187527742, 0.00633682823, 0.0115510309, 0.00274654711, 0.0168887936, 0.00941875, 0.0159003194, 0.015872078, 0.00220112107, -0.00420807721, -0.00219406048, -0.0121370554, -0.0112968525, 0.0192046482, -0.00841615442, 0.00209168275, 0.0302755646, 0.0249942858, -0.00214463682, 0.00023211501, -0.00525656668, -0.00786543358, 0.0416853838, -0.00951759797, -0.00895981584, 0.00725822756, -0.008366731, -0.0280161928, 0.00613207277, 0.00517537026, -0.00970117189, -0.00408451818, -0.00595908938, 0.013711554, -0.0221277084, 0.0276631676, 0.00405980647, -0.0106755253, 0.00828200486, 6.04558118e-05, 0.00582846953, -0.0107531911, 0.00391506543, 0.0057684551, -0.00555663928, -0.00955290068, 0.000898894039, 0.00105996244, -0.0097364746, 0.00888921, -0.0327608697, 0.00497414544, 0.00503416, -0.0277055297, 0.017411273, 2.24089163e-05, 0.00758301187, -0.022551341, 0.00492472155, -0.00855030492, -0.00580728799, 0.00347731239, 0.0064533269, 0.00472349627, 0.00559900235, -0.0203908179, 0.0219723769, 0.0111980047, -0.0361781679, -0.00642508455, 0.0108096758, 0.027197171, 0.0303038061, -0.0171429738, 0.0256438535, -0.0251919795, 0.00418689568, -0.0125112636, -0.00851500221, 0.034992, 0.0232150313, 0.00213404605, -0.0166487359, 0.0021905303, 0.0217040777, 0.0117204841, 0.0159144402, -0.00532364147, -0.00642861472, -0.00386917195, -0.0238646, 0.000813726394, -0.000106238949, 0.00370677956, 0.00311722513, 0.00793603901, 0.00403862447, 0.0180184785, 0.00244470942, -0.00368912821, 0.0269429926, 0.0200519133, 0.00314723235, -0.0227631573, 0.017679574, 0.0195294339, -0.0116286976, 0.0179619957, 0.00236351322, -0.0144882128, 0.0282280091, -0.00941875, -0.0172983054, -0.00110320817, 0.0298236888, 0.00702522974, 0.00727234874, 0.00190104835, 0.012355932, 0.00267064641, -6.92263129e-05, -0.0358957462, 0.0196282808, 0.0349355154, -0.00407392718, 0.0253896751, -0.0241329, -0.0110709155, 0.00176072028, -0.00552839693, -0.00389388367, -0.0157449879, -0.0072299852, 0.0134079512, -0.0186256841, 0.0158438347, -0.00452933181, 0.0150812976, -0.00299013546, -0.00907984469, 0.0139304306, -0.0143540632, 0.00157891156, 0.010463709, 0.0136056459, 0.0194164645, 0.0283409785, 0.0137821594, -0.0100259567, 0.021647593, 0.0213651713, -0.0031278159, -0.00211992487, -0.0204473026, 0.017411273, -0.0182161741, -0.00415512361, -0.00109438261, 0.0471643582, 0.016281588, -0.0297954474, -0.00743474066, -0.0107531911, -0.000513653737, -0.0280867983, -0.00253473129, 0.0254320391, -0.00344377477, -0.0103789829, 0.00401391275, 0.0103295594, 0.00853618421, 0.00229114294, -0.0110144308, 0.013033743, 0.0235256944, -0.0345966108, -0.00350025902, 0.0164369196, -0.0119252391, 0.00283480389, 0.00247648172, -0.00685224682, -0.00913632941, -0.0375337899, -0.00902336091, 0.0201225188, 0.000239616827, -0.00205638, -0.0134361936, -0.0321677849, 0.0274937134, -0.0210545082, -0.00135827, -0.0162674673, 0.0152648715, -0.00357969012, -0.0147423921, -0.0164934043, 0.0274937134, -0.00871975813, 0.0193882231, 0.00802076515, -0.011635758, -0.0156320184, -0.00814785436, -0.0105696172, -0.0159426834, -0.023455089, 0.0211392343, -0.00148712471, -0.0122500239, 0.00960232411, -0.00753358845, 0.0322525129, 0.0242317487, 0.041939564, 0.00189045758, -0.0318571217, 0.00706406264, -0.0140857622, -0.00321077718, 0.0324219652, 0.00643920572, 0.0144176073, -0.00941169, -0.00634741876, -0.0133797089, -0.000226598975, -0.0147706345, -0.0133867702, -0.0140928235, 0.00230173371, -0.00987062417, 0.000273375, 0.000423631951, -0.00837379135, -0.00389035349, -0.0121652978, -0.00851500221, -0.00257885945, -0.000566607749, -0.00373502169, 0.0257568229, 0.00556016946, -0.015335477, -0.000308898307, -0.00933402404, 0.0387199596, -0.0189222265, 0.00914339, -0.0289481841, 0.010710828, -0.0195717961, -0.00452227099, 0.0147847552, 0.0177219361, 0.0137892198, 0.0259121545, -0.0123488717, 0.0101106828, -0.0519372784, 0.000929342583, 0.0116851814, 0.0235256944, 0.025883913, -0.00999065395, -0.00652040169, -0.0148553606, 0.0153072346, -0.00419748668, 0.000232776933, -0.00344200968, -0.0179619957, 0.0123629924, 0.0386634767, -0.00291953026, -0.0212945659, 0.0350484848, 0.0223536454, -0.0121794185, -0.00773834391, -0.0039962614, 0.0235256944, 0.000738708244, 0.00614972366, 0.0101671666, -0.00431751553, -0.0178772677, 0.00846557878, -0.00164333894, 0.0375337899, -0.0180043578, 0.0212522037, 0.00531658111, 0.00150212832, -0.0156885032, 0.00693344278, 0.00850794185, 0.010710828, 0.000568372896, 0.0143258208, 0.00939050876, -0.0228620041, -0.00987768546, 0.0238504782, 0.00960232411, 0.00701110903, -0.0365453176, 0.00498473598, -0.0119393608, -0.0203484558, -0.0175666045, -0.0134361936, -0.00345966103, -0.0227913987, -0.0210686289, 0.0128854718, -0.0066686729, -0.0130055007, 0.00729353027, 0.0151236607, -0.00877624191, -0.00607558852, 0.00856442563, -0.0359239914, 0.0109861884, -0.0100471377, -0.0228055194, 0.00395389833, 0.00905160233, -0.0280444361, 0.00905160233, 0.00665455218, 0.0123700527, 0.0103507405, -0.000588671886, -0.0214075353, 0.00410216954, -0.0121017527, 0.0066686729, 0.0145446975, -0.00882566534, -0.000849911594, -0.0233421214, 0.0123488717, 0.00479763187, -0.00740649877, 0.00590613531, 0.027013598, -0.0171006098, 9.7137483e-05, 0.0305579845, 0.00198754, -0.0218170453, 0.00222406769, -0.00162480504, 0.0242458694, 0.00324608, 0.00950347725, 0.0643355697, 0.0038515206, -0.0209132973, 0.00728646945, -0.00600145292, 0.00380562712, 0.0242458694, -0.00565901678, 0.0235539358, -0.00622032909, 0.0401603095, 0.042391438, 0.00285775051, 0.00485411612, -0.00642508455, 0.0231020618, 0.0094752349, -0.00340141146, 0.00342082814, -0.0240905378, -0.0143328812, -0.0133585278, -0.00550015504, -0.0105343144, 0.0356698111, -0.0264346339, 0.0144387893, 0.00707112346, 0.00707818381, -0.0180608425, -0.0319983326, 0.00886802934, -0.00119058229, -0.00584612088, 0.0111132786, -0.0357262939, -0.0205602702, -0.0247542281, -0.00130266824, -0.0152225085, 0.0211251136, -0.00542954961, 0.0401885509, 0.0065557044, 0.00941875, -0.0171994567, -0.0067428085, -5.16025648e-05, 0.0126524745, 0.0153495977, -0.0113674579, -0.00820433907, -0.0397084355, -0.0178207848, 0.00665808236, 0.0264911186, -0.000985826831, -0.0195859168, 0.015335477, 0.0137609784, -0.0145023344, 0.00218876521, 0.0150389345, -0.00843733642, -0.0183432642, -0.0249378011, -0.0153919607, -0.0047835107, -0.0299366582, 0.0257709436, 0.0191199221, -0.00586024206, 0.0117416661, -1.03356824e-05, 0.00139357266, -0.000556016923, -0.00433869706, -0.0111980047, 0.00862091, -0.0122570843, -0.0265334807, 0.0104566487, 0.0143328812, 0.0057578641, 0.0120593896, 0.0147565128, 0.00630152551, 0.0189928319, -0.0172418207, 0.0125112636, -0.00438459078, -0.00756889116, 0.0111203389, -0.00737825641, -0.0024853074, -0.00169541035, -0.00479763187, 0.000373987597, 0.0050447504, 0.00802076515, -0.000308677671, 0.00454698317, 0.010936765, 0.000926694891, 0.0251496173, -0.0038126877, 0.00528833875, -0.0105837388, 0.0428997949, -0.0210686289, -0.00517184, 0.00689107971, 0.00237057381, 0.0186256841, -0.00103525061, -0.0047835107, 0.0191481635, 0.00109967799, 0.00826788321, 0.0102730747, -0.0264911186, -0.00775246462, 0.0094752349, -0.0148129975, 0.00359204598, 0.0134220729, 0.0134785566, -0.00195753272, 0.0181879327, -0.0361216851, 0.00152419251, -0.00127177848, -0.00403509429, -0.00635094894, 0.00769598037, 0.0130196223, -0.0145446975, 0.0117416661, -0.00384092983, 0.0139869153, 0.0118052103, 0.0322807543, -0.00155243464, 0.0241046585, -0.0145729389, 0.00477292, -0.0138739469, 0.00337669975, -0.00876918156, -0.0102448324, 0.0296542365, 0.0117063634, 0.0117204841, -0.0223818887, 0.00770304119, -0.00895981584, -0.0241329, 0.0229467303, 0.0115792733, -0.00363264396, 0.00518243108, 0.00730059063, -0.00486470712, -0.00121352903, 0.00909396634, 0.0035073196, -0.00799958315, 0.00294953748, 0.0152931139, -0.00099465251, 0.00749828573, 0.0121864788, 0.00648862962, 0.0109861884, -0.0247542281, -0.0106402226, -0.00050968217, 0.0235963, 0.0163380727, -0.00629446469, 0.0114027597, -0.0157732293, 0.00314370217, -0.0106967073, 0.00221877242, -0.0182444155, -0.000526009651, 0.00433516689, -0.00869151577, 0.000788573234, -0.0150248138, 0.0239634477, 0.00355497818, 0.0123276897, -0.0205602702, 0.00345260045, 0.00636154, 0.0260251239, -0.00269006286, -0.00193635107, 0.00504828058, -0.0147565128, -0.00156567316, -0.00199283543, 0.00103613315, -0.0174677577, -0.0107178884, -0.0106261019, -0.0148412399, 0.0275643189, -0.0131043484, 0.0143187605, 0.0128925322, 0.00122853264, -0.000426720944, -0.00327079161, 0.0124194771, 0.00955996104, -0.00783719122, -0.00608970923, 0.0137750991, 0.0279314667, 0.00112792011, 1.55828166e-05, 0.00315605802, 0.00934814475, -0.00553898793, -0.00568019832, -0.0248813163, -0.0172559414, 0.0157591086, 0.0299649, -0.00488235848, 0.0190634374, -0.0160415303, -0.00263710902, -0.00882566534, -0.0142552154, -0.0144176073, 0.010957947, 0.0140433991, -0.00223642378, 0.00265123, -0.0186821688, 0.00609323941, 0.00866327342, 0.00570844067, -0.026745297, -0.00429986417, 0.0219582561, -0.0146294236, -0.00223818887, 0.00834555, 0.000659718527, -0.000408848951, 0.00647803862, 0.0197130069, -0.00126913073, -0.0208850559, 0.00334316213, -0.00805606786, -0.0118899373, -0.00925635826, -0.0131325908, -0.00360969733, 0.00969411153, 0.00655923458, -0.00359381107, -0.00522126397, -0.00963056646, -0.00943993218, -0.010033017, 0.0158861987, -0.000489383179, -0.0167052206, 0.00735001452, 0.000733412802, -0.0218170453, -0.0184985958, -0.000695903727, -0.0176230893, 0.0349637568, -0.0131325908, 0.00495649409, 0.00026057777, 0.0100471377, 0.0231444258, 0.00184632931, -0.00372090074, -0.00160715368, 0.00640390301, -0.00571197085, -0.00777364615, -0.0193882231, 0.00440224214, -0.00186221546, -0.0125748087, -0.0342012197, -0.00269888854, -0.00109703024, -0.00737119606, -0.02372339, 0.00513300719, 0.0162674673, -0.0158014726, 0.00877624191, -0.00461405795, -0.012603051, 0.00841615442, 0.00213404605, 0.00498826616, -0.00314193708, -0.000435546594, -0.0107178884, -0.0119534815, -0.00837379135, 0.00134767918, 0.0163804349, -0.0342577025, -0.0147706345, 0.00533423247, 0.00640743319, 0.0162533466, 0.0299366582, -0.00737119606, -0.00429633399, -0.00975765567, 0.0134997386, 0.00528833875, -0.0107037676, 0.0101812882, -0.00304838503, -0.0117910895, 0.00386917195, -0.00296895392, -0.00212698546, -0.026293423, -0.0052918694, -0.0310381018, -0.0180326011, 0.0243588369, 0.00468466338, 0.015646141, -0.0135209197, 0.016055651, 0.0050447504, -0.00297071901, 0.0131749539, -0.00849382114, -0.00223112828, -0.00758301187, -0.00253649638, 0.00941169, -0.00671809679, 0.0222124364, 0.00195576763, -0.00107849634, -1.8561479e-05, 0.0144387893, -0.00561312353, 0.0109861884, -0.0241470207, 0.0177078154, 0.00584612088, -0.0039962614, -0.0130196223, -0.0104354676, -0.00190457865, 0.00633329758, 0.0114027597, 0.0122712059, 0.00514006754, 0.0204473026, 0.00642861472, 0.00448696828, 0.0105484361, -0.00853618421, 0.000540130772, -0.0248389542, 0.0148553606, 0.0116216363, 0.0134573756, -0.00994123, 0.0065557044, -0.0139939757, 0.0062556318, 0.0136338882, -0.00791485701, -0.00514359819, -0.00014562349, -0.00284892484, 0.00483646477, -0.00778776733, 0.00337140425, 0.0156178977, 0.0233279988, -0.00331492, 0.00225584023, 0.00259298063, 0.00304132444, -0.00502003869, -0.0184562318, 0.0125748087, -0.0133514674, -0.0243305955, 0.0119746635, -0.00331138982, 0.000873740937, -0.0169452783, 0.00686989818, 0.021421656, -0.00323019363, 0.0186539274, -0.0132243773, -0.0304450169, 0.0122994473, -0.00174571667, 0.0142481551, -0.0168887936, -0.0141140046, 0.0117275445, 0.000933755422, 0.00603675516, 0.0282986145, 0.0287928525, -0.0159003194, 0.0122006005, -0.00181808718, 0.0154343238, 0.0181032047, 0.00709583517, -0.000634565367, 0.00420101685, -0.0109861884, -0.0110779759, -0.0134361936, 0.0124194771, 0.00256650359, 0.0091151474, -0.0006601598, 0.00994829088, 0.0220147409, -0.0217464399, -0.00727234874, -0.0094540529, 0.0156885032, -0.00238292967, -0.000385240302, -0.0119887842, -0.00338023, -0.0173406675, -0.00791485701, 0.00173689099, 0.0097364746, -0.00831024721, -0.00211815978, -0.0069899275, -0.00917163212, 0.0140928235, -0.00743474066, 0.0175242424, 0.00780188851, 0.020066034, -0.0246412586, 0.0105625568, 0.000480557501, 0.0145446975, -0.0108802803, 0.00634035841, 0.0244294424, 0.0148977237, 0.0155472923, -0.0165922511, 0.0157026239, -0.0221277084, 0.0149118444, 0.00511182565, 0.00607558852, -0.00328491279, -0.000924929744, -0.00751240691, -0.0392565615, -0.00557429064, 0.0235256944, -0.011409821, 0.00843027607, 0.0203343332, 0.000180705509, -0.0156320184, 0.0184279904, 0.00554251811, -0.0390588678, 0.013033743, -0.0178207848, 0.00861385, -0.000845498755, 0.000961115, -0.0087409392, 0.00182514766, -0.0351614505, -0.00384799019, -0.0239352062, 0.00263357861, 0.0150248138, 0.00842321571, 0.00568019832, 0.0183715057, 0.000132605623, 0.00948935561, 0.00959526375, 0.00548956404, 0.0145870605, 0.00851500221, -0.0127795637, 0.00214110641, 0.00212169, -0.0243447162, 0.00605087634, -0.00937638711, 0.00699698785, -0.01418461, 0.00530246, 0.0314617343, 0.0231444258, -0.000282421301, -0.00988474581, 0.00712407753, -0.0143611236, -0.0114310021, -0.0149824498, 0.00719821313, 0.00114645401, 0.0110214911, 0.0245988946, -0.0250507705, -0.00695815496, 0.0273242611, -0.00812667329, 0.0173689108, -0.00867739413, -0.00409510871, 0.0256720968, 0.0082749445, 0.0310098585, 0.0215487462, 0.0069793365, 0.00715231942, 0.00350555452, -0.00644979673, 0.0143470019, -0.0173547883, -0.0150812976, 0.0159285609, 0.0212945659, 0.00435281824, 0.00319312583, -0.0194447059, -0.00419748668, 0.0250648912, -0.00294247689, 0.00567666814, 0.0198542178, -0.0162251033, -0.01325968, -0.0234692097, 0.0173830315, -0.0233703628, 0.027239535, -0.0169170368, -0.00977177732, -0.00389388367, 0.0108520389, -0.00239705085, -0.00853618421, 0.00382680865, 0.008161976, -0.00993416924, -0.0166346151, -0.00438812096, -0.000513653737, -0.00279773609, -0.00218346971, -0.0139939757, -0.016733462, -0.0146859074, 0.0247824695, 0.00916457176, 0.0301343538, 0.0155190509, 0.0123982951, 0.00105378451, -0.0158438347, 0.0166063718, 0.0282421298, -0.00691226125, 0.0207579657, -0.00985650346, -0.0129278349, 0.00577551546, 0.0123841744, -0.00673927832, 0.00222936319, -0.0151660237, -0.00633329758, -0.0143116992, -0.00258415495, 0.00683812564, 0.00903748162, 0.0103931036, -0.0251354966, -0.0272818971, -0.00712054735, -0.00513300719, 0.0137962811, 0.00781600922, -0.00168746733, -0.0108732199, -0.0225372203, 0.00989886653, 0.0294283, -0.0221983138, 0.00137150846, -0.0102871964, -0.0159285609, 0.00844439678, 0.0228902474, -0.0266040862, 0.000872858334, -0.000257930078, -0.00695462478, 0.000634124095, -0.0104495883, -0.027917346, 0.00828906521, 0.0223112833, -0.00982120074, -0.0103366198, -0.0162392259, -0.0165216457, -0.00225407514, 0.00514712837, 0.0109438254, 0.00906572398, 0.00329726865, -0.00620267773, 0.0110779759, 0.0281997677, 0.00711348653, -0.00613560295, -0.000463347445, -0.00449755928, -0.00232644542, -0.00454698317, -0.00643920572, -0.0167617053, 0.00222936319, 0.0149542084, 0.00100436073, 0.00330962474, -0.00492472155, 0.0164086781, -0.000187435071, 0.00451874081, -0.013732736, -0.0112968525, -0.0127230799, 0.0145446975, -0.0304167736, -0.00546485232, 0.0355286, -0.00115439703, 0.0136974333, 0.00995535124, 0.00103525061, 0.0171570946, 0.0182867795, -0.0261239707, -0.0161262564, -0.00114998419, -0.0145588182, 0.01510954, -0.0132173169, 0.0286940038, 0.00684518646, -0.0161686204, -0.000406642561, 0.00486117648, 0.00445872638, -0.00820433907, -0.0337493457, 0.0074771042, -0.0301343538, 0.0137821594, 0.00596261956, -0.00902336091, 0.00513300719, -0.00399979157, 0.00422925921, -0.0110356128, 0.0117628472, -0.00135562231, 0.012603051, -0.00504828058, 0.0126242321, 0.00208991766, 0.0111344596, -0.00856442563, -0.0108379172, -0.0132455593, 0.0155331716, -0.00855736528, 0.028637521, 0.00202284264, 0.00910808705, 0.00992710888, 0.00321607268, -0.00520361261, -0.0115298498, 0.0138174621, -0.0120735103, -0.00539071672, 0.0069299126, -0.00373502169, -0.00392565597, -0.00773128308, -0.0115439706, -0.000671191898, -0.0426738597, 0.00994829088, 0.00466701202, 0.00816903636, -0.000455845642, 0.00972941425, 0.00888921, -0.00191693462, 0.00281185703, 0.00877624191, -0.0239916891, -0.0127160195, -0.00164333894, 0.0082749445, 0.00466701202, 0.0170582458, -0.00912926905, -0.0155190509, 0.0170864891, -0.0201507602, -0.0167193413, -0.000714878901, 0.00531658111, -0.00852206256, -0.0128784114, 0.0166346151, -0.0173689108, -0.00503416, 0.000239396177, 0.0116639994, -0.00678164139, 0.00848676, -0.00806312822, -0.0301061105, -0.0361216851, -0.00452580117, 0.0179337524, -0.00951759797, -0.0355286, -0.00652040169, 0.0182585381, 0.00708877482, -0.014431729, -0.0169735197, 0.0245424118, -0.0125748087, 0.013711554, -0.00114557147, 0.00454698317, -0.00847969949, -0.000759007235, -0.00136003504, -0.0253473129, 0.00412335107, 0.00634388858, -0.00843027607, -0.000185118333, 0.00186221546, -0.00522479415, 0.027649045, -0.0391153507, 0.00580022763, 0.00206520571, 0.00100347819, -0.0105978595, -1.37969973e-05, 0.00263357861, 0.000210933416, -0.0134220729, 0.00231232448, 0.0126524745, -0.0162533466, 0.00725822756, -0.00835967064, -0.0189081058, -0.0282421298, -0.00930578168, -0.00990592688, -0.000240940673, -0.0267170556, -0.00830318592, -0.00897393655, 0.00111291651, 0.0142269731, 0.00349849393, -0.00340317679, -0.0117416661, -0.00795016, -0.00459993677, 0.0138598252, -0.00536953518, -0.00204225909, -0.0142410947, 0.00907984469, -0.00371384015, 0.00690873107, 0.0172700621, 0.0170864891, 4.77413341e-05, 0.0122782663, 0.0332974717, 0.0105837388, -0.0140363388, -0.000709142245, -0.0193176176, -0.00646744808, -0.00165922521, -0.0115722129, -0.0016036235, 0.01578735, 0.00558841135, 0.0221841931, 0.0122217815, -0.0110003101, 0.00146770827, 0.0195859168, 0.00225937041, 0.0214357767, 0.00465289084, 0.00443401467, -0.0144034866, 0.011614576, -0.00423984975, 0.00299543096, -0.033551652, 0.00465289084, -0.00439165113, 0.0153637193, 7.54594439e-05, -0.011840513, -0.0162109826, 0.0129490169, -0.00718762213, 0.0179761164, 0.00963056646, -0.0129701979, 0.00841615442, -0.00296718883, 0.00747004338, 0.000300734566, -0.00415865378, -2.95108202e-05, -0.0257991869, -0.00431751553, 0.00305015012, 0.00807018857, 0.00749828573, -0.00182514766, 0.000798722729, -0.00196988857, 0.00319489092, -0.0138951279, 0.0284539461, 0.0195576753, 0.0138739469, -0.0210827496, -0.0163804349, -0.0113745183, -0.00247118645, -0.00704641175, -0.0114027597, 0.00555310911, 0.00592025649, 0.00659806794, -0.00471643591, -0.021605229, -0.0251919795, -0.00457875524, -0.012581869, -0.00740649877, 0.022367768, 0.0288069732, 0.00623092, 0.00325314049, -0.0140645811, 0.0155472923, -0.0185833219, 0.0106472829, 0.020743845, -0.00542954961, 0.00431045517, -0.00308898301, 0.00104672392, -0.000171990163, 0.00766773848, -0.00642508455, 0.0129701979, 0.00560959335, 0.00401744293, 0.0292870887, 0.00651334133, 0.00907984469, 0.0134432539, 0.00128766464, -0.01233475, -0.0101389252, -0.0143611236, -0.00592731731, 0.00778070698, 0.0163521934, 0.00175542489, 0.02187353, 0.0260816067, 0.00224701455, -0.0402167924, -0.00749122491, -0.0011702833, 0.0199248232, -0.0144882128, 0.00620267773, -0.0379856639, -0.00752652762, -0.00916457176, -0.0149824498, 0.00299896114, -0.0166911, 0.00711701671, -0.0100612594, -0.00938344747, 0.00741355913, 0.02651936, -0.0241752639, 0.00238646, -0.00229467312, -0.0148412399, -0.010957947, 0.00524950586, 0.0169029143, 0.0135350414, -0.004080988, 0.0336928628, -0.0288917, 0.00118263916, 0.0105907992, -0.0153213553, 0.0154766878, 0.0122359032, -0.0117699075, -0.0110709155, 0.0208003297, -0.00385858095, -0.0120946923, 0.012786625, -0.0186539274, 0.0113039128, -0.00325843575, -0.00469525438, -0.00211109919, 0.00741355913, 0.00416218396, -0.000370457332, -0.0032831477, 0.0023776344, -0.0158579554, 0.026971234, 0.00518596126, 0.0108590992, 0.00600498309, 0.00384446, 0.0111273993, -0.00454345252, 0.00634035841, -0.0255732499, -0.005355414, 0.012377114, 0.0183715057, 0.0133655882, 0.0141069442, 0.00795016, 0.0137397964, -0.00326020084, -0.0195859168, -0.0108308569, 0.00917869247, 0.00116057508, 0.0118758157, -0.0142269731, 0.0134644359, 0.00457522506, -0.0325066932, -0.0165357664, 0.00756889116, -0.0020669708, 0.00623798044, 0.010936765, -0.0263216663, -0.00993416924, -0.00445872638, 0.0204614233, 0.0139516126, -0.00222583301, -0.00921399519, 0.00580022763, -0.00183750363, 0.000481881347, -0.0113462759, 0.0069899275, 0.0183150209, -0.0134926774, -0.0165640097, -0.00673574815, -0.0263216663, -0.00114645401, 0.0218452886, 0.00243588374, -0.0057578641, -0.0143046388, 0.0171570946, -0.0168040674, 0.0184279904, -0.0026035714, -0.0133091044, 0.012603051, -0.0132243773, -0.00189398788, -0.00845851842, -0.0113392156, -0.000226598975, -0.00821139943, -0.00646391744, -0.00362911378, 0.0129278349, -0.00201931223, 0.00869151577, -0.00383033883, 0.00288599264, -0.00307486183, 0.0123488717, -0.0124265375, 0.0100541981, -0.0197412483, -0.0102730747, 0.00346319121, -0.0185268372, 0.0143681839, 0.0129278349, 0.0204049386, -0.00473408727, -0.00547544286, 0.00469525438, 0.00404921547, 0.00747004338, 0.000293674035, 0.0030148474, -0.00913632941, 0.0119323, -0.00792191736, 0.00027425756, -0.00405980647, -0.012518324, -0.00138121669, 0.00217464403, -0.00470937509, 0.0155755347, 0.00239352044, -0.0272818971, 0.022819642, 0.0119252391, -0.017185336, 0.0279879514, 0.0044940291, -0.00868445542, 0.00775246462, 0.00917869247, -0.000489824452, -0.0152225085, -0.00903748162, 0.00531305093, 0.0116993021, 0.00129207748, -0.00596968038, -0.0177501794, 0.00205814536, 0.00274478202, 0.00290011382, 0.011840513, -0.000357880752, 0.00431751553, -0.0177925415, 0.0347660631, 0.00835261, 0.0140928235, -0.00202107755, -0.0018074963, -0.0214357767, 0.0035885158, -0.00480116205, 0.00139975059, -0.00732177217, 0.00197165366, 0.00894569512, -0.00589554477, -0.00492825173, -0.000289261196, 0.0156320184, -0.010915583, -0.0136338882, 0.00821139943, -0.00867739413, 0.0221841931, 0.00228937762, 0.00533776265, 0.0215487462, 0.00294953748, 0.0224807356, 0.00533423247, -0.0226643104, -0.00811255164, -0.00243764883, 0.0103436802, 0.00473408727, 0.00207050121, -0.00859266799, -0.00662277965, 0.00402450375, -0.0148271183, -0.00101936434, -0.011882876, 0.0131961359, -0.00535188382, -0.0177501794, -0.0268441457, -0.0022223026, 0.00272536557, 0.0114168813, 0.017453637, 0.0204896647, 0.0087409392, 0.00461052777, 0.00654864404, -0.00577551546, -0.0138033414, -0.0097364746, -0.0199389439, 0.0186398067, -0.00539071672, -0.0209415406, 0.00664043101, -0.00900923926, -0.0143328812, 0.0107178884, -0.0257850643, -0.00397861, -0.00670397561, -0.0189504698, 0.0181879327, -0.015335477, -0.0122853266, -0.0154766878, -0.00539777707, -0.0287928525, -0.0210686289, -0.00118087407, 0.00490354, 0.0177501794, 0.00238116458, -0.00622032909, 0.0297389627, 0.0129631376, -0.00523185451, 0.0435493663, -0.00706759328, -0.00051894912, -0.00370324939, -0.00987768546, 0.00560959335, 0.021647593, -0.00668632425, 0.0305297431, -0.013033743, -0.00566254696, -0.00143681839, -0.0058814236, 0.0140857622, 0.000480116229, 0.00205108477, -0.00254532206, -0.0298519321, -0.00794309936, 0.0108308569, 0.0170300044, 0.00956702139, -0.0225795824, -0.0119393608, 0.0198683385, 0.0157026239, -0.0188798644, -0.0171570946, 0.0276349243, -0.0107673118, -0.00919281319, 0.000113189162, -0.000188538281, -0.00967999, -0.00941875, -0.0131820142, -0.00537659554, -0.0139869153, 0.00539071672, -0.0246271379, 0.00196812348, 0.0318288803, -0.0113815786, 0.00690520089, 0.0117346048, 0.00148271187, 0.0168323088, 0.00241823238, -0.0143823046, -0.0124335978, -0.00475879898, 0.0273807459, 0.00365029532, -0.00620620837, 0.00761125423, 0.0152225085, 0.0022223026, 0.0137821594, -0.00413747225, 0.00383386924, 0.00254885224, 0.0285245515, 0.00989886653, -0.00311722513, 0.00674986932, -0.00746298302, -0.00150477595, -0.0105696172, 0.0140222181, -0.0164227989, -0.0141563676, 0.00755477, 0.0165357664, 0.0223112833, 0.0123206293, -0.0345966108, 0.000128523752, -0.00152330985, -0.0192187689, 0.0116216363, -0.00994123, 0.016733462, 0.0287081264, 0.0131608332, -0.0012647179, -0.0168323088, 0.0196141601, -0.0134361936, -0.00562724425, 0.00140151568, -0.0138810072, -0.012292387, 0.0193458591, 0.00170247094, -0.00984238274, -0.0028648111, -0.0130196223, -0.00946817454, -0.00700757839, 0.01233475, -0.0151942661, 0.0296824798, -0.0103224991, -0.00345789595, 0.0110779759, 0.0134361936, -0.0116498787, 0.0141351866, 0.0105131334, -0.0156178977, 0.000525127107, -0.00593437767, -0.00793603901, -0.00568725914, 0.0110426731, 0.00457522506, -0.00481175305, -0.0103436802, 0.00342259323, -0.0172983054, 0.00632270705, 0.0108167361, -0.00413394161, 0.0098494431, -0.0109650074, -0.004374, 0.00139886804, 0.000237410408, 0.000317062048, -0.010237772, -0.00285422034, -0.00211992487, 0.00657335576, -0.0217040777, 0.00196988857, 0.00164598669, -0.0332692303, -0.0111485813, -0.00422572857, -0.00342082814, 0.021421656, -0.00427162228, -0.000891833508, -0.0139657333, 0.000605440699, 0.00627328316, -0.008387913, -0.00808431, 0.0283551, 0.00133179291, 0.00983532146, -0.00443048403, -0.00639331248, -0.00212522037, -0.013280862, -0.0335798934, -0.00208638748, -0.0164086781, 0.0217323191, 0.002677707, -0.0100259567, 0.0224101301, 0.0115157282, 0.0127725033, -0.00704994192, 0.00186398055, 0.0124900825, -0.00207932689, 0.00879742391, -0.0114380624, 0.00807018857, -0.0100753801, -0.0133091044, -0.000818580505, 0.0252343435, -0.00215875776, -0.00461405795, -0.00338905561, 0.0141422469, 0.00753358845, -0.00127089582, -0.0305015016, 0.0179619957, 0.00611089077, -0.012377114, -0.00523185451, 0.0147847552, 0.0136833126, -0.0135350414, -0.016281588, 0.0164651629, 0.0092492979, 0.014883603, -0.00278538, 0.00445872638, -0.00318253506, -0.0204473026, -0.0241752639, 0.000897570222, 0.0134926774, 0.00757595152, -0.011861695, 0.00487882784, -0.0160697717, -0.020291971, -0.0109085226, -0.000409510889, 0.039369531, -0.00354262232, 0.00316841411, -0.00737825641, -0.0113392156, 0.00347731239, 0.00405627582, -0.0233421214, -0.000183904805, -0.00882566534, 0.00259651081, -0.00366088608, 0.0123276897, -0.0168181881, -0.0152648715, -0.00168570213, -0.00975059532, 0.0132455593, -0.0181032047, -0.00513300719, -0.017863147, 0.00590966595, 0.0162109826, 0.00553192711, -0.00329373847, 0.00294247689, 0.0363193788, -0.0163945574, 0.00220465125, -0.0102165909, -0.00397508, -0.00439871196, 0.0154625662, -0.0179196317, -0.0154343238, 0.000717967923, -0.0082537625, 0.0103436802, 0.00823964179, 0.000445475482, -0.0351332091, 0.00808431, -0.00721586449, 0.00025285533, -0.02146402, 0.00115439703, -0.0242176261, 0.00191869971, 0.031292282, 0.00713466806, 0.0100188954, 0.015872078, -0.0094752349, 0.0160415303, -0.00134767918, -0.0157026239, -0.00510829547, -0.00294424198, -0.00634741876, -0.0196141601, 0.0245424118, -0.000104528975, 0.0073429537, 0.00235115737, 0.00291423476, 0.00439518131, -0.00220641633, -7.4963e-05, -0.00388682308, 0.00859972835, 0.0208568126, 0.00451168045, -0.00412688125, -0.0257285815, -0.00953171868, -0.00500944769, -0.00864209235, -0.0218029246, -0.0191764068, -0.0186680481, -0.012744261, -0.00452580117, 0.00505181123, -0.0126312925, 0.0208144505, -0.0120805716, 0.0348225459, -0.000620003033, -0.0149542084, -0.0139445523, 0.0128219267, 0.00789367501, -0.0120311473, 0.0206732396, -0.00565195642, 0.0213228092, 0.000589554489, -0.00760419341, 0.00838085264, -0.00757595152, 0.00592378667, 0.0122147212, -0.00122676755, 0.0103013171, -0.0116569391, 0.0168323088, 0.0229043681, -0.026067486, 0.0112050651, 0.00758301187, -0.00340141146, 0.0134785566, -0.0226643104, -0.0138104018, 0.0208144505, -0.000231673723, 0.000132715955, 0.000978766358, -0.01325968, -0.0154484455, -0.0166346151, -0.0154202031, -0.0219300147, -0.00786543358, 0.016775826, 0.0179902371, -0.0280161928, 0.0172135793, 0.0275078341, 0.00747004338, -0.00826082285, -0.00811961293, 0.0271406882, 0.0109438254, 0.00730765145, 0.000528216071, -0.0038515206, -0.00155773, 0.00458934624, -0.0124900825, 0.016281588, 0.0269429926, -0.0101601062, -0.0118758157, -0.000166584447, -0.0050835833, -0.0179196317, -0.00672515715, -0.0139021883, -0.000262122281, -0.026971234, -0.00159832812, -0.0077665858, -0.00172541768, 0.00338905561, -0.010710828, -0.0246130172, -0.00252061, 0.0279738307, -0.00440577231, -0.00816903636, 0.0098494431, 0.0105766775, -0.00590966595, 0.0154484455, -0.00330962474, 0.00559547218, -0.00159303262, -0.00665102154, 0.00833848864, 0.00597674074, -0.0137397964, -0.00889627077, -0.00963762682, 0.00300602173, 0.00774540426, 0.0113321552, 0.00774540426, -0.00759713305, -0.0204473026, 0.0182020534, 0.00620267773, 0.00842321571, -0.00187457143, -0.00518596126, 0.0148271183, 0.00623092, -0.000122014826, -0.000784160395, 0.00597674074, 0.012355932, -0.01418461, -0.0014147542, 0.0106614046, 0.0116286976, -0.00252590561, 0.00648156879, 0.0010017131, 0.00359204598, 0.0136127071, 0.00767479884, -0.0241752639, -0.00630152551, -0.0174253937]
22 Sep, 2020
Internet Telephony Protocol | H.323 22 Sep, 2020 Internet Telephony Protocol is also called Voice Over IP . It is a real-time interactive audio/video application. As from the name Internet Telephony, it uses internet as a telephone network with additional features. To communicate between two parties, it uses packet-switched Internet. There are two different types of protocols that enable Internet Telephony. H.323 Session Initiation Protocol (SIP) H.323 : Basically, H.323 may be a standard set by ITU which allows telephones on the general public telephone network to speak to computers connected to internet. The architecture of H.323 is shown as shown as: H.323 Architecture Model At the center, there is gateway placed which connects the internet to the telephone network. Gateway translates a message from one protocol to another. It speaks H.323 protocol on Internet site and PSTN i.e. Public Switched Telephone Network protocol on telephone side. It will act as both computer and telephone. A LAN may have a gatekeeper which controls the terminals under its jurisdiction calledzone. Protocols of H.323 : To maintain audio or video communication, H.323 uses a number of protocols. The various protocols used are as shown in the following figure. H.323 Protocol Stack G.711 or G.723.1 – These protocols are used for compression. H.245 – In this, multiple compression protocols are permitted, H.245 allows the terminals to negotiate which protocol to use for compression. H.245 also negotiates bit rate. RTCP – It is used to control RTP channels. Q.931 – This protocol is required for establishing and releasing connections, providing dial tones, making ringing sounds. H.225 – This protocol enables the terminals to talk to gatekeepers. This protocol also manages PC-to-gatekeeper channel called RAS channel. This channel allows the terminals to join and leave the zone, request and return bandwidth and provide status updates. RTP – It is used for actual data transmission. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System/Introduction of System Call/How much Stack size required for BIOS interrupt call?/Difference between Interrupt and Polling/Difference between Difference Engine and Analytical Engine/Difference Between Store‑and‑Forward Switching and Cut‑Through Switching/Difference between Message and Packet Switching/How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?/Types of Node Devices in a Computer Network: End devices and Intermediary Devices/Types of Errors in Computer Network/Difference between Storage Area Network (SAN) and Network Attached Storage (NAS)/Difference Between Network Security and Network Administration/Internet Administration/Internet Telephony Protocol | H.323
https://www.geeksforgeeks.org/internet-telephony-protocol-h-323?ref=asr10
PHP
Internet Telephony Protocol | H.323
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, Difference between Difference Engine and Analytical Engine, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Difference between Interrupt and Polling, Types of Node Devices in a Computer Network: End devices and Intermediary Devices, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, Types of Errors in Computer Network, jQWidgets jqxToolBar close Event, How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, Difference between Message and Packet Switching, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, Difference Between Network Security and Network Administration, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, Introduction of System Call, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Difference Between Store‑and‑Forward Switching and Cut‑Through Switching, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, Internet Telephony Protocol | H.323, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, Difference between Storage Area Network (SAN) and Network Attached Storage (NAS), jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, Internet Administration, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How much Stack size required for BIOS interrupt call?, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0421157256, 0.00796626508, -0.0175503753, 0.0248630326, 0.00854868907, 0.0205272082, -0.00890461542, 0.00832219142, -0.00911817048, 0.0131821958, 0.00665257592, -0.0110854693, 0.0132663231, -0.0281375479, -0.0193623602, 0.0147676831, 0.00400578277, -0.0150653664, 0.000239845423, 0.00359808584, 0.0282152053, 0.0373527892, -0.0524181575, -0.0169938374, 0.0310884975, -0.0126644857, 0.0232063588, -0.00972648058, -0.0482764766, 0.000519732479, -0.000770902843, 0.0243712068, 0.00190582068, -0.0162431579, 0.0203330684, -0.0140299462, -0.0349972099, -0.0228698477, -0.01287157, -0.00975883659, -0.0280340072, 0.00889814366, 0.0155701339, 0.00654579839, -0.0304413587, 0.0079792086, 0.0216532294, 0.0193494186, 0.0198024139, -0.0147417979, -0.0193494186, -0.00938996859, 0.0106065879, 0.0600543804, 0.026416162, 0.0163725838, 0.0637818947, 0.0315285511, 0.0478364229, -0.0622805357, 0.0123344455, 0.0295353662, -0.0139393471, -0.0433323421, 0.00322112814, -0.00450084312, 0.0129492264, 0.0125156436, -0.01348635, 0.00673023239, -0.011214897, -0.020255411, -0.0117908493, -0.0143923433, 0.00652314816, -0.0209154915, 0.0270762425, 0.0654903352, 0.0579317696, -0.0061478084, -0.0435911976, 0.024422979, 0.0685448274, 0.00537447911, 0.0108848568, -0.022986332, -0.0192847047, -0.0515639335, 0.048845958, 0.0111437114, -0.00384076242, -0.021705, 0.00510591688, -0.0247465465, -0.00775918132, 0.00449113594, 0.0362656, -0.0257560816, -0.0146123702, 0.00920229871, 0.0593813583, -0.0236075837, 0.00684671709, 0.00686613144, 0.0149618248, -0.00227954262, -0.0244747493, 0.0311920382, 0.018236341, 0.0591742732, -0.0280857775, 0.0183010548, 0.0432029143, 0.0194788463, -5.49561482e-05, -0.00179257151, -0.0299236495, -0.0346089266, 0.00287490943, 0.00874930248, -0.0392942019, -0.00518033747, -0.0455326103, 0.037974041, -0.0463091768, 0.0132792667, -0.021912083, -0.00869753119, -0.00250280509, -0.0204236675, -0.0274386406, 0.000902757165, 0.0241900086, -7.94260486e-05, 0.0210060906, -0.0244618058, -0.0111695975, -0.0366797671, 0.020837836, -0.0147935683, 0.0126321288, 0.0221191682, -0.0342465304, 0.00907934271, 0.0354631469, 0.00312243961, -0.0163725838, 0.0244100355, -0.0165926106, 0.0116355363, -0.0397601426, -0.0212261174, 0.00757151144, 0.0118167354, -0.0386470668, -0.0309590697, 0.0199965555, 0.00661374768, -0.0124832867, -0.0111695975, -0.0130074685, -0.0201130416, 0.00149407925, -0.00357220019, 0.0114543382, 0.0099465074, 0.0296906792, -0.00102328649, -0.00904698577, 0.010787786, -0.0221191682, 0.0276198387, 0.0148712248, -0.00123765087, -0.0197506435, -0.0227274764, -0.0216014571, 0.035670232, -0.0275680684, 0.0132533805, -0.0304931309, -0.0147806257, -0.0291470829, -0.00419992395, 0.0108266147, 0.00548125664, 0.0624876209, -0.0258207954, 0.0175115466, -0.0217308849, 0.0063646, 0.0562750958, 0.00972000882, 0.032331, 0.0021679115, -0.0338064767, 0.0139005184, 0.0150135951, 0.0366021097, -0.0227015913, -0.0172268059, 0.00547478534, -0.026998587, 0.00086311996, -0.00714440038, -0.011797321, -0.0259372797, 0.0108848568, 0.0203330684, 0.00842573307, -0.0270244721, -0.017162092, 0.0187152233, 0.0117908493, -0.0124379871, -0.0182881132, 0.00556214899, -0.0292247403, 0.0129427547, 0.00871694554, 0.0314250067, 0.0509944521, 0.0123926876, 0.0282669757, -0.0865611434, -0.0231804736, 0.00192685262, -0.0355666913, -0.0337288193, 0.0279304646, 0.0223133098, 0.0541007146, 0.0325898565, -0.040355511, -0.0741878673, -0.0211614035, 0.0277233813, -0.00564951263, -0.0295871366, -0.00676258933, -0.0175244901, 0.0317615196, 0.017343292, 0.00289594126, -0.060313236, 0.00755209755, 0.026817387, 0.0470339693, -0.0275162961, -0.0154277636, 0.00316612143, 0.014586485, -0.00262899697, -0.00651344145, -0.0251477715, 0.0119785191, 0.0143276295, -0.00595366722, -0.0187799372, -0.0201000981, 0.00299786567, 0.0158160459, 0.0427110903, 0.0544113405, -0.00424198806, -0.0287846867, 0.0717028603, -0.013240438, -0.0247336049, -0.0218861979, 0.013331037, -0.0106454156, 0.00243485579, 0.00401872536, -0.00675611803, 0.00846456178, -0.00229248544, 0.021821484, 0.0318909474, -0.000205162884, -0.0401743092, -0.0699944198, -0.00065644033, 0.00226821774, -0.0124379871, -0.0606238618, -0.0344277285, 0.0200224407, -0.0199706703, -0.0469822, 0.000354105665, 0.0219767969, -0.0160749014, -0.0212778896, 0.027982235, 0.00973942317, -0.0265067611, 0.0252254289, 0.042322807, 0.00803745072, 0.0105742309, 0.0152983358, -0.00709910085, -0.02894, -0.0334181935, -0.0237887837, -0.00633871416, 0.0244747493, 0.00343306572, -0.0630571, 0.030829642, -0.0422969237, -0.033677049, 0.00609927299, 0.0226368774, -0.0186893381, -0.0271280147, -0.026416162, 0.00211937609, -0.0447301604, 0.0206307508, 0.0528582111, -0.0288882293, 0.0479658507, 0.0438241661, 0.0122050177, 0.0588118769, 0.0149747673, 0.0203848388, 9.45427746e-06, -0.0117584923, -0.0145347137, -0.00986237917, -0.0131821958, 0.0304672439, -0.0114672808, 0.00993356388, -0.0155701339, -0.00104836316, 0.0477587655, -0.00464968476, -0.00691143097, 0.0270762425, -0.0089758, 0.00456879241, 0.0247983187, -0.0146641415, 0.0226239357, -0.021912083, 0.0192199908, 0.000821460446, 0.00918935612, 0.010386561, 0.0199965555, 0.0198024139, -0.0119073344, -0.0115061086, -0.0299236495, 0.0109625133, -0.013667549, 0.0552914478, -0.00131288066, 0.036162056, -0.00221159332, -0.0382070132, -0.0071185152, -0.00620605098, -0.0206436943, 0.00783036649, -0.00962941, 0.0031823, -0.0308037568, 0.0113119679, 0.024422979, -0.0325898565, -0.00952586718, -0.0175115466, -0.0432029143, 0.0101471199, 0.0199836139, 0.0171362069, -0.00435847277, 0.0145347137, -0.00707321567, -0.0178868864, -0.0134086935, 0.0193494186, -0.0399154536, -0.00761681097, 0.00419021677, 0.0133569231, 0.0553432181, -0.0312955827, 0.0276974943, 0.0105871735, -0.00951292459, -0.0187669937, -0.0259113945, 0.00177477521, -0.0261961352, -0.00839984789, -0.0213167164, -0.0300271902, 0.0339359045, -0.00493118959, -0.00546831405, -0.0339876749, -0.0090534566, -0.011124298, -0.0265585333, 0.000584041816, -0.0335735045, 0.00624487922, -0.0214590877, 0.0117714358, -0.00566569064, -0.00881401636, 0.0662669, 0.0370680504, -0.00918288436, -0.00792096555, 0.00422257371, 0.0109560415, 0.00645519886, 0.0406920202, 0.0342465304, 0.00247530174, 0.00274224626, 0.0215885155, -0.0114737516, 0.0141852591, -0.0284481756, 0.0315544344, -0.00654256251, -0.0105612874, -0.0240088105, -0.011214897, 0.0199189, -0.0211225748, 0.0213426016, -0.0270762425, 0.0277233813, 0.0106001161, 0.00240249885, -0.0684412867, -0.0352560654, -0.0283705182, -0.0160231311, 0.00220026821, -0.0162431579, -0.00119558698, 0.00295741949, 0.00602808781, 0.0106389448, 0.0338323601, -0.0198153574, 0.00282799196, -0.0285776015, 0.0300530773, -0.0216144, -0.00286358455, 0.0148194544, 0.0186893381, -0.0285776015, 0.0189740788, 0.0119073344, -0.0159195885, 0.00372104207, 0.0057271691, 0.0294059385, 0.0206178091, -0.0387764946, 0.00702144438, 0.0415203571, 0.0422710367, -0.0414427, -0.0130915968, 0.0173562337, -0.0303637031, -0.0129039269, 7.18424e-05, 0.00453643547, 0.0331075676, -0.00193008827, 0.0160231311, 0.0355149172, 0.0261184797, -0.0148971109, 0.0409249887, -0.0304931309, 0.0250183456, 0.0168902948, 0.00529035088, -0.0105159879, -0.0183398835, -0.0629535615, -0.0252254289, -0.0111048836, -0.0392424315, 0.0196859296, -0.0471375138, 0.0286293738, 0.00830277707, 0.0262479074, -0.0316579789, -0.0125221154, 0.0169808939, 0.0249665733, 0.009499982, 0.00407373207, -0.0246041771, 0.0286034886, 0.0223133098, 0.0389576927, 0.00104027393, 0.0383364409, -0.0211614035, 0.00772035308, 0.0192070473, 0.000937540783, 1.57234244e-05, 0.00167932245, -0.000166132391, -0.0101406481, -0.0300789624, 0.0115255229, 0.0212390609, -0.00541330734, -0.0261573065, -0.0169550087, -0.0164631847, -0.0180163141, -0.00968765188, -0.00907934271, -0.00195273815, -0.00169226516, -0.0338064767, -0.0097847227, -0.0310108401, 0.00166799757, -0.0168773513, 0.0412615, 0.00900168624, 0.0134345796, -0.0117261354, 0.0471116267, -0.00581129687, -0.00927348342, -0.0206178091, 0.00972000882, 0.0469563156, 0.000588895346, -0.0130592398, 0.0369645059, -0.0162819847, -0.0133439805, 0.00424198806, -0.0273868684, -0.0080633359, 0.00252221944, -0.0335217342, 0.0386988372, 0.0179257151, -0.00504443888, -0.00123198843, 0.0232969578, 0.0305966716, 0.0117843784, 0.0158031043, -0.0106971869, -0.0117131928, -0.00416109571, -0.0614004284, 0.00178448227, 0.0544631109, 0.0216014571, 0.009745894, -0.0328487121, -0.00408667466, 0.00380840548, -0.0258078538, 0.0109042712, 0.0276716091, 0.0307002142, -0.0040510823, 0.00305287237, 0.00280696, 0.00517710205, 0.0025756082, -0.0181198567, 0.0249795169, 0.00859399, 0.0121532464, -0.0104124462, 0.0302860457, -0.0304931309, 0.00662021898, 0.0448078178, -0.0236852411, 0.0115125803, -0.0136546064, 0.0632641837, 0.0108201429, 0.010632473, 0.00526770111, 0.0184951965, 0.0220156256, -0.046490375, 0.0146382554, 0.0172397494, -0.0181716271, 0.0236464124, 0.0314767808, 0.0376893021, -0.0158160459, -0.00849691872, 0.0135510638, 0.0306484438, -0.0305449013, -0.0146641415, 0.0215496868, 0.00713792909, 0.0232063588, 0.0338582471, 0.0161137301, -0.00158791419, -0.00182169268, -0.0172656346, 0.00575629, -0.0149488812, -0.00536153605, 0.0107360147, 0.00347189396, 1.64059529e-05, 0.025833739, 0.00630635722, -0.012994526, -0.0334958509, 0.00431964453, 0.0284222886, -0.0303119309, 0.0244359206, -0.00715087214, 0.0814358145, -0.00943526812, 0.0509944521, 0.00858104602, 0.0488977283, 0.0266879611, 0.0273092128, -8.51896184e-05, 0.0072932425, 0.0162043292, 0.00789508, -0.0309849549, -0.000210117534, 0.0134345796, -0.0442642197, 0.0102571333, -0.0207731221, 0.00962941, -0.0160490163, 0.0241252948, 0.0108395573, -0.00689848838, -0.0206436943, 0.0195176732, 0.00335217337, 0.00198185933, 4.43137687e-05, -0.0348677821, 0.0180033725, 0.0479140766, 0.00619957969, -0.000863928872, -0.0330557972, -0.0351266377, 0.00830924883, 0.0369127356, -0.0132145528, 0.00525152264, -0.00608956628, -0.0551361367, 0.00779800955, -0.0053874217, -0.00580158969, 0.00363044278, 0.00662021898, -0.00742267, -0.0110984119, 0.0173691772, 0.010541874, 0.00239926321, -0.00415138854, 0.00430346606, -0.00219217897, 0.0114802234, -0.00451055, 0.0155313052, -0.00583071122, -0.0071185152, 0.00144230819, 0.01550542, 0.00200127345, -0.0090211, 0.0128133269, -0.000570694567, -0.050813254, -0.0630053282, -0.0274386406, -5.71933242e-07, -0.017835116, 0.0101277055, -0.0017375648, 0.0366797671, 0.0192847047, -0.0215108581, -0.00274062832, -0.00447819335, -0.032331, 0.0177056883, 0.00550067052, 0.0241641235, -0.00793390907, -0.0387506075, 0.0202165823, -0.0116355363, 0.0231157597, -0.0207342934, -0.00849691872, 0.0156089626, -0.0125609431, -0.0127033135, 0.00920229871, 0.0223780237, -0.0183528271, 0.0120108761, 0.0134475222, 0.026998587, -0.0102377189, 0.0325380862, -0.0150135951, -0.00874930248, 0.0222874228, -0.0108848568, -0.00070821133, 0.0378963873, 0.0400448814, -0.0297942217, -0.022339195, -0.0105936443, -0.00430670148, -0.00234102085, -0.0397860296, -0.00714440038, 0.00768799614, 0.000554516155, -0.0134475222, 0.00708615826, -0.021666171, -0.00154342351, 0.0590189621, 0.0132663231, 0.0205272082, 0.00669140415, 0.00399931101, -0.00916994177, 0.0207990073, 0.00979119353, 0.00596984569, 0.00419992395, 0.0305449013, 0.016424356, -0.0207213499, -0.00139619969, 0.0104124462, 0.017990429, 0.0110660549, 0.011460809, -0.0269468147, -0.0209931489, 0.00363691407, -0.0200612694, -0.000544404611, 0.00291211973, -0.0140428888, 0.0459208935, -0.00571099063, -0.000341971841, -0.0118749775, 0.0305707864, 0.0408732183, 0.0289658848, 0.030156618, -0.0139522897, -0.021666171, 0.00239926321, 0.00720264297, -0.0103995036, 0.00560421264, 0.0519263335, -0.0059116031, 0.0320980325, 0.00554597052, 0.00324216, 0.00063338608, -0.0213555451, -0.0446007326, -0.0190387927, 0.00437141536, -0.00994003564, -0.0286034886, 0.0157383904, 0.00665904721, -0.018081028, 0.000931069429, 0.0184563678, -0.0129298121, -0.0193494186, 0.0274386406, -0.00137921225, 0.0118879201, 0.0308037568, 0.00787566602, -0.0262349639, 0.0236852411, 0.0419345237, 0.00430670148, 0.014249973, 0.0250312872, -0.015660733, -0.015751332, 0.0011753639, -0.0241123512, -0.00937055424, -0.00479529053, -0.0163725838, 0.0342206433, -0.0254454557, 0.00386988372, -0.0181457419, -0.0129039269, -0.00518033747, -0.00771388179, -0.00247368403, -0.00359808584, 0.0151171377, 0.00339423749, -0.00330363819, -0.0395271741, 0.000207690769, -0.0162690431, -0.00432611583, 0.0215108581, 0.00568186911, 0.0285258312, -0.0072932425, -0.0188575927, 0.0112796109, -0.029509481, 0.0091117, 0.0389059223, -0.0324345417, 0.0238405541, 0.0176409744, -0.0100176921, -0.00511885947, -0.0152465655, 0.0148194544, 0.0158807598, -0.0140946601, 0.00830924883, 0.0307002142, -0.00312567526, -0.00982355047, -0.0169679523, -0.00865223166, 0.020902548, 0.00038181126, 0.0114155095, 0.0309072975, -0.00366603537, -0.0312179253, 0.0018831708, 0.0253807418, 0.0149229961, -0.0159195885, -0.0035042509, 0.000901948195, 0.0188834798, -0.0015943856, 0.0121791326, 0.0335735045, -0.012535058, 0.00915699918, 0.0137452055, -0.0315803215, -0.00722205732, -0.00227307132, -0.00421286654, -0.0006879883, -0.0353337191, -0.0341171026, -0.000210319762, 0.0202424675, -0.0305449013, 0.00781095261, 0.00282960967, -0.0041125603, -0.0458173528, -0.014004061, 0.015259508, -0.0269468147, 0.00351395784, 0.0184951965, 0.0109236846, -0.0119655766, -0.0202683546, -0.00907934271, 0.0270762425, 0.011124298, 0.0299236495, -0.000907610694, -0.00113734452, 0.00823806319, -0.0262479074, -0.010328318, -0.0226239357, 0.0384140946, 0.0106518874, -0.0089693293, 0.00732559897, -0.0207213499, 0.0127615565, 0.0172915198, 0.00329716667, -0.027335098, -0.00188802439, -0.0382070132, -0.0167349819, -0.00639048498, -0.00983002223, 0.00791449472, -0.00243323785, 0.0310884975, 0.00747444062, 0.00248339097, 0.0106195305, 0.00452996418, -0.00932525471, -0.0183139984, -0.00957763847, -0.00189773145, -0.0334699638, -0.000970706576, -0.0414685868, -0.0160749014, -0.0327451676, -0.000933496165, 0.0191682205, 0.0128262695, 0.0235816985, -0.00337805902, 0.00775271, 0.0129556973, 0.00482117618, 0.000482926524, -0.0288882293, -0.00687907403, -0.00955822412, 0.00243970915, -0.0102247763, 0.00228763185, -0.00426787324, 0.000378575583, -0.0396307148, 0.0280857775, -0.023232244, 0.00302375108, -0.0129880542, 0.0215238016, -0.017071493, -0.0122179603, 0.0134734074, -0.0198412426, 0.00532270782, -0.0239182115, 0.00608309451, -0.0300789624, 0.0235169847, -0.0013452376, 0.00621575816, -0.0303119309, 0.000546022493, 0.0181069132, -0.0126191862, -0.00642284192, 0.00790155213, -0.0377669595, -0.0234393291, 0.0178221725, -0.00764269661, -0.0166832116, 0.0378187299, 0.0197247583, 0.0318650603, -0.0125609431, 0.011493166, -0.0106907152, 0.012839213, 0.0103995036, -0.0495966375, -0.0253289714, -0.0170326643, 0.000474028377, -0.00356896454, -0.0132210236, -0.0173691772, -0.0176798031, 0.0219509117, -0.0174468327, 0.0443677641, -0.0100953486, 0.00598278828, 0.0149488812, 0.020902548, -0.00347189396, -0.00519328052, -0.00419992395, 0.00220673974, 0.0172009207, -0.00248015532, 0.00346542266, 0.00268400367, 0.0012570651, -0.0200742129, -0.0166055541, -0.0574140586, 7.39405414e-06, -0.0234652143, 0.0083480766, -0.0153112784, 0.0438241661, -0.00982355047, -0.0135122361, -0.00175050762, -0.00441995077, 0.00732559897, 1.57044656e-06, -0.0106842443, 0.000455423171, -0.0410544164, 0.0298459921, 0.0132792667, -0.0149229961, -0.00673023239, -0.0202165823, 0.0210578628, 0.0036498569, -0.0286034886, -0.0112343114, -0.010082406, 0.00369839207, 0.00904051401, -0.0138358045, 0.000265933166, 0.00160166586, 0.0140946601, -0.0199577268, 0.0091117, 0.0103736175, -0.000803259725, -0.0069632018, -0.0197247583, -0.00702791568, 0.0212002322, -0.04467839, -0.00709910085, -0.0128845125, 0.00193008827, -0.011797321, -0.00923465565, 0.0212520026, -0.00738384156, -0.0166314393, -0.00248015532, 0.0176021457, -0.0176409744, 0.0226627626, -0.0383364409, -0.00160490163, -0.00563656958, 0.0162043292, 0.00331172743, -0.0201777555, 0.0112019544, 0.00642284192, 0.053686548, -0.0292247403, 0.00530005805, -0.0302342754, -0.00319847837, -0.0214590877, 0.00488265418, 0.0187799372, 0.0129298121, 0.010878385, 0.02899177, 0.0104383314, -0.00125382934, 0.0332369953, -0.0129298121, 0.0443677641, -0.000527417229, 0.00904051401, -0.00200289139, 0.0293800533, -0.0257431399, 0.0100435773, 0.012166189, -0.0100953486, -0.0159713589, -0.00189126, -0.00568510499, -0.0627982467, 0.00979119353, -0.00831572, 0.0140299462, -0.0301307328, -0.00127971487, 0.00359808584, -0.0138616906, 0.0439535938, 0.00757151144, -0.0134992935, -0.0210449193, 0.00348807243, -0.0196859296, -0.0317356363, -0.0106130587, -0.0173691772, -0.0149359386, -0.00449113594, 0.0136157777, 0.00357543607, -0.0287070293, 0.00885931589, 0.00955175329, -0.0390871204, -0.00229572109, -0.0145217711, -0.0158807598, -0.00841926225, 0.0131045394, 0.0190646779, 0.0124185728, 0.00936408341, -0.00154180569, 0.0172138643, -0.0187799372, 0.0285258312, 0.00601190934, -0.00201745192, 0.0294318236, 0.01207559, -0.0176150892, 0.0188317075, -0.00319524249, -0.00332952361, 0.00399931101, -0.011493166, -0.0178868864, 0.0285776015, -0.00035592576, -0.00396371866, 0.0145088276, -0.00341041596, -0.00902757142, -0.000532270758, 0.0139522897, 0.0304931309, 0.000978795812, -0.0141593739, -0.0158160459, 0.0150653664, 0.0413650423, 0.00572069781, 0.0308814123, 0.00812157895, -0.0239052679, -0.0152077368, -0.00414491724, -0.00929936953, 0.0155183626, 0.0202165823, 0.0100500491, -0.0123732733, 0.00746149803, 0.00710557215, 0.0018103678, -0.0140687739, 0.0145476563, -0.0174727198, 0.0181457419, 0.00296227308, -0.00909875613, 0.00699555874, 0.0192717612, -0.0210319757, -0.00807627849, -0.0155830765, 0.00583394663, -0.0166443828, -0.0226627626, 0.0210578628, 0.012379745, -0.0175633188, -0.0446007326, 0.0239699818, -0.00341688725, -0.0161266718, -0.0024591235, -0.00702791568, -0.0210319757, -0.00344600854, -0.0198024139, -0.0135640074, -0.0167608671, 0.0457655825, -0.000219420137, -0.0129039269, -0.00589542463, 0.00229248544, 0.0221838821, 0.00523858, -0.0048049977, 0.00955175329, 0.00566245522, 0.0147676831, -0.0051576877, 0.0362397134, -0.0147159118, 0.009377026, -0.00611221604, 0.000111530142, 0.00984943658, -0.0241641235, -0.00693084532, -0.00109447166, -0.00187993515, 0.00125625613, 0.0409249887, -0.0119267488, 0.0118685057, -0.0239311531, 0.00904698577, -0.0131821958, 0.0137840342, 0.00157011789, 0.012748613, 0.00198671292, -0.0283964034, -0.00733207073, 0.0159325302, -0.00264841109, -0.0136287203, -0.00505091, 0.0111695975, 0.0319944881, -0.00843867566, 0.00927995518, 0.0129103977, -0.00245588762, -0.00827689189, -0.0298977625, 0.021174347, -0.0117261354, -0.00574011169, -0.0170067791, -0.0072932425, 0.0113443248, -0.00407696795, 0.0187411085, -0.0157383904, 0.0178092308, 0.0187928807, 0.0164114125, 0.0041125603, 0.00357543607, 0.0159584172, -0.0213814303, -0.00682730321, 0.0163596421, -0.000516092347, 0.000489397906, -0.00783683825, 0.00666551851, -0.0249924585, -0.00494089676, -0.00387635501, 0.000504363, 1.39159893e-05, -0.000335904944, -0.0076944679, -0.0350748636, 0.0298459921, -0.0225980505, 0.02132966, 0.0120950043, -0.0195565019, 0.000244698953, -0.00011699037, 0.0079792086, -0.00103784713, -0.0161266718, 0.0267397314, 0.00389253348, -0.00494413218, -0.0298201069, -0.0105030453, 0.00227954262, -0.0240476374, -0.0064875558, 0.0246041771, 0.0105677592, 0.00615427969, -0.00872341637, -0.0152336219, 0.0441347919, 0.0166573245, 0.00215335074, 0.0341171026, -0.027335098, -0.00439406512, -0.0133957509, -0.004520257, 0.0241123512, -0.0226757061, 0.0274127536, 0.0147676831, -0.0148065118, 0.00296874437, -0.00019757924, 0.00718970038, -0.0134734074, -0.00564304087, 0.0136804916, 0.00496354653, 0.0184175391, 0.0102312472, -0.0225980505, 0.0041190316, -0.009499982, 0.00432288, -0.00632900698, 0.0164890699, -0.0105548166, 0.0255748834, -0.00336511619, -0.0160101876, -0.0118749775, -0.0111501832, -0.00119154237, -0.0047435197, 0.000466343627, -0.00671729, 0.0133957509, 0.0011599944, 0.0211355183, 0.0198153574, 0.0117390789, 0.00486971159, 0.0101924194, 0.00265811826, 0.00182654627, -0.0168514661, 0.00508973841, 0.0112407822, 0.0345053822, -0.020164812, -0.0251477715, -0.0112019544, 0.0224168506, 0.0198412426, -0.00249471585, 0.00414491724, -0.004458779, 0.025652539, 0.0170844365, -0.0179386586, 0.0100435773, -0.0039054763, 0.0248759743, 0.041313272, 0.0325639695, -0.0301048476, 0.00702791568, 0.0106195305, -0.0131757241, -0.0010718219, 0.0253289714, -0.0192976464, -0.0107424865, 0.00574981887, -0.0256137121, 0.0514862798, -0.0245006345, 0.0367056541, 0.00523210876, 0.00470145559, 0.00145363319, -0.00230381032, 0.0176927466, 0.0160619579, -0.0101018203, 0.00162269792, 0.00992709305, 0.00719617167, -0.000162188895, 0.0249406882, -0.00360779278, -0.0156219052, -0.033314649, 0.00819923542, 0.00746796932, -0.00106049702, -0.00133714837, -0.00773976743, -0.00409314595, -0.00933172647, -0.00927348342, -0.0160360727, -0.00398313254, -0.0280340072, 0.0090922853, 0.00876224507, 0.0106389448, 0.00944174, -0.0107619008, -0.0219638553, 0.0253160279, -0.000315479643, 0.0191552769, -0.00546184229, 0.00472734123, -0.0293023959, 0.0153889358, 0.00585336098, 0.016825581, 0.004934425, -0.00688554533, -0.0190517344, 0.0201259833, -0.0182751697, -0.0132469097, 0.000196871435, 0.000623678963, 0.0125609431, -0.00261120079, 0.0183787122, 0.00637430651, -0.00519328052, 0.00768799614, 0.0144311711, -0.0246041771, -0.00162674254, 0.0121597182, -0.00790155213, -0.00407696795, -0.000927833724, -0.00706674391, 0.0287588015, 0.00785625167, -0.0154795349, 0.029664794, 0.0120108761, -0.000162593351, -0.00856810343, -0.0150912516, 0.0342206433, -0.0125480006, 0.00209510839, 0.00485029723, -0.00296065514, 0.0147547405, 0.0202812962, 0.000622465624, -0.0105289314, 0.00964235235, 0.0262090787, 0.0218732562, -0.0184951965, 0.00122470816, -0.00887872931, 0.00582747534, -0.0391906612, -0.0138487471, -0.000417403848, 0.00488589, -0.0239052679, 0.0179774854, -0.00255295844, -0.018081028, -0.0213167164, -0.031166153, -0.00118992454, -0.00420639524, -0.016579669, 0.00751974061, 0.00466586323, 0.01447, 0.020009499, -0.0120108761, -0.0112343114, 0.0256007686, -0.00315641426, 0.0207342934, -0.0147806257, -0.0216791146, -0.0125091728, -0.0337805897, -0.00632577157, 0.00191229198, 0.0223133098, -0.0243970919, 0.00254325126, -0.00141561381, -0.015414821, 0.0145735415, -0.00212422968, 0.004688513, -0.0290435422, 0.00495060347, 0.009499982, -0.0187152233, 0.00153290748, 0.0147417979, -0.000327815709, -0.0201518685, -0.00690495968, -0.0301825032, -0.00358514301, -0.035152521, 0.0189870205, 0.0205401517, 0.00204980886, 0.00131773425, -0.00384399807, 0.00856810343, -0.0335735045, -0.0167996958, -0.0162690431, 0.000259259541, -0.00629017875, -0.00357867172, -0.0125609431, -0.0055653844, 0.00879460201, 0.000843705842, -0.00470469147, 0.0197118148, 0.0381811261, 0.00313214655, -0.000509621, -0.0122826742, -0.0248242039, 0.0241123512, 0.00595690263, 0.000903566077, -0.0149359386, -0.00115594978, 0.004749991, -0.00333599513, 0.019491788, -0.00111873937, -0.0138228619, 0.00861340296, 0.0101924194, 0.00165829039, 0.00271959626, 0.013085125, -0.0024057345, 0.0627982467, -0.0029816872, 0.0221450534, 0.00448466465, 0.00415138854, -0.00764269661, -0.00355278607, -0.00660727639, 0.0102441907, 0.00972648058, 0.0145605989, 0.0110595841, -0.0288364571, -0.00673670368, 0.0250183456, -0.00869105943, 0.0105224596, 0.0331852213, 0.0201130416, 0.0201518685, -0.00349130807, -0.0153112784, -0.020747235, 0.0317097493, -0.0145217711, 0.00773976743, 0.0163596421, 0.00246883044, -0.0161137301, 0.00748738367, -0.0128974551, -0.00162916922, 0.0129686398, 0.0131692532, 0.0114996377, 0.0190258492, -0.0150653664, -0.00464968476, -0.0120302904, 0.0412356183, 0.00896285754, 0.0211096331, 0.0152336219, -0.00398313254, -0.00653609121, 0.0110401697, 0.0258725658, -0.00696967356, 0.0153759923, 0.00125787396, 0.0291470829, -0.0316838622, 0.0118426206, 0.0145347137, 0.00916347, 0.0193235334, -0.0060798591, -0.024422979, -0.00766858226, 0.00546507817, -0.0115772942, 0.0137581481, 0.0118879201, 0.0175244901, 0.0201389268, -0.00825100578, -0.0212261174, -0.00785625167, -0.00125221151, 0.00779153826, 0.0248759743, 0.00132258772, -0.00935761165, -0.0121338321, -0.00151834695, 0.0255101696, -0.00489883265, -0.00468527712, 0.0195565019, 0.0070020305, -0.00182007486, 0.0029816872, -0.00735795591, 0.00650373427, 0.0216532294, -0.0119138053, -0.00212746533, 0.00866517425, 0.0181716271, 0.00839984789, -0.000269168842, 0.00752621191, -0.0177056883, -0.0394236296, 0.0164114125, -0.011214897, -0.020009499, -0.00276489602, -0.00513827382, -0.0111954827, 0.016152557, 0.00510591688, -0.0191682205, 0.00717675732, 0.019491788, -0.0174468327, 0.0226498209, -0.000321142114, -0.00241058809, 0.00463027041, -0.01832694, 0.0055103777, 0.0377410725, 0.0255619399, 0.00574334757, 0.00314023579, 0.00155313057, 0.0124768158, 0.0086845886, -0.00908581354, -0.0287846867, 0.00232322444, 0.00743561238, 0.0193364751, 0.0013606071, 0.012839213, -0.000867164577, 0.00964882318, -0.0189093649, -0.00715087214, 0.0106130587, 0.0202036407, 0.00950645376, -0.00855516084, 0.0158678181, -0.004979725, -0.00313700014, -0.0138099194, 0.0130657107, -0.0200483277, 0.0130462963, 0.0259372797, -0.00808922201, -0.00478558335, -0.00542625, 0.0272056703, -0.0051576877, -0.0014334101, 0.00349777937, -0.0267656166, -0.000173311579, -0.000703762285, 0.00248339097, 0.0112019544, 0.00854868907, 0.00766211096, -0.0231675301, 0.00216629356, 0.000400820922, 0.0101665342, 0.0187022798, -0.00627400028, 0.00507356, -0.0181069132, -0.00623840792, -0.000549662625, 0.00520298723, -0.00812805, 0.0136028351, -0.0120950043, -0.0131563097, -0.0112019544, -0.00345247984, -0.00173432915, -0.0146641415, -0.00119720481, -0.00159519457, 0.00823806319, 0.00385370525, 0.00674964674, -0.013085125, 0.010541874, 0.00635165675, -0.0202812962, -0.00114381593, 0.0137452055, -0.0179127734, -0.0137322629, 0.00309331832, -0.00580806099, 0.0191035066, -0.000403854385, -0.009745894, -0.0295612514, -0.00314185373, -0.0069632018, -0.01137021, 0.0248759743, -0.0184175391, 0.00207245862, -0.00665904721, 0.00651344145, -0.00720264297, -0.000731670123, 0.0100047495, -0.00987532176, -0.00623193616, -0.0106260013, 0.0101018203, 0.00425493065, -0.0261055361, -0.0199318416, 0.00760386838, 0.0147417979, -0.0226886496, 0.00860693213, -0.0106583582, -0.0125868293, -0.00684671709, 0.0107230721, 0.00689201709, 0.0178868864, 0.0144311711, 0.0154924775, -0.00358837866, 0.0144570572, -0.00512856664, -0.0110854693, 0.0169291236, 0.00205628015, 0.00479852641, -0.0233746152, -0.0034201229, -0.00269371085, 0.0202424675, 0.0167479254, 0.0255231131, -0.00476616947, 0.00130479143, 0.00290726637, -0.00224395, 0.000922171283, -0.0170585513, 0.000302334665, 0.00368868513, -0.0119073344, 0.026662074, 0.00491177524, 0.000220633519, -1.78721239e-05, -0.000855030725, 0.000800024, 0.00808922201, 0.00281504914, 0.0160360727, 0.00167446886, -0.0102830185, -0.0116355363, 0.00604750216, 0.00657491945, 0.000607905036, -0.00674964674, 0.00165829039, -0.0138358045, 0.00890461542, -0.00793390907, -0.00400578277, 0.0168385245, -0.000781418814, -0.0101341773, -0.0145476563, -0.00715087214, 0.0110272272, 0.0199836139, 0.00342983, 0.0180551428, -0.00622546487, -0.00984943658, 0.00555567723, 0.0147288544, 0.0171232652, 0.0111890119, -0.0151171377, -0.0128521556, 0.0128262695, -0.00632900698, 0.0162690431, 0.00862634555, -0.0171362069, -0.00418374548, 0.00687907403, -0.0063710711, -0.00636136392, -0.0223133098, -0.00389253348, -0.00441347947, -0.0383364409, 0.0126127144, 0.00312405732, -0.00397342583, -0.0261184797, 0.00187831733, -0.0218732562, 0.00477911206, 0.0195306167, 0.00172138633, -0.00316935708, 0.0031272932, -0.00701497309, 0.00702144438, 0.00239764526, 0.00930584, -0.00472734123, -0.000244698953, -0.00482441159, -0.00984296482, 0.00935761165, 0.00386664807, -0.0222097673, -0.00184272474, -0.0156736765, 0.00119235122, -0.00385370525, 0.00309493626, -0.00188478862, -0.010632473, -0.0145735415, 0.00532270782, -0.00484059, 0.00407696795, 0.0189740788, -0.00369192078, -0.000968279841, -0.0140817175, -0.0148194544, 0.0235946421, -0.0303119309, 0.0110789984, -0.00185404962, 0.0191035066, -0.00885931589, -0.00403490383, 0.0036272069, -0.018999964, -0.00495383935, -0.0002535971, -0.037999928, -0.00664610462, -0.0114219813, 0.0227274764, 0.00499590347, 0.0116290655, 0.0039896043, 0.00851633213, 0.00812805, -8.9082554e-05, 0.00289432355, 0.00224395, 0.00243323785, 0.0119849909, 0.00814099237, 0.00653932663, -0.00169711874, 0.00386017654, -0.00814746413, 0.0133828083, -0.0141982017, 0.0307778716, -0.0145735415, 0.00871047378, -0.0139264036, -0.0219250266, -0.0139264036, -0.0204236675, -0.00109770743, 0.014495885, -0.00267267879, 0.0179257151, 0.0120691191, 0.0020223055, 0.00676258933, 0.0231545884, -0.0162043292, -0.0220026821, 0.00255619409, -0.000329838018, -0.00078465452, 0.01137021, -0.00113249104, 0.0295871366, -0.0160360727, -0.0222615376, -0.0102700759, 0.00383752678, 0.0068402458, -0.00604103087, -0.000559774169, -0.00674317498, 0.0178221725, -0.0092152413, -0.00825100578, 0.0281375479, 0.0261443648, -0.00239117397, 0.00380516984, -0.0122050177, 0.00256590103, 0.0137581481, -0.0181069132, -0.00108880922, 0.00737737026, 0.000250563637, -0.0120367622, -0.00663963333, 0.0215885155, 0.00247691968, 0.0116420081, 0.00550714228, 0.000698099844, -0.0106195305, 0.00320171402, -0.00877518766, -0.00157416251, -0.000412752532, 0.00988826435, 0.0056268624, -0.00381811266, -0.00854221825, 0.0096617667, -0.0124897584, 0.00420315936, -0.02132966, -0.00247044838, 0.0424522348, 0.00272444985, -0.0130980676, 0.00487618288, 0.0152336219, 0.0140817175, -0.0236981846, 0.00570451934, -0.005102681, 0.00621899357, 0.00722852862, 0.0124379871, 0.0144311711, -0.00611545146, 0.0109560415, -0.0109366281, 0.0198671278, -0.00426140195, 0.00735148462, 0.0235816985, -0.0154277636, -0.00568510499, -0.0084710326, -0.0166443828, 0.00344924419, -0.00177477521, 0.00179904292, 0.000922980194, 0.00513180206, -0.00984943658, 0.0113831526, -0.0062028151, -0.00365632819, -0.0135122361, 0.00299462979, -0.00534212217, 0.027826922, -0.0165408403, -0.00570775475, -0.0130786533, 0.0152206793, -0.00772682438, -0.00103218469, 0.00403166795, 0.00441671489, 0.00533565041, 0.0331852213, -0.00351072219, 0.0180422, -0.00655226968, 0.00223909668, 0.0159195885, -0.00121581007, 0.00825747754, 0.00184757821, 0.000113653565, -0.0074097272, -0.0025206015, 0.00854868907, 0.0201259833, -0.00276166038, 0.000149852829, 0.00934466906, 0.0190646779, -0.0165537838, -0.00662669027, 0.0194141325, 0.0133051518, -0.0139911175, -0.0421674959, 0.000302132423, 0.0127292, 0.0143146869, -0.00520622311, 0.0163078718, 0.00460114935, -0.01832694, -0.0239829253, 0.010787786, -0.000768880534, 0.00999827776, -0.0175503753, -0.00446201488, -0.00145605986, 0.0137193203, -0.00610250887, 0.0114802234, -0.0301825032, -0.0118232062, 0.00477264076, 0.00022730713, -0.0169808939, 0.0132339671, 0.00710557215, -0.000822673843, 0.00231028162, 0.000865546695, 0.00226498209, 0.00799215119, 0.00374692748, -0.00131449848, 0.0146900266, -0.004335823, 0.00337482337, 0.00439082971, 0.0140299462, 0.0242288373, -0.00649726298, 0.0256654825, 0.0112601966, 0.00490530394, -0.0201906972, -0.0391647741, 0.00437788665, 0.0125544723, 0.011091941, -0.0108395573, 0.00263061491, -0.0022666, 0.00566245522, -0.0154924775, 0.0187928807, -0.00660404051, -0.0139781749, -0.00075593777, 0.00291050202, -0.0105224596, -0.0210708044, -0.00984296482, 0.0150912516, -0.00915699918, -0.00240897015, 0.00372427772, 0.0146253128, 0.00995297823, -0.01832694, 0.00508003123, -0.0152077368, -0.038983576, -0.00389253348, 0.0069567305, 0.0262479074, -0.0140299462, -0.0109430989, -0.00168579374, -0.00745502673, 0.00572393322, -0.0127292, -0.0181457419, 0.0163078718, -0.0296130236, -0.00425493065, 0.0221838821, 0.00437465124, 0.000922171283, 0.00629017875, 0.00709910085, 0.0163984708, -0.00169873657, 0.0146382554, 0.00831572, 0.00706027262, 0.0144829424, 0.0150394812, -0.00181198562, -0.00239279168, 0.0169550087, -0.00779800955, 0.0129362829, -0.0186893381, 0.00784330908, -0.0272056703, -0.00196568086, -0.00834160578, 0.00795332249, -0.0193364751, -0.0291211978, -0.0261314213, 0.000535910949, 0.00288623432, 0.00879460201, -0.00927348342, -0.0216532294, -0.0179774854, 0.0171491504, 0.0125997718, 0.0127550848, -0.00511885947, -0.0135251787, -0.0127292, -0.0119461622, -0.0037663416, 0.0299236495, -0.00530005805, 0.00942879636, -0.0127874417, -0.005164159, 0.0236981846, 0.00977825094, 0.00258369744, -0.00467557, 0.0246430058, -0.0111954827, -0.0269468147, -0.0088075446, 0.00153048069, -0.0120173478, 0.0122050177, 0.0245265197, -0.00340070878, -0.0168514661, 0.021083748, 0.00154342351, 0.0205660369, 0.0309590697, -0.00379546289, 0.0132792667, -0.0102118338, -0.0158289894, -0.012412102, -0.0119073344, -0.0170197226, -0.0311143827, 0.0169808939, -0.0203848388, 0.00977178, 0.0307261, -0.0258207954, -0.0135381212, -0.00535506476, 0.0262996778, 0.025406627, -0.00527740829, 0.0153759923, -0.00168902951, -0.0125997718, -0.0338064767, -0.0140170036, -0.0101988912, -0.0162690431, 0.0025141302, -0.0134604648, 0.00934466906, 0.0137452055, 0.00189773145, 0.0145217711, -0.0220415108, -0.0154536488, 0.0201777555, -0.0109819276, -0.00793390907, -1.7391827e-05, 0.00306096138, 0.00734501332, -0.00827689189, 0.00860046, 0.00802450813, -0.0264032204, 0.027826922, -0.0149877099, -0.0350489803, -0.0276457239, -0.00824453495, -0.00828336272, -0.0184045974, -0.00805686507, -0.000944821106, 0.0131563097, 0.0213684887, 0.0107748434, -0.00464321347, 0.00114381593, 0.00612515863, 0.000150762862, -0.00820570625, 0.00646490604, 0.00537771452, -0.0166573245, 0.0025513405, -0.00450084312, -0.00657815486, -0.00709910085, 0.00794038, -0.00815393589, -0.000262293, 0.00639695674, 0.0314767808, 0.000631363771, -0.0075326832, -0.0106971869, -0.00714440038, -0.0175374318, -0.014586485, -0.0323827714, -0.0167349819, 0.011952634, 0.0118167354, -0.000852604, -0.00495707523, 0.00414491724, -0.00940938294, 0.0106065879, -0.00308846473, 0.011001341, -0.00204657298, -0.00112601963, -0.00861987472, -0.00285711302, 0.00519975182, -0.00530329393, -0.00495060347, 0.0152336219, 0.026325563, 0.00984296482, -9.0245383e-05, -0.024241779, -0.00766211096, -0.010509517, 0.00108961819, 0.00248015532, 0.0239311531, 0.00152481825, -0.00989473611, 0.0316062085, 0.00131611642, -0.0139264036, -0.00317097479, 0.00667199027, -0.00691790227, -0.0097847227, -0.0068337745, -0.0232710727, 0.0164890699, 0.00279401708, 0.030674329, -0.00106049702, -0.0162302144, 0.00111388578, 0.0142370304, 0.000420235068, -0.00853574648, -0.0296130236, -0.0121597182, 0.000104755418, -0.0089758, 0.00926701259, -0.0219897404, -0.00252707279, 0.00817334931, 0.0114025669, 0.0110854693, -0.0229733903, -0.0139781749, -0.0139522897, -0.00479852641, 0.0132145528, 0.0119849909, 0.0163984708, 0.00374692748, -0.00611545146, 0.0177833457, 0.0054036, -0.0302342754, 0.0178739447, 0.00583718251, -0.0186375659, 0.00142774766, 0.013913461, 0.0163078718, 0.00770741049, 0.00498296041, -0.0124832867, 0.00997886341, 0.0456361547, -0.00454614265, 0.0185340252, -0.00589218922, 0.00470792688, 0.0189481936, -0.000546831405, 0.00445230771, 0.000542382302, -0.00926054083, 0.00616075145, 0.0105612874, 0.00782389566, 0.0015943856, -0.0020530445, 0.000994165312, -0.0112407822, -0.0222356524, -0.0189223066, -0.00598925957, 0.00226174644, 0.00168094027, 0.009622938, -0.0122438455, -0.014832397, 0.0190129075, 0.025678426, -0.00177801098, -0.0200483277, 0.00282152044, -0.00516092358, -0.00739031285, 0.0204883814, 0.0255748834, 0.00143179228, 0.0156089626, -0.010755429, -0.025678426, -0.0068337745, -0.0244100355, -0.0057886471, 0.0338064767, -0.00278592785, 0.027826922, -0.0327710547, -0.0160490163, 0.0145347137, 0.00203363039, -0.00810863543, 0.00980413705, 0.00827689189, -0.0053194724, -0.00291211973, 0.014004061, -0.0217438284, 0.0253936853, -0.0186246242, 0.00103946496, -0.00519328052, -0.0122826742, -0.0193753038, -0.00185081398, 0.00841279048, -0.00836101919, 0.0198541861, 0.0269468147, -0.00469822, 0.0250960011, -0.0133828083, 0.00431317277, 0.0172397494, -0.00125059369, -0.00182492845, -0.00174403621, -0.00806980766, 0.00497001782, 0.00981708, -0.00171006145, 0.00182007486, 0.0165667254, 0.00667846156, 0.0329781398, 0.0118943918, 0.0106971869, 0.0075391545, -0.00162755139, 0.011674365, 0.0206178091, -0.0076556392, -0.0060248524, 0.0217697136, -0.00594719592, -0.00953233894, 0.000798810623, -0.000288380746, 0.00691143097, -0.0106518874, -0.000956146, -0.00989473611, -0.00101924199, -0.0168514661, 0.00827042, 0.0122438455, 0.0237240698, -0.0245653484, 0.0202942397, -0.0105483448, -0.00814099237, -0.00488589, 0.0184434261, 0.00704085873, 0.0253677983, -0.00937055424, -0.00729971379, -0.0329522528, 0.0111954827, 0.00387959066, -0.0104706883, -0.0262479074, -0.0017246221, 0.00448466465, -0.00339423749, -0.000149145024, -0.0292247403, 0.0115125803, 0.00357867172, -0.0104642175, -0.00663316157, -0.00596661, 0.00325833843, -0.00326966331, 0.00186052104, -0.00738384156, -0.0184563678, 0.0149100535, -0.0012174279, -0.00120124943, -0.013085125, -0.0191682205, 0.0131239537, 0.0015062131, -0.0055103777, 0.00249471585, 0.00426787324, 0.00210643327, 0.00734501332, -0.0157383904, -0.00460438477, 0.00293315179, 0.00941585377, 0.018236341, 0.007235, 0.0138228619, -0.00412873877, -0.00536153605, 0.00579188252, 0.00188155298, -1.16219362e-05, 0.00495060347, -0.00101115275, -0.0176927466, 0.00454614265, -0.0110401697, 0.00687260274, 0.00540036429, 0.0210190341, 0.00506385276, 0.0221709386, 0.00660727639, 0.0165278986, 0.0101341773, -0.0024898625, 0.00685318839, -0.00349454372, -0.00904698577, 0.0102118338, 0.0181845706, 0.00563333416, 0.00424522348, 0.0039960756, 0.00627076486, -0.0016364496, -0.0227015913, -3.08401577e-05, 0.00372427772, 0.00341041596, -0.00162027113, -0.0140428888, 0.00242838426, -0.0205272082, 0.0210319757, 0.0123344455, -0.00656844815, -0.00353660784, 0.014586485, -0.00735148462, 0.00211937609, -0.0148971109, 0.0150265386, 0.000148032763, -0.0202942397, 0.0117714358, 0.00615104428, 0.00803745072, 0.013913461, -0.028008122, -0.0103477323, -0.0063646, 0.0096617667, 0.00576599734, 0.0113443248, 0.000560987508, 0.00427434454, -0.00161218189, -0.0147417979, 0.0126838991, 0.0126127144, 0.0021145225, -0.00175859674, -0.0102441907, -0.0145605989, -0.0156866182, -0.00155960198, -0.0187022798, 0.00626752898, -0.0240605809, -0.009745894, -0.009622938, -0.0198671278, 0.00859399, -0.00174403621, 0.0138616906, -0.00184272474, -0.0265585333, -0.0295353662, -0.00331658078, -0.0115319947, -0.00106211484, 0.00546831405, 0.00194303109, 0.000769689446, 0.0154018784, -0.00473381253, -0.0153759923, -0.0121403039, -0.000241463262, -0.0109560415, 0.0211096331, -0.000164413432, -0.0108719142, 0.00430023, -0.0047435197, 0.0198800713, 0.0190646779, -0.0237887837, -0.0146900266, -0.00145444204, -0.0121208895, 0.000971515547, 0.000523777097, -0.0164631847, -0.0199189, -0.00960999541, -0.0112537248, -0.030674329, 0.0184563678, 0.00203686603, -0.0202165823, -0.00764916791, -0.0036207356, 0.0306225568, -0.0131239537, -0.004811469, 0.0151559655, -0.00789508, 0.000313052878, -0.0243712068, 0.00288623432, 0.0269468147, 0.0118426206, -0.00871694554, 0.0320462622, -0.0137969768, -0.00245103426, -0.0184175391, -0.00181198562, -0.0118814493, 0.00175050762, 0.0145347137, -0.0156219052, -0.00171006145, 0.0274127536, 0.0204754379, -0.00559450593, -0.0136934342, 0.0128068561, -0.0116549507, 0.0201777555, 0.0032745169, -0.00982355047, 0.0025448692, -0.000492633611, -0.00164372986, -0.00389576913, -0.00220026821, 0.0135769499, -0.0198412426, -0.00284417043, -0.00642284192, -0.00079517049, -0.0357996598, 0.0126968427, -0.0218085423, 0.0125997718, 0.00157820713, 0.0049732537, 0.0215108581, 0.00952586718, 0.00661698356, 0.0124962293, 0.0162043292, 0.0191811621, -0.0354631469, 0.00743561238, 0.00898227189, 0.00115109619, 0.00761033967, 0.0160101876, 0.00710557215, -0.00819276366, 0.020255411, -0.0184951965, 0.0322792307, 0.00938349683, 0.0154665923, 0.00124007766, -0.0111178262, 0.0167349819, 0.009377026, -0.0068337745, -0.00838690531, 0.00175212545, -0.00335540925, -0.02274042, -0.00283284532, 0.0173691772, 0.00339100184, 0.0100241639, -0.0179645438, 0.0182104558, 0.00253192638, -0.0330299102, -0.0187799372, -0.00866517425, 0.0178092308, 0.0235816985, 0.0212261174, 0.0184693113, 0.00680141756, 0.0133569231, 0.00239926321, 0.0096617667, -0.00113087322, 0.00239926321, -0.0283187479, 0.00584041793, 0.0133180944, 0.0229604468, 0.00463997759, -0.00953881, -0.0115967086, -0.00226498209, -0.00703438697, -0.0309590697, 0.0182492845, -0.0315026641, -0.0221450534, -0.00648432, 0.00649726298, -0.0179386586, -0.0030739042, 0.0160490163, 0.00115433196, -0.0039054763, 0.0012174279, 0.00880107284, -0.0122114895, -9.56044896e-05, -0.0010540256, -0.0211096331, -0.012166189, -0.015660733, -0.0197765287, -0.0285517164, -0.0153759923, 0.00451702159, 0.0105548166, -0.0344536118, -0.0249924585, 0.00794038, 0.0026370862, 0.0024672125, 0.0107619008, -0.00834160578, 0.00546831405, 0.0071185152, -0.0218991414, -0.00703438697, 0.00161622651, 0.00276974961, -0.0113249104, -0.00205789809, -0.0110401697, 0.0277233813, 0.0227015913, 0.00633547828, -0.00256913691, 0.00849044695, -0.00455908524, -0.00903404318, -0.00899521448, 0.00357220019, 0.012166189, 0.00916347, 0.0124379871, 0.0261443648, 0.0153759923, -0.0279563498, -0.0129880542, 0.0156477913, -0.0132210236, -0.00409314595, 0.00315156067, -0.000816606916, -0.00331981666, -0.00138487481, 0.00825100578, -0.0172268059, 0.0144441146, -0.0030366939, -0.00841926225, 0.00966823753, 0.00376957725, 0.00767505355, 0.00445230771, -0.0275162961, 0.00552655617, 0.00955822412, 0.0309072975, -0.00839984789, -0.0169938374, 0.0180033725, 0.0059730811, -0.00981708, -0.00134685542, 0.00748738367, -0.000861502136, -0.00847750437, -0.00623193616, -0.00791449472, -0.0110207554, 0.000635812816, 0.000671405403, -0.00388929783, -0.00478558335, -0.00252383715, -0.00551684899, 0.00858104602, -0.0257949103, 0.000641879742, -0.0187928807, -0.000119821598, -0.00584041793, 0.00680141756, 0.0189870205, 0.0110401697, 0.00330040255, 0.0118943918, -0.0146641415, 0.00364014972, 0.0296130236, 0.00817982107, 0.00691790227, -0.00942232553, -0.0282152053, -0.00396048278, 0.0140299462, -0.0136416638, -0.0222356524, -0.0111631257, 0.0159843024, 0.025678426, -0.0172915198, -0.00312567526, -0.0189870205, -0.0165149551, -0.00411579618, 0.0114155095, 0.00446848618, -0.00588248204, 0.00827042, -0.000817011402, 0.0130915968, -0.00788213778, 0.0154277636, 0.0218344275, -0.00345895113, -0.0311920382, -0.0246559475, 0.0090211, -0.000634599419, 0.0135251787, -0.00179742509, 0.00651344145, 0.0132469097, -0.00194788456, -0.00408020336, 0.000987694, 0.036006745, 0.00990120694, -0.00344600854, 0.00323407073, -0.0249536317, 0.0126127144, -0.0171750356, -0.011829678, -0.00286843791, 0.00118911557, 0.0220026821, -0.0330816805, -0.00314670731, 0.00563656958, 0.00286358455, 0.00328422408, -0.0134475222, -0.00632577157, -0.015414821, 0.00480823359, 0.00360455713, -0.00707321567, -0.016333757, -0.0074161985, 0.00863928907, -0.00249633379, -0.0102959611, -0.00635812804, -0.0245394632, 0.0157642756, -0.0126903709, -0.000515283435, 0.0264032204, -0.0196859296, -0.0117261354, -0.00290241279, 0.000178670685, -0.00992062129, 0.0054488997, -0.0216791146, -0.0178739447, -0.0122697316, 0.00469822, -0.000446525024, -0.0264032204, -0.00750032626, 0.00915699918, -0.000461490097, 0.0137840342, -0.00750032626, 0.00858751778, 0.0170456078, 0.00591483898, 0.00337805902, 0.00235719909, 0.0169291236, -0.00651344145, 0.0334181935, -0.0150006525, -0.00177477521, 0.00790155213, -0.00584365381, 0.00543595711, 0.014004061, -0.0197377, 0.0113443248, -0.027490411, 0.00434552971, 0.0180033725, -0.0200224407, 0.00777212437, -0.012502701, 0.00491501112, -0.0114284521, -0.00786272343, 0.00807627849, 0.0173691772, 0.0195047315, -0.00145848666, -0.00684671709, 0.00685318839, -0.00803097896, 0.00555244181, -0.00959705282, -0.0114737516, 0.024422979, 0.0279563498, 0.0152465655, 0.00500237476, 0.0155313052, 0.00758445403, -0.0128586264, 0.00351719349, 0.00428405171, -0.0213167164, 0.00955175329, 0.0110272272, 0.00144716178, 0.00447495747, -0.0204754379, 0.021705, 0.000733692432, 0.00790802296, 0.0231804736, -0.0303895883, 0.00191714556, 0.000745421799, 0.00482764747, -0.016087845, 0.0103542041, -0.0133051518, -0.00296227308, -0.0166443828, -0.0102506615, 0.00243970915, 0.0132663231, 0.00794685166, -0.0119332196, -0.00193170609, 0.00365956384, 0.009745894, 0.00456232112, 0.00851633213, -0.00772035308, 0.00931878295, 0.00820570625, 0.0104253888, 0.0057951184, 0.00150055066, 0.00382458395, 0.017835116, 0.0228569042, 0.0148971109, 0.0216791146, 0.0106971869, 0.00220188615, -0.00849044695, -0.00229572109, 0.0171879791, -0.00277298526, -0.0312438104, -0.0196341593, 0.00964235235, 0.0193494186, 0.0193882473, -0.0105871735, -0.00965529494, 0.0279304646, -0.00177801098, -0.00728677073, -0.0087687159, 0.0064875558, -0.0004449072, -0.00168417592, -0.0162819847, -0.000227509358, -0.015414821, 0.000112339068, -0.00739678415, -0.013913461, -0.00165262795, -0.0165020116, 0.0196212158, -0.0110272272, -0.00180551433, 0.0140558314]
16 Oct, 2023
IPsec (Internet Protocol Security) Tunnel and Transport Modes 16 Oct, 2023 IPsec (Internet Protocol Security) is an important generation for shielding statistics transmitted over IP networks. IPsec (Internet Protocol Security) is a set of protocols and methods used to steady communications over IP networks along with the Internet. It gives a sturdy framework for ensuring the confidentiality, integrity, and authenticity of data transmitted between network gadgets. The two principal IPsec modes are Tunnel Mode and Transport Mode, each with unique capability and traits. Terminologies Used in IPsecBefore we dive into IPsec modes, here are a few important terms: IPsec: Internet Protocol Security (IPsec) is a protocol and tactic used for securing IP communications through statistics authentication and encryption.Tunnel mode: In tunnel mode, the complete original IP packet which includes the header and payload is encrypted and inserted into the brand-new IP packet. This mode is normally used for network-to-network connections.Transport mode: Transport mode encrypts only the payload (records) of the authentic IP packet, leaving the IP header intact. Typically used for end-to-end communication between hosts or gadgets.Authentication: The process of verifying the identification to ensure a secure trade of networks.Integrity: Protection from statistics corruption for the duration of transmission, completed through cryptographic hash capabilities.Privacy: Encryption of facts to save you unauthorized access or eavesdropping.IPsecIPsec Tunnel ModeFull Header and Payload Encryption: In Tunnel Mode, the complete original IP packet (header and payload) is encrypted after which it is encapsulated inside a new IP packet. This new packet has a different IP header, normally with exclusive source and destination spotted on its IP addresses.Used for Site-to-Site VPNs: Tunnel Mode is normally utilized in site-to-web page VPNs (Virtual Private Networks) in which entire networks or subnets need to talk securely over an untrusted network, including the Internet.Protects Network-to-Network Communication: Network to network Communication secures communication between all the networks, for encryption and protection from attacks.ExplanationUse CaseTunnel Mode is frequently used in website-to-web site VPNs, in which complete networks or subnets need secure communication. It protects the entire conversation between two networks. Example: Consider branch places of work of an organization. They join over the internet the usage of Tunnel Mode to safely change sensitive information. The authentic IP packets are encapsulated within new IP packets with extraordinary supply and destination addresses. IPsec Transport ModePayload encryption simplest: In shipping mode, preferably the payload (information) of a valid IP packet is encrypted, while the valid IP header stays intact. This mode is usually used to pause communication between hosts or gadgets.Used for host-to-host communication: The host-to-host communication mode is generally used to guard communication among hosts or devices in preference to the whole network.Less overhead: Since the original IP header no longer trades, new headers may have less overhead in keeping with the sentence compared to Tunnel Mode.ExplanationUse CaseTransport mode is suitable for drop-off connections among hosts or devices in the location. Example: Transport mode is used when employees in an employer need to soundly trade their documents locally. Only the payload of a valid IP packet is encrypted, at the same time as the IP header no longer alternates. In each Tunnel Mode and Transport Mode, IPsec gives the subsequent key safety offerings: Authentication: Ensures the identification of the speaking parties through the use of mechanisms like virtual signatures or pre-shared keys.Integrity: Protects the information from tampering at some point of transmission by using cryptographic hash features.Confidentiality: Encrypts the data to ensure that it can't be studied by using unauthorized events.Anti-Replay Protection: Prevents attackers from intercepting and retransmitting data packets.The desire between Tunnel Mode and Transport Mode relies upon the specific requirements of the conversation and the structure of the community. Site-to-web site VPNs usually use Tunnel Mode to stabilize complete networks, at the same time as Transport Mode is appropriate for end-to-end encryption between hosts. Step-by-Step Process IPsec Tunnel ModeConfigure the IPsec Tunnel on each end of the community.Define the encryption and authentication strategies.Establish a secure tunnel between the networks.All traffic among the networks is encrypted and guarded.IPsec Transport ModeConfigure IPsec guidelines on the hosts.Define the encryption and authentication techniques.Establish a stable connection between the hosts.Data dispatched between the hosts is encrypted, ensuring its confidentiality.ConclusionIt is critical to apprehend IPsec tunnels and shipping modes to guard information in diverse network environments. Whether you’re securing an entire network or seeking to steady it in containers in hosts, IPsec offers the tools and functions you want to keep your statistics secure and secure. FAQs on IPsec Q.1: What is the primary purpose of IPsec?Answer: The primary purpose of IPsec is to secure IP networks with the aid of supplying integrity, honesty and confidentiality. Q.2: When to use IPsec Tunnel Mode?Answer: Use tunnel mode for neighbourhood-net conversations, together with connecting to faraway workstations or securing visitors to registers. Q.3: Can I use IPsec Transport Mode to avoid internet traffic?Answer: Generally, the shipping mode is not appropriate for securing internet site visitors, because it is not used for stop-to-forestall networks that depend upon community constants lots extra than they do now. Q.4: Is IPsec used for VPNs?Answer: Although IPsec is typically utilized in VPNs, it could be used to facilitate basically any IP-based conversation, inclusive of web site visitors from the inner environment Q.5: What techniques may be utilized in IPsec?Answer: IPsec helps a couple of authentication mechanisms consisting of shared keys, virtual certificate, and public key infrastructure (PKI). Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System/Introduction of System Call/How much Stack size required for BIOS interrupt call?/Difference between Interrupt and Polling/Difference between Difference Engine and Analytical Engine/Difference Between Store‑and‑Forward Switching and Cut‑Through Switching/Difference between Message and Packet Switching/How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?/Types of Node Devices in a Computer Network: End devices and Intermediary Devices/Types of Errors in Computer Network/Difference between Storage Area Network (SAN) and Network Attached Storage (NAS)/Difference Between Network Security and Network Administration/Internet Administration/Internet Telephony Protocol | H.323/IPsec (Internet Protocol Security) Tunnel and Transport Modes
https://www.geeksforgeeks.org/ipsec-internet-protocol-security-tunnel-and-transport-modes?ref=asr10
PHP
IPsec (Internet Protocol Security) Tunnel and Transport Modes
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, Difference between Difference Engine and Analytical Engine, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Difference between Interrupt and Polling, Types of Node Devices in a Computer Network: End devices and Intermediary Devices, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, Types of Errors in Computer Network, jQWidgets jqxToolBar close Event, How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, Difference between Message and Packet Switching, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, Difference Between Network Security and Network Administration, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, Introduction of System Call, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Difference Between Store‑and‑Forward Switching and Cut‑Through Switching, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, IPsec (Internet Protocol Security) Tunnel and Transport Modes, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, Internet Telephony Protocol | H.323, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, Difference between Storage Area Network (SAN) and Network Attached Storage (NAS), jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, Internet Administration, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How much Stack size required for BIOS interrupt call?, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0389789604, -0.0132974302, -0.016006453, 0.00311150565, 0.0264090989, 0.00905587524, -0.0122215608, 0.0240096785, -0.000490284699, 0.0121441605, 0.0173841845, -0.0160838533, 0.0354804546, -0.0391956829, -0.0119351791, 0.022631947, 0.0100853033, -0.0161922146, -0.0176628269, -0.0344587639, 0.0398148894, -7.44527654e-07, -0.027802309, -0.0502794571, -0.0111147314, 0.00541804498, 0.0279880706, 0.041022338, -0.0361615792, 0.0332513154, 0.00619205134, 0.0255267303, 9.54204734e-05, -0.012492463, -0.00451245718, -0.0247991644, -0.0384835973, -0.0282047931, -0.0673695132, 0.0121751204, 0.00669515552, -0.0150079839, 0.0252790488, 0.00196210621, -0.0558832623, 0.0225545466, -0.0345206857, -0.0428180322, 0.0401244909, -0.0262388177, -0.0444589257, -0.029659925, 0.0119738793, 0.0609297827, 0.000405385857, 0.0206504911, 0.0389170423, 0.0175080243, 0.00679964619, -0.0620133914, 0.0288859196, -0.00312311575, -0.00307667535, -0.00455502747, -0.00427638553, 0.00712085888, -0.00705119828, -0.0294432025, 0.00912553538, -0.0282512344, -0.0458831, 0.0338705182, -0.00907909498, -0.0361306183, 0.0258982535, -0.0148996236, 0.0179105084, 0.0316723436, 0.0470595881, 0.0184213519, -0.0221830234, 0.0309138149, 0.0254338495, -0.0203873292, 0.00695831748, -0.00451632729, -0.0151395649, -0.0570287928, 0.0713943467, 0.0203718487, 0.0107819093, -0.00428412529, -0.000834959385, -0.0269354228, 0.0229415502, 0.000512295461, 0.0175080243, -0.0200622454, -0.0153485471, -0.00147061213, 0.0289323591, -0.00123550766, -0.0104258666, -0.012229301, 0.0339634, -0.0172758233, 0.00362622, 0.0464094244, 0.0283595938, 0.0494125672, -0.00664484501, -0.0151240854, 0.0252326094, 0.0302017294, -0.0202634875, -0.0312543772, -0.00040683712, -0.0430347547, -0.00610304065, 0.0141643174, -0.0243966822, -0.0117726373, -0.0236691162, -0.0023413694, -0.0713943467, 0.0702178627, -0.0264400579, 0.012360882, -0.0199538842, -0.0352018103, -0.0069428375, 0.00807288662, -0.00747303199, -0.0129026864, 0.00887011364, -0.00761235273, 0.0157587696, 0.0169971809, -0.00414480409, -0.0280654728, 0.0113933738, 0.0125002032, -0.0463165417, 0.0135141518, 0.0153021067, 0.0144584393, 0.00845989, 0.0352018103, -0.0739330947, 0.0473691933, -0.00645134319, -0.00587083865, 0.0102323648, -0.00145609956, 0.0280809514, -0.0194430407, 0.00660614483, 0.0285453554, -0.00526324334, 0.0107432092, 0.0245360024, -0.0649546161, -0.00750012184, -0.0213161353, 0.020511169, 0.0326321088, 0.0582362413, 0.000472627667, -0.0186845139, 0.0587006435, -0.0156581495, 0.0170281399, 0.0354185328, 0.0278332699, 0.00377908628, -0.0261614155, -0.0161457732, -0.00623462163, -0.0170591, 0.0331584327, -0.0256350916, -0.0196597632, -0.00837475, 0.0128794666, 0.0114552947, 0.0378334336, 0.0301862489, -0.0134831918, -0.00830508862, -0.039164722, -0.0122989621, 0.0253874101, 0.035790056, 0.0309292953, -0.00224655354, 0.00536386436, 0.000470934523, 0.02048021, 0.00510070194, -0.022368785, 0.00876949262, 0.00611852063, -0.0102246245, 0.0233130734, 0.0177402273, -0.0173222627, -0.0327869095, -0.000329678354, 0.0220127422, -0.0133516099, -0.0813635513, -0.0334061161, 0.0160993338, -0.00332048745, 0.000358461722, -0.0114011141, -0.0309138149, -0.0336538, -0.0426013134, 0.0307744946, 0.035790056, 0.0595365725, 0.00944287796, -0.00697379746, -0.0646450147, -0.0686698481, 0.00795678608, -0.0254028905, -0.02544933, 0.0233440325, 0.0307590142, 0.0379572734, 0.0107664289, -0.00176183204, -0.0213316157, -0.0285763163, -0.00739950128, -0.00112617936, -0.0155188283, 0.0108902697, -0.0313008204, 0.0100775631, -0.0183749124, -0.0132432496, -0.0425703526, 0.0335299559, 0.00242264, 0.0967198387, -0.0177247468, 0.0239322782, 0.00262194662, 0.00396678271, 0.00231621414, 0.0449542925, -0.00602951, 0.00744981179, -0.0110528115, -0.0112385731, -0.00845989, 0.0194275603, 0.0236071944, 0.000382165657, 0.0171984229, 0.0198919643, -0.00365718012, -0.00281931832, 0.0276629888, 0.0120048393, 0.0127711054, -0.0355423726, 0.0208826922, -0.0132045494, -0.0362544581, -0.00768975355, 0.00272643752, -0.000681609381, -0.0240715984, 0.0141797969, 0.0380501561, 0.0261923764, -0.0044505368, -0.0699701756, 0.0302326903, -0.0172913037, -0.010371686, -0.0159445312, -0.0116874967, 0.0341182, -0.0380811132, -0.0408056155, -0.00930355676, 0.0244586021, 0.0212851763, 0.00134193362, 0.020217048, 0.00455889758, -0.029659925, -0.0154104671, -0.0241489988, -0.00615722081, 0.00357397459, 0.034861248, 0.00190018571, 0.00941965822, -0.0313627385, 0.0305113327, 0.00536773447, 0.0421369076, 0.0156194493, 0.0062462315, 0.0114707751, -0.0308673754, -0.0252326094, -0.0156271886, 0.0316568613, 0.00564637687, 0.0085759908, -0.0176009052, 0.000582923589, -0.00556510594, 0.0572455116, 0.0119119585, 0.00547222514, 0.0460998192, 0.0110373311, -0.0265174601, 0.0199229252, 0.0317342617, -0.00293154921, -0.0166566186, -0.0147525622, -0.00863791164, -0.00812706724, 0.00213819277, -0.00255422108, -0.0367498249, -0.0170436203, 0.0226474274, -0.0222913846, 0.00951253902, 0.00893977378, -0.0189167168, 0.00332048745, -0.0228486694, -0.0173996631, -0.00972152, 0.02048021, 0.0105187474, -0.014249458, 0.00690800697, 0.00160219322, -6.4339285e-05, 0.0189941172, -3.17765916e-05, 0.00953575876, -0.00142997678, -0.0110450713, -0.0276939496, 0.0183749124, -0.03393244, 0.0178795476, -0.0100930436, -0.0185297132, 0.0241489988, -0.0281273928, 0.0192108396, -0.0295515638, -0.00753882248, -0.016037412, 0.00889333338, -0.0138392346, -0.00402870309, 0.00762783317, 0.00565411663, -0.010139484, -0.00251939078, 0.0243502408, -0.00673772581, -0.005054262, 0.0161302928, -0.0177092664, -0.0149151031, -0.00206079194, 0.0336228386, -0.0387312807, -0.00861469097, 0.0333751552, -0.00934225693, 0.000662259234, 0.00914101582, -0.0211148951, 0.00180343492, -0.0147216013, -0.0138082737, -8.68338393e-05, 0.00034080469, -0.0143887792, -0.0202944484, 0.0182201099, -0.00149576738, 0.0211303756, 0.0261614155, -0.0530349202, 0.0340562798, -0.0395981669, 0.00170378154, 0.00264710188, -0.0396600887, -0.0072679203, -0.0224152245, 0.023096351, -0.00875401217, -0.0125002032, 0.00344626349, 0.00743433135, 0.0472763106, -0.0225855075, 0.0772148818, 0.0374928713, 0.00786777493, 0.0164553765, 0.0184058715, -0.00537160458, 0.0020395068, 0.0301862489, 0.0156039689, 0.0203563683, 0.0128794666, 0.0525705144, -0.0120048393, 0.0404031351, -0.0345206857, -0.00643586321, -0.0164244156, 0.0204647295, -0.0681125596, -0.00330694229, -0.00348496391, -0.022631947, -0.00571603747, -0.0175389852, 0.0382359177, 0.00767427357, -0.0432514772, -0.0430657156, 0.00598693965, -0.0492577665, -0.0181891508, 0.0130961882, -0.0113082333, -0.0394743271, 0.0331584327, -0.0412081, -0.00278642308, 0.0303410515, -0.0199384056, 0.0116952369, -0.0141565772, 0.0387622416, 0.023560755, 0.010139484, 0.0343039632, -0.00914875604, -0.011300493, 0.0440874062, 0.0142339775, -0.0367807858, -0.0158206914, 0.00458211778, 0.0117881177, 0.0609297827, 0.00678803632, 0.0527872369, 0.0331584327, 0.0354804546, -0.00315214111, -0.00593275903, -0.0177402273, -0.0158361718, -0.0385145582, 0.0146364607, 0.03857648, 0.0078252051, 0.00384100666, -0.0332822762, 0.0392266437, 0.00773619395, 0.0140327364, -0.0163160544, -0.0311305374, 0.0250778068, -0.0285608359, -0.0360996574, -0.0265329387, -0.0183439516, -0.0420749895, -0.0102555845, 0.0167495, 0.00648230361, 0.0394743271, -0.0197990835, 0.00605273, -0.00579343783, 0.0436539613, -0.00513553247, -0.0032411518, 0.0202634875, 0.0440564454, 0.0283905547, -0.0190715175, -0.0150699047, 0.0425084308, -0.0181272291, 0.0374619104, 0.00257744128, 0.0220901426, -0.00594049925, -0.00816576742, 0.0148067428, 0.0326940306, 0.00480657956, 0.0261614155, 0.0151782651, -0.0133670904, 0.00734919077, 0.00315794605, 0.00814254768, -0.0279106703, -0.0187309552, 0.000608078786, -0.0189631563, -0.012925907, 0.0120512797, -0.00838248897, 0.0122370413, -0.00659840461, -0.0201396458, 0.0105806673, -0.0192263182, 0.019783603, -0.0180653092, 0.00480271, -0.0287930388, 0.00647456339, -0.010472307, 0.0154491682, -0.0201860871, 0.00484528, -0.00205692207, 0.00504652178, 0.0185142327, 0.0224461854, -0.00162347837, 0.0110218516, -0.00406740373, 0.0202634875, 0.00731049059, 0.0132664694, 0.00720212935, -0.00147738471, -0.00714794919, 0.0254802909, 0.0171210207, 0.0143345986, 0.00350044388, 0.00773619395, 0.0136999134, 0.0138779348, 0.00152576016, -0.000475772045, -0.0264555383, 0.0187309552, -0.0179259889, 0.0236691162, 0.0278487504, 0.0304029714, 0.0389480032, -0.0198610034, -0.028266713, 0.00941965822, -0.000308635063, -0.0166566186, 0.0146209812, 0.00993824191, 0.0033456427, -0.0151627855, 0.0141023966, 0.0111302119, -0.00722534955, 0.00126259797, -0.00360106467, 0.000157824747, 0.00198919652, 0.0172603428, 0.0337466784, -0.00839796942, 0.0211148951, 0.00476787938, -0.0150621645, -0.00938095711, -0.00363009, 0.0297992472, 0.0369046256, 0.0159445312, -0.00951253902, 0.0133129098, 0.00370362052, -0.000495364075, 0.0149847642, 0.0138082737, 0.00890881382, 0.00262581673, 0.0406817757, 0.0323844291, 0.0183903929, -0.00562315667, 0.0196752418, 0.0201706067, -0.0236226749, -0.0574931949, 0.0189167168, -0.00466725836, 0.0183903929, 0.0361615792, 0.0199229252, -0.0108051291, 0.0142339775, -0.00849859, -0.0217495803, -0.02048021, -0.0180188697, -0.0147835221, -0.00622688141, -0.0032295417, -0.00150544243, 0.00424542511, -0.0197371636, -0.0154878683, -0.0147448219, 0.0149770239, -0.00760074286, -0.00266645197, 0.00849859, 0.112014204, -0.0160219315, 0.0534064397, 0.00352366408, 0.01809627, -0.0133670904, 0.0234523937, -2.98264567e-05, 0.00225816364, 0.013552852, 0.0352327712, -0.00602951, -0.0263936184, 0.00602176972, -0.0338705182, -0.00284447358, 0.0111766523, -0.00255809119, -0.00244392524, 0.025650572, 0.00752334204, -0.023498835, -0.00367266033, 0.0158052109, -0.00462081842, -0.0349231698, 0.0110760313, 0.0105651878, -0.0287930388, 0.0134754516, 0.0307125747, -0.0206969306, -0.0270592645, -0.000918165082, 0.0262233373, 0.0184523128, -0.0408056155, -0.0185297132, 0.0244276412, 0.00638168259, 0.0247062836, 0.00886237342, 0.0013719264, -0.056533426, -0.00429960573, -0.0250158869, -0.0195668824, 0.00918745622, 0.00144545699, 0.0157897305, -0.00636620261, -0.00363009, -0.00226977374, -0.000202934796, -0.00966734, -0.0191024784, -0.0280190315, -0.00134483608, 0.000481093361, -0.0107509485, -0.00457824767, 0.00198532641, 0.0291181207, 0.0175544657, -0.0235762354, -0.0174615849, -0.0234214328, 0.004241555, -0.00829734839, -0.00558832614, 0.0160683729, 0.0157665107, 0.0199538842, -0.00389518728, -0.00238974486, -0.0148686627, 0.0271985848, 0.020015806, 0.0113469334, 0.0159754921, -0.0298611671, -0.0254338495, 0.0164398961, -0.00325663202, 0.0272759851, -0.0196133219, -0.0024806906, 0.0476787947, -0.0184368324, 0.000253487087, 0.003148271, 0.0257898923, -0.0115404353, 0.0253409687, -3.28650385e-05, 0.0195359215, -0.0114862546, 0.0369355865, -0.0102246245, -0.0206504911, 0.0059908093, 0.0185761526, -0.0161922146, 0.0019930664, 0.0185142327, -0.00815028697, -0.0125002032, 0.0110450713, -0.0357590951, -0.019319199, -0.0482670404, -0.020975573, 0.008715312, 0.0111302119, 0.00422994513, 0.0127478857, 0.00333209755, 0.0120667601, 0.05089866, -0.00907909498, 0.0153949875, 0.0265484191, 0.00421059458, -0.0253874101, -0.0208672117, 0.0120822396, -0.0107741691, 0.00864565186, 0.0424774699, 0.029427724, -0.0237000752, -0.00121809251, 0.0158206914, 0.0281119123, -0.0299076065, 0.00413319422, -0.0119661391, -0.00386229204, 0.0101007838, -0.0167185385, 0.0128872069, -0.0130265281, -0.0382978357, 0.0439326, -0.00036862056, -0.0010313635, 0.0034269134, 0.0203254074, 0.0391956829, 0.0216721799, 0.0115172155, 0.0217495803, -0.0010545837, -0.0343968458, 0.0195204411, -0.0192572791, -0.00663323468, 0.0202944484, 0.0184987523, 0.014117877, -0.0187309552, -0.0152556663, -0.0425393917, -0.0229260698, -0.0626635551, 0.000505522941, -0.0189476758, -0.00156446046, -0.00815028697, -0.0186845139, 0.0356042944, -0.00359525974, -0.00366492034, 0.0189786367, -0.0227403082, -0.0132045494, -0.00142223679, 0.0212851763, 0.00221172324, 0.00215947791, -0.00630041212, -0.0156581495, 0.0232666321, 0.0193811208, 0.016037412, 0.0145358406, 0.0229879897, 0.00270902249, -0.00889333338, -0.0248765647, 0.000113198439, -0.0261614155, 0.0111998729, -0.00434604613, 0.011300493, -0.00105168123, 0.00330307242, 0.00373458094, 0.0156504102, -0.00188664056, -0.0069196173, 9.77787786e-05, 0.000828670629, -0.0127633652, 0.00910231564, 0.0348922089, -0.00752721215, 0.00172022916, 0.000925421424, -0.00684221648, 0.01928824, -0.033003632, 0.0267032199, -0.0214864183, -0.0180343483, 0.0227093473, -0.0171365011, -0.000256389612, 0.0213316157, -0.00449310709, 0.0190715175, 0.00343658845, -0.00402483344, -0.00808836706, 0.00443505682, -0.0193656404, -0.0278797112, -0.00465177838, -0.0315794609, 0.00440022629, 0.0166101772, -0.00791034568, -0.00350237894, 0.0269509032, 0.0208826922, 0.0226474274, 0.013521892, 0.0185761526, -0.0102710649, -0.0129104266, 0.00779424421, -0.00225622859, 0.000231839105, -0.023761997, -0.0206040498, 0.0188393164, -0.0140791768, -0.0232666321, -0.012391842, -0.0286072772, 0.0314401388, -0.0297528058, -0.010472307, -0.0372761488, -0.00948931836, -0.0118190777, -0.00140869163, -0.00490333047, -0.00100233825, -0.004241555, 0.00204144185, 0.0111998729, -0.0531278, -0.0144506991, -0.0104181264, -0.0356352553, 0.00428412529, -0.00815028697, -0.00921067595, -0.0441183634, 0.00139804906, -0.0205576103, 0.0458831, -0.0222449433, -0.0149383238, -0.00775554404, 0.0288394783, -0.0146209812, 0.0358829349, 0.0120822396, 0.0526014753, 0.00867661182, -0.0281738322, -0.0279416312, 0.0128794666, -0.010139484, 0.0370594263, -0.0150699047, 0.014117877, -0.000350721646, 0.00719051948, -0.00527485367, 0.00551092578, -0.0257589333, 0.0165637378, -0.0563786253, -0.0189167168, 0.011997099, 0.0378643945, 0.0476478338, -0.00276513794, -0.0202015676, 0.00598693965, 0.0138005344, 0.0154414279, -0.00329339714, -0.0125311632, -0.0324153863, -0.0223533046, -0.00122389756, -0.0280809514, 0.000722244731, -0.034861248, -0.0387622416, -0.0363473408, -0.0276165474, -0.00273224269, 0.0314091779, -0.00958993938, 0.0103175053, -9.91695742e-06, 0.0217031389, 0.0107896496, -0.00408675382, -0.0457283, -0.0138701946, -0.00502717169, 0.00609143032, -0.0327869095, 0.0192263182, -0.0021556078, 0.0192108396, -0.0381120741, -0.0269818623, -0.0347374082, 0.00208981731, -0.00378489122, 0.0173996631, -0.0163160544, -0.00466338871, -0.000409014, -0.0146055007, 0.000530194375, -0.004241555, 0.000121906007, -0.0238858368, -0.0297063664, -0.0117339371, 0.0021439977, -0.0133516099, -0.019086998, -0.0150157241, -0.0029857296, 0.0017985974, 0.0206659716, -0.0227248278, -0.0324463472, 0.00251745572, -0.012593084, -0.00744594168, 0.0286691971, 0.0423226692, 0.0215947777, 0.0175389852, -0.0224616658, 0.0192727596, -0.0353256539, -0.0214554574, -0.0491958484, -0.0222139843, -0.0148996236, -0.000619205122, -0.013390311, 0.0079180859, -0.0241335202, -0.0182355903, -0.000172216431, -0.00916423555, 0.00177150709, -0.0284060352, 0.00205885712, 0.0263316985, 0.017693786, -0.00207627215, -0.0125621241, -0.0021556078, 0.0171829425, 0.0120667601, -0.0196907222, -0.00213432265, 0.00835926924, 0.0251397286, -0.0198919643, -0.0293503217, -0.0567501485, 0.00450084731, 0.00365137518, 0.00274772267, -0.0105419671, 0.00420285482, 0.0124150626, -0.0127711054, 0.00917197578, 0.0194740016, 0.0151086049, -0.00189728313, -0.0041951146, -0.00427638553, -0.0185451936, 0.0141256172, 0.00926485658, -0.0280035511, 0.0185761526, -0.00364750507, -0.00338627794, 0.0300469287, -0.00101007835, -0.0396291278, -0.0327559523, -0.00256583118, 0.00592888892, -0.00909457542, 0.0229105894, 0.0306042135, 0.00150254, 0.00149770232, 0.00575086754, 0.0147680417, -0.0278797112, 0.0168888196, -0.0253409687, -0.000827703101, 0.00352366408, -0.0188857559, -0.011896478, -0.0123067014, 0.00804192666, -0.0205266494, 0.0153872473, 0.018560674, 0.0197216831, -0.0122834817, 0.00946609862, 0.0269973427, -0.0357281342, 0.0134909311, -0.0134290112, -0.00629654201, 0.00295863952, 0.0165637378, 0.0129646072, -0.0165946968, 0.0306506529, 0.0255267303, 0.0911469907, -0.0216876585, 0.00652100379, -0.0382049568, 0.0121054603, 0.0142726777, -0.0130652282, 0.04473757, 0.0151550453, -0.0105497073, 0.0359138958, 0.0155110881, -0.0102788052, 0.0228022281, -0.0141023966, 0.00103426608, -0.00241103, 0.0142881582, 0.0104103861, 0.0220591817, -0.0152014857, -0.00792582519, 0.00777489413, -0.00641264301, -0.00435378589, 0.012956867, 0.0154027278, -0.0231273118, 0.00742272148, 0.0115636559, 0.0031366609, -0.0124228029, 0.0127401454, -0.00365331024, -0.00883915275, 0.0300778877, 0.0108515695, -0.0061301305, -0.0148144821, 0.018823836, -0.011532695, 0.000135693, -0.0102478443, 0.00123647519, -0.0121751204, -0.0181117505, -0.0092725968, -0.0146519411, -0.0500008129, 0.00532129407, 0.00585535821, -0.0133361304, 0.00849859, 0.000793840329, -0.0138160139, 0.0352637321, 0.0259756539, -0.0155730089, 0.0205885693, -0.0167495, -0.0162541345, 0.0211613346, -0.00599467941, 0.0239941981, -0.00878497306, -0.0153485471, -0.0175854247, -0.0147990026, -0.0161922146, 0.00330694229, 0.0151860053, -0.0165792163, 0.00594436936, 0.000475772045, -0.0109367101, 0.0310686175, -0.00781746488, -0.0132122897, 0.0164863355, -0.0133283902, -0.00818124786, 0.00270902249, -0.004009353, 0.0180807896, 0.00419124449, -0.00868435204, -0.0249384865, -0.00718664937, 0.022631947, 0.0164398961, -0.0046827388, -0.0302946102, -0.00499621127, 0.0114630349, -0.0213625766, -0.018359432, 0.00813480746, -0.00412932411, 0.00844441, 0.0120048393, 0.0185297132, 0.0123531418, -0.00709763868, 0.00801096577, 0.0130187878, -0.00161573838, 0.00580891781, 0.0231118314, -0.0256196111, 0.00428412529, 0.00798000582, 0.00647456339, -0.00758139277, 0.004357656, 0.0207898114, -0.0186999943, 0.0305113327, 0.0154723879, -0.00334951258, -0.00487237, -0.0316723436, 0.00746916188, 0.016470857, -0.0163005739, -0.0272450261, 0.00204918184, -0.00912553538, -0.00889333338, -0.0193346795, 0.00438474631, -0.0104955267, 0.0340253226, -0.00674546557, 0.00676094601, -0.0108515695, 0.00869983155, -0.00193985354, 0.00866113137, 0.0177247468, 0.00155285036, 0.00802644622, 0.00832830928, -0.00969056, -0.0187619142, -0.0178021472, -0.000760945, -0.0337157175, 0.00430347538, 0.000499234127, -0.0147293415, -0.017693786, -0.0215173773, 0.0159445312, -0.0090868352, 0.0277094282, 0.00360493478, -0.00967508, -0.0120357992, -0.00573925767, -0.00832056906, 0.00588244852, 0.023761997, 0.012956867, -0.00873079244, -0.0179414675, 0.00180924, -0.00564637687, -0.0185916331, -0.00658679428, -0.00279222801, 0.00213625771, -0.000444811798, 0.0062694517, -0.00556510594, -0.0117416773, 0.0144042587, 0.0455115773, -0.0261459369, 0.0315020606, 0.00553414552, -0.00773232384, -0.0191489179, 0.0179569479, 0.0125466436, 0.00884689298, -0.00154317531, -0.0356042944, 0.00962089933, 0.00330500724, 0.0368736647, -0.0175699461, 0.0309602562, 0.0128485058, -0.00388357718, 0.0121441605, 0.0270747431, 0.0119119585, -0.000611465075, 0.00305345515, 0.00133032352, -0.0158826113, -0.00544126518, -0.00030597439, 0.0165482573, 0.0266103391, 0.00752334204, 0.00311150565, -0.00139127648, 0.0148377027, -0.0157665107, 0.00445827702, -0.00224655354, -0.00704345806, -0.00835926924, 0.00477174949, -0.00497299107, 0.0121364202, 0.00506200176, 0.012461503, 0.0124769835, -0.0122757414, 0.00419124449, 0.00732984068, 0.0260840151, -0.00493042078, -0.0211613346, 0.054180447, 0.0318890624, 0.019783603, 0.00637007272, -0.017693786, 0.0405888967, 0.0286691971, 0.00192243839, 0.0140946563, -0.0213780571, 0.0391956829, -0.0213625766, -0.0228951089, 0.0246753246, 0.0190095976, 0.0303565301, -0.00140288658, -0.00975248, -0.00462081842, 6.1104176e-05, 0.0197216831, -0.0244276412, -0.0246288832, 0.0285143964, -0.0155962287, -0.00365524529, 0.0263007376, -0.0241799597, 0.0202944484, 0.0132355094, 0.00416802429, -0.0020395068, 0.0313937, -0.0316104218, -0.000863500871, 0.00204531197, -0.0148144821, 0.00739950128, -0.0231582709, 0.0201396458, -0.0261768959, -0.00641651312, -0.0108128693, 0.0314556211, -0.0135605922, 0.024690805, -0.00589405885, 0.0048917206, 0.00500008138, -0.0147370817, -0.009179716, 0.0151163451, 0.00112037431, -0.00518971309, 0.00560380612, 0.0154027278, 0.00609143032, -0.0363163799, -0.0238548778, 0.003380473, -0.00841345, -0.00113295182, -0.0239632372, -0.0263471771, 0.00327404705, -0.00637781294, 0.021439977, 0.0114320749, -0.00865339115, 0.0270902235, 0.00285414862, 0.00631976221, -0.0187773947, 0.0062230113, 0.0242109206, -0.0147757819, 0.00734145055, 0.0118732583, 0.00399774313, -0.0175699461, 0.00710150879, -0.0251242481, 0.0215638187, -0.000986858155, -0.00512779225, -0.024721764, -0.00729888026, 0.00929581653, 0.00313085597, -0.0113856345, 0.0127324052, 0.0203873292, 0.00580117805, 0.013088448, 0.00243231514, -0.00512005249, 0.00743820146, -0.0129955672, -0.00207240204, -0.00873079244, 0.0159445312, -0.00103523361, 0.0147680417, -0.00540256454, 0.00272643752, -0.0273843464, -0.00204144185, -0.0208672117, -0.00856051, -0.000424010388, -0.00780585455, 0.000213093634, 0.00388551201, -0.00329339714, -0.0296908859, -0.0128794666, -0.0291181207, 0.0133593502, 0.00258131139, -0.00387970707, -0.0124073224, 0.0297992472, -0.00518197287, 0.00644747308, -0.00358364964, 0.0190560371, 0.0105187474, 0.00485689, -0.00327017694, 0.00202596164, -0.0155962287, 0.000747399929, -0.00388744706, -0.00164282857, -0.0292574409, -0.0106812883, 0.0006027575, -0.0255576912, 0.00479109958, 0.00415254431, 0.0189476758, -0.0185142327, 0.0264865, 0.0274772272, 0.00144255441, 0.00434604613, 0.000345642242, 0.0103484653, 0.00699314801, 0.0187154748, 0.00715568895, 0.0250932872, -0.000669515517, 0.00106135628, -0.00791421533, -0.0344897248, 0.00575860776, 0.00779811433, -0.013885675, -0.00126840302, 0.00895525422, 0.0153175863, 0.0134909311, -0.00357397459, 0.0199538842, -0.00649004383, 0.00347141875, 0.0468738265, -0.030387491, 0.00441570673, -0.0301552899, -0.00977570098, -0.0172293819, 0.00796452537, 0.0186690334, 0.013684433, -0.0124537628, 0.00909457542, -0.0138005344, 0.0145977605, -0.00162928342, -0.0175235048, 0.012956867, -0.00986084156, 0.0100156432, 0.0194430407, -0.0259446949, -0.0113237137, 0.00923389662, -0.00592888892, 0.0294896439, 0.00564637687, 0.00669902517, 0.0340562798, -0.00303217, 0.00685382681, -0.0137695735, -0.0166256577, -0.00183052511, -0.00200080662, 0.0114011141, 0.00155381788, 0.00817350764, -0.0235452745, 0.0221830234, -0.0160683729, 0.0279880706, -0.00604112, 0.00738402084, 0.00615722081, 0.0180343483, 0.00450084731, -0.0204182882, 0.00906361453, -0.0150931245, -0.0139243752, -0.00898621418, -0.0228951089, -0.00341143319, -0.0247682054, 0.0333751552, 0.0119429184, 0.00105168123, -0.00975248, 0.00211303751, 0.00259679137, 0.00100911083, 0.00146480708, -0.0224152245, -0.00868435204, -0.010139484, -0.0117107164, -0.00288317376, 0.00985310134, -0.0186690334, 0.00949705858, 0.00484141, 0.0110063711, 0.0202944484, -0.0025155209, -0.000707732106, 0.0310376566, -0.00553414552, 0.0150234643, 0.0264245793, -0.00547609525, -0.00613400061, 0.0181736704, 0.011068291, 0.00303991023, 0.00609530043, 0.00512392214, 0.0101704439, -0.00177634472, 0.0127401454, 0.00794904586, 0.00724083, 0.0147216013, 0.0188083556, 0.03857648, 0.00416415464, 0.0118577778, 0.000541320711, 0.00870757177, 0.0141875371, 0.00230073393, -0.0170745812, 0.0146287205, 0.0125079434, 0.00726405, -0.00917197578, -0.0114707751, -0.00336112268, 0.0127091855, 0.00757752266, -0.00172409927, 0.00535225403, 0.0287930388, 0.0215173773, 0.00518971309, 0.00705506839, -0.00340949814, 0.0281893127, -0.0103020249, 0.0122912219, -0.00958219916, 0.0107664289, 0.00509683229, 0.0231892318, -0.00062694517, -0.0067802961, 0.0207898114, 0.0247836839, 0.0258982535, 0.0228951089, -0.0208517332, -0.00387777202, -0.0236226749, 0.0164863355, 0.00422994513, -0.00307667535, 0.0243347604, -0.0016012257, 0.00219624327, 0.00365524529, 0.0256041326, -0.00842892937, -0.0132045494, -0.0118577778, -0.027972592, -0.015077645, 0.000561154622, 0.00448536687, 0.00278061791, 0.0108980099, 0.00265097199, -0.023096351, -0.0112927537, 0.00260646665, -0.00482206, -0.00211110245, 0.00349270389, 0.0124847228, 0.00324695674, -0.00333209755, -0.0118268179, -0.00428412529, 0.0201860871, 0.009876322, 0.0366879031, -0.00191082829, -0.0152169662, -0.00664484501, 0.0141333565, -0.00125582539, -0.0109908907, -0.00507361209, 0.00285414862, -0.000725631, -0.000288317387, 0.00171248917, -0.00192534097, -0.00607208, -0.0173532236, -0.00276900781, 0.014582281, 0.00397065282, 0.0235143136, 0.000713053392, 0.0177866668, -0.00157994055, 0.00370749063, 0.000532613136, 0.0166875776, 0.00975248, -0.00274578761, 0.00250778068, -0.0222604237, 0.0125311632, 0.00340949814, 0.0285608359, 0.0219198614, -0.0166411381, 0.0271676239, 0.0113933738, 0.00721761, -0.00326824212, -0.00404418353, 0.00040441833, -0.00580117805, -0.00331661734, 0.00242844503, 0.0100388629, -0.000674836803, 0.00991502218, -0.000497782836, 0.016501816, -0.011532695, -0.000481818977, -0.0125776036, 0.00114843203, 0.0133283902, -0.0206659716, 0.008947514, -0.000655002892, 0.0010545837, -0.015743291, -0.0119429184, -0.0107664289, -0.00143481442, 0.00694670761, 0.0136766927, -0.032910753, -0.00273417751, 0.00850633066, -0.004241555, -0.0119196987, 0.0145977605, 0.000885753543, 0.0134986714, 0.00554575585, -0.00951253902, 0.000450374966, -0.000693219481, 0.0104336059, -0.00815802719, 0.00342304329, -0.0015547853, -0.0221365821, 0.000152624387, -0.00312118069, -0.0215483382, 0.00272837258, 0.00896299444, 0.0099692028, -0.00084366696, -0.0103794262, -0.0156349298, -0.00948157813, 0.00785229448, 0.00497686118, -0.0020395068, -0.00481819, 0.00436926633, 0.0380501561, 0.00561154634, 0.00157316797, -0.0155730089, -0.00781746488, -0.0191953592, 0.0135296322, 0.0158361718, 0.0407746583, 0.0124073224, -0.000822865579, 0.00460920809, 0.0221365821, 0.0189941172, 0.00970604, -0.00434604613, 0.0156349298, -0.00835152902, -0.00794904586, 0.0111921327, -0.015309847, 0.00861469097, 0.00462855818, -0.00774006406, -0.0204647295, 0.00575473765, 0.00994598214, -0.0145203602, -0.0139940353, 0.0105419671, 0.0251087677, -0.0224926267, -0.0125621241, -0.000591631164, 0.00993050169, -0.00107877143, 0.0071750395, -0.00337466784, 0.00986084156, 0.0196752418, 0.00460533798, -0.0166411381, -0.0201860871, 0.0185916331, -0.00229105889, -0.0429728366, -0.00214980287, 0.0215947777, 0.000263162161, 0.0140791768, 0.0164089352, 0.00195049611, -0.00823542848, -0.00101685093, -1.9486215e-05, 0.014845443, -0.00188954314, 0.0140095158, 0.0199384056, 0.00215754285, 0.00239554979, 0.00886237342, -0.014713862, 0.0049149408, -0.0117571568, -0.0177247468, -0.0216721799, -0.00688091666, 0.014582281, 0.0102788052, -0.0252635684, 0.0265639, 0.0092261564, -0.000528743141, -0.00785229448, -0.0106271077, -0.0113391941, -0.0105497073, 0.000288075506, -0.0145203602, -0.016501816, 0.0249230061, -0.0239477586, -0.00249036564, -1.49888156e-05, -0.00653261412, 0.0208517332, -0.0111689121, -0.0187619142, 0.00120938499, 0.0156271886, 0.0306042135, -0.00319664646, 0.00205885712, -0.00961315911, -0.00645908341, 0.0227712691, 0.00112521183, 0.0104955267, 0.0237774774, -0.0145281, 0.00138740649, 0.00795678608, -0.00828960817, -0.00267419219, 0.00163508847, 0.00872305222, 0.0219353419, 0.00746142166, -0.0156891104, 0.00162734848, 0.00939643756, -0.0148067428, 0.0220127422, 0.0112540526, -0.0039629126, -0.0165172964, 0.0163315348, 0.0108051291, 0.0169817, 0.0124460226, 0.0127478857, 0.0268889815, 0.0061301305, 0.00136708876, 0.0211613346, 0.00347722368, -0.00682286639, -0.00264323177, 0.0120899798, -0.00238200463, -0.0175544657, -0.0166720971, 0.0189941172, -0.00464790827, -0.0251397286, -0.00761622284, -0.00315601099, 0.00724856975, -0.00797226559, -0.0088546332, 0.0125698643, 0.016006453, -0.00711698877, -0.00239554979, 0.0102942847, 0.00474078907, 0.00315794605, -0.00221559335, 0.0127556259, -0.00349850883, -0.00467112847, -0.0248301253, -0.0119506586, 0.0065480941, -0.0142958984, -0.00239167968, -0.004589858, 0.0189012364, -0.0110450713, -0.00995372236, 0.0032179316, -0.0103562055, -0.00573151745, 0.00589018874, 0.00369007559, -0.00479109958, 0.00802644622, -0.0130652282, -0.00415641442, 0.0210374948, -0.0138237542, 0.0184368324, 0.00138256897, 0.0102091441, -0.0115172155, 0.0150853842, -0.0152866263, -0.000565508439, 0.00934999716, 0.00938095711, -0.0158052109, -0.0178485867, 0.00787551515, 0.00041022338, -0.000286624243, 0.0151163451, 0.00440796651, 0.00840571, 0.0364402197, -0.0278177895, -0.0106503284, 0.0155884884, -0.0178331081, -0.00252326089, 0.0180807896, 0.0121132005, 0.0127711054, 0.0152247055, -0.00293735438, -0.000305490656, -0.00692348741, 0.0241335202, 0.0147603024, 0.00415641442, 0.00166798383, -0.0111456923, -0.0118887387, -0.0165327769, 0.0168578587, -0.00181891501, 0.00199500145, 0.0116255758, 0.00887785293, -0.0133670904, -0.00369781558, 0.00476400927, 0.00490720058, -0.0118113374, 0.00955897942, -0.0162541345, -0.0109521905, -0.00412158389, -0.00308828545, 0.0365021415, 0.00364557025, -0.00887785293, -0.0151550453, -0.0217495803, -0.00981440116, 0.0141333565, -0.00339595298, 0.00399000291, 0.0158284307, 0.0126472646, 0.00117745728, 0.00875401217, 0.0315175392, 0.0044273166, -0.0127556259, -0.00233943434, 0.0206969306, 0.0034385235, -0.00529420376, 0.0233130734, -0.0105264867, 0.0155343087, -0.0154801281, -0.0105032669, 0.0044040964, 0.00661001448, 0.0149151031, 0.0197371636, -0.0248610862, -0.0218269806, 0.00535999425, -0.0182355903, 0.013189069, -0.00381004647, 0.009876322, 0.0173222627, 0.00724083, -0.0067570759, -0.00213819277, -0.000580504769, -0.0221211035, -0.00498073129, 0.00602176972, 0.00131000578, -0.0134290112, 0.000337660284, 0.00886237342, 0.0136999134, 0.00112714677, 0.00416802429, 0.00227751373, 0.0170745812, -0.00631976221, -0.00226977374, 0.0118809985, 0.00433830591, 0.0105032669, -0.0033920831, -0.00554575585, 0.00580504816, -0.00249810563, -0.00997694209, -0.00311150565, 0.0185297132, -0.00261807675, -0.031486582, -0.00285995356, 0.015309847, -0.0132509898, 0.000691284484, -0.00119583984, 0.00410610391, -0.0124305431, -0.00377521617, 0.00487624, 0.00848311, -0.0139785558, 0.00347722368, -0.00261614169, 0.00444279658, -0.00177150709, 0.00279803318, -0.0267496612, -0.0100775631, -0.0187773947, 0.000319761399, 0.00778650446, 0.00255228602, 0.0119506586, 0.0184987523, -0.0230189506, 0.00455502747, -0.00250004069, -0.00356042944, 0.000665161759, -0.00688091666, 0.00575086754, 0.000898814935, -0.0226009861, 0.00799548626, 0.0170281399, 0.00312698586, 0.0272140652, 0.00917197578, -0.0204956885, -0.00285027851, -0.00518197287, -0.0227403082, -0.00542578474, 0.0122834817, 0.00160025829, -0.0029857296, -0.0182355903, 0.00051471428, -0.000325566449, 0.0272914656, 0.00247101532, -0.00768588344, 0.00872305222, -0.00838248897, -0.0142726777, 0.0188083556, -0.000639039034, 0.00981440116, -0.0122680012, 0.00898621418, -0.00217495789, -0.000968475477, -0.0150312046, 0.0138082737, -0.0266103391, -0.0166566186, -0.00400548289, 0.00789099559, -0.0280964319, 0.00130033074, 0.0143965194, -0.015077645, 0.00319277635, 0.00236652466, -0.0267187, 0.00677255588, 0.00808062684, 0.0156426691, 0.0159135722, -0.00126453291, 0.0223533046, 0.00582826836, 0.00460920809, 0.00174731947, -0.00690413686, -0.00225816364, 0.00858373102, 0.00649004383, 0.0178640671, -0.00122293015, -0.00170474907, 0.0048917206, 0.00948931836, -0.0123376623, -0.00231234403, 0.0185451936, 0.0147603024, 0.00404805364, 0.0231892318, 0.0071750395, 0.00975248, -0.00621914119, 0.00244199019, -0.00759300264, -0.00242264, 0.0049149408, 0.0116874967, -0.0089939544, 0.00932677742, 0.0160219315, 0.00667967508, 0.0110992519, -0.0100001628, 0.00123647519, 0.00102362351, -0.00773232384, 0.0164244156, -0.000476739573, 0.022631947, 0.023096351, -0.0126317842, -0.00539095467, 0.0177092664, 0.0157974698, -0.0139088947, -0.00980666094, 0.011896478, -0.0202944484, 0.021176815, 0.0133516099, 0.0045434176, -0.0142184971, -0.0159445312, 0.00291026407, 0.0211303756, -0.00023413694, 0.0142881582, 0.0107354689, -0.0134444907, 0.00429960573, 0.00497299107, 0.0141720567, -0.00588244852, -0.00347722368, 0.00356042944, 0.0334061161, -0.0165482573, 0.0144894, 0.0104877865, 0.0113391941, -0.000967024243, -0.00109715411, -0.0283750743, -0.00688091666, -0.00278061791, -0.00512392214, 0.000959284196, 0.0209136531, -0.0166566186, 0.0131271482, 8.95549601e-05, -0.000876078499, 0.0106503284, -0.00568894716, -0.00825090799, 0.00741498126, -0.00142320432, -0.00264516682, 0.00944287796, 0.0224926267, 0.0207433719, -0.00160316075, 0.00380617636, -0.0314091779, 0.0175854247, 0.0181427095, 0.00890881382, 0.00686543668, 0.00520906318, -0.00767040346, -0.0109444503, 0.0105961477, -0.0276320279, -0.00455502747, 0.0140249962, 0.0109057501, -0.0185142327, -0.0329726711, 0.0220746621, 0.0217805393, 0.0169817, 0.0123841027, -0.00394743262, -0.0104955267, -0.0205266494, -0.00143481442, -0.0122447815, -0.00592501881, -0.0187773947, 0.00137676392, 0.0106890285, -0.00365331024, 0.00302830013, 0.0232047122, -0.020511169, 0.00191276334, -0.00748851197, 0.0337776393, 0.00801870599, -0.00816576742, 0.01809627, -0.00512005249, -0.0243347604, -0.0224926267, -0.00262388168, -0.0169817, 0.00783681497, 0.0158980917, 0.012956867, -0.0326940306, 0.00630041212, 0.0237155557, 0.00712472899, -0.00463242829, -0.00356816943, 0.0126395244, -0.0113778943, -0.0135838119, -1.68255683e-05, -0.00920293573, -0.00604886, -0.000234257881, 0.0245050434, 0.00385842193, 0.00125679292, 0.0178795476, 0.00247875554, 0.0030786104, 0.00310957059, 0.00297992467, -0.00149963738, -0.0214244965, -0.00514327269, -0.00585148856, 0.00797226559, 0.0115172155, 0.0120357992, 0.00145609956, -0.0209910534, -0.00779424421, 0.0222139843, -0.0161148123, 0.00612626085, 0.00743820146, -0.0105806673, -0.00142126926, -0.000786100223, 0.00335338269, -0.0173532236, 0.0111069921, -0.0221211035, -0.0107122483, 0.0092261564, 0.0321367458, 0.00758139277, -0.00675320579, -0.00946609862, -0.00581665803, -0.0132355094, -0.00413706433, -0.0220437031, -0.0114862546, 0.0306506529, -0.00388744706, 0.00127614301, -0.00732210046, -0.00281544821, 0.00985310134, -0.00764331315, -0.00326824212, 0.0123454025, 0.0121441605, 0.00724083, -0.00249810563, -0.00825864822, -0.0185142327, -0.00102072093, -0.0151473051, 0.0341491625, 0.00460920809, 0.00361460983, -0.0122525217, -0.0257434528, 0.0111224717, 0.0194120798, -0.0117416773, 0.0104103861, 0.0067802961, -0.0110528115, -0.0136302523, 0.0105419671, 0.0189631563, -0.0119738793, 0.015542048, 0.00972926058, -0.00740337139, -0.00740724104, -0.0100620836, -0.00828960817, -0.0186999943, 0.0044273166, 0.00505039189, -0.000860114582, 4.04766024e-06, 0.01809627, 0.00516649289, 0.00972152, 9.75973671e-05, -0.0284060352, -0.0090403948, -0.00475626951, -0.00479109958, 0.00670289528, 0.0179724284, -0.00679190597, 0.0146596814, -0.00780585455, 0.0123686222, -0.0158671308, -0.0136379926, 0.00142804184, -0.0111766523, 0.0220437031, 0.0210684538, 0.0175699461, 0.0139630754, 0.00977570098, -0.0115559157, 0.0209136531, -0.000124203842, 0.0261304565, 0.00227751373, -0.00769749377, 0.000160848198, -0.00274385279, 0.00467112847, -0.0125002032, 0.00111650419, 0.0100620836, 0.0122525217, 0.0067570759, 0.0108593097, 0.0179724284, -0.012724665, -0.0269973427, 0.0234059542, -0.00181407749, 0.0202015676, -0.00204918184, -0.0317033, 0.00842118915, 0.0240870789, -0.00761235273, -0.0119196987, -0.00464403816, 0.0290716812, -0.0113314539, -0.0172448624, 0.00611465052, -0.0119429184, 0.0120667601, -0.00662936503, 0.0010739339, -0.0266258195, 0.00501169125, -0.0141565772, 0.0145126199, 0.0171984229, -0.0210684538, -0.000683544378, -0.00309602567, -0.00470208889, 0.00646682363, 0.0254957713, 0.00295863952, 0.0199693646, 0.00165056868, -0.0186380744, -0.0422917083, -0.00229686406, 0.0100543434, 0.0255422108, -0.019783603, 0.0213161353, -0.00403644331, -0.00329339714, -0.00620366121, -0.0134135308, 0.00655196421, 0.00794130564, 0.0108283497, -0.009876322, 0.0130497478, 0.00207046722, 0.0016437961, 0.0153408069, -0.000248407683, 0.000552447047, 0.00972926058, -0.0099227624, -0.00946609862, -0.00712085888, -0.00104103866, -0.00852955, -0.00566959707, 0.00445440691, 0.000250584562, 0.0176628269, -0.00501169125, -0.00767427357, 0.0148841431, 0.00188083551, -0.0231737513, -0.000354107935, -0.00251939078, 1.05745603e-05, 0.00503878156, 0.0123995822, 0.0286846776, 0.0342420414, 0.000827219337, 0.00217495789, 0.0127324052, 0.0088081928, -0.0108515695, -0.00652100379, 0.000709183339, 0.00488398038, 0.00506974198, 0.00990728196, -0.00577795785, 0.00777102401, -0.0115249548, -0.00401709322, 0.00764718326, 0.0195978414, 0.0022020482, 0.00349657401, -0.0184523128, -0.0189476758, -0.0635923669, -0.0025387411, 0.0160528924, 0.0270592645, 0.000970894296, -0.00291413418, -0.00854503084, -0.0109212305, -0.0217031389, 0.0170900617, 0.0167804584, 0.00989954174, 0.00242264, -0.00306119537, -0.00602564, 0.00564637687, -0.00254841615, -0.000408772117, -0.00976796076, -0.0309292953, 0.0165327769, -0.0172448624, 0.0029276791, 0.00579343783, 0.00736854086, -0.0343349241, 0.00224655354, -0.00552640576, -0.011896478, 0.00226977374, 0.0165946968, -0.00813480746, -0.0173687041, -0.00932677742, 0.00314246607, -0.0105264867, 0.00934999716, -0.0141410967, -0.00954349898, 0.00957445893, 0.00582826836, -0.00746142166, 0.0131426286, -0.015309847, -0.000437797367, 0.011764897, 0.0108825304, 0.0127788456, 0.00270128227, 0.00377715123, -0.00791421533, -0.00153059768, -0.00139998412, -0.00728340028, -0.00103039597, 0.00879271235, 0.00438474631, 0.00118616479, 0.00833604857, 0.01332065, -0.0138469748, 0.0138624543, -0.0126550049, -0.00360686984, -0.0113778943, 0.0104103861, -0.0163005739, 0.0149847642, -0.00841345, 0.0315485, 0.00576634752, -0.0276939496, -0.000487865909, 0.00658679428, -0.0281273928, -0.00388551201, 0.012724665, 0.00805740617, 0.000399097044, -0.0114320749, 0.0228796285, -0.00239167968, 0.00359525974, -0.0034617437, 0.000628880225, 0.00965959951, 0.00330113736, -0.00741111115, -0.00757365255, -0.00300120981, 0.0148377027, 0.00619592099, 0.0295515638, 0.0144119989, -0.00847537, 0.0279416312, -0.0167804584, 0.0090868352, 0.0162076931, 0.00509296218, -0.000670966809, 0.00276320288, 0.000237644155, -0.0204956885, 0.00592888892, -0.0161922146, 0.000499234127, 0.00709763868, -0.0136999134, 0.00594436936, 0.0321057849, 0.00354881934, 0.00818898808, -0.0264710188, 0.0284679551, 0.00362235, 0.000418205338, 0.0039164722, -0.0121673802, -0.00930355676, 0.0127401454, -0.0455425382, 0.0141643174, -0.00818898808, 0.014381039, -0.0116487965, -0.017895028, 0.00579343783, -0.0356352553, -0.00123163767, 0.00778263435, 0.000971861766, -0.00418737484, -0.0228796285, -0.00234910939, -0.00818898808, 0.00386229204, -0.00103523361, 0.000640490267, 0.00726018, -0.00185471284, 0.0121441605, 0.0148841431, 0.00794130564, -0.0382049568, -0.0141875371, -0.00941965822, 0.0170281399, -0.00674933568, -0.0131503688, -0.000612916308, 0.0091332756, 0.0283131544, -0.012987827, -0.0236071944, 0.00438474631, -0.0106812883, 0.00284447358, 0.0263162181, 0.0044040964, -0.0189941172, -0.010240105, 0.00184600521, -0.0211922955, -0.00389131717, -0.000945255335, 0.0132122897, -0.00695831748, -0.0156504102, -0.00471369876, 0.00752721215, -0.0252171289, -0.0282047931, 0.0242883209, -0.010371686, -0.00965186, -0.0195978414, -0.00497686118, 0.00423768489, 0.0156039689, 0.00782907475, 0.0261614155, -0.0135373715, 0.00518197287, -0.00624236139, -0.00934225693, 0.0171829425, 0.0221520625, 0.0113546737, 0.00247682049, 0.00158477807, 0.0172293819, -0.000319519517, -0.0133051695, -0.00632363232, -0.0123376623, -0.00677642599, 0.0154956076, 0.00602564, 0.00592888892, 0.00253487099, 0.00884689298, -0.0186535548, 0.0106425881, 0.00536773447, -0.00977570098, -0.0108206095, 0.000157461924, -0.00884689298, 0.00246714544, -0.0352637321, 0.0130729685, -0.0176783055, 0.0103252456, 0.00294509437, -0.00843667, -0.0121054603, -0.00236265454, -0.00464790827, 0.00711698877, 0.00212658267, 0.00902491435, 0.00914101582, -0.00859147124, 0.0104258666, 0.00753882248, 0.0152556663, 0.0243812017, 0.0144739198, 0.00211110245, 0.013220029, 0.00845215, 0.0218115, -0.00524389325, 0.00386422686, 0.00530581409, -0.0172603428, 0.0208672117, -0.00228718901, 0.0141333565, -0.0111611718, -0.00747303199, -0.0139708156, -0.00241296506, 0.0116720162, 0.00882367324, -0.00773232384, 0.019752644, -0.00599854952, 0.00129936321, 0.0136689534, -0.0132742096, -0.00825090799, -0.0132587301, 0.0213625766, 0.0212542154, 0.0269354228, 0.0215947777, 0.00707828859, 0.00727566, -0.00506974198, -0.00794130564, 0.00213625771, 0.0130961882, 0.00505813165, -0.00259098643, 0.00985310134, 0.00700862799, -0.0149538033, -0.0157123301, -0.00521680294, -0.00510457205, -0.00486076, -0.0278951898, 0.0100311227, -0.0210529733, -0.0101007838, 0.0129800877, 0.00516262278, -0.0138624543, 0.00565411663, 0.000829638098, -0.0170281399, -0.0015857456, -0.00727566, -0.00367846549, -0.01332065, -0.0154956076, -0.00416802429, 0.0178795476, -0.00367653044, 0.00486463029, -0.00493042078, 3.41953601e-05, -0.00801096577, 0.0121673802, 0.00554188574, -0.0109212305, -0.0276165474, -0.00644747308, 0.00741498126, 0.000460533804, -0.00238393969, 0.00265484187, -0.0086224312, -0.0156736299, -0.0262542963, -0.0265639, -0.00158477807, -0.0171055421, -0.00563476654, 0.0148764029, -0.00369975064, 0.0175235048, 0.0120203197, -0.00301669, -0.000925421424, 0.0227093473, 0.00798000582, -0.000437797367, 0.00218656799, -0.0157200694, 0.0153330667, -0.00333983754, 0.00207627215, 0.0145281, 0.0293503217, -0.00532903383, -0.0134444907, 0.000528743141, -0.0221365821, -0.0180033892, -0.0124769835, 0.00344432844, 0.00756204268, -0.0140482159, -0.00177827966, -0.00544900494, 0.0122370413, -0.00553027587, 0.000156010661, -0.00553027587, 0.0159754921, -0.0232666321, 0.0359138958, -0.0209910534, -0.0191953592, 0.00280964328, 0.0198455248, 0.00164669857, -0.00285608368, 0.0142804179, 0.00951253902, 0.010007903, -0.000451100612, 0.00637007272, -0.0107973889, -0.00524002314, 0.00793356542, 0.00239748484, 0.02544933, -0.0187773947, 0.000732887303, -0.000588728639, 0.0146055007, 0.00554188574, 0.0256350916, 0.0203563683, -0.00674159592, 0.00159058312, 0.00219817809, -0.00688091666, 0.00529807387, 0.080868192, 0.012229301, 0.0394433662, -0.0205730908, -0.0102091441, -0.0187154748, -0.0127324052, 0.053685084, -0.0147912623, 0.00963638, -0.00868435204, 0.0163005739, 0.000724663492, 0.0155962287, 0.00665258477, -0.00357784447, 0.00444666669, 5.15198e-05, 0.0138237542, -0.0121906009, 0.00552253565, -0.016037412, -0.00417963462, 0.00679190597, -0.00934999716, -0.0109444503, -0.0346754864, 0.00653261412, -0.0109289708, -0.00352946925, -0.00367459538, 0.0158671308, 0.00713633886, -0.00258518127, 0.00340949814, -0.018823836, -0.00131484342, 0.0132742096, 0.00972152, 0.00813480746, 0.00741885137, 0.00858373102, -0.012987827, -0.0118345581, 0.0115094753, 0.00808836706, -0.00180440245, -0.0236071944, -0.00292574428, -0.0321367458, 0.00346561358, -0.00815028697, -0.00902491435, -0.0133593502, -0.0118655181, 0.0229105894, -0.00315214111, -0.000665161759, 0.00770523353, -0.0032527619, 0.00359719479, -0.0151395649, -0.0125156837, 0.00227364386, 0.0159135722, -0.00524002314, -0.0194585212, 0.016238654, 0.00205885712, -0.00261033652, 0.000732887303, -0.0135373715, -0.00749625219, -0.00232588919, -0.00330500724, -0.00557284616, -0.012856246, 0.0157200694, -0.0213935375, -0.00640103314, -0.00439248653, -0.0130110476, -0.0121906009, -0.016501816, 0.0238703582, -0.0139785558, -0.0190560371, -0.0146983815, -0.0199074447, -0.00845989, 0.00164573116, 0.015077645, -0.00261614169, 0.00933451671, 0.0199384056, 0.0238084365, -0.0173067823, 0.0247682054, 0.0170281399, 0.0114785153, 0.017693786, 0.0126395244, 0.000719342206, 0.00141062669, -0.00158864819, 0.0402792916, 0.00633524219, 0.0143655585, 0.0289478395, -0.0159754921, 0.0239787176, -0.00772845373, 0.00361267477, 0.0212851763, -0.00211110245, -0.0065016537, 0.00974474, 0.00361848, 0.0378643945, -0.0171210207, 0.00583213801, 0.0111921327, 0.00368427043, 0.000444086181, -0.0119351791, 0.0102788052, -0.00467886869, -0.00239167968, 0.00521293329, -0.00395710766, 0.0225081053, 0.0241335202, 0.011997099, -0.0088081928, 0.00574312732, 0.016037412, -0.020975573, -0.00438861642, -0.00539095467, 0.0131813288, 0.0311150569, -0.0323225074, -0.0029857296, -0.00682286639, -0.0198145639, -0.00632363232, -0.00717890915, -0.0123531418, -0.0123763625, -0.0117339371, -0.00266645197, 0.0155265685, 0.0187464356, -0.0232821126, -0.012856246, -0.00423381478, 0.0068499567, -0.0109212305, -0.00479496969, -0.01577425, 0.0093654776, 0.00450084731, 0.0100388629, 0.00272063259, 0.000823833048, 0.0062926719, 0.0061069103, 0.00828960817, 0.0111998729, 0.00455889758, 0.0184677932, -0.00111747172, -0.00107199885, -0.00320825656, -0.00357784447, 0.00875401217, -0.00242651, -0.0023181492, 0.0141023966, -0.0101007838, 0.000999435782, -2.23433872e-05, 0.000881883549, 0.0510534607, 0.00355075439, 0.012461503, -0.0231582709, 0.012360882, 0.0173067823, 0.01809627, -0.0203873292, 0.0187309552, 0.000371764938, -0.0132742096, -0.000455454399, -0.000666129228, 0.0105806673, 0.016703058, -0.028529875, -0.00393582275, -0.00136805628, 0.0066177547, 0.00606047, 0.00755043235, -0.00872305222, 0.0158980917, 0.0161148123, 0.00335531775, 0.00163508847, -0.0122912219, 0.000214061147]
23 Jan, 2025
Real-time Transport Control Protocol (RTCP) 23 Jan, 2025 Real-time Transport Protocol (RTP) allows only that type of message, which carries data from the source to the destination. But in some cases, we need some other type of message in a session. The messages can control the transmission and quality of data as well as also allow the recipients to they can send feedback to the source or sources. A protocol designed for this purpose is known as Real-time Transport Control Protocol (RTCP). RTCP and RTP RTCP (Real-Time Transport Control Protocol) and RTP (Real-Time Protocol) are closely related network protocol standards used for managing media streams over IP networks, particularly in streaming media systems and video conferencing applications. Both protocols are typically used together, with RTP carrying the media streams and RTCP monitoring transmission statistics and quality of service, providing necessary feedback to maintain the performance and quality of the streaming experience. They do not provide any encryption or authentication themselves, but they can be used in conjunction with security protocols such as SRTP (Secure RTP) to enhance privacy and data integrity in sensitive applications. RTCP (Real-Time Transport Control Protocol) RTCP works in conjunction with RTP to provide control services for media streaming by offering feedback on the quality of service being provided. RTCP collects and sends control data to participants in a streaming media session, with the primary function of providing feedback on the quality of the data distribution. This protocol is used to monitor transmission statistics and quality of service and aids in controlling congestion. RTCP provides a standard way to carry statistical and control data, such as sender or receiver reports that describe the quality of service, bandwidth, media characteristics, and network delay. RTP (Real-Time Protocol) RTP is used primarily for delivering audio and video over IP networks. It enables the transmission of data in real-time, making it crucial for applications such as video conferencing, streaming media, and telephony. RTP does not provide any mechanism for guaranteeing timely delivery or quality of service, as it operates over UDP (User Datagram Protocol), which is connectionless and does not guarantee delivery. RTP packets contain sequence numbers and timestamp information to allow the receiver to reconstruct the timing and sequence of the incoming media stream. Working of RTCP Real-Time Transport Control Protocol The above diagram shows the flow structure of RTP and RTCP protocols. RTCP has five types of messages that are given below: Sender Report (SR): The sender report is sent after a fixed interval by the active sender in a conference to report transmission as well as statistics of reception for all RTP packets transmitted during the period. The report sent by the sender contains the detail of absolute time-stamp, that is the number of seconds elapsed since midnight on January 1, 1970. After receiving the RTP messages from the receiver, these details of absolute timestamps help the receiver in the synchronization process. This is very important in audio-video transmission for finding the relative timestamp. Receiver Report (RR): Passive participants are those participants that do not send RTP packets, and for them the Receiver report is used. This report is used to informs the sender and other receivers about the quality of service. Source Description Message (SDES): The source sends a source description message within a fixed interval to give some extra information about itself. It contains the details about the name of the source, its mail ID, contact number or source controller. Bye Message (BYE): To shut down a stream, a source sends a type of message which is known as Bye message. It is used by the source to announcing for leaving the conference. This message is a direct announcement for other sources about the absence of a source. It can be used for combining different media file. Application-Specific Message (APP): If we want to make our application extensible then RTCP allows application-specific RTCP packets which is introduced by RTC 3611. It can be used to extend the type of application. History of RTCP The Real-time Transport Control Protocol (RTCP) was initially developed as part of the RTP specification in RFC 1889 by the Audio-Video Transport Working Group of the Internet Engineering Task Force (IETF) in January 1996. This foundational standard was revised with RFC 3550 in 2003, which addressed protocol scalability, enhanced security, and provided more detailed mechanisms for reporting and congestion control. RTCP, alongside RTP, has been essential for the standardized transmission of audio and video over the internet, particularly for applications like streaming media and interactive communications. Its development reflects its crucial role in multimedia transmissions across various network types, from small-scale media streaming to large-scale broadcasts and conferencing systems. RTCP helps in adjusting the flow of data and reports on network characteristics like packet loss, delay, and jitter, enhancing the overall quality of multimedia communications. Conclusion Real-time Transport Control Protocol (RTCP) is a fundamental component of modern multimedia streaming technologies, working in tandem with RTP to ensure the effective delivery of audio and video content over IP networks. By using a variety of packet types, such as Sender Reports, Receiver Reports, Source Description, Bye, and Application-Defined packets, RTCP provides critical feedback and control mechanisms that help manage network conditions and participant interactions. As streaming media continues to evolve and demand for real-time communication grows, the role of RTCP in maintaining high-quality, synchronized multimedia experiences remains crucial, ensuring that users enjoy reliable and seamless media consumption and interaction. Real-Time Transport Control Protocol (RTCP) – FAQs How does RTCP work with RTP? RTCP works alongside RTP by providing control and monitoring functions for streaming media. While RTP carries the actual media streams (audio and video), RTCP is responsible for the delivery reports, participant information, and session control messages necessary for managing the transmission. What types of information does an RTCP packet contain? RTCP packets contain a variety of information, including sender and receiver reports that provide feedback on the quality of the media stream, source descriptions, and goodbye messages that notify participants when a user is leaving the session. Why is RTCP important for streaming media? RTCP is crucial for streaming media because it allows for effective management and adaptation of the stream based on network conditions. It provides metrics such as packet loss, jitter, and network latency, which are essential for adjusting stream quality to maintain smooth playback and synchronization. How does RTCP improve media streaming quality? RTCP improves streaming quality by enabling the dynamic adjustment of streaming parameters in response to network conditions reported via RTCP messages. This adaptive behavior helps in optimizing the streaming experience even under varying network conditions. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System/Introduction of System Call/How much Stack size required for BIOS interrupt call?/Difference between Interrupt and Polling/Difference between Difference Engine and Analytical Engine/Difference Between Store‑and‑Forward Switching and Cut‑Through Switching/Difference between Message and Packet Switching/How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?/Types of Node Devices in a Computer Network: End devices and Intermediary Devices/Types of Errors in Computer Network/Difference between Storage Area Network (SAN) and Network Attached Storage (NAS)/Difference Between Network Security and Network Administration/Internet Administration/Internet Telephony Protocol | H.323/IPsec (Internet Protocol Security) Tunnel and Transport Modes/Real-time Transport Control Protocol (RTCP)
https://www.geeksforgeeks.org/real-time-transport-control-protocol-rtcp?ref=asr10
PHP
Real-time Transport Control Protocol (RTCP)
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, Difference between Difference Engine and Analytical Engine, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Difference between Interrupt and Polling, Types of Node Devices in a Computer Network: End devices and Intermediary Devices, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, Types of Errors in Computer Network, jQWidgets jqxToolBar close Event, How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, Difference between Message and Packet Switching, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, Difference Between Network Security and Network Administration, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, Introduction of System Call, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Difference Between Store‑and‑Forward Switching and Cut‑Through Switching, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, IPsec (Internet Protocol Security) Tunnel and Transport Modes, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, Internet Telephony Protocol | H.323, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, Difference between Storage Area Network (SAN) and Network Attached Storage (NAS), jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, Real-time Transport Control Protocol (RTCP), unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, Internet Administration, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How much Stack size required for BIOS interrupt call?, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0185560118, -0.0322208181, -0.0247770138, 0.0250521433, 5.63635e-05, 0.0180057511, -0.00513194455, 0.0226523951, -0.0177917611, 0.0331379175, 0.0220562797, -0.0188005716, 0.0275283158, -0.0477198251, 0.0064311712, -0.00835326221, -0.00385182444, -0.00525040366, -0.00060232525, 0.0170427952, 0.0211086087, 0.0169205144, -0.0284148473, 0.00577391544, -0.0217505805, 0.00680565415, 0.00369515293, 0.0136648053, -0.0444182605, -0.00129731582, 0.0467110127, 0.0267029256, 0.00691647036, -0.0240739025, -0.0127400625, -0.00881945528, 0.00804756209, -0.00380788, -0.0230498072, -0.017593056, -0.0236153528, 0.0218575746, -0.0071189967, -0.000331732648, -0.0292249527, 0.0207876246, 0.00896466244, -0.00997347385, 0.00823862478, -0.038548816, 0.00196794607, -0.0160492677, 0.0415141061, 0.046680443, -0.001099566, -0.00718777953, 0.0412695482, -0.013588381, 0.00682093902, -0.0352472514, 0.0423395, 0.0153690847, -0.0265806448, -0.0259998143, 0.0208029095, -0.0174249206, -0.0407498553, -0.00229084189, -0.0028659408, -0.023187371, -0.0663369745, 0.00667955261, -0.0171039347, -0.0104473094, 0.0349415503, -0.00277614128, 0.0280174371, 0.060589809, 0.027818732, 0.016324399, -0.00635092473, 0.0724509805, 0.0101568941, 0.0115707582, 0.0308604501, -0.0110204974, -0.0311202966, -0.0518467799, 0.0696385428, 0.0195495375, -0.0154531524, 0.0152238775, 0.0130075496, -0.02159773, -0.0130075496, -0.00863603503, 0.0202526487, -0.0157435685, -0.0552706234, 0.0322513878, 0.0228052456, -0.010011686, -0.0194272567, -0.0113338409, 0.0306006055, -0.0270850509, -0.0144366995, 0.0218728594, 0.0134813851, 0.0667649582, 0.00260036369, 0.0231568012, 0.0195495375, 0.0330462083, -0.0509602502, -0.0334130488, -0.0269627701, -0.0146736167, -0.0161562636, -0.00601847563, -0.0341161601, 0.0068706153, -0.00855196733, 0.0368980318, -0.0221785605, 0.0299127791, -0.015804708, 0.0349415503, -0.000760429597, -0.00238255202, -0.0341773, -0.0107377246, -0.0336881801, -0.000935729651, -0.00603758171, -0.0144290561, -0.0171192195, 0.00693939812, -0.00220677443, -0.024440743, 0.0248228684, 0.0226065405, 0.0231415164, 0.0167982336, 0.00262138061, -0.00129158399, -0.0114714056, 0.0275588874, -0.0293319486, 0.0442042723, -0.00422630738, -0.0165689588, 0.00221632747, 0.00776861, -0.0176389106, -0.00394353457, -0.000322657172, 0.029286094, -0.0156977121, -0.0219492856, -0.00277805189, -0.00908694323, 0.00942321308, -0.0039282497, 0.0304324701, 0.0173484944, 0.0409027077, -0.0198246669, -0.0327405073, 0.0312578604, -0.0158811323, 0.0199010931, -0.00732916594, 0.0348498411, -0.000710275664, -0.0306464601, -0.00784885604, 0.0285982676, -0.0389462262, 0.0240586177, -0.0411472656, -0.0243643187, -0.00739412708, -0.0192132667, 0.0208334792, 0.0208029095, 0.0696385428, -0.00741705485, -0.0136265932, -0.00991233345, -0.0106612993, 0.0517550707, 0.0396187641, 0.0592753, -0.0102562467, 0.00811634399, -0.0241808984, 0.00301305903, 0.0215060189, -0.000172314685, -0.0492788963, -0.00829976425, -0.0095760636, 0.0055943164, 0.0258775353, -0.0197940972, -0.00190967193, 0.0241197571, 0.0249910038, -0.0213990249, -0.0515716486, -0.0468944348, 0.0165689588, 0.00188578898, 0.0391602144, -0.00933914538, -0.00975948386, -0.0245018825, -0.0316399857, 0.0288581122, 0.0427063406, 0.0168746598, -0.0176541954, 0.0131145446, -0.0918323845, -0.0350026898, 0.00312769669, -0.0419726595, -0.0267182104, 0.0126254242, 0.0140469307, 0.026764065, -0.0138405832, -0.0116853956, -0.0384265333, 0.00171383261, -0.0123426514, 0.0191215575, -0.0292249527, 0.0105084497, -0.0379068442, 0.0228969567, -0.0196259618, -0.00686679408, -0.0355529524, 0.0079864217, 0.0182503108, 0.0424312092, -0.0226676818, -0.0101568941, -0.03582808, 0.0243796036, -0.000362063845, 0.00247044093, -0.00986647885, 0.00852904, 0.0111962752, -0.0263360851, 0.0117923906, -0.01770005, 0.0179751813, -0.00218766811, 0.00842968747, -0.00484535052, -0.022331411, -0.0123502938, 0.0144137712, -0.00734062959, 0.0110739954, -0.0142914914, 0.0354612395, -0.0258775353, -0.01306869, -0.00869717542, -0.019702388, -0.0231568012, -0.0218422897, -0.00537650473, 0.0719618648, 0.011226845, -0.00613693474, -0.0431037508, 0.00310094794, 0.0118841007, -0.0144749116, -0.0185101554, -0.0313648544, 0.0219798554, -0.048575785, -0.0039206068, -0.0272837561, 0.0258928202, -0.0178223308, 0.00555992499, 0.0505934097, 0.012174516, -0.0370814539, 0.0308604501, -0.0103785265, 0.0188464262, -0.0135501679, 0.013320893, 0.00610254332, -0.00218766811, -0.0197176728, -0.00920158066, 0.00716103055, 0.00799406413, -0.001224712, -0.0322513878, 0.0334436186, -0.0490954779, -0.0557291731, -0.0112650581, 0.00446322514, -0.00376011431, -0.0172262155, -0.0145819066, -0.0203137882, -0.0323125273, 0.0204513539, 0.0608038, -0.0235542115, 0.0531307198, 0.0168746598, -0.0224078353, 0.0255259797, 0.0382431149, -0.000294236583, 0.00208640494, -0.0186324362, 0.0156671423, -0.024349032, -0.0193814021, 0.0136800911, -0.00464664539, -0.00943849795, 0.011639541, -0.00171383261, 0.0279868674, -0.007902354, -0.0239516217, 0.0204972085, -0.0186630059, 0.0161409788, 0.0184184462, 0.0216894392, 0.016446678, 0.0222244151, 0.0251132846, 0.00158582057, 0.0277575925, 0.0116624683, 0.0247617289, 0.0388239436, -0.00200615847, -0.00685533043, -0.0141768539, 0.0029194383, -0.0189992767, 0.0279410128, 0.00954549387, -0.0265653599, 0.0405664369, -0.0350332595, 0.00869717542, -0.0185712967, -0.00537650473, 0.0174402054, 0.00495998841, -0.036989741, 0.0138405832, -0.00262520183, 0.0258469637, -0.0148799643, -0.00721834973, -0.0161868334, -0.0171650741, -0.0349721201, 0.0157741383, 0.00175300043, 0.000864081143, 0.0200386588, 0.0125719272, -0.0336881801, 0.0235694963, 0.0270391963, -0.0335658975, -0.0209863298, 0.0148493946, -0.0265195053, 0.0407498553, -0.00465810904, 0.0262290891, -0.0126712797, -0.0179293249, 0.00505169807, 0.0158352777, 0.00611782819, -0.0245935936, 0.0259233899, 0.0240280479, -0.0261068102, 0.0447545312, -0.0469250046, 0.0291026738, -0.0438068584, 0.00276276702, 0.0128547, 0.00696232542, 0.0151933078, -0.0241503268, -0.0199775174, -0.0371731631, 0.016752379, 0.0468944348, -0.0106001599, 0.0510825291, 0.0103785265, -0.0131451152, 0.00949963834, 0.0196106769, -0.0159728434, 0.0239669066, 0.0551177748, 0.0359809324, 0.00450908, 0.00343912886, 0.00716867344, -0.0280480068, 0.043868, -0.0130916173, -0.0048415293, -0.00385946687, 0.00727184722, -0.0547203645, 0.00125050545, 0.00999640115, -0.0291179586, 0.0264583658, -0.0364394821, 0.0328627862, 0.0142227085, -0.0345135704, -0.049003765, -0.022545401, -0.0240433328, -0.043501161, -0.0255871192, 0.000787178404, -0.0149793169, 0.0185560118, -0.00358051527, 0.0266876407, -0.0326182283, -0.0130763324, 0.0276353117, -0.0332907699, 0.0279868674, 0.0166300982, 0.0154607948, 0.0110281399, 0.00724127702, -0.00495234551, 0.026443081, -0.00186954869, -0.0159269888, -0.0310591552, 0.00345823518, 0.0142991338, -0.0120751634, -0.0438374318, 0.0463136025, 0.0366534702, 0.0322208181, 0.000762817916, 0.00327672553, -0.003463967, -0.034483, -0.0513882302, 0.0181433149, 0.0388239436, 0.030967446, -0.0150481, 0.0163091142, 0.0109822853, 0.00104224717, -0.00787178427, 0.0142150661, -0.0456410609, 0.00728331087, 0.0048720995, -0.0298974942, -0.00351937534, -0.0465581641, -0.00526950974, -0.0101110395, -0.0119834533, 0.0104625942, 0.00402378105, -0.00862839259, 0.0199469477, -0.0377845615, 0.0657255724, -0.0573188141, -0.0182197411, 0.0265959296, 0.0372648723, -0.0487592071, -0.0428897589, -0.00209022616, 0.0730012432, -0.0132979648, 0.0327405073, -0.00762722362, 0.0144290561, -0.0260609556, -0.00627449946, 0.00655727228, -0.0038804838, 0.00837618951, 0.0113109127, 0.00265004, -0.00977476873, -0.00553699769, -0.0150557421, 0.012908197, 0.00350409024, -0.00196603546, -0.0364700519, -0.0280785765, 0.0182808805, 0.020757053, -0.0159881283, -0.0222549848, 0.00290606404, -0.00472307, 0.019916378, -0.0329545, -0.00533829257, -0.0217658654, 0.0439597107, -0.0240739025, 0.000643403735, 0.0042530559, 0.0172873549, -0.00193642068, -0.0186935756, -0.0199775174, 0.0046160752, 0.0317928381, 0.0112956278, -0.0071189967, 0.0219645705, -0.00583123416, 0.0125107868, 0.00635474594, -0.0222244151, -0.00308375224, 0.012480217, -0.0133438203, 0.0362866297, 0.0259692445, 0.00618279, -0.0033378657, -0.0070960694, 0.0298363548, 0.013015192, 0.0102715315, 0.00111102976, -0.00677508395, -0.00602611806, 0.00727948966, -0.0107912226, 0.0332296267, 0.0162632577, 0.0119987391, -0.00200233725, -0.0167370941, 0.00790999644, -0.0178834703, -0.0109211449, 0.0206347741, -0.00521219103, 0.023279082, -0.00635856716, 0.00273028621, 0.0104625942, -0.00915572513, -0.0240891874, 0.0142456368, -0.000643403735, -0.00439062109, -0.00128012022, -0.000325284287, -0.010279174, -0.00657637883, 0.0328933559, 0.00523511833, -0.0195495375, 0.0176389106, 0.0551483445, 0.0091480827, 0.019488398, -0.00297484663, -0.00836090464, 0.00442119129, 0.00753169227, -0.0046160752, 0.0148723219, -0.00728713209, 0.00397410477, 0.0324959457, 0.0312425755, -0.0208029095, -0.0132979648, 0.0266723558, 6.28118723e-05, -0.0326182283, -0.0259539597, 0.0325265154, -0.029928064, 0.00426452, -0.000768072146, 0.0228969567, -0.000224021045, -0.0145513369, -0.0547203645, -0.0263972245, -0.0258011092, -0.0244560279, 0.0100881113, 0.0138329407, 0.00109574466, 0.00255641923, -0.0269169156, -0.00829212181, -0.0108676478, -0.0188311413, -0.00826919451, -0.0181127451, 0.00984355155, -0.0290109627, 0.112314306, -0.0132138981, 0.0439902805, -0.00131546683, 0.0604369603, -0.00514723, 0.0233555064, -0.0125719272, 0.0262596607, 0.0156671423, 0.0331684873, -0.0136571629, -0.036989741, 0.0346969888, -0.0232943669, -0.00875067245, -0.0017673301, 0.00765015138, -0.00799406413, 0.046986144, 0.000556947838, -0.0104625942, -0.0184643, 0.0251897089, 0.0118841007, -0.0205583479, 0.0314565673, -0.0163702536, -0.0258469637, 0.0383959636, 0.00208449434, -0.0197176728, -0.0215824451, -0.0190145615, 0.024868723, 0.0130381202, -0.0148417521, -0.0222549848, -0.0108752903, 0.000192256863, 0.0242878925, 0.00266150362, 0.00141099817, -0.0115249036, 0.00577391544, -0.0142914914, -0.0239516217, -0.00311432243, -0.00179312367, 0.0165231042, 0.00160588219, -0.0207111984, 0.0382125452, -0.0271309055, -0.019809382, 0.00284492387, -0.0328627862, 0.0057548089, -0.00600319076, 0.00397792598, -0.0120445937, -0.0338104591, -0.00280480064, -0.00179216836, -0.0205124933, -0.0453047901, -0.0179904662, 0.0196871031, -0.0165078193, -0.00729477452, 0.0130304778, 0.0279715825, 0.00862839259, -0.000524467148, -0.0134508153, -0.0119223138, -0.00413077604, -0.00199660542, 0.0245171674, 0.0399550349, -0.022973381, -0.0365617611, 0.0256329738, 0.00772275496, 0.0187241472, -0.0434705913, -0.00923215, 0.0160492677, -0.00540325372, 0.0261985194, -0.0118229613, 0.0005946827, -0.00457022, -0.00104606838, -0.00134126027, 0.0336576104, -0.0233707912, 0.0131145446, -0.00465428783, 0.00118267827, 0.0176694803, -0.00475364039, -0.0279715825, 0.00903344527, 0.0317316949, -0.000128250846, -0.0219798554, -0.00602611806, -0.00505551975, -0.000983973, -0.0518773496, -0.0410249867, 0.0241197571, -0.00247426215, -0.0140469307, -0.0213990249, -0.00878124218, 0.00971362833, 0.0537726916, 0.00829976425, 0.00614457717, -0.0104167396, -0.0144366995, -0.0405664369, 0.0329545, 0.0165995285, -0.0179904662, 0.0214448795, 0.0236153528, 0.0311050098, -0.0200997982, -0.0104167396, 0.0173943508, 0.041177839, -0.0141692115, 0.0118076764, -0.0136648053, -0.0137947286, 0.0131604, -0.0508685373, 0.0116471834, -0.00672158645, -0.0374177247, 0.0364394821, 0.0129540525, -0.0241197571, 0.00870481785, 0.0124267191, 0.0514493696, 0.0124878595, -0.000385707855, 0.0143526318, -0.000775237, -0.0165689588, 0.0344218612, -0.0333824791, -0.000490553502, 0.0247770138, 0.00671776524, 0.00351746473, -0.0050134859, 0.0124190766, -0.0254648384, -0.0251285695, -0.0624240115, -0.0228205305, 0.00704639312, -0.00549496384, -0.0129922647, -0.00259272102, 0.0162632577, -0.0125948545, -0.0213531703, 0.0119299563, 0.0136342356, -0.00596879935, -0.00170141354, -0.00408109976, -0.00149315514, 0.00445940392, -0.0153920129, -0.0151703795, 0.00461225398, 0.00898759067, 0.0166759547, 0.00526950974, 0.0192896929, -0.0168899447, -0.00191349315, -0.0115172612, -0.0202373639, -0.0263360851, 0.0116318986, 0.0166300982, -0.0023787308, -0.00863603503, -0.00664898241, -0.0191215575, -0.00674069254, 0.00185044238, 0.00188196776, -0.00547967898, -0.0074285185, -0.00705785677, 0.00627832115, 0.0143984864, -0.0154913655, 0.0141921388, -0.00778389536, -0.0100422567, 0.0128929121, -0.00731388107, 0.008009349, -0.00629742723, -0.00693557691, 0.0242420379, -0.00284874509, -0.00773421908, 0.0142685641, -0.0334741883, 0.048270084, -0.0198246669, 0.0259233899, -0.0048109591, -0.0185712967, -0.018754717, 0.000451863336, -0.000741801, -0.0299433488, 0.00839911681, -0.00525422487, -0.00926272105, -0.00146067445, 0.0109899277, 0.00423777103, 0.012801202, 0.0111580631, 0.0398633257, 0.0126101393, -0.0111580631, 0.0228663869, 0.0213378835, -0.012747705, -0.0337798893, -0.0340855904, -0.0128776273, -0.0258928202, 0.000907547888, 0.0330156386, -0.0198399536, -0.00604904583, -0.000784312433, 0.0171497893, -0.0234777872, -0.00997347385, -0.00769218523, -0.00311241159, -0.013015192, -0.00395881943, -0.0115784006, 0.0103555992, 0.0362866297, -0.0613846295, -0.014803539, -0.0147271147, 0.0280632917, -0.0487897769, -0.0104014548, 0.000719828822, -0.0177611895, -0.0102562467, -0.00654580863, 0.0199775174, -0.038976796, -0.019075701, 0.0197176728, 0.0229275264, -0.0204972085, 0.011226845, 0.00695850421, 0.0168135185, 0.0139170084, -0.0290415324, -0.0335964672, 0.00488356315, -0.00441354886, 0.00901051797, 0.00555992499, -0.00585798314, -0.0184031613, 0.00252202782, -0.0214907341, 0.0278645866, -0.0224078353, -0.000196078108, -0.0257858243, -0.0313954242, -0.0165231042, -0.00426452, 0.014123356, -0.0127247768, -0.00432566, 0.00577009423, 0.0145436944, 0.0341161601, -0.0065381662, -0.0224384051, -0.0518467799, -0.00793292373, -0.00537268352, -0.0302490499, -0.006507596, -0.0543229505, -0.0384265333, -0.0401995964, 0.0180057511, 0.0240891874, -0.00010227826, 0.00134030497, 0.00350026903, 0.00287358323, 0.00766543625, 0.0285371281, 0.00379068428, -0.0236764923, -0.00401996, 0.000190704479, 0.00793292373, -0.0164619647, 0.000159059709, -0.00775332516, 0.00422248617, -0.00373527617, -0.0299892034, -0.0315482765, 0.019702388, 0.00694704056, 0.00397792598, -0.0246853027, -0.0107759377, 0.00213226, -0.001837068, -0.00852904, -0.0195036829, 0.00067445141, -0.0321596786, -0.00842204504, -0.0170275103, 0.0165231042, -0.0306464601, -0.00642735, -0.0161256939, -0.00697761029, 0.0170122236, 0.0231109466, 0.00526950974, -0.0442959815, 0.00763486605, -0.00555992499, -0.01748606, 0.0354306698, 0.027604742, 0.0217658654, 0.00847554207, -0.00572806038, -0.0315177068, 0.000923310581, -0.0454882123, -0.0398021862, -0.0193202626, -0.0272531863, 0.0127018495, 0.0137565155, -0.00268252054, -0.00915572513, -0.00499820057, 0.00839911681, -0.0062592146, 0.014482554, 0.00505934097, 0.0095760636, 0.023065092, 0.0287511181, -0.00114542095, -0.00663369754, -0.0151321674, 0.0160798393, 0.0166148134, -0.0101951063, -0.0096601313, 0.00244369218, 0.0101798214, -0.00949963834, 0.00421866495, -0.0620266, 0.0143373469, 0.00101072178, 0.00201571174, -0.00960663334, -0.0100193294, -0.00725274067, -0.0173637792, -0.0186782908, -0.00826155208, 0.0308451653, -0.0101186819, -0.00593440793, 0.0149487471, -0.0225759707, 0.00249718968, 0.0189228524, 0.00285256631, 0.00231950148, -0.00864367746, 0.0154531524, 0.0366534702, -0.0154455099, -0.0249298643, -0.0444794, -0.00266150362, -0.0164619647, -0.030661745, 0.0146354046, 0.00758136855, -0.00863603503, -0.00322131743, 0.00403906591, 0.0208793338, -0.0160645526, -0.0234472174, -0.0256329738, -0.00107377244, 0.0190145615, -0.0229886658, -0.0252814181, -0.000693557668, 0.0115784006, -0.00791763887, 0.00254877657, 0.019488398, -0.00208831555, -0.0462218933, -0.00174153666, 0.04319546, 0.00125050545, -0.0067941905, 0.00580830686, -0.000309999275, 0.0039282497, 0.00666044652, 0.00704639312, -0.00533064967, 0.0299433488, 0.0122432988, 0.0988023505, -0.0170580801, -0.00749730086, -0.0388545133, 0.000546439376, -0.00114255503, -0.00960663334, 0.00290033198, 0.0359503627, 0.00979769602, 0.0432566, -0.0145284096, 0.0040352447, 0.011226845, -0.0205583479, 0.0143373469, 0.00227937824, 0.0114026228, -0.00406199321, 0.0038976795, -0.00165555847, 0.0270391963, -0.00448233122, -0.020436069, 0.0237529166, -0.0293778032, -0.0105008073, -0.0508685373, -0.0155219352, -0.00759665389, 0.0167065244, -0.0124114342, -0.00705785677, 0.00330538512, 0.00965248886, 0.0400161743, 0.0171650741, -0.000156671435, -0.00173676014, 0.0210321844, -0.00788706914, -0.00214372366, -0.0147194723, -0.000908980903, -0.00156671426, -0.00747437356, 0.0136571629, -0.0246394482, -0.0269016307, 0.021934, 0.00518926326, -0.0169052295, 0.0334436186, -0.00097776344, -0.00637385249, 0.0245935936, -0.0261220951, 0.00884238258, 0.0275130309, -0.00565163512, -0.0126254242, -0.00770364888, 0.00113873382, 0.0228663869, 0.00492559699, 0.0143602742, -0.0130381202, 0.0274824612, -0.00448997412, 0.011800034, -0.000409829518, 0.0100498991, -0.00312005426, -0.000697856594, -0.0296376497, 0.0113491258, -0.00632035453, 0.00602611806, 0.0216435846, -0.00574334525, -0.00641588587, 0.0108065074, 0.0123197241, 0.020650059, -8.23958e-06, -0.00991233345, 0.00484917173, 0.00733298715, 0.0193661172, 0.00414606091, 0.0221632756, 0.00885766745, -0.0140316458, 0.0109211449, -0.0144519843, -0.023279082, 0.0236917771, 0.00540707493, 0.00960663334, -3.2615003e-06, -0.0140851438, 0.00352319656, -0.00930093322, 0.00596879935, 0.00973655656, -0.0162174031, 0.0169052295, 0.00908694323, 0.00582359172, 0.000869335374, 0.0187241472, -0.00885766745, -0.00409256341, -0.0161562636, 0.00990469102, -0.0135960234, 0.025082713, 0.0292555243, -0.00406963611, 0.0182961654, -0.0384265333, 0.0164008234, 0.00541089615, 0.00359388976, -0.019075701, -0.0115249036, -0.00286785141, -0.00289651076, -0.0142074237, 0.00307993102, 0.0145436944, 0.0342078693, -0.00942321308, -0.0103785265, 0.0145436944, 0.0105390195, 0.0353695303, 0.016018698, -0.000604235858, -0.00334741874, 0.0109975701, 0.0165078193, -0.00975948386, 0.00500202179, -0.00396264065, 0.00519308448, -0.00287358323, -0.00200042664, -0.00645791972, -0.00409256341, -0.0150251724, 0.00733680837, 0.019274408, -0.0193814021, 0.028980393, -0.01328268, -0.00259463163, -0.00132215407, -0.00875831489, -0.0247617289, 0.00476892525, 0.0138100134, 0.0155219352, -0.00296720397, -0.0277881622, -0.00601465441, -0.0168135185, -0.00819276925, -0.0135119557, -0.0106765851, -0.00252967048, 0.0147118289, 0.00468485802, -0.0103479568, 0.0243948884, 0.0180974603, -0.00262711244, -0.0222549848, 0.0348192714, 0.00117216981, -0.012908197, -0.0347887, 0.00316208811, 0.00868953206, -0.00532682845, 0.00982826669, -0.0423089303, 0.00986647885, 0.0090793008, 0.0191215575, -0.0125566423, 0.0133132506, 0.0171192195, 0.000326239591, -0.00212461734, 0.0132138981, 0.010172179, -0.0107147973, 0.00107663847, 0.00553317647, -0.0114943329, -0.00389385829, -0.00680183293, 0.028980393, 0.011800034, 0.0174707752, -0.024135042, 0.00643881364, 0.030875735, -0.00669865916, 0.00641206466, 0.0145284096, -0.00165842439, -0.00280097942, -0.0153079452, 0.00718013709, 0.00485299295, 0.0018867444, 0.00098779425, 0.00248954725, -0.0236459225, -0.0199010931, -0.00294618704, 0.010852362, -0.0286899786, -0.02202571, 0.0505628362, 0.0252355635, 0.00249336846, -0.0106001599, -0.00577009423, 0.0253425594, 0.0199316628, 0.0147118289, 0.0174096357, -0.0104778791, 0.0212156046, -0.00535739865, -0.0103326719, 0.0185865816, 0.00936207362, 0.0230192356, 0.0166606698, -0.00966777373, 0.0115401885, 0.000109562527, 0.00138616, 0.00310094794, -0.0124190766, 0.0197482426, 0.000208855432, -0.0121592311, 0.00664516119, -0.0171345044, 0.00939264335, 0.0185712967, 0.00548732141, -0.00456639891, 0.00820041168, -0.0267029256, 0.0151627371, -0.012747705, -0.00135654525, 0.00933914538, -0.0114179077, -0.0109822853, -0.00284301327, 0.00298057846, -0.00660312735, -0.00681329658, -0.00440208521, 0.0488509163, 0.0243031774, 0.0197940972, 0.0038269863, 0.00275703496, -0.00129158399, 0.000643403735, -0.0132979648, 0.00858253706, -0.00911751296, 0.0447239615, -0.0019755885, -0.0280938614, -0.00359197916, 0.0113338409, 0.00379259489, -0.00829212181, -0.0126254242, -0.0117541784, 0.0104014548, 0.0273143258, 0.0169358, 0.00634328229, -0.0117771057, 0.0343301482, 0.0150022451, 0.0267487802, -0.0319151171, 0.00337225688, 0.0216894392, -0.00449761655, -0.0135272406, 0.019702388, -3.97052208e-05, 0.0137030184, 0.00766161503, -0.0182655957, 0.0313648544, 0.000988749554, 0.0203443579, -0.0365923308, -0.000788133708, 0.00960663334, 0.00156098243, 0.0146354046, 0.0357975103, 0.00394353457, -0.00741323363, -0.0109899277, -0.0140545731, -0.012801202, -0.000669674831, 0.027604742, 0.00311623304, -0.0208946187, -0.0152391624, 0.0123885069, -0.0104320245, 0.0128241293, 0.00469632167, -0.0420338, 0.00826155208, -0.00726038311, -0.00464664539, 0.00624775095, 0.000162403318, -0.000843541929, 0.010638372, -0.0175777692, 0.00349835842, -0.0174402054, -0.0343301482, 0.0236306377, 0.0152085926, -0.0288275424, 0.00493706064, 0.0283078533, 0.000519690569, 0.0331073478, -0.0181738865, 0.0293013789, 0.0296070781, 0.0105543043, -0.0141309984, 0.00930093322, 0.00844497234, 0.00815455709, -0.0135501679, -0.0015218145, -0.00163931807, 0.00343530765, 0.0104090972, -0.0197176728, -0.0105160922, 0.00743616093, 0.00878124218, -0.0059038382, 0.00425687758, 0.0392824933, 0.0100422567, -0.00924743526, -0.00713428203, 0.0097059859, 0.014696544, 0.0161256939, 0.0272837561, 0.0118076764, 0.00525804609, -0.00814691465, -0.0201762225, -0.0111122075, -0.00896466244, -0.0090793008, 0.00270544807, 0.00391678559, 0.00152468053, 0.0430120379, 0.00975184143, -0.0151856653, 0.0231109466, -0.0183573067, 0.00891116541, 0.0191062726, -0.0124572897, 0.000863603491, -0.0245630238, -0.0314565673, -0.0325570889, 0.00358624733, -0.00716485176, 0.0144443419, 0.00455493527, 0.0142762065, 0.00424541347, -0.00343339704, -0.0244713128, -0.040872138, 0.00405817199, -0.0109287873, -0.0176236257, 0.00440590642, 0.0227135364, -0.00337607833, -0.00934678782, 0.0118076764, 0.00276849885, 0.0101492517, -0.0116318986, 0.0102333194, -0.00794820953, -0.0131986123, -0.00922450796, -0.0362866297, 0.00106899592, -0.00845261477, 0.0193355475, -0.0317622647, 0.0227288213, -0.0134584578, -0.00101263239, 0.0116471834, 0.000457834045, -0.00426452, -0.00979005359, 0.00123522046, 0.0320985354, -0.00852904, 0.00490266923, 3.86304928e-05, 0.00181796181, -0.0124572897, -0.0131374728, -0.0326793678, 0.00555228256, -0.0371120237, 0.0129234819, 0.0238904823, 0.0114484783, -0.000104248596, -0.00451290142, 0.00349262659, -0.0272837561, -0.00918629579, -0.0117236087, -0.00342575461, -0.0187394321, -0.0100804688, 0.00646174094, -0.00175777706, -0.00302261231, -0.00774950394, 0.00106708531, 0.00156766956, 0.0219798554, 0.0121974442, 0.0138635105, -0.00119605265, -0.0115554733, 0.000376154727, -0.000371378148, -0.0127018495, 0.0173637792, -0.0160034131, 0.00704639312, 0.00933914538, 0.0143908439, 0.00684004556, -0.016018698, 0.0170427952, 0.00734062959, 0.0211544652, 0.0136036659, 0.0259845294, 0.0169510841, 0.0429509, 0.00201380113, 0.0227441061, 0.00505934097, 0.0330156386, 0.00950728077, -0.00262138061, -0.0214907341, 0.00946142618, 0.00579684274, 0.0297446437, 0.00718013709, -0.0156136453, 0.00382889691, 0.00566692045, -0.00594969327, 0.00369133172, 0.0331379175, 0.0126024969, 0.0222855564, 0.000370184018, -0.0170275103, -0.00721834973, 0.00206729863, -0.0133973183, -0.00121993548, 0.00289268955, 0.014910535, 0.0175166298, 0.0247158725, -0.00692793401, -0.0103938123, 0.0165078193, 0.012801202, 0.00894937757, 0.0175319146, -0.0265042204, 0.00885002501, -0.0235236418, 0.02181172, 0.0111274924, 0.00382125448, 0.0233096518, 0.00397028308, 0.00495616673, -0.00112631475, 0.0111274924, -0.0147041865, -0.00641206466, 0.00113013596, 0.00238064141, -0.0231568012, -0.0021857575, -0.00227173581, 0.00682093902, 0.00892645, 0.0249757189, -0.0311508663, -0.0199316628, -0.0129158394, -0.0175013449, 0.00797113683, -0.00761576, 0.0182655957, 0.00528861629, -0.0139246508, -0.0258622505, 0.0220715646, 0.0144978389, 0.0273754671, 0.0192438364, -0.0159881283, -0.014482554, 0.00497909449, -0.00782592874, -0.010065184, -0.00365694053, -0.00210360065, 0.00313533912, 0.0106612993, 0.00584651902, -0.00739030587, -0.00450143777, 0.0183725916, -0.0145513369, -0.00706932042, 0.0140545731, -0.000431562919, 0.0158658475, 0.0152850179, 0.00863603503, -0.0106765851, -0.0113796955, -0.0118611734, 0.0103938123, 0.00378304184, -0.00647702627, 0.00694321934, -0.0304630399, -0.00151130615, -0.0149258198, 0.0138176559, -0.000919489306, -0.0335658975, 0.00652288133, -0.0113414833, 0.0284148473, -0.00715338811, 0.0077303974, -0.00618661102, -0.00630124845, 0.00269780564, 0.0409027077, 0.0296070781, 0.00296338275, -0.00408874219, -0.00136800902, 0.0187394321, -0.00760811754, -0.0124343615, -0.0327405073, 0.00586562557, 0.00565163512, -0.0125184292, 0.0112497732, 0.00893409271, -0.0154531524, 0.00152085919, -0.0173484944, -0.00535739865, 0.0114484783, 0.0232485123, 0.00513194455, -0.0174096357, -0.00284683448, -0.00794056617, 0.0133820325, 0.00319839, -0.00170714536, -0.0043868, -7.36636321e-06, 0.0181433149, -0.0189534221, -0.00894173514, -0.0121592311, 0.0324959457, -0.00763868773, 0.011853531, 0.0102638891, -0.0218728594, -0.00545675121, -0.0364089124, 0.00646938384, 0.00242649647, 0.00533829257, 0.0177306198, 0.00430655386, -0.0017673301, -0.0114790481, -0.00253922353, -0.000104547129, -0.0193049777, -0.00931621809, -0.00253922353, -0.0151627371, 0.00821569655, -0.00461989641, -0.0233402215, 0.0140775014, -0.0133667476, -0.0215518754, -0.0100957537, 0.0106842276, -0.00264048669, -0.00109001284, 0.0182961654, -0.00289268955, 0.00573952403, 0.016018698, 0.00325953, -0.0149946017, 0.000981107, -0.013695376, -0.0208029095, 0.0103021022, 0.00881181285, -0.00946142618, -0.00744380336, -0.00212270673, -0.0107300822, 0.0179904662, 0.0235083569, -0.00953020807, -0.0269474853, -0.00839911681, 0.0199316628, -0.020757053, 0.0121133765, -0.0170580801, 0.0213990249, -0.00362445973, 0.0101033961, 0.0109899277, 0.00725656189, 0.0199622326, -0.00889588054, -0.0120828068, -0.0315177068, 0.0169052295, 0.00359580037, -0.0133591052, -0.00276467763, 0.0133896749, -0.000240619614, 0.00538414763, 0.0143908439, -0.00478038937, -0.0108829327, -0.009637204, -0.00362254912, 0.00157435681, -0.0042072013, 0.00252775988, 0.00205774559, 0.0203902125, -0.00727184722, 0.00358624733, -0.0102638891, -0.00366267236, -0.0183573067, 0.0048415293, -0.0130839748, -0.0219645705, 0.000348450645, 0.00844497234, -0.00838383194, 0.00795585196, 0.019916378, -0.00215136632, -0.00197940972, -0.0248534381, -0.0132444678, -0.00916336756, -0.0128394151, -0.00896466244, -0.0037027956, 0.0495540276, -0.00971362833, -0.00978241116, -1.65239398e-05, -0.00629742723, 0.0101568941, -0.00014066993, -0.00430273265, 0.0167370941, 0.00641206466, 0.00457786256, 0.0172262155, 0.00830740668, -0.0037562931, -0.00927800592, 0.0191215575, 0.0160034131, 0.000851184421, 0.0178223308, -0.0115860431, -0.00176446419, 0.0111657055, 0.00294809765, -0.0106230872, 0.000900383049, 0.00734062959, 0.0127859171, 0.0277728774, -0.00524658244, 0.00844497234, -0.00265386119, -0.0141157135, 0.0118688159, 0.00650377478, -0.0129693374, 0.0112115601, 0.0144978389, 0.0132138981, 0.000820614398, 0.00469250046, -0.0104549518, 0.0173332095, -0.0122203715, -0.00812398642, 0.0110357823, -0.0151550947, -0.00972127076, -0.00548732141, 0.012694207, -0.00405435078, -0.0299127791, -0.0180363208, 0.0178834703, 7.77983514e-05, -0.0167065244, -0.0196565334, 0.0187088624, -0.00486827828, -0.00499820057, -0.00936207362, 0.00440208521, 0.0109746428, 0.00131260091, 0.0113720531, -0.0172415, -0.00397028308, -0.0162479728, -0.00871246, 0.0110281399, -0.0126101393, 0.0236306377, 0.00432183873, -0.0192591213, -0.0113644106, 0.00393971335, 0.0096219182, 2.48680062e-05, 0.00582359172, -0.0107147973, 0.000603758206, -0.00538032595, -0.027390752, -0.0155754331, -0.00844497234, 0.00933914538, -0.00397792598, -0.0131298304, 0.00361299608, -0.0145819066, 0.018647721, -0.0237834863, 0.0167218093, -0.00936971605, 0.00458932668, 0.00346014579, -0.00125050545, -0.0110434247, -0.0142914914, 0.00708842697, 0.0181586016, -0.0206653439, -0.0144214137, 0.00300159538, 0.00725274067, 0.000689736393, 0.0206194893, -0.00391678559, 0.0200845134, 0.0308451653, -0.0213531703, 0.0153690847, 0.0151933078, -0.00358624733, -0.0139246508, 0.0225606859, 0.00764250895, -0.00475364039, 0.00622482318, -0.0143679166, 0.0131604, -0.00152468053, 0.0291179586, 0.00863603503, 0.0187700018, -0.0065802, -0.0135578103, -0.0108065074, -0.0241197571, 0.00195839279, 0.018647721, -0.00789471157, 0.0073215235, -0.00616750447, 0.00719542196, -0.000761384959, 0.0113261975, -0.0157282837, -0.0233249366, -0.00779153779, 0.0036034428, -0.0189534221, 0.0152697321, -0.00072890427, 0.0298516396, -0.00701582292, -0.0221327059, -0.0102180345, -0.0021303494, 0.00304936105, 0.00240165833, 0.000625252724, 0.00247235154, 0.0227288213, -0.00713046081, 0.00440208521, 0.0111427782, 0.0202067923, 0.0024475134, 0.00920158066, -0.00576245179, 0.0226371102, -0.00268061, -0.0173943508, 0.0223161262, 0.0222397, -0.000159895615, -0.00118267827, 0.00540707493, 0.0126330666, 0.0150328148, -0.00192113558, -0.0085213976, -0.00983590912, -0.012587212, 0.00235198205, -0.0191215575, 0.0114943329, 0.00011320466, 0.00787178427, 0.00468485802, 0.0138100134, -0.0103785265, -0.0137030184, -0.0156060029, -0.00771511253, -0.00715720933, -0.00950728077, 0.0113261975, -0.00635092473, -0.00992761925, 0.00151608267, 0.00119891856, 0.00422630738, -0.0023080376, -0.0288733989, 0.00455111405, -0.0048950268, 0.0145666217, 0.00753933471, -0.0134584578, -0.0012591033, -0.00153901021, -0.0120216664, -0.00246853032, -0.00717631588, -0.0207876246, 0.00555228256, 0.00746291, -0.00112631475, -0.0329545, -0.00862075, 0.0133132506, -0.00118458888, 0.0106995124, -0.0191062726, 0.0101874638, -0.0151245249, 0.00510137482, 0.00556756742, 0.0107682953, -0.0288122576, -0.00120178447, 0.00225071888, -0.00370661682, -0.0091022281, 0.014482554, -0.00624775095, -0.0059267655, 0.0203596428, -0.00385755626, 0.00530772237, 0.00443647616, -0.0156212877, 0.0213531703, -0.0162938293, 0.00729859574, 0.00890352298, -0.020757053, 0.0147729693, -0.0179751813, 0.00718395831, 0.00998111628, -0.00931621809, -0.0285829827, -0.00433330238, 0.00400849571, 0.0199469477, 0.0180974603, -0.00196603546, -0.020757053, 0.0177764762, -0.0105160922, -0.0115784006, 0.00520837, -0.00623246608, -0.0147576844, -0.0020615668, 0.0211238936, 0.00353848166, -0.00312578608, -0.00570513261, 0.001711922, 0.0084602572, -0.0128929121, -0.0013985791, 0.0101033961, -0.0126330666, 0.0153308725, -0.00265004, -0.0132903224, -0.00173867075, 0.0010508449, -0.0072909533, 0.0231109466, -0.0205889195, 0.00541089615, 0.0154531524, -0.000349644775, -0.0123885069, -0.00293281279, 0.014589549, -0.0130839748, 0.0169969387, 0.00187432521, -0.0249145795, -0.00826155208, 0.00406581443, 0.0320985354, 0.00991997682, -0.00399703206, 0.0123961493, 0.00129062869, 0.00936207362, 0.0167065244, -0.0274518915, 0.0184184462, 0.0072909533, 0.00915572513, -0.0118153188, -0.0039282497, 0.00172051974, 0.0171650741, 0.00775332516, -0.0146812592, 0.0101416092, 0.0108752903, 0.00894937757, 0.0109135024, 0.0207111984, -0.0172262155, 0.00233669695, -0.0111962752, -0.00901051797, -0.000402187026, -0.00294427644, 0.00196221401, -0.00569749, 0.00651141768, 0.00366840418, -0.00119318673, 0.0142609216, 0.00441737, -0.0342690088, -0.00186572748, -0.00140144501, -0.0111504206, -0.00462371763, -0.0194425415, 0.00861310773, -0.00774186151, 0.00249336846, -0.00945378374, 0.00743233971, 0.0133820325, -0.0135730952, -0.0210627541, -0.00994290411, -0.0162632577, 0.0228816718, 0.0235389266, 0.00927800592, -0.0134355305, 0.00109192345, -0.0019058506, 0.0195495375, 0.019488398, 0.00599172665, 0.0229886658, 0.00329392124, 0.0144901965, 0.0147653269, 0.0175013449, -0.0199316628, -0.00320985378, 0.00716485176, 0.0126559949, 0.00465810904, -0.00444794027, -0.00985119399, 0.0118917432, 0.00390723255, 0.0146889016, -0.0196718182, -0.0298363548, -0.00867424719, 0.00756608369, 0.0218881443, 0.0139628639, -0.0129234819, 0.00307228859, 0.00535357744, 0.00195648219, 0.00388430501, -0.0136648053, -0.0251591392, 0.0162938293, 0.00524276122, -0.018754717, 0.0029213489, 0.0196565334, 0.0188922808, -0.00443647616, -0.0103403144, -0.00515869353, 0.0210933238, -0.00686297286, 0.00337225688, -0.00457404135, 0.02181172, -0.00400849571, -0.0311661512, 0.0148417521, 0.0106842276, -0.00418427354, 0.0297446437, -0.0125031443, -0.00920158066, -0.0101033961, 0.0171956439, 0.0113873379, 0.0115249036, 0.025388414, 0.00915572513, -0.0135425255, 0.00142532785, 0.00120082917, -0.00621718075, -0.030142054, -0.0122432988, -0.00794056617, 0.000267487805, -0.00940028578, -0.00224498706, 0.0346052796, -0.0172415, -0.0023405184, 0.0112344874, 0.0285982676, 0.00535739865, 0.00690882793, 0.0165536739, 0.00732534472, -0.011746536, -0.0366840437, -0.00265959301, -0.0233860761, -0.0090410877, 0.0261832345, -0.00933914538, -0.013588381, -0.00241694343, 0.0111733479, -0.00120273978, -0.00960663334, 0.0128317717, 0.000877933169, 0.0140316458, -0.0131986123, -1.59268693e-05, -0.00608343678, 0.0231262315, -0.00335124019, 0.0203749277, 2.31514277e-05, -0.010172179, 0.031303715, 0.00493323943, -0.0127171343, -0.00762722362, 0.0149258198, -0.00264812936, -0.0180974603, -0.030875735, 0.00606433069, 0.0106536569, 0.0144061288, 0.00717631588, -0.0229428113, 0.000550738303, -0.00230421638, 0.00804756209, -0.018540727, -0.00447086757, -0.00133361772, -0.0155295776, 0.0146124763, -0.013641878, 0.00352892838, -0.00872010272, 0.0181127451, -0.0170580801, -0.00630124845, 0.00046046116, 0.0370814539, 0.00681329658, -0.0155142928, -0.027818732, -0.00548732141, -0.00965248886, -0.00265959301, -0.000844497234, -0.0177153349, 0.0255718343, 0.0144978389, -0.0104014548, -0.0141768539, -0.00566692045, 0.00304171839, -0.0136265932, -0.0164161082, -0.00640060101, 0.0179751813, -0.000915190438, -0.00289460015, -0.0136036659, -0.0147882542, -0.0277270209, -0.0130381202, 0.0176083408, -0.00699671684, 0.0271920469, -0.00430655386, -0.0303713307, 0.0090793008, 0.0108065074, -0.00818512682, 0.011960526, 0.0163855385, -0.00960663334, 0.0110281399, 0.0245783087, 0.00694704056, -0.00221632747, 0.0018513978, 0.00855196733, 0.00825391, -0.0155219352, -0.0184795856, -0.0103632417, 0.0155219352, 0.00807048939, -0.00236344594, 0.00220295321, -0.000169807, 0.00986647885, -0.00803992, -0.00791763887, 0.00171478791, -0.0267334953, 0.000846407842, 0.00790999644, -0.00337989954, 0.00314871361, -0.0160492677, -0.00359197916, 0.00079147733, -0.00542618101, 0.0197635274, -0.0245630238, -0.00925507769, -0.0160951242, 0.00826919451, -0.00390150072, 0.01090586, 0.0130075496, 9.37998557e-05, 0.00221632747, 0.0191826969, 0.00324424496, -0.0127706323, 0.0216894392, 0.0217047241, -0.0267487802, -0.0119834533, 9.00980158e-05, 0.0112574156, -0.0322513878, 0.00464282418, -0.00305318227, 0.0162785444, 0.0120598786, 0.00836090464, 0.00418809475, 0.0358892195, -0.0126559949, 0.0172567852, -0.0046160752, 0.00378495245, -0.0106001599, -0.018968707, -0.00485681416, 0.0134813851, 0.00995054655, -0.00300350599, 0.00784885604, 0.00171001139, -0.00583123416, -0.0170886498, -0.00117694633, 0.0162938293, 0.00576627301, -0.00599172665, 0.00948435348, -0.0167829487, -0.0113414833, 0.0169969387, 0.0118764583, 0.00842968747, -0.0213073138, -0.00165173726, -0.0224078353, -0.0237376317, -0.00416898867, 0.0224536899, 0.0210474692, -0.0121439463, -0.0150633845, -0.0211850349, -0.0271003358, -0.00608725799, -0.00355758774, 0.0207876246, -0.00707314163, 0.00216283, 0.00287740445, -0.0048720995, -0.00134794752, -0.00303598656, 0.0144137712, -0.00392442802, -0.00334168691, 0.00479949545, 0.00386902015, -0.00527333096, -0.0174249206, 0.0168746598, 0.00430273265, 0.00380023755, 0.010959358, -0.0201915074, -0.00778389536, -0.0176694803, 0.0179293249, 0.0103097446, 0.0199775174, 0.0140851438, 0.00138042809, 0.0182961654, -0.0294848, -0.0104625942, 0.00526950974, 0.0102180345, 0.00149793166, -0.0147958966, -0.0149411047, 0.0102868164, -0.00110816373, -0.000366123946, 0.00621718075, 0.00947671104, 0.00458932668, 0.00653434498, -0.00158199936, 0.0140469307, -0.00291561708, -0.00447468879, 0.00829976425, -0.0159117039, -0.0169205144, -0.00406581443, -0.0107530095, -0.0184643, -0.0131833274, 0.0245935936, 0.0132368254, 0.00378113124, 0.0114561208, -0.0142838489, -0.0157282837, -0.00178357051, -0.0722675622, 0.0114637632, 0.0191215575, 0.0131604, 0.00522747589, 0.00812398642, -0.0204819236, -0.00491413334, -0.0123579362, -0.00116166135, 0.00424541347, 0.00936207362, -0.0024322283, 0.00497145206, -0.029194383, 0.0189228524, 0.00929329079, 0.0158811323, -0.0139934337, -0.0196871031, 0.0192896929, 0.0150022451, 0.0121515887, 0.00424541347, -0.00638149492, -0.00246088789, 0.00519690616, 0.00495616673, -0.00429126853, -0.00359771098, 0.0125795696, -0.0151703795, -0.0244865976, -0.0120828068, 0.0131374728, -0.00340091647, 0.00995054655, 0.00479567423, -0.00440590642, 0.0135730952, 0.00769982766, -0.00188005716, 0.00659548491, -0.0051204809, 0.0189075675, 0.000395499839, -0.00432948116, -0.00829212181, 0.0020443711, 0.00447851, -0.00582359172, -0.00696996786, -4.78850925e-05, -0.00512812333, -0.000712663925, 0.00246853032, 0.0197329577, -0.01770005, 0.0116548259, -0.00343530765, -0.014589549, -0.00513576576, -0.0123961493, -0.000438966585, -0.00575863058, -0.0103097446, 0.00591530185, 0.00288886833, -0.000562202069, -0.00444411905, -0.000692124711, -0.00277423067, -0.0243184622, 0.00168421783, -0.0142838489, -0.0116701107, 0.0133285355, 0.00424541347, 0.00226027193, 0.008009349, 0.0116089704, -0.00525804609, -0.00397028308, -0.00838383194, -0.0126636373, 0.000785267795, 0.00630124845, -0.000405769446, 0.0213684551, -0.011012855, 0.0109517146, -0.00448615244, -0.00200806907, 0.0232943669, -0.0110892802, 0.000347734138, -0.00923979282, 0.0068859, 0.00833033491, 0.00597262057, -0.0175624844, -0.0215365905, 0.00291370647, -0.00125146075, 0.0247617289, -0.0195495375, -0.0121592311, 0.00749730086, 0.00017733009, -0.000643403735, 0.0109364297, -0.00958370604, 0.0239363369, 0.00230039516, 0.00458550546, 0.00131355622, -0.00572423916, -0.00265004, 0.00784885604, -0.0188464262, -0.0145436944, -0.0236917771, -0.00446704635, -0.0147882542, 0.0230039507, -0.0189381372, -0.0108294347, 0.00359771098, -0.0150557421, -0.0117159663, 0.0123426514, 0.0275283158, 0.00872774515, -0.0200386588, 0.00432948116, 0.000403619983, -0.018433731, 0.0121363038, -0.0084679, 0.00235007145, 0.00667573139, 0.0105237346, 0.0173332095, 0.00973655656, -0.0324959457, -0.00938500091, -0.0243643187, 0.0162021182, 0.00328245759, -0.00328054698, -0.0221479908, -0.000694990624, 0.0314565673, -0.00584651902, -0.0280480068, -0.00401613815, 0.00286020897, 0.0219645705, 0.0102562467, -0.0133285355, -0.00177497265, -0.0061522196, -0.0141080711, -0.0147806117, -0.0174554903, 0.00960663334, 0.00851375517, 0.00280480064, 0.00652670255, 5.73188154e-05, 0.00712281838, 0.00928564835, -0.0249757189, 0.00948435348, -0.00888823811, 0.00286211958, -0.0280785765, -0.0170580801, 0.0164925344, 0.0215824451, -0.00146545109, 0.0182197411, 0.00134794752, 0.0168746598, -0.0174402054, -0.0148723219, 0.00412695482, 0.0161104091, 0.0100422567, -0.00341620133, -0.00599554833, 0.0158352777, 0.0141768539, 0.00252202782, -0.0251591392, 0.0179751813, -0.00969070103, 0.038151402, -0.00273219682, -0.0104473094, 0.00888059475, 0.0186324362, -0.00858253706, 0.0029519191, -0.00904873, -0.0138252983, -0.0266876407, -0.00332067, -0.0115707582, 0.0133820325, -0.0276658814, 0.0133820325, -0.00764250895, -0.00688207895, -0.000502495, 0.00445176149, 0.00406199321, -0.0153308725, -0.0150328148, 0.0116701107, 6.44239626e-05, 0.00192973344, -0.00448233122, 0.00945378374, 0.00156480365, -0.010745367, 0.00173771544, 0.0300656296, 0.0300503448, -0.00317355176, -0.0059038382, -0.00327863614, 0.00402760226, 0.00541089615, 0.00560195884, 0.0147806117, 0.0104625942, 0.0097289132, 0.00137469626, 0.00461225398, 0.00622100197, 0.00991997682, -0.00103842583, -0.00713810325, 0.00512430212, -0.0105619468, 0.0134431729, -0.00915572513, -0.00611782819, 0.00301688025, -0.00115592941, -0.0210933238, 0.0025182066, 0.0050134859, 0.0343912877, 0.0246700179, 0.00920158066, 0.0218422897, -0.00692793401, 0.0143602742, -0.0186782908, 0.00135367934, 0.0172720701, 0.00482624443, -0.0121898018, 0.00932386052, 0.0115707582, 0.0151321674, -0.0116166137, 0.00706932042, -0.000568411604, -0.00321176439, -0.00268443115, -0.0375705734, 0.010531377, -0.0131221879, -0.00259845308, 0.0131986123, -0.0135501679, -0.0318845473, 0.0165995285, -0.0150939552, -0.00988940615, -0.000209571925, -0.0213990249, -0.0184948705, -0.00748201599, 0.0103479568, -0.00639295857, -0.00868189, -0.00777625246, -4.41534e-05, -0.00423395, -0.00826919451, -0.0130610475, -0.0147958966, 0.0190604161, -0.016018698, -0.0103250295, -0.00776096759, 0.0195036829, -0.0141004287, 0.00387093076, 0.00364165544, -0.0089952331, -0.0165231042, -0.0103326719, -0.0214601643, 0.00519308448, -0.00631653331, -0.00990469102, -0.00101072178, 0.0170580801, 0.00739030587, 0.00507844705, 0.00949963834, -0.00386137748, 0.0175777692, 0.00700053805, -0.0178223308, -0.00241503282, -0.0159269888, 0.0156365726, 0.00516633596, -0.00291752769, 0.0254801251, 0.0261679497, -0.00564017147, -0.00820805412, 0.0163702536, -0.0173484944, 0.00583123416, -0.0126636373, -0.00845261477, -0.00862839259, 0.00264621875, 0.0134813851, 0.00512430212, -0.00457404135, -0.00668337382, -0.00328818941, -0.00665280409, 0.0155066503, -0.0111962752, 0.0151321674, -0.0258928202, -0.0124572897, 0.00484917173, 0.0245783087, -0.0207876246, -0.00687825773, 0.00619425345, 0.0113032702, -0.00395499822, -0.00999640115, -0.00107377244, -0.0121821593, 0.0104549518, -0.00816984195, 0.00597262057, -0.00932386052, 0.00176350889, -0.00506316219, -0.00923979282, -0.0119910967, -0.000561724417, 0.0114637632, -0.0180974603, -0.00205010292, -0.0105237346, -0.00988176372, -0.00671012281, -0.00698525319, 0.0780758709, 0.000155596703, 0.011907029, -0.00934678782, 0.00457404135, -0.0101263244, 0.00228319946, 0.0460079, 0.00482624443, 0.000129803229, 0.00381361181, 0.00422630738, 0.00480713788, -0.0141768539, -0.00767307868, -0.0168899447, -0.00997347385, -0.00500584301, 0.0186630059, -0.00801699143, -0.00708842697, -0.024654733, 0.00828447938, -0.00142055133, 0.00125337148, -0.0149258198, -0.0221938454, -0.0121821593, 0.0176236257, 0.0173484944, -0.00076377322, 0.00929329079, -0.00936207362, 0.0202679336, -0.0205124933, 0.00768836401, 0.00993526168, -0.0111733479, 0.0279257279, -0.000521123584, 0.02181172, -0.00383462873, 0.0156212877, -0.00383080752, 0.0157588534, -0.00288313651, -0.0024647091, -0.0290873889, 0.00537268352, -0.01812803, 0.0104243821, -0.013175685, -0.0116318986, -0.013748873, 0.0115019754, -0.00723745581, -0.0074285185, 0.00269016298, 0.00518162083, 0.00886531, 0.00826155208, 0.0133973183, -0.00556756742, -0.0143526318, -0.00368177867, -0.00299204211, -0.00616750447, -0.0076004751, -0.0129769798, -0.00395499822, 0.00314871361, -0.011639541, 0.00569749, 0.00115975074, 0.0113032702, -0.00643881364, -0.0212308895, -0.00878888462, -0.00916336756, 0.00522365468, -0.015644215, -0.00820805412, -0.0126254242, 0.00945378374, -0.000457356393, -0.00216283, -0.0115401885, 0.000320507708, -0.0111733479, -0.0135272406, -0.000839243, 0.00695086177, -0.00913279783, 0.00151512737, 0.0158658475, 0.00901816, 0.00558285275, 0.0102409618, 0.0209251884, -0.00586944679, 0.019702388, -0.00303025474, 0.0142379934, -0.000181867828, -0.00304745045, 0.0361643508, -0.00571277551, -0.00748201599, 0.014964032, -0.0156289302, 0.016324399, -4.74074368e-05, 0.00669483747, 0.00444794027, -0.0106154447, -0.00581977051, 0.00138233881, -0.00369706354, 0.0346052796, -0.00480713788, 0.0146736167, 0.00240356894, -0.0259845294, 0.00604522461, 0.00354994531, 0.00722599216, 0.0155677907, 0.0179446097, -0.0128623424, -0.0250368584, 0.0263972245, 0.0274977461, 0.0146736167, -0.0170122236, 0.00479185302, 0.0249298643, -0.0111427782, -0.00574716646, -0.00442883372, 0.00868953206, 0.0243031774, -0.00882709771, 0.000487448764, -0.00930093322, -0.0157435685, 0.0141768539, -0.00295000849, 0.00141673011, -0.0151092401, -0.0121592311, 0.0108217923, 0.00872774515, -0.00289460015, -0.0247770138, 0.0258469637, -0.0167065244, 0.00826919451, -0.000626208086, 0.00816219952, 0.0034792521, -0.00010627864, 0.0178529, 0.02116975, -0.0134431729, 0.00414988212, -0.00482242322, -0.018754717, -0.0142685641, -0.00175395573, 0.00292708096, 0.0172415, -0.000548827637, 0.010967, -0.00111485098, -0.0159881283, 0.011907029, 0.0022698252, 0.0116013279, 0.00514723, 0.00140813226, -0.0079864217, 0.00393971335, 0.00913279783, 0.0418809466, -0.00123904168, 0.00993526168, -0.00759665389, 0.0137030184, 0.00207303045, 0.0139017235, 0.000276324456, -0.0337493196, 0.0165689588, -0.00044039957, -0.0048109591, -0.00498673692, 0.0241808984, -0.00455875648, -0.0109364297, -0.0178681854, 0.00915572513, 0.00413459726, 0.00431801751, 0.0115707582, -0.0122891543, 0.00487974193, 0.00395881943, 0.00619807467, -0.00497527327, -0.0108676478, 0.0226218253]
27 Aug, 2019
Cisco Discovery Protocol (CDP) and Link Layer Discovery Protocol (LLDP) in Data Link Layer 27 Aug, 2019 Layer 2 or the Datalink layer provides physical addressing and access to media. It defines how data is to be formatted for transmission and how access to the network is to be controlled. It also provides error detection, ensuring data on higher layers is formatted correctly for transmission. Cisco Discovery Protocol (CDP) and Link Layer Discovery Protocol (LLDP) in Data Link Layer are layer 2 (Datalink layer) protocols. They both help to discover how devices are connected to each other in a network. They both run independently of protocols IPv4/IPv6. They also help to verify and create documentation. Cisco Discovery Protocol (CDP): CDP is a Cisco proprietary protocol developed by Cisco Systems. It is used to discover other Cisco devices and can be used to share information such as OS version IP address, etc. CDP uses multicast frames for transmission and doesn’t rely on higher layer protocols. It can also be used for On Demand Routing to include routing information in CDP announcements so that dynamic routing protocols do not need to be used in simple networks. Link Layer Discovery Protocol (LLDP): LLDP on the other hand is the industry standard version of CDP. It is used by network devices for advertising themselves and their neighbors on a local area network based on IEEE 802 technology. Consider the following diagram: In the above diagram: connection 1 is possible as the connection is between 2 Cisco devices and both would use CDP to discover their neighbors and share their information. The same goes for connection 2 which is between 2 non Cisco devices. It will be using LLDP instead of CDP to discover its neighbors. A Cisco device cannot locate a non Cisco device using CDP and vice versa. Therefore, we can say that connection 3 is not possible. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System/Introduction of System Call/How much Stack size required for BIOS interrupt call?/Difference between Interrupt and Polling/Difference between Difference Engine and Analytical Engine/Difference Between Store‑and‑Forward Switching and Cut‑Through Switching/Difference between Message and Packet Switching/How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?/Types of Node Devices in a Computer Network: End devices and Intermediary Devices/Types of Errors in Computer Network/Difference between Storage Area Network (SAN) and Network Attached Storage (NAS)/Difference Between Network Security and Network Administration/Internet Administration/Internet Telephony Protocol | H.323/IPsec (Internet Protocol Security) Tunnel and Transport Modes/Real-time Transport Control Protocol (RTCP)/Cisco Discovery Protocol (CDP) and Link Layer Discovery Protocol (LLDP) in Data Link Layer
https://www.geeksforgeeks.org/cisco-discovery-protocol-cdp-and-link-layer-discovery-protocol-lldp-in-data-link-layer?ref=asr10
PHP
Cisco Discovery Protocol (CDP) and Link Layer Discovery Protocol (LLDP) in Data Link Layer
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, Difference between Difference Engine and Analytical Engine, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Difference between Interrupt and Polling, Types of Node Devices in a Computer Network: End devices and Intermediary Devices, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, Types of Errors in Computer Network, jQWidgets jqxToolBar close Event, How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, Difference between Message and Packet Switching, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, Difference Between Network Security and Network Administration, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, Introduction of System Call, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Difference Between Store‑and‑Forward Switching and Cut‑Through Switching, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, IPsec (Internet Protocol Security) Tunnel and Transport Modes, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, Internet Telephony Protocol | H.323, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, Difference between Storage Area Network (SAN) and Network Attached Storage (NAS), jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, Real-time Transport Control Protocol (RTCP), unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, Internet Administration, Cisco Discovery Protocol (CDP) and Link Layer Discovery Protocol (LLDP) in Data Link Layer, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How much Stack size required for BIOS interrupt call?, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0429293364, 0.00846891291, -0.013064553, 0.0173093285, -0.0168552697, 0.00433077198, 0.0419111438, 0.00259364746, -0.0192494057, 0.0281242207, -0.00106119399, -0.0133810192, 0.0175432395, -0.0334353484, -0.0280554239, -0.00754015287, -0.0106635373, -0.00113171095, 0.0298028681, 0.011268951, 0.0295827165, -0.0321144462, -0.0272298586, 0.00798733346, 0.0362697877, 0.0422413684, 0.0218361728, -0.00220494438, -0.0229782034, 0.0264042951, 0.0403425694, -0.00994804874, 0.0219324883, -0.0291148964, -0.0254961737, -0.0462040752, 0.0276288819, -0.00135788112, -0.00740943849, 0.0229231659, 0.0144886514, -0.00292043341, 0.0069278595, 0.0149014341, -0.0196346678, 0.00956278574, 0.00200027321, 0.0130920727, -0.0266382042, -0.0354442224, -0.0293075293, -0.0544597171, -0.0115235, -2.10019025e-05, 0.00478139287, 0.0410030223, 0.0391042233, 0.0249182787, -0.000645402, -0.0111932745, 0.0001659728, -0.00575831, 0.0160572231, -0.0327473804, 0.00771902502, 0.0506346039, -0.023390986, 0.0332152, 0.0547899455, -0.0386914425, -0.0395995639, 0.026940912, 0.00266932417, -0.00771902502, -0.00818684511, 0.0359120443, 0.0216435418, 0.0743558183, 0.0408103913, -0.0558081381, 0.0246018134, -0.0190430135, 0.0351139978, 0.0272298586, 0.0376457274, -0.00598190073, -0.00366688101, -0.0420487374, 0.0492036268, 0.00946646929, -0.00263492577, 0.0177771486, -0.00571359228, -0.00627428805, -0.0367100872, -0.0154242907, 0.00702761533, -0.0168415103, 0.00754015287, -0.00410374207, 0.00496714469, 0.00754015287, -0.0395995639, 0.0286195595, 0.0419937, -0.00954214577, -0.013449817, 0.0475800149, -0.0150803057, 0.0643389672, -0.0410855785, -3.12005213e-05, 0.0089298524, 0.0310136955, -0.0177633893, -0.00587182539, -0.0337655768, -0.0426266305, -0.0284269266, -0.0109249661, 0.0204602331, -0.0210931655, -0.0313989595, 0.0252897833, -0.0208317358, 0.0446079858, 0.0256200098, 0.0143510578, 0.00862714555, 0.0080423709, -0.0211482029, -0.0145436889, 0.00623644935, 0.00370127941, 0.00381479459, 0.0227855723, 0.0123834629, -0.00263492577, -0.00536960736, -0.0158370733, 0.0158783514, -0.0192906838, -0.0128788017, 0.0231020376, 0.00356368534, -0.00948022865, 0.0150252683, 0.0435622707, -0.0400673822, -0.00596814137, 0.0106360186, -0.0279728677, 0.0110350419, -0.0408929475, -0.00440988876, -0.0124247409, 0.0122183505, -0.017213013, -0.0155481258, -0.0267620385, 0.0231983531, -0.000439010968, 0.00276392023, 0.00251969066, 0.00598190073, 0.0317016654, 0.0490385145, -0.0193319619, -0.0530837774, 0.0295001604, 0.00754703255, 0.0174331646, 0.0370127931, -0.0067696264, -0.0126930494, -0.029142417, -0.0352515914, 0.014860156, 0.0141309071, 0.0156857204, -0.0188366231, -0.0353066288, -0.023115797, 0.000196823967, 0.00466787769, -0.00792541634, 0.059825886, 0.00138454, -0.00861338619, -0.00881977752, -0.0329950489, 0.00429637358, 0.0449657291, -0.00901240949, -0.0401224196, 0.0168139916, 0.00251969066, 0.0154930884, 0.0181486532, -0.00543496432, -0.0202263221, -0.012466019, -0.0153417345, 0.0155343665, 0.00912248436, -0.0425440744, 0.0193457212, -0.0156582016, 0.0395995639, 0.000733548193, 0.00846891291, -0.0133879, 0.0167314336, 0.030683469, 0.0293900855, -0.0300230179, -0.0183000062, 0.00443740748, 0.00296515133, 0.00580990827, 0.059825886, 0.00321282074, -0.00687282206, -0.00926695857, -0.0311788078, -0.00565511454, 0.0208042171, -0.0186852701, -0.0102989133, -0.031343922, 0.036930237, 0.00650819764, 0.00186955894, 0.00144473731, -0.0490660332, -0.00344673055, 0.034233395, -0.00236317748, -0.0254824143, -0.0151766222, -0.0160847418, 0.019414518, -0.0384988114, -0.0112207932, -0.0299404617, -0.0158921108, 0.041333247, 0.0273261741, 0.0373430215, 0.00743695768, 0.00477107288, 0.0154105313, 0.024877, -0.00494306581, -0.0356918909, 0.00912248436, 0.0185339171, -0.00574799068, -0.0182036906, -0.0148739154, -0.00822124351, -0.0190705322, -0.0212445185, -0.0179147422, -0.0123353051, -0.0129407188, 0.00909496564, 0.0114409439, 0.00966598094, -0.0127962455, -0.0121977106, -0.0340682827, -0.0247531664, 0.0246706102, 0.000768376689, -0.00191943673, 0.00229438045, -0.00611605495, 0.0402600132, 0.0110556809, 0.00188847806, -0.0602661856, -0.0326648243, -0.00506346, -0.0256888065, -0.00760895, -0.0490385145, 0.0296652727, -0.0208179764, -0.0193319619, -0.0335729457, -0.000315176323, -0.022386549, 0.000831153942, -0.00193663605, -0.00205531088, -0.00236317748, 0.0330776051, 0.00815244671, -0.00160899025, -0.00533520849, -0.0292249732, 0.00881977752, -0.0123834629, 0.00952150673, -0.0201575253, -0.00310102548, 0.00175002415, -0.0235698577, 0.0142272227, 0.00511505827, -0.0112001542, -0.0186302327, -0.0119982, 0.0113515081, -0.0228268504, 0.000188976803, -0.0410030223, 0.00286539574, 0.00390079082, 0.0338206142, 0.0487633236, -0.0240789559, 0.0820060447, 0.04746994, -0.0189604573, 0.0168139916, -0.0150252683, -0.044580467, 0.00329021737, -0.0410580598, 0.0132640647, -0.00578926876, 0.0229782034, 0.0165388025, -0.0242853463, -0.0238175262, 0.0279728677, -0.00515289651, -0.00644628052, 0.0132915834, 0.000756767171, 0.038636405, -0.00463691913, -0.0327198617, -0.012871922, -0.0206391048, 0.0145712085, -0.0138419596, 0.00894361176, 0.000886621536, 0.00262288633, 0.0306284316, 0.0013105832, 0.0273124147, 0.00486394903, -0.0212720372, -0.000528877077, 0.00689002126, -0.0265006106, 0.0246568508, -0.0505245291, -0.000727098493, 0.00410374207, -0.059165433, 0.00529393042, 0.0359670818, -0.0186852701, -0.0251246709, -0.0095765451, -0.021574745, 0.00528705074, -0.00776718324, 0.045075804, -0.00286023598, 0.0191393308, 0.00189363793, 0.00769838598, 0.00419317838, 0.0367100872, -0.00192975625, 0.0380309895, -0.0126724103, 0.00591310346, -0.0203226395, 0.0306559503, 0.0423239246, 0.0173918866, -0.0212857965, 0.0230057221, 0.01543805, 0.0100787627, -0.0174331646, 0.0246981289, 0.0379209146, -0.0169240665, -0.015052787, -2.31921185e-05, -0.01107632, -0.0209693313, -0.0257025659, -0.0173781272, -0.0512125, -0.022386549, -0.00468163704, 0.00956966542, -0.0135323731, 0.00645316, -0.0188916605, -0.0128375236, -0.0145574482, -0.0309586581, 0.0214921888, -0.0440576077, 0.0213683527, -0.0178321861, -0.0193594806, 0.0593855828, -0.00134240184, 0.034426026, 0.0176533144, 0.00135702116, 0.0169791039, -0.00421037758, 0.0297478307, 0.0360771567, 0.000808794925, -0.00250421138, -0.00664235186, 0.0138144409, 0.050139267, 0.00367376069, -0.0212582778, -0.0101613197, -0.0338756517, -0.0581747554, 0.0105053047, -0.0262804609, -0.0377282836, 0.0550651327, -0.00393174961, 0.00538680656, 0.0141309071, -0.0218912102, -0.100608759, -0.0373705402, -0.0164700057, -0.0515977629, -0.00424133614, -0.0288947467, -0.0224278271, 0.00171820552, -0.0211757217, -0.00954902545, 0.00347252935, -0.0197722632, -0.00140087924, -0.0535240769, 0.0500291921, 0.0127962455, 0.0183275249, 0.0374530964, 0.00351208774, -0.0194833148, 0.0174744427, 0.02813798, -0.0318942964, 0.00135960104, -0.00514601683, 0.0107116951, 0.0214921888, -0.0603762604, 0.0223315116, 0.0171442162, -0.000203596166, -0.00258676778, 0.0211344436, -0.0270234682, 0.000477279304, -0.0155068478, 0.00831755903, 0.034040764, -0.0220700838, -0.0166488774, 0.00614701351, 0.00138797984, 0.0524233282, 0.0140001932, -0.00960406382, -0.0465618223, 0.0250145961, -0.00413470063, -0.0055828779, -0.0483230241, -0.00721680699, 0.00660451362, -0.015671961, 0.0139451548, -0.0117367711, 0.0151078245, -0.0153279752, 0.0119225234, 0.0212307591, 0.0398747511, -0.0130370343, -0.0143372985, 0.015864592, 0.0205152705, 0.00902616885, -0.0166076, -0.0250421148, 0.012466019, -0.0122252302, 0.0253723394, 0.00413470063, -0.0119500421, -0.00965222158, 0.0315915905, -0.037095353, -0.0211482029, 0.00483299047, 0.0249595568, -0.00328161777, 0.00753327319, -0.0320043713, 0.00176636339, 0.0350039229, 0.00575487036, 0.00840011612, -0.0201162472, 0.00128478429, 0.0105053047, 0.0220838431, -0.0380860269, -0.0283168517, 0.0263079796, 0.00992741, 0.0125416964, -0.0194833148, 0.00447180588, 0.00521137379, 0.00908808596, -0.0159333888, 0.0194970742, 0.00551408064, 0.0134566966, -0.0091431234, -0.0151903816, 2.20768543e-05, -0.0176945925, 0.0279866271, 0.00124436605, 0.0232809111, -0.0160572231, -0.0208730139, -0.0156582016, 0.00359464413, -0.000695709838, -0.0106016202, -0.0268033184, -0.0249595568, 0.0372054279, 0.00626740837, 0.00390423066, 0.00766398758, 0.0035086479, -0.00313370419, 0.0206391048, -0.0127343275, -0.000369353977, -0.0266244449, 0.00103969488, -0.025509933, -0.00706545357, 0.0176257957, 0.0188916605, 0.0329400115, -0.0240789559, -0.0113996658, 0.014667524, -0.0192081276, -0.0119431624, 0.0309861768, -0.00404182449, -0.0114684626, -0.00791853666, 0.0149702309, -0.00663203234, 0.0195108335, 0.00457500154, -0.00756767159, 0.0168827884, -0.000792025647, -0.00367720053, 0.0444428734, 0.0297753494, -0.0218361728, -0.0156444423, 0.00267620385, 0.015864592, 0.00110935187, 0.0392142981, 0.0140621103, -0.00107839319, 0.0389666297, 0.0043066931, -0.0127687259, 0.00580646796, 0.0116404556, -0.0231020376, 0.000229180063, -0.00301502924, 0.00869594328, 0.00508753955, -0.0018248409, 0.0135530122, 0.0315090343, 0.00306490716, 0.0214646682, 0.00479859207, 9.61545811e-05, -0.00283099734, 0.0234460235, 0.011096959, 0.0124797784, 0.0124522597, -0.00961782318, -0.0328299366, -0.0131815085, -0.000776976289, -0.00771902502, -0.0251384303, -0.00437205052, 0.0201575253, -0.0199236162, -0.0334903859, 0.00161586993, -0.0267482791, 0.00754015287, -0.00729248393, -0.0529737025, 0.024739407, 0.0102920337, 0.0588352084, -0.00223762286, 0.0354167037, 0.00665611122, 0.0440851264, 0.01267929, -0.000499208341, -0.00705857389, 0.00537648704, -0.00138969976, 0.00318014203, -0.00588214491, -0.0334628671, 0.0205290299, -0.044883173, -0.0244917385, 0.00253861, 0.0105741015, -0.0361321941, 0.011461583, 0.0013234826, -0.00206047064, -0.0220976025, 0.0194557961, -0.0265006106, -0.00450620474, 0.038636405, -0.0418285877, -0.00820748415, 0.024312865, -0.00139485952, -0.0176945925, -0.0136974864, -0.0146124866, 0.00225138245, -0.00742319785, -0.00459908042, -0.0230607595, -0.0227305349, 0.00941831153, 0.00461971946, -0.0155206071, 0.00171304576, -0.00908808596, -0.0558356568, -0.0368752, 0.00034291012, -0.0173918866, -0.0217260979, -0.0167176742, 0.0233772267, -0.0117092524, 0.0129407188, 0.00632588565, 0.0129132, -0.00143613771, -0.00833131839, 0.0231845938, -0.00129940361, 0.00339513272, -0.00857210811, -0.0095765451, 0.0427642241, -0.00574455084, -0.00499122357, -0.0260052718, -0.0277939942, 0.00111623155, 0.00341577176, 0.00853083, 0.00337965344, 0.0274500102, 0.00700353645, -0.0278490316, -0.0197309852, -0.00157029193, -0.000103679253, -0.0160847418, 0.00434797164, -0.0103195524, -0.0015341735, -0.00658387458, 0.0182724874, -0.0218361728, -0.0110144019, -0.00741631817, 0.00148859539, -0.0127549665, 0.0132915834, -0.00212066807, -0.00502218213, 0.0124797784, 0.00515977619, -0.00474355416, 0.0323070772, 0.0328299366, -0.0264868513, 0.0256750472, -0.0120394779, 0.0265694074, 0.0214096308, -0.0196897052, 0.00332633569, 0.0550651327, 0.0152866971, 0.00234425836, -0.00972101837, 0.0157407578, -0.0131127117, 0.027133543, -0.0171304569, 0.00059380423, 0.00618829159, 0.0463141501, 0.00750575447, -0.0166213587, 0.00998244714, -0.00636028405, 0.033380311, 0.0513500944, -0.00515633635, -0.00505658053, -0.00878537912, 0.00564823486, 0.00699665677, -0.00158061145, 0.0252209865, 0.0303532444, 0.0381410643, 0.0164837651, -0.0310962517, -0.0312063266, 0.0100030862, 0.0079047773, -0.00563103566, 0.0128375236, 0.00383543363, -0.0494237766, 0.0144198546, 0.00846203323, -0.00439268956, 0.00842075516, -0.0394069292, 0.0734752119, 0.0294176042, -0.00802861154, -0.0069278595, 0.0347012132, 0.0301606115, 0.00647723908, -0.0182724874, 0.0364624187, -0.00844827387, -0.000649701804, 0.0333252735, -0.0486532487, 0.00084964314, 0.056083329, -0.0160021856, -0.00902616885, 0.0155481258, 0.00568607356, -0.0440025702, -0.0157269984, -0.0602111481, -0.0281242207, -0.00123920629, 0.0188916605, 0.0164562464, -0.0125141777, 0.00230298, 0.00447180588, -0.00480547175, 0.00350692798, 0.00954214577, -0.000634652504, 0.0133122224, -0.0102645149, -0.0208592545, 0.00551408064, 0.00730624329, 0.00581334811, -0.0177221112, 0.0444153547, -0.0080423709, 0.0292800106, 0.0262391828, 0.00109645247, 0.00799421314, 0.00334181497, -0.0277251974, -0.0155206071, 0.000625622866, 0.00555879902, 0.0137731628, 0.0373705402, -0.000824274262, 0.0141309071, -0.014667524, 0.00947334897, -0.0192769244, -0.00486394903, 0.0116198165, 0.00134842156, -0.0155618852, 0.0288121905, 0.032692343, 0.00714801, -0.0023218994, -0.0216985792, -0.0169103071, -0.0223727897, 0.011846846, -0.0116679743, 0.00103195524, 0.00473323464, -0.00549000176, 0.0194007587, 0.00846203323, -0.0225241426, 0.0374255776, 0.000534036837, 0.0421588123, 0.00913624372, -0.0030029898, 0.00507034, 0.0372604653, 0.00692441966, -0.00925319828, -0.0278903097, 0.0347562544, 0.00877162, -0.0426541492, -0.000811804784, 0.00428605406, 0.00458188122, -0.0201988034, 0.0256888065, 0.00341233192, -0.0254686549, 0.0126517713, 0.0273399334, 0.0038732721, -0.0287846718, 0.00976917613, 0.0247256476, -0.00280347839, -0.00117470906, 0.0128168846, 0.00350348814, -0.00359464413, -0.0195933897, 0.0378933959, 1.96716464e-05, 0.014282261, -0.0131815085, -0.0115235, -0.0131333508, 0.0147500802, -0.000890061376, 0.00532144913, 0.027284896, -0.0346461758, 0.0120669967, 0.0208730139, 8.97586069e-05, -0.00682466384, 0.0196759459, -0.0400123447, 0.0107529741, 0.000132971734, 0.0348388106, 0.0488734022, -0.0126517713, -0.0104915453, -0.0145436889, -0.00287743518, 0.0193319619, 0.00582022779, 0.00819372479, -0.00654603634, 0.00144645723, -0.00478139287, -0.0195933897, -0.0167176742, -0.00266588433, -6.22398e-05, -0.0267345197, 0.00285851606, -0.000430626329, -0.0195521116, 0.00871658232, -0.0250833929, -0.0433971584, 0.0128306439, -0.0341508389, -0.00730624329, -0.038443774, 0.0204739925, 0.00665611122, -0.0129407188, 0.00560695678, 0.0252485052, 0.0103126727, 0.029142417, 0.0121357935, -0.0178872235, -0.0222764742, -0.00879913848, -0.0195245929, -0.0196071491, 0.0378383584, -0.0738054365, -0.0197172258, -0.0281517394, 0.00322314026, -0.00277423975, 0.0592755079, 0.0137731628, 0.00414158031, 0.024312865, -0.00835883711, 0.013277824, -0.000783426047, -0.0348112918, -0.0200061724, 0.0171304569, 0.00189535785, -0.0237212107, 0.00359808397, 0.032224521, 0.0249182787, 0.0135942902, -0.0216573011, -0.0136355683, -0.0101819588, -0.0152866971, 0.0330500863, 0.00233737868, -0.00557943806, 0.0188916605, 0.0172680505, 0.000126629515, -0.00400742609, 0.0255787298, 0.0143097797, 0.00284303678, -0.0173368473, 0.00795981474, 0.0116542149, -0.00488802791, -0.0176670738, -0.00722368667, -0.0285920408, -0.00230126013, -0.0372604653, -0.00806989, -0.0354442224, 0.0138282, -0.0233634673, 0.0523682907, 0.0042378963, 0.0104502672, 0.00785662, -0.0143097797, -0.00881289784, -0.00205875072, -0.0179285016, -0.0120119592, -0.046589341, 0.0032351797, 0.00201919232, 0.00585462619, -0.0165525619, 0.0180385783, -0.0166076, 0.0194833148, -0.00712737069, -0.00238897628, -0.00386295258, 0.0244367011, 0.00866154395, 0.00826252159, 0.0162223373, -0.00869594328, -0.00289119454, -0.00974853709, -0.00312338443, -0.0207904577, -0.00179044239, -0.0159333888, 0.0117367711, -0.00730624329, -0.0136768473, -0.0708334073, 0.00668363, 0.000698289718, 0.00267792377, -0.000794175547, 0.00997556746, 0.00601285929, -0.00560695678, -0.00262288633, -0.0135048544, 0.00675586704, -0.0181624126, 0.0127412071, -0.00497746421, -0.0114478236, 0.00832443871, -0.000941659149, -0.041333247, 0.0301330928, -0.004746994, 0.0192906838, 0.00730624329, -0.00972101837, -0.0196209084, -0.00345017039, 0.0187678263, 0.0121357935, -0.0223177522, 0.0133672599, -0.00279487879, 0.0108905677, -0.0038904713, 0.0059991, 0.00588558475, -0.00231501949, 0.00699321693, -0.00622269, -0.0195383523, -0.00399022689, -0.00970037933, 0.00167606736, -0.0409204662, -0.0137869222, -0.00962470286, -0.00835883711, -0.0139107564, -0.00530425, 0.00326613826, -0.0140896291, 0.00498090405, -0.0186990295, -0.00202779216, -0.0559457354, -0.0204739925, 0.00582710747, 0.0252760239, -0.0296652727, 0.01267929, -0.00737504, -0.00803549122, 0.0895461962, -0.016015945, -0.0271197837, -0.0186990295, 0.00500842277, -0.00124608597, -0.0025626889, 0.02489076, 0.0299404617, 0.0132915834, 0.00941143185, -0.00012996186, -0.0106153795, -0.00553472, -0.00178872247, 0.0375356525, -0.00834507775, 0.00581334811, 0.00585462619, 0.0315090343, -0.017639555, 0.00282239751, -0.000651421724, -0.000210690865, 0.0167864729, -0.00084448338, -0.00712049101, -0.0297478307, -0.00339685264, 0.00983797293, 0.0473873839, -0.0107598538, 0.0149289528, -0.00701729581, -0.00876474, 0.0376182087, 0.0111451168, -0.0144748921, -0.00381823443, 0.03203189, -0.00987925194, -0.0272711366, -0.0123009067, 0.0257163253, 0.0215197075, 0.000519847439, -0.0037322382, -9.44346539e-05, -0.0247531664, 0.00992053, -0.0214646682, -0.0255236924, 0.0115578985, 0.0116886133, -0.0471672341, -0.0047125956, 0.0279040691, 0.0133879, 0.00458188122, 0.0047297948, -0.00186267926, -0.012294027, -0.00361184333, -0.00491554663, -0.0103677101, -0.0164287277, -2.57854444e-05, 0.0278903097, 0.00252829026, 0.0369852744, -0.0096109435, 0.0121357935, -0.00580302812, -0.00604037801, -0.0323070772, 0.0206803828, 0.00541088544, 0.028481964, -0.0353616662, -0.0148051176, 0.0028447567, 0.00566199468, -0.00370127941, 0.00350348814, 0.0304358, -0.0164837651, -0.0147638395, 0.02373497, 0.00107925315, 0.00623300951, -0.0253860988, -0.00605757721, -0.0015384733, 0.0273261741, -0.0164837651, -0.0226479787, 0.0355542973, 0.0423514433, 0.0101200407, 0.0206666235, -0.0153004564, 0.000778266229, 0.00788413826, 0.0158783514, -0.0197034646, -0.00167004752, 0.010305793, -0.0259089563, -0.00440988876, 0.00458188122, 0.0231845938, -0.0172405317, -0.00410374207, 0.0142960204, -0.00505658053, -0.0030855462, 0.0214096308, 0.0262942202, -0.0176120363, -0.0125416964, -0.0248357225, 0.0113377487, 0.00669050962, 0.00246293307, -0.0174606834, -0.0168827884, 0.00168896676, -0.00193835597, 0.00500154309, -0.00226858165, -0.0244642198, -0.00129080401, 0.01107632, 0.0275325663, 0.00210174895, 0.0228818879, -0.00163048925, 0.00738192, -0.0140827494, 0.0143785765, 0.010285154, 0.0154930884, -0.0151628628, -0.0155206071, -0.00142409827, 0.0239551216, -0.0167176742, -0.0128581626, -0.000776116329, -0.00653915619, -0.0268721152, 0.00211206847, -0.00416221935, -0.00248873211, 0.0337930955, -0.00124350609, 0.00067292084, -0.0244779792, 0.0357469283, 0.0037838358, -0.00253001018, -0.00616077287, 0.0150390277, 0.0278215129, -0.014818877, -0.00534208817, 0.000582194771, -0.0139864339, -0.000388058164, -0.00361528317, -0.00728560425, 0.0150803057, 0.00938391313, 0.00970037933, 0.0120050795, -0.00652883667, -0.0383887365, -0.0119362827, -0.00147999579, -0.012892561, 0.000713339075, -0.00771214534, 0.0243954211, 0.0188916605, -0.0029857906, 0.0106222592, 0.00497058453, 0.013683727, -0.0011652495, 0.0173093285, 0.000604983768, 0.0149702309, 0.0279040691, -0.0101888385, 0.00158749113, -0.00850331131, 0.0277527161, 0.00752639351, 0.0226479787, 0.00362216285, -0.0178046674, -0.0170616601, 0.0111519964, -0.0078703789, 0.00974165741, -0.0141446665, -0.0127412071, -0.00402462529, 0.0306284316, -0.00234081852, -0.00128736417, 0.0164562464, 0.00216022623, -0.0149702309, -0.00429981342, -0.00673866784, -0.00129768369, 0.0078359805, -0.00720992731, -0.0199098568, -0.0228406098, -0.0178597048, 0.000964018167, 0.0157407578, 0.0194695555, -0.000810514844, 0.0141171478, -0.00112913107, 0.0155481258, 0.00444084732, -0.0315640718, 0.0236386545, -0.00165800808, 0.00365656149, 0.00329709705, -0.0125554558, 0.0205840673, 0.00543152448, -0.021340834, 0.0204739925, 0.0126930494, 0.0084069958, 0.0196071491, 0.00253517, -0.0455161072, -0.00025712885, -0.0255787298, -0.0172542911, 0.00281379791, -0.00662171282, 0.0186027139, -0.00218774518, 0.00502562197, -0.042378962, -0.0180798564, -0.00486738887, -0.021574745, -0.00201059273, 0.0121633122, -0.0125898542, 0.00851019099, 0.000620033126, 0.0177633893, -0.00257300842, 0.00727872411, -0.00172336528, -0.0250696335, 0.0150252683, 0.000613583368, -0.00670770928, 0.00805613, 0.0259777531, 0.0460389629, 0.00780846132, 0.0027295216, -0.00560351694, -0.0140277119, 0.012507298, -0.0284269266, -0.000479429204, -0.0247531664, 0.0203226395, -0.00786349922, -0.00601973897, -0.0198960975, 0.00812492799, 0.0131815085, -0.00639124261, 0.0184926372, -0.00406590383, 0.0109662442, 0.0107323341, 0.0190017354, -0.00823500287, -0.0146262459, 0.0373430215, 0.0192769244, 0.00186095934, -0.00479171239, 0.000156298222, -0.0169103071, -0.00454404298, 0.00623988919, 0.00932199601, -0.00658731442, -0.00364624197, -0.00705857389, -0.000282497756, 0.039489489, -0.0152041409, 0.0267620385, -0.0218086541, 0.00922568, 0.0140277119, 0.00565855438, -0.0028447567, 0.016167298, 0.00784286, 0.0330225676, 0.00394894881, -0.012273388, 0.0142685017, 0.00254033, 0.0116679743, -0.00503594149, 0.0224003084, -0.00989989098, 0.0116610946, -0.0272573773, 0.0149977496, -0.00116352958, -0.00187987846, -0.0167589523, 0.0158370733, -0.00292387325, 0.00262460625, 0.0171029381, 0.0158095546, 0.0189191792, 0.0167864729, -0.0165663213, 0.00618829159, -0.0445254296, 0.0154655697, -0.0113033494, 0.00902616885, 0.0216297824, 0.0238450468, -0.0132159069, 0.00607821625, -0.0248632412, 0.0323070772, -0.0160709824, -0.027518807, -0.0529461838, -0.00393518945, -0.0100030862, -0.0145024108, 0.0065769949, -0.00362560269, -0.0164012089, -0.0104021085, -0.00806301, -0.0198960975, 0.0128994407, -0.0145849679, 0.0145024108, -0.00927383825, 0.00484675, -0.00128564425, -0.000609713548, -0.00823500287, -0.00817996543, -0.0153417345, 0.0359395631, 0.0287846718, 0.0292524919, 0.0381135456, -0.00803549122, -0.0108148912, 0.00517697539, -0.026707001, 0.00241649523, -0.00932887569, 0.0130989524, 0.0181899313, -0.0182312094, 0.00504282117, 0.0126380119, 0.00906056724, -0.00413814047, -0.0130989524, 0.0428467803, 0.0203363989, -0.0160434637, 0.0194833148, -0.0151078245, -0.0276151225, -0.0476350524, 0.0153830126, 0.00133896188, -0.00330913649, -0.00542120496, 0.0210794061, -0.00785662, -0.00856522843, -0.0244091805, -0.045736257, -0.000405687402, -0.022193918, 0.00732688233, -0.00170702592, 0.00259364746, -0.0351690352, -0.00267448393, 0.00948710833, 0.0332977548, 0.0357194096, -0.0148051176, 0.0292524919, -0.033545427, 0.0152866971, 0.00547280256, -0.00853083, -0.00987925194, -0.0188091043, 0.0252347458, -0.0228268504, -0.00521481363, -0.0350039229, -0.0138213206, -0.0176120363, -0.0316191092, 0.0247256476, -0.0353616662, 0.00464723865, 0.000897801074, -0.00943207089, 0.00658387458, 0.00884729624, -0.00881289784, -0.0251246709, -0.0259502344, 0.00247153291, 0.00250249146, -0.0145299295, 0.0163461715, 0.0342058763, -0.0103883492, 0.0101131611, 0.00508753955, -0.00586494571, -0.043727383, -0.00975541677, -0.0166213587, -0.0148051176, 0.00265556481, -0.0253998581, -0.00309758564, -0.0108148912, -0.00129596377, 0.01543805, -0.0144473733, 0.00325409882, 0.00780846132, 0.00904680789, 0.00326441834, -0.0197034646, -0.0317842215, 0.0112758307, -0.00145161699, 0.0192356464, 0.00418973807, -0.00174056448, 0.0213133153, -0.0105121844, -0.0146812834, -0.0065597957, 0.0242303088, 0.0028791551, 0.00365312165, 0.0283168517, -0.000127704465, 0.0418010689, -0.000154793292, 0.0703380704, 0.00576175, -0.00685906271, 0.0115716578, -0.0104915453, 0.00789789762, 0.00272264192, -0.00535240769, -0.00349832838, -0.00601285929, 0.0133603802, -0.00174744427, -0.0241064746, -0.00238037668, 0.00114461035, -0.00817308575, 0.0140896291, 0.0209005345, 0.0268996339, 0.00243885419, -0.0234185047, 0.0107529741, 0.0192906838, 0.0197309852, 0.011482222, -0.00650819764, -0.00576175, 0.0197585039, 0.00242509483, 0.00784286, 0.000393217953, 0.00254892954, -2.36355372e-05, 0.0195521116, 0.0233084299, 0.0143372985, -0.0144198546, 0.007430078, -0.018987976, 0.0299679805, 0.0156444423, -0.0112964697, 0.035774447, 0.0087922588, 0.0179147422, -0.0237900075, -0.00445804652, -0.00649443828, -0.0187678263, -0.0225516614, 0.00414158031, -0.0251384303, -0.00702417549, -0.00633620517, 0.0150803057, -0.0202125628, -0.0147500802, -0.0186027139, -0.0144886514, 0.018368803, -0.0159746669, 0.00254376978, 0.0092463186, -0.0212720372, -0.00358432462, 0.00228922069, -0.0027123224, -0.00602661865, -0.00621925, 0.00651507732, 0.0162223373, -0.0103677101, -0.0212857965, -0.00794605538, -0.0092188, -0.00350520806, 0.00996868778, 0.0132709444, -0.0130507937, -0.000274758087, 0.0107804928, -0.00601973897, -0.00938391313, -0.0105328234, 0.0146812834, -0.0217536166, 0.0280003864, -0.00686938222, 0.0290323403, 0.0154105313, 0.0120050795, -0.00215334655, 0.00280347839, -0.0153417345, -0.00905368757, -0.0107185747, 0.00320422114, -0.00910184532, -0.000935639429, 0.00305286772, -0.0160297044, 0.0283443704, -0.0015298737, -0.0190842915, 0.0158508327, -0.00472291512, 0.0185063966, 0.0177633893, -0.00740943849, -0.00763646886, -0.0122114709, 0.00214302703, 0.0378658772, 0.00526985154, -0.0147913583, 0.0139657939, -0.00522857346, 0.0134429373, -0.00343469111, -0.0411130972, -0.0190567728, 0.0045887609, -0.00160383049, 0.00222902326, -0.000647121924, -0.00368408021, -0.013236546, 0.000487168872, 0.00253345, -0.00380103523, -0.000993256923, 0.0119913202, -0.0278490316, -0.00738192, -0.000534036837, 0.00982421357, 0.00618141191, -0.0166901555, 0.0165663213, -0.0035740051, -0.00649099844, 0.0069278595, -0.0131402304, -0.00231673964, -0.00402118545, 0.0113927862, -0.00405902416, 0.00114117051, -0.00736128073, -0.0100168455, 0.00594750186, -0.0327473804, -0.0239826404, 0.00939079281, -0.0055828779, 0.00820060447, -0.00517009571, 0.0389941484, -0.023115797, 0.00237005716, 0.0181761719, 0.0112551916, -0.00630524661, 0.00386983226, -0.00725120539, 0.00712049101, 0.00401086593, 0.00315262331, 0.0108905677, -0.00193835597, -0.00813868735, -0.00210174895, 0.00285163638, 0.00503594149, -0.0159196295, 0.00334869488, 0.0205015112, 0.00948022865, 0.00680058496, 0.00903992821, -0.0340132453, -0.00148601551, 0.0055484795, -1.78307891e-05, 0.00732000265, -0.0114409439, 0.00528017106, -0.0223727897, -0.0146537647, -4.22994162e-05, 0.0124866581, 0.0129063204, -0.00609885529, -0.0147775989, -0.0239413623, -0.00156599213, -0.0168002322, 0.00712049101, -0.00499810325, 0.00114375039, 0.00901240949, -0.0112207932, 0.00471947528, 0.0211619623, -0.00338825304, -0.000971757865, -0.0190567728, 0.00159609073, 0.0126380119, -0.002031232, -0.0376732461, -0.0307660252, 0.0126173729, -0.00989989098, -0.0160297044, -0.00193319621, 0.00881977752, -0.00240445579, 0.00680746464, -0.00506002037, 0.00278111943, -0.00538680656, 0.0204739925, -0.0141446665, 0.0116266962, -0.0139382752, -0.00765022822, -0.00440988876, -0.0206528641, -0.0248219632, -0.0242165495, -0.00764334854, 0.00309758564, -0.0214233901, 0.0145574482, 0.0107804928, 0.00936327409, 0.0210106093, 0.0231020376, -0.0176120363, -0.00493962597, -0.0205290299, -0.0199648943, -0.0269821901, -0.0134085389, -0.0203363989, 0.0239138436, -0.00161930977, -0.0272711366, -1.83413922e-05, -0.011330869, 0.014818877, 0.00899865, -0.0141721852, 0.0191255715, 0.00157545169, 0.017790908, -0.00411750143, -0.022386549, -0.0149702309, 0.00112225139, -0.00658731442, 0.0118606053, -0.00434797164, -0.00361872301, 0.00397302769, 0.00265384489, -0.00820748415, 0.012060117, 0.00469195656, -0.00446148636, -0.00718928827, 0.0219324883, 0.0122389896, 0.0103608305, -0.00114547031, 0.0128031252, -0.00339169288, 0.000982077443, 0.0169378258, -0.00121254742, 0.0181211345, 0.00829004, 0.00201403257, 0.00339513272, -0.0128100049, -0.00120996754, 0.00328505761, -0.00749887479, -0.00843451452, 0.000822124362, -0.00163736905, 0.0141584259, -0.000896941114, 0.0124591393, -0.0267620385, -0.0411406159, -0.0226479787, 0.00593718234, -0.0122321099, 0.0043961294, -0.0147363208, 0.00124608597, 0.00852395, 0.025509933, -0.00402462529, 0.0100994017, -0.00329365721, -0.00928759761, -0.000306361704, -0.00932199601, -0.0108974474, 0.00342093175, 0.0127480868, 1.12668549e-05, -0.0101613197, 0.0195245929, 0.00215506647, -0.00868218392, 0.00404182449, 0.00254376978, 0.0217948947, -0.0101681994, -0.00805613, 0.0125760948, 0.00804925058, -0.000396227813, -0.00293419277, 0.00748511543, -0.0136355683, 0.0181624126, 0.0181761719, -0.00192975625, 0.0128375236, -0.0211757217, -0.00892297272, -0.004746994, 0.0223590303, 0.00272264192, -0.000299052044, -0.0057067126, 0.000120932258, 0.00691754, -0.00760895, 0.00548656192, 0.0141997039, -0.0271885805, -0.0106222592, -0.00571015244, -0.0167727135, -0.0196759459, -0.010285154, 0.021340834, -0.0146812834, 0.0147363208, -0.0141446665, -0.000937359349, -0.0184513591, -0.000554245955, 0.00504970085, 0.00125382561, -0.00950086769, 0.020185044, 0.00487426855, 0.0179560222, 0.0149839902, -0.000526297197, 0.0174331646, 0.0171029381, 0.00812492799, 0.00551408064, -0.023390986, -0.0189191792, -0.016167298, 0.00304942764, 0.0145849679, -0.00147311611, 0.00348284887, -0.0111244777, 0.00271920208, -0.00858586747, 0.00243197451, -0.0117092524, -0.0325822681, 0.00679370528, -0.00315434323, -0.00626396853, 0.00888169464, 0.015479329, 0.00851707067, -0.0167039149, 0.0126655307, -0.00697257742, -0.0187678263, 0.0226754975, -0.00991365, 0.00600941945, 0.0128994407, 0.0277802348, -0.0252072271, 0.00749887479, 0.00658387458, 0.00663547218, 0.00917064212, -0.0127687259, -0.0119982, 0.0030769466, 0.0257713627, -0.00654603634, 0.00971413869, -0.00312682451, 0.00285163638, -0.00382511411, -0.00456812186, 0.0109249661, -0.00925319828, 0.0145161701, 0.00939767249, 0.00179044239, -0.0152041409, -0.00203811168, -0.00332289585, 0.0156994797, -0.0185201559, -0.00106549379, -0.00971413869, 0.00464723865, -0.0100374846, 0.0200474504, 0.000382253435, 0.0091431234, 0.012507298, 0.0202813596, 0.0251521897, 0.0216297824, 0.0147363208, 0.0265418887, 0.0131127117, 0.0191255715, 0.0154518103, -0.00483987, 0.0140208323, -0.00932887569, 0.0128031252, 0.0159333888, 0.0182862468, -0.00383199379, 0.0043238923, -7.27206e-05, -0.00404870464, -0.0113790268, 0.0162911341, 0.0244642198, 0.00510473875, -0.0238863248, -0.0222214367, -0.0140896291, -0.00102593552, 0.00505314069, -0.0120188389, 0.019221887, 0.0112345526, 1.78845366e-05, 0.00490866695, 0.00042654149, -0.00981733389, 0.00864778459, -0.00462659914, 0.00968662, -0.0144198546, -0.0162223373, 0.00416565919, -0.00310446532, 0.00606789673, -0.0225654207, -0.00525609218, -0.00869594328, -0.00298063084, 4.44761972e-05, 0.0257163253, -0.0182449687, -0.0122321099, 0.029335048, -0.0106497779, 0.000313241413, -0.0140001932, 0.00550720096, -0.0167864729, 0.00909496564, -0.00227202149, -0.00174830423, -0.00983109325, 0.00680058496, 0.00525609218, -0.0128031252, -0.0147638395, 0.0282067768, 0.0227442943, -0.0056895134, 0.0119362827, -0.0248219632, -0.00445460668, -0.0076571079, -0.00501186261, -0.00714801, 0.0160847418, 0.00603693817, -0.00486050919, -0.0189054199, -0.00948710833, -0.0123697035, 0.00649787812, 0.00399366673, 0.0177771486, 0.0045543625, 0.00795293506, -0.00248185243, -0.00259364746, 0.0105878608, 0.016827751, -0.00178872247, 0.00318702171, 0.0321144462, 0.0103539508, -0.00705169421, 0.0130163953, 0.00983797293, -0.0226204582, 0.00196587481, 0.023047, 0.00861338619, -0.0116404556, 0.0210381281, 0.00897801109, 0.0131195914, -0.00960406382, 0.0106566576, -0.0216435418, -0.00874410104, 0.0104571469, -0.0145574482, -0.00364968181, 0.00844139419, 0.0184651185, 0.00463691913, -0.00853083, 0.0123421848, 0.0109180864, 0.00954214577, -0.0197860226, -0.00209486904, -0.00571015244, -0.000237349712, -0.0203363989, 0.010670417, 0.0135392528, 0.00252657034, -0.0205152705, -0.00972789805, -0.0227442943, 0.00973477773, -0.00491554663, 0.00529393042, 0.0215197075, -0.0207766984, -0.00804925058, -0.0146262459, -0.0130026359, -0.0128444033, -0.0136974864, 0.000827284122, -0.0207216609, 0.0202676, -0.00299955, 0.0278765503, -0.00828316063, -0.00878537912, 0.00902616885, -0.00456124218, 0.0218499321, -0.0171442162, -0.0083038, 0.00364624197, -0.013257185, 0.00399366673, -0.00179732207, 0.0101750791, -0.00226858165, -0.0111313574, 0.00278455927, -0.0123353051, -0.0233359486, 0.0282342955, -0.00362560269, 0.00938391313, 0.0155618852, 0.00461627962, 0.00306490716, -0.0225929394, 0.014433614, -0.00340889208, 0.0188916605, -0.000293032295, -0.00250421138, 0.0376457274, -0.0052320133, -0.00588558475, -0.0111932745, -0.0139657939, -0.0078359805, -0.0216297824, 0.0119156437, 0.0185614359, -0.00290323398, -0.00738192, 0.0199648943, 0.000302921864, -0.00121340738, -0.0117574101, 0.00358088478, -0.0176533144, -0.0109800035, 0.0161810592, -0.00084663328, 0.000562415633, 0.0151903816, 0.0113996658, 0.00245089363, 0.000478139264, 0.0055656787, 0.0042722947, 0.0139038768, 0.016827751, -0.0213270746, 0.0138625987, -0.00550720096, -0.0257851221, 0.0175432395, 0.00177496299, -0.00612981431, 0.00988613162, -0.0173643678, 0.000604983768, 0.0035258471, 0.00477795256, 0.00967974, 0.00231329957, 0.0068934611, -0.00559319742, -0.00819372479, -0.0234322641, 0.00659075426, -0.0123421848, -0.0141171478, 0.00429293374, -0.0231020376, -0.0108286506, -0.00759519078, -0.00273124152, 0.0129338391, -0.00661827298, -0.00142581819, 0.0100994017, 0.0162223373, 0.0144198546, -0.0171166975, 0.0181761719, -0.0146262459, -0.000638522324, -0.0194557961, -0.00158577121, -0.0106428983, -1.9201354e-05, -0.000873292156, 0.0205427893, -0.0194282774, 0.0164700057, 0.00496714469, -0.00902616885, -0.0157269984, -0.00507378, 0.000975197705, -0.0033848132, -0.0269821901, -1.87041896e-05, 0.00414502, 0.0119844405, -0.00875098072, 0.0270372275, 0.0157132391, -0.00413126079, 0.0345085822, 0.00404182449, -0.0210794061, 0.00760895, -0.000528877077, 0.0217260979, -0.00923255924, -0.00674898736, -0.0118537256, 0.00520105427, 0.0152866971, 0.0187540669, 0.00138282008, -0.00588214491, 0.00290667405, 0.00326269842, -0.0257300846, 0.00817996543, 0.00536616705, -0.00219634478, 0.0127824852, -0.00190223753, -0.00217054598, 0.0270647462, 3.63065519e-05, 0.00974165741, -0.01659384, 0.0353066288, 0.0264593326, -0.0209005345, -0.0134979747, -0.015396772, 0.0113583878, 0.00287399534, 0.000363119267, -0.00732688233, -0.0128994407, 0.00776718324, -0.00334353489, -0.0157132391, -0.000911560492, -0.0091775218, -0.0122665083, -0.00159609073, 0.00975541677, 0.0065769949, -0.00190739729, -0.0137387644, 5.97136604e-05, 0.0253310613, -0.01267929, 0.00954902545, -0.00541432528, 0.00720304763, -0.00663203234, 0.00191427697, 0.00450964458, -0.0269959494, 0.0149839902, 0.00714801, 0.0186852701, 0.0103195524, 0.00321626058, -0.00216538599, 0.00491898647, 0.0384988114, -0.00394206913, -0.0237487294, -0.00800109282, 0.0146537647, -0.0119156437, -0.0174606834, 0.0150390277, -0.00403838465, -0.0119569218, -0.0131952679, 0.00892297272, -0.00305802748, -0.00449932506, -0.00885417592, 0.000820834422, -0.0030287886, 0.0202263221, -0.0078703789, -0.000240574562, -0.00575143052, 0.00578926876, 0.00162618945, -0.0103608305, 0.00864778459, 0.0142685017, 0.0225929394, 0.00809740927, -0.00483987, -0.00767086726, 0.00933575537, -0.0133466208, 0.0239276029, 0.0171854943, 0.0136699667, 0.00163220917, -0.0170479, 0.0220012851, 0.0057239118, 0.00975541677, 0.0271885805, -0.0127205681, -0.0145712085, -0.00864090491, 0.0280691832, 0.0141859446, -0.0018506397, -0.0161810592, -0.0148739154, 0.0277527161, 0.0286470782, 0.0114409439, 0.00353272678, 0.0210243687, -0.00935639441, 0.0237487294, 0.0106085, -0.0193732399, 0.00795981474, -0.00351208774, 0.0305458754, 0.00212410791, -0.0101406798, -0.0129338391, -0.0167176742, -0.0175019614, -0.0412782095, -4.82116593e-05, -0.0195933897, -0.00191771681, 0.0128856814, -0.00578582892, 0.00740255881, -0.0119294031, -0.0183963217, 0.00915000308, 0.00197791425, 0.0146262459, -0.00911560468, 0.00619861111, 0.0219324883, -0.00994804874, -0.00400398625, 0.00881977752, -0.0195796303, 0.000272393198, -0.0182862468, -0.0272986554, -0.0111244777, -0.00712049101, -0.0077809426, 0.0155894039, 0.000666471082, 0.0190017354, 0.00380447507, -0.0103333117, 0.00878537912, -0.00259880722, -0.0127274478, 0.000407192332, 0.00338309328, 0.0163736902, -0.00974165741, 0.00167864724, -0.0394069292, 0.0155481258, 0.0190842915, 0.00617453223, 0.0261703841, -0.0104502672, 0.00169756636, 0.00306146732, -0.0148876747, 0.00679714512, 0.00164940848, 0.0037666366, 0.00327817793, 0.0233084299, -0.0185201559, 0.00248529227, -0.0032007813, -0.00538680656, -0.00084319344, -0.000624332926, -0.0153004564, -0.0102989133, 0.0156444423, 0.0146400053, -0.0188091043, 0.00271404232, 0.00451652426, 0.00842763484, -0.0149427122, 0.00386639242, 6.3455841e-06, -0.00725808507, 0.00485706935, 0.00605069753, -0.00461627962, 0.0032695781, -0.0103883492, -0.0121633122, -0.0169791039, 0.0182312094, -0.012871922, 0.000248529221, 0.00930823665, 0.0157269984, -0.0206666235, -0.0224966239, -0.0141997039, 0.0120119592, 0.00844827387, 0.00216022623, -0.0201988034, -0.016249856, -0.0224278271, -0.00478139287, 0.0219324883, -0.000759347051, 0.00979669485, 0.013043914, -0.0166351181, -0.00784286, -0.0269684307, -0.00864090491, -0.00164424872, -0.0154518103, -0.015052787, 0.00186095934, -0.028867228, -0.0221113618, -0.00829004, 0.000546936295, 0.00148171571, -0.000732258253, -0.00740943849, 0.00638780277, 0.0128581626, 0.00546248304, 0.00375631708, 0.00611949479, 0.00631900597, -0.0136493277, 0.0169653445, -0.00289291446, -0.00998932682, -0.00978981517, -0.00108871283, 0.0179973, 0.0227855723, 0.01659384, 0.0172542911, 0.00653227651, 0.000649271824, -0.00559663726, 0.0185751952, 0.0312888846, -0.0350589603, 0.0270647462, -0.00331429625, -0.00815932639, -0.00424477598, -0.000401387602, -0.00250421138, -0.00504282117, -0.00374599756, 0.00318874163, -0.0200336911, -0.030490838, -0.00445460668, 0.00475387368, -0.0332152, 0.0118743647, 0.0123077864, 0.00298407068, -0.00730624329, -0.00323173986, 0.013491095, 0.00980357453, -0.00928759761, -0.0054934416, -0.0316741467, 0.0171992537, -0.00998244714, 0.0189191792, -0.0188641418, 0.00950774737, 0.0199511349, 0.00318702171, -0.00738192, -0.000823414302, 0.00294451229, -0.00388015178, -0.025165949, 0.0169515852, 0.0152316596, -0.011482222, 0.0207079016, -0.0104502672, 0.0528911464, -0.0129544782, 0.00267620385, 0.00585462619, 0.0106291389, 0.00904680789, -0.00522857346, 0.00822124351, -0.00721680699, 0.019992413, -0.0278215129, 0.0055106408, -0.00592342298, 0.0067868256, 0.0193594806, -0.0113859065, 0.00833131839, -0.0149564715, -0.0105809812, -0.0265969262, 0.0111382371, 0.00277595967, 0.00731312297, 0.0277939942, 0.0197860226, 0.015479329, -0.00614013383, 0.0307935439, -0.00256096898, -0.00557255838, 0.00614357367, -0.0339031704, 0.0168415103, -0.00983109325, 0.0174331646, 0.00343985087, 0.0100306049, -0.0157407578, -0.00386639242, -0.0141584259, 0.0160297044, -0.0137250051, 0.00426541502, 0.000185859433, -0.0154655697, -0.0169103071, -0.00954214577, 0.0127618462, -0.00417253887, 0.00954902545, 0.00110075227, 0.0217123386, 0.00811804831, -0.00861338619, -0.0231295563, -0.00972789805, -0.0120738763, 0.023157075, -0.00124178617, 0.0149151934, -0.0196759459, -0.00102507556, 0.00877162, -0.00332805561, -0.00722368667, 0.0125416964, 0.0342884324, 0.00956278574, -0.00101045612, -0.0105121844, -0.0167727135, -0.00725120539, -0.00129596377, -0.00607133657, -0.0253998581, 0.0150665464, 0.00208798936, 0.00539368624, -0.0399022698, -0.000221225404, 0.00864090491, 0.0177221112, 0.0161397792, 0.0148463957, -0.0191393308, -0.00834507775, -0.0127824852, -0.0135392528, 0.0230745189, 0.000350219809, 0.0203363989, 0.0307935439, -0.00236317748, 0.0183275249, -0.0149289528, 0.000124802085, 0.017639555, -0.00106377387, -0.00166488776, -0.00273124152, -0.00357056526, 0.0140070729, -0.00571703212, 0.00736128073, -0.0053730472, -0.00192459649, 0.00730624329, 0.00991365, 0.00446836604, -0.00126586505, -0.0237762481, 0.0111657558, -0.00630180677, 0.0126861697, 0.0124109816, -0.00829004, -0.00834507775, -0.0186577514, -0.008723462, -0.00534896785, -0.00894361176, 0.0197722632, 0.000237994682, 0.0246155728, -0.00301846908, 0.0108286506, -0.00353272678, 0.00777406292, -0.0043238923, 0.022345271, 0.00972789805, -0.00134584168, 0.00619173143, -0.00770526566, 0.00515289651, 0.00553472, -0.00163736905, 0.0141997039, 0.0151491035, -0.00707921293, -0.00720304763, 0.0075883111, 0.0508547537, -0.00837259647, 0.00771902502, -0.0123834629, 0.0016726274, 0.0210794061, 0.0171029381, 0.0265831668, 0.0246293321, -0.00741631817, 0.00915688276, -0.000250034151, -0.0166213587, 0.00769838598, 0.0204327144, 0.00476763304, -0.0252897833, -0.000762356911, 0.00846203323, -0.00403494481, 0.0199786536, -0.0065047578, 0.0167864729, 0.000132219269, 0.0236386545, 0.00631556613, 0.00547968224, 0.0140070729, -0.000598534069, -0.0154518103, 0.0280554239, 0.0023562978, 0.020418955, -0.0106085, -0.000829864, 0.013855719, -0.00716176955, 0.00672490848, 0.000619603146, -0.00449932506, 0.0269684307, -0.028867228, 0.0171579756, 0.0130095156, -0.00651507732, -0.021340834, -0.00995492842, -0.013642448, -0.0104227476, -0.0028447567, 0.00672146864, 0.0269959494, -0.00553816, -0.0112001542, -1.24627404e-05, 0.0170754194, 0.00193835597, 0.0248082038, 0.00853771, 0.014433614, 0.0114340642, -0.0114065455, 0.00688658142, -0.0128650423, -0.00236833724, -0.0154655697, -0.00927383825, -0.00489834743, 0.0088266572, -0.0114134252, 0.0235698577, -0.00357744494, -0.00573767116, -0.0037838358, -0.0212720372, -0.0198960975, -0.000825134222, -0.00459564058, -0.0224553458, -0.00615389319, 0.0212582778, 0.00332289585, 0.0106085, -0.00668019, -0.00486394903, 0.022193918, 0.0163324121, -0.0123765832, 0.0181486532, -0.0065769949, -0.00491210679, 0.00478483271, 0.0185614359, 0.0212995559, 0.00869594328, 0.0161948185, -0.0154518103, 0.0193457212, 0.00208454952, 0.0150390277, -0.00367376069, 0.00608165609, 0.0121564325, -0.00167778728, 0.00900553, 0.0228268504, 0.00700353645, -0.0200199317, -0.0131539898, 0.0151353432, -0.0106360186, 0.0122802677, 0.000360109378, -0.00537648704, 0.00160297053, -0.0101406798, 0.0064703594, 0.00321970042, 0.00809053, 0.012658651, -0.0059509417, -0.000334525481, -0.00536960736, 0.00131574296, -0.0027708, 0.0135186138, 0.0257988814, 0.00588902459, -0.00134240184, 0.00236661732, -0.0013475616, 0.0195245929, -0.021767376, 0.0149702309, -0.00360152381, -0.0164149683, -0.0213683527, 0.00822124351, -0.0204051957, 0.0207904577, 0.00305114756, 0.00825564191, 0.0311237704, -0.00677994592, -0.00581334811, 0.00367032085, -0.0090743266, 0.00561383646, 0.0369852744, 0.0151078245, 0.00727872411, -0.019221887, 0.0161397792, 0.00617109239, 0.00897801109, 0.0103952289, -0.00504970085, -0.00174486428, -0.00493274629, 0.00990677066, 0.00825564191, -0.0112827104, -0.00116696942, -0.00265212497, 0.01984106, 0.0118262069, 7.83641e-05, -0.00421725726, -0.0193732399, -0.0261979047, -0.0109180864, -0.0111588761, -0.00244229403, -0.0178597048, 0.00367032085, -0.00901240949, -0.00211206847, -0.00798045378, -0.0162085779, 0.00672490848, 0.0122183505, 0.0218636915, 0.0189466979, -0.0131264711, -0.00178012275, 0.00665955106, 0.00349832838, 0.0116129359, -0.0189466979, -0.000463519886, -0.0164975245, 0.00325753866, -0.0342884324, -0.0109593645, -0.00528017106, 0.00386639242, 0.0240789559, -0.0130851921, -0.00816620607, 0.00970725901, -0.0152729377, 0.00899177, 0.0163048934, 0.0143235391, -0.0276288819, 0.0174056459, -0.0043238923, -0.0142134633, -0.00518041523, -0.0139726745, 0.00912248436, 0.0354992598, -0.00694161886, -0.0133328615, -0.00906744692, -0.00277767959, 0.00497746421, -0.023115797, 0.0069794571, -0.02373497, -0.000433851179, 0.0171579756, 0.0214096308, -0.0308761, 0.00867530331, -0.0027467208, -0.000835453742, 0.00161758985, 0.0222902335, -0.00652883667, -0.0158095546, 0.00129252393, 0.0122596286, -0.0274500102, -0.0133053428, -0.0283994079, 0.0160847418, -0.0114684626, -0.015823314, 0.0256337691, 0.00449932506, 0.0216297824, -0.00370471925, 0.0312888846, -0.0224003084, 0.000902960834, 0.006735228, -0.00838635676, -0.00649787812, 0.0188228637, -0.0147225615, -0.00707921293, -0.00639124261, 0.0156582016, 0.0245742947, -0.00846203323, -0.00922568, 0.0174194053, 0.00102335564, 0.0111657558, -0.00633620517, 0.0266519636, 0.0170891788, -0.00792541634, 0.00789789762, 0.0171854943, 0.0177633893, -0.00841387548, 0.00974165741, 0.00653227651, 0.0115785375, 0.00543840416, 0.00998932682, 0.0141033884, -0.0244917385, 0.0103814695, 0.00419661822, -0.00319734123, -0.0027708, -0.0126930494, -0.0195245929, 0.0289497841, -0.0133741396, -0.000318616192, -0.0038732721, 0.00713425083, 0.00983109325, -0.0139313955, 0.00593030266, -0.00401430577, -0.018368803, 0.0211619623, -0.00297031109, 0.0143648172, -0.00514601683, -0.00381823443, -0.0104709063, -0.000833303842, -0.0169928633, 0.0107529741, 0.0127549665, 0.0150115089, 0.00279315887, -0.0194833148, -0.0236661732, -0.0115991766, 0.0013802402, 0.0122596286, -0.0130989524, 0.00562415598, 0.02099685, 0.0213683527, 0.00926695857, 0.00562071614, 0.0115785375, 0.00368752, 0.00540400576, -0.00620893063, -0.00227718125, -0.00598878041, 0.00833131839, 0.00674898736, -0.0313714407, 0.0229782034, -0.00148773543, 0.0017010062, -0.00131746288, -0.0126173729, 0.00291871349, 0.0207766984, 0.023390986, -0.00152729382, 0.0273399334, 0.0124522597, 0.00829692, 0.0268308371, -0.000904680754, 0.0261566248, -0.0129475985, -0.0109800035, -0.0164562464, -0.0175707582, -0.0131746288, 0.0099618081, 0.0251384303, 0.00252657034, -0.0124385, -0.0100581236, -0.00772590516, -0.0012280267, -0.0153142158, 0.0159471482]
25 Jun, 2020
Data Link Layer Communication Protocols in IoT 25 Jun, 2020 Several Communication Protocols are used in Internet of Things (IoT) to provide service to the network layer. As we know IoT is based on networking of things where smart devices communicate with each other by sending and receiving data. So for that several network protocols (Communication protocols) are used to connect the IoT enabled devices and to establish the communication. Some of the popular Standard IoT communication protocols are: Bluetooth : Bluetooth is a PAN (Personal Area Network) or it is a short-range wireless communication network for exchanging data between the connected devices through that network. It is very cheaper in price and effective in a performance point of view for short-range distance. It is a 2.4GHz network that works well for personal wireless network communication. It provides a data transfer rate of 3 Mbps in a range of 50m to 150m. Nowadays Bluetooth is almost present in all smartphones and it is highly used in wearable devices connected with the mobile applications. ZigBee : Zigbee is similar to Bluetooth technology with 2.4Ghz frequency. It is a low power personal communication network. It is cheaper and is widely used for several applications. It is used for specific commercial and industrial applications. Its range varies from 10-100m. Mesh networking is one of the important advantages of Zigbee technology. Zigbee supports star or mesh network topology. BLE (Bluetooth Low Energy) : Bluetooth Low Energy is also known as Bluetooth smart which is a wireless PAN(Personal Area Network). The range is similar to that of Bluetooth but it consumes low power than Bluetooth. In 2011 BLE was introduced as Bluetooth 4.0. BLE goes to sleep mode when there is no transmission of data. It is a low-cost networking protocol. The smartphones operating systems like android, ios, etc uses this BLE technology and provide a Bluetooth network. Wi-Fi (Wireless Fidelity) : WiFi is a local area network which is a wireless network there is no wired connection. It is Proposed by Wi-Fi Alliance. WiFi provides Internet access to devices within a range of 60 feet to 100 feet. It uses high-frequency radio signals for sending and receiving data. It uses the IEEE 802.11 standard. Its data rate varies from 2Mbps to 1.73Gbps. We can set up PAN (Personal Area Network) or LAN (Local Area Network) or WAN (Wide Area Network) in IoT systems. By Routing, we can increase the network area. Z-Wave : Z-wave technology is a wireless communication protocol that creates a wireless Mesh network. It is based on low power RF(Radio Frequency) based technology. It is mainly used for home automation applications and devices. It operates in 900 Mhz frequency bands. It is a more secure technology. It offers data transfer rates of 9.6Kbps, 40Kbps, or 100Kbps. Its range varies from 98 to 328 feet. It is low power and longer range IoT technology. RFID (Radio-Frequency Identification) : Radio Frequency Identification technology uses radiofrequency waves to transfer data between a reader and a movable item to identify and track. It does not require contact between reader and tagged item. RFID tag, RFID reader, RFID antenna are the key components of RFID technology. Tags operate depending upon their frequency bands of 13.56 and are mostly used. Cellular : Increased quantities of data can be sent over longer distances or range by using Cellular communications (GSM/3G/4G/5G etc). But it is very useful in sending a small quantity of data over the internet. Cellular carriers manage the infrastructure so when we use it we don’t need to worry about infrastructure costs and support costs. Sigfox : Sigfox is a form of wireless communications that provides low power and long-range wireless connectivity for devices. The messages are transmitted over the Sigfox global network. Sigfox provides one of the largest IoT networks. It is like Cellular network type which sets up antennas on towers. It is a Low Power Wide Area Networks (LPWAN). Ethernet: Ethernet is used to connect the devices in a Local Area Network (LAN) which is based on IEEE 802.3 standard. Ethernet is a LAN technology in which the devices are wired connection which provides data transfer rates as high as 100 Mbps. Choosing Ethernet for IoT ecosystem is a little bit costly in terms of setup and management. NFC (Near Field Communication) : NFC is an IoT which helps to connect devices. It provides short-range wireless connectivity technology but NFC transmission is slower than Bluetooth. It is based on Radio Frequency Identity (RFID) technology. It can operate in low power. It operates at 13.56 MHz frequency. LPWAN (Low Power Wide Area Network) : LPWAN (Low Power Wide Area Network) is a wireless wide area network technology whose range varies from 2 km to 1000 km depending on the technology. Siggfox, LoRa is the examples involve all major LPWAN technology. LoRaWAN : LoRaWAN(Long Range Wide Area Network) is a wide area network protocol. It is a low power consumption protocol that targets the wide-area network (WAN) applications with better security and mobility. It supports a large network with millions and millions of low power devices deployed on public networks. It is along with range bidirectional communication which has a range of more than 15 km. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System/Introduction of System Call/How much Stack size required for BIOS interrupt call?/Difference between Interrupt and Polling/Difference between Difference Engine and Analytical Engine/Difference Between Store‑and‑Forward Switching and Cut‑Through Switching/Difference between Message and Packet Switching/How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?/Types of Node Devices in a Computer Network: End devices and Intermediary Devices/Types of Errors in Computer Network/Difference between Storage Area Network (SAN) and Network Attached Storage (NAS)/Difference Between Network Security and Network Administration/Internet Administration/Internet Telephony Protocol | H.323/IPsec (Internet Protocol Security) Tunnel and Transport Modes/Real-time Transport Control Protocol (RTCP)/Cisco Discovery Protocol (CDP) and Link Layer Discovery Protocol (LLDP) in Data Link Layer/Data Link Layer Communication Protocols in IoT
https://www.geeksforgeeks.org/data-link-layer-communication-protocols-in-iot?ref=asr10
PHP
Data Link Layer Communication Protocols in IoT
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, Difference between Difference Engine and Analytical Engine, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Difference between Interrupt and Polling, Types of Node Devices in a Computer Network: End devices and Intermediary Devices, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, Types of Errors in Computer Network, jQWidgets jqxToolBar close Event, How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, Difference between Message and Packet Switching, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, Difference Between Network Security and Network Administration, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, Introduction of System Call, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Data Link Layer Communication Protocols in IoT, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Difference Between Store‑and‑Forward Switching and Cut‑Through Switching, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, IPsec (Internet Protocol Security) Tunnel and Transport Modes, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, Internet Telephony Protocol | H.323, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, Difference between Storage Area Network (SAN) and Network Attached Storage (NAS), jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, Real-time Transport Control Protocol (RTCP), unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, Internet Administration, Cisco Discovery Protocol (CDP) and Link Layer Discovery Protocol (LLDP) in Data Link Layer, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How much Stack size required for BIOS interrupt call?, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0400225073, -0.00201328378, -0.0156056304, 0.0232582539, 0.0418820232, 0.0218135528, 0.0283075552, 0.017450843, -0.00769553566, 0.00434483076, 0.0154053755, -0.037762478, 0.0564148538, -0.00712695299, -0.00350447255, -0.00128914521, 0.0164066534, -0.036332082, 0.000882376102, -0.0103203142, 0.0161348768, -0.00348301651, -0.0197966937, -0.0207264517, -0.000599425694, 0.0240735803, 0.0421108864, 0.00216347538, -0.0545839481, 0.0286651552, 0.0323269702, -0.000407886633, -0.00344725652, -0.0330993868, -0.00125517335, -0.0535826683, -0.00773844728, -0.00655479403, -0.0137675703, 0.00305389753, 0.00954074785, -0.00225108722, 0.0360173956, -0.00919030048, -0.0327560902, 0.0359315723, -0.0146186566, -0.00775275147, 0.014325425, -0.0201685969, -0.0442564823, -0.0609921254, 0.0157343671, 0.0452005416, 0.0203831568, 0.0271346308, 0.048604887, 0.0434840657, 0.035044726, -0.021327218, 0.0385348946, 0.00705900881, -0.0157057587, -0.0461732149, -0.0234585106, 0.0237159804, -0.0142109934, 0.0221997611, 0.045601055, -0.0439417958, -0.0385062844, 0.0348730758, 0.0136316828, -0.0218707696, -0.0127090765, -0.014361185, 0.000482311967, 0.0552991442, 0.0398508571, -0.00263550645, -0.0075167357, 0.0166784283, 0.028221732, -0.0353594124, -0.00283933803, 0.0463734679, 0.0104633532, -0.0532965884, 0.0422539264, 0.0189813673, -0.000951213937, 0.0428546928, -0.0293517448, -0.00466309395, -0.0232439507, -0.0239162371, 0.0285078119, -0.0028572178, -0.0368756317, 0.0348730758, 0.0434268527, 0.00948353205, 0.0149619523, 0.0126661649, 0.0357885323, -0.00954789948, 0.0025854425, 0.0176510978, -0.022185456, 0.021398738, 0.0124086933, -0.0101272101, 0.00863244571, 0.0313543, -0.030810751, 0.00411954336, -0.00324878911, -0.0595617294, 0.00380128, 0.0379341282, 0.00231903093, 0.00788863935, -0.0442850888, -0.00891137309, -0.0492056534, 0.0353594124, 0.00798876677, -0.0338718, 0.0125517333, 0.00651545823, -0.0209267065, 0.0162636135, 0.00911162887, -0.0203402452, 0.0245027, -0.0202401169, 0.00542120449, 0.0036868481, 0.00775275147, -0.0510365628, 0.0149190398, -0.00342758861, -0.00016337815, -0.0104061374, 0.00199361565, 0.0128092049, -0.017379323, 0.0367325917, -0.0454580151, 0.00493486924, -0.0412812568, -0.0192817505, 0.0225144476, -0.00140715297, -0.00411239127, 0.0118222311, 0.0425686128, 0.0110355122, -0.00418033497, 0.014039346, -0.00249246671, -0.0400511138, 0.00798876677, -0.0155055029, 0.013538707, 0.0309251826, 0.0250748582, 0.0137818744, -0.0680296794, 0.0311254375, 0.00903295632, -0.0118579902, 0.0124802133, 0.0285078119, -0.00878978893, 0.0118079269, 0.00890422054, 0.0231438223, -0.0117721669, 0.00771699147, -0.0150620798, -0.021613298, 0.0196393505, 0.00656552194, 0.0131668039, 0.024702955, 0.0272204541, -0.00193282391, -0.00871111732, -0.0137389628, -0.027506534, 0.0186237674, 0.0275351405, 0.0350161158, -0.00943346787, -0.0347014293, -0.00327382097, 0.0236444622, 0.00438774284, -0.00232975907, -0.0128592681, 4.39176547e-05, -0.00839643, 0.0258615762, 0.0162922218, 0.00763832, -0.00382631179, 0.00233691093, 0.0392214842, 0.0326702669, -0.0609921254, 0.00661916193, 0.0215131696, 0.00939770788, 0.0225144476, -0.00422682287, 0.00337752467, -0.0285936352, -0.0109067764, 0.0307535343, 0.0238590203, 0.0209410116, 0.0121440701, -0.00755249569, -0.0785574, -0.0233011656, -0.00719489669, -0.0235729422, -0.0403371938, 0.00110140559, 0.0259187929, 0.013252628, 0.00639387453, -0.013610227, -0.0266769025, 0.0144255534, -0.00115504558, -0.00564649189, -0.0425400063, -0.00372618414, -0.0358171389, 0.000230428, -0.0478610806, -0.0510079563, -0.0405374505, 0.00048856996, -0.0071019209, 0.0926325, -0.0176940095, 0.0182089526, -0.0323555805, -0.0104418974, 0.0379913412, 0.0260332245, -0.037419185, 0.00823908672, 0.0312684774, -0.0328991301, 0.0161348768, -0.0101701226, 0.0102487942, 0.00794585515, 0.00102720375, 0.00869681314, -0.00873257313, -0.00868966151, 0.0388209745, 0.0126017975, 0.0157915819, -0.0560715608, 0.0184950326, -0.0281931236, -0.00774559937, 0.0178799611, -0.00243346277, 0.00375121599, -0.0129307881, -0.0112929838, 0.0363034755, 0.037619438, 0.0151192956, -0.0419392399, 0.00981252268, -0.00327024492, -0.0055070282, -0.0233869907, -0.0244883951, 0.019095799, -0.0417389832, -0.0329849534, -0.0287652817, -0.00361711625, -0.0122012859, 0.0163780451, 0.0110498164, -0.00448429445, -0.0143325776, 0.0162922218, 0.0209124032, 0.00234942697, 0.0145828966, -0.0117793186, -0.0183949042, 0.0142396018, -0.0270201974, -0.030810751, 0.00131507113, -0.018881239, -0.000209419057, 0.00129272125, 0.0223141927, -0.0252608098, -0.0391928777, -0.0516373292, 0.0269200709, 0.0285078119, -0.0201542936, -0.0362462588, -0.0156914536, -0.0348730758, 0.0369614586, 0.044370912, -0.024989035, 0.0538401417, 0.0026891462, -0.00590038719, 0.0424255729, 0.0254467614, -0.00321660517, -0.00419821497, -0.0236015487, -0.0175509714, -0.019024279, -0.015004864, 0.0527530387, -0.0345583893, -0.0124444533, 0.0287652817, -0.0037834, 0.0199540369, -0.0270201974, -0.0532965884, 0.00684087351, -0.0364465155, -0.0123085659, -0.0188240241, -0.00624725875, 0.018023001, 0.0106564574, -0.0146901766, 0.00147599087, -0.00130434323, 0.0271060225, 0.00630447455, 0.0116148228, -0.00634381035, -0.00606488297, -0.0305818859, -0.014790304, 0.00131507113, 0.0263193045, -0.00401226338, 0.0147616966, 0.0144827692, -0.0332996398, -0.0285650268, -0.0143325776, -0.0343295261, -0.00239233882, -0.000959259924, -0.0266482942, 0.00984113105, -0.0144827692, 0.0221282411, -0.0123586291, 0.000991443871, 0.0385348946, -0.00439131865, -0.00323269702, 0.0106779132, 0.0168357715, 0.00957650784, -0.0255898014, 0.0151765114, -0.0318978503, 0.00980537105, 0.026419431, -0.039135661, -0.0163208283, 0.0505788364, -0.00783142354, 0.0245599151, -0.00572874, 0.00416603126, 0.025632713, -0.0204689801, 0.0314115174, 0.0345297828, -0.0122227417, -0.00562861189, -0.0268342458, 0.024202317, -0.00432337495, -0.00250319461, -0.00142771495, -0.00972669944, -0.0300669428, 0.0108924732, -0.0159775335, -0.0382774211, -0.00106206967, -0.0511509962, -0.0245885234, -0.00297701359, -6.95642229e-05, 0.0232868623, -0.0127019249, 0.0743234232, 0.00288940175, 0.00205440749, -0.000908302085, 0.0268056393, -0.00187203195, -0.0164066534, 0.0243739635, 0.0218421612, 0.0117149511, 0.0211841781, 0.00219208328, 0.0118293827, 0.00698748883, 0.00185236405, 0.00969093945, -0.00679438561, -0.0274922289, -0.0629374683, 0.0340148397, 0.0317834206, -0.014790304, 0.00125249138, -0.00373691204, 0.0385635, -0.0202115085, 0.000719221483, -0.0612209886, -0.00820332672, -0.0222140644, -0.0294089615, -0.0317262039, -0.0326130502, -0.0186380725, 0.0236587655, -0.0154768946, 0.00916884467, 0.0153910713, -0.0266769025, 0.0264337361, -0.0282646436, 0.0225859676, -0.00564649189, 0.0131668039, 0.0316689871, -0.00595045136, 0.00303959358, 0.0201685969, 0.018237561, 0.00499208551, -0.00413742336, -0.0191244073, 0.0320122838, 0.00142145692, -0.0596761592, 0.0358457491, 0.0326988734, 0.0103918342, -0.0168500766, -0.00572158769, 0.0226717908, -0.0115790628, -0.0338431932, -0.00861099, 0.0496061668, 0.0240163654, -0.035244979, 0.0228577424, 0.0353594124, -0.000911878073, -0.00576092349, 0.0123157175, -0.0087254215, -0.00508863712, 0.0235014223, -0.0211698748, -0.0158344936, -0.0223571043, -0.0479182974, -0.00636884244, -0.00106922176, -0.0361032188, 0.0326702669, -0.0263336077, 0.00868966151, -0.0137032028, 0.0351305492, -0.042940516, 0.00418748707, 0.0207121484, 0.0285078119, 0.000667369575, -0.00188812392, -0.0144613134, 0.0391070507, -0.0027338462, 0.0362176523, 0.0343295261, 0.0292802248, -0.044227872, 0.00412669498, -0.00371903204, 0.019968342, -0.000905173074, 0.0398222506, 0.0322697535, 0.0141680818, -0.0052924687, 0.0036868481, -0.00824623834, 0.00681941723, -0.0244025718, -0.0281359069, -0.00884700473, -0.015362463, -0.0227576159, -0.0371617116, -0.0393073075, -0.005206645, -0.00593257137, 0.0205405, -0.022328496, 0.0268342458, -0.00761686359, 0.0209267065, -0.0237016771, 0.0152051197, 0.0205118917, 0.00152873679, -0.00385134388, 0.000416603114, 0.0135530112, 0.0028482778, 0.0513798594, 0.0238590203, 0.00415172707, 0.00526028452, -0.0351019427, -0.00552490819, 0.0452291518, -0.0233297739, -0.0170789398, 0.00108084374, -0.00588250719, 0.0158201903, 0.0255039781, -0.00194533984, 0.01037753, -0.0263336077, 0.00557854818, 0.0093476437, 0.00867535733, 0.00394431967, -0.0110283606, -0.0211412665, -0.0167928599, -0.00336322072, 0.0247172583, 0.0261476561, 0.0160633568, 0.0100556901, -0.00926182, 0.0180373061, -0.00115325756, 0.0109711448, 0.0348730758, 0.018023001, 0.0219279844, 0.013932066, 0.0245599151, 0.0244311802, 0.0284219868, 0.00675862562, 0.00951213948, 0.00828199834, -0.0375050083, -0.00533538079, 0.0268342458, -0.00421609497, -0.00298774173, 0.00242094672, -0.011164248, -0.0280500837, 0.0103703775, 0.0410237834, 0.0347300395, 0.0446856022, 0.00750243198, 0.0148046082, -0.0227862224, 0.0231438223, 0.00237088301, 0.00770983938, 0.0210697465, -0.00188812392, 0.0316689871, 0.0277497, -0.0191244073, 0.0093476437, -0.00611852296, 0.0273348857, -0.0075167357, 0.00838212576, 0.0139892818, 0.0119938785, -0.00367254415, 0.0277497, 0.0317834206, 0.00519949291, -0.00479182974, -0.0262477845, -0.0127448365, -0.0114360237, 0.0162207019, 0.000494827924, -0.0105134174, 0.00634738663, -0.00826769415, -0.0166212115, -0.0118579902, -0.0253609382, -0.00864675, 0.0279785637, -0.0308393575, -0.0104562016, -0.0112858322, 0.0974386409, -0.00512082083, 0.0584460199, -0.0189956706, 0.04165316, 0.00976961106, 0.0100342343, 0.0228148308, 0.00293231383, 0.0214273464, 0.0223428011, -0.0163494367, -0.0145828966, 0.00542835658, -0.0328133069, -0.011200008, 0.0190814957, 0.00113627152, -0.027206149, 0.0213415232, 0.0256756246, -0.0227147043, -0.00417675916, 0.00812465418, -0.000375702686, 0.0166212115, 0.00543908449, -0.0205261968, -0.0222712811, 0.0325558335, 0.0207264517, -0.0206263233, -0.015648542, -0.0217277296, 0.0101486659, 0.00265696226, -0.00620792294, -0.0300097279, -0.00424112706, 0.00244776672, 0.00673359353, -0.00605057925, -0.00704112882, -0.0258758813, -0.0193103589, -0.0263765194, 0.00129093323, -0.0109568406, -0.000524329895, 0.0094406195, -0.022471536, -0.0170503315, 0.0027338462, 0.0181803443, -0.00733078411, -0.00227611908, -0.0488337502, 0.0100413868, 0.0176081862, -0.00667995354, 0.00300204568, -0.0127591407, 0.0425400063, 0.00434840657, -0.0238590203, -0.0460873879, -0.00461660605, 0.0177655295, 0.0145828966, 0.00463806186, 0.0279928688, 0.0397078209, -0.0175509714, -0.0299811196, 0.0187811125, -0.0226288792, 0.0183662958, 0.00246564671, 0.0127162291, 0.0211126581, -0.0163065251, -0.0211698748, 0.00852516573, -0.00335606886, -0.0173364114, -0.0217277296, 0.00841073412, 0.032098107, -0.0130452197, 0.00229221117, 0.0193818789, 0.0173364114, 0.000657088589, -0.00999132264, 0.0274493173, 0.0252894182, -0.00972669944, 0.0177083146, -0.0306104943, -0.00833921414, 0.0211126581, 0.0089328289, -0.0321839303, 0.044370912, 0.0399366841, -0.0365895554, -0.0275923572, -0.00356347649, -0.0350161158, 0.0210125316, -0.0568439737, -0.0140608018, 0.0128449649, 0.0384204611, -0.0119295102, 0.0127448365, 0.00783857517, 0.0143540334, 0.0645967275, 0.00660128193, 0.0357313156, -0.00652976194, -0.00958365947, -0.0482902, -0.0216705129, 0.0131095881, -0.0120081827, 0.0339004062, 0.056643717, 0.0365323387, 0.000637420628, -0.0296378247, -0.0141323218, 0.0121941343, -0.0340434462, -0.0193818789, -0.0189956706, -0.0331566, 0.0343295261, -0.00123282336, 0.0120510943, -0.0234155972, -0.0286651552, 0.059447296, -0.00587893138, 0.0195964389, 0.0202258136, 0.0362176523, 0.00694457721, 0.00940485951, 0.0341292694, 0.0298094731, -0.0202401169, 0.00537471659, 0.0193961821, -0.0352735892, -0.0235872455, 0.0237016771, 0.000757216359, 0.00934049208, -0.00423397496, -0.00350447255, -0.0335857198, -0.0583601967, -0.0420822762, -0.0196250454, -0.00801022258, 0.00621865084, -0.0196965653, -0.0197108705, 0.0203259401, -0.00861099, 0.0198253021, 0.00959796365, -0.0103918342, -0.00709119299, -0.00927612372, -0.0121512217, -0.00160472654, 0.0375050083, 0.000548914832, -0.00299489358, 0.0147616966, 0.0400511138, 0.0122799575, 0.00889706891, 0.00994841103, -0.00202222378, -0.0364465155, -0.0260046162, -0.0260618329, -0.0232010391, 0.0118293827, 0.00158237666, 0.0243310519, 0.016664125, 0.0054998761, 0.0233154707, 0.00425900705, 0.000902938074, 0.0125231249, -0.00380485575, 0.0292659216, -0.00442350237, 0.0205691084, 0.0287795868, -0.000565006805, 0.0183376893, 0.00281251804, -0.0242595319, 0.00489195762, -0.0163923483, 0.0266339909, 0.0160776619, -0.00642963406, 0.0036206923, -0.0122728059, 0.0071019209, 0.000856897153, -0.0128592681, 0.0504644029, -0.00790294353, -0.0139821302, -0.0144398576, -0.00226717908, -0.0227719191, 0.00482758973, -0.00890422054, -0.0284076836, 0.00485262182, 0.0463162512, 0.0104275933, 0.0026784183, -0.014647265, 0.0222140644, 0.0237875, -0.00789579097, 0.0241594035, 0.0101629701, -0.0193246622, -0.0054033245, 0.0137890261, 0.00676220143, -0.0132097155, -0.00960511528, 0.0163637418, -0.00738800038, -0.0012873573, 0.0156342387, -0.00598978717, 0.0173221063, -0.00886130892, -0.0035938723, -0.00552490819, 0.00427688705, 0.0232153423, 0.0424255729, -0.00177548022, -0.0115647595, -0.0243167486, -0.00994841103, 0.0330993868, -0.0502927564, -0.00970524363, 0.00521379663, -0.0120439427, -0.0193389673, 0.0106063932, 0.000148403677, -0.018023001, -0.0113287438, 0.0332138166, 0.0256470162, -0.0402513705, -0.0207121484, 0.00273921015, 0.00661916193, 0.0191959273, 0.0113859596, -0.00460945396, 0.0310110059, -0.00655837, 0.0053568366, -0.0255898014, -0.0317548104, -0.00123729336, 0.0122585017, -0.00678008143, 0.000928864, -0.007395152, -0.0245027, 0.00229399907, -0.002791062, 0.0266769025, -7.48723396e-05, -0.0532107651, 0.00102988584, -0.0209124032, -0.00473461393, 0.0312398691, 0.00159221061, -0.0252751131, 0.0184092093, 0.00809604675, 0.00818902254, 0.00713410461, 0.00457727024, -0.00772414356, 0.00136155915, 0.0252894182, -0.0201685969, 0.034758646, -0.040423017, -0.0386207178, -0.0524669588, -0.0162779167, 0.0230150875, 0.0487193204, 0.00667280192, 0.00812465418, 0.0154625913, -0.0153481588, 0.0195821337, 0.0116219753, -0.0145614408, -0.00496705342, 0.000255906954, 0.00163333456, -0.0194533989, 0.00878263731, -0.00849655736, -0.0156199345, -0.0401655473, -0.0198968221, -0.0387065411, -0.0100342343, 0.00904726051, 0.0280643888, -0.000782695308, 0.00700536883, -0.00698748883, -0.0141537776, -0.024202317, 0.00113180163, -0.00808889512, -0.00542478031, -0.00364751229, -0.0158058871, 0.0143683376, 0.00457011815, 0.0114217196, -0.0237588938, 0.000771967345, -0.000820690242, 0.011529, -0.0344725661, -0.0273491889, -0.017522363, -0.0116434311, -0.00642605824, 0.032384187, 0.0144970734, 0.0160204452, 0.00298416568, 0.00937625207, 0.0249461234, 0.00660128193, -0.00477394974, -0.0417675897, -0.0143397292, -0.0109926006, 0.0249604266, -0.00302171358, -0.0320122838, 0.0191387106, -0.00979106687, -0.0036224802, -0.00413027126, 0.0149190398, -0.00227075513, -0.00735224038, 0.0268199425, 0.0329563469, 0.00485262182, -0.0126089491, -0.0128950281, -0.0162493084, 0.0194533989, -0.00299846963, -0.0166927315, -0.00461660605, -0.0186809842, -0.00302886544, -0.0189241506, -0.0708904713, 0.0131739555, -0.0223714076, 0.000638314639, -0.0113931112, 0.0403085873, 0.0198825169, -0.0130523723, -0.00256398646, -0.00912593212, 0.00987689104, -0.00272133015, -0.0112929838, 0.0139821302, -0.0186809842, 0.0155198071, 0.00868966151, -0.00926897209, 0.0177512262, -0.00385134388, -0.000849745178, 0.0195821337, 0.018166041, -0.0123800859, -0.0265338626, 0.0127233807, -0.00661916193, -0.0134171229, 0.0194820073, 0.018094521, -0.00426615868, -0.0111356406, 0.00453435816, -0.0136316828, -0.00697318511, 0.0180373061, -0.00370830414, 0.0117292553, 0.0201829, -0.0190671906, -0.00326666911, -0.00550345238, 0.0035080486, -0.0119295102, -0.00149834075, 0.00643321034, 0.00365287624, -0.0105348732, -0.0104705058, 0.0198253021, -0.00978391524, 4.21296609e-05, -0.0280929953, -0.00142503297, -0.00496705342, 0.0164209567, 0.015219423, -0.0246171318, 0.0126017975, -0.0202544201, 0.0714626312, -0.0160919651, -0.00250140671, -0.030810751, 0.0152051197, 0.00533180451, 0.0073665441, 0.0160061419, 0.0211698748, -0.0135029471, 0.0278784372, 0.00893998053, -0.00658697775, 0.00719489669, -0.00390498363, 0.028007172, 0.0150620798, 0.0303244144, 0.00052388286, 0.0241021886, -0.00444138236, 0.00990549847, -0.000715198461, 0.0197537821, 0.00422682287, 0.0241594035, -0.0211984832, -0.0175509714, 0.00810319837, -0.00570728397, 0.0517803691, -0.0186237674, 0.00444495864, -0.00288761384, 0.00193103589, 0.0491198301, -0.00631520245, 0.00856092572, -0.00657267403, 0.00621149875, -0.0135172512, -0.0129164839, -0.0037440639, 0.00758825568, -0.0100127785, 0.00407305546, -0.0205548033, -0.0133456038, -0.00864675, 0.00891137309, -0.0203402452, -0.0177226178, 0.0135244029, 0.00217956724, -0.0169931147, 0.0180659126, 0.0258186646, 0.00603627507, 0.0260189194, 0.0094978353, -0.0130523723, 0.00939770788, 0.00651903404, -0.00166998839, 0.00304674543, -0.0146758724, -0.0207693633, -0.00577522768, -0.00882554892, 0.0184235126, -0.00666207355, -4.13194757e-05, -0.0199540369, 0.00153678271, -0.0137818744, 0.0355310589, 0.00381200784, 0.0146615682, 0.0240449719, -0.0211412665, 0.0117435586, -0.00732363248, -0.000312452321, 0.00678008143, -0.00552490819, -0.0129880039, -0.00936194789, -0.00357062835, 0.0313256942, 0.002764242, 0.00861814152, 0.00497778133, -0.0278212205, 0.00846795, -0.017593883, -0.0107923448, 0.0324127935, 0.0243596602, 0.0133169955, 0.0265624709, 0.0217134263, 0.00912593212, -0.00151890272, 0.00692669721, 0.0168071631, -0.0153481588, 0.0100056268, -0.0010039598, -0.0143826408, -0.0172219798, 0.0421108864, -0.00950498786, -0.00770983938, 0.00570013188, 0.0163351335, -0.0138533944, 0.0399080738, 0.000744253397, 0.0257328413, -0.011629127, -0.0277067889, 0.0185951609, 0.0247887783, -0.0135673154, -0.0175366662, -0.0090258047, 0.011056968, -0.00454866234, 0.000906514062, 0.00815326255, -0.027206149, 0.0247601718, -0.0176224895, 0.00196679588, -0.0317548104, 0.0201113801, -0.00881124474, 0.0220996328, 0.0129951565, 0.0216705129, -0.00499208551, 0.0072521125, -0.0190099757, 0.00928327627, 0.00689093722, 0.0161491819, -0.0346728228, 0.00466667, 0.000162260651, 0.0185093358, -0.0145972008, -0.0431979895, 0.00986973848, -0.025561193, 0.0405946635, 0.00595045136, -0.0120868543, -0.0148189124, -0.000846616167, -0.0182661694, 0.0146901766, -0.00197573588, 0.0324127935, 0.0147760008, -0.00929758, -0.0177798346, 0.0108138006, 0.0175652746, 0.00693742512, 0.00931188371, -0.014146626, -0.0103203142, -0.000521200884, 0.0091759963, -0.0139535218, -0.00275887805, 0.0180516094, -0.0166498199, 0.00826054253, -0.0108638648, 0.00462733395, -0.00268199435, 0.00743806409, 0.00157969457, -2.99209987e-05, -0.00101647584, -0.0250462499, -0.0154482871, 0.00328097306, 0.0266196877, 0.00614713086, 0.0164209567, 0.00747382408, -0.00300740963, -0.00196321984, 0.0164638683, 0.00890422054, 0.0229292624, 0.00454866234, 0.00821047835, -0.0287509784, 0.00645466615, -0.00408735918, 0.00899004471, -0.021470258, 0.00404444756, -0.0178084411, -0.00632593036, 0.0310682207, -0.0228720475, -0.00329348887, 0.00500638923, -0.00449859817, -0.00888276473, -0.0129093323, -0.00290728174, 0.0092332121, -0.0309537891, 0.00244061486, 0.00145095889, -0.0258329678, -0.0104919616, -0.00209731958, 0.0270201974, -0.0117507111, -0.0156342387, 0.0112071596, 0.00915454049, 0.0243882686, 0.00374764, -0.0197537821, 0.0218421612, 0.0169072915, 0.00442707865, 0.0163637418, -0.0213844348, 0.0206549317, 0.00683372142, -0.0131167397, 0.00966233108, -0.00639387453, 0.0150477756, 0.00834636576, -0.00701252092, -0.0013293752, 2.11067363e-05, 0.00772414356, 0.000406769133, -0.00899719633, 0.0177083146, 0.0250319466, -0.0266769025, 0.0198682137, -0.0293517448, -0.00141430495, -0.00907586887, -0.0071019209, 0.0050564534, 0.0294947848, -0.0190671906, 0.0161920935, 0.000140134202, -0.0014750968, -0.0085537741, 0.0220996328, -0.00555351609, -0.0185093358, 0.000308429328, 0.00164585048, 0.0198825169, -0.0127591407, 0.0261333529, 0.0140321944, 0.00852516573, -0.00197394774, -0.00871111732, 0.00444495864, 0.0260475278, -0.0224572327, -0.00237445883, 0.0180659126, 0.0511509962, -0.00817471836, -0.0295520015, -0.0186523758, 0.00342222466, 0.0151765114, -0.0145542892, -0.022328496, -0.0100842984, -0.00111034559, 0.0133599071, 0.0220853295, -0.0235300288, -0.0090830205, 0.0442564823, 0.0255182814, 0.00511366921, -0.00836782251, -0.00838927832, 0.0100986026, 0.00247995066, 0.00823193416, 0.0130738281, -0.00684444932, 0.00128914521, 0.0195535254, -0.0274207089, 0.0366467685, -0.00635453826, 0.00989119522, -0.0149905598, 0.0126447091, 0.00848225411, 0.00534610869, 0.00471315812, 0.00999132264, 0.0166498199, 0.00598263508, 0.0130881323, -0.0160776619, -0.0054319324, 0.010770889, -0.00925466791, -0.0179943927, -0.0230293907, -0.0100986026, -0.00600051507, -0.00527101289, 0.00115593954, 0.00327739702, -0.0237445887, -0.00246564671, -0.00912593212, -0.0218993779, -0.00961226784, 0.011271528, 0.00405159919, 0.00270166225, 0.00212950353, -0.0150334714, -0.000785377342, -0.0115790628, 0.0190814957, 0.0113144396, -0.0149762556, 0.00076258037, 0.00657267403, -0.0245313067, 0.0289655384, -0.0153767671, 0.00796015933, 0.00445926236, -0.0140464976, -0.0251892898, 0.0275923572, -0.00783142354, 0.015362463, -0.00245134276, 0.0153910713, -0.0191816222, -0.0164066534, 0.00816756673, -0.0301813763, -0.00330421701, -0.00889706891, -6.1071245e-05, -0.0180516094, 0.0195821337, 0.0325558335, -0.00507075712, -0.0261476561, -0.0231295191, -0.00243525091, 0.00116219756, 0.0233011656, 0.0159489252, 0.0359315723, 0.0168214682, -0.0171361547, -0.016592605, -0.0401369371, 0.033814583, -0.0146043524, 0.00490268553, -0.00523167662, 0.00449144654, 0.0193389673, 0.0104991132, -0.0381915979, 0.0102774017, 0.00575019559, 0.0266482942, 0.0268199425, -0.0167928599, 0.000620881678, -0.0361604355, -0.013288388, -0.0118937502, 0.0135100987, -0.0122084375, 0.00514227711, -0.0199969485, 0.00926897209, -0.00172988628, 0.0075167357, -0.0100127785, -0.0575591736, -0.0138390902, -0.022256976, -0.0156771503, 0.0226574875, -0.0124373017, -0.00438774284, 0.0154339829, 0.00163065246, 0.0244454835, 0.022471536, 0.0201542936, 0.0403944105, -0.0123586291, -0.00322554517, 0.0122298943, -0.0272204541, -0.0161205735, -0.000802363269, 0.00553206028, -0.00377267203, 0.000726373459, -0.0414529033, -0.00604700297, 0.000239814981, -0.00980537105, 0.00400153548, -0.00940485951, -0.00828199834, 0.0218278579, 0.0054712682, 0.0123943891, -0.00312184123, -0.00759540778, 0.0107494332, -0.0204117652, 0.00353308045, -0.0148046082, -0.0167499483, 0.0167928599, 0.00600766717, -0.0182232577, 0.00982682686, 0.00659055403, 0.00261583831, -0.0216991212, -0.0156628471, -0.0104562016, -0.00330958096, -0.00709476881, -0.00376552, 0.00360817625, -0.00324521307, -0.0116577353, 0.00828915, -0.0214416496, -0.00154125271, 0.0334998965, 0.00419106288, 0.019024279, -0.00259617041, -0.0252178982, 0.0216419064, -0.00579668349, 0.011021208, -0.00113448361, 0.00339361676, 0.00324342516, -0.0100056268, 0.00819617417, 0.0102201859, 0.0217420328, -0.00801022258, 0.00599336298, 0.0386779346, -0.00225287513, 0.0265767761, 0.0211555716, 0.0688879192, -0.00408020709, 0.0113215921, 0.0201113801, 0.00387995178, 0.013538707, -0.00102899177, -0.00276960619, 0.02075506, -0.00433052657, 0.0110784248, 0.00155913271, -0.00945492368, -0.00227433117, 0.00940485951, -0.00956935529, -0.00611137087, 0.0294375699, 0.0311540458, -0.00564649189, -0.0125016691, 0.000674074574, 0.00382988784, 0.013645987, -0.013610227, -0.0010039598, 0.00120510941, 0.00121494336, 0.00555351609, -0.0018112401, -0.0195249189, 0.0111785522, -0.00763116777, 0.0136960503, 0.00852516573, 0.0365609452, -0.0212700032, 0.00490268553, -0.0269772857, 0.0171075482, 0.0176797062, 0.00846795, 0.0214845613, 0.0068766335, 0.015004864, -0.00710907299, 0.0119938785, -0.0165067799, -0.0179943927, -0.0075668, 0.00106743374, -0.0232439507, 0.0247172583, -0.00709119299, 0.00229399907, 0.00495990133, 0.0201256853, -0.0157629736, -0.0108495606, -0.00295555778, 0.00291800965, -0.000725926424, 0.0108567132, 0.0101486659, 0.0244311802, -0.00693742512, -0.0191673189, -0.00296628568, -0.00512082083, 0.00246922276, 0.0296664331, -0.00898289308, -1.61478401e-05, 0.00878263731, 0.00778135937, 0.00598263508, -0.00443780655, -0.00999132264, -0.00989119522, -0.0129379407, 0.0150763839, -0.000921712, -0.00252107461, -0.00144380692, -0.0166355167, -0.00950498786, 0.0165210851, -0.00467382185, -0.00671213772, 0.0036582402, -0.0036135402, 0.00247816276, 0.0163780451, -0.00188276, -0.00109693571, -0.00491341343, 0.00127573533, -0.0175366662, -0.0172076747, 0.00773129566, -0.00203295168, 0.0224286243, 0.011056968, -0.0206263233, 0.0275351405, -0.0107494332, 0.0288511068, 0.00909017213, -0.000559642795, 0.00909017213, 0.00010644165, -0.00133831508, 0.0192245357, 0.00629017036, 0.0229149591, 0.0130166123, -0.0129236365, -0.00233333511, 0.00553921238, -0.014790304, -0.00978391524, -0.0124516049, 0.0113287438, -0.000261494453, 8.20802e-05, -0.0167928599, 0.00897574052, -0.00432337495, 0.00341686071, -0.00490983762, -0.00780281518, 0.0182089526, 0.00954789948, -0.0237016771, 0.000783142343, -0.0069696093, -0.00547842029, -0.0184807293, 0.00671213772, 0.00181302812, 0.00811035093, 0.0191530157, -0.0154482871, -0.0160204452, -0.00178889022, 0.00318620913, -0.0075668, 0.0133456038, -0.0212413948, -0.000104039027, -0.0120010301, -0.00815326255, -0.026490951, -0.00994125847, 0.00192567194, 0.00843219, -0.012022486, 0.0192102306, -0.00966233108, -0.0279928688, 0.00247279881, 0.00045236302, -0.0142610576, -0.000347318244, 0.0155627187, 0.0194247905, -0.00783857517, 0.00666207355, -0.0131381955, -0.00141072902, -0.0196536537, -0.0112214638, 0.00818902254, -0.000174441375, -0.0136245312, 0.00282145804, 0.00239949091, 0.00576092349, 0.0217992496, 0.0132454755, -0.00560358, 0.0124516049, 0.00842503831, -0.00833921414, -0.00662631402, -0.00509936502, -0.026490951, -0.00685517723, -0.00889706891, -0.00585747557, 0.018023001, 0.00796731096, -0.0167928599, -0.0329563469, 0.00688736141, 0.0143897934, -0.0172935, -0.00455223816, -0.015004864, 0.00818902254, -0.0170360282, 0.00409093546, -0.00838212576, -0.00077911932, 0.00740230409, 8.99026854e-05, -0.0117578628, -0.000581098779, 0.0262191761, -0.000424202095, -0.0361318253, -0.0125874933, 0.0104061374, 0.00259259436, -0.014253906, 0.0178942662, 0.00946207531, -0.0201972052, 0.00170217233, 0.00364393624, 0.00671213772, -0.0212413948, 0.0349875093, -0.0141037134, -0.0119152069, -0.00973385107, 0.00610064296, -0.0192960557, -0.00310574938, -0.0119152069, -0.0235157255, 0.01034177, -0.00638672244, 0.0151479039, 0.014396945, -0.018738199, 0.0141680818, 0.00230293907, 0.0175366662, -0.00967663527, -0.00338110072, -0.0209410116, -0.0202973317, 0.0108138006, -0.00799591932, -0.014289665, 0.0464020781, -0.00328454887, -0.028221732, -9.79207289e-06, -0.0241594035, 0.00315223727, 0.0138748502, -0.00325951702, 0.0260904394, 0.0164924767, 0.0182518642, -0.00959796365, -0.00390855968, 0.00531392451, 0.00596117927, 0.0119152069, 0.0117221028, -0.00167267048, 0.0196250454, 0.00740945619, -0.00848940574, 0.0189670641, -0.0116219753, 0.0050564534, -0.000697318523, -0.000620881678, 0.0238018055, 0.00991980266, 0.00560358, -0.000734866422, -0.000511813909, -0.00222069118, 0.00482043764, 0.0105348732, -0.00465236604, -0.00174597825, 0.0208551865, -0.0105348732, 0.0182232577, 0.00119080546, 0.00251392252, 0.0123300217, -0.000165948397, -0.00127662928, 0.00414815126, 0.00674789771, -0.00229936303, -0.0087611815, 0.00380843179, 0.00286079384, -0.0120153343, 0.00644751405, 0.00719489669, -0.00479540555, -0.0123228701, -0.0110426648, 0.014575745, 0.00129093323, 0.0118079269, 0.000161925404, -0.000455268513, 0.0205548033, 0.00158952863, 0.0115862153, 0.00465236604, 0.000476948, -0.00851086155, -0.00644393824, 0.0241594035, 0.000101915779, 0.00685160141, 0.00983397942, -0.00871826895, 0.00588608347, -0.00311468937, 0.00833921414, -0.00710907299, -0.000718774449, -0.00308786938, 0.00389067968, -0.000946744, 0.00974815525, 0.00941201206, 0.00083186524, 0.00861814152, 0.0177655295, 0.000392465154, 0.00106296374, -0.0225287527, 0.0258329678, -0.0229864791, 0.0190528873, 0.0035098365, -0.0119080544, -0.00157343666, -0.00337216072, 0.00245670672, -0.0127519891, -0.00768838357, 0.0223428011, -0.0249032099, -0.0283504669, -0.0141537776, -0.0156771503, -0.00107816164, 0.016735645, -0.0128306607, -0.00819617417, 0.0126447091, -0.0211126581, 0.0122298943, 0.00246028276, 0.00123014138, 0.0124659091, 0.00907586887, 0.0101629701, -0.0130380681, 0.00846795, 1.77682123e-05, 0.0193103589, -0.00117024349, 0.00858953409, -0.000530587859, 0.00584674766, 0.0136888986, -0.0180086978, -0.0274922289, -0.0298380796, -0.0126017975, 0.00803883094, -0.0133956671, -0.0135601629, 0.000543550821, -0.00635453826, -0.0180516094, 0.0173650198, -0.00592899509, -0.0141037134, 0.00766692776, -0.0172505863, -0.0187811125, -0.00759540778, 0.0110712722, 0.0164781734, 0.00343652861, -0.0182661694, 0.00690881722, -0.0288511068, 0.0114431754, -0.0141394734, -0.00996271428, 0.00991980266, 0.0202544201, -0.0177369229, -0.00201685959, 0.0190671906, 0.0358457491, -0.00190600392, -0.00201864773, -0.0110641206, 0.0018952759, -0.00913308468, -0.00287688593, 0.00822478253, -0.00657625, 0.0102774017, -0.0105849374, -0.0118937502, 0.0165067799, 0.0138247861, 0.0188240241, 0.0138605461, -0.0124730617, -0.0141680818, -0.00814611092, -0.0150620798, 0.00921890792, 0.00429834286, -0.000761686359, 0.0183376893, -0.00436986284, -0.01019873, -0.000796105305, -0.00651545823, -0.00623295456, 0.0139606744, -0.0125374291, 0.0129307881, -0.00399438338, 0.00648327405, 0.0102058826, 0.014253906, -0.00945492368, 0.00351698836, -0.0222283676, -0.00853231736, 0.00771699147, 0.025632713, 0.0138319386, 0.00251213461, -0.00292694964, 0.00518161291, -0.00926182, 0.0154911987, 0.00338646467, 0.00284649, 0.0148761282, 0.0156628471, -0.00749528, -0.0220996328, -0.00472030975, 0.00574662, 0.0339862294, 0.00116130349, -0.00137228705, -0.00615785876, -0.00769553566, -0.00828199834, 0.00223141932, 0.00107905571, -0.011021208, -0.00138748507, -0.00516373292, -0.00458442234, -0.0165639967, 0.0239305403, -0.0150191681, -0.00713768089, 0.011235768, -0.0155770229, -0.00962657109, 0.0123586291, -0.00149655284, 0.0171075482, -0.0089328289, -0.00575019559, -0.00982682686, -0.0227433108, 0.00401583919, -0.00163154653, 0.00541047659, -0.0183233842, -0.00205619563, -0.0105062658, -0.00933334, -0.017450843, -0.00234227488, 0.00399080757, -0.0103274658, -0.0140965618, 0.0196822621, 0.00415887916, -0.00192388392, 0.0170217231, -0.00696603302, -0.000354917254, -0.0118365344, -0.0018380601, -0.00195964379, 0.00796015933, 0.00254610647, -0.00899004471, 0.0124158459, -0.0236730687, -0.0199826453, 0.0136888986, 0.000138457952, 0.00573589187, 0.00245491881, 0.00416245498, -0.000709387474, 0.00192209589, 0.0108710164, 0.00346692465, -0.0184664242, -0.0103274658, 0.0111427922, -0.0211269632, -0.0193961821, 0.0085180141, 0.0121011585, -0.00106564572, -0.00554278819, 0.00682299351, 0.00388710364, 0.00117113744, 0.00558927609, 0.0181231294, -8.59914435e-05, -0.0163780451, 0.0154625913, 0.0157057587, 0.0181517377, 0.0129951565, -0.0266626, 0.0150477756, -0.00596475508, 0.00532465242, -0.0134814912, -0.0208981, 0.00684802514, -0.00373333599, -0.0092332121, -0.0150763839, 0.00572158769, 0.021470258, 0.0312970839, 0.00418391125, 0.0192388389, -0.0109568406, 0.0142682092, -0.00608276296, -0.00813895836, -0.0304960627, -0.0100556901, 0.00757395197, 0.000335919787, 0.00851086155, -0.000530140882, -0.00320766517, 0.0295520015, 0.00958365947, -0.0317834206, -0.0162350051, 0.00864675, -0.0286794584, -0.00691239303, 0.0035277165, 0.0281931236, -0.00572516397, 0.0089685889, -0.0209553149, -0.00198467565, 0.011529, -0.0198968221, -0.00385849574, -0.0205548033, -0.0252178982, 0.011557607, 0.00332924887, 0.0054140524, -0.000920818, -0.00671213772, 0.0149762556, 0.0210983548, 0.0168214682, 0.00911878049, 0.0160061419, 0.0036689681, 0.00818187091, -0.00373691204, 0.0218421612, -0.00921175629, 0.00507433293, -0.0213844348, 0.0281216037, -0.0145471366, 0.0123443259, 0.0078457268, 0.0138247861, 0.0168071631, 0.0165353883, -0.0195535254, -0.00453435816, -0.0166355167, 0.000504661934, -0.00159399863, 0.000260600442, -0.00658697775, -0.00171200628, 0.0195392221, 0.00516730873, 0.0162063967, -0.00848225411, -0.0193389673, -0.00209731958, 0.00591469137, 0.00051270792, -0.00487050181, 0.0139749777, 0.0154339829, 0.00463091, 0.00353844441, -0.044227872, -0.00306998938, 0.0159489252, 0.0106850648, 0.00765977567, 0.0270058941, -0.0120868543, -0.00439131865, 0.00808174256, -0.022256976, -0.00859668572, 0.018023001, -0.0119581185, -0.0163637418, -0.00821047835, 0.0291228816, 0.0135100987, 0.00229936303, 0.0287080668, -0.000979821896, 0.00313256937, -0.00931188371, -0.00829630252, -0.0205118917, -0.0152051197, -0.00317369332, -0.021470258, 0.00533180451, -0.00286794594, -0.00898289308, 0.0269486792, -0.0118508385, -0.0053103487, 0.0109353848, 0.0302958079, -0.00178620813, -0.0179800894, 0.00401583919, -0.00477394974, -0.00890422054, -0.019095799, -0.0109282322, -0.0212270897, -0.00181660417, 0.00712695299, 0.00544981239, -0.0327560902, 0.0071412567, 0.0116362795, 0.0240020603, -0.00500281341, -0.00880409312, 0.0197251737, 0.000226069766, -0.0101772742, -2.08832371e-05, 0.00636884244, 0.00227969512, -0.00201328378, 0.0307821427, 0.0200255569, -0.00725568831, 0.00635453826, 0.00456296606, -0.00985543523, 0.0160633568, -0.0172648914, -0.0166069083, -0.00977676269, -0.014146626, 0.00249246671, 0.00259795855, 0.0176081862, 0.0121083101, 0.00998417102, 0.00312541728, -0.0223857127, 0.0203831568, -0.0357885323, -0.00374048809, -0.00995556265, -0.0164209567, 0.00968378689, -0.0194390938, -0.0256613214, -0.0208408833, 0.00880409312, 0.00405517546, -0.0145542892, 0.00423039915, 0.0279785637, -0.017665403, -0.0139249144, 0.0014464889, 0.00041705012, -0.0101200584, 0.00824623834, -0.00827484671, 0.00792439934, 0.0279356521, 0.00672644144, -0.0191530157, -0.0141037134, 0.00712337671, -0.00598621136, 0.00152873679, 0.0162493084, 0.00647969823, 0.00385849574, 0.00159399863, -0.00759540778, -0.0138605461, 0.0102201859, -0.0151192956, 0.005564244, 0.00915454049, 0.013288388, 0.0035098365, -0.00791724678, -0.0199540369, 0.00906156469, 0.00558212399, 0.0075167357, 0.00941201206, 0.00870396569, -0.0221711528, -0.0126089491, 0.0146615682, -0.00165300246, -0.00621507457, 0.0126876207, -0.00871111732, -0.0105062658, -0.0217134263, -0.0106779132, 0.011700647, -0.0223857127, 0.0100914501, 0.00653333822, -0.00880409312, 0.00783142354, 0.00697676092, 0.0034061328, 0.0201113801, -0.0054998761, -0.0193389673, -0.0171361547, -0.00291622174, 0.00812465418, 0.0202115085, -0.00280179, 0.00328097306, 0.0151192956, 0.00793155096, -0.0035098365, -0.0245313067, -0.00629017036, -0.0017450843, -0.00490268553, 0.0192817505, 0.0170789398, 0.0213415232, -0.0191816222, 3.83022307e-05, -0.0035098365, 0.00261762645, 0.0216276012, 0.0185665525, 0.0129593965, -0.0299525112, -0.00537829241, 0.0231867339, 0.0234012939, -0.00989834685, 0.002782122, 0.00195427984, 0.0221997611, 0.00576092349, 0.00547484448, 0.00851086155, 0.0121512217, -0.0195392221, 0.0139106102, 0.0132025639, -0.0288368016, 0.011200008, -0.0203974601, 0.00665134564, 0.0122155901, -0.00342580071, -0.00391928758, -0.00608276296, 0.0133026913, -0.00251034671, -0.0139749777, -0.0178799611, -0.00953359529, 0.00778851146, -0.0121512217, 0.0114145679, -0.0344725661, -0.0126661649, -0.00242452277, 0.00594329927, 0.0209267065, -0.0124945175, -0.00103346177, 0.00150549284, 0.00221890328, -0.0150477756, 0.00121494336, 0.019024279, -0.0125803407, -0.00338646467, -0.0140608018, -0.02082658, 0.00145453494, -0.00425543077, 0.0233583823, -0.029723648, 0.0101844259, 0.00993410684, 0.00051494292, 0.00531392451, -0.00466309395, 0.0155913271, 0.000192544845, -0.00234406302, -0.0182947777, 0.0201972052, -0.0121154618, -0.00322375703, 0.0269057658, -0.0115790628, 0.0178942662, 0.0181803443, 0.00507433293, -0.00106296374, 0.00830345415, 0.0186952874, -0.0200684685, 0.00193818787, -0.000648148591, -0.0200684685, 0.0191244073, -0.00567152398, 0.00994841103, 0.000839911227, -0.0176940095, 0.000448340055, -0.00224035932, -0.000177570371, -0.0253037214, 0.00506002922, 0.00658697775, -0.0116934953, 0.0224858392, 0.00179425417, -0.00225466327, -0.00391928758, 0.0101057542, -0.0111070322, -0.00838212576, 0.00475606974, -0.00436271075, -0.00336679677, 0.0131954122, -0.00104418979, -0.0243453551, -0.00952644367, 0.0118722944, 0.00422682287, 0.0189813673, 0.00828915, -0.00700536883, -0.0255182814, -0.0199969485, -0.0675147325, -0.00959796365, 0.0171218514, 0.0181946494, -0.00828915, -0.00513512501, 0.000500191934, -0.00107458571, 0.00922606047, 0.00159936259, 0.0250891615, 0.0172505863, -0.00576807559, -0.00990549847, -0.0115003912, 0.00341686071, -0.0054140524, -0.0220853295, -0.028150212, -0.016592605, -0.00426973496, -0.0288224984, 0.011700647, 0.00831775833, 0.0192245357, 0.000386654167, 0.00220817537, 0.0136888986, -0.0137389628, -0.0035831444, 0.000569476804, 0.00227969512, 0.00198109983, -0.0169788115, 0.0085537741, 0.0128306607, -0.0115790628, -0.0241451, -0.013645987, 0.0219565928, 0.00150102284, -0.00128467521, -0.000127729974, 0.00152873679, -0.0172505863, 0.0197823904, 0.00573589187, 0.00793870259, -0.00420179078, 0.00896143727, -0.0151479039, 0.000579757732, -0.0202973317, 0.00401583919, -5.48970711e-05, 0.000512260885, -0.0054140524, -0.0102774017, 0.0117864711, -0.0125016691, 0.00268020621, 0.0142252976, -0.0195535254, 0.019739477, 0.0130166123, 0.0243024435, -0.00583601929, 0.00508148503, 0.00221890328, 0.0259330962, -0.00513870083, -0.0183376893, 0.00611137087, 0.00723065669, -0.0203259401, 0.0201829, 0.00494559761, 0.00195606775, 0.025775753, 0.00463806186, 0.000623563654, -0.00666565, 0.0258615762, -0.00181839208, -0.0128020523, 0.000637420628, 0.00324521307, -0.00723065669, 0.0070447051, -0.0195678305, 0.0345011726, 0.000172541637, 0.0228148308, 0.0138748502, 0.0111785522, 0.00779566355, -0.0141680818, 0.00420179078, 0.0133241471, 0.00836782251, -0.0088183973, -0.00313256937, -0.00824623834, 0.0283361636, 0.0285793301, -0.0113931112, -0.0109782964, -0.00306104938, -0.00309680938, -0.00450575026, 0.00874687731, -0.0173507147, 0.0135315554, 0.0214273464, 0.0106350016, 0.00939770788, 0.00184163603, 0.00433767866, -0.0091759963, -0.00580025977, -0.00247101067, -0.0238447171, 0.0363606885, -0.00278748595, 0.0297808647, -0.0141251702, 0.011700647, 0.0115862153, -0.0140679535, -0.00624368247, 0.0114217196, 0.0126518607, -0.00565364398, -0.022042416, -0.00742376, -0.0113931112, 0.00673359353, 0.0201685969, 0.00450575026, 0.0247887783, 0.0034526207, 0.00512082083, -0.00308608147, 0.00678008143, -0.026419431, -0.0104347458, -0.0243167486, 0.0144040976, 0.00303065358, -0.00922606047, 0.00080549228, -0.00883985311, 0.00367254415, 0.0164924767, -0.0254038498, 0.0051315492, 0.00248889066, 0.00600051507, 0.0101129068, -0.00110229966, -0.00325594097, -0.0174365379, -0.00601124298, -7.04582271e-05, -0.0133599071, 0.00849655736, -0.00811035093, -0.000983398, -0.00741660828, -0.0208981, 0.00868251, 0.00152337272, -0.000493486936, 0.0156914536, -0.0140965618, 0.000702682475, -0.00603627507, -0.00266769039, 0.00518161291, 0.0179943927, 0.00709119299, 0.0407377034, -0.0014375489, 0.0195821337, 0.00129540323, -0.0196107421, 0.00758825568, 0.0105277216, 0.011092728, -0.00480970973, 0.00269272225, 0.0222140644, -0.00958365947, 0.0198825169, -0.0223141927, 0.00964087527, -0.00765262358, 0.00850371, 0.0219136812, 0.00604700297, -0.00458799815, -0.00138748507, -0.000527905882, 0.00610064296, 0.00730575249, -0.0225430559, -0.0184807293, 0.00333640096, -0.0171790682, -0.00630805036, -0.0240878854, -0.000813985243, -0.0141251702, -0.00393359177, -0.00359208439, -0.00438416656, -0.0179371778, 0.00418033497, -0.0159489252, 0.00467739813, -0.00294661778, -0.00157164864, 0.010985449, -0.000155890913, -0.000844828202, -0.00404087128, 0.0203974601, 0.0269200709, 0.0127805965, 0.01044905, -0.00747382408, 0.00103524979, 0.0310110059, -0.0158344936, 0.00710549671, -0.00206513563, -0.000238026987, 0.0167499483, -0.000956577947, 0.0159918386, -0.000972669921, -0.00348480465, 0.0026498104, -0.01037753, -0.0027266941, -0.0106564574, 0.00189348799, 0.0153195513, -0.00215989933, 0.00557854818, 0.00142145692, -0.0122298943, 0.0114145679, -0.00165926048, 0.0242452286, 0.00668710563, -0.00129450927, -0.0115647595, 0.00811035093, 0.0235014223, -0.0168357715, -0.0135029471, 0.010913929, 0.0135315554, -0.00783142354, -0.00191315589, 0.000179805371, 0.00211341144, 0.00811750256, -0.00497778133, -0.00157075468, 0.000463091, 0.0153195513, -0.0306963176, 0.0122799575, 0.00297701359, -0.0072521125, 0.0134028196, 0.00165389641, 0.000747829385, -0.00770983938, 0.0109282322, 0.013216868, 0.0170646347, 0.0138176344, -0.00271954224, -0.0111356406, 0.014539985, -0.00568940397, 0.00110051164, 0.00302171358, 0.014718785, -0.00106922176, -0.0167070366, -0.000641890627, -0.0053675645, 0.0215846896, -0.0280500837, -0.00440204656, 0.00341328466, 0.00369400019, -0.00303422962, -0.0035366565, -0.0119295102, -0.011021208, -0.00187024404, -0.0211269632, -0.00786003098, -0.00251749856, -0.0265481677, -0.0153767671, -0.0128878765, 0.00296807359, 0.0184378158, 0.00234406302, 0.00404802337, -0.00698748883, 0.014504225, 0.0155198071, -0.0257900562, 0.00676577771, -0.00803167839, -0.0154196788, 0.00746667199, 0.0017826322, 0.00976961106, 0.0104705058, -0.00675504934, -0.00690881722, 0.0251177698, -0.0179085694, 0.00130166125, 0.00640102616, -0.0197251737, -0.00616858667, 0.00294304173, -0.00389425573, 0.00155108667, 0.0126804691, -0.00753819197, -0.00137049903, 0.00563576398, 0.0130952839, 0.00563934, 0.00240127882, -0.0296092164, -0.0134099713, 0.00614713086, 0.0345297828, 0.00985543523, -0.000857791165, 0.00939770788, -0.00193639984, -0.0126375565, -0.0116577353, 0.0173936263, 0.00246564671, -0.00191315589, 0.0222998876, 0.0112286163, -0.0088756131, -0.000189974598, -0.0107065206, -0.0128878765, 0.00768123148, 0.0108996248, 0.00616501085, 0.00199182774, -0.0150620798, -0.0110069048, 0.00423755078, 0.0129450923, 0.00121404941, 0.0734079704, 0.0148475198, 0.00764547149, -0.0106350016, 0.01044905, -0.0245170034, -0.00852516573, 0.0440562256, 0.00570370769, 0.0210411381, -0.0101772742, 0.00581813976, -0.0275923572, 0.0126876207, 0.00416245498, -0.0326988734, 0.0123085659, 0.00440562237, 0.0160204452, 0.00308429333, -0.00270166225, -0.0127376849, 5.0175644e-05, -0.0154768946, -0.00629017036, 0.00555351609, -0.00653333822, -0.00638672244, 0.00829630252, -0.0117435586, -0.0140679535, 0.0140178902, -0.00480255764, 0.0165067799, -0.0171504598, -0.00940485951, 0.0132311713, 0.00146794482, 0.00310932542, 0.00258723041, 0.000447446044, 0.000236239, 0.00783857517, -0.00547842029, 0.0138104828, 0.00328991306, 0.0118150786, -0.0141394734, -0.00640102616, -0.0165783, -0.00773129566, -0.030667711, 0.00397650339, -0.0122155901, 0.0136888986, 0.0155341104, 0.00688378513, 0.00533180451, 0.0153910713, 0.00849655736, 0.0372189283, -0.00701967301, -0.00839643, -0.00534968451, 0.0130881323, -0.00638314616, -0.0254038498, 0.0123300217, -0.00405517546, 0.00142950297, -0.00156896666, -0.0111928564, 0.00530319661, -0.0143111218, -0.00172988628, 0.00440562237, -0.00717344088, 0.0113502, -0.00981967524, 0.0035277165, -0.0104347458, -0.000752299384, -0.0132740838, -0.0017495543, 0.0141537776, -0.00106743374, -0.0178084411, 0.00778135937, 0.0104919616, -0.0134457313, -0.00629732246, 0.0296092164, -0.00270166225, 0.0156771503, 0.00247101067, 0.00191315589, -0.00674074562, 0.00318263308, 0.00297701359, 0.00630447455, 0.0191673189, 0.0143397292, 0.00149834075, -0.00268199435, -0.00597548345, 0.0339004062, -0.0155341104, 0.00650473, 0.0180802178, -0.0250176433, 0.0136745945, 0.00109961769, 0.00765262358, 0.0187095925, -0.0226860959, -0.00290728174, 0.0137747228, -0.00810319837, 0.0142038418, 0.000802810304, 0.0173507147, 0.0197966937, -6.73851e-05, 0.00350268441, 0.00890422054, -0.00470242975, -0.0163351335, 0.00497778133, 0.0131453481, 0.00630089873, -0.00728787249, 0.0197251737, 0.0165067799, -0.010949689, 0.00191673194, 0.0128950281, -0.00199897983, -0.00394789549, -0.00746667199, -0.0105420258, 0.0182661694, -0.011700647, 0.00840358157, 0.00570013188, -0.0107994974, 0.0187954158, -0.0169931147, 0.00164138048, -0.0331279933, -0.0232868623, 0.00312005333, 0.0231009107, 0.00347407651, -0.0145828966, 0.00367254415, 0.000807280245, 0.00817471836, -0.0348730758, -0.0195535254, -0.0120510943, -0.00966948364, -0.00142145692, 0.00869681314, -0.00603627507, -0.00389067968, 0.00657625, 0.0116219753, -0.00863959733, -0.00105938769, 0.00943346787, 0.0180659126, 0.0305532794, 0.00685517723, 0.00718416879, 0.00509221293, 0.00632593036, -0.0166784283, -0.00304853357, -0.00121941336, 0.000474713, 0.00354023231, 0.00347765256, 0.0185665525, 0.0452005416, 0.0141037134, -0.0151336, -0.0263193045, 0.00564649189, 0.0070160972, 0.0158631019, -0.0104061374, 0.0222712811, -0.00304853357, -0.00898289308, 0.00158684666, 0.0165783, 0.000497956935, -0.0134242754, -0.00539974868, -0.00789579097, 0.0142324492, 0.00034776525, 0.0018005122, 0.00765977567, 0.00510651711, 0.00936194789, -0.0104347458, 0.00600409135, 0.0110069048, -0.00070312951, 0.0154339829]
24 Jun, 2024
Network Layer Protocols 24 Jun, 2024 Network Layer is responsible for the transmission of data or communication from one host to another host connected in a network. Rather than describing how data is transferred, it implements the technique for efficient transmission. In order to provide efficient communication protocols are used at the network layer. The data is being grouped into packets or in the case of extremely large data it is divided into smaller sub packets. Each protocol used has specific features and advantages. The below article covers in detail the protocols used at the network layer. Functions of Network LayerThe network layer is responsible for providing the below-given tasks: Logical Addressing: Each device on the network needs to be identified uniquely. Therefore network layer provides an addressing scheme to identify the device. It places the IP address of every sender and the receiver in the header. This header consists of the network ID and host ID of the network.Host-to-host Delivery of Data: The network layer ensures that the packet is being delivered successfully from the sender to the receiver. This layer makes sure that the packet reaches the intended recipient only.Fragmentation: In order to transmit the larger data from sender to receiver, the network layer fragments it into smaller packets. Fragmentation is required because every node has its own fixed capacity for receiving data.Congestion Control: Congestion is defined as a situation where the router is not able to route the packets property which results in aggregation of packets in the network. Congestion occurs when a large amount of packets are flooded in the network. Therefore network layer controls the congestion of data packets in the network.Routing and Forwarding: Routing is the process that decides the route for transmission of packets from sender to receiver. It mostly chooses the shortest path between the sender and the receiver. Routing protocols that are mostly used are path vector, distance vector routing, link state routing, etc.Network Layer ProtocolsThere are various protocols used in the network layer. Each protocol is used for a different task. Below are the protocols used in the network layer: Protocols at each Layer1. IP (Internet Protocol)IP stands for Internet Protocol. Internet Protocol helps to uniquely identify each device on the network. Internet protocol is responsible for transferring the data from one node to another node in the network. Internet protocol is a connectionless protocol therefore it does not guarantee the delivery of data. For the successful delivery higher level protocols such as TCP are used to guarantee the data transmission. The Internet Protocol is divided in two types. They are: IPv4: IPv4 provides with the 32 bit address scheme. IPv4 addressing has four numeric fields and are separated by dot. IPv4 can be configured either using DHCP or manually. IPv4 does not provide with more security features as it does not support authentication or encryption techniques. IPv4 is further divided into five classes as Class A, Class B, Class C, Class D and Class E.IPv6: IPv6 is the most recent version of IP. If provided with a 128 bit addressing scheme. IP address has eight fields that are separated by colon, and these fields are alphanumeric. The IPv6 address is represented in hexadecimal. IPv6 provides with more security features such as authentication and encryption. IPv6 supports end-to-end connection integrity. IPv6 provides with more range of IP address as compared to IPv4.  Difference between IPv4 and IPv6: IPv4 vs IPv6 2. ARP (Address Resolution Protocol)ARP stands for Address Resolution Protocol. ARP is used to convert the logical address ie. IP address into physical address ie. MAC address. While communicating with other nodes, it is necessary to know the MAC address or physical address of the destination node. If any of the node in a network wants to know the physical address of another node in the same network, the host then sends an ARP query packet. This ARP query packet consists of IP address and MAC address of source host and only the IP address of destination host. This ARP packet is then received to every node present in the network. The node with its own IP address recognises it and sends it MAC address to the requesting node. But sending and receiving such packets to know the MAC address of destination node it increases the traffic load. Therefore in order to reduce this traffic and improve the performance, the systems that makes use of ARP maintain a cache of recently acquired IP into MAC address bindings. How Does ARP Work?The host broadcasts an ARP inquiry packet containing the IP address over the network in order to find out the physical address of another computer on its network. The ARP packet is received and processed by all hosts on the network; however, only the intended recipient can identify the IP address and reply with the physical address. After adding the physical address to the datagram header and cache memory, the host storing the datagram transmits it back to the sender.ARPTypes of ARP EntriesStatic Entry: This type of entry is created when a user uses the ARP command utility to manually enter the IP to MAC address association.Dynamic Entry: A dynamic entry is one that is automatically formed when a sender broadcasts their message to the whole network. Dynamic entries are periodically removed and are not permanent.3. RARPRARP stands for Reverse Address Resolution Protocol. RARP works opposite of ARP. Reverse Address Resolution Protocol is used to convert MAC address ie. physical address into IP address ie. logical address. RARP provides with a feature for the systems and applications to get their own IP address from a DNS( Domain Name System) or router. This type of resolution is required for various tasks such as executing reverse DNS lookup. As Reverse Address Resolution Protocol works at low level it requires direct network addresses. The reply from the server mostly carries a small information but the 32 bit internet address is used and it does not exploit the full potential of a network such as ethernet. How Does RARP Work?Data is sent between two places in a network using the RARP, which is on the Network Access Layer. Every user on the network has two distinct addresses: their MAC (physical) address and their IP (logical) address. Software assigns the IP address, and the hardware then builds the MAC address into the device. Any regular computer connected to the network can function as the RARP server, answering to RARP queries. It must, however, store all of the MAC addresses' associated IP addresses. Only these RARP servers are able to respond to RARP requests that are received by the network. The information package must be transmitted over the network's lowest tiers.Using both its physical address and Ethernet broadcast address, the client transmits a RARP request. In response, the server gives the client its IP address. RARPDifference between ARP and RARP: ARP vs RARP 4. ICMPICMP stands for Internet Control Message Protocol. ICMP is a part of IP protocol suite. ICMP is an error reporting and network diagnostic protocol. Feedback in the network is reported to the designated host. Meanwhile, if any kind of error occur it is then reported to ICMP. ICMP protocol consists of many error reporting and diagnostic messages. ICMP protocol handles various kinds of errors such as time exceeded, redirection, source quench, destination unreachable, parameter problems etc. The messages in ICMP are divided into two types. They are given below: Error Message: Error message states about the issues or problems that are faced by the host or routers during processing of IP packet.Query Message: Query messages are used by the host in order to get information from a router or another host.How Does ICMP Work?The main and most significant protocol in the IP suite is called ICMP. However, unlike TCP and UDP, ICMP is a connectionless protocol, meaning it doesn't require a connection to be established with the target device in order to transmit a message.TCP and ICMP operate differently from one another; TCP is a connection-oriented protocol, while ICMP operates without a connection. Every time a connection is made prior to a message being sent, a TCP Handshake is required of both devices.Datagrams including an IP header containing ICMP data are used to transmit ICMP packets. An independent data item like a packet is comparable to an ICMP datagram. ICMP5. IGMPIGMP stands for Internet Group Message Protocol. IGMP is a multicasting communication protocol. It utilizes the resources efficiently while broadcasting the messages and data packets. IGMP is also a protocol used by TCP/IP. Other hosts connected in the network and routers makes use of IGMP for multicasting communication that have IP networks. In many networks multicast routers are used in order to transmit the messages to all the nodes. Multicast routers therefore receives large number of packets that needs to be sent. But to broadcast this packets is difficult as it would increase the overall network load. Therefore IGMP helps the multicast routers by addressing them while broadcasting. As multicast communication consists of more than one senders and receivers the Internet Group Message Protocol is majorly used in various applications such as streaming media, web conference tools, games, etc. How Does IGMP Work?Devices that can support dynamic multicasting and multicast groups can use IGMP.The host has the ability to join or exit the multicast group using these devices. It is also possible to add and remove customers from the group using these devices. The host and local multicast router use this communication protocol. Upon creation of a multicast group, the packet's destination IP address is changed to the multicast group address, which falls inside the class D IP address range.Difference between ICMP and IGMP: ICMP vs IGMP Frequesntly Asked Question on Network Layer Protocols - FAQs Is Transmission Control Protocol(TCP) a network layer protocol?No, TCP is a transport layer protocol. TCP provides with a reliable connection between all the applications. Data is being sent from one host to another without any error and duplication issues. Which layer protocols are designed for end- users?Application layer protocols are designed for end-users. Application layer consists of protocols such as HTTP, HTTPS, FTP, SMTP, SSH etc. State the format of ICMP message?The ICMP message is of 32 bit. It consists of 3 fields. First field is of 8 bit that states type of message, second field is of 8 bit that states the reason of message and the third field is of 16 but that consists of actual ICMP message. What is CIDR?CIDR stands for Classless Inter-Domain Routing , it is basically addressing type which allows more effective and efficient use of IP address. What is NAT? Network Address Translation (NAT) is a process in which one or more local IP address is translated into one or more Global IP address and vice versa in order to provide Internet access to the local hosts. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System/Introduction of System Call/How much Stack size required for BIOS interrupt call?/Difference between Interrupt and Polling/Difference between Difference Engine and Analytical Engine/Difference Between Store‑and‑Forward Switching and Cut‑Through Switching/Difference between Message and Packet Switching/How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?/Types of Node Devices in a Computer Network: End devices and Intermediary Devices/Types of Errors in Computer Network/Difference between Storage Area Network (SAN) and Network Attached Storage (NAS)/Difference Between Network Security and Network Administration/Internet Administration/Internet Telephony Protocol | H.323/IPsec (Internet Protocol Security) Tunnel and Transport Modes/Real-time Transport Control Protocol (RTCP)/Cisco Discovery Protocol (CDP) and Link Layer Discovery Protocol (LLDP) in Data Link Layer/Data Link Layer Communication Protocols in IoT/Network Layer Protocols
https://www.geeksforgeeks.org/network-layer-protocols?ref=asr10
PHP
Network Layer Protocols
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, Difference between Difference Engine and Analytical Engine, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Difference between Interrupt and Polling, Types of Node Devices in a Computer Network: End devices and Intermediary Devices, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, Types of Errors in Computer Network, jQWidgets jqxToolBar close Event, How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, Difference between Message and Packet Switching, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, Difference Between Network Security and Network Administration, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, Introduction of System Call, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Data Link Layer Communication Protocols in IoT, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Difference Between Store‑and‑Forward Switching and Cut‑Through Switching, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, IPsec (Internet Protocol Security) Tunnel and Transport Modes, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, Internet Telephony Protocol | H.323, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, Difference between Storage Area Network (SAN) and Network Attached Storage (NAS), jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, Real-time Transport Control Protocol (RTCP), unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, Internet Administration, Cisco Discovery Protocol (CDP) and Link Layer Discovery Protocol (LLDP) in Data Link Layer, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, Network Layer Protocols, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How much Stack size required for BIOS interrupt call?, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0516721085, -0.00277773873, -0.0160386749, 0.0280277655, 0.00664407527, 0.019493157, -0.00129633851, 0.0315257907, -0.00763469934, 0.0124100149, 0.0102328192, -0.0180271789, 0.0295808315, -0.0303936508, -0.0208139904, 0.00451042363, 0.0045031663, -0.0200592279, -0.0128454538, -0.00943451468, 0.0343706608, 0.00785241835, -0.0151532814, -0.00275415252, -0.0159951299, 0.0264601838, 0.031641908, 0.00086997106, -0.0402636044, 0.0212203991, 0.0296824332, 0.0248635747, 0.0306258854, -0.0282454845, -0.0181578118, -0.0196818486, -0.00596551597, -0.00256001926, -0.0454598442, 0.0232379343, 0.0154435737, 0.0196092743, 0.0166918337, -0.0118802311, -0.0230202153, 0.0235572569, 0.00777258817, 0.00424916, 0.0183755308, -0.0188254844, -0.0187383965, -0.0240072105, 0.0340223089, 0.0386960246, 0.0226428341, 0.0356189199, 0.0379993208, 0.0024892604, -4.3742355e-05, -0.0549233891, 0.0384057313, 0.00602357462, -0.00725006126, -0.0362285338, 0.0112053, 0.0212929733, -0.0463597514, -0.00944177154, 0.0170111544, -0.033064343, -0.0494078249, 0.00872329716, -0.0172579046, -0.0423827395, 0.0149355615, 0.0013008744, -0.00867975317, 0.0590745732, 0.0482756831, -0.00104777538, -0.0124608157, 0.031119382, 0.0389863141, -0.0172143597, 0.026837565, 0.0347190127, -0.00131629617, -0.0580875799, 0.0416279808, -0.00366494595, 0.0163289662, 0.0459533408, -0.00836043153, -0.0287970398, -0.0130849453, 0.00942, 0.0516721085, -0.0112125576, -0.00812093914, 0.0200882573, 0.0358221233, -0.0121197226, -0.000625490153, 0.0217574406, 0.0481305383, -0.00362503063, -0.0167644061, 0.0221928805, 0.00193951838, 0.0637482852, 0.00820802711, -0.017722372, 0.0118584586, 0.0417150669, -0.0307129733, -0.0258505698, -0.0115173645, -0.0588133112, -7.90934355e-05, 0.031641908, 0.0221348219, 0.0125406468, -0.0415408909, 0.0475499518, -0.0559103824, 0.0618904121, -0.00635378249, 0.00170637702, 0.00120925077, -0.0164450835, -0.0138977654, -0.00331840897, -0.000222935763, -0.00984092429, -0.00966674834, -0.0137598766, 0.00696339738, -0.00672753435, 0.00125188741, -0.041918274, 0.00836043153, 0.0103199072, -0.00676019257, 0.00415844377, 0.0117060551, 0.00875958335, 0.0123374416, 0.0501916148, -0.0430213846, 0.0160096455, -0.0391024314, -0.0140574267, -0.00344178337, -0.0063320105, 0.00517083937, -0.0142098302, 0.00619412167, 0.0410764255, -0.0162854232, -0.0160531886, 0.0167063475, -0.0275197532, -0.00814996846, -0.01521134, 0.0213655457, 0.0526010469, 0.0401184559, -0.0013398825, -0.0281003378, 0.0485079177, 0.0149210468, 0.0338481329, 0.0239201225, 0.0324837565, -0.0185206775, -0.0102836201, -0.0146670407, 0.0333546363, -0.0072137746, 0.0339932814, -0.0159806162, -0.0410473943, -0.0242249295, -0.00857089367, -0.00666584726, 0.00880312733, 0.0448212, -0.0138905076, -0.00590745732, -0.037302617, -0.0235717706, 0.0209155921, 0.032367643, 0.015603235, -0.0117713707, -0.0121777803, -0.0158790126, 0.0250087194, 0.0120689208, -0.003835493, -0.0190286897, -0.0266198441, -0.0113359317, 0.0189561155, 0.0263585821, -0.0256183352, -0.00891198777, -0.0295227729, 0.027664898, -0.00274508074, -0.059335839, -0.00841123238, 0.0110891825, 0.00923856627, 0.0135494135, -0.0192609243, -0.0268811081, -0.0124390442, -0.0124172727, 0.015733866, 0.0260392595, 0.0566651449, 0.00172542746, 0.00618323544, -0.0685671493, -0.0321644358, 0.0155016324, -0.0517301671, -0.049611032, -0.00635741092, -0.0121560087, 0.046591986, -0.00691985339, -0.00803385209, -0.0418021567, -0.000278046035, -0.00379557768, 0.015429059, -0.0220477339, 0.0104723107, -0.0351544507, 0.0241378415, -0.0282890275, 0.00628846651, -0.0494078249, -0.00533775799, -0.0107118022, 0.0549524166, -0.000295508944, 0.00566433743, -0.0057659396, 0.019754421, 0.0313225873, 0.0299291816, -0.0187238827, -0.00620863633, 0.00751858205, 0.0139340516, 0.00913696457, 0.00422013085, -0.00158844562, 0.00811368227, 0.000372391165, 0.00618323544, -0.00931839738, -0.00964497682, 0.0162563939, 0.0131938057, 0.00437616324, -0.039886225, 0.037302617, -0.0399733111, -0.0156322643, 0.00456485339, -0.0243265331, -0.000425687089, -0.0148121873, 0.00229694135, 0.0495529734, 0.0338771641, -0.00218082429, -0.0549233891, -0.00491320482, -0.028956702, -0.0296679195, -0.00817174092, -0.0322224945, 0.0144057777, -0.0503077321, -0.0206252988, -0.0165466871, 0.0115101077, 0.00782339, -0.00424553128, 0.0218009856, -0.0042963326, -0.00809916761, 0.0150226494, 0.0204075798, 0.0143985199, -0.0179255772, -0.00876684114, 0.00932565425, 0.00131629617, -0.0232234206, -0.0272004306, -0.023339536, 0.00982641, 0.0167934354, -0.0102255624, 0.0178094599, -0.0395088419, -0.039886225, -0.0330933742, 0.00595462974, 0.00763469934, -0.0181287825, -0.0291163623, -0.0170111544, -0.0288841277, 0.0410473943, 0.0515559912, -0.00526881358, 0.0844751894, 0.0142098302, -0.0373606756, 0.0217574406, 0.0490014143, -0.032367643, -0.0160822179, -0.0248490591, -0.000759750546, -0.0156758092, -0.00587117067, 0.0402636044, -0.0300743282, 0.0032803081, 0.0417150669, 0.0178094599, 0.0452856682, -0.0230637584, -0.0281003378, 0.0251248367, -0.00169367669, -0.0224976875, -0.0150226494, 0.000485333177, 0.0061034048, 0.00150952232, 0.0226573497, 0.0015367372, 0.0226573497, 0.0385508761, 0.00493860524, 0.0259957146, -0.0112778731, 0.00318959146, -0.0150516788, 0.0139413094, -0.0140501689, 0.0350673646, -0.00115482078, -0.00863620918, 0.0288260691, -0.0549524166, 0.00731174834, 0.00248200307, -0.0359672718, 0.0114157619, -0.0134550687, -0.0169821251, -0.0206398144, -0.00782339, 0.0157193523, -0.0230492447, -0.0075766407, 0.0122213243, 0.00232052756, -0.0187383965, 0.00615057768, 0.00617960701, 0.0133462092, 0.00873781182, -0.00106773304, -0.0456920788, 0.0179546066, 0.0369252376, -0.0288841277, -0.00306984573, 0.015385516, -0.0224251151, 0.00560265, 0.0124825882, 0.0122938976, 0.00232597068, -0.0253570713, -0.0211333111, -0.0110093523, -0.00507649453, -0.0241233278, 0.00401329715, 0.00686542364, -0.0236298293, 0.027055284, -0.0341964848, 0.0164886285, -0.0144856079, -0.032628905, 0.00741335098, -0.0288986433, 0.00948531553, -0.0142025724, 0.000698516902, -0.0207123868, 0.0122793829, 0.0395959318, -0.0240797829, 0.0503657907, 0.0102908779, -0.00351254223, 0.0294211693, 0.0150516788, 0.000945265754, 0.00775081618, 0.0205236971, 0.0310613234, 0.0188545138, 0.00329663698, 0.00893375929, -0.00263984967, 0.0211478267, -0.0225847755, 0.011756856, 0.0270988271, -0.0161838215, -0.0812819675, 0.0149065321, -0.00379194901, -0.0320483185, -0.00165466871, -0.0040677269, 0.010893235, 0.00408224156, -0.011756856, -0.0694960803, -0.00457573961, -0.0357930958, -0.0382025242, 0.0169240665, -0.0245152228, -0.0133897532, 0.0138251921, 0.00477894442, 0.00334743829, 0.0311484113, -0.00460476847, 0.0246748831, -0.0334997848, 0.0366639756, 0.0295518022, 0.0235572569, 0.0187383965, -0.00815722626, -0.00816448312, 0.0302775335, -0.000547020405, -0.0339932814, -0.0225412324, -0.0100659011, -0.011452049, 0.0404668078, -0.0556781478, 0.0356769785, 0.00632112473, 0.028651895, -0.0250377487, 0.00814996846, -0.0106537435, -0.029261509, -0.054284744, 0.0115028499, 0.0450244062, 0.0167353768, -0.0479563624, -0.0159225576, 0.023295993, 0.0128454538, 0.0187093671, 0.0119673181, -0.0390153453, 0.0182884429, 0.010544884, -0.0274762083, -0.0378251448, -0.0275778119, -0.0277374722, -0.0102981348, 0.00130722451, -0.0242394451, 0.0159225576, -0.017722372, 0.00624855142, -0.0194060709, 0.0719926, -0.00748955272, -0.00337828184, 0.0239346363, 0.0471145138, -0.00645175623, -0.00884667132, -0.0138469636, 0.0424117707, -0.00202297769, 0.0517882258, 0.0181868412, 0.00624492252, -0.00774355885, 0.00507649453, 0.0126712788, 0.00136528304, 0.00675656367, 0.0205236971, -0.000219647292, -0.00163743249, -0.0082806, -0.00603083195, 0.00549741881, -0.0074387514, -0.0134986127, -0.0244571641, -0.00191956083, 0.00770727219, 0.00850557722, -0.000263758178, -0.0171417873, 0.000229285914, 0.00275596674, 0.0121850381, -0.0225122031, 0.00962320436, 0.00590745732, 0.0118657164, -0.0367510617, 0.0149355615, -0.00415118644, 0.0316128805, -0.0307420027, -0.00681099342, 0.0172143597, -0.0115463939, 0.0157919247, 0.0149210468, 0.000968852, -0.00707225688, -0.0220767632, -0.00354520022, 0.0227734651, 0.00223888271, 0.00278681028, 0.0135494135, -0.015690323, 0.0393636972, -0.00556273479, 0.0282164551, 0.00873781182, 0.00171907735, -0.00685816631, 0.0170111544, 0.00224069715, 0.0126712788, 0.00851283502, 0.00109131925, -0.00896278862, 0.0189125724, 0.0449663475, 0.0341964848, 0.0327159911, 0.00191956083, -0.0140574267, 0.0167644061, 0.00277592428, -0.0040532127, 0.0311774407, 0.0172724184, 0.0117350845, 0.0153274573, 0.0117423413, 0.00460839737, 0.0123446994, -0.0137671335, 0.0146670407, 0.00528695667, -0.011452049, -0.0206252988, 0.0321354084, 0.0240942985, 0.00307710306, -0.00553007703, -0.00726457592, -0.00635741092, 0.0179691203, 0.0350093059, 0.00756938336, -0.00250196061, 0.0169095527, -0.00994978379, 0.0156177497, 0.00731537724, 0.00103326072, -0.0114810783, -0.00164922571, 0.005315986, 0.0360543579, 0.0294647142, 0.00759115536, 0.0132446066, 0.00812819693, -0.0108351763, -0.0146742985, -0.00588931423, 0.0170547, -0.0242394451, 0.0117423413, 0.0474338345, -0.00232597068, 0.00841123238, -0.0047281431, -0.0366349444, -0.0459533408, -0.012707565, -0.00805562362, -0.0126857935, -0.0103126494, 0.00255820481, -0.00434350502, -0.00756938336, -0.0196528193, -0.0226138048, -0.0121705234, 0.00981189497, -0.0139848534, 0.019493157, -0.0171563011, 0.120181195, -0.000235862855, 0.0645030513, -0.0101602459, 0.0318451151, 0.00616146345, 0.0142461164, -0.00391895231, 0.0051817256, -0.00250377483, 0.027273003, -0.00335832429, -0.0215106923, 0.0316709392, -0.05004647, -0.0131720332, 0.0117495991, -0.00775807351, -0.0426730327, 0.0333546363, 0.0142316017, -0.0145001225, -0.015908042, -0.00204293523, -0.00748955272, -0.0109875808, 0.0286954381, -0.031032294, -0.0214526337, 0.00561716454, 0.0240217242, -0.0397701077, -0.0137598766, -0.0217138976, 0.0278390739, 0.0299001522, -0.0317289978, -0.0331514329, 0.00686542364, 0.00215360941, -0.00143150613, -0.0120906932, 0.000845931179, -0.0275487825, -0.0130704306, -0.0167789198, -0.0217574406, 0.00893375929, 0.00391169498, -0.0081064254, -0.00812093914, -0.0124680735, 0.0278100446, -0.00248018862, 0.00123828, 0.00860718, -0.0313516185, 0.00837494619, -0.00234229956, -0.00799756497, -0.0348931886, -0.0131720332, 0.0230347291, 0.0133534661, -0.0140864551, -0.0467081033, -0.0119092595, 0.00718837418, 0.00311338971, 0.0065569873, 0.0351254232, 0.0195221864, 0.0186222792, -0.0133316945, -0.00248563173, -0.000724824728, 0.00354157155, 0.000881764223, 0.0212494284, -0.00590745732, -0.0187383965, -0.0328321084, 0.0222509392, 0.0057441676, 0.0278681032, -0.0309161767, -0.00818625558, 0.0147976726, -0.00590745732, 0.0154145444, -0.000534773688, 0.0142316017, -0.0193334967, 0.00656787353, -0.000130858534, 0.0322224945, -0.0215397216, 0.0445309058, -0.0254296437, 0.0171853304, -0.0111907851, 0.00286301225, -0.0219606459, 0.0089265015, 0.0176498, -0.0165031422, 0.0106610013, -0.0131139746, -0.0201318022, 0.0141662862, -0.0426440053, -0.023078274, 0.0158935282, 0.0189851448, 0.0192609243, 0.00459751114, 0.000177690905, 0.0150661934, 0.038899228, 0.00296824332, 0.00775081618, -0.00881038513, -0.0260102302, -0.03120647, 0.00772178685, 0.00460839737, -0.0127293365, 0.0147033278, 0.0490014143, 0.0166192595, -0.00359963, -0.00032453821, 0.000988809625, 0.0140283974, -0.0129470564, -0.00875958335, -0.0128889978, -0.0329482257, 0.0157628953, 0.0140066249, 0.00537041575, -0.0201027729, -0.03768, 0.0516721085, 0.00729360525, -0.0109077496, 0.0107118022, 0.0287534967, 0.0378251448, 0.00594374398, 0.0307129733, 0.00464105513, -0.0119963475, -0.017504653, 0.012620477, -0.0110166101, -0.0203640368, 0.0309452061, 0.00415844377, 0.00465919869, 0.00348895602, -0.011887488, -0.0453147, -0.0418021567, -0.0692057908, -0.0507722, -0.0102037899, 0.0115318792, -0.00492771948, -0.0051780967, 0.0326869637, -0.00583851291, -0.0136727886, 0.0148775028, 0.00275052385, -0.00348532735, 0.011495593, -0.0248780884, 0.0161402766, 0.0117350845, -0.0205672402, -0.0114883352, 0.00402781181, 0.0094925724, 0.00557362055, 0.0251248367, 0.0269391667, -0.0319612324, -0.0127583658, -0.00640821224, -0.0160531886, -0.0187529121, -0.00631749583, 0.0027487094, -0.00711580086, 0.0081064254, 0.0118076578, -0.00707951421, -0.000414120732, 0.0130994599, 0.00378106302, 0.000441108888, 0.0302194748, 0.000847745512, 0.012751109, 0.014783158, -0.0131647764, -0.00671301968, 0.0242539588, -0.00897004548, 0.00766372867, -0.00412215712, 0.0126422495, -0.00934016891, -0.0164015405, 0.0171563011, -0.0125479037, -0.00159116706, 0.0272584893, -0.0138179343, 0.0574779622, -0.0128019098, 0.0109512936, -0.0129035125, -0.021481663, -0.00939097069, -0.000513908861, -0.00800482277, -0.0385799073, 0.00247474574, 0.0293776263, 0.00958691817, -0.0172143597, 0.0147323571, 0.0280567948, 0.0139848534, 0.0212203991, 0.0176498, -0.000248336379, -0.0337610468, -0.00467371335, 0.017635284, 0.00863620918, -0.0134695834, -0.00627032341, 0.0152258547, -0.031032294, -0.0126930503, 0.0264021251, -0.0400313698, 0.00479345908, -0.0299582109, 0.00944177154, -0.0170547, -0.0061034048, 0.00706862845, 0.0216848683, 0.00611791946, 0.00910793524, -0.00278681028, -0.00311520393, 0.0340223089, -0.054284744, 0.00620863633, -0.000150929554, 0.00325127877, -0.019318983, 0.00120834354, 0.0111617558, -0.0254731886, -0.0169095527, 0.00357967243, 0.0553588271, -0.0113431895, -0.019754421, -0.000448139413, 0.0231363326, 0.00525792735, 0.0134913558, 0.0012001791, 0.0129615711, 0.0064699, 0.00144420646, -0.0316128805, -0.0184481032, -0.00467734179, 0.0181142669, 0.000956151751, 0.00682913698, -0.0227444358, -0.00807739608, 0.000440882111, 0.028869614, -0.0289131571, -0.00845477637, -0.073734358, -0.00457211072, -0.0279842205, 0.0356769785, 0.0395088419, 0.0116117103, 0.0047281431, 0.0127438512, 0.017112758, -0.0032585361, 0.0127220796, -0.0102618486, -0.015820954, -0.00494949147, 0.0142243449, -0.023078274, 0.0201753452, -0.0316709392, -0.03120647, -0.052513957, 0.00222618249, -0.000152403692, 0.027447179, -0.00204474945, 0.00898456, 0.00746778073, 0.00042024412, 0.0115246223, 0.0142969182, -0.0409893356, -0.00875232648, 0.00155760197, 0.0106247142, -0.0341964848, 0.00458299695, -0.00843300391, 0.0260682888, -0.00488417549, -0.00943451468, -0.0309161767, 0.0104795685, 0.0156612936, 0.0137235895, -0.0165902302, -0.00448139431, 0.0160822179, 0.0200592279, -0.00672027702, -0.00446687965, 0.0113431895, -0.0207269024, -0.00808465295, -0.0258505698, 0.012664021, -0.0193915553, 0.0163725112, -0.00105231116, 0.0145726958, 0.0019903197, 0.0200592279, -0.033673957, -0.0311774407, -0.0125841908, 0.0165321715, -0.00682187965, 0.0401474871, 0.047578983, 0.045982372, 0.0101312166, -0.00682913698, 0.0153710013, -0.00447776541, -0.0202043746, -0.0300452989, -0.014391263, -0.0176643133, 0.0192464087, 0.00185968785, -0.0303646214, 0.0134623265, -0.0133607239, 0.00107771182, -0.0273020323, 0.013440554, -0.00463016937, 0.00799756497, 0.0210752543, 0.0185787361, -0.00730812, -0.0129252849, 0.00146053534, 0.00952160172, -0.00423464552, -0.00659690285, -0.0143622337, 0.00612154836, 0.000551556237, 0.00703959912, -0.00875958335, -0.0548653305, 0.000814634, -0.00612880569, 0.012359214, -0.0105085978, 0.0239491519, 0.0150081348, -0.0288841277, -0.00320047745, -0.00171998458, 0.0169385821, -0.0174901374, -0.00263259234, -0.00766372867, -0.0239636656, 0.0121342372, 0.0126712788, -0.0365188271, 0.0334707536, 0.0052905851, 0.0146597838, 0.0390443727, -0.00626669452, -0.0149210468, -0.0103416787, 0.0216558389, -0.0123955, -0.0183610171, 0.00514906738, 0.0188980587, -0.015908042, 5.34660285e-05, 0.0107988901, 0.0176062547, -0.0187383965, 0.00624492252, -0.0110601541, 0.00145962823, 0.0159806162, -0.0262569785, -0.0122576114, -0.0174320787, 0.00756938336, -0.00925308093, -0.0163870249, 0.0179836359, 0.0234411396, -0.00167281192, -0.0130196298, 0.0338771641, -0.0188254844, -0.013179291, -0.0243991055, -0.00609614747, 0.00457573961, 0.023513712, -0.00337283895, -0.00129270984, 0.0181142669, 0.0015648593, 0.100267112, -0.0121197226, -0.0214671493, -0.0369542651, 0.00534138642, -0.0110601541, 0.0125987055, 0.0247039124, 0.0197689366, 0.000908979157, 0.0358511545, 0.0101820184, 0.0083314022, 0.0136074722, -0.0069887978, 0.0334126949, -0.00830963, 0.0106464867, 0.000713938731, 0.0281874258, -0.0171272717, 0.00219171029, 0.0118584586, -0.0220767632, 0.0132300919, -0.00419110153, -0.0042745606, -0.0233685654, -0.0118004, -0.00273419474, 0.0279116482, -0.017286934, 0.0106537435, 0.00392258074, 0.00594737288, 0.0322805531, 0.0028267256, 0.00124916597, 0.00368853216, 0.0230057, -0.0065569873, -0.017330477, -0.0117713707, 0.0125188744, -0.000660416, -0.000190844803, -0.015385516, -0.00305351685, -0.0268665943, -0.0164305698, -0.0040677269, -0.019580245, 0.00648441445, -0.0260102302, -0.00287934113, 0.00075476116, 0.0234846827, 0.00722828927, 0.0329192, -0.00724643283, -0.0082298, -0.0100441286, -0.00536315842, -0.00901358947, 0.00627032341, 0.00830963, -0.0158644989, -0.00803385209, -0.0325708464, 0.0259957146, -0.00179527921, 0.00551193347, 0.00263440679, 0.00243483041, -0.0116044525, 0.0104069952, -0.00377017702, 0.00730086258, 0.00225702603, -0.0232524499, -0.0170111544, 0.0037121186, -0.00254369015, 0.00477894442, 0.00664044637, -0.0242975038, -0.0258215405, -0.000975202187, 0.0314096734, -0.000630479539, 0.00896278862, -0.0242684744, -0.0127003081, 0.0230347291, -0.0131139746, -0.0152258547, 0.0239781812, 0.00699968403, 0.0108714635, 0.0104723107, 0.00994252693, 0.00268883654, 9.8937664e-05, 0.0150371641, -0.00951434486, -0.0223089978, 0.0308290888, -0.0142969182, -0.000849106291, 0.00992801227, 0.0214090906, 0.00221348228, 0.00388629409, -0.00634652516, 0.0216122959, -0.0092675956, 0.0205962695, 0.0162128508, 0.0105231125, -0.00871603936, -0.0236153156, 0.0258505698, 0.0164015405, -0.00878861267, 0.00294102845, -0.0100078424, 0.0132010626, -0.00958691817, -0.0178820323, -0.00384275033, -0.0242684744, 0.0337900743, -0.0209736507, 7.66554294e-05, -0.0274907239, 0.0164596, 0.00595100131, -0.004731772, 0.0239491519, 0.0059002, 0.00963771902, 0.0104940832, -0.0274181496, -0.00425278861, -0.0100949304, 0.0132010626, -0.0351834819, -0.0177949462, 0.011495593, -0.00775081618, -0.0236443449, -0.0197689366, 0.011495593, -0.0183029585, 0.0229186118, 0.0089265015, -0.0114593059, -0.00399878249, 0.00940548535, -0.00733714923, 0.0298130643, 0.0164450835, 0.0265472718, 0.00600906, -0.00168641948, -0.0270407703, 0.0101239597, -0.028782526, -0.00594737288, -0.00999332778, -0.00634289673, 0.0112778731, -0.00593285821, -0.0220912788, 0.0096885208, 0.00986995362, 0.0153564867, -0.0153129427, 0.0146307545, 0.00153855153, -0.00227879803, -0.00297368644, 0.0265763011, 0.0168514941, -0.014652526, 0.00850557722, -0.0308000613, 0.00286482647, 0.0333836675, 0.0179691203, -0.0118221724, 0.0128599685, 0.0169676114, -0.0130341444, -0.00204474945, 0.00197580503, 0.0111690136, 0.0188545138, 0.00223343982, -0.0049748919, -0.0319031738, -0.0172579046, -0.00170456269, -0.0155016324, -0.00444510765, -0.00731900567, 0.00378832035, -0.012489845, 0.02904379, -0.00729360525, 0.0110528963, 0.0189996604, -0.00876684114, -0.00909342058, -0.00751858205, -0.00421650195, 0.0045249383, -0.0130922031, 0.00781613216, -0.0055409628, -0.0125261322, -0.0120834354, -0.00137798337, 0.00503657898, -0.0273746066, -0.0198124796, 0.0347480401, 0.0258796, 0.0430504158, 0.003824607, -0.00860718, 0.0460404307, 0.0377380587, 0.0179981496, 0.023121817, -0.034225516, 0.0220477339, 0.010893235, -0.0304517094, 0.00628483808, 0.0048406315, 0.0313516185, -0.00169911969, -0.0227734651, -0.0314096734, 0.000117137657, -0.0188835431, 0.00785241835, -0.00435076235, -0.00528332777, -0.0063102385, -0.0103997374, 0.0116770258, -0.0133244367, -0.00464831246, -0.000473540043, -0.0210607387, 0.00289748446, 0.00250558928, -0.0303646214, 0.0174901374, 0.00801208, 0.00241487287, 0.012359214, 0.00683639431, 0.00344722648, -0.0228895824, -0.0107263168, -0.0142824035, 0.0129833426, 0.00883941445, 0.0291599073, 0.0238330346, 0.0254296437, 0.00176534278, -0.00334743829, 0.00493860524, 0.0221928805, -0.028651895, 0.000763379212, 0.0192028657, 0.0306258854, 0.00243120175, -0.0174901374, -0.0145364096, 0.0122213243, 0.00377017702, 0.00162563939, -0.00480434485, 0.000815994747, -0.000376246608, 0.00756938336, 0.0209301077, -0.00172361324, 0.0100005856, 0.0361995064, 0.0357930958, -0.00524704158, -0.0246893987, -0.00718837418, 0.0158644989, -0.00468459912, -0.00539218774, 0.00969577767, 0.000756575493, 0.00310976105, 0.00971029233, -0.00592560088, 0.0149500761, 0.00149319333, 0.0109150074, -0.0138397068, -0.00304081663, 0.0155451763, 0.0170982424, -0.0121777803, 0.0106900306, 0.0218590442, 0.014434807, 0.00103144639, -0.017853003, -0.01702567, -0.00701782713, -0.0115754232, -0.0217284113, -0.0116552534, 0.00110946258, -0.0156322643, -0.00460476847, 0.0104142521, 0.00234955689, -0.0282454845, -0.00886844378, 0.0131067177, -0.0174901374, -0.0108351763, 0.0104868254, -0.00593648665, 0.00362321641, -0.0135494135, 0.00277411, -0.000592378608, -0.0265327562, 0.0223380271, 0.000622315099, -0.0180707239, 0.00876684114, 0.0470854826, -0.012489845, 0.052078519, -0.0287244674, 0.019057719, 0.0101892753, -0.00940548535, -0.00680736499, 0.00997155625, -0.0174901374, 0.0244861934, -0.00880312733, 0.00674930634, -0.0152693987, 0.0213220026, -0.000152630484, -0.0181868412, 0.0126277348, 0.015690323, 0.0278826188, -0.0305097681, 0.0213655457, 0.0418892428, 0.0234846827, 0.00322043523, -0.0192173794, -0.0243265331, 0.0254006162, 0.0134768412, 0.025110323, 0.0345448367, 0.0116117103, -0.00037942169, -0.02939214, -0.017243389, 0.0122068096, -0.00178348611, -0.0118657164, 0.0187383965, 0.0114738205, 0.0435729399, 0.0201898608, -0.0133026652, 0.017461108, -0.00252010394, 0.0146452691, 0.0234846827, -0.0244281348, 0.0163144525, -0.023513712, -0.0248345453, -0.0142969182, 0.0212494284, 0.00600180263, 0.00798305, -0.0346319228, 0.013658274, 0.0028049536, 0.00969577767, -0.0118149146, -0.0406700149, 0.0319322, -0.0246168245, -0.00941274222, -0.00726457592, -0.0152693987, -0.0305678267, 0.00113577035, 0.00275415252, 0.0187674258, 0.0243410468, 0.0134187825, 0.0299001522, -0.014521895, -0.0135929575, -0.00378106302, -0.0100804158, -0.0244571641, -0.00637918292, 0.0275197532, 0.00782339, -0.0129978573, -0.0233975947, -0.00756212603, 0.0133607239, -0.00705774222, 0.00926033873, -0.00296642911, 0.015472603, 0.0322224945, 0.00254369015, -0.00391895231, 0.000722556782, 0.00581311248, -0.0109150074, -0.023383081, -0.0121487519, -0.0121269794, -0.0126132201, 0.019667333, 0.0248635747, 0.00341456849, -0.00858540833, 0.00402055448, -0.00435076235, -0.0142969182, -0.0126567641, -0.000853642123, -0.00749681, -0.0243845899, -0.00961594749, 0.0121197226, -0.00220259628, -0.0217138976, 0.00164106116, -0.00471, 0.0107988901, 0.0265472718, 0.00895553082, 0.0156612936, 0.0034943989, -0.0278245602, 0.0123809855, 0.00518898293, 0.000377607357, 0.0136727886, 0.0108134048, 0.017417565, 0.00500754965, 0.00308073172, 0.0121922949, 0.0182739291, 0.015908042, 0.00714120176, 0.0176498, 0.00814996846, 0.0326869637, 0.0140864551, 0.058174666, -0.00164559705, 0.00909342058, 0.0114375344, 0.00498577813, 0.0105085978, -0.00130994606, -0.0179836359, 0.00957966, -0.00600906, 0.023426624, 0.00632838206, -0.0223960858, -0.00691259606, 0.00220622495, -0.00101511739, -0.00965223368, 0.0219316166, 0.0270843133, 0.0161402766, -0.00339461071, -0.00725006126, 0.00798305, 0.0318741426, -0.0142751457, -0.00518535404, -0.0176933426, 0.00821528491, 0.0172579046, 0.00374840503, -0.010936779, 0.0146742985, -0.00155034475, 0.0329772569, 0.0196818486, 0.0211187974, -0.00333292363, -0.000701692, -0.0263876114, 0.00943451468, 0.0167934354, -0.0115318792, 0.022904098, 0.0205236971, 0.00157483818, -0.00177804311, 0.0146017252, -0.00903536193, -0.00605623238, -0.00106954738, 0.00275778119, -0.0237459466, 0.00332748052, -0.015429059, 0.0200882573, -0.000677198521, 0.00505835097, -0.0225702617, -0.0173449907, 0.00256546214, -0.00133534661, -0.000608707604, 0.0142969182, 0.00433261925, 0.0013289965, -0.00289022713, -0.0203930661, 0.00639369758, -0.00378832035, 0.0190432034, 0.0141953155, -0.0227154065, -0.00746778073, -0.00502569322, -0.000199122675, 0.00301541598, -0.00870878249, 0.0115609085, -0.00279406761, 0.00419835886, 0.00492409058, 0.00812093914, -0.0167208631, 0.00319866324, -0.0108424341, 0.00204293523, 0.0265327562, 0.00112397724, 0.0288115554, 0.0122140674, 0.0193915553, 0.00442696456, 0.00592197198, -0.00315149059, -0.00180344365, -0.00364861707, -0.0187674258, -0.0162273645, -0.0257634819, -0.00276140985, 0.00842574704, 0.0270407703, 0.012707565, -0.0237314329, 0.0245297365, 0.0210752543, 0.015516147, -0.012620477, 0.00335832429, -0.000593739387, -0.00770001533, -0.00238221488, 0.0257344525, 0.00805562362, 0.00286664092, 0.00563893653, -0.0132518634, 0.00401692605, -0.0140646836, -0.013484098, -0.0107771186, -0.0157048367, 0.0165612, -0.0145291518, -0.00333836651, 0.00209373655, 0.00530147133, -0.00680373609, -0.0159225576, -0.00480071642, 0.0131938057, -0.000718928117, -0.000869517506, -0.0262714941, -0.00769275799, -0.000938915589, -0.00478620175, -0.0112851309, 0.0161402766, 0.000290746335, 0.00245841662, 0.0120253768, -0.0263876114, 0.0040495838, 0.00747503806, 0.0245587658, -0.00293377112, 0.00489506125, -0.00707951421, -0.0186513085, -0.00683276542, -0.0298130643, -0.0119890906, -0.00278681028, -0.00365406, 0.013527642, 0.00492046215, 0.0202624332, -0.0117931431, -0.0179836359, -0.0142678889, -0.00108769059, -0.0162128508, -0.00693436805, 0.0050873803, 0.0265327562, -0.00854186434, -0.00201027724, -0.00557362055, -0.0184335895, -0.00851283502, 0.00129089551, 0.0125479037, 0.019667333, -0.0130051151, -0.00300997286, 0.00360144442, 0.011364961, 0.0132663781, 0.0150081348, -0.0241668709, 0.0186948534, 0.00677470677, -0.0241959, 0.0018224942, -0.00702871336, -0.0048406315, -0.00658238819, -0.0255312473, -0.0170982424, 0.00980463717, 0.0252844989, -0.00751132471, -0.0410183668, -0.00337828184, 0.0158499833, -0.00673479168, 0.00423101662, -0.0103053926, 0.00354157155, -0.00327849365, -0.00604897505, -0.00410038512, 0.0141735431, 0.0139050223, 0.00158481696, -0.0092675956, -0.013527642, 0.0193044674, 0.00394072384, -0.0341964848, -0.021699382, 0.0124753304, -0.0031188326, -0.00669124769, 0.015559691, 0.00236951443, -0.0118729733, 0.000131992478, -0.0142170871, 0.00230419869, -0.0122213243, 0.0218300149, 0.000653158699, 0.000715753064, 0.0049785208, 0.00647715712, 0.00255639059, 0.00216812384, -0.0156612936, -0.0159806162, -0.00420561619, -0.0145364096, 0.0137235895, 0.0146742985, -0.00646627089, 0.0167208631, 0.00493134791, 0.0245007072, 0.00960869, -0.00127093797, -0.0315257907, -0.0357640646, -0.00373751903, -0.00780887483, -0.0133824954, 0.0285357777, 0.00675293524, -0.0203204919, -1.23317723e-05, -0.0160677042, 0.00963046215, 0.0180997532, -0.0154580884, 0.0201898608, 0.00236770022, 0.00652432954, -0.00324946432, -0.00960143283, -0.00902810413, -0.00186513085, 0.0110601541, 0.0265182424, 0.00329119409, 0.0243700761, -0.000170206797, -0.0129688289, 0.0075548687, -0.00731900567, 0.000315920159, -0.0146452691, 0.0107118022, 0.0230927877, -0.0030625884, -0.00239310088, 0.0156322643, 0.00424916, -0.0149355615, 0.00907164812, 0.00742060831, -0.0144130345, -0.00376291969, 0.0234556533, -0.000621861487, 0.0282454845, 0.0117858853, -0.003835493, 0.0225702617, 0.00636104, -0.00858540833, 0.0066694757, 0.00243664463, 0.00105684705, 0.00534138642, 0.0166482888, -0.0136437593, -0.0273020323, 0.0114302766, 0.021046225, 0.0123374416, -0.0100659011, -0.0136945602, -1.28562269e-05, -0.00583125558, 0.00912245, 0.00116661401, -0.000194246677, 0.00702508446, -0.00330208, 0.00854912121, -0.0151823107, -0.00482248841, -0.000383277133, -0.00319684879, 0.0124608157, 0.00267432188, 0.0222219098, -0.0212929733, -0.023295993, -0.000642726256, -0.0129760858, 0.0156612936, -0.00358874397, 0.00263077812, -0.0102981348, 0.000791501312, -0.00582036935, -0.0055409628, -0.00499303546, -0.0055228197, 0.0111036971, -0.00959417503, 0.0120398914, 0.00255457615, -0.0223235115, 0.00704322755, -0.0240797829, 0.0218590442, 0.00062775804, -0.00957966, -0.00135258271, 0.0133607239, -0.00897004548, 0.0124753304, 0.00381734967, 0.0213220026, -0.0180126652, -0.0168224648, 0.00716660218, -0.011669768, -0.0051780967, 0.011843944, 0.00858540833, -0.00171817024, 0.0236153156, -0.0232379343, 0.0163870249, 0.00353068556, 0.0021481663, 0.019362526, 0.00481160218, 0.0111109549, 0.000186082179, -0.00162291783, 0.0124390442, 0.0149210468, -0.00453582406, 0.0248345453, 0.023339536, 0.0143985199, 0.00302811619, -0.0231798757, -0.0298711229, -0.0205236971, -0.00455759605, 0.0110238669, -0.00394072384, 0.00239491509, -0.00350709935, -0.00165013282, 0.00875232648, -0.00812093914, 0.00107499037, -0.0200447142, 0.02722946, -0.0051817256, -0.00514906738, 0.0101312166, 0.00986269582, 0.0224976875, -0.0045213094, -0.0197834503, -0.00751132471, -0.0204075798, 0.00592922932, 0.00894101616, 0.00829511508, -0.0013462326, 0.0198415089, -0.0128164245, 0.00372300437, 0.0291018486, 0.0210752543, 0.00550104771, -0.0163870249, -0.000757936214, 0.015820954, 0.00167281192, -0.00480434485, 0.0166773181, -0.00380646368, 0.00788870547, -0.0119818328, -0.0178675186, 0.0257344525, 0.015341972, 0.00354882888, 0.00796127878, -0.0154871177, -0.00907890592, -0.0124608157, -0.0163579956, 0.0228024945, 0.00485151773, -0.00115935667, 0.007670986, 0.00250377483, -0.0158354696, 0.0102908779, -0.00922405161, -0.00900633261, 0.00449590897, -0.00649167132, 0.0136873033, 0.00168279081, 0.0072174035, 0.0118366871, 0.00971029233, 0.00270153699, 0.0147686433, -0.0220767632, 0.00544661749, -0.00199213391, 0.0149645908, 0.00973206479, -0.00371574727, -0.00910793524, -0.00108678348, -0.00533050066, -0.00706137111, 0.00500754965, 0.00285212626, 0.00793950632, 0.000719381729, -0.00910793524, -0.0254006162, -0.00963771902, 0.0183610171, 0.00775807351, -0.0088249, -0.00591471465, 0.00613969145, -0.0261408612, -0.000933472591, -0.0045249383, 0.00624492252, -0.015341972, 0.00449590897, 0.00812819693, -0.0110674109, -0.0140283974, 0.010675516, -0.00910067745, -0.0101602459, -0.00856363587, -0.0177368876, -0.00562079344, -0.00119836477, 0.00134351116, 0.0145944683, -0.0112633584, 0.00698154047, 0.00157302385, -0.0126785357, 0.0181578118, -0.0151242521, 0.0158354696, -0.0131720332, -0.0161112472, -0.00451768097, -0.00937645603, -0.0143186897, 0.017199846, 0.00131901761, -0.0217719562, -0.00841848925, 0.0216122959, -0.00404232647, -0.00371574727, 0.015516147, -0.0133389514, -0.01231567, -0.0191302914, -0.0157483816, -0.0131502617, 0.022686379, -0.0154435737, -0.00695614, 0.000322723878, -0.00481885951, -0.0173885357, 0.0173740201, -0.000764286378, 0.00958691817, 0.0140646836, -0.00143241324, -0.00867975317, -0.00140156969, 0.00868701, 0.0111182118, -0.0139340516, -0.00100695295, 0.00391532341, -0.0132083204, -0.0265472718, -0.0055191908, 0.00577682583, -0.00902810413, 0.0125624184, 0.0239636656, -0.0127728805, 0.0031188326, 0.000760657713, 0.0358801819, 0.000166124562, 0.00346536958, 0.0177514013, 0.00243120175, -0.00364680262, 0.00261082035, -0.027142372, 0.0128236823, 0.00955788884, 0.0208865628, 0.000143332043, -0.00824431423, 0.00684728, 0.00562079344, -0.000157052913, -0.00153945875, -0.00445962232, 0.0167644061, 0.0214961786, -0.0185787361, 0.0170547, -0.0121777803, 0.00838220306, 0.00170365558, 0.0056353081, -0.0175917409, -0.00543210283, -0.0104795685, 0.00654610153, 0.014478351, -0.0147541286, -0.00015523858, 0.0133752385, 0.0105956849, -0.0206252988, -0.0156467799, 0.0153129427, -0.0260247439, -0.000323631044, -0.00222799694, 0.0169240665, 0.00636829715, -0.00508012297, -0.0019231895, 0.00579496892, 0.0197689366, -0.0182158705, -0.0124245295, 0.000500755, -0.0266053304, 0.02178647, 0.0104795685, 0.00067447708, -0.00957240351, 0.000649076421, 0.000657694531, 0.011713312, 0.0137961628, 0.00912245, 0.0123229269, 0.000879496278, 0.011713312, -0.00105231116, 0.0165321715, -0.0210752543, -0.0147976726, -0.00502569322, 0.0255312473, -0.00508012297, 0.00695614, 0.0163870249, 0.00555184856, 0.0111835282, 0.0107480893, -0.0296098609, -0.0194786433, -0.0115246223, 0.00905713346, 0.0248490591, 0.0189706311, -0.0159951299, -0.000808283861, 0.00399152515, -0.00328756543, 0.00491683325, 0.0014922861, -0.0198560245, 0.00440519257, 0.00183791597, -0.00824431423, -0.00159207429, 0.0256763939, 0.0102691064, 0.00158844562, -0.00902810413, -0.0246168245, 0.00595462974, 0.0173885357, -0.00102963205, 0.00335106696, 0.00830963, -0.0139775956, -0.0164741129, 0.00668399036, -0.00861443765, 0.000600996718, 0.0317870565, -0.0212784577, -0.00981189497, -0.0055228197, 0.0360543579, 0.0120544061, 0.0222509392, 0.021089768, 0.00622677943, -0.0101529891, -0.0117495991, 0.000338826067, -0.0198269952, -0.0242539588, -0.0179691203, -0.00815722626, 0.000233368148, -0.0222944822, -0.00327667943, 0.0215832666, -0.00846929103, 0.00640095491, 0.00256546214, 0.026924653, 0.012576933, -0.00949983, 0.0144710932, -0.0114302766, -0.00661504595, -0.0345158093, -9.79738e-05, 0.00216993829, -0.00447413698, 0.0168224648, 0.0184916481, -0.0220041908, 0.00415844377, 0.0130922031, 0.0167208631, -0.0140501689, -0.00242757308, 0.00820077, -0.0144565785, -0.0339061916, -1.70093408e-05, -0.0167934354, -0.00219896762, -0.00346174091, 0.0241523571, 0.00737706432, -0.00288659846, 0.0172143597, -0.00905713346, -0.0205817558, 0.00214272342, -0.00832414441, -0.0059945453, -0.0129543142, -0.0174465943, 0.00377380569, -0.0159515869, 0.0220912788, 0.00526881358, -0.000429996144, 0.00721014617, -0.0120834354, -0.0062195221, -0.0172288753, -0.00439430634, -0.00994252693, -0.0106900306, -0.0032240639, 0.00134351116, -0.0218300149, -0.00160931039, 0.00947805773, -0.00834591687, -0.00327667943, 0.00660053128, 0.031641908, -0.00222799694, -0.0149500761, -0.00436527701, 7.05320635e-05, -0.010936779, -0.00704322755, -0.0116552534, -0.00852735, 0.0228170101, 0.0129470564, -0.0108714635, -0.00635015406, -0.00623766519, -0.013527642, 0.00157030229, 0.0127438512, 0.00709765777, 0.0105303694, 0.0124390442, -0.0233975947, -0.0184190739, 0.00337646762, -0.0188835431, -0.0119890906, 0.0298420936, -0.00285575492, 0.00400241138, 0.00259267702, -0.0228895824, -0.000868156727, -0.000107839216, 0.0062195221, 0.0042963326, 0.0129325418, -0.0348061, -0.0117350845, 0.0192464087, 0.00465919869, -0.0165176578, 0.0193915553, -0.0023060129, 0.000251057878, -0.0278245602, -0.00470637111, 0.00425641751, -0.00389718, -0.01050134, 0.0130414013, -0.00764921401, 0.00923130941, 0.0105158547, 0.00623766519, 0.0246748831, 0.000590564334, -0.0219751615, -0.0148194451, 0.000449726969, 0.00197580503, 0.0104432814, -0.0100876726, 0.000508919475, 0.00845477637, 0.00477168709, 0.0226718634, -0.0199576262, -0.00782339, -0.0108279195, -0.0136800455, 0.0122358389, 0.0266343597, 0.0107118022, -0.00825882889, 0.00166646182, 0.005294214, 0.0133824954, 0.0126132201, 0.0296388902, 0.00601994572, -0.0179255772, 0.00393346651, 0.0151968254, 0.00672753435, -0.0119818328, 0.000731628446, 0.00166374026, 0.00719926, 0.00550830504, 0.00515632471, 0.0258360542, 0.0154871177, -0.015298428, 0.0188835431, 0.00584577024, -0.00537404465, 0.00130813173, -0.0234411396, 0.0114738205, 0.00341093983, 0.0134332972, -0.00433987658, -0.0140283974, 0.00469911378, -0.00821528491, -0.0337610468, -0.0140066249, 0.00147142133, 0.00207740744, -0.00967400614, -0.00218626717, -0.0197253916, -0.00873781182, 0.00958691817, 0.0162418783, 0.00870878249, -0.0215977803, 0.0066694757, 0.00293195667, -0.00630298117, -0.00458662538, 0.0160822179, 0.0054248455, -0.00152766553, -0.000904896937, -0.0315838493, -0.0363736823, -0.00511640962, -0.0104142521, 0.0176643133, -0.0365188271, 0.0221638512, -0.00547927571, -0.00978286564, 0.00313334726, -0.0072174035, 0.00427093217, 0.0107988901, 0.00202116324, 0.0117423413, 0.00742060831, -0.0185932498, -0.00157937396, 0.0341674574, 0.00849106256, 0.0092675956, 0.0244571641, -0.0153564867, 0.001172057, 0.00936919823, 0.00190323184, -0.0117713707, 0.00381372101, 0.012620477, -0.0141299991, 0.0142533742, -0.0143404612, 0.000893557386, 0.0193044674, -0.0123374416, -0.00345629803, -0.0157774109, -0.00650618598, -0.0131938057, -0.000839581073, 0.00483700307, -0.00562079344, 0.0306549147, 0.0106174573, 0.00434713392, 0.00838220306, 0.00936194137, -0.0178384893, -0.00271968, 0.00955788884, 0.00583488401, 0.015733866, -0.013832449, -0.0106972875, -0.00289567024, -0.0171272717, 0.00227698381, 0.0136945602, 0.00812093914, -0.00523252692, -0.0114230197, -0.0165757164, -0.0187819414, -0.0505399667, 0.00173540635, 0.0183029585, 0.0267795064, 0.00503295055, -0.00894101616, -0.00410764245, -0.00142787746, -0.00751132471, 0.0147250993, 0.00980463717, 0.00971755, -0.0136727886, -0.00446325075, -0.0296824332, 0.0120689208, 0.0129906, -0.00280313939, -0.0170111544, -0.0169676114, 0.0104432814, -0.00759841269, 2.99364401e-05, -0.00674567791, -0.002928328, -0.00579496892, -0.0138542214, 0.00623766519, 0.00277773873, 0.00548653305, 0.00201027724, -0.00423827395, -0.00375566236, -0.00133081083, 0.00512366695, -0.00605623238, 0.000108746382, -0.00362140196, -0.00657150196, 0.0122430967, 0.00128182396, 0.00042296559, 0.0141009698, -0.0100441286, 0.000286890892, 0.00951434486, -0.00121378654, 0.0159661, -0.00978286564, 0.0178965479, 0.00191411783, 0.00366676017, 0.000808737474, 0.00475354353, 0.00156848796, 0.00270153699, 0.00689445296, -0.00792499166, 0.0129470564, -0.0110601541, -0.0185642205, 0.000637283316, -0.0278535895, 0.00831688754, 0.0120036053, 0.0124317873, -0.00165376149, 0.000786511926, 0.000134033602, 0.0196237899, -0.00181251531, -0.0134260394, -0.000192545733, 0.0029954582, -0.0172288753, 0.0237749759, 0.00895553082, 0.00411127089, 0.0150226494, 0.00652795797, 0.0225992911, 0.00239672954, 0.00566070853, -0.00536315842, -0.00950708706, 0.0171853304, 0.00165104, -0.00592560088, -0.00261263479, -0.0105811702, 0.0348061, -0.00557362055, 0.00856363587, 0.017635284, -0.00403869804, 0.0198850539, -0.0129180271, 0.00530872867, 0.00820802711, 0.0158644989, -0.00931114, 0.00328393676, 0.0035052849, -0.00358692976, 0.0273310617, -0.0165902302, 0.00284849759, 0.00620863633, -0.00708677154, -0.00378469168, 0.0148121873, -0.0116044525, 0.00857089367, -0.00216630963, 0.0164015405, 0.0196528193, -0.000938915589, 0.0134986127, 0.0074387514, -0.0131139746, 0.00161021762, -0.037128441, 0.0183755308, -0.00638644025, 0.00922405161, -0.01884, -0.00912245, -0.0127801383, -0.0299001522, -0.0179691203, 0.0300162695, 0.0103199072, 0.00669850502, -0.0115681663, -0.0260247439, -0.0019123035, -0.00828785822, 0.0176207703, 0.00148956466, 0.0103852227, 0.0228460394, 0.0199431125, 0.00205200678, -0.00940548535, -0.00883215666, 0.00725369, -0.0182449, 0.0119745759, 0.00327486498, -0.0137235895, -0.00360870175, -0.0133316945, 0.00490957592, -0.00553007703, -0.0138542214, 0.00168641948, -0.00285031181, 0.0131647764, 0.0198560245, 0.0124245295, -0.0125624184, -0.0178965479, -0.00529784244, -0.0152403694, -0.00635378249, 0.00598365907, 0.0121632665, -0.00238947221, -0.014565439, 0.00384275033, 0.0155451763, 0.00129815284, -0.0047281431, 0.027011741, -0.0147250993, -0.00853460655, -0.00123465131, -0.001458721, 0.0176498, 0.0301614162, 0.0156612936, 0.0257634819, -0.00727183325, 0.0190867484, 0.000275778119, -0.0299291816, 0.0103852227, 0.0215542372, -0.00598728796, 0.015298428, 0.00416932954, 0.00935468357, 0.0061070337, 0.005856656, -0.0170982424, -0.00687268097, -0.0139340516, 0.0167644061, 0.0151532814, 0.000899453938, 0.0018506163, 0.00725731859, 0.00829511508, 0.00222073961, -0.00118112867, -0.0114883352, -0.00629209541, -0.00838220306, -0.0121705234, -0.0176498, -0.0232669637, 0.0217284113, -0.0142098302, 0.00512366695, -0.00633563939, -0.017461108, -0.0162418783, -0.00637192558, -0.00536315842, 0.00726820482, 0.00273238053, 0.00415118644, 0.0204801541, -0.00416932954, 0.01469607, -0.00253099, 0.0221203081, 0.024791, 0.0132881505, 0.00430721883, 0.0103489365, 0.024718428, 0.0149355615, 0.000321589934, -0.00207196455, -0.0012899884, 0.00701419869, 0.0191593207, 0.0106610013, 0.0228170101, 0.0106972875, 0.00560265, -0.0120398914, -0.00446687965, -0.0184481032, 0.0284922328, 0.0200301986, -0.00912245, -0.0205527265, -0.00990624, -0.00668399036, -0.0223235115, 0.00897004548, 0.00221166783, 0.0261118319, 0.0100441286, 0.0040532127, 0.00323857856, 0.0020465639, 0.0361414477, -0.0111762704, -2.92277164e-05, 0.0236588586, 0.0145001225, -0.000911700656, 0.0176933426, 0.0031006895, 0.00422738818, -0.0241813865, -0.00519261137, 0.00263440679, -0.00963771902, 0.00706499955, -0.0441535264, 0.00652432954, -0.00897730328, 0.000994252623, 0.00257090502, 0.0032022919, -0.0243265331, -0.0219461322, -0.00788870547, 0.00292107067, 0.00259812013, -0.00785967615, -0.0163579956, -0.0130849453, 0.0150226494, 0.00262896367, 0.0105956849, 0.00273056608, 0.00888295844, -0.00252736127, -0.0103779659, -0.0120398914, -0.00322224945, 0.0165757164, -0.0109512936, -0.0124680735, -0.00109222648, 0.0231798757, -0.00768550066, 0.00285938359, 0.00165739015, 0.00157030229, 0.00558813522, -0.0273165479, -0.028651895, 0.0145364096, -0.00706862845, -0.0207269024, 0.0047281431, -0.00590382889, 0.0169240665, 0.00801933743, 0.00917325076, -0.0101094451, 0.0180852376, 0.0165031422, -0.019318983, -0.00921679474, -0.00384275033, -0.0104723107, 0.017417565, 0.00364861707, 0.0077798455, 0.0246168245, -0.0167208631, 0.00142606313, 0.0181142669, -0.0238910932, -0.000978830853, -0.0158064403, -0.0203930661, -0.00604534661, 0.0102545917, -0.00715571642, 0.00170093402, 0.0125624184, -0.0177949462, -0.0105303694, 0.00538855931, 0.0168514941, -0.019231895, 0.0259666853, -0.0186367948, -0.00262896367, -0.00778710283, 0.0297840349, -0.0107480893, 0.00248200307, 0.00919502228, 0.00932565425, 0.00402055448, -0.0142243449, 0.00619412167, 0.00455396762, 0.00923856627, 0.00711580086, 0.0118004, -0.00750406738, -0.027185915, -0.00300997286, -0.000437933835, -0.0190867484, 0.00965223368, -0.0133244367, -6.45221e-05, -0.0120326346, -0.00169549102, 0.00197036192, -0.00700331246, 0.00148502889, 0.0810497329, 0.0134115247, 0.0203204919, -0.0300452989, 0.00665859, -0.028564807, -0.00697065471, 0.0459243134, 0.000995159848, 0.0062195221, -0.0094925724, 0.00842574704, -0.00119110744, -0.00626669452, -0.00229694135, -0.00341456849, -0.0241233278, -0.00545024639, 0.0254441593, -0.0141590284, -0.0072355466, -0.0108134048, 0.0116189672, 0.000196514578, -0.00262896367, -0.00579859782, 0.00327123632, -0.00299727265, 0.00965223368, 0.00591834355, -0.0188109707, 0.00711942976, -0.00751132471, 0.00823705643, -0.021176856, -0.0110601541, 0.00328575098, 0.00320773479, 0.00572965294, -0.0046374267, 0.011843944, 0.000971573521, 0.0101457313, -0.0013516756, 0.00857089367, 0.00236044289, 0.00438342057, -0.0243555605, -0.00689445296, -0.0141372569, -0.0019231895, -0.0323386118, 0.00861443765, -0.0101021873, 0.00320954924, 0.0111109549, -0.00977560785, 0.00375203369, 0.0211187974, -0.0012001791, 0.0160967335, 0.00516721094, -0.0188545138, -0.0226718634, 0.0102836201, -0.0125987055, -0.0411635116, 0.000315920159, -0.0120471492, 0.00251828949, 0.00704322755, -0.0149355615, -0.00838946, -0.0012337442, -0.00116479967, 0.00742423721, -0.00111762702, 0.017417565, -0.0151823107, -0.00250740349, -0.00996429846, 0.00377017702, -0.00809191074, -0.011669768, 0.00877409801, 0.00030957, -0.013527642, -0.00622315053, 0.00202116324, -0.0175191667, 0.000668580469, 0.030683944, -0.0113431895, 0.0140937129, -0.000943451421, 0.0112125576, 0.00572602451, 0.0170692131, 0.0149645908, -0.00640821224, 0.011843944, 0.0037411477, 0.00394435273, -0.00639732648, -0.000660869584, 0.0227734651, 0.00390443741, 0.0162709076, 0.0199866556, -0.0108787203, 0.0137743913, -0.0129325418, 0.0050873803, 0.0276213549, -0.00580585515, -0.00242575887, 0.0171563011, -0.0192028657, 0.0303355921, 0.00289929891, 0.0019068605, 0.0258070249, -0.0039588674, 0.0108714635, 0.00488054659, -0.00345266936, 0.00316419103, -0.00971755, 0.015429059, -0.012533389, 0.00494586257, 0.0172579046, 0.0154580884, -0.0236588586, -0.00141699146, 0.029261509, -0.0186803378, -0.0158499833, -0.012576933, -0.00122467254, 0.0392475799, -0.00737343589, -0.00460114, -0.00197036192, -0.00931839738, 0.00269790832, -0.00854912121, -0.00124916597, 0.00913696457, -0.0127728805, 0.0166192595, 0.0201898608, 0.011756856, -0.0284632035, 0.000525702, -0.019667333, 0.00411852822, -0.013484098, -0.011408505, -0.0110093523, -0.000952523085, 0.00783064682, 0.0174756236, -0.0146234967, -0.00783064682, 0.00582399825, -0.000299591193, 0.00555184856, 0.01702567, 0.00888295844, 0.0218009856, 0.00449228, -0.0155887203, -0.00219533895, 0.00611429103, 0.00842574704, 0.00912970677, -0.00529784244, 0.00974657852, -0.0013117604, -0.00445599388, -0.000604625384, 0.00578045426, 0.0303355921, 0.00683639431, -0.0109948376, -0.0314096734, 0.00356334355, 0.0150226494, 0.02541513, -0.00875958335, -0.00168188359, 0.0111690136, -0.00866523851, 0.0132373497, 0.000213750711, 0.00412215712, -0.00515632471, -0.015820954, -0.0150952227, 0.0110020954, 0.00376291969, 0.0218009856, 0.0274326652, -0.00873781182, 0.00872329716, 0.000182793709, 0.00413304288, 0.0143114328, -0.00492771948, 0.0129252849]
27 Mar, 2024
Which Layer Called Error Detection Layer? 27 Mar, 2024 Answer: The Data Link layer is often referred to as the error detection layer.And, Transport Layer is also responsible for error detection and recovery in data communication. Error DetectionThe Data Link layer is responsible for transferring data frames between adjacent network nodes. During this process, it employs error detection techniques to ensure data integrity. CRC (Cyclic Redundancy Check)One of the primary methods used for error detection at this layer is CRC. CRC involves appending a checksum to the data frame based on its contents. Acknowledgments and Retransmissions The Data Link layer also implements mechanisms like acknowledgments and retransmissions to detect and recover from transmission errors. Ethernet and Wi-FiIn Ethernet networks, the Data Link layer is implemented through protocols like Ethernet II or IEEE 802.3, which include error detection mechanisms. Conclusion The Data Link layer plays a crucial role in error detection within a network. By implementing techniques like CRC and mechanisms for acknowledgments and retransmissions, it ensures the reliable transmission of data frames between network nodes. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System/Introduction of System Call/How much Stack size required for BIOS interrupt call?/Difference between Interrupt and Polling/Difference between Difference Engine and Analytical Engine/Difference Between Store‑and‑Forward Switching and Cut‑Through Switching/Difference between Message and Packet Switching/How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?/Types of Node Devices in a Computer Network: End devices and Intermediary Devices/Types of Errors in Computer Network/Difference between Storage Area Network (SAN) and Network Attached Storage (NAS)/Difference Between Network Security and Network Administration/Internet Administration/Internet Telephony Protocol | H.323/IPsec (Internet Protocol Security) Tunnel and Transport Modes/Real-time Transport Control Protocol (RTCP)/Cisco Discovery Protocol (CDP) and Link Layer Discovery Protocol (LLDP) in Data Link Layer/Data Link Layer Communication Protocols in IoT/Network Layer Protocols/Which Layer Called Error Detection Layer?
https://www.geeksforgeeks.org/which-layer-called-error-detection-layer?ref=asr10
PHP
Which Layer Called Error Detection Layer?
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, Difference between Difference Engine and Analytical Engine, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Difference between Interrupt and Polling, Types of Node Devices in a Computer Network: End devices and Intermediary Devices, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, Types of Errors in Computer Network, jQWidgets jqxToolBar close Event, How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, Difference between Message and Packet Switching, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, Difference Between Network Security and Network Administration, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, Introduction of System Call, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Data Link Layer Communication Protocols in IoT, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Difference Between Store‑and‑Forward Switching and Cut‑Through Switching, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, IPsec (Internet Protocol Security) Tunnel and Transport Modes, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, Internet Telephony Protocol | H.323, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, Difference between Storage Area Network (SAN) and Network Attached Storage (NAS), jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, Real-time Transport Control Protocol (RTCP), unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, Internet Administration, Which Layer Called Error Detection Layer?, Cisco Discovery Protocol (CDP) and Link Layer Discovery Protocol (LLDP) in Data Link Layer, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, Network Layer Protocols, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How much Stack size required for BIOS interrupt call?, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0441015102, 0.0288514569, -0.00484936312, 0.0195262525, 0.0271770414, 0.0219348352, 0.0138332425, 0.00608585402, -0.00973736681, 0.011708024, 0.0288772155, -0.0215741917, 0.00996920839, -0.00678138, -0.0130733158, -0.0259920713, 0.00702610239, -0.010600334, -0.0347505473, -0.0344671868, 0.0393101089, 0.00142566767, 0.0140135642, 0.00289480574, -0.00843647495, -0.0103942519, 0.0363476835, -0.023094045, -0.0251419824, 0.0172464736, 0.0645551309, 0.00143371767, 0.0379190557, -0.0428907797, -0.0116178636, -0.0585272387, 0.00863611698, 0.026301194, -0.00126144616, 0.023815332, -0.00281430501, 0.0125967516, 0.0133051584, 0.0133824386, -0.0286711343, 0.000710016291, -0.00380285364, -0.00633057626, 0.00301233679, -0.0178003181, -0.0475791432, -0.0569816269, -0.0304228291, -0.00533558754, 0.000479381764, 0.0507218912, 0.0690889359, 0.0311441161, -0.00107629457, -0.0166539885, 0.0300879478, -0.00449838, -0.000904023, 0.00171305519, -0.00436957879, 0.00604077382, -0.0318396427, 0.00978244655, 0.029237859, 0.00252128229, -0.0446682349, -0.0450288802, 0.00393487513, -0.00782467, -0.00666545937, 0.0117209041, -0.00919640157, 0.0498202816, 0.0481458679, -0.0148894126, 0.0150439739, 0.00935740303, -0.00889371894, 0.00558030931, 0.0306289122, 0.000435911381, -0.0125774313, -0.0477337055, 0.0256958287, 0.0252450239, 0.006214655, 0.0321745239, -0.0362188816, -0.0169888716, -0.00438567903, 0.00593129266, 0.0279756077, 0.0010432892, 0.00383505411, 0.0047044619, 0.0117466645, 0.00839139428, -0.0328442901, 0.0167956688, 0.0300364271, 0.00226046, -0.0421952531, 0.0358839966, -0.00732234493, 0.0782595724, -0.00610839436, -0.014065085, -0.000802592142, -0.0125259114, 0.0159713421, -0.0633701608, -0.0300879478, -0.0214453898, -0.0157910194, -1.82384429e-06, 0.014721971, 0.00366439251, -0.034802068, 0.0563633814, -0.0155591778, 0.0307834726, 0.0150310937, 0.0188951269, 0.012493711, -9.70536712e-05, -0.0169244707, 0.00179516594, 0.0267391168, 0.000354404387, 0.0235062093, 0.00249713217, -0.0229910035, -0.00984040741, 0.0211877879, -0.0185344853, 0.0111477394, -0.000857332605, -0.00565437041, 0.00622431515, -0.000778844405, 0.0098597277, 0.0224629194, 0.0159842223, -0.0462911315, -0.0157781392, 0.0124679506, -0.00580249168, 0.00892591942, -0.0273316018, -0.00338747, -0.0193716921, 0.0121266274, -0.00275956444, -0.00980176684, -0.0329215713, 0.0242790151, -0.0133824386, 0.0226046015, -0.00629515573, 0.0107806558, 0.0275634453, 0.0211749077, -0.0106840553, -0.0542510413, 0.0266103167, 0.00146752805, 0.0289287362, 0.0314017199, 0.000864577654, -0.0249101408, 0.000394654751, -0.00590231223, 0.0382797, 0.0101173297, 0.0205180217, -0.0245881379, -0.0174783152, -0.00580893178, -0.000686671119, 0.00238443119, -0.00767654832, 0.0259019099, -0.019693695, 0.027872568, -0.0123713501, -0.0315820388, 0.00248103193, 0.0579089932, -0.0272800829, -0.00841071457, -0.0328185298, -0.0276149642, 0.0100271692, 0.00777314883, -0.032715492, 0.01465757, 0.00158183905, -0.00929944217, 0.0170919113, 0.0100980094, -0.0171691924, 0.00601501344, -0.0171820726, 0.0234160479, 0.00909980107, -0.00933164265, -0.00734810531, 0.016744148, 0.0374296121, 0.0334625356, -0.0134726, -0.0379963368, -0.0221022759, -0.00947332382, 0.0157781392, 0.0347763076, 0.0372492895, -0.00556098949, -0.0101946108, -0.0492020361, -0.0148250116, -0.0100464895, -0.0703769475, -0.0586818, -0.0657916218, -0.0148121314, 0.00686510094, -0.016550947, -0.0278210472, -0.0325609297, 0.0139620434, 0.00127271633, 0.0145802898, -0.0265587959, -0.0127513129, 0.00194811728, 0.0098532876, -0.0345187075, -0.0543540828, -0.0266103167, 0.0326382108, 0.0119012259, 0.0585272387, 0.00374489324, 0.00477530248, 0.00213326886, 0.00959568471, 0.0394389108, 0.0189595278, 0.00196099747, 0.00719998404, -0.00134516694, -0.0120686674, -0.00739962561, -0.00388979446, 0.00664613908, -0.0358067192, -0.0292120986, 0.00663325889, -0.031479, -0.0382539406, -0.0103878118, 0.0174525548, 0.036631044, -0.0303197894, 0.0011431101, -0.0325609297, -0.00747690629, -0.00336493, 0.026687596, 0.00379963382, -0.00743826618, 0.0268421583, 0.0328442901, 0.0166411083, -0.0381766595, -0.0527569465, 0.0138461227, -0.0125774313, 0.00830123387, -0.0111928191, -0.0242403746, 0.0161130223, -0.0320714861, -0.0549208075, -0.0167183876, 0.000136448711, -0.031479, -0.0010569744, 0.0130346753, -0.0125645511, -0.00936384313, 0.0186117645, -0.0208271444, -0.0211233869, -0.0434575044, -0.0220249947, -0.0294181816, 0.0031990984, -0.0213165898, 0.00662681879, 0.0174525548, 0.00569623057, 0.0104393326, 0.014979573, 0.033307977, 0.00759926764, -0.0263269544, -0.0225659609, 0.00812735222, -0.0195520129, -0.0134726, -0.0105037335, -0.0200929791, 0.0145287691, 0.0410102829, 0.0455440842, -0.010600334, 0.0791869462, 0.0278468076, -0.0206339434, 0.0142711671, 0.00704542268, -0.0662037879, -0.0086103566, -0.0408557244, 0.0366052836, -0.0129831554, 0.00969872624, 0.023029644, -0.0255026259, -0.0160743818, 0.032380607, -0.00544828828, 0.0191527307, 0.00917708129, -0.0302167479, -0.0188307278, -0.0137173217, -0.0659977049, 0.0089388, 0.015636459, -0.0109996172, -0.0221537966, -0.00598281296, 0.000881482847, 0.0159455817, 0.0276407246, 0.00546760857, 0.030551631, -0.0341065414, 0.00770230824, -0.0253094248, 0.0129573951, -0.00456600031, 0.0128929941, -0.00303326687, -0.00112137489, 0.0201058593, -0.0600213334, -0.0205953028, 0.00963432528, -0.0191913694, -0.00710338308, -0.0275119245, -0.0198611356, 0.0131763574, -0.0118046245, 0.0208400246, -0.0126547124, -0.00528728683, 0.0170146301, 0.0231069252, -0.00747690629, 0.0192686506, 0.0260049514, 0.00322002848, -0.0313759595, -0.00252933241, -0.0166539885, 0.0250775833, 0.0315047614, 0.0109609775, -0.0295469817, 0.0175298359, -0.0157781392, 0.0101624103, 0.00133711682, -0.0103942519, 0.0289287362, -0.0033069693, -0.0115727829, 0.0188178476, 0.0422467738, -0.0116049834, -0.0213037096, 0.0154174967, -0.00955704506, -0.0147606106, -0.0112636602, 0.026043592, 0.0202088989, -0.0393616296, -0.00814667251, 0.0207112245, 0.00126627623, 0.00686510094, 0.0376099348, -0.0389494672, 0.022669, -0.00408943649, -0.0245623775, 0.0552814491, -0.0128285941, 0.0196421742, 0.0379448161, 0.000400893565, -0.0151985353, -0.00106502441, 0.0509794913, 0.0488413945, -0.00684578065, -0.00660105841, -0.0101108896, -0.0237766914, 0.0250775833, -0.0121910283, -0.0114633022, 0.0179162398, -0.00680070044, -0.0684706867, 0.0459304862, -0.0221537966, -0.0559512153, 0.0304485895, 0.0325094089, 0.0328442901, 0.00914488081, -0.0104135722, -0.0727984086, -0.00153836864, -0.0158167798, -0.0202604197, -0.00583791174, -0.0348278284, -0.00163496949, 0.0367856063, 0.0155849382, 0.0125001511, 0.0331534147, 0.0130668757, 0.0144386077, -0.0384085, 0.0461108088, 0.00756706716, -0.00311698765, 0.0317623615, -0.030809233, -0.0139620434, 0.00502646482, 0.0191140901, -0.0212393086, -0.00124695606, 0.0152371749, -0.000702368736, -0.00144418282, -0.0737257749, -0.00271931407, 0.0281044096, 0.0378160141, -0.00125017611, 0.010336292, -0.00987260789, -0.00890659913, -0.00237960112, 0.0175040755, 0.0532721542, -0.00672986, -0.0100271692, -0.00320714852, 0.00652055768, 0.0822781697, 0.0130990762, -0.00756062707, -0.0586818, 0.00584757188, -0.011121979, -0.0232743658, -0.0332564563, -0.000875847763, -0.0218961947, -0.0275119245, -0.00824971311, -0.0236350093, 0.013936284, -0.00989192817, 0.0279756077, 0.0181094408, 0.0338489413, -0.0451834425, -0.00625007553, 0.00762502756, 0.0303455498, 0.0386403427, -0.0327927694, -0.00416993722, 0.0151856551, -0.00810159184, 0.0510567725, -0.00866187643, 0.0156751, -0.00946688373, 0.0133695584, -0.0115277022, -0.00813379232, 0.0131441569, 0.0323290862, 0.0136142811, 0.0119141061, -0.0390782654, -0.0293666609, 0.000296645128, 0.0183541626, -0.0235190894, 0.0118819056, -0.00238121115, 0.0142196463, 0.0513916574, -0.0213809889, -0.0374553725, 0.0347247869, -0.00680714054, 0.025386706, -0.0277180057, -0.0127513129, 0.0135112396, 0.027872568, -0.0257215891, 0.0169888716, -0.0121201873, 0.00420857733, 0.00919640157, -0.0100464895, 0.0242532548, -0.0089388, 0.0335913375, -0.0203763414, 0.0122039085, 0.00265169353, -0.0232228469, -0.000185755402, -0.00449515972, 0.00421501743, 0.00134114188, 0.00704542268, -0.0143098067, 0.0212006681, -0.00524542667, 0.0254124664, 0.0204536207, 0.011450422, 0.0198224951, 0.0198740158, -0.0316335596, -0.0137817226, -0.023944132, -0.0383569822, 0.0128285941, 0.000751071668, 0.0488671549, 0.00946688373, 0.0297273044, -0.036244642, 0.00488800323, 0.0320714861, 0.0323548466, -0.0034776309, 0.0408042036, 0.0365280025, 0.0205824226, -0.0428907797, 0.0110060573, -0.00448228, 0.0187405664, 0.0221022759, -0.0335398167, 0.0254768655, -0.0125967516, 0.00808227155, 0.0398510732, 0.0372492895, -0.0184056833, 0.00190947694, 0.0189466476, -0.00841071457, 0.00768942805, 0.0290832985, 0.0165895876, 0.0114053413, 0.0410618037, 0.0279498473, -0.0104522128, 0.0181094408, -0.0105423732, 0.0100336093, -0.0132021168, 0.000215339416, 0.00984040741, 0.0131570371, -0.029443942, -0.00473988196, 0.0170146301, 0.0144128483, -0.0115921032, 0.0164994262, 0.0178260785, 0.0236736499, 0.0133051584, -0.000500311959, 0.00785043, -0.0137044415, -0.0215355512, -0.0335398167, -0.00436313869, -0.0129960356, -0.02813017, -0.0182253625, -0.026043592, 0.0038769145, -0.0142840464, -0.00389623456, 0.00889371894, -0.0337974206, 0.0131377168, -0.0215355512, -0.0299333856, -0.00906760059, 0.0154818976, 0.0618760698, -0.00231037056, 0.0307834726, 0.0375326537, 0.0357036777, 0.0118368249, -0.0124035496, 0.00930588227, 0.0179548785, 0.0016502646, 0.0078182295, -0.000461671589, -0.0222568382, 0.0340292603, -0.027074, -0.0018563465, -0.0164479055, -0.00841071457, 0.00725794444, -0.00316850818, -0.00487834308, 0.00346153066, -0.00622431515, 0.0138590029, -0.0237380508, 0.0112894205, 0.0355748758, -0.0277952868, -0.0422725342, 0.00465938123, 0.00645615719, -0.0214453898, -0.0215999521, -0.00953772478, 0.0221409164, 0.0083591938, -0.00853307545, -0.0204922613, -0.0154303769, 0.000409144879, 0.00649157772, -0.0367598459, 0.00381573383, -0.033488296, 0.017658636, -0.0288772155, -0.0424528569, -0.0300621875, 0.0148378918, -0.030294029, -0.00178228586, -0.00982108712, -0.0187663268, 0.00501680467, -0.00530016702, -0.026687596, -0.00609229412, 0.018779207, 0.00461108098, 0.00216868916, 0.0118239447, -0.0330246128, 0.0615669452, 0.00224757986, -0.0373780914, -0.00770874834, -0.02145827, 0.00243273168, -0.00446617976, 0.00783755, 0.0214453898, 0.00857171603, 0.00879711844, -0.0221280362, 0.00296725635, 0.00999496877, 0.00050232443, -0.0382024199, 0.0326382108, -0.000834792387, -0.0301137064, -0.0255670268, 0.0045338003, -0.0114697414, 0.0102396905, -0.00612127455, 0.00476242229, 0.000612207921, 0.0122039085, 0.0116887037, 0.00691662123, 0.000375535834, 0.00566081, 0.00190625689, 0.0264042336, 0.0191012099, -0.0150826136, 0.030294029, -0.0210718662, -0.00263076345, 0.00908048078, -0.0288256966, -0.0125001511, 0.01014309, 0.0339519829, -0.0118368249, -0.0143742077, 0.00616635475, -0.0213681106, 0.0323033258, -0.0241244547, -0.00563183, 0.0112765403, 0.050232444, -0.0112765403, 0.0212779492, -0.006214655, -0.0131699173, 0.0335398167, 0.0118110646, -0.0159842223, 0.00543218805, -0.0124357501, -0.0171305519, 0.0102976514, -0.00112781499, 0.00993700791, 0.00864899717, 0.0279240869, -0.021921955, -0.0196421742, 0.00658495864, 0.00248747203, 0.000748656632, -0.00966652576, 0.0123713501, 0.0132021168, -0.0422210135, 0.0151341343, -0.0162675846, -0.00660749851, 0.000945078384, -0.0252321437, 0.0395677127, 0.00951840449, -0.0194103327, 0.0201187395, 0.0190110486, -0.00223308988, 0.0088164378, 0.0134854801, -0.00188210665, -0.00156010385, -0.0154432571, 0.0364764854, -0.0243047755, -0.0149924532, 0.054096479, -0.0136014009, -0.00482682278, -0.0146189295, -0.000541769783, -0.0272800829, -0.00462396117, -0.0704284683, -0.0115019418, -0.00771518843, 0.00606975378, 0.00875847787, -0.0187276863, -0.0279498473, 0.00966652576, 0.0225015599, 0.00564149, -0.0244078171, 0.00782467, -0.0029076857, -0.0329215713, -0.00111493492, -0.00241985149, 0.0138332425, 0.0013000865, -0.026043592, 0.0283362512, -0.0102396905, 0.0463426523, 0.000986938714, -0.0187276863, -0.017864719, 0.0123584699, -0.0400829166, -0.0148636522, -0.00628871564, -0.00543218805, 0.0116178636, 3.68856786e-06, -0.00155446876, -0.00179033587, 0.0029076857, 0.00170178514, -0.00588621246, -0.0447970368, 0.0229652431, 0.014193886, -0.00967296585, 0.054148, 0.00233452069, 0.000170963394, 0.043766629, -0.0373265706, -0.00987260789, -0.0252321437, 0.0275634453, 0.0217029918, 0.0026629637, 0.0098468475, -0.00830123387, -0.0285680927, 0.0202990603, -0.00615669461, 0.0454410426, 0.0171820726, 0.0366052836, 0.00161484431, -0.0294954609, 0.0174139142, 0.00164784957, -0.00139024737, -0.0222954787, -0.00411197636, 0.010922337, -0.00713558355, -0.0178003181, 0.0142840464, 0.0024343417, 0.0182897616, -0.0234804489, -0.00523254648, 0.0124872709, -0.0236865301, 0.013871883, 0.0212779492, -0.0185860042, -0.00625007553, -0.00149811828, 0.00491698366, -0.0293409, -0.0378932953, -0.00531304721, -0.0193588119, 0.00963432528, -0.00720642414, 0.024923021, -0.00301394681, 0.0120429071, -0.036631044, 0.0269967187, -0.00621787505, 0.0030783473, 0.00031737407, -0.0102912113, 0.0205824226, -0.0268163979, -0.00667833909, 0.0279240869, -0.0164994262, -0.00792127, 0.0259405505, -0.0318396427, 0.00780534931, 0.00878423825, 0.0284135323, 0.0168987103, -0.0176972765, -0.023287246, 0.00162933441, -0.0111155389, -0.00536134746, 0.010072249, -0.00794059, 0.0140393246, 0.00693594152, -0.0121974684, -0.00936384313, -0.0164350253, 0.00163416448, 0.0127384327, -0.0237251706, -0.000842037494, -0.0116371829, -0.0111477394, -0.00624363543, -0.0128929941, -0.0267648771, 0.00438245898, -0.0271255206, -0.0117144641, 0.0130668757, 0.0305258706, 0.0191398505, -0.00699390192, -0.0176071171, 0.0351111926, 0.0317623615, 0.00383183407, 0.000320191582, -0.0200543385, -0.0204536207, -0.0140264444, 0.00557386968, 0.00122361083, 0.0234289281, -0.0333337374, -0.0113731408, -0.042324055, -0.00766366813, 0.00244400161, 0.0130797559, 0.0146962106, -0.0129123144, 0.0112894205, 0.0025937329, 0.012493711, 0.000305701455, -0.0429938212, -0.0265845563, 0.000107770335, 0.0252579041, -0.0171305519, -0.0156751, 0.0153015759, 0.00454346044, -0.00604077382, 0.00734166522, -0.0201573782, 0.0031701182, 0.0105681336, 0.00278693484, -0.00163818954, 0.0283620115, 0.00452092, 0.0256185476, -0.0213165898, 0.0147090908, 0.029443942, 0.00368049275, -0.0036772727, -0.0145416493, 0.00550624868, 0.00222020969, 0.0197194554, -0.0214711502, 0.00284811528, -0.0053259274, 0.00739318551, -0.0441015102, 0.00703254249, -0.00681358064, -0.00364185241, -0.0047044619, 0.0399798751, -0.0122425491, 0.0261852723, 0.0285423342, 0.0101688504, 0.0178389587, -0.00300267665, -0.0166153479, 0.0070196623, 0.00553522911, -0.0155849382, 0.0074125058, -0.00410553627, -0.0306289122, 2.31439553e-05, -0.0106518548, 0.0242918953, -0.00583791174, -0.00654953811, 0.0118175047, 0.014193886, 0.0157523807, 0.0180708, 0.0145545295, 0.0057767313, -0.00786331, 0.00016965525, 0.0139234038, -0.00281752506, -0.00927368272, -0.00273219426, -0.0135241197, -0.00685222074, -0.0256958287, -0.0501036458, 0.016357746, 0.0322260447, -0.0103169717, -0.0126675926, -0.00276761455, 0.0168471895, -0.0146189295, 0.000870212738, -0.00123810105, -0.00220893952, 0.00310410745, -0.00438567903, 0.00193040713, -0.0205051415, -0.0140393246, 0.000156573893, -0.0294954609, 0.0422725342, 0.00459176069, 0.029237859, 0.0249616615, 0.00680070044, -0.00473666191, -0.00126949628, 0.0191012099, -0.0143355671, -0.0276407246, 0.0368113667, 0.00908692088, 0.011450422, -0.00948620401, -0.00852019526, 0.00561895, 0.00138622231, -0.00300106662, -0.01805792, 0.0026694038, 0.0247942209, -0.0291348193, 0.00765722804, -0.022437159, -0.000248948461, 0.00269677397, 0.00255026272, -0.000646018249, 0.0121073071, -0.0206339434, 0.00478818268, 0.0295985024, 0.000341121777, -0.0151341343, -0.0312471576, -0.0237766914, -0.00356457173, 0.0195520129, -0.0134597197, 0.0195906535, -0.0104393326, -0.0222697183, 0.0687282905, -0.0128028337, -0.00978244655, -0.0372235291, -0.0263784733, 0.00504900469, -0.022437159, 0.0254897457, 0.0438439101, 0.00862323679, 0.00824327301, 0.00983396731, 0.0247813407, 0.0247169398, 0.00382217392, 0.00483970298, -0.015507658, 0.0166153479, 0.00625329558, 0.0304485895, 0.00517136604, 0.0123713501, -0.0247169398, -0.00546438852, 0.00474310201, -0.00147316302, 3.72567374e-05, -0.0264042336, 0.00303648692, -0.00580249168, 0.0300364271, -0.01805792, 0.00947976392, -0.00922216196, -0.00366761256, 0.0418088511, 0.0207241047, 0.00488478318, -0.00978888664, 0.0365795232, -0.0167312678, -0.0164479055, 0.00522932643, 0.00402181549, 0.0164221451, -0.00561251, -0.00874559768, -0.00387047441, -0.00884863827, -0.0101237698, -0.00882287789, -0.00433737831, 0.00764434785, 2.13830026e-05, -0.0174911954, -0.0143613275, 0.00386725436, 0.00738030532, 0.0132665178, 0.00852663536, 0.00603433372, -0.00838495418, -0.00942824408, 0.00886795856, 0.00503612449, 0.00843003485, -0.0110382577, -0.00471734209, -0.0144257285, 0.017272234, -0.0117595447, 0.0229781233, -0.0145158889, 0.00668477919, -0.0493050776, -0.00556420954, 0.00798567105, 0.0110189375, -0.034080781, -0.0040829964, 0.0229266044, 0.00432127854, -0.000213125648, -0.0112250196, 0.0321230069, -0.00659139827, -0.0362961628, -0.0166926272, 0.0264042336, 0.0161774233, -0.0245366171, -0.0111670587, 0.00962788519, 0.0151470145, 0.00281269499, 0.00878423825, 0.0245366171, 0.0262883138, -0.0102396905, -0.00379319373, -0.0136915613, -0.014193886, -0.00377065339, 0.0242146142, -0.0257988684, 0.00711626327, 0.0143870879, -0.0155205382, -0.00415061694, -0.00498138415, 0.0119656259, -0.0202475395, 0.000563505, 0.0137817226, 0.00647225743, 0.0174911954, 0.0211877879, 0.0228235628, 0.000811849721, 0.00283040502, -0.0234804489, 0.00889371894, 0.0193974525, -0.0123520298, -0.00812735222, -0.00719998404, 0.0133309187, -0.0118239447, -0.010993178, -0.0154690174, -0.00947976392, 0.00743826618, 0.00799855124, 0.00569301052, -0.0178260785, 0.0235319696, -0.01792912, -0.00464650104, -0.000376139593, -0.0126675926, 0.0130539956, 0.00625329558, 0.0137302019, 0.00544506824, -0.00887439866, 0.0203248207, -0.00397351524, -0.0114246616, 0.0112572201, 0.0115727829, -0.0360643193, -0.03165932, 0.00188210665, 0.00464650104, 0.0260307118, 0.00551912887, 0.00476564234, -0.0145030087, 0.033694379, 0.0307834726, -0.00199319771, 0.0200800989, 0.0273831226, 0.0234546885, 0.000576787628, -0.00434381841, 0.00422467757, -0.017465435, 0.0154561372, -0.00748978648, 0.00242146151, 0.0238797311, -0.0146446899, 0.0073609855, 0.0173495132, 0.0251935031, 0.0161774233, -0.0166668687, -0.0133953188, 0.00738030532, 0.00610517431, -0.00122602587, 0.0354460739, 0.0224500392, -0.0203763414, -0.0356779173, 0.0059924731, -0.00067338848, 0.00773450872, 0.0163062252, -0.0150053333, 0.0202604197, 0.0330503732, -0.00558674941, 0.0370947309, -0.00806295127, 0.0206210632, 0.00111010484, -0.00643361732, -0.00172593526, -0.0354975946, -0.00214292901, 0.00994344801, 0.00202861801, 0.00598281296, -0.00124695606, 0.0147606106, -0.00902896, 0.0273058414, -0.0158167798, 0.00435347855, 0.0278210472, 0.00289641577, -0.00698102172, -0.0232228469, -0.0119913863, -0.0143742077, -0.0021493691, -0.0124808308, 0.0141552454, -0.022179557, -0.0353430323, 0.0185087249, 0.0166926272, -0.00261305319, -0.00852019526, 0.0217287522, -0.00667833909, 0.0184056833, 0.0104908533, -0.0184572041, 0.0185860042, 0.00936384313, 0.0081659928, -0.00444363942, -0.0205180217, 0.00698102172, 0.00637243642, -0.0101044495, 0.00953128468, -0.00066936342, 0.0106454147, 0.01805792, -0.0141552454, -0.0449258387, -0.000170158382, -0.00514238561, -0.00237638108, -0.0109674176, -0.0124421902, 0.0222825985, -0.0256056674, -0.0197967365, -0.0295985024, -0.0128414743, 0.00570589071, -0.0463684127, 0.00359999202, 0.0094024837, -0.0281044096, 0.00613737432, -0.0184572041, 0.0177874379, -0.0127319926, 0.0186117645, 0.00880999863, -0.00725794444, 0.00109963981, 0.00859747641, 0.0053774477, -0.0104715331, 0.00269355392, 0.0268163979, 0.0237895716, -0.0156493392, 0.00100303895, -0.00186600653, 0.0131763574, -0.0321230069, 0.00521966629, -0.0154561372, -0.00106019445, 0.0094089238, -0.0166024677, -0.0049202037, -0.00483970298, -0.0129767153, -0.0114117814, 0.00532270735, -0.012300509, 0.0151470145, 0.0109738577, 0.0214840304, 0.000194409222, -0.0138332425, 0.0129895955, 0.0254768655, 0.0156879798, 0.00820463244, 0.00454668049, -0.000114814145, 0.0168858301, 0.00965364557, 0.000720078882, -0.00634989655, -0.00748978648, 0.00745758601, -0.00236994098, 0.0181738418, -9.6349293e-05, 0.024665419, -0.0104972934, 0.0184185635, 0.0110897785, -0.00144015776, 0.00650767796, 0.0148121314, -0.000933003263, 0.012950955, 0.0319684446, -0.0420922153, 0.0108128563, 0.0120879877, 0.020543782, -0.00486868341, 0.00638531661, 0.00642717723, 0.000462476601, -0.0256829485, 0.00389301451, 0.0284908134, 0.0101237698, -0.0108128563, -0.000434301357, 0.0049781641, 0.0230425242, 0.0266360771, 0.00797279086, 0.0128092738, 0.0185473654, -0.0156751, 0.0104972934, -0.0369401686, 0.0237122905, 0.00609873421, -0.00171788526, 0.006671899, 0.015507658, -0.0222181976, 0.0489959531, -0.0131377168, 0.0248715, -0.0171305519, -0.0153659759, -0.0619791113, 0.0151985353, -0.00641107699, 0.00535490736, -0.00776670873, -0.0137044415, -0.0122876288, 0.00705186278, 0.00366761256, -0.0160743818, 0.00747690629, -0.0105616935, 0.0348793492, -0.00335204974, 0.0156106986, 0.0177101567, 0.0108708162, 0.0185988843, -0.0198482554, -0.0235963687, 0.0148765324, 0.00568657042, 0.00512950541, 0.0344414264, -0.0193072911, -0.00223631, 0.0180321597, -0.0196679346, 0.0134983594, -0.0117981844, -0.0285680927, 0.00914488081, -0.00344221061, 0.0320457257, 0.018379923, 0.0199899375, -0.0218575541, -0.0200800989, 0.0145802898, -0.0110640181, -0.00420535728, -0.0103427321, -0.00324739888, -0.0118046245, -0.0358839966, -0.00385115412, 0.026687596, 0.000385598425, 0.000806214637, 0.0178904794, 0.00500070443, 0.0299591459, -0.0218704343, -0.00755418697, 0.01242931, -0.012100867, 0.0154046165, 0.00208496861, 0.00752198696, -0.0390009843, -0.000793334562, -0.0288772155, 0.0185988843, 0.0534782335, -0.0163191054, 0.0241373349, -0.0306289122, 0.0208271444, -0.0139491642, -0.0273058414, -0.0275119245, 0.00583791174, 0.000121857956, 7.72303756e-05, -0.00463362131, -0.0450804, 0.00272253412, 0.00218478939, -0.0164607856, 0.0133953188, -0.00996276829, 0.0269194394, 0.0348793492, -0.00397995533, -0.00382861402, 0.00190625689, -0.00547726871, -0.00251967227, -0.010271891, -0.00596993277, -0.0124228699, -0.0161903035, 0.00671053957, 0.014129485, -0.0382797, -0.00931232236, 0.00945400354, -0.0236607697, -0.0115405824, -0.0234160479, -0.0225788411, -0.0271770414, 0.00668477919, -0.00568335038, 0.00320875854, -0.0159327015, 0.015572058, 0.00444685947, 0.00571555085, -0.00149489823, 0.0260564703, 0.00301716686, 0.000129002394, 0.000836402411, -0.0300364271, 0.00634989655, 0.0022701202, 0.00817243289, 0.0178776, -0.000396868534, 0.0298818648, -0.0240858141, 0.00533880759, 0.00445329957, 0.0139234038, 0.00984040741, -0.00161725935, 0.0322775654, 0.0169631112, 0.0209945869, 0.012628952, 0.0584757179, 0.00525830686, 0.0116178636, 0.0111992592, -0.00586367212, -0.00814667251, 0.00109078467, -0.0197065752, -0.0142969266, -0.00448871963, 0.0193974525, 0.00137414725, -0.0283620115, -0.00873271748, 0.00989192817, 0.0122940689, 0.0119913863, 0.00200285786, 0.0370689705, 0.000442753924, -0.0193072911, -0.00848155562, 0.0285165738, 0.00749622658, 0.0011141299, -0.0112701, 0.00748978648, -0.00713558355, -0.00738030532, 0.00873271748, 0.0101044495, 0.00481716264, -0.00576385111, 0.0158039, 0.0117466645, 0.00344221061, 0.000777234382, 0.0105938939, 0.00102557905, 0.0317108408, 0.00280142482, -0.00561251, 0.0332822166, 0.00378675363, 0.00398961548, 0.00236994098, 0.0087069571, -0.0108836964, -0.0385115407, 0.0138203623, 0.0190883297, -0.0346990265, -0.0152886957, 0.0154432571, -0.00271770405, 0.00465294113, 0.0107613355, 0.00150053331, -0.0307061933, 0.00201573782, 0.000949908455, -0.00217029918, 0.00517780613, -0.015507658, -0.000801384624, -0.00265813363, -0.00103845925, -0.000411157409, -0.00236350088, 0.00993700791, -0.00288192555, -0.0206468236, -0.0122747486, 0.0138461227, 0.00303165684, -0.00313308788, 0.00767010823, 0.00698102172, -0.0216385927, -0.00102316414, -0.000901608029, 0.000524059637, -0.0233387668, 0.00320392847, -0.0165123064, -0.0163062252, 0.0129702752, 0.00686510094, 0.0185860042, 0.0351627134, 0.00526474696, -0.00276439451, -0.00336493, -0.0162160639, -0.0115599027, 0.002828795, -0.00908048078, -0.0291090589, -0.0192686506, 0.0054225279, -0.0101495301, -0.00217512925, 0.00423755776, -0.025579907, 0.022243958, 0.0094990842, 0.0157137401, -0.0030783473, 0.0177874379, -0.00542574795, -0.0108064162, 0.000282557507, 0.0400829166, 0.0103040915, 0.00837851409, 0.0198997762, 0.00227656029, 0.0131699173, -0.0172851142, -0.0201573782, -0.00588299241, 0.00539354794, 0.00372235314, 0.00614703447, -0.00195455737, 0.0213809889, 0.00615669461, -0.0118561452, -0.0107613355, -0.0182640012, -0.00298174657, 0.0119656259, 0.00947976392, -0.0129251946, -0.00474632205, -0.00375133334, 0.0193974525, -0.0204021018, -0.00768298795, -0.0059989132, 0.00707762269, 0.0183412824, -0.0153788561, 0.00694238162, -0.00305419718, -0.0171949528, -0.00401859544, 0.00974380691, -0.00215902925, -0.0186375249, -0.0184056833, -0.00417315681, -0.0234160479, 0.0100142891, 0.00721930386, -0.0114117814, -0.0236736499, 0.0209173057, -0.0117981844, 0.00829479378, -0.00564149, 0.00935096294, 0.00200446788, -0.0016422146, 0.00119946059, 0.0144643681, 0.00139105238, -0.00189337682, 0.0238926113, -0.00534846727, -0.027074, 0.0134597197, -0.0101302098, 0.0161774233, 0.000511984515, 0.0156751, 0.00851375517, 0.00129445153, 0.0094089238, 0.0149666928, -0.00534524722, 0.0169244707, 0.00855239574, -0.0188693684, -0.00285455538, -0.0297273044, 0.0156879798, -0.00609873421, -0.00442109909, -0.00849443581, 0.0168987103, 0.0245108567, 0.00344221061, -0.0264815148, -0.00460464088, 0.00879067834, -0.0380993783, -0.00142405764, -0.000553844904, 0.0178003181, -0.00437279884, -0.00216385932, -0.00612127455, 0.00683290046, 0.0185473654, 0.0140393246, -0.00550624868, 0.0276922453, 0.0036772727, 0.000651653274, -0.0171563122, -0.0129767153, 0.00468514161, -0.0100400494, 0.00182253623, 0.000213729392, 0.00614059437, -0.00567047, 0.00670409948, 0.00967940595, -0.00575741101, 0.00471090199, 0.020801384, -0.005953833, 0.00415383698, -0.00114472013, 0.00888083875, 0.0074189459, -0.0061760149, 0.00833987445, -0.0248843804, 0.000191893574, -0.00127030129, 0.0164350253, 0.00469158171, -0.0116307428, 0.0189852882, 0.0202990603, 0.0231970865, 0.00158666912, -0.00492342375, -0.0170403905, -0.0277695265, -0.0157395, -0.00835275371, 0.00513272546, 0.0134210791, -0.0161259025, -0.0202088989, -1.49681018e-05, 0.00515848584, 0.0259791911, 0.00396063505, -0.0117402244, 0.0266618375, 0.0142325265, 0.0185860042, 0.00737386523, -0.000252772239, -0.00705186278, -0.00481716264, 0.00278049475, 0.00503612449, -0.0113538206, -0.00505222473, 0.0227720421, -0.00927368272, -0.0212779492, -0.000201754912, -0.0106711751, -0.0131570371, -0.000306305214, 0.0245752577, -0.00530982716, -0.000142586898, 0.0214969106, 0.00946688373, 0.000596107799, 0.0200028177, 0.0154303769, -0.00640141685, -0.00971804652, -0.000387409702, 0.0110060573, 0.00942824408, -0.0121588279, 0.00380929373, 0.0150439739, -0.00820463244, 0.00629837578, -0.00409909617, 0.00607941393, 0.00574775087, -0.00798567105, 0.00479784235, -0.00864899717, -0.0352142341, -0.0211362671, 0.0103491722, -0.00922860205, -0.0173623934, -0.020801384, -0.00862323679, -0.0119012259, 0.0334367752, -0.014786371, 0.0166411083, -0.0119527457, 0.0145802898, 0.0112701, -0.000757914211, -0.00014148, 0.00278049475, 0.0028851456, 0.0101108896, -0.00422145752, 0.0131441569, -0.0159069411, 0.00875847787, 0.014850772, -0.00264525344, 0.0115856631, 0.0152500551, 0.0020865784, -0.00603111368, -0.00919640157, -0.0047495421, 0.00953772478, -0.00732234493, 0.00649479777, 0.00580249168, -0.00624041539, 0.00728370482, -0.00557386968, -0.0284650531, -0.0163319856, -0.0141037256, 0.0122876288, -0.0104457727, 0.00258890307, 0.00303809694, 0.00561573, -0.0170275103, 0.0129316347, -0.00171466521, 0.0177359171, -0.0149924532, -0.0268163979, -0.00140715251, -0.0204021018, 0.0167055074, -0.0020930185, -0.0157137401, -0.0221409164, 0.0259147901, -0.0322002843, -0.0183284022, -0.0204793811, 0.00751554687, 0.00385115412, 0.0195520129, -2.29427042e-05, 0.0113473805, -0.00295759621, -0.000607780414, 0.00941536389, -0.0123455897, 0.00658817869, 0.0100980094, 0.00275473436, -0.00103604421, -0.0328958109, -0.0101752905, 0.00774738891, 0.0100980094, 0.0120300269, 0.00566725, -0.00683934055, 0.00263398327, 0.00875847787, -0.0285938531, -0.0231455658, -0.00437601889, -0.0409587622, 0.0309895556, -0.0198224951, -0.0169759914, 0.0129960356, -0.00350017101, 0.0012284409, 0.00432771863, -0.0175942369, 0.00345187052, 0.00956992526, -0.00831411406, -0.00622431515, 0.0173752736, 0.00485902326, 0.0337716602, -0.0342611037, 0.0173752736, -0.0138976434, 0.0176715162, -0.00045643904, 0.00511662522, -0.0162031837, 0.0187019259, -0.00647869753, -0.0297788251, 0.00942824408, -6.05767891e-05, 0.0192815308, -0.0126160719, 0.00464650104, 0.0098597277, 0.0123906704, -0.00551268877, 0.0179548785, -0.0174783152, -0.0235834885, -0.00228461018, -0.0339519829, 0.0186504051, -0.00344221061, -0.0153530966, -0.00313791796, 0.0129831554, -0.0189208873, 0.00337458984, 0.00716778357, 0.00428907806, 0.00874559768, 0.0151083739, 0.0213037096, 0.0219348352, 0.0190754496, 0.00628871564, -0.00188693672, -0.00486868341, 0.0109352171, -0.00853951555, -0.0150053333, 0.00557064964, 0.00712914346, 0.0087069571, 0.00962788519, -0.00809515174, 0.00298335659, -0.0206597038, -0.00226529012, 0.00102396903, 0.0123520298, 0.0122618685, 0.00172271533, -0.0139749236, -0.0243047755, -0.00181770616, 0.0041345167, -0.00993056782, -0.0246783, -0.0087069571, 0.00805651117, -0.00654309802, -0.00501680467, -0.00627905549, -0.00998208858, -0.000961178506, -0.0269967187, 0.0074640261, -0.0235963687, -0.0135885207, 0.0221151561, 0.00343255047, 0.0110318176, -0.0146189295, 0.00397351524, -0.00485580321, 0.00308961747, 0.00785043, 0.0121523878, -0.00600213325, -0.0227076411, 0.00272575417, -0.0304743499, 0.0180965606, -0.0015359536, -0.00832055416, -0.0272543225, 0.0104071321, -0.000832377409, -0.0180965606, -0.00518746581, 0.0138203623, -0.00543862814, -0.016550947, -0.0133824386, 0.010664735, 0.0061695748, -0.00236028084, 0.000854917569, -0.029237859, -0.0129702752, 0.00834631361, -0.0320199654, -0.0188822467, 0.00612771418, -0.000123166086, -0.00167441485, -0.00970516633, -0.011450422, -0.00588621246, 0.00466582133, 0.00458210055, 0.00220249966, 0.0013000865, -0.00579927163, 0.00306063727, -0.00808871165, 0.00902896, 0.0135241197, 0.0074704662, 0.0005627, 0.0326897316, -0.0107742157, -0.00565437041, -0.00287709548, 0.0172851142, -0.0208529048, -0.01465757, 0.0137044415, -0.00155366375, 0.00257280283, 0.00969872624, 0.0157266203, 0.0153659759, -0.0391040258, 0.0215613116, 0.00533880759, -0.0175942369, 0.0135112396, -0.0225273203, -0.00802431162, -0.00211716886, 0.0118303848, 0.0117531046, -0.0176457558, 0.0126031917, 0.0045853206, 0.00571233081, -0.0074704662, -0.00547404867, -0.00169051497, 0.0201831385, -0.022372758, 0.011186379, -0.00695526181, 0.00946044363, -0.0027708346, -0.00732878502, -0.0254124664, -0.0014490129, 0.0008211073, 0.0293151401, 0.0143355671, -0.00615669461, -0.00918352138, 0.00344543066, -0.00460142083, 0.00511662522, -0.0081659928, 0.0165380668, -0.0135112396, 0.0010714645, 0.00745114591, 0.041937653, 0.00146752805, -0.000802994648, 0.00575419096, -0.00657851854, 0.0169115905, -0.00634345645, -0.00318621821, -0.000266658608, -0.0120171467, 0.0149022918, -0.000621868, 0.00201090774, -0.00424077781, 0.00140876253, 0.00977600645, -0.0040829964, -0.0142969266, -0.00868119672, 0.00207208842, -0.0124228699, 0.0120815476, -0.00357423164, -0.00644005695, -0.0214325096, -0.00755418697, -0.00402503554, 0.0227462817, 0.000536134758, 0.0019352372, 0.0242918953, -0.0090032, -0.00495884381, 0.00926724263, -0.0197194554, -0.00210106862, -0.0107806558, 0.0101108896, 0.0110446978, -0.0051037455, -0.0160357431, 0.00939604361, -0.00610839436, -0.00543862814, 0.00526474696, 0.0335140564, -0.00390267465, 0.0055931895, 0.0147734908, 0.00397995533, 0.00780534931, 0.0215999521, 0.0138332425, 0.00748334639, 0.00242629158, -0.0235577282, 0.00539032789, -0.00981464703, 0.00875847787, -0.00575097091, 0.00346475071, -0.0130346753, -0.0124486303, 0.0295727421, -0.00849443581, 0.00929300208, 0.0206468236, -0.00619855523, -0.000838817446, -0.000476966728, 0.00705830287, 0.016744148, 0.0179806389, 0.00777314883, -0.00243273168, -0.00782467, -0.0247813407, 0.0288772155, -0.00807583146, -0.0150697334, 0.00708406279, -0.00198031752, -0.0311441161, -0.00809515174, 0.000862162677, 0.0223212373, 0.01131518, 0.0177359171, 0.00759926764, 0.00919640157, 0.00356135168, -0.0180321597, 0.00729658455, -0.0223083571, -0.0172207132, -0.00545472838, -0.00342611037, -0.000247740943, 0.0100400494, 0.00365473237, 0.014786371, -0.00506510492, -0.0176457558, 0.0109480973, -0.00586045207, -0.000875847763, 0.0108965766, -0.00522288634, -0.00643361732, -0.0345444679, -1.69051509e-05, -0.00022359073, 0.0112958606, 0.00897099916, 0.0388464257, 0.031479, 0.0103298519, 0.0148765324, 0.00255187275, -0.00716778357, -0.0155591778, -0.0118625853, 0.00765078794, -0.0065752985, -0.01805792, -0.0217931531, 0.00472056167, 0.0413194075, 0.00855239574, -0.00710338308, -0.0136786811, -0.0279756077, 0.00318943826, -0.0267906375, 0.0243562963, -0.0120171467, 0.0077602691, 0.00072329893, -0.015894061, 0.0240214132, 0.0156106986, 0.0211362671, 0.00548048876, -0.00429551816, 0.0219348352, 0.0131312767, -0.0153659759, -0.0119012259, 0.014193886, 0.0150697334, 0.00792127, 0.00658495864, -0.0164607856, -0.000365875749, 0.00987904798, 0.00208818843, -0.0152629353, 0.0061180545, -0.01236491, -0.016293345, -0.00691662123, 0.0218189135, 0.00103282416, -0.0112121394, 0.0134468395, -0.00888083875, -0.0117595447, -0.0129573951, -0.00200446788, -0.0106196543, 0.0128414743, 0.00164704467, 0.00198997767, 0.0130282352, -0.00811447203, 0.00702610239, 0.00712270336, 0.00806939136, 0.031272918, -0.00839139428, 0.00647869753, -0.0095119644, 0.0138976434, -0.0113795809, 0.00956992526, 0.000621868, 0.00147718808, -0.00495562376, -0.0182382427, -0.00668477919, 0.004186037, 0.00400893576, -0.00895168, -0.00363541231, -0.00120348565, 0.0063466765, -0.000543379807, -0.0126353921, 0.0074704662, 0.0237638112, -0.0122489883, -0.0132922782, 0.0225788411, -0.00496206386, 0.00193684723, -0.00689730141, -0.000433898851, 0.0215741917, 0.0127126733, 0.0160486232, -0.0244078171, -0.00170661509, 0.000366680761, -0.0177745577, 0.00700034201, -3.5143592e-05, 0.00917708129, 0.00511984527, -0.0121266274, 0.0126225119, 0.0146962106, 0.0175942369, 0.0169373509, -0.0129767153, -0.026687596, -0.00277244463, 0.0155591778, 0.011843265, -0.0131570371, 0.00502002472, -0.00682646036, 0.0110253775, 0.00646259729, 0.00523576653, -0.00154078368, 0.00910624117, -0.00142486265, 0.0205180217, 0.00395419495, -0.00139588234, -0.0115856631, -0.00136287708, 0.0104457727, -0.015572058, -0.0119849462, -0.00434381841, 0.00861679669, -0.010465093, -0.032767009, -0.0155591778, -0.0150310937, -0.00943468418, 0.0104328925, -0.0018418564, -0.00824327301, 0.00570911076, -0.0017855058, 0.0030284368, -0.000477369234, 0.00507476507, -0.0132407574, 0.0206983443, 0.00443075923, -0.010336292, -0.00653021783, 0.0202604197, 0.00862967689, 0.000396667281, -0.0115921032, -0.0239054915, -0.0205824226, 0.0159842223, 0.0101946108, -0.00255026272, -0.00196582754, 0.0187534466, -0.000765561766, -0.00257924292, 0.0234675687, -0.0204278622, -0.0166668687, -0.00406045606, 0.0149409324, 0.0194876138, -0.00208496861, -0.00978244655, -0.0101366499, 0.0227720421, 0.0134983594, 0.0225015599, -0.000486626814, -0.00332306954, 0.0016285294, -0.00790195, 0.000820302288, -0.0105230538, -0.00150455837, 0.00517136604, -0.0133566782, 0.0152886957, -0.00502646482, 0.0053259274, -0.00277566467, -0.00874559768, -0.00303326687, -0.00609551417, 0.0126547124, -0.025386706, 0.0276149642, 0.0290575381, -0.0163963847, 0.0306546725, 0.023029644, 0.0191656109, -0.00467870152, 0.000537342275, -0.0151083739, 0.0049202037, -0.011186379, 0.00467548147, 0.0200800989, 0.0151470145, -0.0110704582, -0.0144901285, -0.0102525707, 0.00802431162, 0.00402503554, 0.0119849462, 0.01805792, 0.0204407405, -0.0234546885, -0.00595061295, -0.00875847787, 0.00653987797, 0.0223212373, -0.0070132222, -0.0232743658, -0.0208915453, -0.0107420152, 0.00928656198, 0.0136014009, 0.00817243289, 0.00366761256, -0.00835275371, -0.0291348193, 0.00606975378, -0.029237859, -0.010207491, 9.02614265e-05, -0.00879067834, -0.00477208244, 0.00117048039, -0.0112056993, -0.0217673928, -0.00828191359, -0.00439533917, -0.0069617019, -0.00770230824, 0.010400692, -0.00758638745, 0.0155462977, 0.0146189295, -0.0135112396, 0.00976956636, -0.012300509, -0.0184443239, 0.00601501344, -0.0116693834, 0.00326349889, -0.00433093822, -0.00771518843, 0.00464328099, 0.0216385927, -0.00503290445, 0.000607377908, 0.00490410347, 0.0183670428, 0.0157266203, -0.00189176679, 0.0100336093, -0.0258246288, 0.0282847304, 0.00219283951, -0.00571233081, -0.00964720547, 0.00873271748, -0.00322485855, -0.00129606156, 0.00570267066, -0.00210911874, -0.0144772483, -0.0353687927, -0.0202346593, -0.00712914346, -0.0143098067, 0.0145545295, 0.0143098067, 0.0137044415, 0.0190754496, -0.00778602902, 0.00533880759, 0.00735454541, 0.00133711682, -0.0193330515, -0.00871983729, 0.00297369645, -0.0171176717, 0.0373265706, -0.0031926583, 0.00134758197, 0.0168600697, -0.00526152691, 0.00106743944, -0.00976312626, -0.0140522048, 9.7003358e-05, -0.0129445149, 0.0200028177, 0.0246138982, -0.00786331, 0.00756062707, -1.68422594e-05, 0.0229266044, -0.0148378918, 0.00377709349, 0.00525186677, -0.00787619, 0.00666545937, -0.0170017518, 0.0168085489, -0.00169212499, 0.00460142083, -0.0309895556, 0.0110704582, 0.0223469976, -0.000563505, 0.00210428867, -0.000411157409, 0.00257924292, -0.014915172, -0.0178003181, 0.00224435981, -0.00782467, 0.000591277727, 0.0312213972, -0.00976312626, 0.0287999362, 0.00617923494, -0.00814023241, 0.0263784733, -0.00232969061, -0.0162031837, 0.0307577122, -0.00760570727, 0.0262883138, -0.0049781641, -0.00415705703, 0.00228783023, -0.00295437616, -0.0256571881, -0.0148250116, -0.0118497051, 0.0074704662, -0.0026694038, 0.00919640157, -0.0133695584, -0.0207885038, -0.00548370881, -0.00773450872, 0.00756062707, 0.0120171467, 0.0191269703, 0.00252772239, 0.0237122905, 0.00469480176, -0.0107806558, -0.0285165738, -0.0100593697, -0.0239956528, 0.00473666191, 0.00581537141, 0.00685222074, -0.0123455897, 0.00299140648, 0.0142582869, -0.0155462977, -0.0294697024, 0.0159327015, 0.00680714054, 0.0353687927, 0.00231359061, -0.00690374104, -0.0153788561, -0.00756062707, -0.0104715331, -0.0176843964, 0.00780534931, 0.0057767313, -0.00873915758, 0.0215355512, -0.0138074821, 0.00693594152, 0.0205953028, 0.00920928176, 0.0244464576, 0.00332950964, -0.0230554044, -0.00488478318, 0.0070711826, 0.00402503554, 0.013936284, 0.0115083819, 0.013871883, 0.00955704506, 0.000127090505, 0.0222310778, 0.000735776557, -0.0243047755, 0.0168987103, 0.00765078794, -0.0100851292, 0.0106132142, -0.0246138982, 0.0152886957, 0.00806295127, 0.0041280766, -0.0131570371, 0.00890659913, 0.0117595447, -0.014129485, 0.0268163979, -0.00532270735, -0.0187019259, 0.00359355193, -0.00444363942, 0.0125065912, 0.00124776107, -0.00509086531, -0.0181996021, -0.0131119564, -0.0187148061, -0.0110382577, 0.00338747, -0.00228783023, -0.00237316103, 0.013086196, -0.000970838591, -0.0244335774, 0.00455956068, -0.00790195, 0.0115083819, 0.0198611356, 0.0121910283, 0.0157266203, 0.0229266044, 0.00129847648, 0.00913200062, 0.010922337, 0.00147799309, 0.013214997, -0.000365272, -0.00353237125, 0.000670973444, 0.00882287789, 0.0188951269, -0.0197838563, 0.00308800745, -0.0161130223, 0.00817887299, 0.0192815308, -0.00401859544, 0.0332306959, 0.0252063833, 0.0111541785, -0.0155591778, -0.00516492594, -0.0181352012, -0.00722574396, -0.00326993898, -6.621184e-05, -0.0245881379, -0.0192557704, -0.00597959291, -0.0115019418, 0.0118175047, -0.0118561452, 0.0228235628, 0.00393487513, 0.00909980107, -0.0197967365, 0.00576063106, 0.0259019099, 0.0121781481, 0.00577995135, -0.000655678334, 0.014786371, 0.0059924731, -0.0130282352, 0.00761214737, -0.00190464687, -0.0138847632, -0.009157761, -0.0109158969, 0.00329247932, 0.00059892534, -0.0368886478, -0.000384189654, 0.0151598947, 0.000734166533, -0.00481394259, 0.0167570282, -0.00332306954, -0.0223598778, 0.0110124974, 0.00489444332, -0.0049266438, -0.0109609775, -0.016550947, -0.0193201713, 0.0168343093, 0.0226432402, 0.0220636353, 0.0035130512, 0.00175330555, -0.00354525144, -0.00404113578, 0.000798567082, -0.018779207, 0.0207112245, -0.00292217592, 0.0099563282, -0.000811044709, -0.00271931407, 9.14689372e-05, 0.0171305519, -0.0314274803, 0.0123391496, -0.00814667251, 0.00132101669, -0.0342868641, -0.00237638108, -0.0051488257, -0.00864255708, 0.0129380748, -0.000260621076, 0.0145158889, -0.00589587213, -0.00883575808, -0.0200543385, -0.00515848584, -0.000159793912, -0.00863611698, 0.00799211115, -0.0112829804, 0.00337137, 0.0170403905, 0.00899031945, 0.0242790151, -0.00572199095, -0.015894061, -0.003712693, 0.0289544966, -0.0147734908, -0.00507476507, 0.0169888716, 0.000413371163, 0.000870212738, -0.0160228629, -0.00744470628, -0.000170560888, 0.0145416493, -0.0114697414, 0.00398961548, 0.00336815, -0.0102783311, 0.00725150434, 0.00464328099, -0.0119591858, -0.0244335774, -0.012036467, 0.0230038837, 0.0115921032, 0.00385115412, -0.00553200906, -0.00679426035, -0.0118175047, -0.0219734758, 0.00123407599, 0.00186117657, 0.000718871364, 0.021986356, 0.0238668527, -0.00225563, -0.00935740303, -0.0160486232, -0.00438245898, -0.00987904798, -0.00438889908, 0.000888727896, -0.00675562, -0.0105552534, 0.00447584, -0.0048075025, 0.006214655, -0.0215484314, 0.00614703447, 0.00686510094, 0.0134983594, -0.0143098067, -0.00528084673, -0.0146318097, -0.00602145353, 0.0377387367, 0.0138590029, 0.0265330356, -0.0274861641, 0.0279498473, 0.0164607856, 0.0195391327, 0.018379923, -0.0252321437, -0.0130990762, -0.0205180217, 0.00717422366, 0.00515204575, -0.00377709349, -0.0182124823, -0.0134468395, 0.00380285364, -0.0063402364, 0.00385115412, -0.00843647495, -0.00309766759, -0.0107033746, -0.00829479378, -0.0124421902, -0.0136271613, -0.00356457173, -0.0132278772, -0.02263036, 0.00858459622, -0.0048075025, 0.00733522512, -0.00434703846, 0.0102010509, 0.000926563225, 6.84759216e-05, -0.0149924532, -0.00229427032, 0.0178518388, -0.00511984527, 0.0111412993, -0.0272285622, -0.0122747486, -0.0131055163, 0.00167441485, -0.0102332504, 0.00390911475, 0.00346475071, -0.00206081825, -0.000209905615, -0.0192944109, -5.13443629e-05, 0.0205309018, 0.00428907806, -0.00329408934, -0.0019851476, 0.00133067684, -0.0112056993, 0.0201187395, -0.023094045, -0.0190496892, -0.0140135642, -0.00850731507, 0.0119527457, 0.00796635076, -0.00547082862, -0.00660105841, -0.0033069693, 0.0023779911, 0.0106260944, 0.00270643411, 0.0148378918, -0.013021796, -0.0231069252, -0.00401215581, -0.00603433372, -0.026301194, -0.0104972934, -0.00160920923, 0.0109996172, -0.0297273044, -0.00810803194, 0.00893235952, -0.02825897, -0.00536456751, -0.02132947, -0.0158039, -0.0203763414, -0.0133953188, 0.0127835134, -0.00927368272, -0.0172593538, 0.00242790161, 0.00194650725, 0.0215097908, -0.0112701, 0.0110318176, -0.00558352936, -0.000496286899, 0.00896456, -0.00456600031, -0.0190883297, 0.0255026259, -0.00199641776, 0.00926724263, -0.00802431162, 0.0368371271, 0.00636277627, -0.0101237698, -0.0213681106, 0.00835275371, 0.00725794444, 0.00371913309, 0.00168407499, -0.000919318176, 0.0117853042, -0.0116693834, -0.018972408, 0.00785687, 0.0117015839, -0.0264815148, -0.0113538206, 0.000677011034, 0.0195391327, -0.0215097908, 0.0144514879, 0.0200028177, -0.02813017, 0.0157395, 0.0309637953, -0.00714846328, -0.00259051309, 0.00777314883, 0.0154174967, 0.0481973886, -0.00324095879, 0.00276761455, -0.00744470628, 0.00548370881, 0.0003000664, -0.0265845563, 0.00772806862, 0.00314435782, -0.0395419523, 0.0189466476, -0.0102139311, 0.00922216196, -0.0103749316, -0.00745758601, -0.0149409324, 0.000990158762, -0.0113087408, 0.00980820693, 0.0094089238, 0.00624363543, 0.00553844916, 0.00113103504, -0.0127641931, -0.00729658455, -0.0078182295, -0.00274990429, -0.000672986, 0.00593773276, 0.0156751, 0.0010070639, 0.000463684119, 0.0147477305, -0.000718871364, 0.00956992526, -0.000641188177, 0.00147960312, 0.010793536, -0.00602467358, -0.0137817226, 0.00911268126, -0.0137302019, 0.00618889509, 0.00525508681, 0.0049781641, -0.00935096294, -0.037558414, 0.0100593697, 0.0221666768, 0.0331791751, -0.00353881135, 0.014786371, 0.00192396704, -0.00913844071, 0.0176843964, 0.0218317937, 0.0195520129, 0.000848477532, -0.0212006681, -0.00806939136, -0.0220378749, -0.0303197894, 0.0102976514, 0.0272800829, -0.00608585402, -0.00631447602, -0.0183928031, 0.00161081925, 0.00242468156, -0.0144128483, 0.00213809893]
28 Dec, 2024
Error Control in Data Link Layer 28 Dec, 2024 Data-link layer uses the techniques of error control simply to ensure and confirm that all the data frames or packets, i.e. bit streams of data, are transmitted or transferred from sender to receiver with certain accuracy. Using or providing error control at this data link layer is an optimization, it was never a requirement. Error control is basically process in data link layer of detecting or identifying and re-transmitting data frames that might be lost or corrupted during transmission. In both of these cases, receiver or destination does not receive correct data frame and sender or source does not even know anything about any such loss regarding data frames. Therefore, in such type of cases, both sender and receiver are provided with some essential protocols that are required to detect or identify such types of errors as loss of data frames. The Data-link layer follows a technique known as re-transmission of frames to detect or identify transit errors and also to take necessary actions that are required to reduce or remove such errors. Each and every time an error is detected during transmission, particular data frames are retransmitted and this process is known as ARQ (Automatic Repeat Request). Ways of doing Error Control : There are basically two ways of doing Error control as given below : Ways of Error Control Error Detection : Error detection, as the name suggests, simply means detection or identification of errors. These errors may occur due to noise or any other impairments during transmission from transmitter to the receiver, in communication system. It is a class of techniques for detecting garbled i.e. unclear and distorted data or messages. Error Correction : Error correction, as the name suggests, simply means correction or solving or fixing of errors. It simply means reconstruction and rehabilitation of original data that is error-free. But error correction method is very costly and very hard. Various Techniques for Error Control : There are various techniques of error control as given below :1. Stop-and-Wait ARQ : Stop-and-Wait ARQ is also known as alternating bit protocol. It is one of the simplest flow and error control techniques or mechanisms. This mechanism is generally required in telecommunications to transmit data or information between two connected devices. Receiver simply indicates its readiness to receive data for each frame. In these, sender sends information or data packets to receiver. Sender then stops and waits for ACK (Acknowledgment) from receiver. Further, if ACK does not arrive within given time period i.e., time-out, sender then again resends frame and waits for ACK. But, if sender receives ACK, then it will transmit the next data packet to receiver and then again wait for ACK from receiver. This process to stop and wait continues until sender has no data frame or packet to send. 2. Sliding Window ARQ : This technique is generally used for continuous transmission error control. It is further categorized into two categories as given below : Go-Back-N ARQ : Go-Back-N ARQ is form of ARQ protocol in which transmission process continues to send or transmit total number of frames that are specified by window size even without receiving an ACK (Acknowledgement) packet from the receiver. It uses sliding window flow control protocol. If no errors occur, then operation is identical to sliding window. Selective Repeat ARQ : Selective Repeat ARQ is also form of ARQ protocol in which only suspected or damaged or lost data frames are only retransmitted. This technique is similar to Go-Back-N ARQ though much more efficient than the Go-Back-N ARQ technique due to reason that it reduces number of retransmission. In this, the sender only retransmits frames for which NAK is received. But this technique is used less because of more complexity between sender and receiver and each frame must be needed to be acknowledged individually. The main difference between Go Back ARQ and Selective Repeat ARQ is that in Go Back ARQ, the sender has to retransmit the whole window of frame again if any of the frame is lost but in Selective Repeat ARQ only the data frame that is lost is retransmitted. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System/Introduction of System Call/How much Stack size required for BIOS interrupt call?/Difference between Interrupt and Polling/Difference between Difference Engine and Analytical Engine/Difference Between Store‑and‑Forward Switching and Cut‑Through Switching/Difference between Message and Packet Switching/How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?/Types of Node Devices in a Computer Network: End devices and Intermediary Devices/Types of Errors in Computer Network/Difference between Storage Area Network (SAN) and Network Attached Storage (NAS)/Difference Between Network Security and Network Administration/Internet Administration/Internet Telephony Protocol | H.323/IPsec (Internet Protocol Security) Tunnel and Transport Modes/Real-time Transport Control Protocol (RTCP)/Cisco Discovery Protocol (CDP) and Link Layer Discovery Protocol (LLDP) in Data Link Layer/Data Link Layer Communication Protocols in IoT/Network Layer Protocols/Which Layer Called Error Detection Layer?/Error Control in Data Link Layer
https://www.geeksforgeeks.org/error-control-in-data-link-layer?ref=asr10
PHP
Error Control in Data Link Layer
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, Difference between Difference Engine and Analytical Engine, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Difference between Interrupt and Polling, Types of Node Devices in a Computer Network: End devices and Intermediary Devices, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, Types of Errors in Computer Network, jQWidgets jqxToolBar close Event, How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, Difference between Message and Packet Switching, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, Difference Between Network Security and Network Administration, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, Introduction of System Call, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Data Link Layer Communication Protocols in IoT, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Difference Between Store‑and‑Forward Switching and Cut‑Through Switching, Longest Common Prefix using Binary Search, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, IPsec (Internet Protocol Security) Tunnel and Transport Modes, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, Internet Telephony Protocol | H.323, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, Difference between Storage Area Network (SAN) and Network Attached Storage (NAS), jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, Error Control in Data Link Layer, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, Real-time Transport Control Protocol (RTCP), unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, Internet Administration, Which Layer Called Error Detection Layer?, Cisco Discovery Protocol (CDP) and Link Layer Discovery Protocol (LLDP) in Data Link Layer, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, Network Layer Protocols, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How much Stack size required for BIOS interrupt call?, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0337205641, 0.0359952413, -0.00967506599, 0.0109584145, 0.0296937693, 0.0517642908, 0.0113349659, 0.00571359135, -0.0239302274, 0.00353689352, 0.0537315831, 0.00403063698, 0.0512417294, -0.012018906, 0.00280684489, -0.0174750593, 0.0070046247, 0.0120342756, -0.014439594, -0.0264508165, 0.0140784122, -0.00114694482, -0.0139631415, -0.0155000854, -0.0286486465, 0.0148929926, 0.0134713193, 0.00550610386, -0.0434033126, 0.00931388419, 0.0523483306, 0.00394610502, 0.0201647133, -0.0313536674, 0.00112965424, -0.0456472524, -0.000600849278, -0.00868373644, -0.0110660009, 0.0184433348, 0.00575969974, 0.0029855147, 0.0228851046, 0.0242529847, -0.0242837239, 0.0150082633, -0.0171215627, -0.0184125956, 0.0014994815, -0.0282951482, -0.0369481482, -0.0431574024, 0.00177613157, 0.0126336841, 0.013194669, 0.0525635034, 0.0512417294, 0.0207948592, 0.00247448077, -0.0425426252, 0.0404831208, 0.000296101964, -0.00698157074, -0.00412285374, 0.000917844067, -0.0223471746, -0.0246833302, 0.0223471746, 0.0106356563, -0.00674334401, -0.0567439944, -0.0100746714, -0.0275727846, -0.012018906, -0.0033947262, 0.01456255, -0.00506039, 0.0532397591, 0.0419585854, 0.0193655, -0.00177421037, 0.0319377072, -0.0241761375, -0.00239379122, -0.0126490537, -0.00244182069, -0.00187315117, -0.0505962148, 0.0374092311, 0.0335668698, -0.0140092494, 0.0337513, -0.0134943733, -0.0440180935, -0.010627972, -0.0122725023, 0.0148007758, -0.00328329788, -0.0209178161, 0.0067894524, 0.0068586152, 0.00779999373, -0.0176594928, -0.0106510259, 0.0448480435, -0.0221627411, -0.0648590624, 0.0266967267, 0.0160303321, 0.0821957961, 0.00196248596, -0.00922935177, 0.0145087568, 0.0053869905, -0.00868373644, -0.0600330532, -0.00536777871, -0.0285103209, -0.0056367442, 0.0148391994, 0.0134482644, 0.0204874706, -0.0276650023, 0.0592645817, -0.047983408, 0.041436024, 0.0309386943, 0.00499507, 0.0294632278, -0.0117883645, -0.0319684483, -0.0156153562, 0.011165902, -0.00374630233, -0.0032410319, 0.00580965029, -0.0372862741, -0.0129718119, 0.0232386012, -0.0287869722, 0.027388351, -0.00107586116, -0.0176441241, 0.00990560744, 0.0202415604, 0.00793063361, 0.0101361489, 0.0350423343, -0.0517642908, 0.0164299365, -0.00414975034, -0.0243452024, 0.00662807329, -0.00998245459, 0.0224854983, -0.0189197864, 0.00367906108, 0.00445713941, 0.0057558571, -0.0350423343, 0.0079844268, -0.0201800819, 0.0117653105, 0.0220244154, 0.0160149615, 0.022623824, 0.0265122931, -0.00297398772, -0.0444791764, 0.0429114923, -0.0193962399, 0.00823033787, 0.00373285403, 0.0119266901, -0.0385465696, 0.0077692545, 0.0122494483, 0.0228851046, -0.00922935177, -0.00041017207, -0.0351960286, -0.01910422, -0.0220858939, 0.00813812111, 0.050842125, 0.0179822519, 0.0125184134, -0.0046031489, 0.00104896468, -0.0279723909, -0.0173367336, 0.0148699386, 0.0362718925, 0.0153002832, -0.00793831889, -0.0228697341, -0.035349723, -0.0087452149, 0.0123339798, -0.0218553506, -0.0138171315, -0.00156576221, -0.000291058881, 0.0184433348, 0.0081996, -0.0083456086, 0.0236382075, 0.017321365, 0.0162762422, -0.0017261809, -0.0325217471, -0.00585575867, 0.00261472701, 0.00125933392, 0.0387002639, -0.0142859, -0.0388539582, -0.0137863923, -0.0298628323, 0.00422659749, 0.0254671704, 0.0282797795, 0.00856846571, 4.02547375e-05, -0.0656582713, -0.0309694335, -0.0243605711, -0.077462, -0.0556373931, -0.0324295312, -0.0331365243, 0.0386080481, 0.000525923213, -0.0207487512, -0.0398068652, 0.0323065743, -0.0172137786, 0.0164299365, -0.019718999, -0.0145318108, -0.0283258874, 0.0262510125, -0.03571859, -0.0477989763, -0.0183050092, 0.0253134761, -0.00552915782, 0.0825646594, 0.00962127279, -0.0309233237, -0.0188583098, 0.0215940718, 0.0334439129, 0.0132484622, -0.0139938798, 0.0123109259, -0.0168141741, -0.034181647, 0.0130409747, -0.0175826456, 0.022623824, -0.0180591, -0.00267428346, 0.0120573295, -0.0193808712, -0.0248677619, 0.00246295356, 0.0200878661, 0.0238994882, -0.0152003812, 0.032491006, -0.0165990014, -0.0166758485, -0.0378088355, 0.0151773272, 0.00775004271, -0.0250983052, 0.00292595825, 0.0362718925, 0.0280031301, -0.0296783987, -0.0455857739, -0.000737733382, -0.00976728275, -0.00532167032, -0.0338742584, -0.0294324886, 0.0261434261, -0.0531168021, -0.0485059693, -0.0307696294, -0.00590955187, -0.0291712079, -0.00811506715, 0.021916829, -0.010066987, -0.005997926, 0.0107125035, -0.0258206688, -0.0139785111, -0.0244527869, -0.015638411, -0.0140015651, 0.00842245575, -0.0435570069, -0.0171369314, 0.019350132, 0.00829950068, 0.0141322054, 0.0139170326, 0.0425733626, 0.00434955303, -0.0337820426, -0.0547767021, 0.00866068248, -0.00726206275, 0.0175365377, 0.00755408267, -0.0457087308, -0.00940610096, 0.0458316877, 0.0359645039, -0.0196575206, 0.0641213283, 0.0368866697, -0.0291404687, 0.0159688536, 0.0260051023, -0.0225008689, -0.00636295043, -0.0530860648, 0.0347349457, -0.0225316063, -0.0135865901, 0.00937536173, -0.0323680528, -0.0158920065, 0.0227621496, -0.0304161329, 0.0124799898, -0.00949831773, -0.0360567197, -0.0438336581, -0.0233154483, -0.0252827369, 0.00935230777, 0.0363026299, -0.00511418283, -0.00556758139, -0.0123186102, 0.00156191993, 0.0330443084, 0.0257899296, 0.0139477719, 0.0410671569, -0.0190120041, -0.0129564423, -0.0153848147, -0.00370019395, -0.00964432675, 0.0284949522, 0.00600176863, -0.0331365243, 0.0424811468, -0.014585604, -0.00814580638, -0.00107970356, -0.0066434429, -0.0181513149, -0.0260973182, -0.0421430208, 0.0024053182, -0.010458908, 0.0160149615, -0.0133176241, 0.0136634372, 0.0311692357, 0.00713142287, -0.00231694384, 0.0136173284, 0.0238533802, 0.00994403102, 0.000965873594, 0.00580580812, -0.0339664742, 0.0172906257, 0.00234768284, 0.00139189535, -0.0261434261, 0.0460468568, -0.00762708718, 0.0280646067, -0.00755408267, 0.0218553506, 0.0221627411, -0.00168679666, -0.0201647133, 0.0133253094, 0.0461083353, -0.0211637262, 0.00412285374, 0.0213635284, -0.00963664241, -0.00795368757, -0.0363333672, 0.0239763353, -0.00634373864, -0.0222703256, 0.0124799898, 0.0271731801, 0.0192425456, 0.0110198921, 0.0189658962, -0.0170908235, 0.0159381144, 0.0139861954, -0.040729031, 0.0551148318, -0.0212559439, 0.0231924932, 0.0262510125, 0.00823033787, -0.0136634372, 0.0210868791, 0.0705765, 0.0138478708, -0.00239955471, 0.00851467252, 0.000632548763, -0.0271424409, 0.0234691426, 0.00569053739, -0.0204567313, -0.00787684, -0.00652817218, -0.0602174886, 0.0411593765, -0.0252827369, -0.0354112, 0.00595181761, 0.0177517086, 0.0457087308, 0.00872216, -0.049305182, -0.0524405465, -0.00960590318, -0.0374707095, -0.0257438216, -0.0128181176, -0.0233615562, -0.0211944655, 0.00112389075, 0.000525442942, 0.00194615603, 0.0155461943, -0.00711989542, 0.032859873, -0.0592031032, 0.0591723658, 0.0123724034, 0.0138171315, 0.0127412705, -0.0288023409, -0.000175667956, 0.0256362353, 0.0187046155, -0.0201954506, 0.00642442796, -0.00839171745, -0.00317571172, 0.0231463853, -0.0523175932, 0.0284949522, -0.00242068758, 0.0307235215, 0.0134175261, -0.000664728519, -0.0109430449, -0.00984413, -0.0574817248, 0.0376244038, 0.0241453983, -0.0172445178, -0.0162916128, 0.0191349592, -0.00497201551, 0.0593260601, 0.00658580754, 0.00716216164, -0.0518257692, 0.00152541744, -0.00795368757, -0.0363948457, -0.0218553506, -0.0213942677, -0.00934462249, -0.0403601639, 0.000131480803, -0.025252, 0.0180283599, -0.00989023782, 0.0293556415, -0.0026031998, 0.0708224, -0.0327369198, -0.0141475741, 0.0220551547, 0.0269119, 0.00788452569, -0.0320606641, -0.000916403194, 0.026020471, -0.0201032348, 0.0406675525, -0.000463004544, 0.0289406665, -0.0179976206, 0.0190120041, -0.00806895923, 0.0204106234, 0.0338127799, 0.0229312126, 0.0160303321, 0.00382891321, -0.0146547658, -0.0143704312, 0.0102975285, 0.0143473772, -0.0327984, -0.0192118064, -0.00415359251, 0.017029345, 0.0243605711, -0.0323987901, -0.0378395729, -0.00937536173, 0.0272192881, 0.0272961352, -0.0241607688, 0.00450324733, -0.0167526957, 0.0443869568, -0.0294171181, 0.00665497, -0.012510729, 0.0155077707, 0.00606324617, 0.00950600207, 0.0204413626, 0.0109584145, 0.022623824, -0.00285871676, -0.00126797927, 0.0193655, -0.028879188, -0.00100958045, -0.00147354556, 0.0120035373, -0.0164760463, 0.00731201377, -0.0213635284, 0.00521408441, 0.0068240338, 0.0368866697, 0.0162762422, -0.00436108, 0.0240839217, 0.019350132, -0.0239148568, -0.0190581121, -0.0197804756, -0.0256516039, 0.0140937818, 0.00614393596, 0.0186123978, 0.0120035373, 0.0214403756, -0.0279877596, 0.0126874773, 0.0241146591, 0.00694698934, -0.0281568244, 0.0265122931, 0.0249599796, 0.0101899421, -0.0271117017, 0.000386157306, 0.0193962399, 0.00610166974, -0.00252443133, -0.0316917971, 0.0100439331, -0.00905260351, 0.0202415604, 0.0207794905, 0.0205028411, 4.03147751e-05, 0.0212713126, 0.000494704, -0.0181666836, 0.00507191708, 0.0407905094, 0.0233615562, 0.00545231067, 0.0239455961, 0.00610551238, -0.0203184076, 0.0235921, -0.000296582264, 0.01607644, -0.00485290261, 0.00981339067, 0.0373170152, 0.0207026433, -0.0258206688, -0.0273422431, 0.017152302, 0.0157997906, -0.00699694, -0.00611319672, 0.00996708497, 0.00446098158, 0.0128565412, -0.00859152, 0.00122859504, -0.00502965087, -0.0460468568, -0.0293710101, -0.0192732848, -0.00498354249, -0.0192425456, -0.000723324541, 0.0114041287, -0.0118575273, -0.00259743631, -0.0019961067, -0.00356763252, -0.0245142654, 0.0183203798, -0.0444484353, -0.0153463911, 0.0124569358, -0.022623824, 0.0918478072, -0.00246103248, 0.0308925845, 0.0179976206, 0.0578198545, 0.00632068422, 0.00295285461, -0.0043879766, 0.00894501712, -0.00398452859, 0.0257284511, -0.0165836308, -0.0356571153, 0.0368866697, -0.0328291357, -0.0170754548, -0.0304622408, 0.00332748494, -0.00680482201, 0.0132100387, -0.00540236, 0.0084685646, -0.0138939787, 0.0236689467, -0.0218707211, -0.00230733794, 0.0423581898, -0.0198265854, -0.0355341583, 0.0282951482, 0.0242683552, -0.0420508, -0.0217631347, -0.00152733864, 0.038577307, 0.00428423285, -0.025021458, -0.0426041037, 0.00510265585, 0.032491006, 0.013901663, -0.0278955437, 0.00628994545, -0.0382084399, 0.00185105763, -0.0300318971, -0.0217170268, -0.0354112, 0.00371364225, -0.0157383122, -0.0217170268, -0.0169371292, 0.0078576291, -0.00185874233, -0.0010086199, -0.0181359462, -0.0169524979, 0.0127028469, 0.0145010715, -0.00878363848, -0.00814580638, -0.0322143584, 0.0392228253, 0.00120746205, -0.0144011704, -0.0367329754, -0.000794408203, 0.0101438342, -0.0267735738, -0.00307773147, 0.022331804, 0.0097749671, -0.0105434395, -0.0137787079, 0.0146470815, -0.00372516923, -0.00872984529, -0.00624383707, 0.0290328823, 0.00277994853, -0.0456472524, -0.0279877596, 0.0145164412, -0.000206166704, 0.0143704312, -0.0022132, 0.00511802547, -0.00207871757, -0.00572896097, 0.00542541407, -0.00518718781, -0.00957516488, 0.0041997009, 0.00901418, 0.0279109124, 0.0162147656, -0.0263432302, 0.0409134626, -0.0135789048, -0.0074349693, 0.00112196954, -0.0115424534, -0.0131101366, 0.0152234361, 0.0308772158, -0.0116577242, -0.0207026433, 0.00515644904, -0.0143934861, 0.0233154483, -0.0434033126, -0.0159688536, 0.00320837181, 0.039407257, 0.0129410727, 0.0260358397, 0.0105127, -0.0105588092, 0.0441410467, -0.00593260583, -0.00129199401, 0.0187814627, -0.0218246132, -0.0326139629, 0.00826876145, 0.0221320018, -0.0246833302, 0.0156998876, 0.0360259786, -0.00848393422, -0.0354112, -0.0177670792, -0.00507191708, -0.00295669702, -0.0247448068, -0.00555605441, 0.0117729949, -0.0475223251, 0.0119804824, -0.0316917971, -0.00712758023, 0.00711221108, -0.0174750593, 0.0208102297, 0.000176748625, 0.00115174777, 0.0337513, 0.0275727846, 0.0188429393, 0.00487595657, 0.0192271769, 0.00741575751, -0.00289906166, -0.0134943733, 0.0400527753, -0.0143704312, -0.0120726991, 0.0392843038, -0.0035964502, -0.0198112149, -0.0127259009, -0.0225623455, -0.0268965289, -0.0127489548, -0.0661500916, -0.0190273728, 0.00287600746, -0.0126721077, 0.0142628457, 0.00776157, -0.0136788068, 0.00594029063, 0.0137479687, 0.0100439331, -0.0305237193, 0.00235152524, -0.00947526284, -0.0271270704, 0.00107297942, 0.00394610502, -0.013240777, -0.0221320018, -0.0114502367, -0.0175057985, -0.00220935768, 0.039899081, 0.0129333884, -0.00483369082, -0.0179515127, -0.00517181819, -0.0211022478, -0.00614393596, 0.00644364, -0.0135865901, 0.0193808712, 0.00156576221, 0.00192214129, -0.00889122393, 0.0222242177, 0.00720058521, 0.018105207, -0.0222703256, 0.00610551238, 0.0105972327, -0.0221320018, 0.0269580074, -0.0179207735, 0.0129410727, 0.0431574024, -0.0114425523, 0.0111966413, -0.00241492409, 0.0356263742, 0.0128181176, 0.0188429393, 0.016245503, -0.020963924, -0.0148161454, 0.0221012626, -0.0107893506, 0.0258206688, 0.0117883645, 0.0280953459, -0.00592876365, -0.0163838286, 0.00197113142, -0.00681634899, -0.0048721144, -0.0292326845, -0.0149698397, 0.0113964435, -0.00899112597, -0.016245503, 0.00619772868, 0.0152080664, 0.00656659575, -0.0241915062, 0.0175826456, 0.0208255984, -0.0252212603, 0.00402679481, 0.0217477661, -0.00884511601, -0.0213327911, -0.0188583098, 0.000146249877, -0.0318762287, -0.024821654, 0.0109430449, -0.0341509096, -0.00135443243, -0.00739270309, 0.0190734826, -0.0234691426, 0.000125116887, -0.019350132, 0.0179976206, -0.022746779, -0.00648974814, -0.0184279643, 0.0148622533, 0.0219936762, -0.0600023158, -0.0052063996, 0.0137249148, -0.00132369343, -0.00738501875, 0.0114271827, 0.00222856971, 0.0102898441, 0.00183184573, 0.0333824344, 0.0318762287, -0.0351960286, -0.0255901273, 0.00648206379, -0.000698349206, -0.016322352, -0.0162608735, 0.0181820542, 0.0314151458, 0.00876826886, -0.0109276753, -0.0139631415, -0.0189505257, -0.0118575273, 0.0146778207, -0.0268811602, -0.011972798, -0.0147469826, -0.0117653105, -0.0226853, 0.00919861346, -0.035011597, 0.0225316063, -0.0406982899, -0.00695083151, -0.0153463911, 0.0241300296, 0.0156307258, -0.0133483633, 0.0101207802, 0.00676639844, 0.012626, 0.0155999875, 0.00192022009, -0.0295861829, -0.0221781097, -0.0154078687, 0.00673950184, -0.0271731801, 0.0199956484, -0.0426963195, -0.0295861829, -0.0464157239, -0.00701615168, 0.0237150546, 0.00667802384, -0.0213481598, 0.00694698934, -0.00162147649, -0.00620157132, 0.00585960085, 0.0210868791, -0.0309386943, -0.0185048115, -0.0103897452, 0.0104742767, -0.0157690514, -0.000708435371, -0.00438413443, 0.00446098158, -0.0109660989, -0.0338435173, -0.00648590596, 0.00923703704, 0.0199956484, 0.0135558508, 0.00195480138, 0.018689245, -0.00846087933, 0.0189505257, -0.0327369198, 0.0242529847, 0.0227928869, 0.00091304112, -0.0208717063, -0.0413745455, 0.0121111227, -0.00173962908, -0.00355610554, -0.0222856961, 0.0233154483, 0.000272327365, -0.000519679394, -0.0239609648, -0.0153233372, 0.00515260641, -0.0216555484, -0.00672029, 0.0563751273, -0.00741575751, 0.0185048115, 0.03298283, 0.0201032348, 0.0193193927, -0.0103282677, -0.0293710101, -0.0110122077, 0.00128719106, -0.0114809759, -0.0155077707, 0.00577506935, -0.0372862741, -0.0183050092, -0.00385388848, 0.00809201319, -0.0109123066, -0.0140937818, -0.00172137783, 0.0063936892, 0.031661056, 0.0408212468, 0.0161379185, 0.00112293009, -0.0117576262, 0.0103436364, 0.0115347691, 0.00258014561, -0.012802748, 0.0108431438, -0.0222703256, -0.00252827373, -0.011972798, -0.0558833033, 0.0113733895, 0.0327984, 0.0113964435, 0.00165509712, 0.00136692007, 0.00555605441, 0.000439470081, -0.00585960085, -0.0164299365, -0.00283758389, 0.0180283599, 0.00434571085, 0.009137135, -0.0183664877, 0.000327081, 0.000856846571, -0.0049989121, 0.0262202732, -0.0217016563, 0.0293095317, 0.0473686308, 0.0083456086, -0.0123416651, -0.020963924, 0.0197804756, -0.0214711148, -0.0315381028, 0.0349501185, 0.0165067837, 0.00995940063, 0.000376791548, -0.00575969974, 0.000324919674, -0.00421891268, -0.000300184474, -0.00745418109, -0.011972798, 0.0396839082, -0.0418356322, -0.00779999373, -0.0120035373, -0.0141552594, 0.00166470301, -0.00144664908, 0.0180129893, 0.010896937, -0.0249907188, -9.16163044e-05, 0.0280184988, -0.00353305135, -0.0176287536, -0.0195653047, -0.0101284645, -0.00476452801, 0.000844839204, 0.00225354498, 0.00796905719, -0.0231002774, -0.00985181425, 0.0817654505, -0.000789605256, 0.00274344604, -0.0312307123, -0.0116807781, 5.49637771e-05, -0.0097211739, 0.0133483633, 0.0383621342, 0.00939073134, 0.0345812514, -0.0138017619, 0.0253134761, 0.0124031426, -0.00500275427, -0.000524962612, -0.00119401375, 0.0209178161, 0.00786147173, 0.016322352, 0.00443408499, 0.0182281621, -0.00306044077, -0.003957632, 0.00286832266, -0.00108546705, 0.00283950497, -0.0258975159, -0.0044148732, -0.00408827234, 0.0383006595, -0.0183664877, 0.0169217587, 0.00209985045, 0.00179438281, 0.0405138582, 0.0134098409, -0.0138862943, -0.0153540764, 0.0310923886, -0.00137748651, -0.00567516778, -0.0241300296, 0.00154558988, 0.00243989937, -0.0149391014, 0.00239187, -0.00306236208, -0.0243913103, 0.0172445178, -0.0212252047, 0.0037943318, 0.00513339462, 0.000659925572, -0.014831515, 0.00560984761, 0.00677408325, 0.00573280314, 0.0167219564, 0.000846760406, 0.00120554084, 0.00556758139, -0.0095367413, 0.00317571172, 0.0124031426, -0.000771354069, -0.0146701355, 0.00612088153, -0.016860282, 0.010066987, -0.0133791026, 0.0263278596, 0.00200571259, -0.00839171745, -0.0422967151, 0.0111812716, -0.00293172174, -0.00784994382, -0.00891427882, 0.0107893506, 0.0330135673, 0.00482600601, -0.0041728043, -0.00695467414, 0.00484137516, -0.00836866349, -0.0178285576, 0.0106663955, 0.0140630426, 0.0107278731, -0.013217723, -0.00354073592, -0.00712758023, 0.0142090525, -0.00214980124, -0.00964432675, 0.0315688401, 0.00692777755, -0.00271078595, -0.0111044245, -0.0119343745, -0.00175788032, 0.00507960189, -0.00036118197, -0.00984413, -0.000147930914, 0.0190581121, 0.000138805306, 0.00637447741, -0.0140707269, 0.028464213, -0.0115655074, 0.00666265469, 0.0241300296, 0.00680098, -0.00701999431, 0.0159688536, 0.0433110967, -0.000578755687, 0.000865491922, -0.0302931778, 0.0109737841, 0.0295093358, -0.00169640256, -0.0371018425, -0.0128872804, 0.0102591049, 0.00623615226, -0.0153233372, -0.00787684, -0.00204221508, 0.0184587035, 0.00400374038, 0.0110583156, -0.00534088211, 0.0308772158, 0.00169352081, -0.00125260977, 0.0079844268, -0.00478374, 0.00497585814, -0.0179976206, 0.00944452453, -0.0120880688, -0.00180494925, 0.00370979984, -0.0237304233, -0.00818423, 0.00224586017, 0.0221934784, -0.0393150412, -0.0247140676, 0.0113042267, -0.0110583156, 0.0341201685, 0.0218399819, -0.00556373922, -0.00675102882, 0.0280799773, 0.0174289513, 0.00376167172, 0.0182435326, 0.0305698272, 0.0143012693, -0.0103743756, -0.0107970359, -0.00345812528, -0.0122263934, 0.00107874291, -0.00406906055, -0.00952905603, 0.0134405801, 0.00735812215, 0.00252827373, 0.0165375229, 0.0293710101, 0.0225008689, -0.00891427882, 0.0105203856, 0.0152618596, -0.00681634899, -0.0142705301, 0.0169371292, 0.0197343677, -0.0088297464, -0.0358722843, -0.00350999716, -0.00962127279, 0.0116193006, 0.00677792542, -0.0102667892, 0.0207794905, 0.025021458, -0.00665497, 0.0318147503, 0.00887585431, 0.00429576, 0.00124588562, -0.00326792826, -0.00555221224, -0.0349501185, 0.000300664775, -0.0024360572, 0.0198726933, -0.00173290493, 0.00445713941, -0.00608245796, -0.0048106364, 0.0180591, -0.00967506599, 0.00454935571, 0.0186738763, 0.0177670792, -0.0034120169, -0.00776157, -0.00125933392, -0.00112965424, 0.000976440089, -0.0105511239, 0.0137018608, -0.0189812649, -0.0412208512, 0.00600945298, 0.0130256051, -0.0115040299, -0.00922935177, 0.0335976072, -0.00180206751, 0.0162608735, 0.0119420588, -0.0151465889, 0.0199034326, 0.0165067837, 0.0117806802, -0.0136557519, -0.0308772158, 0.0247909147, -0.00959821884, -0.0186738763, 0.0110506313, -0.00219206722, 0.00872216, 7.75976878e-06, -0.00799979642, -0.0261280574, -4.50877087e-05, -0.00632836903, 0.00294517, -0.0310155414, 0.000221896364, 0.0129180187, -0.0226699319, -0.00346004637, -0.0335668698, 0.0103436364, 0.0185816605, -0.0330135673, 0.00705457525, -0.00430728728, -0.0305544566, 0.0121802855, -0.0145010715, -0.00463388767, -0.00760019058, -0.00851467252, 0.0193040241, -0.00145817618, -0.0106740799, 0.00839940179, -0.00160802819, -0.00234960392, 0.025252, 0.0175826456, 0.0146855051, -0.0296322908, -0.00218630373, 0.000727166887, 0.0244220495, -0.0291251, 0.00450324733, 0.00396915944, 0.0263432302, 0.00293172174, -0.0130640287, -0.00174347148, 0.00607477315, -0.00880669244, -0.00166182127, -0.00044931614, -0.0182435326, -0.0108200898, 0.024237616, 0.0107201878, -0.0136403833, -0.00406521838, 0.0204413626, 0.0311384965, 0.0201186035, -0.00707762968, 0.00701999431, 0.0105741788, 0.0132330926, -0.00584807387, 0.0149006769, -0.00297975121, -0.000244110022, 0.0127873784, -0.0101745725, 0.0143243233, 0.0032102929, 0.0124569358, -0.0387617424, 0.00308349496, 0.0148084611, 0.00932156853, 0.0046300455, 0.0103513217, -0.0020499, -0.00258014561, 0.0242837239, -0.035011597, -0.00316418451, 0.00388462725, 0.0346427299, 0.0019826584, 0.00219590962, -0.00342738628, 0.00607093098, -0.0211790949, -0.0014043831, 0.0234998818, -0.00602098042, -0.0197343677, -0.0008068959, -0.0140860965, 0.00472994661, -0.00347733707, -0.0124031426, 0.0102053117, -0.00365408557, -0.0264661852, 0.00462620286, -0.0274344608, 0.0249599796, 0.00904491823, -0.0236074682, -0.0102975285, 0.0140630426, -0.0190888513, 0.0530860648, -0.0197036285, 0.0190273728, -0.0028452687, -0.00497970032, -0.0371633209, -0.00254748552, 0.00956748, 0.0144472783, 0.00770009216, -0.00648590596, -0.0159534849, 0.0159534849, 0.0173059963, -0.0120957531, 0.000524002, 0.00519871479, 0.025021458, 0.00843782537, 0.0129948659, 0.0258360375, -0.00472994661, 0.015661465, -0.0273729824, -0.0218553506, 0.00942147, 0.00547920726, 0.0177209713, 0.0340894312, 0.00294709112, -0.00592492102, -0.00130063936, -0.0110506313, 0.0128795952, 0.000581157161, -0.0163992, -0.00444561196, -0.00579428114, 0.0187660921, 0.00443792716, -0.000980282435, -0.0038039377, -0.00694698934, 0.00405753357, 0.00014504914, -0.0161379185, -0.0109430449, -0.0246372204, -0.0205643177, -0.0260819495, 0.00052352174, 0.00995171629, 0.00203453028, -0.0157844201, 0.0207948592, 0.0121572316, 0.0152157508, -0.0221473705, -0.0189966355, 0.0151542732, -0.0240839217, 0.00394610502, 0.0113503356, 0.0137940776, -0.0386387855, 0.00668186648, -0.00374630233, 0.0191656984, 0.045954641, -0.0300472658, 0.00497970032, -0.0187507235, -0.00561753241, -0.0118652117, -0.0289560352, -0.0283566266, 0.0164145678, 0.0203491449, -0.0144857019, 0.00197497383, -0.0253288466, -0.00756945182, 0.0132638318, 0.00348310056, 0.0133483633, -0.0200878661, 0.00908334181, 0.012825802, -0.0128795952, 0.0123339798, -0.00325448, -0.0203184076, 0.00229581096, -0.0183972269, -0.0117653105, -0.0139708258, -0.0277879573, -0.001191132, 0.0142013673, -0.0221012626, -0.0134098409, 0.00695083151, -0.0107816663, -0.0140784122, -0.00467231125, -0.00618235953, -0.00703152129, -0.00248985016, -0.00391728757, 0.0057904385, -0.0137787079, -0.0030335444, -0.00413822336, -0.00456088316, -0.0045685675, 0.0377780981, 0.0126721077, 0.0149852093, 0.00437260745, -0.0204413626, 0.00121034379, -0.00344467699, -0.000720442738, 0.0122110248, -0.0111582177, 0.010873883, -0.0168295428, 0.0124799898, 0.00406137574, 0.0129718119, 0.00341009581, 0.000621982268, 0.0308464766, 0.010090041, 0.00986718386, 0.027096333, 0.0593567975, 0.00306044077, 0.00912945066, 0.0074349693, 0.00554452743, 0.0141014662, -0.0084685646, -0.0123570338, 0.00600945298, -0.00366753386, 0.0240378119, 0.00904491823, -0.0202415604, -0.00656659575, 0.00149275735, 0.00192886544, -0.00190677179, 0.0145394951, 0.0215172227, 0.010066987, -0.00729664415, -0.0118037341, 0.011972798, 0.00809201319, -0.00327561307, -0.0070392061, -0.00229004747, -0.000150092237, -0.0034158593, 0.0272346567, 0.00649743294, 0.0027837907, -0.00245719, 0.00813812111, 0.0120880688, 0.00973654352, -0.0203184076, 0.00564058637, -0.0150466869, 0.0192118064, -0.00376551412, -0.000691144727, 0.0294632278, 0.00853772741, 0.00267236237, 0.00829950068, 0.00865299813, -0.0177978184, -0.0251751523, -0.00108450651, 0.00133041758, -0.0262356438, -0.00141687074, 0.0042342823, 0.00683171861, 0.000720923068, 0.0131331915, -0.0216401797, -0.0442640036, 0.00678561, -0.00443792716, -0.00150716619, 0.0117576262, -0.00540620228, 0.000443792727, 0.00350231235, -0.000957708573, 0.0183972269, 0.00431881426, 0.0180129893, 0.0113426503, -0.00971349, -0.00243989937, 0.00842245575, 0.000765110191, 0.00411901157, 0.00605171919, -0.00201147608, -0.0087759532, -0.000958188844, 0.00481447857, 0.00388462725, -0.00843014102, 0.00498738512, -0.0179515127, -0.0139708258, 0.0245911125, 0.00825339183, 0.0211022478, 0.024944609, 0.00606708881, -0.0138939787, -0.0126336841, -0.0136250136, -0.0139400866, 0.00351576065, 0.00610166974, -0.0169524979, -0.0157690514, 0.000508152298, -0.00965969637, 0.020548949, 0.0172906257, -0.0224701297, 0.00205182098, 0.0187199842, 0.0182435326, 0.00335438154, 0.00997477, 0.000250473939, -0.0162301343, 0.00872216, 0.0355956368, 0.00793831889, 0.0189966355, 0.00537546352, -0.00319300219, 0.0224854983, -0.0206411649, -0.00809201319, -0.0100823566, 0.00560600543, -0.0040998, -0.0253134761, 0.00082898949, 0.000366465218, -0.0119420588, -0.012626, -0.00796137284, -0.00740807271, 0.0001117887, 0.0207487512, 0.00430344464, -0.00487595657, 0.00310270675, -0.00265122927, 0.0221473705, -0.00961358845, -0.0127950637, 0.00705457525, 0.0121879699, 0.00747339288, -0.0233154483, 0.00594797544, -0.00847624894, -0.00327945547, -0.00583270472, 0.0115347691, -0.000987486914, -0.0217170268, -0.00437260745, -0.00773083093, -0.0161071792, -0.0033985686, 0.0187507235, -0.00208448106, -0.0146701355, 0.0200417563, -0.00733122556, -0.0153925, -0.00192310184, -0.00770009216, -0.00903723389, -0.000468527927, 0.0100131938, 0.0296169221, 0.00549073424, 0.0124338809, 0.0181513149, 0.000760307244, -0.0330135673, 0.00168487546, -0.00849161856, 0.0121726012, -0.00912945066, 0.0053946753, -0.00462620286, -0.00325640128, 0.0215787012, 0.01607644, -0.00963664241, 0.0202108212, 0.00531014334, -0.0119420588, -0.00872984529, -0.00227467786, 0.0070046247, -0.00901418, -0.00929851457, -0.0087452149, 0.0186585076, 0.0210715104, -0.005179503, -0.0247448068, 0.0117960498, -0.0062130983, -0.030124113, 0.00185297872, -0.00137844717, 0.00428807549, -0.00787684, -0.00133522053, 0.00290482515, 0.0167526957, 0.011580877, 0.0188429393, -0.0237765312, 0.0284949522, 0.00833792426, 0.00134674762, -0.0245450046, -0.0147700375, 0.00870679, -0.00753102824, -0.0102898441, 0.00541004492, 0.00335053913, -0.00904491823, 0.0154770315, 0.0113887591, -0.00766166858, 0.00101342285, 0.0202108212, -0.006313, 0.0149391014, -0.00348117948, 0.00334669673, 0.000479334587, 0.00232078624, -0.00678561, -0.0133791026, 0.0192579143, -0.00326408609, 0.0140860965, 0.011311912, -0.0196728893, 0.00494896155, 0.0248677619, 0.0098979231, -0.00307196798, 0.00811506715, -0.0100208782, -0.0284949522, -0.00158593466, -0.009137135, 0.0172291491, 0.0218246132, -0.0228851046, -0.0274805687, -1.17522222e-05, -0.00991329271, 0.00984413, -0.00307581038, -0.0239763353, 0.0157997906, 0.0184279643, 0.0314458869, -0.000216012748, 0.009137135, 0.00339664752, -0.00804590434, 0.014831515, 0.000139765893, -0.0120112216, 0.0305698272, 0.0122801866, -0.0154539775, -0.0106049171, -0.0160303321, -0.0122494483, -0.000333565, -0.00430344464, 0.00305467728, -0.00980570633, -0.00924472138, 0.0140707269, 0.0089527024, -0.00711221108, 0.0131792994, 0.0118037341, -0.00559832063, -0.00879900716, 0.00688166916, 0.0110352617, 0.00747339288, 0.00617851689, -0.00167430891, 0.0179207735, -0.00401142519, 0.0109891538, -0.000192358217, -0.0105895475, -0.014462648, -0.0162762422, 0.0124799898, 0.00137940771, -0.0312153436, -0.0180283599, 0.00101534394, -0.00430728728, -0.0133791026, -0.0166758485, 0.000839556, -0.0114809759, 0.0339664742, -0.0214864854, 0.0068240338, 0.00806895923, -0.00512571028, 0.0201954506, 0.000231021972, -0.0107662966, -0.00848393422, 3.98645e-05, 0.0154309236, -0.00194231363, 0.0117499409, -0.00437644962, -0.011972798, 0.00809969753, -0.0165682621, 0.0178439263, 0.00945989322, 0.00139573775, 0.00139765895, -0.00660117669, -0.00210753526, -0.00523329619, 0.00151869329, 0.00793831889, 0.0176748615, -0.000391440553, -0.00736196432, -0.0128719108, -0.0229312126, -0.0104742767, -0.0257438216, 0.0118728969, -0.00856078137, -0.00287792855, 0.00703536347, 0.000448595703, -0.00754639786, 0.00501043908, 0.000437308743, 0.0252058897, -0.0130870827, -0.0233922955, -0.0077692545, -0.0304622408, 0.0128334872, 0.0150620565, 0.0147546679, -0.0130563444, 0.0275881551, -0.015661465, -0.000171825595, -0.0142474761, 0.00954442564, 0.00387502136, 0.0306774136, 0.00934462249, 0.00368098216, -0.0025859091, -3.80033562e-05, 0.0127720088, -0.0112811727, 0.0233461875, 0.00763477199, 0.00545231067, 0.00732738292, -0.0164760463, -0.0186585076, -0.0121111227, 0.00927546062, 0.00688166916, -0.00398837123, -0.00980570633, -0.00623999489, 0.00704689091, -0.0102975285, -0.0150697408, 0.00225546607, -0.0327369198, 0.0277111102, -0.00182127929, -0.0260819495, 0.00226699328, -0.00872984529, 0.0135481665, -0.000755024, -0.0324295312, -0.003200687, -0.0138709247, -0.00839940179, 0.00458009494, 0.0182281621, 0.00537546352, 0.0113426503, -0.0250060875, 0.0109737841, -0.0125568369, 0.0127796941, -0.00140342244, 0.00436108, -0.0245757438, 0.019718999, -0.0127335852, -0.013609644, 0.0129718119, 0.00500275427, 0.0135327969, -0.00283950497, 0.00164260948, 0.00373285403, 0.012533783, -0.0117960498, 0.024529634, -0.0202108212, -0.0181359462, 0.00145721552, -0.0201954506, 0.0315073617, 0.00287408638, -0.00783841684, 0.00842245575, 0.0209178161, -0.0175057985, 0.00119017146, 0.00423812447, 0.00892196316, -0.000966353866, 0.012410827, 0.0272192881, 0.00209600804, 0.0246218517, 0.00710836845, -0.0013150482, -0.00458393712, 0.0133867869, -0.000104464198, -0.0112120109, 0.00907565746, 0.0241607688, -0.0018001463, 0.00647437898, -0.00308733736, 0.00184049108, -0.0169217587, -0.00612472417, -0.0081073828, -0.000894789875, 0.00420354353, 0.0167988036, -0.00643979758, -0.0205796883, -0.0145087568, 0.00435723783, -0.00781536289, 0.0044763512, -0.00332940603, 0.0119804824, -0.00823802315, -0.00388654857, 0.00131889048, 0.0116961477, -0.00894501712, -0.0187814627, -0.00205182098, -0.0340586901, -0.00967506599, 0.0104435384, 0.000146009726, 0.00245719, 0.00141014659, -0.0179207735, 0.00343507109, -0.0105588092, -0.00373093295, 0.0133022554, -0.0144780176, -0.00828413107, 0.00653585652, -0.0294324886, 0.00671644788, 0.00165317603, 0.00238994882, -0.00906797312, 0.00256093382, 0.00471457746, -0.00683171861, -0.00654354133, 0.00188467826, 0.0121956551, -0.0157844201, -0.0102975285, 0.014708559, 0.00324679539, -0.00238418533, 0.000609974843, -0.0159995928, -0.0153771304, 0.0118652117, -0.0177978184, -0.0110275773, 0.00403832179, 0.010359006, 0.00328137656, 0.00886817, -0.00552531565, 0.00782304816, -0.00332940603, -0.00897575635, -0.000397924538, -0.000463484845, -0.00684324559, -0.00576354191, 0.00711221108, 0.00503733568, 0.0125568369, -0.0137095451, -0.0147469826, 0.0223932825, -0.00782304816, -0.0148929926, -0.0134405801, 0.00844551064, -0.0182896405, -0.0107970359, -0.00509497104, -0.00802285, 0.00707762968, 0.00688935397, 0.0403909, 0.0118267881, -0.0259897318, 0.0111351628, 0.0149467858, -0.0016992843, 0.0102591049, -0.0334131755, 0.0096904356, 0.00353305135, 0.0105664935, 0.0130025512, -0.014170629, -0.00738501875, -0.01038206, 0.00042866345, -0.0108585134, -0.017567277, 0.0106356563, 0.0179976206, -0.00184241228, 0.0160918087, -0.0101054106, -0.00194903777, -0.00542925671, 0.0091063967, -0.0234845132, 0.00176172273, 0.00560600543, 0.0195653047, 0.0185816605, 0.00670107827, -0.00753871305, 0.00620925613, 0.00247832318, -0.0221781097, 0.00316610583, 0.00829181541, -0.00622846792, 0.000869334268, 0.000119473421, 0.0259128846, 0.00669339346, -0.00896807108, -0.00196921, -0.00795368757, -0.00868373644, -0.0149160465, -0.0133714173, -0.0100593017, -0.0206411649, 0.0204874706, 0.0166912172, 0.00949063245, -0.000220695627, 0.00686629955, -0.00107394, 0.0142090525, -0.0155999875, -0.00443408499, 0.012387773, -0.00850698818, 0.0148776229, -0.00494127674, 0.00416127732, -0.0281568244, 0.0151619576, -0.0116654094, 0.0187814627, 0.00428423285, 0.0141936829, 0.011703833, -0.00766551076, 0.0182435326, 0.0147700375, -0.00657812273, -0.0174596906, -0.0126413684, -0.00101246219, 0.0212405734, -0.00588265527, -0.00449556299, -0.0098979231, 0.000945220876, -0.00137460476, 0.0178900342, 0.0108815674, -0.0242990926, -0.0088297464, 0.0200724956, -0.000487259444, 6.07273214e-05, 0.0203337763, 0.0153771304, 0.00247448077, 0.0118267881, -0.0331057869, 0.01690639, 0.0138401855, 0.00610551238, -0.00255517033, 0.0134252105, -0.0116423545, 0.000869814539, 0.0209024455, -0.0106587103, 0.0056367442, 0.0214403756, -0.0177056, -0.00647437898, 0.00835329387, 0.00839171745, 0.00113157544, 0.0110122077, 0.0111582177, 0.00942915492, -0.00324679539, -0.00261088461, 0.0150774261, -0.0108200898, -0.0141245201, -0.0115117142, -0.0039922134, -0.0131255062, 0.00168775721, -0.0125184134, 0.0344275571, 0.00625920668, 0.0139631415, 0.0179668814, 0.0291865766, -0.0138478708, 0.00388462725, -0.0024226089, -0.0240839217, -0.00588649744, 0.00112869369, -0.0087452149, -0.00876826886, -0.00122187089, 0.0103052128, -0.00323334709, -0.0201032348, -0.00677024061, 0.0240839217, -0.00672413222, -0.00370595744, 0.00661270414, 0.0145932883, -0.0143627468, -0.0234537739, -2.17783836e-05, 0.00599024119, 0.0195653047, 0.00641290098, 0.0425426252, 0.0141014662, 0.00464541512, 0.0142090525, -0.00185393938, -0.00472226227, -0.00768472254, -0.00975191314, 0.00662807329, -0.00703536347, -0.0289406665, -0.025067566, -0.0127489548, 0.0271578096, 0.00884511601, -0.0114886602, -0.00229773205, -0.0219783075, 0.022331804, -0.031661056, 0.00955979526, -0.0231463853, -0.00212482573, 0.00200379151, -0.0184279643, 0.00612088153, -0.015123534, 0.0144088548, -0.00143031904, 0.00426502107, 0.0138171315, 0.0206411649, -0.0123186102, -0.0112504344, -0.00326216477, 0.00143416133, -0.0187199842, 0.014977525, -0.00774620054, 0.000648398476, 0.014462648, 0.00666649686, -0.0148468846, -0.0150390025, -0.011288858, -0.00487979874, 0.00271462835, 0.0127643244, -0.0115501387, 0.00280876621, 0.0056021628, -0.0130563444, -0.0194269791, 0.00369827286, -0.0181513149, -0.0120035373, 0.0284949522, 0.00817654468, 0.0195806734, 0.00522176921, -0.0251136739, 0.00124684628, 0.00985181425, -0.000928890833, 0.035841547, 0.00275497301, 0.00698925555, 0.00866836682, 0.0097442288, -0.00208255975, 0.000210249214, 0.0117345713, -0.0131639298, -0.0157690514, -0.020133974, 0.00600561081, -0.0142321065, -0.00370787876, -0.00258014561, 0.00136019592, 0.0132330926, 0.0176594928, 0.00926777534, -0.0115424534, 0.00286832266, 0.0153540764, -0.0154078687, -0.0201954506, 0.00993634667, -0.00096251152, 0.0129026491, 0.00171849609, -0.00995171629, 0.0134328958, 0.00313344575, -0.00105280697, -0.0148853082, -0.00879132282, -0.00330635207, 0.0205182098, 0.00536393654, 0.0271731801, 0.00790758, 0.00794600323, -0.00590186706, -0.0044264, -1.9181789e-05, 0.00207103277, 0.00736196432, 0.00277034263, -0.0455857739, 0.000959629775, 0.016737327, 0.0119266901, -0.0132868858, 0.0140553582, -0.000322518201, 0.00950600207, 0.00903723389, 0.0189658962, 0.00921398215, 0.0129410727, -0.0111351628, 0.018105207, 0.011995852, 0.00103263464, -0.00793831889, -0.00596718723, 0.0132330926, 0.0170139764, -0.00610166974, -0.0168756507, -3.18495731e-05, -0.0036271892, -0.00773467356, -0.0136480676, -0.0230080597, -0.00609398494, 0.00774620054, 0.00101534394, -0.00437644962, -0.0216555484, -0.0170754548, 0.0161071792, 0.0122033395, 0.00344275567, -0.0232847091, 0.0146086579, -0.00207679626, -0.00980570633, -0.00859920494, 0.0161071792, 0.00209408696, -0.00385388848, -0.0172137786, -0.023576729, -0.0255286489, 0.0134790037, 0.00806895923, 0.00441871537, -0.0149006769, 0.00721211219, 0.0110275773, 0.00365984929, -0.00195191952, -0.00348310056, -0.0146317119, -0.0077961511, 0.00934462249, 0.00759250624, 0.00893733278, -0.0251597818, 0.0074003879, 0.0205796883, 0.00861457456, 0.0124953594, 0.00485674478, -0.0208717063, -0.0133791026, -0.00063735171, 0.00970580522, 5.5624183e-05, 0.0246679597, 0.00224201777, 0.00851467252, 0.00207487517, -0.0233769268, 0.0170139764, 0.00942147, -0.00700078253, 0.00399605604, -0.0056021628, 0.00168775721, -0.026266383, 0.0201186035, 0.00921398215, -0.0122033395, 0.00933693815, 0.0163377207, 0.0129948659, -0.00454935571, -0.012118808, 0.00346004637, 0.00229581096, -0.00889122393, 0.00615546294, -0.000337167206, 0.00395379, 0.00594029063, -0.023991704, -0.0133253094, 0.0211944655, -1.39135509e-05, 0.014316638, 0.0245142654, -0.0011075607, -0.0148776229, -0.00265507167, -0.0503503047, 0.0142474761, 0.0283566266, 3.92040929e-05, -0.0232232325, -0.0114579219, -0.0119266901, 0.0109276753, 0.0077961511, 0.0131408758, 0.0104281688, -0.00320837181, -0.0128411716, 0.0153387068, -0.0320914, -0.0168449115, 0.00830718502, 0.0103128981, 0.00908334181, -0.0139247179, 0.0081919143, -0.0288023409, -0.0200417563, -0.00493359193, -0.0007574255, -0.00265699299, 0.0045954641, -0.0108200898, 0.0127796941, 0.0087452149, -0.00813043676, 0.00403832179, -0.0155231403, -0.0197497383, -0.00748876249, -0.00745418109, 0.0110660009, 0.000467327191, -0.00165125483, 0.0100362478, 0.0130332895, -0.0125952605, -0.0100439331, 0.000754543697, 0.00539083313, 0.0241453983, 0.00371748465, 0.0122340787, -0.026850421, 0.0168756507, -0.0175826456, 0.00476068584, -0.0136788068, 0.00366369146, 0.00866068248, -0.014170629, -0.00311231264, -0.0152772283, 0.00742728449, -0.0130102355, -0.0210254, -0.0107662966, -0.00640521618, 0.0292326845, 0.0032410319, 0.00995940063, 0.00627841847, -0.00985181425, -0.00134770828, 0.00577122672, 0.00494127674, -0.00793063361, -0.00335246022, 0.00196536793, -0.0199034326, 0.0226391926, -0.00965201203, 0.00393457804, 0.0173982121, 0.00470305048, 0.0201954506, -0.00853772741, 0.00741191488, -0.0114271827, -0.000644075801, 0.0129871815, 0.0017012055, -0.00268965284, 0.00931388419, -0.00661270414, 0.000917363795, -0.0106740799, 0.000758386101, 0.0244988967, -0.00469152303, 0.018689245, -0.0138171315, 0.0183203798, -0.000759346643, -0.00365600688, -0.0290021431, 0.000421939301, 0.0155692482, 0.0160149615, 0.0202108212, -0.0131024523, -9.47382214e-05, -0.0113810748, -0.0165836308, 0.00614009332, 0.0222549569, -0.00493743457, 0.0362411514, -0.0149852093, 0.010481962, 0.00323911058, 0.00464541512, 0.0151850125, -0.0110583156, -0.0228851046, 0.0198726933, -0.0195960421, 0.0206565354, 0.00350807584, -0.00424196711, -0.00608245796, -0.00492974976, 0.00159458, -0.0311538652, -0.015684519, 0.00163300359, 0.0146086579, 0.0100362478, -0.00928314496, -0.0140553582, -0.0160149615, -0.0177209713, 0.011603931, 0.0180744678, 0.0234845132, -0.00594797544, 0.0141552594, 0.0118421577, 0.00552915782, -0.0233000796, -0.0212098341, -0.0206411649, 0.0179054048, 0.00301049021, -0.00417664694, -0.0097749671, -0.00521408441, 0.0169678684, -0.00417664694, -0.0380547456, 0.00722748181, 0.0133791026, 0.030078005, 0.00131216645, -0.00661654631, 0.000597967475, -0.033351697, -0.0104281688, -0.016245503, 0.00668186648, -0.00181839755, 0.00864531286, 0.0115731927, 7.64870056e-05, -0.00508344406, 0.00219975179, 0.00962895714, 0.00843014102, 0.0151389036, -0.00829181541, 0.00666649686, -0.00249177124, 0.00261088461, 0.0218399819, 0.0192732848, 0.0139785111, 0.0132100387, 0.00790758, 0.016491415, 0.00540236, -0.0299396794, 0.0174135808, 0.0106817642, 0.00803822, -0.00226507196, -0.00469920784, 0.0208870769, 0.0103205824, 0.0102206813, -0.0222549569, 0.00340625341, -0.000867893395, -0.00258398801, 0.0147700375, 0.00374630233, -0.00762324501, 0.0210254, -0.00355610554, 0.00640521618, -0.00414206553, -0.00899112597, -0.0258206688, -0.0084685646, -0.0123032415, -0.00371364225, 0.000514396117, 0.00136499887, -0.0100055085, 0.00201147608, 0.00474915886, -0.0147316139, 2.12230425e-05, -0.0166451093, -0.00979802106, 0.0196575206, 0.0143627468, 0.0158766378, 0.0189966355, 0.00554836961, 0.022208849, 0.00969812, 0.000489660946, 0.0281260852, 0.00294517, 0.000402247213, -0.00386349438, 0.00947526284, 0.0243605711, -0.0195960421, 0.00494127674, -0.00647053635, -0.00370019395, 0.0135865901, 0.00203837268, 0.0209178161, 0.0191349592, 0.0134021565, -0.0230695382, -0.00535625173, -0.00419201609, -0.00562521722, -0.00451477477, -0.00289329817, -0.0249907188, -0.0180129893, -0.0136019597, -0.00363295269, 0.00801516604, 0.00480679423, 0.0241300296, -0.00240723928, 0.00310654915, 0.000405849423, -0.00694314716, 0.027096333, -0.0153233372, 0.00365984929, 0.00285871676, 0.0187507235, 0.00347157358, -0.00648974814, 0.0195499342, -0.0137633383, -0.0103743756, -0.00723516662, -0.000603731, -0.00952137168, -0.00513339462, -0.0158766378, -0.00888354, 0.0163069814, -0.011703833, 0.0174904298, -6.1597857e-05, -0.0204874706, -0.0129333884, -0.00386541546, -0.0128872804, 0.00644748239, -0.0036137409, -0.0209024455, -0.0236689467, 0.0173059963, 0.00491822232, 0.0219475683, -0.00277034263, 0.000457961432, -0.00793063361, -0.00985949952, -0.017152302, -0.028710125, 0.0250368267, -0.0166297406, 0.006401374, -0.000645516731, -0.00638600439, -0.0152157508, 0.0208870769, -0.00853772741, 0.0011171666, -0.022992691, -0.0157152582, -0.029294163, 0.000163780656, -0.000356859324, -0.0131869838, -0.000367425819, 0.00845319498, 0.00210561394, -0.00634373864, 0.00569822174, 0.00205374206, -0.0003467731, 0.00250329846, -0.0125030437, -0.00208832347, -0.0112427492, -0.00265699299, 0.011557823, 0.0165990014, 0.0200263876, 0.0143781165, -0.0176133849, -0.0103666913, 0.0265891403, -0.0196882598, -0.00616314774, -0.00392881455, -0.00822265353, 0.00380585901, -0.0221012626, -0.0130640287, -0.00118536851, 0.0178900342, -0.00283566257, -0.00486442959, 0.0029855147, 0.0100208782, 0.000345092092, 0.0189966355, -0.0075886636, -0.0173367336, -0.00406906055, 0.027388351, -0.000893349, 0.00264354469, 0.00332172145, -0.00348694297, -0.00615162076, -0.014831515, -0.007158319, -0.0230695382, 0.00116999901, -0.00226699328, 0.00691240793, -0.00152829918, -0.0133329937, -0.0151773272, -0.00916787423, -0.000575873884, 0.00206911168, 0.00306812557, -0.0178900342, -0.020548949, -0.0147316139, -0.00537546352, 0.0108431438, -0.0147392983, 0.0720519572, 0.0139631415, 0.0125491526, -0.0381162241, -0.00269157416, -0.0219783075, 7.44457502e-05, 0.0494588763, 0.0123647191, 0.0275420453, -0.00692393538, 0.0218707211, 0.0138325011, 0.0102053117, 0.0127028469, -0.0179976206, -0.00135059, -0.00199418562, 0.00943683926, 0.00305659836, 0.0056367442, -0.0181205757, 0.00212482573, -0.000655122625, -0.0089834407, -0.00884511601, -0.0178131871, -0.0120573295, -0.00248024426, 0.00070027035, -0.00803822, -0.00449556299, 0.00318531762, -0.0180129893, -0.0248370245, 0.0118805813, -0.00600561081, 0.00856078137, 0.00812275149, 0.00165509712, 0.00853004213, -0.00237073703, 0.00801516604, 0.0140169347, 0.0166451093, -0.0042688637, 0.00896038674, -0.027634263, -0.00853772741, -0.00938304607, 0.0123032415, -0.00577506935, 0.00190773245, -0.020303037, -0.000336206605, 0.00873753, -0.00431881426, -0.00733506773, 0.024944609, 0.0215172227, 0.0104742767, 0.00163684599, 0.00175884087, -0.00260127871, 0.00833792426, -0.00637447741, -0.010212996, -0.00536777871, -0.0046646269, 0.00531014334, 0.0134943733, -0.00797674246, 0.00134386588, -0.0077692545, 0.0192579143, 0.00745033845, -0.00597487204, 0.0230695382, -0.00806895923, -0.0115117142, 0.00441871537, -0.0135865901, -0.0147854062, -0.00209216587, 0.0122340787, 0.00539851794, -0.0132254083, -0.0187199842, -0.00647437898, -0.0114809759, 0.00519103, -0.0101668881, -0.0174904298, 0.00569053739, -0.00266275648, 0.0163530894, -0.0135635352, 0.00419585872, 0.024529634, 0.00344275567, 0.0189505257, -0.00225738739, 0.00367521867, 0.00188179652, -0.0119574284, 0.0349193811, -0.00366369146, -0.0252058897, 0.0278340653, -0.00487595657, 0.0148238298, -0.00283758389, 0.0330135673, 0.0303853936, -0.00634373864, -0.0142705301, 0.0122801866, -0.0111274784, -0.0024053182, -0.0097749671, -0.000670492067, 0.0121111227, -0.0193193927, -0.0164299365, 0.0146778207, 0.00255901273, -0.0109046213, -0.00170312671, 0.00545999547, -0.00704689091, -0.00992097706, 0.0142782144, 0.0172137786, -0.0239455961, 0.00994403102, 0.035841547, -0.00970580522, -0.00768088037, -0.00842245575, 0.0223625433, 0.0351038128, -0.00323718949, 0.00215940713, 0.00129103346, -0.00125645217, -0.00637063524, -0.018105207, 0.00299704191, -0.027634263, -0.0317532755, 0.0100055085, 0.0172598865, 0.0118728969, -0.0266659874, 0.00979033671, -0.00679329503, -0.00248216535, -0.0168449115, -8.25507304e-05, -0.00553684263, -0.00145817618, 0.0113272816, 0.00276842131, -0.0145471804, 0.0077692545, -0.00720442738, -0.00565595599, -0.000598447805, -0.000740134856, 0.00665497, 0.0203645155, 0.0134405801, 0.0109507302, 0.00580580812, 0.011995852, 0.00528708939, -0.00338704162, 0.00318916, -0.0180591, -0.0101207802, -0.00288177095, -0.0122340787, 0.0172445178, 0.0535471477, 0.00972885918, -0.00298359361, -0.0294478573, 0.0262971204, 0.0122571327, 0.0185970291, -0.014170629, 0.029832093, 0.00244182069, -0.00766935339, -0.00118344731, 0.0164606757, 0.0172137786, -0.0177517086, -0.0275420453, -0.012802748, -0.00413438072, -0.0202261899, -0.00812275149, 0.00912945066, -0.000508152298, -0.000196080509, -0.00485290261, 0.000826588, -0.00357723841, -0.0105127, 0.0088528]
20 May, 2024
Design Issues in Data Link Layer 20 May, 2024 Prerequisite – Layers of OSI Model Data-link layer is the second layer after the physical layer. The data link layer is responsible for maintaining the data link between two hosts or nodes. Before going through the design issues in the data link layer. Some of its sub-layers and their functions are as following below. The data link layer is divided into two sub-layers : Logical Link Control Sub-layer (LLC) – Provides the logic for the data link, Thus it controls the synchronization, flow control, and error checking functions of the data link layer. Functions are – (i) Error Recovery. (ii) It performs the flow control operations. (iii) User addressing. Media Access Control Sub-layer (MAC) – It is the second sub-layer of data-link layer. It controls the flow and multiplexing for transmission medium. Transmission of data packets is controlled by this layer. This layer is responsible for sending the data over the network interface card. Functions are – (i) To perform the control of access to media. (ii) It performs the unique addressing to stations directly connected to LAN. (iii) Detection of errors. Design issues with data link layer are : 1. Services provided to the network layer – The data link layer act as a service interface to the network layer. The principle service is transferring data from network layer on sending machine to the network layer on destination machine. This transfer also takes place via DLL (Data link-layer). It provides three types of services: Unacknowlwdged and connectionless services. Acknowledged and connectionless services. Acknowledged and connection-oriented services Unacknowledged and connectionless services. Here the sender machine sends the independent frames without any acknowledgement from the sender. There is no logical connection established. Acknowledged and connectionless services. There is no logical connection between sender and receiver established. Each frame is acknowledged by the receiver. If the frame didn’t reach the receiver in a specific time interval it has to be sent again. It is very useful in wireless systems. Acknowledged and connection-oriented services A logical connection is established between sender and receiver before data is trimester. Each frame is numbered so the receiver can ensure all frames have arrived and exactly once. 2. Frame synchronization – The source machine sends data in the form of blocks called frames to the destination machine. The starting and ending of each frame should be identified so that the frame can be recognized by the destination machine. 3. Flow control – Flow control is done to prevent the flow of data frame at the receiver end. The source machine must not send data frames at a rate faster than the capacity of destination machine to accept them. 4. Error control – Error control is done to prevent duplication of frames. The errors introduced during transmission from source to destination machines must be detected and corrected at the destination machine. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System/Introduction of System Call/How much Stack size required for BIOS interrupt call?/Difference between Interrupt and Polling/Difference between Difference Engine and Analytical Engine/Difference Between Store‑and‑Forward Switching and Cut‑Through Switching/Difference between Message and Packet Switching/How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?/Types of Node Devices in a Computer Network: End devices and Intermediary Devices/Types of Errors in Computer Network/Difference between Storage Area Network (SAN) and Network Attached Storage (NAS)/Difference Between Network Security and Network Administration/Internet Administration/Internet Telephony Protocol | H.323/IPsec (Internet Protocol Security) Tunnel and Transport Modes/Real-time Transport Control Protocol (RTCP)/Cisco Discovery Protocol (CDP) and Link Layer Discovery Protocol (LLDP) in Data Link Layer/Data Link Layer Communication Protocols in IoT/Network Layer Protocols/Which Layer Called Error Detection Layer?/Error Control in Data Link Layer/Design Issues in Data Link Layer
https://www.geeksforgeeks.org/design-issues-in-data-link-layer?ref=asr10
PHP
Design Issues in Data Link Layer
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, Difference between Difference Engine and Analytical Engine, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Difference between Interrupt and Polling, Types of Node Devices in a Computer Network: End devices and Intermediary Devices, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, Types of Errors in Computer Network, jQWidgets jqxToolBar close Event, How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, Difference between Message and Packet Switching, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, Difference Between Network Security and Network Administration, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, Introduction of System Call, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Data Link Layer Communication Protocols in IoT, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Difference Between Store‑and‑Forward Switching and Cut‑Through Switching, Longest Common Prefix using Binary Search, Design Issues in Data Link Layer, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, IPsec (Internet Protocol Security) Tunnel and Transport Modes, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, Internet Telephony Protocol | H.323, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, Difference between Storage Area Network (SAN) and Network Attached Storage (NAS), jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, Error Control in Data Link Layer, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, Real-time Transport Control Protocol (RTCP), unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, Internet Administration, Which Layer Called Error Detection Layer?, Cisco Discovery Protocol (CDP) and Link Layer Discovery Protocol (LLDP) in Data Link Layer, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, Network Layer Protocols, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How much Stack size required for BIOS interrupt call?, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0231601447, 0.0299151875, -0.00597614469, 0.0138064791, 0.0398685336, 0.00277956203, 0.00324138626, 0.0172736086, -0.0333616361, 0.0038910422, 0.0280678906, -0.0226087123, 0.0320106298, -0.0116490014, -0.00534199784, -0.0268960968, 0.00845069531, 0.0186935458, -0.00157847418, -0.0289777536, 0.00832662359, -0.0049111913, -0.00881602, 0.0058520725, -0.017287394, 0.00162241643, 0.013151654, 0.00144923234, -0.0183351152, 0.0239045788, 0.0770350546, 0.0091262, 0.0156330969, -0.0258070193, -0.0338303559, -0.0317624845, 0.019741267, 0.0228844285, -0.0339957848, 0.0402821079, -0.0250074416, -0.0222227108, -0.0121866474, 0.0113457134, -0.0108769964, 0.00333099416, -0.0375800915, 0.0199480541, -0.00463202875, -0.0313764811, -0.0328377783, -0.0736713186, 0.00645175483, -0.00877466239, 0.00532476557, 0.0401442498, 0.0531580485, 0.0286744647, -0.00462513603, -0.0258483756, 0.0201824121, -0.0144750904, -0.00247455109, -0.0106426384, -0.000295317703, 0.0142958751, -0.0571283586, 0.0279162452, 0.0235461481, -0.0134135839, -0.0538197644, -0.0340784974, -0.00882291235, -0.0235875044, -0.00615536, 0.00876087602, 0.015770955, 0.0628632531, 0.0479745865, 0.000540231063, -0.00479745865, 0.00108907826, -0.00109252473, 0.0218642801, 0.0240837932, -0.00483192317, -0.0202513412, -0.0568526424, 0.00989820436, 0.0181972571, -0.0158398841, 0.0382969528, -0.011869574, -0.0528271869, -0.0251866579, -0.0274751, 0.0195344798, -0.0118420031, -0.0128001161, 0.00543505186, 0.0134962983, 0.0117661804, -0.0325344875, 0.0312110521, 0.0308526214, 0.00298979552, -0.0172322504, 0.03578794, -0.00723754521, 0.0580106489, 0.00481469091, 0.00242457772, -0.00587964384, 0.0116421087, -0.0249109417, -0.0466787219, -0.0209406316, -0.0485535897, -0.0224157125, 0.0287571792, 0.032589633, 0.002879509, -0.0133515475, 0.0535716191, -0.0376628079, 0.0523033254, 0.00401856098, -0.0204305556, 0.015605526, 0.0190657619, -0.0374973789, 0.0134618338, 0.00313971611, 0.0154952398, 0.00573144667, 0.0240010787, -0.00641729031, -0.00526617561, 0.0240975786, -0.00258139125, 0.0368356593, -0.0287847519, -0.0145026622, -0.00714793755, 0.0250074416, -0.0151643809, 0.0070066331, 0.036118798, -0.0364496559, -0.00827837363, -0.00488362, -0.0232842173, -0.0208992735, 0.018059399, 0.0264411662, -0.0111527126, 0.0213404186, -0.00845758896, -0.00219883514, -0.0386829562, 0.0240424369, -0.0369459465, 7.04368213e-05, 0.0121177183, 0.0029415451, 0.0151643809, 0.0272683129, 0.0177147537, -0.0514761806, 0.0301081892, -0.00193345849, 0.0342439301, 0.0173011795, -0.00343266432, -0.0184178296, -0.00345506635, -0.0134618338, 0.0293086115, -0.0118626812, 0.0180456135, -0.00877466239, -0.0210371315, -0.0148748783, 0.033223778, 0.0127725443, 7.56065e-05, 0.0331686363, -0.0205408428, 0.00143630814, -0.0301909037, -0.00493531674, 0.0128139015, 0.0556670614, -0.0221675672, -0.0145578049, -0.0347126462, -0.0204029847, 0.0120625757, 0.0150403082, -0.00818187278, 0.00401856098, -0.00217471, -0.0196447652, 0.0155641688, -0.0291156098, -0.0537646227, -0.000185892903, 0.0121315047, 0.0255175177, -0.0079613, -0.01930012, 0.0207889881, 0.0222916398, -0.0106081739, 0.0423775502, -0.0151368091, -0.0419915468, -0.00850583892, -0.0266755242, -0.0140821952, 0.00809915736, 0.0161983147, 0.0361463688, -0.00862301793, -0.0218780655, -0.0191071201, -0.000872382661, -0.0667232722, -0.0505938865, -0.0403923951, 0.00996024068, 0.0326447748, -0.0129172951, -0.0227465704, -0.0328102037, 0.0270615257, -0.000322027685, 0.0320933424, -0.00835419539, -0.0136548355, -0.0117248232, 0.0278059598, -0.0413298309, -0.03443693, -0.0333064944, 0.0362566561, 0.0172460359, 0.0542333387, 0.00508006755, 0.00473542232, 0.0260827355, 0.029088039, 0.0432322696, 0.00391172105, 0.00259173056, -0.0221813526, 0.0117386095, -0.00617259229, -0.0372216627, -0.00591755472, 0.0282333195, -0.0197688378, -0.0115938587, 0.0107115675, -0.0288950372, -0.0409162566, 0.00767179811, 0.0353467911, 0.0285641793, -0.0293361843, -0.0021040577, -0.0432874151, -0.0101325633, 0.0204443429, 0.0225949269, -0.0100153843, -0.0165291745, 0.0228292849, 0.0395101048, 0.0248695835, -0.0271993838, -0.0350435041, 0.000518690736, -0.020816559, -0.0200031959, -0.0406956822, -0.0158950277, -0.00207820954, -0.0482227318, -0.0236840062, -0.0283711776, 0.0225122124, -0.0314040519, -0.0212990623, 0.0133239767, 0.00439077755, 0.0119040385, 0.0473128669, 0.00410472229, -0.00811983645, -0.0063173431, 0.00415641908, 0.000700491, -0.0107804956, -0.0109252473, -0.0162258875, -0.0111802844, 0.00604852, 0.0202651266, -0.0080578, 0.0248833708, -0.0316521972, -0.0313764811, -0.0569077842, 0.0118557885, -0.0143785896, 0.0251177289, -0.00590721564, -0.022967143, -0.00921580754, 0.0452174246, 0.03705623, -0.00464926101, 0.0644072592, 0.0304114763, -0.0225811414, 0.0253107306, -0.00543505186, -0.0464857183, -0.0311007667, -0.0597752295, 0.0278059598, -0.0219745655, -0.0106012803, 0.0202375557, -0.0284263212, -0.0178112537, 0.0296119, 0.0091262, -0.000455793022, -0.0110493191, -0.0257656612, -0.032920491, -0.00764422631, -0.0508971773, -0.00564873172, 0.0033396103, 0.00737540331, 0.0237253625, 0.00853341073, 0.000969314075, 0.00392206, 0.0255175177, 0.0292534679, 0.043618273, -0.025793232, 0.00128724915, -0.00972588267, 0.0054040337, -0.00899523497, 0.0695355758, -0.0183351152, -0.0171219651, 0.0380488113, -0.0544539131, -0.0295567568, -0.00339303026, -0.024318153, -0.0120212184, 0.00471129734, -0.0403648242, 0.0207476299, 0.00129758846, -0.0104220649, -0.00332754757, 0.00271063298, 0.0199894104, 0.023808077, 0.00202134298, 0.0231601447, 0.00989131164, 0.00552465953, -0.00835419539, -0.000514382671, -0.0357052237, 0.0142958751, 0.00732715288, 0.00138547295, -0.0330032073, 0.028150605, -0.0311007667, -0.00500079896, 0.00073409389, 0.0104358513, 0.0325344875, -0.001612077, -0.0136479428, 0.0125519717, 0.00586241158, -0.0133377621, -0.0163637456, 0.012710508, -0.0116076441, 0.00484570907, -0.00335339596, 0.0215058494, 0.0160191, -0.00966384634, -0.0176596101, -0.000150028281, 0.00104685919, -0.0170392487, 0.0242630094, -0.0298600439, 0.0200996976, 0.0155641688, -0.040723253, 0.0617052428, -0.0337200686, 0.0209682025, 0.0289777536, 0.00313454634, 0.0146680921, -0.0037566307, 0.052965045, 0.0327274911, -0.00890562683, -0.0139856944, -0.00765801221, -0.0349883623, 0.0330307782, 0.000821547525, -0.0208303444, -0.00860923249, -0.0249523, -0.0683775693, 0.0302736182, -0.000525583629, -0.0647381172, 0.0127036152, 0.0237667207, -0.00660339836, 0.0366426595, -0.00623118179, -0.0618706718, -0.00917445, -0.03705623, -0.0290604681, -0.0359257944, -0.0571835, -0.0229120012, 0.0232152883, 0.00767179811, -0.00399098918, 0.034905646, -0.0195896234, 0.0220710672, -0.0531580485, 0.0451622829, 0.00573489303, 0.00991199072, 0.0345196463, -0.0131102959, -0.00794751383, 0.00769936945, 0.0208303444, -0.0134066911, -0.0204719137, 0.0107184602, 0.0127518652, 0.0115111433, -0.0406129695, 0.00969141815, 0.0084438026, 0.025793232, 0.0232566446, 0.0263722371, -0.0133791193, -0.000365754531, -0.0348229334, 0.013551442, 0.0602715202, -0.0147921639, -0.0100291697, 0.0181421135, 0.0194931217, 0.0368080884, 0.0227879286, 0.0107322456, -0.0500976, 0.0169978924, 0.0183764715, 0.00268306141, -0.0365599431, -0.00837487355, 0.0110631045, -0.0237253625, -0.0227465704, -0.0181145426, -0.000571249111, -0.0264411662, 0.0504284576, 0.0119247176, 0.0547296293, -0.0196034089, -0.0223467834, 0.0128001161, 0.0230636448, 0.0164602455, -0.0114146424, -0.00333788688, -0.000467424805, 0.00117093138, 0.0380212367, -0.0108218538, 0.00566596398, -0.000427359802, 6.10667848e-05, 0.00948463101, -0.0145853767, -0.00590721564, 0.0236564334, 0.0134066911, 0.0203754138, -0.0534613356, -0.0139029799, 0.006751596, 0.00296394713, -0.0174114667, -0.0154952398, -0.0184040442, 0.00809915736, 0.0370286591, -0.0217126366, -0.0164051019, 0.010911461, 0.020278912, 0.0509247482, -0.0108149601, 0.00321036833, -0.00196103, 0.0455207117, -0.0561909229, 0.000911586045, -0.00495944172, 0.0214093477, 0.00937434472, -0.0134962983, 0.0118833603, -0.00853341073, 0.0100980988, 0.000694459712, 0.00267961505, 0.00532476557, -0.0312386248, -0.00428049127, 0.0247730836, 0.00542471232, -0.00720308069, 0.00878155511, -0.0300806165, 0.022719, 0.0205959864, 0.0206649154, 0.0167635325, 0.0091468785, 0.0107322456, 0.0300254729, -0.0323414877, 0.00625186041, -0.0203340556, -0.0203064848, -0.00530064, -0.00397720328, 0.0273510274, 0.0144199478, 0.0281230323, -0.0409714, -0.00908484217, 0.0196585525, 0.0149575938, -0.00378764863, 0.0380488113, -0.000793545158, 0.0193414781, -0.0137168719, 0.0196999088, -3.41683226e-05, 0.0140477307, 0.0203754138, -0.0364772268, 0.0208579171, -0.00798197836, -0.00791994203, 0.0314316265, 0.0423224084, -0.0129517596, 0.00388759584, 0.0196861234, -0.00380143453, -0.0155090252, 0.0409714, 0.0188314039, -0.0116903586, 0.0488568768, 0.0077682985, -0.00862991158, 0.0266065951, -0.0013415307, 0.00208682567, 0.0141442316, -0.00389793515, 0.0374146625, 0.00876087602, -0.0258345902, -0.0075270473, 0.0281092469, 0.00454931427, 0.0091262, 0.00951220281, 0.022126209, 0.0152057381, 0.00138461136, -0.000372432027, 0.0177285392, 0.0112285344, -0.0288950372, -0.0225259978, -0.01235897, -0.0179215409, -0.0487190187, -0.0106357448, -0.0145026622, -0.0101739205, -0.0346575044, 0.00882291235, -0.000815947074, -0.0245938674, 0.0163361728, -0.0270890985, -0.022195138, 0.00213335268, -0.00196447666, 0.082935378, -0.010373815, 0.0295016132, 0.0273372419, 0.0392343886, -0.000969314075, 0.00533855148, 0.0192863345, 0.00425291946, -0.000370924186, 0.020816559, -0.0030535548, -0.0370010883, 0.00582450069, -0.0133446548, -0.0266755242, -0.0159088131, 0.00544883776, -0.000812931452, -0.00784412, 0.00544194458, 0.0111458199, 0.00876776874, 0.0226638559, -0.0164740309, -0.0136617282, 0.0448038504, -0.02471794, -0.0181145426, 0.0254348014, 0.0165705327, -0.0300254729, -0.0241113659, -0.015371168, 0.0351537913, -0.0056556249, -0.011400857, -0.0209819879, -0.0229947157, 0.00852651801, 0.0189554766, -0.025793232, 0.0148197357, -0.0414401181, 0.00858166069, -0.0118282167, -0.0254210159, -0.0142545179, 0.00135531649, -0.041936405, -0.0010589218, -0.00967073906, 0.0190106183, 0.00596580515, 0.0225397833, -0.00467338646, 0.00398065, 0.0313213393, 0.00809226464, -0.00448038522, -0.00119677978, -0.00102531887, 0.0543436259, 0.0073478315, -0.0289777536, -0.0104289586, -0.0132136894, 0.000745294848, -0.00472163688, 0.00333444052, 0.0263860226, 0.0252142288, -0.00056349457, -0.035071075, 0.00876087602, -0.00480090501, -0.0117386095, -0.0198653378, 0.00506283529, 0.00499390624, -0.030604478, -0.0207614154, 0.0204029847, -0.0235047899, -0.0254348014, -0.00290363422, 0.00313971611, -0.0209544171, -0.00931230839, -0.00801644288, 0.00938813, 0.00589342974, 0.0116214296, 0.014158017, 0.0236840062, 0.0120625757, -0.0234910045, 0.0403923951, -0.0232152883, -0.0220986381, -0.0044907243, -0.0174252521, -0.0082163373, 0.0379936658, 0.0131861186, -0.0223329961, -0.0340509266, 0.0114146424, -0.000142704579, 0.0044321348, -0.0207200591, -0.025393445, 0.0233117882, 0.0479470156, -0.00272097229, 0.0333892107, 0.00506283529, -0.0147232348, 0.041467689, 0.0150403082, 0.00649655843, 0.00176975213, -0.0277370308, 0.00421156222, -0.00463892194, -0.00245042611, 0.00423913356, 0.0295567568, 0.0414952599, -0.0262619499, -0.0236564334, 0.000164029479, 0.00151299161, -0.0171219651, -0.00871262606, -0.00142338395, 0.0200721249, -0.0499873124, 0.0200031959, 0.000683689548, -0.00990509801, 0.00464581465, -0.0116214296, 0.0421294048, -0.00496288808, -0.0136617282, 0.0142407324, 0.03995125, 0.025255587, -0.0137582291, -0.00460445741, 0.00956045277, -0.0222364962, -0.000722031284, 0.0283711776, -0.0333892107, -0.0152884526, 0.0614846721, -0.012241791, -0.00416675815, -0.00735472469, -0.00388414925, -0.0198377669, -0.0150816655, -0.0618706718, -0.0286744647, 0.00951909553, 0.00739608193, 0.0207338445, 0.00602439465, 0.00132343685, 0.0198377669, 0.0281919613, 0.00730647426, -0.0196723379, 0.0182110425, -0.00529374741, -0.0264687371, -0.00288640196, 0.0205132719, 0.000665595697, -0.0290604681, -0.00745811826, 0.0106150666, -0.00320519856, 0.0133515475, -0.000947773806, -0.00556601677, -0.0478643, 0.0110837836, -0.0221675672, -0.0204029847, -0.0108907828, 0.0221813526, 0.0251590852, 0.00480779773, -0.006331129, 0.00456999289, 0.00232463051, -0.0221675672, 0.0166670326, -0.0197688378, 0.0237115771, 0.00741676055, -0.0218504947, 0.0386829562, 0.0239321496, -0.00139839714, 0.0371389464, -0.0248971563, 0.00040775814, -0.0207200591, 0.0422396921, 0.0240700077, 0.0137582291, 0.0033137619, -0.00207993272, 0.0024263009, 0.0233255737, -0.0161156, 0.0327274911, 0.00422879448, -0.0180042554, 0.00359464739, -0.00869884, 0.000437914568, 0.00551776681, -0.00864369702, -0.027847318, 0.000188477745, -0.000854719605, 0.00649655843, -0.0295843277, 0.0170806069, 0.00122262817, 0.00253658718, -0.0275440291, 0.0138685154, 0.0141304452, -0.0385175273, -5.95589663e-05, 0.00411850773, 0.00125278463, 0.00250901561, -0.00847826712, -0.0146818776, -0.0352365077, -0.00662063062, 0.00523171108, -0.0130137959, 0.00133636105, -0.0123313982, 0.0421569794, -0.0145578049, 0.00538680144, -0.0117937522, 0.027847318, -0.00480779773, 0.0177285392, -0.00750636822, -0.0217953511, -0.00342060183, -0.0151781663, 0.0152470954, 0.0232290737, -0.0116972513, -0.00674470281, -0.00122607464, -0.00645175483, 0.00314143929, -0.0200583395, 0.0222502816, 0.0331134945, -0.0156193124, -0.04130226, 0.00238666683, 0.00692736497, 0.0052075861, 0.00138288806, -0.0188176185, 0.0200307686, -0.0100636343, -0.00264170393, -0.0129586523, -0.00598993, 0.00164481835, 0.0223329961, -0.0212301333, 0.00250384607, -0.0135376565, -0.0143648041, 0.00326895784, -0.0186659731, -0.0463478602, 0.0400339663, -0.0538473353, 0.0149438074, -0.0129517596, 0.0271442421, 0.0366150849, 0.00765801221, -0.0134687275, 0.00624496769, 0.0170392487, 0.0277921744, -0.00813362189, -0.0328653492, -0.00595891243, 0.00902280677, -0.00559358858, -0.0223605689, 0.0272545274, -0.045300141, -0.0168186761, -0.0391241, -0.0161156, 0.0202513412, 0.024414653, -0.0151092373, 0.00475954777, 0.00206270046, -0.0148335211, 0.000633716, -0.00696182949, -0.0301909037, -0.0372492336, 0.00358086172, 0.00659305928, -0.00836798083, 0.000709107087, 0.0132550476, -0.00447693886, -0.013668621, -0.00524894334, -0.0103876, -0.010490994, -0.000297256338, 0.00225397828, -0.00856098253, 0.0260000192, -0.0152470954, -0.00778897712, -0.0330307782, 0.00645864755, 0.00182144891, -0.00073409389, -0.0183902588, -0.0150954518, -0.00168014446, 0.00621739589, 0.00436665211, -0.0279713888, 0.0203616265, 0.0245525111, -0.0140063735, -0.0422396921, -0.00806469377, -0.0307423361, -0.0112767853, -0.0124347918, 0.0295291841, -0.0125864362, -0.00205236115, 0.0416331179, 0.0103807077, 0.0199480541, -0.013923659, -0.00293982192, -0.010863211, 0.00145612517, -0.00976034719, 0.00181283278, -0.00409093639, -0.0306320488, 0.000999470591, -0.00510763889, -0.00989131164, 0.00618293136, 0.00815430097, -0.0176044665, 0.00499390624, 0.0231877174, 0.026330879, 0.0296670422, 0.0028209195, 0.00771315536, 0.00294843805, -0.00753394, -0.0148335211, -0.00933988, -0.0141166598, -0.0118075386, 0.00202306616, -0.0177147537, -0.045768857, -0.000937434437, 0.0183902588, 0.00124761497, 0.00867816154, -0.0122555764, 0.00893319864, -0.0237529352, -0.0214920621, -0.00658961246, 0.0221124236, -0.00278817816, -0.0101877069, 0.0116972513, -0.0227741431, -0.00907105673, -0.00217126356, -0.0291431826, 0.0429565534, -0.00379454158, 0.0203616265, 0.0316797681, 0.00773383398, 0.00279679429, 0.0063449149, 0.0317900553, -0.0161983147, -0.0382142402, 0.0348229334, 0.00547296274, 0.0143096605, -0.0172046795, -0.0114422143, 0.00501113851, 0.0114766788, 0.000140550546, -0.0224846415, -0.00463547558, 0.00508351391, -0.0371940881, -0.00408059685, -0.0415504, -0.0154400961, 0.00368425529, -0.00992577616, 0.000611314084, -0.00487672677, -0.00360498694, 0.0095949173, -0.000320735271, 0.00479056546, -0.00729268836, -0.0316246264, -0.0211336315, 0.0211336315, 0.00909862854, -0.0054178196, 0.00877466239, -0.00857476797, -0.0148335211, 0.0622566752, -0.00413229363, -0.0161156, -0.0296670422, -0.0152884526, 0.00103651988, -0.00521447929, 0.0157158133, 0.0260689482, 0.0134825129, 0.0191760492, 0.00905037764, 0.0276129581, 0.00433218805, 0.000668611319, -0.0122004338, -0.00547985593, -0.00662063062, 0.00661718426, 0.0371665172, 0.000641039747, 0.0141855888, 0.00332410121, -0.000750895299, 0.0236150771, -0.00164223346, 0.00522481836, -0.0155917406, -0.0044321348, 0.000848257565, 0.0214782767, -0.0207889881, -0.00197998551, -0.0083059445, 0.0032017522, 0.0322312, 0.00399443554, -0.0274888854, -0.029391326, 0.0346850753, -0.0203064848, -0.00534889055, 0.000989131164, 0.0138616227, -0.0022918894, -0.00845069531, 0.0116558941, 0.0139994808, -0.0108356392, -0.0096224891, -0.0171908941, -0.0139719089, 0.00392206, 0.00727200974, 0.000162629367, 0.00781654846, 0.0313764811, 0.000227681114, 0.0159777422, 0.017452823, 0.00794062112, 0.00398409646, 0.0254072305, -0.000733232242, -0.00236081844, 0.00975345355, -0.0169565342, 0.0153849535, -0.00404613232, 0.041936405, -0.0221399963, 0.038738098, -0.0219332092, -0.000961559592, -0.0427635536, 0.00142941519, -0.0214093477, 0.0131792249, 0.0053902478, 0.00737540331, 0.0173149649, -0.00110114086, -0.000588481373, 0.0240010787, 0.0121659692, -0.0134273693, -0.0296946149, 0.00978102535, 0.00529719377, 0.000762957905, -0.0216161348, -0.018900333, -0.00490774494, 0.0204029847, -0.00823701546, 0.00686532864, 0.0466787219, 0.0212439187, -0.0155503834, 0.0097120963, 0.000650948263, -0.00557635631, 0.0130137959, 0.0120901475, -0.0201686267, -0.0159226, 0.0251039434, -0.00284676789, -0.0111664981, -0.0105737094, 0.0114835715, -0.0177147537, 0.0127587589, 0.00423224084, 0.0145578049, 0.00101153308, 0.00415297225, 0.00493531674, 0.00233152346, -0.00740297511, -0.0171771068, 0.020885488, 0.0174941812, -0.00839555264, -0.00118902535, -0.0094570592, 0.00852651801, -0.00347229862, -0.00635525398, -0.0197688378, -0.00777519168, 0.00739608193, 0.00351365586, 0.0148886647, -0.00856787525, 0.0215196349, -0.00386691699, -0.00432184851, 0.00971898902, -0.0108218538, 0.0042081154, 0.0110906763, 0.00758219045, -0.0107667102, 0.00282608904, 0.0240286496, -0.019369049, -0.0173287522, 0.00845758896, 0.00105202885, -0.0317349136, -0.0357327946, 0.0185694732, -0.00657582702, 0.019975625, 0.013503192, 0.0126140071, 0.000308672694, 0.0370010883, -0.00410127547, 0.00544539141, -0.00276405294, 0.0234220754, 0.0130551532, 0.00532131921, -0.015371168, 0.019134691, -0.033058349, -0.0161018148, -0.00407370413, 0.00630355719, 0.0147783784, -0.00249178335, 0.00809226464, 0.0188865475, 0.0121177183, 0.014226946, -0.00530753331, -0.0137030855, 0.0131378677, 0.00603128783, 0.000866782211, 0.018362686, 0.0272131711, -0.0197274797, -0.020816559, 0.00816119369, 0.0115593942, -0.00102876534, 0.00159656804, -0.00592789426, 0.0205408428, 0.0272545274, -0.0171219651, 0.0141442316, 0.0194241926, 0.0246765837, 0.0119936466, -0.00218849583, -0.00861612521, -0.038269382, 0.0117937522, 0.0114353215, 0.010490994, -0.00811983645, -0.014998951, 0.0114835715, -0.000694459712, 0.0211749896, 0.00225570169, 0.0127587589, 0.0249660853, -0.00240217568, -0.0244284384, -0.00993956253, -0.0107667102, -0.00015885981, 0.0128070088, 0.00258139125, -0.00233324664, -0.0308801923, -0.0209682025, 0.0134618338, 0.00785101298, 0.0211474188, -0.0034343875, 0.0375800915, -0.0248695835, 0.0202926975, 0.0123451846, -0.0153298099, 0.0262757353, 0.00702386536, 0.00994645525, 0.0105668157, -0.0240700077, 0.0110079618, -0.0107391383, -0.0192449782, -0.0139650162, 0.00874019787, 0.0166670326, 0.0196723379, -0.00297084, -0.0425154082, -0.000233712402, -0.0201410539, 0.00543505186, -0.0166532472, -0.0092227, 0.0209544171, -0.0271442421, 0.0132895121, -0.0229120012, -0.00631045038, 0.0210647024, -0.0199618395, -0.00104772078, 0.0129241878, -0.0261240918, 0.0178663973, -0.00256243558, 0.00534199784, -0.00649311207, 0.0179215409, 0.0207476299, -0.0202651266, 0.00504904939, 0.00745811826, 0.00370493392, -0.024318153, 0.0181972571, 0.0150954518, 0.0304114763, -0.0112492135, -0.00509385346, -0.000646640197, -0.00474576186, -0.018900333, -0.00011556378, -0.0061346814, 0.00769247673, -0.00274337432, -0.0224432833, -0.0166808181, 0.00108907826, 0.00975345355, 0.00737540331, -0.0120212184, -0.00170168479, -0.000734524685, 0.0190381911, 0.0229120012, -0.0223054253, -0.000146581835, 0.0181558989, 0.0231050011, 0.0121177183, 0.00210061134, 0.00396341784, -0.00457343925, 0.000451484957, 0.000358215417, 0.0166256763, -0.00699629355, -0.0201824121, -0.0077820844, -0.00140270521, 0.0198653378, -0.00114335981, 0.0218367074, -0.00566941034, 0.0106977811, 0.0123865418, -0.00969831087, -0.00683775684, -0.000676796655, 4.06842664e-05, 0.00461135, 0.03705623, -0.0183489, -0.00758908316, 0.0285366066, 0.0107736029, -0.0030897425, 0.00384623837, 0.00635180762, -0.00412540091, -0.0172598232, -0.0194655508, 0.0188176185, -0.000632854411, -0.0225122124, -0.0148197357, -0.0216023494, 0.00542126596, -0.00865748245, -0.00371871958, 0.0122280046, 0.00780965621, -0.0312937684, 0.00873330422, -0.00359464739, 0.023477219, 0.00413574, -0.0170392487, -0.00718929479, 0.0258345902, -0.0160053149, 0.0285366066, -0.0298600439, 0.019810196, -0.0160191, -0.00309835863, -0.0505663157, 0.00284504448, -0.00930541568, 0.0179491118, 0.00638282578, -0.000579434447, -0.00698595447, 0.0147370212, 0.0215334203, -0.00905727129, -0.00372905913, -0.019134691, 0.00936745107, -0.0107873892, 0.0100084916, 0.0223467834, -0.018900333, 0.00550398091, -0.0253658723, -0.0096224891, 0.0130344741, -0.00300875097, 0.00409782911, 0.0337200686, 0.00471819, 0.0100980988, 0.0221124236, -0.0146543058, 0.0230085012, 0.000155090253, -0.0210233461, -0.00220228173, -0.013130975, 0.0283436067, 0.0172460359, 0.00640005805, -0.00764422631, -0.0226776414, 0.0285366066, -0.0151092373, -0.0209130589, -0.00964316726, 0.0159915294, -0.00906416401, -0.0120556829, -0.0073478315, 0.0145164477, 0.00373250549, -0.0271580275, 0.00994645525, 0.0157571696, 0.0267168824, -0.00201445, -0.0295291841, 0.0196585525, -0.0284538921, 0.0116145369, 0.00148800481, 0.018128328, -0.0297773294, -0.000173614928, -0.0116214296, 0.0215609912, 0.0271993838, -0.018362686, 0.00351710245, -0.0179766845, 0.0190106183, -0.00695493631, 0.000725908554, -0.0282608904, -0.0098499544, 0.00994645525, 0.00423913356, -0.00656204112, -0.0159226, -0.00918823574, 0.00909862854, -0.00112268107, 0.0245111529, -0.0102842068, 0.0103324577, 0.0218780655, -0.00598993, 0.00781654846, 0.0147370212, -0.00368770165, -0.00693425769, -0.0282884631, 0.00302598323, -0.0147232348, -0.0186659731, 0.00618637819, -0.00354295084, -0.0136410501, -0.00262964144, 0.0171219651, -0.0183213297, -0.0243870821, -0.00908484217, -0.00989131164, -0.0254485887, 0.00575557165, -0.00319485925, -0.00478711911, -0.0107253529, 0.0159363858, 0.00941570196, -0.00507662119, -0.00151299161, 0.0178526118, -0.00613123458, 0.0123727564, 4.92734653e-05, -0.03154191, 0.00489740586, -0.00573144667, 0.0288950372, 0.00361532625, -0.00316384132, 0.00764422631, -0.0236840062, -0.00871951878, 0.00727200974, 0.0281092469, 0.0026951239, -0.00153539353, 0.0315970555, -0.000809915771, 0.0435907021, 0.0114560006, 0.059664946, -0.0061071096, 0.0141304452, 0.010070527, -0.00318624312, 0.0106633166, 0.00544539141, -0.00068196631, 0.0039530783, -0.0107598174, 0.0171633214, -0.00616914593, -0.0338854976, 0.0141442316, 0.00788547751, 0.00168100605, -0.000265376671, 0.0158123132, 0.0409438275, 0.0166256763, -0.0142958751, -0.0013544549, 0.00633457536, 0.0147645921, -0.00123210589, -0.012662258, -0.0124141136, -0.0131654395, 0.0160604585, 0.0184316151, -0.0104220649, 0.0153987389, -0.00490429858, 0.00742365373, 0.0189416893, 0.0014285536, 0.00745122507, 0.00996024068, 0.00448038522, 0.0215747785, 0.00677572098, -0.00286055356, 0.0339130685, 0.000982238329, 0.0166532472, 0.00565907126, 0.00358775468, -0.0137651218, -0.029225897, 0.00456654653, 0.0066137379, -0.024414653, -0.00214369199, 0.00521103246, -0.00298634893, -0.00558324903, -0.0165291745, -0.00996024068, -0.032286346, 0.0131792249, 0.0189141184, 0.00767179811, -8.15839376e-05, -0.0201686267, 0.00306044775, 0.00386691699, 0.00151213, 0.0184729733, -0.0154952398, 0.0111182481, -0.0118626812, -0.00463892194, 0.000417020463, 0.00040775814, -0.00585551886, -0.0063759326, 0.0131378677, -0.000518259942, -0.0263584498, -0.00532476557, -0.00558669586, -2.7921631e-05, -0.0204305556, 0.00215058494, -0.0141442316, -0.0211336315, 0.00930541568, 0.0184316151, 0.0240424369, 0.0203478411, 0.00073495548, -0.00210233452, -0.0119591821, -0.00201445, 0.00150351389, -0.00624496769, -0.0110355336, -0.019975625, -0.0199066959, -0.00427359808, -0.000620361, 0.0130206887, -0.00172064023, -0.0295016132, 0.0121590765, 0.0158950277, 0.00869884, -0.0180731844, 0.0181834716, -0.00543505186, -0.0181696843, 0.01789397, 0.0383521, -0.00030974971, -0.00630355719, 0.000900385086, -0.00339647662, 0.0109528182, -0.0355673656, -0.0250074416, -0.00101670274, 0.00217298674, 0.00404268596, -0.00931230839, 0.00369114801, 0.0104151722, -0.0027226957, -0.00687222136, 0.00550742727, -0.0101532424, -0.00316384132, 0.0187073313, 0.00581071479, 0.00943638, -0.00691013271, 0.000444161269, 0.0206649154, -0.000205925389, 0.00339992298, -0.00413229363, 0.0127242943, 0.0190244056, -0.024483582, 0.0180180408, 0.00338441413, -0.00471819, -0.00406681094, 0.00681707822, -0.00409093639, -0.0254072305, -0.0107046738, -0.00845758896, -0.0169151779, 0.00579692936, 0.0135238701, 0.0201272685, -0.00276405294, 0.0286744647, -0.00874019787, -0.00814740825, 0.0146405203, 0.0111044627, -0.00275026727, 0.00812672917, -0.00671713147, 0.0187486894, 0.00683775684, 0.0158123132, 0.0218780655, 0.00777519168, -0.0297497567, -0.00255898922, 0.00412540091, 0.0232428592, -0.00718929479, 0.013268833, -0.0021540313, -0.0103462432, 0.0155917406, 0.0215334203, -0.00105719862, 0.0185694732, 0.012827687, -0.00858166069, -0.0113801779, -0.0208441298, -0.00096328283, -0.00434252713, 0.00164567993, -0.00939502288, 0.00950530916, 0.0115318224, -0.0204857, -0.0341336429, 0.0165705327, 0.0102979932, -0.0298600439, 0.00582450069, -0.0139098726, 0.0177561119, 0.00669300603, -0.0086368043, 0.0031517786, 0.0103324577, 0.00186280627, 0.0147508066, -0.0108218538, 0.00838176627, 0.0048801736, -0.00646554027, -0.0495737381, -0.00838866, 0.00720997388, 0.0121452902, -0.0137858009, -0.00433218805, 0.0108907828, -0.00702386536, 0.00446659932, -0.00425291946, -0.00973277539, 0.0138616227, 0.00534199784, -0.0253658723, 0.0106495311, -0.00877466239, -0.0127380798, 0.00354295084, -0.00460445741, -0.0101187779, -0.0170392487, -0.000444161269, -0.00957423821, 0.0120005393, 0.0171495359, -0.00842312444, 0.0247455128, 0.00753394, 0.0109321401, -0.00738918921, 0.0115249297, -0.023642648, -0.0265928097, -0.0115111433, -0.00467338646, 0.00293637556, 0.0157158133, -0.0116007514, -0.0231325738, -1.35030841e-05, -0.00268478459, 0.0291707534, -0.00427704444, -0.0213542059, 0.0202513412, 0.0118488958, 0.00941570196, -0.00657582702, 0.0073478315, -0.00401511462, -0.00505594257, 0.0132067967, -0.00695838267, -0.0292534679, 0.000345506618, 0.00953288097, -0.0146405203, -0.0239321496, -0.0065861661, 0.00831973087, 0.000474317698, -0.0205408428, 0.00836108811, -0.0152470954, 0.0145715913, 0.0136548355, 0.010442744, -0.0221813526, 0.00621739589, 0.0161018148, -0.0156744551, -0.0219194237, 0.0113732852, -0.0068549891, -0.0125244, 0.00368770165, 0.00130103494, 0.0185419023, 0.00923648663, 0.00113043562, -0.00588653702, 0.0134549411, 0.0049111913, -0.0111458199, 0.00436320575, -0.0049111913, -0.0221675672, -0.0222502816, -0.00729958154, -0.0342715, -0.00567630352, -0.0205132719, -0.00460790377, 0.00710658031, 0.0212439187, -0.025324516, 0.0182248279, 0.00227121054, -0.0097120963, 0.00454586791, 0.0171771068, -0.00703075808, 0.000419605291, 0.00400132872, 0.0148197357, 0.0158950277, 0.0155090252, -0.00958802458, -0.0099671334, 0.00950530916, -0.0081887655, 0.000992577639, 0.0019076101, -0.0043873312, -0.00387381, -0.0077682985, 0.0011209579, -0.015702026, -0.0105737094, 0.0107046738, 0.0243870821, 0.00244870293, -0.00319141289, 0.0087264115, -0.0281092469, -0.0177285392, -0.0260275919, 0.0165016036, -0.0129793314, 0.00437699165, -0.0115042506, 0.00385313132, -0.00515588932, 0.0156606697, -0.00632768264, 0.00931230839, -0.0147783784, -0.0288123228, -0.00976724, -0.0153160244, -0.0131792249, -0.0106495311, -0.00193862815, -0.019134691, 0.0162672438, -0.0105254585, -0.0212714896, -0.0174252521, 0.00418743677, 0.00870573334, 0.0174941812, -0.000789667887, 0.0277370308, 0.00713415165, -0.0150954518, 0.00794062112, -0.00701697264, 0.00998781249, 0.00191277987, 0.0235461481, -0.00407370413, -0.0254072305, -0.0165705327, -0.0011080337, 0.00807158649, 0.00387381, -0.00210061134, 0.000879706407, -0.0124554709, -0.0111940699, -0.0240837932, -0.00452518882, 0.00441834889, -0.0207752, 0.0219469946, -0.0210922752, -0.0190381911, -0.00137771841, 0.00811294373, -0.0056280531, 0.000849119155, -0.0177974682, 0.00225742487, -0.00996024068, -0.00933988, -0.00826458726, 0.0138478363, 0.0109390328, 0.0125175072, -0.0193276927, 0.00126657041, -0.00154228648, 0.0187486894, -0.00498701353, 0.0218780655, -0.00934677292, 0.0248282272, -0.00260551623, -0.0212025605, -0.0029191433, 0.00769936945, -0.00551432, -0.00620361045, -0.0123245055, 0.00787169207, 0.00868505426, -0.0149575938, 0.0145164477, -0.00738229603, -0.014158017, -4.38076131e-05, -0.0128621515, 0.0200996976, -0.0035601831, -0.0166256763, 0.017053036, 0.00519035384, -0.0183764715, 0.00112526596, 0.0154952398, 0.0107667102, 0.00806469377, 0.0114973579, 0.0160742439, 0.0209544171, 0.0309353359, 0.0146680921, 0.013268833, 0.00490774494, 0.00956734549, -0.0130000096, -0.00359464739, 0.0140753025, 0.00374629139, 0.0145853767, 0.00132602174, -0.0129448669, 0.00683086412, -0.0134618338, 0.0023642648, -0.0022918894, 0.00822323, -0.00249350676, 0.0218229219, -0.0233807173, -0.0152608808, -0.00245387247, 0.0183902588, 0.000770712388, -0.0108769964, -0.00363255851, -0.00220228173, -0.00571076805, -0.0049249772, -0.000207864025, 0.0154814543, -0.00843691, -0.00900212768, 0.00738918921, -0.0261240918, -0.00856098253, 0.0216161348, 0.00659305928, 0.0114284288, -0.00100722502, -0.0222364962, -0.00931230839, -0.00355329015, 0.00473197596, 0.017053036, -0.00803022925, -0.0178801827, 0.017452823, -0.0150403082, 0.0171633214, -0.0110010691, -0.00592789426, -0.0216437075, 0.00142769201, 0.0119247176, -0.00622773543, 0.012193541, 0.00900212768, -0.00659650564, -0.0145578049, -0.0123451846, 0.0226362851, 0.00265204348, 0.00750636822, 0.00249523, -0.0344920717, -0.0105185658, -0.00289157173, -0.00833351631, -0.0199342668, 0.0116490014, -0.0020420216, -0.00110372563, 0.00807847921, -0.00428738398, -0.00527996151, 0.00168186764, -0.00236081844, 0.0112423208, 0.00516967522, 0.00758908316, 0.000965006, 0.000188908554, -0.00667232741, 0.0110010691, -0.00191967271, -0.0145440195, 0.0401166789, -0.00896766316, -0.0170392487, -0.000975345378, -0.0042942767, -0.0114904651, -0.0190933347, 0.00245559565, -0.0129793314, -0.0135100847, 0.0108080674, 0.0163223874, 0.0275578145, -0.0290604681, 0.0262205917, 0.0116765732, -0.0147232348, -0.0120556829, -0.010373815, -0.00873330422, -0.00440111663, 0.00698595447, 0.0111596053, -0.0063173431, 0.00187486887, -0.00426670536, 0.00547296274, -0.00878155511, -0.00979481172, 0.00121228886, 0.0208717026, -0.00754772592, 0.0158123132, -0.00132343685, 0.0142820897, -0.0122969337, 0.00623462815, -0.0218504947, 0.0144337332, 0.000985684688, 0.0230085012, 0.00105547532, -0.0121383974, -0.00626909267, -0.00956045277, -0.00516967522, -0.0165016036, -0.0169978924, 0.0127449725, -0.00317935017, -0.00480090501, -0.00730647426, 0.021119846, -0.0101601351, 0.00191622623, -0.00696182949, 0.0185970441, 0.00880912691, -0.0117868595, -0.0191071201, -0.00200755731, -0.0108769964, 0.00625530677, 0.011821324, 0.0070790085, -0.00555567769, 0.0104634222, 0.0152746672, 0.0108769964, 0.0047285296, 0.0139925871, 0.00715483027, 0.00177147542, 0.00254175696, -0.00204029842, 0.0132895121, -0.0234496463, 0.00154573284, -0.0125106135, 0.0350435041, -0.0053902478, 0.00652413024, 0.00461135, -0.00321898446, 0.00635525398, 0.00348780747, -0.0100912061, -0.00716172345, -0.00695838267, 0.0198515523, 0.00916755758, -0.00277956203, -0.0137582291, -0.00739608193, -0.00354295084, -0.00417020451, 0.00557635631, 0.0405578241, -0.013572121, -0.00122693623, 0.0199204814, -0.00919512939, -0.0021178436, 0.0224570688, 0.00953288097, 0.0153987389, -0.00497667398, -0.0319003426, 0.0160191, 0.00740297511, 0.0124141136, -0.0080578, -0.00255381945, -0.0198653378, -0.00877466239, 0.0246627964, -0.0204443429, 0.00267961505, 0.0158674568, -0.00279679429, -0.0111596053, 0.0114835715, 0.00734093878, -0.0119040385, 0.0130206887, 0.00484915543, 0.0102083851, -0.0117248232, -0.00515933568, 0.020816559, -0.00879534055, -0.0147783784, 0.0119936466, -0.0132067967, -0.0215058494, -0.00209716498, 0.00836798083, 0.0307699069, -0.0151781663, 0.015702026, 0.0028433213, 0.020582201, 0.00946395192, -0.0125106135, -0.0089194132, -0.0251590852, -0.00209716498, -0.0118282167, -0.0145578049, -0.000116209987, 0.0070342049, -0.00124244532, 0.00546262367, -0.0163361728, 0.00304321549, 0.00975345355, -0.00887116231, -0.0203064848, 0.00801644288, -0.00418399042, 0.0145715913, -0.0328377783, -1.62898614e-05, -0.00530408695, 0.00563149946, 0.0132619403, 0.0137720145, 0.0146680921, 0.0106288521, 0.00404957868, 0.00500079896, -0.0200996976, 0.00115886889, -0.0128621515, 0.0126002217, 0.00148800481, 0.00389793515, -0.00651379069, 0.00323966308, 0.0328929201, 0.00446659932, -0.0042356872, -0.0215747785, -0.021891851, 0.00955356, -0.0263722371, 0.0201824121, -0.0156193124, -0.0220848527, -0.000997747295, -0.0110631045, 0.015536597, -0.00451484974, 0.0174803957, -0.00587275112, 0.0034343875, 0.0177009683, -0.00532476557, 0.00470785098, -0.0275164582, 0.00604852, 0.0140477307, -0.0128897233, -0.00217815652, -0.0249523, -0.0106219593, 0.00329652964, 0.0103324577, -0.0123796491, -0.00316211791, -0.00216264743, -0.0203478411, -0.00160259928, 0.0317900553, 0.0118971458, -0.00322760059, 0.00694804359, -0.0139719089, 0.0114353215, -0.0110148545, -0.0100084916, -0.0100567415, 0.0120418966, -0.00635870034, 0.00884359144, 0.0044907243, -0.0186521877, -0.00717550935, 0.0102842068, 0.00053333817, 0.0294188987, -0.00284504448, 0.0182110425, -0.00918134302, 0.0148886647, -0.0030173671, 0.00243836339, 0.00520069338, -0.00347229862, -0.00761665497, -0.00332754757, 0.010863211, -0.00592444791, -0.00468372554, -0.010022277, 0.00287261629, -0.000592358643, 0.0194793362, 0.00432529487, -0.00780276302, 0.0117248232, 0.00950530916, -0.0283436067, -0.0255313031, 0.00940880924, -0.00115886889, 0.00896077, -0.0131447604, -0.00216264743, 0.0204719137, 0.00597959105, -0.0113388207, -0.0228155, -0.0172046795, 0.00922959391, -0.00118040922, 0.00193001202, 0.00466304692, 0.0074994755, 0.0066137379, -0.00722375931, 0.00649655843, 0.000799576403, 0.00731336698, 0.0183213297, -0.00583484024, -0.0376076624, -0.00332065462, 0.0167359617, -0.00910552125, -0.00535923, -0.000176415168, 0.019369049, 0.0188865475, 0.0109252473, -0.00851962436, 0.00378764863, 0.0200583395, 0.0151230237, 0.0122624692, 0.014226946, -0.000214110711, -0.00104427442, -0.00676193507, 0.0122555764, 0.0198377669, -0.0180318262, -0.0051489966, -0.00886427, -0.00471819, -0.00936745107, 0.00476299413, -0.0315143391, -0.0170254633, 0.00638282578, 0.000522137212, -0.0125175072, -0.00605885917, -0.00764422631, 0.0114353215, -0.000401080644, 0.00371871958, -0.0112974634, 0.0171081778, 0.0160053149, -0.0223054253, -0.0107115675, 0.0110837836, -0.010794282, -0.00801644288, -0.0183213297, -0.038738098, -0.0279576033, 0.0130069032, -0.00780965621, -0.00178181473, 0.00725133112, 0.00145009393, 0.00230739848, -0.015605526, -0.000626823108, -0.0202375557, -0.00803712197, 0.00413918681, 0.00580037571, 0.0113250352, 0.00419777632, -0.028150605, -0.0116627868, 0.0274475291, 0.00829905178, 0.012779437, 0.0104220649, -0.00861612521, -0.0152333099, -0.00778897712, -0.00186108309, -0.00434597349, 0.0056142672, 0.00841623079, -0.0136548355, 0.0169289634, -0.0187900458, 0.00630700355, -0.00738918921, 0.0102083851, 0.00814051554, -0.00707211578, 0.00465270784, -0.0307699069, 0.0285090357, 0.0235461481, -0.0161983147, 0.0261240918, 0.024649011, 0.00378764863, -0.0101187779, 0.000302641391, -0.00500424579, -0.00111923472, -0.0128070088, 0.0311007667, 0.0202375557, -0.00191967271, 0.0128483661, -0.0147094494, -0.00641729031, 0.0139098726, -0.00962938182, 0.0166808181, 0.0303287618, 0.0152608808, -0.0187211167, -0.00369114801, -0.00540748, 0.00359120104, 0.0368908, -0.000543246686, -0.0309629086, -0.0316797681, -0.0143372323, 0.00614846684, 0.000344860426, 0.0166808181, -0.0025124622, 0.00718240207, -0.0253796596, 0.0122831482, -0.0208992735, -0.020044554, -0.00198687846, -0.0104772085, 0.00453208201, 0.00372216618, -0.00918134302, -0.0348505042, -0.0151505945, 0.00769936945, -0.00461824331, -0.00825080182, 0.00049628882, -0.01506788, 0.0116696805, 0.00516622886, -0.00116662332, 0.00745122507, -0.0121797547, -0.00767179811, -0.00919512939, -0.00537990872, -0.00343955727, -0.0037428448, -0.00639316486, 0.0149024501, 0.00695149, 0.00696527585, -0.00623807497, -0.00455620699, -0.000710830325, 0.00504904939, 0.0102842068, 0.00853341073, -0.0235461481, 0.0312386248, 0.00372561254, 0.000672919385, -0.00248833699, -0.0106564239, -0.00261240918, -0.00754772592, 0.0145991631, -0.0273923855, 0.00477678, -0.0301909037, -0.0054040337, -0.00146818778, -0.0141028743, 0.0165291745, 0.00361877261, 0.0196309797, 0.00754083274, 0.00400132872, 0.00410816865, 0.0118833603, -0.0104703158, -0.0038772563, -0.00034852227, 0.00677572098, -0.0206924863, 0.0333340652, -0.00329825282, 0.00787169207, 0.0107322456, -0.00622428907, 0.0133929048, -0.00344645022, -0.00727890246, -0.00318279676, -0.0215058494, 0.0152470954, -0.0116627868, 0.0102221714, -0.00667922059, -9.68237073e-05, 0.0210371315, -0.005641839, 0.0161983147, 0.0151368091, -0.00364289782, 0.0337476395, 0.00119591819, 0.0151368091, -0.00408059685, -0.011752395, -0.0224294979, 0.00880912691, 0.0063759326, -0.0142545179, 0.0114835715, -0.0291707534, 0.0203478411, -0.00187659205, -0.0118006449, 0.00138547295, 0.0240148641, -0.00971898902, 0.0245938674, -0.0039668642, 0.017383894, 0.0153435962, 0.00626909267, 0.0245525111, -0.00550742727, -0.0252142288, 0.018293757, -0.0222916398, 0.0173425376, 0.00991888344, 0.00625186041, -0.0187486894, 0.000781482551, -0.0193139073, -0.0245662965, -0.00954666734, 0.0225259978, 0.000163706383, -0.00469406508, -0.00356707582, -0.00377041637, -0.00448383158, -0.00582794705, 0.0147508066, -0.00084868836, 0.00689290045, 0.00129672687, 0.0214507058, 0.000191062572, 0.010677103, -0.00865059, -0.0120212184, -0.0220572799, 0.0116076441, -0.00505594257, 0.000108024673, 0.00209716498, 0.00103910477, 0.0146818776, -0.0110493191, -0.0280127469, 0.0207614154, 0.00167238992, 0.0168186761, 0.00531442603, -0.0157847423, 0.00979481172, 0.00539714098, -0.00096328283, -0.029391326, 0.000470871251, 0.000559186563, 0.00217298674, 0.00485260179, -0.0203340556, -0.0209819879, 0.011773074, 0.00790615659, 0.0215058494, 0.0228844285, -0.0259035192, -0.00684809638, 0.00646209391, -0.0134549411, 0.00747190369, 0.0200169832, 0.0170392487, 0.020582201, 0.0070927944, 0.00971898902, -0.00308284955, -0.0326447748, 0.025489945, 0.00780965621, 0.00318968971, 0.00595891243, -0.01930012, 0.0293361843, 0.0100084916, 0.0109459255, -0.0245800819, 0.00590721564, 0.0102497423, -0.0125795426, 0.0119109312, 0.000301133579, -0.0168048907, 0.0173701085, -0.00195069076, 0.0150816655, 0.00731336698, -0.0107391383, -0.00865059, -0.00740297511, -0.0111871772, -0.017218465, -0.00138719613, -0.000733232242, 0.00547985593, 0.0109666046, -0.00611055596, -0.011518036, -0.00405302551, -0.00925027207, 0.00809226464, 0.0245249383, 0.012779437, 0.00944327377, 0.000275931408, -0.0135169774, 0.00897455588, 0.0167221762, -0.00234358618, 0.0252280142, 0.0277370308, 0.0137168719, -0.0070927944, -0.0137030855, 0.0344093591, -0.0144475186, 0.00268133823, -0.0222089253, 0.0134066911, 0.0235047899, 0.00491808448, 0.0117592877, 0.0132136894, 0.00747190369, -0.0237942915, 0.00539714098, -0.0186521877, 0.00621394953, 0.00705143716, -0.0134066911, -0.0337476395, -0.014626734, 0.005641839, 0.0177009683, 0.020044554, 0.00895387772, 0.0306871925, -0.0036808087, -0.00166118902, -0.0171081778, 0.0146129485, 0.0399788208, -0.00234013959, 0.00692047179, -0.00671713147, 0.0248420127, 0.0201961976, -0.0415228307, 0.0112561062, -0.00953977369, -0.00906416401, -0.0154125253, -0.000672919385, -0.0168186761, 0.0080509074, -0.0292534679, 0.00466304692, 0.0254072305, -0.0100774206, -0.000330859213, 0.014040838, -0.0213404186, -0.0183075424, 0.00511453208, 0.000142381468, 0.0115662869, -0.0152470954, -0.00837487355, -0.012124612, 0.00501803122, 0.0236564334, 0.0307423361, 0.00568319624, -0.0128345806, 0.00433218805, -0.00535578374, -0.00400822144, -0.0228155, 0.0255175177, -0.011704145, 0.00198515528, -0.00666543469, -0.00369804096, -0.00592444791, 0.018528115, -0.0222089253, 0.0115800723, 0.00207131659, 0.00696182949, -0.0316246264, -0.000781051756, -0.00414607953, -0.00732715288, -0.012593329, 0.0103324577, 0.0285641793, -0.0056556249, -0.00973277539, -0.0110217473, 8.72921228e-05, 0.0117248232, 0.00622773543, 0.0156744551, 0.00497322762, 0.00865748245, 0.0141718034, 0.0283436067, 0.0252969433, 0.00973966811, -0.00406681094, -0.0156882405, 0.0134135839, -0.0232428592, -0.0161018148, -0.00182317209, -0.00580726843, -0.0125244, -0.0201686267, -0.00822323, 0.00776140578, 0.0173149649, 0.00596580515, -0.00356707582, 0.0134273693, 0.00692047179, 0.0137995863, -0.000945189, -0.0178388264, -0.00715483027, -0.0178801827, 0.0252004433, 0.00384623837, 0.0123176128, -0.00718929479, -0.0117799668, 0.00811983645, -0.0187624749, 0.00146904937, -0.00837487355, 0.0143923759, 0.0348505042, 0.0161156, 0.0111251408, 0.00570387486, -0.0215196349, -0.0278335307, 0.00674125645, 0.0184178296, 0.0248833708, -0.0104082795, -0.0165705327, 0.00399098918, 0.00311214454, 0.00877466239, 0.0115869651, 0.0128690451, 0.0155917406, 0.00699629355, 0.00113215891, 0.00171805534, -0.00921580754, 0.00414952589, 0.0419639759, 0.00958802458, 0.0136961928, -0.0127932224, 0.0163499601, 0.00991199072, 0.0242630094, 0.0143785896, -0.0275026727, -0.0192587636, -0.00278990134, 0.0062622, 0.0103324577, 0.000535923, -0.0189554766, -0.0122073265, -0.000974483788, 0.000873244309, 0.00146732619, -0.00178526121, 0.00153625512, -0.00372216618, -0.0263446644, -0.0053902478, -0.0127174007, -0.000814223837, -0.0200583395, 0.00249178335, 0.0141993742, -0.00214713835, 0.011752395, 0.000509213, 0.0275164582, 0.0125519717, 0.0129379742, -0.00587275112, 0.00119161012, 0.0200307686, 0.00736851059, 0.00740297511, -0.0227879286, -0.0236977916, 0.0044321348, 0.00557980267, -0.0339130685, 0.00591410836, -0.00480435137, -0.00268995436, -0.00229016622, -0.0124692563, -0.0112354271, 0.0232980028, 0.0111940699, 0.00627253903, 0.0111802844, 0.0104703158, 0.00506283529, 0.0109528182, -0.0280954614, -0.0162672438, -0.00411506137, -0.0243732948, 0.00223329966, 0.019810196, 0.00254520332, -0.00584173296, -0.00905037764, 0.0254761595, -0.00102445728, -0.0290328953, 0.0092640575, -0.0152057381, -0.00316039473, 0.00052472204, 0.00901591312, -0.0087539833, -0.00689979317, 0.00148025039, -0.00094346574, -0.00692047179, -0.0113388207, 0.00235220231, -0.0077682985, 0.00394618558, -0.00702386536, -0.0211336315, -0.0149162365, -0.00642762939, 0.0104151722, -0.0181145426, -0.0141442316, 0.0129172951, -0.00965695363, 0.00969831087, -0.00820255093, 0.00221779058, -0.0110493191, 0.00276577612, 0.0185005441, 0.00962938182, -0.0122073265, 0.0200307686, -0.0183213297, 0.0228706431, 0.00227810349, 0.0216850638, 0.0180318262, 0.00125019974, -0.00296050077, 0.0210922752, 0.0257105175, 0.00130103494, -0.00326895784, 0.012779437, 0.0222916398, -0.0258759484, -0.00191794953, 0.00418743677, 0.00035476897, -0.0193139073, -0.00436665211, 0.00011459447, 0.000507059, -0.0176733956, 0.011449107, 0.0144061614, -0.0178663973, 0.0187486894, 0.0138064791, -0.0142131606, -0.00482158363, 0.00411161501, 0.00774072716, 0.0305217616, -0.0149024501, 0.00760976179, -0.00648621935, 0.0161983147, 0.0124485781, -0.0153987389, -0.00557635631, 0.0240837932, -0.0331686363, 0.0134756202, 0.00296050077, 0.0205408428, -0.0173563231, 0.00732026, -0.00732715288, 0.00157416612, 0.0111044627, 0.0161156, 0.0114628933, 0.00780276302, 0.00546262367, 0.0125450781, -0.0128414733, 0.00645175483, 0.00812672917, 0.0101877069, -0.0110699981, -0.0136410501, 0.0054178196, 0.0116972513, 0.00393584603, 0.00346195907, 0.0177147537, -0.00571766077, -0.0169289634, -0.0133791193, 0.00837487355, 0.00208510226, -0.002879509, -0.0107460311, -0.00519724702, 0.0173011795, 0.00865748245, 0.000223373048, -0.017383894, -0.0347953588, 0.00886427, 0.0243732948, 0.0197688378, 0.003375798, 0.0312110521, 0.00244525634, -0.00485260179, -0.0010098099, 0.00740986783, 0.0217953511, -0.0002339278, -0.0242354367, -0.00780276302, -0.0176044665, -0.0354295075, 0.0127518652, 0.00414952589, 0.00399788236, -0.00579692936, -0.0029191433, 0.00735472469, -0.00820944458, -0.00643107574, -0.00741676055]
18 Apr, 2023
Framing in Data Link Layer 18 Apr, 2023 Frames are the units of digital transmission, particularly in computer networks and telecommunications. Frames are comparable to the packets of energy called photons in the case of light energy. Frame is continuously used in Time Division Multiplexing process. Framing is a point-to-point connection between two computers or devices consisting of a wire in which data is transmitted as a stream of bits. However, these bits must be framed into discernible blocks of information. Framing is a function of the data link layer. It provides a way for a sender to transmit a set of bits that are meaningful to the receiver. Ethernet, token ring, frame relay, and other data link layer technologies have their own frame structures. Frames have headers that contain information such as error-checking codes. At the data link layer, it extracts the message from the sender and provides it to the receiver by providing the sender’s and receiver’s addresses. The advantage of using frames is that data is broken up into recoverable chunks that can easily be checked for corruption. The process of dividing the data into frames and reassembling it is transparent to the user and is handled by the data link layer. Framing is an important aspect of data link layer protocol design because it allows the transmission of data to be organized and controlled, ensuring that the data is delivered accurately and efficiently. Problems in Framing Detecting start of the frame: When a frame is transmitted, every station must be able to detect it. Station detects frames by looking out for a special sequence of bits that marks the beginning of the frame i.e. SFD (Starting Frame Delimiter). How does the station detect a frame: Every station listens to link for SFD pattern through a sequential circuit. If SFD is detected, sequential circuit alerts station. Station checks destination address to accept or reject frame. Detecting end of frame: When to stop reading the frame. Handling errors: Framing errors may occur due to noise or other transmission errors, which can cause a station to misinterpret the frame. Therefore, error detection and correction mechanisms, such as cyclic redundancy check (CRC), are used to ensure the integrity of the frame. Framing overhead: Every frame has a header and a trailer that contains control information such as source and destination address, error detection code, and other protocol-related information. This overhead reduces the available bandwidth for data transmission, especially for small-sized frames. Framing incompatibility: Different networking devices and protocols may use different framing methods, which can lead to framing incompatibility issues. For example, if a device using one framing method sends data to a device using a different framing method, the receiving device may not be able to correctly interpret the frame. Framing synchronization: Stations must be synchronized with each other to avoid collisions and ensure reliable communication. Synchronization requires that all stations agree on the frame boundaries and timing, which can be challenging in complex networks with many devices and varying traffic loads. Framing efficiency: Framing should be designed to minimize the amount of data overhead while maximizing the available bandwidth for data transmission. Inefficient framing methods can lead to lower network performance and higher latency. Types of framing There are two types of framing: 1. Fixed-size: The frame is of fixed size and there is no need to provide boundaries to the frame, the length of the frame itself acts as a delimiter. Drawback: It suffers from internal fragmentation if the data size is less than the frame size Solution: Padding 2. Variable size: In this, there is a need to define the end of the frame as well as the beginning of the next frame to distinguish. This can be done in two ways: Length field – We can introduce a length field in the frame to indicate the length of the frame. Used in Ethernet(802.3). The problem with this is that sometimes the length field might get corrupted. End Delimiter (ED) – We can introduce an ED(pattern) to indicate the end of the frame. Used in Token Ring. The problem with this is that ED can occur in the data. This can be solved by: 1. Character/Byte Stuffing: Used when frames consist of characters. If data contains ED then, a byte is stuffed into data to differentiate it from ED. Let ED = “$” –> if data contains ‘$’ anywhere, it can be escaped using ‘\O’ character. –> if data contains ‘\O$’ then, use ‘\O\O\O$'($ is escaped using \O and \O is escaped using \O). Disadvantage – It is very costly and obsolete method. 2. Bit Stuffing: Let ED = 01111 and if data = 01111 –> Sender stuffs a bit to break the pattern i.e. here appends a 0 in data = 011101. –> Receiver receives the frame. –> If data contains 011101, receiver removes the 0 and reads the data. Examples: If Data –> 011100011110 and ED –> 0111 then, find data after bit stuffing. --> 011010001101100 If Data –> 110001001 and ED –> 1000 then, find data after bit stuffing? --> 11001010011 framing in the Data Link Layer also presents some challenges, which include: Variable frame length: The length of frames can vary depending on the data being transmitted, which can lead to inefficiencies in transmission. To address this issue, protocols such as HDLC and PPP use a flag sequence to mark the start and end of each frame. Bit stuffing: Bit stuffing is a technique used to prevent data from being interpreted as control characters by inserting extra bits into the data stream. However, bit stuffing can lead to issues with synchronization and increase the overhead of the transmission. Synchronization: Synchronization is critical for ensuring that data frames are transmitted and received correctly. However, synchronization can be challenging, particularly in high-speed networks where frames are transmitted rapidly. Error detection: Data Link Layer protocols use various techniques to detect errors in the transmitted data, such as checksums and CRCs. However, these techniques are not foolproof and can miss some types of errors. Efficiency: Efficient use of available bandwidth is critical for ensuring that data is transmitted quickly and reliably. However, the overhead associated with framing and error detection can reduce the overall efficiency of the transmission. Gate CS 2014 Gate IT 2004 Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System/Introduction of System Call/How much Stack size required for BIOS interrupt call?/Difference between Interrupt and Polling/Difference between Difference Engine and Analytical Engine/Difference Between Store‑and‑Forward Switching and Cut‑Through Switching/Difference between Message and Packet Switching/How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?/Types of Node Devices in a Computer Network: End devices and Intermediary Devices/Types of Errors in Computer Network/Difference between Storage Area Network (SAN) and Network Attached Storage (NAS)/Difference Between Network Security and Network Administration/Internet Administration/Internet Telephony Protocol | H.323/IPsec (Internet Protocol Security) Tunnel and Transport Modes/Real-time Transport Control Protocol (RTCP)/Cisco Discovery Protocol (CDP) and Link Layer Discovery Protocol (LLDP) in Data Link Layer/Data Link Layer Communication Protocols in IoT/Network Layer Protocols/Which Layer Called Error Detection Layer?/Error Control in Data Link Layer/Design Issues in Data Link Layer/Framing in Data Link Layer
https://www.geeksforgeeks.org/framing-in-data-link-layer?ref=asr10
PHP
Framing in Data Link Layer
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, Difference between Difference Engine and Analytical Engine, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Difference between Interrupt and Polling, Types of Node Devices in a Computer Network: End devices and Intermediary Devices, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, Framing in Data Link Layer, Types of Errors in Computer Network, jQWidgets jqxToolBar close Event, How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, Difference between Message and Packet Switching, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, Difference Between Network Security and Network Administration, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, Introduction of System Call, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Data Link Layer Communication Protocols in IoT, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Difference Between Store‑and‑Forward Switching and Cut‑Through Switching, Longest Common Prefix using Binary Search, Design Issues in Data Link Layer, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, IPsec (Internet Protocol Security) Tunnel and Transport Modes, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, Internet Telephony Protocol | H.323, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, Difference between Storage Area Network (SAN) and Network Attached Storage (NAS), jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, Error Control in Data Link Layer, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, Real-time Transport Control Protocol (RTCP), unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, Internet Administration, Which Layer Called Error Detection Layer?, Cisco Discovery Protocol (CDP) and Link Layer Discovery Protocol (LLDP) in Data Link Layer, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, Network Layer Protocols, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How much Stack size required for BIOS interrupt call?, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.038622465, 0.0177458525, -0.0135178631, 0.0170289967, 0.0392954312, 0.0295081493, -0.0111551629, 0.0268894285, -0.0454984345, -0.023466073, 0.0129619334, -0.0105407145, 0.0421628579, -0.00322402501, -0.0278988797, -0.00814875495, -0.00094544579, 0.0226614382, -0.0059616114, -0.0362524502, 0.0338824354, 9.77219679e-05, -0.0330631696, -0.0418117456, -0.0207010563, 0.00731486082, 0.0172045529, -0.0128156366, -0.0366035625, 0.0111039588, 0.0315124206, 0.0166193638, -0.0113160899, -0.0352868885, -0.0332387276, -0.0193404928, 0.00251814094, -0.000168698985, 0.00697837723, 0.0216373578, -0.00588114792, 0.0106138634, -0.0102627501, 0.00825116318, -0.0299031511, 0.0103797875, -0.0254996046, -0.00937765185, 0.0231734794, -0.0662433803, -0.0376276448, -0.0599233396, -0.0165901054, 0.00247790921, 0.0149442609, 0.021081429, 0.0562366508, 0.0257483106, 0.0211253185, -0.0218714345, 0.0458495468, 0.00464493688, -0.0149223162, -0.0263773892, 0.00577508286, 0.0113746086, -0.0552710891, 0.0203060545, 0.0547151603, -0.0136861047, -0.0434210151, -0.023641631, 0.000172927888, -0.0228516255, -0.00793662388, 0.000168813276, 0.0217982847, 0.0385639481, 0.0176434442, 0.014212775, -0.00619934453, 0.0239488538, -0.0131374905, 0.0087632034, 0.0299324114, -0.00501068, -0.00448766723, -0.0557099804, 0.0341457687, 0.0252216402, -0.00798782799, 0.0374228284, -0.0128887845, -0.0608011223, -0.0264212769, -0.00784884579, -0.0126693388, -0.00770254852, 0.0330046527, 0.0125742462, 0.0118354447, 0.0141469408, -0.0126254503, -0.0152588, 0.0282792524, -0.00260774791, -0.0305468589, 0.0351405926, -0.00233526924, 0.050735876, -0.0131813791, -0.00807560608, -0.0128668407, 0.0339702144, -0.00633466942, -0.0121938735, 0.000951846247, -0.0693448782, 0.00311247329, 0.0364865251, 0.0111259036, -0.000444606383, -0.0315416791, 0.052549962, -0.0468151085, 0.0619715, 0.0165169556, -0.0134593444, -0.0175702963, -0.0103724729, -0.0326535404, -0.00742824143, 0.00122341048, -0.00346358656, 0.00213411055, 0.0095020039, -0.0124133192, -0.0146516664, 0.0280451775, -0.0115647949, 0.0426895283, -0.0090411678, -0.00841209, -0.0172777, 0.00272661448, 0.00532156136, -0.00377446832, 0.0579337, -0.0535155237, 0.0201597568, -0.0390028395, -0.0250021946, 0.00845597871, 0.0108771985, 0.00426822109, -0.0294642597, 0.0106943268, 0.016721772, -0.0274307281, -0.0473710373, 0.00164584373, -0.0313953832, 0.0158439893, -0.00566901732, -0.0165608451, 0.0099921, 0.0643707737, -0.0111112734, -0.0319220535, 0.0307224151, -0.0165901054, 0.0554466471, 0.0182725228, 0.00141085382, -0.0281475838, 0.0215203203, 0.00363548589, 0.00975802448, -0.0233490355, 0.0183017813, -0.0221347697, -0.00214325427, -0.00212862459, 0.0283962898, 0.0187406745, 0.0378032, 0.0289961081, -0.0225736611, 0.009677561, -0.0442402773, -0.0139786992, 0.0132398978, 0.0569388755, -0.00210850872, 0.0123035964, -0.0436258316, -0.0310735293, 0.00966293085, 0.0212862454, 0.0115135908, 0.00636758655, -0.00367388898, 0.0107162716, -0.0121572986, -0.0241975598, -0.0412265547, -0.00954589341, 0.000247790915, 0.0139348097, -0.0146004623, -0.0555344224, -0.00801708736, -0.00091207173, -0.0029680049, 0.013876291, -0.0277086925, -0.038534686, -0.0190332681, -0.0185943767, -0.0168973282, 0.0136934193, 0.0167802908, 0.0122158173, -0.0032386547, -0.0338239148, -0.0195891969, -0.00834625587, -0.0305468589, -0.0562073924, -0.00152331975, -0.0342042893, 0.0344676226, 0.0180091877, -0.0039244229, -0.0177751128, -0.014658981, -0.0221347697, 0.0365743041, -0.00533253374, 0.00325511303, -0.0288644414, 0.0371887535, -0.0286888834, -0.040612109, -0.000374200841, 0.047254, -0.00921672489, 0.0519062541, -0.0163267702, 0.00489364192, 0.00355867972, 0.0240073726, 0.0167364012, 0.0384761691, 0.000500610797, -0.0128522106, -0.0317464955, -0.0324194618, -0.0119524831, 0.00101585127, -0.00346907275, -0.0165315848, 0.0152149107, -0.00123712583, -0.0446499102, -0.00524475519, 0.017789742, -0.00223469, 0.0394124687, -0.0295520388, 0.00873394404, -0.0572022125, 0.0220616199, -0.0223103259, 0.0184627082, -0.0029113146, -0.0133715654, -0.00948737469, 0.0373350494, 0.0559147969, -0.0219445825, -0.0241536703, -0.0113380346, -0.0126108201, -0.025119232, -0.0424261913, -0.0257922, -0.0107674748, -0.0280451775, -0.0311613064, -0.0288059227, -0.0152588, -0.0226906985, 0.012969248, 0.0209497623, -0.00452424167, -0.00580068445, 0.003789098, 0.0104895104, -0.0162389912, -0.00512040267, -0.0136568453, 1.39368103e-05, -0.0278842505, -0.0341750309, -0.0092240395, -0.0186528955, 0.00942154, 0.0127498023, 0.00633832673, 0.00651022606, -0.0347602181, -0.0409047, -0.0279281382, 0.00157543819, -0.0222518072, 0.00915820617, -0.00404146081, -0.0223542154, -0.0407876633, 0.0280744359, 0.0043121106, 0.0058921203, 0.0735582411, 0.0369546786, -0.0422213785, 0.0279866569, 0.00370497699, -0.0200866088, 0.015975656, -0.0644878149, 0.0537203364, 0.00682110758, -0.0190625265, -0.00932644773, 0.00110911578, -0.032039091, 0.0324194618, -0.0197793841, 0.00109357166, -8.80640655e-05, -0.041841004, -0.0351113304, -0.0359013379, -0.0214618016, 0.0144468499, 0.0121572986, 0.00769523345, 0.00180677068, -0.0345261432, 0.00111734495, 0.00415484095, 0.0352576301, 0.0217982847, 0.0270796157, -0.044152502, -0.000182642936, -0.0162682515, -0.0137811983, 0.00140171021, 0.0077171782, -0.0237440392, -0.00162847096, 0.031044269, -0.0371887535, -0.0440939814, -0.0290692579, -0.0265529454, -0.0142712938, 0.00226943567, -0.0254264567, 0.00747213047, -0.0251777507, -0.0133861955, -0.00991163682, 0.00631272513, 0.0225882903, 0.0140957367, -0.00112557423, 0.0273283198, -0.00944348518, 0.0395587683, -0.0149223162, -0.00289119873, -0.0299324114, 0.0128741553, -0.00218348601, 0.0381835736, -0.0533692241, 0.0386809856, 0.00833894126, 0.0205547586, -0.0121719288, 0.0192819741, 0.0447084308, -0.0102993241, -0.00743189873, -0.0103944177, 0.0237879269, -0.00733314781, -0.00100213592, 0.0298300032, -0.0155367646, 0.0112575712, -0.0153612075, 0.0116891479, 0.0114331273, -0.0179799274, 0.00857301708, -0.00086772535, 0.0118061854, -0.00549711799, 0.0291277766, -0.0120110018, -0.00241390406, 0.0271088742, -0.0461714, 0.0367498621, 0.00403780304, -0.00474734465, 0.0265529454, 0.0194721594, 0.00174642308, -0.000312481716, 0.0597185232, 0.0460836217, -0.0316294581, 0.0232905168, -0.0195453074, -0.0324194618, 0.0160195455, -0.0188577119, 0.00768060377, -0.0075343065, -0.00601647329, -0.0422798954, 0.0137080494, 0.0222079176, -0.0549492352, 0.0247242302, 0.00885098148, 0.0196769759, 0.0155513939, -0.0295374077, -0.0456447303, 0.0249583051, -0.0408461839, -0.0401732177, -0.0219445825, -0.0245340429, -0.0278549902, -0.0140372179, -0.0351991095, 0.0124791525, 0.0443573147, 0.000122866797, 0.0340872519, -0.0481317863, 0.0399976596, -0.0266992413, 0.0252947882, 0.0411387794, 0.0297275949, 0.00306309806, 0.0486291945, 0.00730023114, -0.0250753425, 0.00362817105, -0.00564707257, 0.00427919347, -0.00111643062, -0.0277964715, -0.00223469, 0.00685768202, 0.0392661728, 0.000745658646, -0.0196184572, -0.0352868885, 0.0271673929, -0.04365509, 0.0103724729, 0.0518184751, 0.00691985851, -0.00371046318, -0.00113380339, 0.0182725228, 0.0288351811, -0.00419873, 0.0185651165, -0.033940956, 0.0101822866, 0.0198232736, -0.00507285586, -0.0181701146, -0.016633993, 0.0143590719, -0.0271527637, 0.00472174259, -0.0145273134, 0.067296721, -0.0384176485, 0.0392954312, -0.00192015094, 0.0455276929, -0.00729657384, -0.0229247734, 0.0433624946, 0.0380957946, 0.00717222085, -0.0459958464, -0.0264359079, 0.0249144156, 0.00607499201, 0.029478889, -0.00947274454, 0.019516049, -0.0192527138, 0.00308138505, -0.0101749711, 0.011901279, 0.0106723821, 0.0114184981, 0.0210521687, 0.0093995966, -0.0268162806, -0.0236562602, 0.0232173689, -0.0164730661, -0.0146736111, -0.0269772075, -0.0106723821, -0.0021560553, 0.0370424539, -0.0207595751, -0.0182578936, 0.00770986313, 0.00900459383, 0.0567340627, -0.00527767232, -0.00674795918, 0.00655045779, 0.0362817086, -0.00817801431, 0.0132033238, -0.00347273028, 0.030137226, 0.00395368226, -0.0183895603, -0.0213008747, 0.00098567747, 0.0335605815, -0.00959709752, -0.0110381255, 0.0178775191, -0.0272112824, 0.00620300183, 0.00121426687, 0.00813412573, -0.00315453368, 0.0213301349, -0.00174276566, 0.0151856514, 0.0259092376, 0.0303713027, 0.0075343065, 0.00380372768, 0.00067616743, 0.0265822038, -0.0119232228, 0.00895339, -0.0173362195, -0.021578839, -0.0278696194, 0.00128101499, 0.00974339433, 0.0318927951, 0.0560025759, -0.0431576781, 0.0090777427, 0.043479532, 0.00710638752, -0.0292155538, 0.0214325432, -0.00836820062, 0.027503876, -0.00533984834, 0.0184334498, -0.0244170055, -0.00508382823, 0.00278330455, -0.0180530772, 0.0239488538, -0.0189308599, -0.000140353892, -0.00560684083, 0.0372472703, -0.00329717365, 0.0273136906, 0.00454252865, -0.0207742043, 0.000307452749, 0.0412265547, 0.0238318164, 0.00066702388, 0.0175117776, -0.00616642786, -0.0164291784, 0.00701495167, -0.0240805224, -0.00433039758, -0.0155221345, -0.00160835509, 0.0434502736, 0.00626152102, -0.0150539838, -0.00969950575, 0.0193990115, -0.00149954646, -0.00540568214, 0.0041072946, 0.0165901054, -0.0035934255, 0.0245633032, 0.0176727045, 0.0290107373, 0.0143956458, -0.0115135908, -0.019106416, -0.00822190382, -0.0251631215, -0.00139165227, 0.00858033169, -0.0225297716, 0.0106138634, -0.0315416791, -0.000456721638, -0.0276062842, -0.016721772, 0.0332387276, -0.0378324613, -0.0285572167, 0.0251631215, 0.00418044301, 0.0919916928, 0.00296434737, 0.0512040257, 0.0221640281, 0.0344676226, 0.018609006, 0.0160926934, 0.0123401703, 0.0175264068, 0.010496825, 0.0289961081, -0.0043121106, -0.0373057909, 0.00116672029, -0.0241390411, -0.0113453493, -0.0128814699, 0.00207742047, -0.00985311717, 0.00295520388, -0.000454435736, 0.00368486112, -0.00249253889, 0.0184334498, 0.00218165736, -0.0136129558, 0.0231588501, 0.000780404196, -0.0293764807, 0.00159829715, 0.00517526409, -0.030137226, -0.0182286333, -0.0196769759, 0.0440354608, 0.0147175, -0.0292740725, 0.00880709291, 0.00232429709, 0.00528864423, 0.0175117776, -0.0260994229, 0.0100652482, -0.0534277447, 0.00270832726, -0.0110673849, -0.035667263, 0.00468516862, 0.00990432128, -0.0136714745, -0.00026333498, -0.0176141858, 0.00811218098, -0.00476563163, 0.0353161469, 0.019267343, 0.00371960667, 0.0138250869, 0.0306638964, -0.0143663865, -0.022895515, -0.0159463976, 0.0463177, -0.00458276039, -0.0297714844, -0.0287766624, -0.00495947571, -0.0104529364, -0.00948006, 0.00958978292, 0.0208180938, 0.0101676565, 0.000459921866, -0.0220469907, -0.000667938206, -0.0116452584, -0.0131594343, -0.00227492163, -0.00125267, 0.0161951017, -0.044064723, -0.0195453074, 0.00508017093, -0.0204816107, 0.00920941, -0.00640050322, -0.00315819122, -0.0269186888, -0.0245047845, -0.0189454891, 0.00852912758, 0.00111825939, -0.00141816866, 0.000886926893, 0.00738800969, 0.0148857422, -0.0265675746, 0.0250899736, -0.00608230662, -0.0105187697, 0.0105772885, -0.00174825173, -0.0133935101, 0.0375691243, -0.000394773902, -0.0532814451, -0.0145492582, -0.0104017323, -0.016970478, 0.0047729467, -0.0204523504, -0.0143224979, -0.0011127732, 0.0459080674, 0.00633832673, 0.0288790707, 0.00808292162, 0.000997564173, 0.0381835736, -0.00499970745, 0.0063456418, 0.0325657614, 0.0064114756, -0.0113526639, -0.00666749571, 0.0220177304, -0.012274337, 0.0352283716, 0.028410919, -0.018448079, -0.0457032509, -0.0154343564, 0.0184188206, 0.00863153581, -0.00200244319, 0.00649559638, -0.00885829609, -0.0615618676, 0.0450302847, -0.0138031421, -0.00360439764, -0.00187626178, -0.0511162467, 0.0375106074, -0.00302835251, -0.017701963, 0.0288351811, 0.0204816107, 0.0251338612, 0.00593601, 0.00849255361, 0.0196916051, -0.0361354128, -0.00661629159, 0.0202914234, -0.0285133272, -0.0222225469, 0.0398513637, -0.0141981449, -0.00267541036, 0.00280159176, -0.00702958135, 0.00243767747, -0.0117037771, -0.0552710891, -0.0296837054, 0.00292228698, -0.00172264979, 0.0178482607, 0.0246657114, 0.00111094455, 0.0120402612, 0.0159610268, 0.025119232, -0.0127278576, -0.00213959673, -0.0196477156, -0.0340287313, -0.0182871521, 0.0276209153, -0.00919478, -0.0326242782, -0.0249436758, 0.00897533447, -0.00196769764, 0.0371594951, -0.00861690566, -0.0153026888, -0.0411095172, -0.0368669, -0.00105242559, -0.00661629159, -0.0092240395, -0.0304883402, 0.0188869704, 0.0179214086, 0.0295227785, -0.022646809, 0.0144029614, -0.015317319, -0.000510211568, -0.0273429491, 0.0313661247, 0.00689059915, 0.0202767942, 0.0237001497, -0.0208473541, 0.0216666181, 0.0339116938, 0.00435965694, 0.0114770168, -0.0143224979, 0.0360476337, 0.00942885596, 0.00186346075, -0.0164584368, -0.0184627082, -0.0225005113, 0.0214471724, -0.0188138224, 0.0263627581, 0.0327998362, 0.00895339, -0.00846329425, -0.00346175791, 0.00174093689, -0.0139933284, -0.00102316611, -0.0213740226, -0.0147394445, 0.021739766, 0.00631638244, 0.00160561199, 0.00571656367, 0.0119890571, -0.00148400245, -0.0253094193, 0.010460251, 0.0428065658, -0.00882903673, 0.0134812882, 0.0331802107, -0.0047034556, -0.0264651664, -0.0181115959, -0.019355122, -0.0473710373, -0.000704969745, -0.0061371685, -0.0243584868, 0.0263481289, -0.00159738271, 0.0183895603, -0.0331509486, -0.00961904228, 0.000999392825, -0.000142068311, -0.00803903211, -0.0263920184, -0.0313368626, 0.00592503743, 0.0315416791, -0.0399098806, -0.00560318353, 0.00968487561, -0.0151710212, -0.0225882903, 0.00978728384, 0.000213502499, 0.00220725918, -0.0215349495, 0.0291131455, 0.0255434942, -0.00683208, -0.0141688855, 0.0137080494, -0.00661263429, -0.0124572078, 0.00367754628, -0.0110600693, 0.018609006, -0.00026904972, 0.00290217111, -0.0240951516, -0.0292887036, 0.00165315857, 0.0156538021, 0.00645170733, 0.00394271, 0.00250534, -0.0155221345, -0.00100579334, 0.0140445326, -0.0610352, 0.0293764807, -0.0320683494, 0.007783012, -0.0261433125, 0.0610352, 0.0284401793, -0.0134008247, 0.0141542554, -0.00181865727, 0.00571290636, -0.00600550091, -0.00683208, -0.0170143656, -0.00795856863, -0.0193112325, 0.00306675537, -0.00522281043, 0.00792930927, -0.035169851, -0.0237879269, -0.0346431807, -0.013093601, 0.0248412676, 0.0489803068, -0.0025894607, 0.0166632533, 0.00237915851, -0.0047692894, 0.0283670314, 0.0105919186, -0.0306346379, -0.0288498104, -0.0136714745, 0.00844134949, -0.0025565438, 0.00803903211, 0.012808321, 0.00752699189, -0.0125449868, 0.0107016414, -0.0216958765, -0.00150960439, 0.00621763151, 0.0308394525, -0.0121572986, 0.0138177723, 0.0155221345, 0.00518257916, -0.0341457687, 0.0284694377, 0.00495947571, -0.0120183164, -0.014249349, -0.0369546786, -0.00948737469, -0.0214764308, -0.0260994229, -0.0289375894, -0.00950931944, 0.00875588879, -0.0133496206, -0.0363694876, -0.00538008, -0.0260409042, 0.0073989816, -0.00952394865, 0.0262310915, -0.0165462159, -0.00942154, 0.0113234045, 0.0215349495, 0.000299452106, 0.0289229602, 0.00859496184, -0.0401146971, 0.00241207541, -0.0211253185, -0.0062066596, -0.000183214404, -0.0455862135, 0.0183310416, -0.0133788809, 0.0202767942, -0.0146150924, 0.000353627809, -0.0140372179, -0.00112008804, 0.0320976079, 0.0257629398, 0.00703323865, 0.0013532493, -0.00170893432, 0.0118573895, 0.0158001, -0.0103578428, -0.0318342745, -0.000907957088, -0.0171460342, 0.00604573265, 0.00501799444, -0.0621470585, -0.000379687, 0.0090850573, -0.0106504373, 0.00105333992, -0.0132984174, 0.00315636257, -0.0198817924, -0.0193843804, 0.00136513589, 0.0109503465, 0.001996957, 0.000771260646, 0.00434137, -0.0134300841, -0.00776838232, -0.0135983266, -0.0183456708, 0.0305761192, -0.00781958643, 0.0101018231, 0.029405741, 0.0112063671, -0.0228223652, -0.000146068633, 0.0245633032, 0.0104383063, -0.0470491834, 0.0156830624, 0.000437977287, 0.0122523922, -0.00887292624, 0.000286422524, 0.0140079586, -0.00984580256, -0.0226321798, -0.024870526, -0.0233636647, 0.0158586185, -0.0183310416, -0.00407072, -0.0326242782, -0.0133349914, -0.0111478483, -0.00909237191, 0.0213740226, -0.00589943537, 0.000797319808, 0.0156245427, 0.00793662388, -0.0195745677, -0.00279061939, -0.0517892167, -0.0212277267, 0.00405974779, 0.0162828807, -0.00513503235, 0.00773912296, 0.0307224151, -0.000677539, 0.105216958, 0.0067296722, 0.00200975803, -0.0336191021, -0.00110362959, 0.00197501248, -0.0189308599, 0.0308687128, 0.0110893287, 0.0123913744, 0.0294642597, 0.00938496646, 0.00971413497, 0.00983848795, -0.0135471225, 0.00633832673, -0.0197793841, 0.0084486641, -0.0131960092, -0.00661629159, -0.00821458921, 0.00537276547, -0.0026132341, -0.0131594343, 0.00849986821, -0.00546785863, 0.0158586185, -0.0102993241, -0.0307809338, -0.0092240395, 0.025367938, -0.0377739407, 0.00835357141, 0.0089095, -0.0119597977, 0.0265968349, 0.0183895603, -0.0333850235, -0.0137811983, 0.0261725727, -0.0161658432, 0.00225480576, -0.00762208505, -0.00120146584, 0.00063776446, -0.00934107695, 0.00556295179, 0.0141396262, -0.0213301349, -0.000902013795, 0.0124133192, -0.0081707, 0.0122816516, 0.01679492, -0.00527401455, 0.0105041405, 0.00649559638, 0.0208034646, 0.0248266384, -0.00893144496, 0.00217068498, 0.012310911, 0.0243584868, 0.0167656615, 0.0161219537, -0.00670407, -0.0226029195, 0.0277233236, -0.0135544371, 0.0192527138, -0.0189601202, 0.0344968848, -0.0014044533, -0.00935570709, -0.0435380526, 0.025119232, -0.0137958275, -0.0268016495, 0.0118647041, 0.00397928432, 0.0233344063, 0.017628815, 0.0113014597, 0.00926061347, 0.0192088243, -0.000655137235, -0.0268016495, 0.0070881, 0.0195306782, 0.00285645318, -0.016970478, -0.0201597568, -0.00226212083, 0.00351661933, 0.0123255402, -0.00345627172, 0.0199549403, 0.0123840598, -0.000666109496, -0.00423896173, 0.00555197941, 0.00761477, 0.0107747903, 0.00114934752, -0.0221786574, -0.021827545, 0.0226614382, -0.00173087895, -0.0089095, -0.0289668497, 0.00161658425, 0.011528221, -0.00581165683, 0.0324779823, 0.0180530772, -0.0146882404, -0.00276136, 0.0194282699, 0.00723805465, -0.00767328916, -0.0276062842, 0.057407029, 0.027664803, -0.0232173689, -0.0167656615, 0.00164401496, -0.000828865159, 0.00245962199, -0.00268089655, 0.00198415597, 0.00373606523, 0.00560684083, 0.000528498669, 0.0108186789, -0.00109631475, 0.0305761192, 0.0180823356, -0.013715364, 0.021915324, -0.0249875654, 0.0238171872, 0.00662360666, 0.0249436758, -0.0319220535, 0.0139640691, 0.0136422152, -0.024387747, -0.00719782291, -0.00509845791, 0.00816338509, -0.0434502736, -0.0207449459, 0.023466073, -0.0148125933, 0.00996284094, 0.011740352, 0.00913626142, -0.00980191398, 0.0294203702, 0.00869005453, 0.00480586337, -0.00882903673, 0.0131960092, -0.00228040782, -0.0141103668, -0.000263106398, 0.0276355445, -0.00437794439, -0.00295154634, -0.0311613064, 0.00931181759, 0.00813412573, -0.000797777029, -0.00476197433, 0.0150393536, -6.70338413e-05, 0.0263188686, -0.00101676572, 0.0120841498, 0.0077171782, 0.0187845621, -0.00944348518, 0.0287327729, 0.0234221853, -0.00151691923, -0.0213740226, 0.0110527547, 0.0032093951, 0.00597258378, 0.00161932735, 0.0147979632, 0.0229979232, 0.0200427193, -0.00814875495, 0.0150978733, -0.00175190915, 0.00285828183, 0.00847792346, -0.00431942521, -0.00729657384, -0.0222079176, -0.000879612, 0.000798691355, 0.0106431227, -7.88633406e-05, -0.0165315848, -0.0089095, -0.00754162157, -0.00402683113, 5.9433245e-05, -0.00187626178, 0.0172338113, 0.0155806532, -0.00836820062, -0.0156538021, -0.00288571254, 0.0154636158, -0.00667481031, 0.0131374905, 0.0107382154, -0.00495947571, -0.0200280882, 0.0214471724, 0.0212423559, -0.0178775191, -0.0199549403, 0.0150539838, 0.0130643416, 0.00883635227, -0.0107162716, 0.00119323668, 0.0311027877, 0.0283962898, 0.00503628189, -0.0049741054, -0.0147321299, 0.00973608, -0.00675161649, -0.013217954, 0.00369766215, 0.012435263, 0.00118683616, 0.0155806532, -0.0138616618, -0.0345846638, -7.9149082e-05, 0.0111697922, -0.0039975713, -0.0265529454, -0.0092240395, 0.0138031421, 0.000191215033, 0.00609327899, -0.00312161678, 0.0205840189, 0.0222225469, -0.0358135588, 0.011615999, 0.017628815, -0.0420458205, 0.00604207488, -0.0202767942, -0.00294057396, -0.0175556652, 0.00942885596, -0.00149680336, -0.0367791206, -0.00478391908, 0.00701860897, -0.000704055361, -0.00932644773, 0.0278111, 0.00525938487, 0.016063435, -0.00454252865, -0.0114550721, 0.00253459928, 0.0144029614, -0.0134374, 0.00147303008, -0.0155221345, 0.023392925, -0.00538008, -0.00866079517, -0.0155221345, 0.0147028705, -0.0027156421, -0.0162536204, -0.000613076787, -0.0184041895, -0.00896070432, 0.0199988298, 0.0304298215, -0.0155952834, -0.0200280882, 0.0228223652, 0.0266553536, 0.00435965694, -0.00260043307, 0.0152002806, 0.00768060377, 0.0124937827, 0.0152295399, 0.0302835237, -0.0168388095, -0.0175117776, 0.00244316342, -0.0159463976, 0.0233636647, -0.0146370362, 0.0154343564, -0.0299909301, 0.0101969158, 0.000602561689, 0.0114404419, -0.00888755638, 0.0142566636, -0.0138909211, 0.012310911, 0.0358720794, -0.006279808, -0.0166047346, 0.0245633032, 0.00663092127, -0.0108186789, 0.0165315848, -0.0115647949, 0.0124425786, -0.0115940543, -0.0101018231, 0.0302835237, 0.0124060037, -0.0154343564, -0.00202804524, -0.0245633032, 0.00911431666, -0.0275770258, -0.01259619, 0.0173508506, 0.003993914, -0.0464639962, 0.000964647275, -0.0268016495, 0.0155075053, -0.00668578269, -0.010335898, 0.0107674748, 0.0317757539, 0.00527035724, 0.0274599884, 0.00457178801, 0.0152734295, -0.00145474297, 0.00457178801, -0.0323024243, 0.0131667498, -0.00489729922, 0.0080317175, -0.0120987799, -0.00943617057, -0.00678453362, 0.0107674748, -0.000870468444, 0.0190040078, -0.00297349086, -0.00457544532, 0.0213447642, -0.000365285872, 0.0256312732, 0.0210521687, 0.000515697699, -0.00688328408, -0.0189308599, 0.0199842, 0.00731851812, 0.00455350103, 0.00787810516, 0.0240073726, 0.00158549612, -0.0196769759, 0.00519355107, -0.0433624946, -0.00365560176, -0.0110088652, -0.0101676565, -0.00590309268, -0.0143663865, 0.023641631, 0.0240366329, 0.0107601602, -0.00581531459, -0.0144834248, 0.0189454891, 0.00906311255, -0.00964098703, 0.00436331471, 0.00233526924, -0.0148052787, -0.015814729, -0.00340506784, 0.00640050322, 0.0139640691, -0.0384176485, 0.0118208155, 0.00650291145, 0.00758551061, -0.014000644, -0.00809023622, 0.0140884221, -0.0307516754, -0.00997015554, -0.00768060377, 0.00763671473, -0.00122615357, -0.0029113146, -0.0164730661, 0.0107747903, 0.0329461321, -0.0162097309, 0.000243447706, -0.0145273134, -0.0129107293, -0.00368120382, -0.00730754621, -0.0318342745, -0.0287181437, 0.0207449459, -0.0193404928, 0.0151271326, -0.0126547096, -0.0292594433, -0.0024870527, 0.00313441781, 0.0217690263, 0.00096739037, -0.00651388383, 0.0243584868, -0.00722342497, -0.00202438771, 0.0147101851, -0.00363731454, -0.00207376317, -0.0222371779, -0.00225480576, -0.0135251777, -0.0216812473, 0.0015909822, 0.0139274951, -0.0163267702, 0.00147120142, -0.00271929963, -0.0231588501, -0.0247827489, -0.0166047346, -0.000388373388, -0.0119597977, -0.00427187886, -0.0121719288, -0.00873394404, -0.0195306782, 0.00412558159, -0.0122597069, 0.0101530273, -0.000498324924, 0.0186236352, -0.000534442, 0.0112722, -0.00282719382, -0.0224566236, 0.0205108691, 0.00545322895, 0.00765865948, -0.00829505268, -0.00742824143, 0.0151417619, -0.015405097, 0.000346541521, -0.0137665682, 0.0264505371, 0.0293033328, -0.000191900806, 0.0289961081, 0.0176580735, 0.0349357761, 0.00913626142, 0.0576703623, -0.00115849113, 0.00641879, 0.00670041237, -0.00822921842, 0.00137793692, -0.00808292162, -0.0150539838, -0.00838283077, -0.00444377819, 0.0201158673, 0.00590675, -0.0346431807, -0.0117330365, 0.00142639782, -0.0030704129, -0.00220543053, 0.00905579794, 0.0176727045, 0.00609693676, -0.00317830709, -0.0135836964, -0.00199147081, 0.000707712781, -0.00312893162, -0.0175117776, -0.00369400484, -0.0121572986, 0.0222956967, 0.0153026888, -0.0021560553, 0.00802440196, -0.00518623646, 0.021578839, -0.00758551061, 0.0122523922, -0.0159902852, 0.0103285834, -0.0159025081, 0.0185065977, 0.00439988868, 0.0244462658, 0.0334435441, 0.00920209475, 0.00170161948, 0.0101091377, -0.00626517832, -0.0139348097, -0.0282792524, 0.00246510818, -0.00733680557, -0.0198964216, -0.000614905497, 0.0108991424, -0.00665652333, -0.00943617057, 0.0146077769, -0.0146882404, -0.0159171373, 0.0107235862, 0.00939228106, -0.00632735481, 0.00384030188, -0.00797319878, -0.000692168716, 0.00450595422, -0.0142054595, 0.00249253889, -0.010423677, 0.0215056911, -0.00631638244, -0.00822921842, 0.000514783314, -0.00386224664, -0.00800245814, 0.00998478476, 0.00328254374, 0.00972145051, -0.0136787901, -0.00213411055, 0.00304298219, 0.00562878558, -0.0156976916, 0.0041328962, -0.0168388095, -0.0316002, 0.00594698172, 0.0108040497, 0.0236855187, 0.0144761093, -0.000747944519, 0.00562878558, 0.000852181285, 0.00433039758, 0.00290948595, -0.0121938735, 0.000459921866, -0.0235977415, -0.0342628099, 0.0114623867, -0.0145565728, 0.0201158673, 0.0017171636, -0.0196184572, 0.010423677, 0.0185797475, 0.00991163682, -0.00485706748, 0.00219811569, -0.000230989594, -0.0120475758, 0.00819995906, 0.0230857, 0.0166632533, -0.00283633731, -0.0218129158, -0.00801708736, 0.0102408053, -0.00510943029, -0.0226029195, -0.0291131455, 0.00588114792, 0.00206461945, -0.0131521197, 0.0145126842, -0.00526304217, 0.00457544532, -0.0122889662, -0.00400488637, -0.0184627082, 0.0015397782, 0.0159317665, 0.0114404419, 0.00231515337, -0.00943617057, -0.00456813071, 0.0103651583, -0.0191356763, -0.00386590394, 0.00980922859, 0.0146443518, 0.0123621151, -0.0112868305, -0.00256385864, -0.00653948542, -0.0158439893, 0.0141542554, 0.0153319482, -0.00474003, -0.0126912836, 0.0121353539, -0.00629443768, -0.00797319878, 0.0119305383, 0.0206279084, 0.0129911928, -0.00298446324, 0.0120695205, -0.00173087895, -0.0116379438, 0.0102920095, 0.00823653303, -0.00836088601, 0.0112575712, 0.00736240763, 0.0107601602, 0.00988969207, -0.00193295197, 0.00809755083, 9.50360409e-05, -0.0308394525, -0.0205401294, -0.0130423969, 0.0061371685, -0.0255727544, 0.00312161678, 0.00130204519, 0.00365743041, 0.014212775, -0.00698203454, 0.00622128928, 0.0124791525, 0.00535447802, -0.00503993919, -0.0052264682, -0.00841209, -0.0239634849, 0.00562147051, 0.00267723901, -0.023305146, 0.0200719777, 0.026845539, -0.00514966203, -0.0372472703, 0.0197354946, 0.0122304475, -0.0234953333, 0.00811218098, -0.00598355616, 0.0086242212, 0.00559586845, -0.014285923, -0.0178336315, 0.0104529364, 0.0110893287, 0.0119451676, -0.0192380846, 0.00857301708, 0.0110600693, 0.0024541358, -0.0295227785, 0.00286011049, 0.0180969667, 0.0116452584, -0.00661263429, 0.00265163695, 0.00280159176, -0.0116233137, -0.00298263459, 0.00480586337, -0.00770254852, 0.00118135, 0.0284255501, -0.0154197263, 0.0171460342, 0.00709907245, -0.00265346584, -0.00309418608, 0.0118939634, -0.0110454401, -0.023466073, 0.0174093693, -0.019603828, 0.0120402612, 0.0195745677, -0.0165901054, 0.0252947882, 0.00983848795, 0.00612253835, -0.0173215903, -0.00133953395, -0.00724536972, -0.0239634849, 0.00961172674, -0.0128448959, -0.00942885596, 0.0328876153, -0.0114550721, -0.0112209963, -2.60734778e-05, -0.00202804524, 0.00257848855, 0.0089460751, -0.00456081564, -0.000469065446, -0.00453887135, 0.0145126842, -0.0037561811, 0.0137811983, -0.00918015, -0.0127278576, 0.0131521197, 8.81783635e-05, -0.0298592616, 0.00830236729, -0.00177842553, -0.0174239986, -0.00339409546, -0.0122889662, 0.00986774731, -0.010335898, -0.0141396262, -0.000288937, -0.0293911118, 0.00468882592, 0.013503233, -0.00242670509, -0.0158293582, 0.00599818584, 0.0192234535, -0.00115026184, -0.00924598426, 0.00602013059, 0.00138708053, -0.00464127911, -0.00392808, 0.00463030674, 0.0244901534, 0.00962635688, 0.00885829609, 0.0122085027, 0.0031362467, -0.0115355356, -0.0128887845, 0.0114258127, -0.00614814041, -0.0226029195, 0.000992078, -0.00214142562, -0.0251484923, -0.0129911928, -0.0196330864, 0.000155212198, 0.0200427193, 0.0338824354, -0.0143371271, 0.00433405489, 0.0277379528, -0.00153429213, 0.00969950575, 0.0127790617, -0.00793662388, 0.0188869704, 0.00403780304, 0.0183164123, -0.00686499709, 0.0115135908, -0.0157415811, -0.00869005453, 0.0211545769, -0.00814144, -0.00306675537, -0.00272478559, 0.00976533908, -0.00871931389, -0.0153758377, 0.00366840279, 0.00249619619, -0.00411460921, 0.00860227644, 0.0250021946, 0.00955320802, 0.0157123208, 4.0403178e-05, -0.0241097808, 0.00194758165, -0.0249436758, 0.0193112325, -0.00221457402, 0.011740352, 0.00132581848, 0.0168534387, -0.00783421565, 0.0112209963, -0.021915324, 0.00555563672, -0.0207156856, -0.0313661247, -0.0150539838, -0.00324962684, -0.00232063956, -0.00550809037, -0.010423677, -0.0152002806, 0.015887877, -0.00513503235, 0.00308321393, -0.0100140441, 0.010087193, 0.00404511811, 0.0134739736, 0.00235721399, 0.0145273134, 0.0153904669, -0.00735509256, -0.00129930221, -0.00975071, 0.0353161469, 0.020101238, 0.00397196924, 0.0105260843, -0.0254703462, -0.0254703462, -0.0113307191, 0.0118135, 0.00925329886, -0.00909968652, -0.0257190503, 0.0120110018, 0.012523042, -0.00793662388, -0.029566668, -0.00545322895, -0.0173508506, 0.010957662, 0.00591406506, -0.0219445825, 0.0203499421, 0.00135873538, 0.0192234535, -0.0111844223, -0.0199549403, -0.0111917369, 0.00228040782, -0.00305029703, -0.000701769488, 0.016063435, 0.00997015554, 0.013503233, -0.000772632193, -0.00574216573, -0.0152002806, 0.021008281, -0.0217836555, 0.0120475758, -0.00665652333, 0.022646809, 0.00195123919, 0.00358976796, -0.00309967226, 0.0176141858, 0.00881440751, -0.0146370362, -0.0104895104, 0.013305732, 0.0158293582, -0.00531790406, 0.0189747494, -0.0259823855, -0.00108717114, -0.00268455385, -0.0228369962, 0.0230564419, -0.00914357603, -0.0141396262, 0.00524475519, -0.0101969158, -0.00969950575, 0.0108991424, 0.0186236352, 0.0134812882, -0.00833894126, 0.0286303647, 0.00880709291, 0.014658981, 0.0208619833, 0.00263335, 0.0052959593, -0.00360988383, 0.00648828177, -0.0067369868, -0.00457910309, 0.0204230919, 0.00371594937, -0.00139439537, -0.00965561625, -0.00439257408, -0.00833162665, -0.0120987799, -0.00833894126, -0.0217105076, 0.00602013059, -0.0149442609, 0.00230783853, -0.0128229512, -0.0227492172, -0.0112209963, 0.014783334, 0.002099365, 0.0158439893, -0.00709907245, 0.00435234234, -0.0179360397, -0.0171167739, 0.0127790617, 0.0180091877, -0.0147248153, -0.00201158668, -0.00466688117, -0.00724902702, -0.0114916461, 0.00937765185, -0.00260409038, 0.00287108286, -0.00321122399, -0.000916643476, -0.0142639792, -0.00272844313, 0.0180384461, 0.0119305383, -0.00129381602, -0.0041328962, -0.000501982344, -0.0280890651, 0.000473180058, -0.00149040285, -0.00940691121, -0.0114916461, 0.00964830164, 0.0020664481, -0.0139567545, -0.00191100745, 0.00974339433, -0.00444377819, 0.000755716581, -0.0174971465, 0.0212716162, 0.0123035964, -0.0121792434, 0.000673424394, -0.0361061543, -0.00576776778, -0.0018799192, -0.00246693683, -0.0155221345, 0.00790005, -0.00298446324, 0.00150046078, -0.00887292624, -0.0220908802, -0.00290582841, 0.0132398978, -0.00217982847, 0.0157415811, 0.00106796972, 0.000961904181, -0.00280707795, -0.00275587384, 0.00773180788, 0.0278696194, -0.0103651583, -0.00759282568, 0.0289083309, 0.00252911309, -0.0191503055, -0.00578605477, 0.00909237191, -0.00828773715, -0.00756356632, 0.00676258886, -0.023627, 0.00284913834, -0.00236452883, 0.0371887535, 0.00967024639, -0.016721772, 0.0155367646, 0.000344712811, -0.000654222851, -0.00338678062, -0.00685402472, -0.00155989407, 0.010211546, 0.00163395703, 0.00563975796, -0.0252216402, 0.0132325832, -0.00443280581, -0.00197684113, 0.000499696413, -0.0029680049, 0.00651754113, 0.00139530969, -0.00888024084, 0.00788542, -0.00270466972, 0.00348553131, 0.0102846948, 0.0123694297, 0.00541299721, 0.00911431666, -0.00217251363, 0.00247242302, 0.00819264445, -0.0195014197, -0.0118354447, -0.0045205839, -0.000567816081, -0.0105260843, -0.0113819232, 0.0135983266, -0.00782690104, 0.0084486641, 0.00331180333, 0.022895515, -0.00356233725, 0.00346175791, -0.00454252865, 0.000301966589, 0.0135324923, -0.0223834738, -0.0160341747, -0.0125376713, -0.0210521687, 0.00806829147, 0.00563975796, 0.00513868965, -0.00494118873, 0.0124572078, 0.0170436259, 0.0129911928, -0.00677356124, -0.00117220648, -0.00579702714, -0.00915820617, 0.0055044326, 0.0115355356, 0.00752699189, -0.0170875154, 0.0111405328, 0.000538556604, 0.0399098806, 0.00573850842, 0.00348004512, -0.00762208505, 0.00615545548, -0.00309052877, 0.0194867887, -0.0213301349, -0.0267577618, -0.0113380346, 0.00465590879, 0.0113234045, 0.00592503743, 0.00839014538, -0.0105407145, -0.00437794439, 0.00136147847, 0.000951846247, 0.0175702963, 0.00562512781, -0.0100579336, 0.0123913744, 0.00585920364, 0.00412558159, 0.0220177304, 0.0212423559, -0.00259494688, -0.00111643062, -0.00443646312, 0.0254703462, 0.0187991932, 0.0113892388, -0.00479489146, -0.00473637227, -0.0123401703, -0.0109649766, 0.0249144156, -0.018199373, -0.00286559667, 0.0122670215, -0.00631638244, -0.00935570709, -0.0149003714, 0.0187553037, 0.000441177544, -0.00361719867, 0.00640050322, 0.00873394404, -0.0157415811, -0.0196477156, 0.0136861047, -0.0247096, -0.0142420344, -0.0113599794, -0.0110820141, -0.00158092426, -0.00544225657, -0.0251338612, 0.0383591317, -0.00749041745, 0.00502165221, -0.0135836964, 0.0162828807, -0.000950017537, -0.000714570459, -0.00346358656, -0.0189308599, -0.00822190382, -0.00306675537, -0.000302423781, 0.00324414088, -0.005888463, 0.0114550721, -0.00329534477, -0.0318050161, 0.00331180333, 0.0107235862, 0.00321305264, -0.00181134243, 0.0166632533, -0.00499605, 0.0117622958, -0.0219299532, -1.11365898e-05, -0.00693448819, 0.00754893664, -0.00250899722, 0.0316294581, 0.0207303166, 0.00650291145, 0.00731120352, 0.00711735943, -0.00855107233, 0.0197354946, -0.00682476535, -0.00203536, -0.00814875495, -0.000933101925, -0.00604573265, 0.0110234953, 0.0251046028, 0.0178336315, -0.0130350823, -0.0126035055, -0.0305761192, 0.0184041895, -0.0180969667, 0.0111697922, -0.00168607547, -0.00633832673, -0.00501068, -0.00596892647, -0.00112283113, -0.0106504373, 0.0202767942, -0.0113453493, -0.00153429213, 0.0193990115, 0.0232173689, 0.00699666422, -0.00384395942, -0.00416215602, 0.00269735488, -0.0257044211, 0.00432308298, -0.0211838372, -0.0116306292, 0.0150832431, 0.00827310793, -0.00833894126, -0.00950931944, -0.00178848347, 0.00421701744, -0.0105480291, 0.0113819232, 1.92586576e-05, -0.000989334891, 0.00178116863, -0.00317830709, -0.0211253185, -0.007783012, -0.0121792434, 0.0024541358, 0.0215203203, 0.00770254852, 0.00283633731, -0.00867542531, -0.0347309597, 0.00986043271, 0.00902653858, -0.0038951633, 0.0224273633, -0.0128595252, -0.0157562103, -0.0146370362, 0.00159372529, -0.0105626592, 0.0014858311, 0.00189089158, -0.000651937, -0.0169412177, -0.015887877, -0.00713198958, -0.0280890651, 0.00078131858, 0.00292045809, -0.00650291145, 0.000234532723, 0.0182725228, 0.0199842, -0.00764403, 0.00482415082, -0.00484609511, -0.0143005531, -0.0122816516, 0.00803903211, 0.00952394865, 0.00540568214, -0.0130716562, -0.00148400245, 0.0149808349, 0.00306309806, 0.000575130922, -0.00291680079, -0.00281805, 0.00617374247, 0.00692351582, -0.00476197433, 0.0104456209, 0.0105772885, -0.00178482605, -0.013342306, 0.0162975099, 0.00500702206, 0.00410363683, 0.0166778825, -0.00904848333, -0.0295812972, 0.0069381455, 0.0299177803, 0.00161566993, -0.00312161678, 0.00484975288, 0.0128961, 0.010460251, 0.0166925117, 0.00969219, 0.00306858425, 0.0123986891, -0.00347455894, 0.0126400795, 0.000109265733, -0.00916552078, -0.00393905258, 0.020101238, 0.00495216064, 0.0206279084, -0.00994821079, -0.00729291607, 0.0150393536, -0.00864616595, 0.00755625125, 0.00976533908, -0.0103871021, -0.00882172212, 0.00223103259, 0.00363182835, 0.00356233725, -0.0118647041, -0.0127498023, 0.022734588, 0.000591132208, 0.00478026178, -0.0144834248, -0.0087632034, 0.00458276039, -0.0135398079, -0.0159025081, 0.0035934255, 0.0052959593, 0.0114550721, 0.00532156136, -0.0220323615, -0.0138250869, 0.00879246276, 0.00367571763, 0.00798782799, -0.000410775159, 0.0166632533, 0.00414021127, -0.0198525321, -0.00134502, 0.0122962808, -0.0179360397, 0.00122981099, 0.0241390411, 0.024299968, -0.00353856385, -0.0208034646, -0.00364280073, 0.0156391729, 0.00730388844, 0.0126766535, -0.0144175906, -0.00445475, 0.00280524907, -0.000135439215, -0.00787810516, -0.00682476535, 0.0146443518, 0.00177385379, -0.00486072525, 0.0184627082, -0.0101310825, 0.0137592535, 0.00675527379, -0.000113094604, -0.0107601602, -0.00651388383, -0.00225663465, -0.0275770258, 0.0105626592, 0.00639318861, -0.0218860637, 0.0110820141, 0.00355867972, 0.00608962169, -0.0120548904, -0.00110180094, -0.00109540042, -0.00752699189, -0.0169412177, 0.015405097, 0.0165315848, 0.0130789708, 0.0185943767, -0.00896070432, -0.0239195954, 7.40629694e-05, -0.00915089063, 0.0171021447, 0.00280524907, 7.01769459e-05, -0.0172045529, 0.00170893432, 0.000759831164, -0.00373423658, 0.0221932884, 0.00962635688, -0.0227492172, -0.00624323357, -0.00779032661, -0.0114331273, -0.00122066739, 0.0149588902, 0.0148125933, -0.0119451676, -0.0261286832, -0.00042014732, -0.00855107233, -0.00471442798, 0.00281073526, -0.012186558, -0.0139201805, -0.00258763204, -0.000500153634, -0.0392076559, -0.0059579541, -0.0021560553, 0.0108845131, -0.0203206837, 0.00115209061, -0.00949468929, 0.00708078546, 0.0125303566, -0.0205840189, 0.0176434442, -0.00284730969, -0.0126985982, -0.000560501241, -0.0134959184, -0.00524841249, -0.00245779334, -0.00426090648, 0.00196404, 0.00887292624, -0.00221091672, 0.00146571524, -0.00747213047, 0.00466688117, 0.0133203613, 0.00589577807, 0.00327888643, -0.0137299942, 0.00414386857, 0.000734229165, -0.00445840787, 0.0084486641, 0.00594332442, 0.0120183164, -0.00170436257, 0.0150832431, -0.0335313231, -0.00401951605, -0.0175264068, -0.0155806532, -0.0226614382, -0.013715364, 0.00980922859, 0.000649651105, 0.00508748554, -0.00242853374, -0.00463396451, 0.00528132962, 0.0068064779, 0.00655411556, 0.00931181759, 0.0181262251, 0.00450229691, -0.0100652482, 0.00988237746, -0.00530327391, 9.22929685e-05, 0.0106358081, 0.0104895104, 0.00581531459, -0.00365194422, -0.00219445815, -0.0103578428, -0.00312344567, 0.0222371779, -0.00571290636, 0.00479123369, -0.0022255464, -0.00903385319, 0.0251777507, -0.0022255464, 0.00869736914, 0.0187991932, -0.00572022097, 0.0211106893, -0.00217251363, 0.0119597977, 0.0173362195, 0.0102042314, -0.0297129657, 0.00235904264, 0.0209643915, -0.00109905784, 0.00302103744, -0.0182871521, 0.00247790921, -0.00479123369, -0.0213301349, 0.00148400245, -0.00526304217, 0.000693540263, 0.022485882, -0.00514600473, 0.015068613, 0.0150832431, 0.000651022594, 0.0161951017, -0.0100140441, -0.030312784, 0.0127717471, -0.0140957367, 0.0114550721, 0.000863153604, -0.00478026178, -0.011776926, 0.0159171373, -0.0192819741, -0.00825847778, -0.0151271326, 0.0229832921, 0.00921672489, 0.00420604507, -0.00681379298, -0.00960441213, -0.00568730431, -0.00698569231, -0.0057531381, 0.0230271816, 0.00181591418, -0.010621178, 0.00672235712, 0.019603828, 0.0102700647, -0.0176141858, -0.014658981, -0.0186236352, 0.00958978292, 0.0192380846, -0.015566024, -0.0184041895, 0.000323454, 0.0113234045, 0.00987506192, -0.0351991095, 0.00741361128, 0.00715393387, 0.0183164123, 0.0028747404, 0.000557301, 0.000133724796, -0.0115867397, -0.00502165221, -0.00451326929, -0.00167784619, 0.00254557165, -0.010496825, -0.0174239986, -0.0322731659, 0.00115757668, 0.00941422582, 0.00490095699, 0.00809755083, 0.015566024, -0.0223249551, -0.0052264682, 0.0038256722, -0.00348553131, 0.0229686629, 0.0151271326, 0.0167364012, 0.0131009156, -0.00526304217, -0.000703141, -0.00155440788, -0.00839014538, 0.00243950612, 0.0186382663, 0.0139274951, -0.010584604, -0.00472174259, 0.0199549403, 0.00237915851, -0.00320390915, -0.00881440751, 0.00227492163, -0.00645902194, 0.0080317175, 0.0224419925, -0.00565073, -0.018609006, 0.008770518, -0.0106358081, -0.0121792434, 0.00412558159, 0.00663457904, -0.00108625682, -0.00734046288, -0.019194195, -0.00260957656, 0.00100945076, 0.0106796967, -0.0016001258, 0.000966476, -0.00101950869, -0.0149662057, -0.00077948987, -0.00809755083, 0.00453887135, 0.0277086925, 0.00473271497, 0.0104821958, 0.0290399976, -0.00352576305, 0.0189454891, 0.0259970147, -0.00920209475, 0.0183603, -0.00885829609, 0.00827310793, 0.00649925368, 0.000588846277, 0.0196916051, -0.0108040497, 0.0118135, 0.0101383971, 0.0169119574, 0.0200866088, -0.00283267978, 0.0304590799, 0.00371046318, 0.0136495307, -0.0188430808, 0.013876291, -0.00642976258, -0.00323499716, 0.023641631, -0.00863885, -0.0205255, -0.0184627082, -0.0105334, -0.0124206338, 0.00183237263, -0.00621763151, 0.0190478973, 0.0217543971, 0.00988969207, -0.00169796206, 0.00977996923, 0.0377739407, -0.00401951605, 0.00334472023, 0.00593235204, 0.0186382663, -0.0148637975, -0.0160488039, 0.0143663865, -0.00668212539, -0.0128741553, -0.0162828807, -0.0025199696, -0.0178043712, 0.0254410859, -0.0038951633, 0.0173069611, 0.00407072, -0.0164291784, 0.0134886038, 0.0188869704, -0.0118208155, -0.0166925117, 0.0067333295, 0.000640050333, 0.023466073, -0.00482049352, -0.015068613, -0.0165023264, -0.00147303008, 0.0150539838, 0.0110161807, 0.00983848795, 0.00609327899, 0.00488998462, -0.00841940474, -0.0342920683, -0.00396831194, 0.00566535955, -0.00091938657, 0.0136056412, 0.00345444307, -0.00811218098, 0.00503993919, 0.0135544371, -0.0340287313, -0.00486072525, -0.00361354137, 0.00118409307, -0.0253971964, 0.00495216064, -0.0118500749, -0.00590309268, -0.00917283539, -0.0139786992, 0.00603841757, -0.00359891145, -0.00315636257, -0.0140372179, 0.00779032661, 0.0123767443, -0.0162975099, 0.00428285124, -0.0055702664, 0.0125742462, -0.000453749963, 0.0133203613, 0.00387687632, 0.0130277677, -0.0114550721, -0.00820727367, 0.0087632034, -0.0244023763, -0.00327340025, -0.00101402262, -0.0130497115, 0.0039975713, -0.0156245427, -0.0209643915, 0.00311978813, 0.0235392228, -0.016970478, -0.00400488637, 0.00472174259, -0.00994089618, 0.00963367149, 0.00155532232, -0.0189162306, -0.00580434222, -0.00736240763, 0.0171606634, 0.00178299739, 0.00573485112, -0.00599452853, -0.010833309, -0.00194026681, -0.0163999181, 0.000952760631, -0.0306638964, -0.00468516862, -0.0021231384, 0.00760745537, 0.00451326929, -0.00371594937, -0.0218421742, -0.0306931566, 0.0146736111, -0.0026790679, 0.0163414, -0.00204450358, -0.0298153721, 0.00641879, -0.014819908, -0.000397745549, 0.00117952132, 0.0138689764, 0.00818532892, 0.0168241803, -0.016882699, 0.00203536, -0.0135910111, -0.00629078038, 0.0522573665, 0.00945811532, 0.0170728844, 0.000123895457, 0.0182140041, 0.0218568034, 0.0134593444, -0.00669309776, -0.0122158173, -0.0123474849, 0.00325694191, 0.00468151085, -4.214617e-05, -0.00206279079, -0.00790005, -0.00779764168, -0.00223286124, -0.0156976916, 0.00523378281, -0.0145273134, -0.00675527379, -0.00951663405, -0.00335935, -0.023392925, -0.00312344567, -0.000521641, 0.000441863318, -0.00780495675, -0.00615911279, -0.00112374546, 0.0121060945, -0.0173801091, 0.00933376234, 0.00418044301, 0.00959709752, -0.00555563672, 0.00875588879, 0.0181262251, 0.0102042314, -0.0174971465, -0.0240073726, -0.0160049163, -0.0186236352, 0.0197940134, -0.024373116, 0.00357513828, 0.00869736914, 0.00358245312, 0.0200866088, -0.0108845131, 0.0105772885, 0.0199403111, 0.0040634051, 0.000228589401, 0.00887292624, -0.0114477575, 0.00287656905, 0.0173947383, -0.0175264068, -0.0197793841, -0.00367754628, -0.0317172371, 0.00721611036, 0.0120402612, -0.00303383847, 0.000201501563, -0.0158586185, 0.00749041745, -0.000228017932, -0.0234368145, 0.00715027656, -0.0283085108, -0.0200573485, -0.0035934255, -0.00704421103, -0.00784153119, -0.0103724729, -0.00370314834, 0.0119963717, -0.0164291784, -0.00984580256, -0.00620300183, -0.0117110927, -0.00521183852, 0.00830236729, -0.0281183254, 0.0025108261, 0.00164127187, 0.0111259036, -0.00411826652, -0.00024504785, 0.0250899736, -0.0110893287, 0.0167802908, -0.00765865948, -0.00398294162, 0.0114258127, 0.000389287743, 0.0132618425, -0.00255837268, -0.0161512122, 0.0218860637, -0.0110015506, 0.00601647329, 0.00104053901, 0.0270503554, 0.0264797956, -0.00676624617, 0.000575130922, 0.0173508506, 0.0213301349, -0.00572753605, -0.0031362467, 0.0182871521, 0.0288498104, -0.00968487561, 0.00600915821, 0.0110015506, 0.00751236221, -0.0081707, -0.000785433163, 0.0222810656, 0.000608505, -0.0104163615, -0.000323454, 0.0148930568, -0.0129985074, 0.0143371271, 0.0136787901, -0.00196404, -0.00893144496, 0.0147467591, 0.012808321, 0.0238757059, -0.00992626604, 0.00204084627, 0.00971413497, -0.0171752926, 0.0204816107, -0.0107162716, -0.0155221345, 0.0074648154, -0.011367294, 0.00258397451, 0.0210521687, 0.0254410859, -0.0197062343, -0.00384761672, -0.00896802, 0.000459236122, -0.008770518, 0.000843037735, 0.00105974043, 0.00525938487, 0.00587017601, 0.00117677823, -0.00774643756, 0.000189386323, -0.00248156651, 0.00447303755, -0.00403414574, -0.00337946578, 0.0138616618, 0.0108186789, 0.00327157159, -0.0024870527, -0.00473637227, 0.000249391043, -0.00351661933, -0.000106579806, 0.0179652981, 0.000409632223, -0.0246364512, -0.00344164204, -0.0152149107, 0.00937033724, 0.0103505282, 0.0119817425, 0.0128448959, -0.0344676226, 0.0246364512, 0.0237294082, 0.00968487561, 0.00262603513, 0.0261433125, 0.00306675537, 0.000820635934, 0.0175995547, -0.0049082716, 0.0278696194, -0.00207924913, -0.0356965214, -0.00661994889, -0.020174386, -0.0373643078, 0.0160195455, -0.000904299668, 0.0129399886, -0.00407803478, 0.00553369243, 0.00391345052, -0.019194195, -0.0126035055, -0.00798051339]
25 Aug, 2020
Services provided by Data Link Layer 25 Aug, 2020 Prerequisite – Data Link Layer Data Link Layer is generally representing protocol layer in program that is simply used to handle and control the transmission of data between source and destination machines. It is simply responsible for exchange of frames among nodes or machines over physical network media. This layer is often closest and nearest to Physical Layer (Hardware). Data Link Layer is basically second layer of seven-layer Open System Interconnection (OSI) reference model of computer networking and lies just above Physical Layer. This layer usually provides and gives data reliability and provides various tools to establish, maintain, and also release data link connections between network nodes. It is responsible for receiving and getting data bits usually from Physical Layer and also then converting these bits into groups, known as data link frames so that it can be transmitted further. It is also responsible to handle errors that might arise due to transmission of bits. Service Provided to Network Layer : The important and essential function of Data Link Layer is to provide an interface to Network Layer. Network Layer is third layer of seven-layer OSI reference model and is present just above Data Link Layer. The main aim of Data Link Layer is to transmit data frames they have received to destination machine so that these data frames can be handed over to network layer of destination machine. At the network layer, these data frames are basically addressed and routed. This process is shown in diagram : 1. Actual Communication : In this communication, physical medium is present through which Data Link Layer simply transmits data frames. The actual path is Network Layer -> Data link layer -> Physical Layer on sending machine, then to physical media and after that to Physical Layer -> Data link layer -> Network Layer on receiving machine. 2. Virtual Communication : In this communication, no physical medium is present for Data Link Layer to transmit data. It can be only be visualized and imagined that two Data Link Layers are communicating with each other with the help of or using data link protocol. Types of Services provided by Data Link Layer : The Data link layer generally provides or offers three types of services as given below : 1. Unacknowledged Connectionless Service 2. Acknowledged Connectionless Service 3. Acknowledged Connection-Oriented Service Unacknowledged Connectionless Service : Unacknowledged connectionless service simply provides datagram styles delivery without any error, issue, or flow control. In this service, source machine generally transmits independent frames to destination machine without having destination machine to acknowledge these frames. This service is called as connectionless service because there is no connection established among sending or source machine and destination or receiving machine before data transfer or release after data transfer. In Data Link Layer, if anyhow frame is lost due to noise, there will be no attempt made just to detect or determine loss or recovery from it. This simply means that there will be no error or flow control. An example can be Ethernet. Acknowledged Connectionless Service : This service simply provides acknowledged connectionless service i.e. packet delivery is simply acknowledged, with help of stop and wait for protocol. In this service, each frame that is transmitted by Data Link Layer is simply acknowledged individually and then sender usually knows whether or not these transmitted data frames received safely. There is no logical connection established and each frame that is transmitted is acknowledged individually. This mode simply provides means by which user of data link can just send or transfer data and request return of data at the same time. It also uses particular time period that if it has passed frame without getting acknowledgment, then it will resend data frame on time period. This service is more reliable than unacknowledged connectionless service. This service is generally useful over several unreliable channels, like wireless systems, Wi-Fi services, etc. Acknowledged Connection-Oriented Service : In this type of service, connection is established first among sender and receiver or source and destination before data is transferred. Then data is transferred or transmitted along with this established connection. In this service, each of frames that are transmitted is provided individual numbers first, so as to confirm and guarantee that each of frames is received only once that too in an appropriate order and sequence. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL/multiset max_size() in C++ STL with Examples/unordered_multimap max_size() function in C++ STL/unordered_multimap bucket() function in C++ STL/unordered_multimap rehash() function in C++ STL/unordered_multiset rehash() function in C++ STL/unordered_multiset key_eq() function in C++ STL/unordered_map key_eq() function in C++ STL/unordered_map max_bucket_count in C++ STL/unordered_map end( ) function in C++ STL/unordered_map emplace_hint() function in C++ STL/unordered_set emplace_hint() function in C++ STL/unordered_set swap() function in C++ STL/unordered_set begin() function in C++ STL/unordered_set end() in C++ STL/unordered_set cend() function in C++ STL/unordered_map cend in C++ STL/list cbegin() and cend() function in C++ STL/list crbegin() and crend() function in C++ STL/deque crend in C++ STL/multimap::crbegin() and multimap::crend() in C++ STL/deque crbegin in C++ STL/deque cbegin() in C++ STL/deque::emplace_front() and deque::emplace_back() in C++ STL/deque::begin() and deque::end in C++ STL/multiset begin() and end() function in C++ STL/match_results begin() and end() function in C++ STL/match_results prefix() and suffix() in C++/C++ Program to Implement Suffix Array/C/C++ program to implement the cricket game/C++ Program to Implement Circular Queue/C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts/Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Check if a string can be formed from another string by at most X circular clockwise shifts/Cyclic shifts of integer N by another integer m/Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts/Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts/Java Program for Given a sorted and rotated array, find if there is a pair with a given sum/C# Program for Search an element in a sorted and rotated array/Search in a Sorted and Rotated Array/PHP Program for Search an element in a sorted and rotated array/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Java Program To Find Longest Common Prefix Using Sorting/Find minimum shift for longest common prefix/Longest Common Prefix using Word by Word Matching/Longest Common Prefix using Divide and Conquer Algorithm/Introduction to Divide and Conquer Algorithm/Divide and Conquer Algorithm////////////////////////////////////////////////////////////////////////////////////////////////////////////Propositional Logic/Digital Logic and Design – GATE CSE Previous Year Questions/Database Management System – GATE CSE Previous Year Questions/Computer Networks – GATE CSE Previous Year Questions/Compiler Design – GATE CSE Previous Year Questions/Compiler Theory | Set 2/Phases of a Compiler/Shift Reduce Parser in Compiler/LR Parser/Recursive Descent Parser/SLR Parser (with Examples)/CLR Parser (with Examples)/Compiler Design SLR(1) Parser Using Python/Difference Between Native Compiler and Cross Compiler/Difference between native, host and user objects/Difference Between Host and Guest Operating System/Xv6 Operating System -adding a new system call/Code for Fork System Call in OS/Linux system call in Detail/Remote Procedure Call (RPC) in Operating System/Introduction of System Call/How much Stack size required for BIOS interrupt call?/Difference between Interrupt and Polling/Difference between Difference Engine and Analytical Engine/Difference Between Store‑and‑Forward Switching and Cut‑Through Switching/Difference between Message and Packet Switching/How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?/Types of Node Devices in a Computer Network: End devices and Intermediary Devices/Types of Errors in Computer Network/Difference between Storage Area Network (SAN) and Network Attached Storage (NAS)/Difference Between Network Security and Network Administration/Internet Administration/Internet Telephony Protocol | H.323/IPsec (Internet Protocol Security) Tunnel and Transport Modes/Real-time Transport Control Protocol (RTCP)/Cisco Discovery Protocol (CDP) and Link Layer Discovery Protocol (LLDP) in Data Link Layer/Data Link Layer Communication Protocols in IoT/Network Layer Protocols/Which Layer Called Error Detection Layer?/Error Control in Data Link Layer/Design Issues in Data Link Layer/Framing in Data Link Layer/Services provided by Data Link Layer
https://www.geeksforgeeks.org/services-provided-by-data-link-layer?ref=asr10
PHP
Services provided by Data Link Layer
, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, Check if a string can be formed from another string by at most X circular clockwise shifts, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, Difference between native, host and user objects, Introduction to Divide and Conquer Algorithm, Difference between Difference Engine and Analytical Engine, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, unordered_multimap rehash() function in C++ STL, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, unordered_map key_eq() function in C++ STL, SLR Parser (with Examples), Difference between Interrupt and Polling, Services provided by Data Link Layer, Types of Node Devices in a Computer Network: End devices and Intermediary Devices, Java Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, Framing in Data Link Layer, Types of Errors in Computer Network, jQWidgets jqxToolBar close Event, How to Connect Between Devices Via Network Wire on Cisco Packet Tracer(Virtual Program)?, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, deque crend in C++ STL, jQWidgets jqxTree ensureVisible() Method, unordered_set cend() function in C++ STL, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, unordered_multiset rehash() function in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, unordered_multiset key_eq() function in C++ STL, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, LR Parser, set vs unordered_set in C++ STL, unordered_set end() in C++ STL, multiset max_size() in C++ STL with Examples, jQWidgets jqxToolBar height Property, Difference between Message and Packet Switching, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, Computer Networks – GATE CSE Previous Year Questions, Difference Between Network Security and Network Administration, unordered_set emplace() function in C++ STL, unordered_set swap() function in C++ STL, unordered_multimap empty() function in C++ STL, Code for Fork System Call in OS, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Java Program To Find Longest Common Prefix Using Sorting, map upper_bound() function in C++ STL, Propositional Logic, Node.js date-and-time Date.transform() Method, Linux system call in Detail, Compiler Design – GATE CSE Previous Year Questions, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, Java Program for Check if a string can be formed from another string by at most X circular clockwise shifts, Introduction of System Call, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Data Link Layer Communication Protocols in IoT, Longest Common Prefix using Word by Word Matching, C# Program for Search an element in a sorted and rotated array, Steps to Diagnose and Resolve a Slow Network, unordered_map end( ) function in C++ STL, How to use Optional Chaining with Arrays and Functions in TypeScript ?, C++ Program to Check if a string can be formed from another string by at most X circular clockwise shifts, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, C++ program to implement the cricket game, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, unordered_map cend in C++ STL, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, Longest Common Prefix using Divide and Conquer Algorithm, Python3 Program to Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, set::emplace() in C++ STL, Difference Between Host and Guest Operating System, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, deque::begin() and deque::end in C++ STL, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, Check if an array is sorted and rotated using Binary Search, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, Recursive Descent Parser, match_results prefix() and suffix() in C++, Remote Procedure Call (RPC) in Operating System, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, deque::emplace_front() and deque::emplace_back() in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, multiset begin() and end() function in C++ STL, Compiler Design SLR(1) Parser Using Python, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, Difference Between Store‑and‑Forward Switching and Cut‑Through Switching, Longest Common Prefix using Binary Search, Design Issues in Data Link Layer, vector :: cbegin() and vector :: cend() in C++ STL, Java Program for Given a sorted and rotated array, find if there is a pair with a given sum, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, Cyclic shifts of integer N by another integer m, Compiler Theory | Set 2, CLR Parser (with Examples), Xv6 Operating System -adding a new system call, jQWidgets jqxSwitchButton onLabel Property, unordered_map emplace_hint() function in C++ STL, unordered_multiset bucket_size() function in C++ STL, C, C++ Program to Implement Circular Queue, unordered_set cbegin() function in C++ STL, IPsec (Internet Protocol Security) Tunnel and Transport Modes, list cbegin() and cend() function in C++ STL, unordered_set begin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, list crbegin() and crend() function in C++ STL, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, multimap::crbegin() and multimap::crend() in C++ STL, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Find array sum using Bitwise OR after splitting given array in two halves after K circular shifts, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, Find minimum shift for longest common prefix, Digital Logic and Design – GATE CSE Previous Year Questions, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, deque cbegin() in C++ STL, Difference Between Native Compiler and Cross Compiler, jQWidgets jqxTabs position Property, unordered_map max_bucket_count in C++ STL, Internet Telephony Protocol | H.323, unordered_multimap bucket() function in C++ STL, Differences between Wireless Adhoc Network and Wireless Sensor Network, Difference between Storage Area Network (SAN) and Network Attached Storage (NAS), jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, Error Control in Data Link Layer, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, Real-time Transport Control Protocol (RTCP), unordered_set emplace_hint() function in C++ STL, forward_list max_size() in C++ STL with Examples, Internet Administration, Which Layer Called Error Detection Layer?, Cisco Discovery Protocol (CDP) and Link Layer Discovery Protocol (LLDP) in Data Link Layer, unordered_multimap max_size() function in C++ STL, Phases of a Compiler, Shift Reduce Parser in Compiler, unordered_multiset bucket_count() function in C++ STL, deque crbegin in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, C++ Program to Implement Suffix Array, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, Search in a Sorted and Rotated Array, match_results begin() and end() function in C++ STL, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, Divide and Conquer Algorithm, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, Database Management System – GATE CSE Previous Year Questions, unordered_set count() function in C++ STL, PHP Program for Search an element in a sorted and rotated array, vector rbegin() and rend() Functions in C++ STL, Network Layer Protocols, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How much Stack size required for BIOS interrupt call?, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0188980419, 0.0190483835, -0.0122002875, 0.0207021516, 0.0109900311, 0.0115462979, 0.0270165317, 0.0219048895, -0.0082086958, 0.00314215641, 0.0293618739, -0.0225663967, 0.0280989986, -0.0181914326, 0.00225701556, -0.0353304669, 0.00769377314, 0.0135909542, -0.00522815762, -0.0132526839, 0.0183267407, -0.00449523842, -0.0187025964, -0.0176502, -0.00813352503, 0.00640834542, 0.022746807, -0.0080809053, -0.0272721145, 0.0174547546, 0.0369240977, 0.00579194166, 0.025994204, -0.0327145085, -0.0060926266, -0.0494025163, 0.0133579234, 0.00421710499, -0.0284898877, 0.03866807, -0.0245058145, 0.00786290877, 0.0234383829, -0.00364956213, -0.0189130753, 0.000359647238, 0.00336015294, 0.00999025349, 0.005806976, -0.0342179351, -0.0592950508, -0.0655492917, 0.00775015168, 0.0357814953, -0.000646002591, 0.0376457423, 0.0538827218, 0.0321432091, -0.00344284135, -0.0375555344, 0.00744946674, -0.0166729745, 0.0199053362, -0.0135383345, 0.00240735803, 0.0173495151, -0.0384275205, 0.0268511549, 0.0343081392, -0.0200406443, -0.0555364899, -0.00572804594, 0.00177216122, -0.0152447214, -0.00250132196, 0.0235285889, 0.000218348869, 0.0471774489, 0.0207021516, -0.0181914326, -0.00640458707, 0.00458168518, 0.014703488, 0.00663761748, 0.0179959871, 0.0222506784, -0.0195595492, -0.0571000502, 0.0299782772, 0.0180110224, -0.0134857148, 0.0177404042, -0.00644968962, -0.049613, -0.0328648537, -0.0377960838, 0.02746756, -0.0149290022, -0.0031891386, 0.0303691681, 0.0125535922, 0.0131023414, -0.0213035196, 0.0187777672, 0.0580321737, 0.00784035679, -0.0180110224, 0.0311509483, -0.0115613323, 0.032353688, -0.0101932157, 0.00223070569, -0.0161317419, 0.0269413609, -0.0103210071, -0.0384575911, -0.0115538146, -0.0377359465, 0.00184545317, 0.0287304353, 0.0313012898, 0.00184545317, -0.013688677, 0.0280388612, -0.0287755392, 0.048831217, 0.0012252907, -0.00896040816, 0.0182365347, 0.00362137286, -0.020326294, -0.019424241, -0.0138014341, -0.0015917503, -0.00380366319, 0.0190032814, -0.00581073435, -0.00252011465, 0.00980984233, -0.00501391944, 0.0216342732, -0.0204766374, -0.0204616021, 0.00965198316, 0.0181312952, 0.0106893461, 0.00936633255, 0.0187176317, -0.0370143019, 0.00775015168, -0.0165827684, -0.0131775131, 0.00643089693, -0.0135608856, 0.0190934874, -0.00539353397, 0.0157408509, -0.0067428574, -0.017559994, -0.0242351983, 0.0312411543, -0.0174397212, -0.0113884378, -0.00475457869, 8.20423302e-05, 0.0379764959, 0.0411336869, -0.0199053362, -0.0411637537, 0.0458845049, -0.00377547392, 0.0137412967, 0.039179232, 0.00636700122, -0.0213035196, 0.0182515699, -0.0203864314, 0.0191536248, -0.0114335408, 0.0110125821, -0.0270466, -0.0149365189, -0.0179208163, 0.0244907793, 0.00410810672, 0.0107645169, 0.0385177284, -0.00931371283, -0.00594228413, -0.0264151618, -0.0108021023, 9.69003886e-05, 0.0627228543, 0.024611054, -0.032053005, -0.0228219796, -0.0324739628, 0.0350899212, 0.0178757142, -0.0141096357, 0.00662258361, 0.00116045552, 0.0127565544, 0.0160114672, -0.0111854756, -0.0340976603, 0.00533339707, -0.00929116178, 0.00990756508, -0.0106367264, -0.0204465687, -0.0018182036, 0.0279035531, 0.00996018481, 0.0275276974, -0.0110050645, -0.0509360097, -0.00811849069, -0.0160114672, -0.00950164068, 0.0131850298, 0.0233481769, 0.0161467753, -0.00853193179, -0.0435090959, -0.0276028682, -0.00840414129, -0.0694581941, -0.0270466, -0.021062972, 0.0110727185, 0.0361723863, 0.00759605039, -0.0288206413, -0.033255741, 0.0150868613, -0.00313651864, 0.0219650269, -0.0323837548, -0.0048372671, -0.0396001935, 0.020717185, -0.0544239543, -0.0284297504, -0.0466362163, -0.00124408351, 0.0214388277, 0.065489158, 0.00798318256, -0.0141848074, 0.0301135853, 0.0385778658, 0.0398106724, -0.0029993311, -0.00736677833, 0.000525258831, 0.00123938534, -0.00523191597, -0.018943144, -0.00959936343, 0.0158460904, -0.0185221862, -0.00667144451, 0.0332858115, -0.033255741, -0.0214839317, 0.0168533847, 0.00663010078, 0.0233782455, -0.0268361215, 0.0102232844, -0.0230775606, -0.0111103049, -0.00129482406, 0.00311020878, -0.0103360415, -0.00949412398, -0.0102458354, 0.0390288904, 0.0264001284, -0.0374352634, -0.0491018333, -0.00589718111, -0.00263475091, -0.0365031399, -0.0114034722, -0.0276930723, 0.0149440365, -0.0482599139, -0.0215891711, -0.0270315669, 0.0103210071, -0.0250019431, -0.00599866221, 0.0306999218, 0.00545742968, 0.0258137938, 0.0285951272, 0.00331880874, -0.0036965441, 0.00420958782, 0.000415320916, 0.00593100814, 0.00531084603, -0.0290611889, 0.00401038397, -0.0162219461, -0.000498479058, 0.0383673832, 0.0352402627, 0.00246373634, -0.0191686582, -0.0284297504, -0.0409833416, 0.00911826733, 0.0102458354, 0.00147241598, -0.0107043805, -0.0100128045, -0.0230925959, 0.0396001935, 0.0385778658, -0.0280689299, 0.0769151822, 0.0370744392, -0.00963694882, 0.0162670501, 0.0296775922, -0.0308502633, -0.0334060863, -0.0400512181, 1.97618065e-05, -0.00857703481, 0.000780371134, 0.0177253708, -0.0250019431, 0.000140476201, 0.0282643735, -0.00576187298, 0.0175449606, -0.0196347199, -0.0312110856, -0.0145005258, -0.014335149, -0.0417350531, 0.000851783727, 0.0096595, 0.00488237, 0.00253890757, 0.0136135062, 0.00148651062, 0.00881006569, 0.0390890278, 0.01373378, 0.0313012898, -0.0252424926, 0.00056143495, 0.000999777112, -0.011268164, -0.0023942031, 0.0389386863, 0.0103661092, -0.0230324585, 0.0414644368, -0.0532212146, -0.0218597874, -0.00248440844, -0.0220401976, 0.0129219303, -0.0132451672, -0.050815735, 0.00447644526, 0.00228896318, 0.0101030106, -0.00841917563, 0.0109900311, 0.0392393693, 0.00929116178, -0.0162219461, 0.0084943464, 0.0217695814, -0.0170488302, -0.0417049862, 0.00786290877, -0.0248516016, 0.0189732127, 0.0220552329, 0.0146132829, -0.0542736128, 0.0319327302, -0.00810345635, 0.00716757448, 0.0155754741, -0.016086638, 0.0403819717, -0.00243366789, -0.00389762712, 0.0036777514, 0.0151394811, -0.0104863839, -0.0257386211, 0.0372849181, -0.0207622871, 0.00448396243, -0.0151018957, 0.0173344798, 0.0105014183, 0.00256897602, -0.000593852543, 0.0106442431, 0.0153875463, -0.0546043664, 0.00416824361, -0.0392995067, -0.000363170897, 0.0092610931, -0.03313547, 0.052679982, -0.0184470154, 0.0252274573, 0.0318725929, -0.00311396737, -0.0012046186, 0.0239194781, 0.0434790254, 0.0317823887, -0.0152372038, -0.00384876598, -0.0131098591, -0.0277983136, 0.0147410743, 0.00240172, -0.0181162618, 0.0143501833, -0.0182515699, -0.0636850446, 0.0212884862, -0.00621665874, -0.055446282, 0.0108847907, 0.00207472546, 0.0131624788, 0.0206119455, -0.0118620163, -0.0800423, -0.00387131725, -0.034428414, -0.0483801886, -0.00903557893, -0.0472075194, -0.034428414, 0.0162069127, -0.0145230778, 0.00349921966, 0.00980984233, -0.0055626696, 0.0309404694, -0.0413441658, 0.0506353267, 0.0133504067, 0.00805835333, 0.0227167383, 0.0145155601, -0.00257649319, 0.0169435907, 0.0217094459, -0.0198301654, -0.015485269, -0.000484854303, 0.00697964663, 0.0167030431, -0.0486808755, 0.0449824519, 0.00458168518, 0.032053005, -0.00129294477, 0.0139066735, -0.00349546107, -0.0113583691, -0.0334361531, 0.00393145438, 0.0424566977, 0.00605504075, -0.0349095091, 0.0170788988, 0.0360821784, 0.0542134754, 0.0207622871, -0.0123506291, -0.0501241609, 0.00407803804, 0.020717185, -0.0335564278, -0.0210930407, -0.0185221862, -0.00766746327, -0.00159081072, -0.000691575115, -0.00551380822, 0.00860710349, -0.0330151953, 0.0458243676, -0.00123844563, 0.0489815585, -0.0449223146, -0.00645344844, 0.0450726561, -0.00274374918, 0.00250320113, -0.0189281106, -0.0126137286, 0.0148838991, -0.00285086804, 0.0430881381, 0.00774263451, 0.00602497254, -0.0131624788, 0.0106968628, -0.00738181267, 0.00607759226, 0.0151319643, 0.0319026597, 0.0226265341, 0.0103134895, -0.0265053678, -0.0123506291, 0.0146959713, 0.0115613323, -0.0404421091, -0.0313313603, 0.0118469829, 0.00894537382, 0.0299782772, -0.0215290338, -0.0343081392, 0.0167481452, 0.0206570476, 0.039449852, -0.0105014183, 0.0164023582, -0.0136360573, 0.0363828652, -0.0485906675, 0.012628763, 0.0130346874, 0.026821088, -0.00301060686, 0.00526574301, -0.00078976748, -0.00411562342, 0.037375126, -0.000551568752, 0.0205518082, -0.00510036666, -0.0313012898, 0.00709616207, -0.00651358534, -0.00675789174, -0.0111478902, 0.0113583691, -0.0128542762, 0.0268361215, 0.016522631, 0.0329249874, 0.0159362964, -0.0123205613, 0.0121627012, 0.0173194464, -0.0249117389, 0.00698340544, -0.0175449606, -0.017469788, -0.00137845206, 0.0132000642, 0.0310908109, 0.0272420458, 0.0375254676, -0.0332858115, 0.00587838842, 0.0285650585, 0.0155003034, -0.0152747892, 0.0483200513, 0.00429603457, 0.00892282277, -0.0216192398, 0.0084943464, -0.0131173758, 0.0201458838, 0.0107720345, -0.0218748208, 0.0232128687, 0.0100654252, -0.00478840619, 0.0314516351, 0.0219048895, -0.0146057662, 0.00977977458, 0.00985494535, -0.0153123755, -0.0159362964, 0.0235135537, 0.0343081392, -0.00699468097, 0.0334361531, 0.0114636095, 0.00305195106, 0.0219499934, 0.00413817493, 0.000810909434, -0.00185766851, 0.00968956854, 0.0281441, 0.0258438606, -0.0216042046, 0.00134180603, 0.0492521748, 0.00182947924, -0.000138362011, 0.0179208163, 0.00955426, 0.00853193179, 0.00105615542, 0.00881758239, 0.0094640553, 0.0168383513, -0.0116665717, -0.0326844417, -0.0222356431, -0.0106743118, -0.0144554237, -0.0106367264, -0.0269714296, 0.0176802687, -0.017559994, 0.00529205287, -0.0234233476, -0.0448621772, 0.00764115341, -0.012696417, -0.00563408202, 0.00525446748, 0.00999025349, 0.113478459, -0.0106592774, 0.0289559495, 0.0236037597, 0.0313614272, 0.00245058141, 0.0253176633, 0.0085695181, 0.00618659053, 0.00550253224, 0.0276479702, -0.0120574618, -0.0168383513, 0.0267459154, -0.0443810821, -0.0114485752, -0.0160716046, 0.0119973244, -0.0181463305, 0.00497633405, 0.0158611257, -0.00256333826, -0.00437872298, 0.0355710164, 0.00902054459, -0.0154702347, 0.0399309471, -0.0260242727, -0.0209427, 0.036984235, 0.0239796154, -0.0233181082, -0.00186236668, -0.00734046847, 0.0252274573, 0.0223408826, -0.00878751464, -0.0563182682, -0.010163147, 0.0145381121, 0.010185699, -0.0102834217, -0.00491995551, -0.033646632, 0.0002553472, -0.0237841699, -0.0255882796, -0.0197098907, -0.0102232844, -0.0292716678, -0.0180110224, -0.00172611885, -0.00293731503, -0.00384124881, 0.043298617, 0.0143276323, -0.0155754741, 0.0183568094, 0.00487485295, -0.00614148751, -0.0261445455, -0.0121401502, 0.0461851917, 0.0057130116, -0.0167180765, -0.0344584808, -0.00941895228, 0.0159813985, -0.00115293846, 0.0144779747, 0.0365031399, 0.0180110224, 0.0139668109, -0.0453733429, 0.00686689, 0.00177591981, -0.0105916234, -0.012328078, 0.00829890184, 0.0202360898, -0.0241149236, -0.0280388612, 0.00953922607, -0.0239044446, 0.00192626216, -0.0299482085, 0.00392017839, 0.00454034097, -0.0225212947, -0.00589342276, 0.0111554069, 0.0185522549, -0.0179809537, 0.0110426508, 0.0162520148, 0.0115312636, -0.0139668109, 0.0344584808, -0.0115914, -0.00427348306, -0.00644217245, 0.003514254, -0.00932122953, 0.0257386211, -0.00204465678, -0.0355409458, 0.00874992833, 0.00427348306, -0.0202060211, 0.0271969438, -0.0324138254, -0.0203864314, 0.0166429058, 0.0406826586, 0.0177554395, 0.00941895228, -0.00257837237, -0.000296456448, 0.0532512851, 0.00816359278, 0.00558146229, 0.000972527487, -0.0367136188, -0.00435617147, -0.01373378, 0.00095561397, 0.000542642141, 0.0459446423, 0.0461551212, 0.00956177805, -0.0349696465, -0.0126889, 0.00952419173, -0.0186123904, -0.0354507416, -0.0141246701, -0.00403293548, -0.0426070392, 0.0491319, -0.0057468391, -0.0119221536, -0.00542736147, -0.0218898561, 0.0531610772, 0.0125460746, -0.0036364072, -0.00456665084, 0.0366534814, 0.0174397212, -0.0201308504, 0.0138690881, 0.0141998408, -0.00595731847, -0.0104713496, 0.0115462979, -0.0293618739, -0.0375254676, 0.0531009398, -0.00615652185, -0.00644593127, 0.000979105, -0.0213486236, -0.0274825934, -0.0326243043, -0.0777571, -0.0352101922, 0.00113320595, 0.00393145438, 0.0154702347, -0.00481095724, 0.0161167067, 0.000369513466, 0.0176652335, 0.0145456288, -0.010163147, -0.00722771185, -0.00197136495, -0.00171860179, 0.0260693748, 0.0238142386, 0.0110727185, -0.0182666034, 0.0124408351, 0.00939640123, 0.00256333826, 0.0117718112, 0.00674661575, 0.0188529398, -0.0402617, 0.00554763526, -0.0185071509, -0.0119522223, -0.00207848381, 0.0156807136, 0.0054611885, 0.0198451988, 0.0206720829, -0.00095561397, 0.0089754425, 0.00603624806, 0.00600242103, -0.00906564761, 0.0156356115, 0.000784129661, -0.0141998408, 0.0442307405, 0.017860679, 0.00461927056, 0.04696697, -0.0334662236, 0.00180598826, -0.0145982485, 0.0250921492, 0.010554038, -0.00379050826, 0.0106141744, 0.00274938694, 0.00812600739, 0.0212584175, -0.0213035196, 0.0245208479, -0.00460799504, 0.00823876448, -0.00738933, -0.00479216455, -0.00843421, 0.0166278705, -0.00111723214, -0.0239495467, -0.000229154728, 0.0302188266, -0.00905061327, -0.015485269, 0.0135007491, -0.00771256583, 0.0216944106, -0.0269112922, 0.00281516183, 0.0149741042, -0.0260543413, -0.00495378254, 0.0161618106, 0.00715629896, -0.00762236072, 0.00225889473, 0.016477529, -0.0205818769, -0.0198903, 0.00176652335, -0.00779525423, 0.00964446645, -0.0069270269, 0.0126588317, -0.0216793772, 0.0106216921, -0.0137262624, 0.0377058797, -0.00023631948, 0.0215591025, -0.00552884256, -0.011223061, 0.0253026281, -0.0411938205, 0.00624672743, 0.0198151302, -0.00456665084, -0.00969708618, 0.0118996026, -0.0130271707, -0.0220552329, -0.00775015168, 0.0183718428, 0.0550253242, -0.0216944106, -0.0207021516, -0.00111535285, -0.00958432909, -0.00145268359, -0.00293731503, 0.00301812403, 0.0234534163, -0.00118958438, -0.00340337656, -0.0253928341, -0.0115312636, -0.0205217395, 0.00711119641, -0.0181162618, 0.00302752038, -0.0103134895, -0.00301624462, 0.00315343216, -0.0192889329, -0.0148312794, 0.0130346874, -0.0534016266, 0.0128768282, -0.00954674371, 0.0231226645, 0.0260242727, -0.0106968628, -0.00268737064, -0.000842857175, -8.60358e-05, 0.0102608697, -0.00100729417, -0.0172442757, -0.011937188, 0.0110877529, -0.0129369646, -0.0106592774, 0.0369240977, -0.0620613508, -0.0288356747, -0.0400812887, -0.0106743118, 0.0197700281, 0.0304744076, -0.0153649952, -0.0158911943, 0.00415320927, -0.0170337949, 0.010944928, 0.00542736147, -0.0250921492, -0.021363657, 0.00556642795, 0.00710743759, 0.00942647, 6.75953634e-05, 0.0141848074, 0.00543112, -0.0211682115, -0.0320229344, -0.0198301654, -0.0093888836, 0.00704354234, 0.0196347199, 0.00181256572, 0.00477337185, 0.0157558843, -0.00119992043, -0.0220101289, 0.0135909542, 0.00775766885, -0.0082838675, -0.0173194464, 0.00484478427, -0.0106442431, -0.00481095724, -0.0080057336, -0.0426671766, 0.0142900469, 0.00659627374, 0.00906564761, -0.0327746458, 0.00405548653, -0.0379464254, -0.0289559495, 0.00355747738, 0.0378562212, 0.0172292404, 0.0144930091, 0.0168082826, 0.0136961937, 0.00939640123, -0.00155792327, -0.0162820835, -0.0165075976, -0.0166729745, 0.00213298295, -0.0180410892, 0.00129294477, -0.0290762242, 0.00129858265, -0.00763363624, -0.00868227426, -0.013711228, -0.00382057671, -0.00143764936, 0.00189337484, 0.027377354, 0.0246862248, 0.0284297504, -0.00194881356, -0.002367893, 0.0121702189, -0.0015917503, -0.00839662366, -0.0199053362, -0.0155003034, -0.00297302124, -0.00627303729, -0.0107945856, -0.0647675097, 0.0161918774, 0.0129670333, -0.00327934395, 0.0025107183, 0.0191385895, 0.0207622871, -0.0171691049, -0.0149139678, -0.0107645169, 0.0193641037, 0.00539729279, -0.0127490368, 0.0140419817, -0.0225062594, 0.00391642, 0.00640458707, -0.0341878645, 0.0391491652, -0.00458920235, 0.0201007817, 0.0277381763, 0.00596483517, -0.00105991401, -0.0142148752, 0.0236338284, -0.0108622396, -0.0319327302, 0.02456595, 0.0124558695, 0.00473954482, -0.0159212612, -0.0194843765, 0.0123130437, -0.00177967839, 0.0060512824, -0.0153349265, -0.000380554236, 0.0079230452, -0.0340074562, 0.00051492278, -0.0245058145, -0.0152823068, -0.00730664143, -0.021754548, 0.00683682133, -0.00838158932, 0.00315907, 0.00033380714, 0.0116440197, -0.0106367264, -0.020326294, -0.0476585478, -0.014771142, 0.00467189075, 0.0219499934, -0.00722395303, 0.0107494825, 0.000128378335, -0.0117642945, 0.0863566846, 0.00480719889, -0.0239946488, -0.0294370446, -0.0156356115, -0.00909571629, 0.014079567, 0.0192137603, 0.0245509166, 0.0192738976, 0.0209427, -0.013643574, 0.0103435582, -0.00327934395, -0.00654365355, -0.00376231899, -0.00182384148, 0.00629183, -0.00221191277, 0.0402917676, 0.00342968642, -0.00502519542, 0.00653613638, -0.00195821, 0.0296926275, -0.000132606714, 0.0185823236, -0.0283996817, -0.00616403902, 0.00161712058, 0.0333760157, -0.0363227278, 0.0252124239, -0.00402541831, 0.00298805558, 0.029842969, -0.00563408202, -0.0159513298, -0.0229121838, 0.02885071, -2.91435244e-05, -0.0164173916, -0.00188209908, 0.0152221695, 0.016522631, -0.00582952704, 0.012651314, 0.000598550774, -0.0299632438, 0.00659627374, -0.0161467753, -0.00244494365, 0.00302939978, -0.0149515532, 0.00749081094, 0.0237240326, 0.0283094775, 0.00548749836, 0.040652588, 0.00292979786, 0.00664513465, -0.00895289052, 0.00747201825, -0.0014921485, 0.0116891228, 0.0018360567, -0.00284147169, 0.00383373164, -0.0171841383, 0.0215741359, -0.001224351, 0.0337669067, -0.0021442587, 0.0114560919, -0.0322334133, 0.0106743118, -0.0213185549, -0.0101105273, 0.0222206097, 0.000633317453, 0.0234383829, 0.0112080276, -0.001448925, -0.000896886457, 0.0167481452, -0.0182515699, -0.0209727678, -0.00733671, 0.0220101289, 0.0102232844, -0.0218748208, -0.0177404042, -0.00841917563, 0.0252875946, -0.0148914168, 0.00816359278, 0.0573706664, 0.0315418392, 0.022746807, -0.00381118036, 0.00457416801, 0.00619786605, 0.00142919261, 0.0162219461, -0.00716381613, -0.0148312794, 0.0246711913, -0.00896792486, -0.00116985198, -0.00617907336, 0.0346689597, -0.0202511232, 0.00245621917, 0.0287304353, 0.0300534498, 0.000774733257, 0.0232730061, 0.0370744392, -0.00129482406, -0.00269676698, -0.0267910194, 0.0128467595, 0.0134932315, -0.00814855937, -0.0200256091, -0.00698340544, 0.0141772898, 0.00778022, -0.00057740882, -0.00699843932, -0.0132827526, 0.0076599461, -0.0117642945, 0.0160265025, -0.0306999218, 0.0222657118, -0.0115538146, -0.00758477487, 0.00616403902, -0.00115763664, 0.0191235561, 0.00405172817, -0.00438624, -0.00808842201, 0.00817862712, 0.00973467156, -0.0253778, -0.0195144452, -0.0101255616, -0.00128918618, -0.0368940309, -0.0253176633, 0.00854696613, -0.00224761921, 0.015440166, 0.0114786439, -0.00992259942, -0.00389011, 0.0234985203, 0.00160396565, 0.0109148594, 0.0031891386, 0.0306548178, 0.0204465687, -0.00919343904, -0.0171540696, 0.0179809537, 0.0082086958, -0.00872737728, -0.0108697563, -0.00832145289, 0.0232730061, -0.000648821471, -0.0031684665, 0.0237541012, 0.00556642795, 0.0229723211, -0.0184770823, 0.0290010516, 0.00604000641, -0.00576939, -0.00581825152, 0.0191235561, 0.0262046829, -0.0184620488, -0.0142073585, 0.00444261823, -0.00382621447, 0.0200556777, 0.0143276323, -0.00337330787, -0.00427724188, 0.0246711913, -0.00293355645, 0.00467940792, 0.0034127729, 0.01472604, 0.0137939164, 0.00196572719, -0.00610014377, -0.0357814953, 0.00748329377, -0.0128392428, 0.000619222817, -0.00339022139, -0.00644968962, 0.0187476985, -0.00582201, 0.0212734528, -0.0152672725, 0.0134706805, 0.0057130116, -0.00302376179, -0.0242051296, -0.0142825292, 0.0055626696, 0.0102984551, -0.00818614475, -0.00352552976, 0.0163422208, -0.0261595808, -0.0362024531, 0.0157107823, 0.0273322519, 0.010832171, -0.0121777356, 0.0375555344, -0.0118845683, 0.0426671766, 0.0231978353, -0.0183568094, 0.036984235, 0.0223859865, 0.00469068345, 0.0023472209, -0.0102683874, 0.00859958585, -0.00222318852, -0.0239796154, -0.00203526043, -0.00393145438, 0.00496505853, 0.0176201314, -0.0121251158, -0.0492822453, -9.53734707e-05, -0.0184470154, -0.00226265332, -0.00650230935, -0.00532963872, 0.0303992368, -0.0166128371, 0.0136510916, -0.0177704729, -0.00644968962, 0.00109092216, -0.00488988729, 0.0034127729, 0.0299632438, -0.040532317, 0.0103435582, -0.0117793279, 0.00330941239, -0.00206344971, -0.000512573693, 0.0158611257, -0.0109674791, -0.00351049541, 0.00888523646, 0.0189581793, -0.00625800295, 0.0262948889, 0.0123656634, 0.0274224561, -0.0221604723, 0.00281892042, 0.00467189075, -0.00242990931, -0.00674661575, -0.000504116935, -0.00338270445, 0.0402015634, 0.000199321163, -0.0270917043, -0.015831057, 0.0166880079, 0.00232466962, -0.00663010078, -0.0026385095, -0.0266106073, -0.0124032497, 0.0189732127, 0.0209126305, -0.018988248, -0.0265955739, 0.0222055744, 0.0321732759, 0.000889839197, -0.0208975952, 0.00229084259, -0.0118695339, 0.0017139035, -0.0039013857, 0.0221454371, 0.0021649308, -0.00933626387, -0.00891530514, -0.00932122953, 0.0211832467, -0.00738181267, 0.0142524615, -0.0147861764, 0.0153800296, 0.0123355957, -0.0098774964, -0.00859206915, 0.0176050961, 0.0038186973, -0.00162933592, 0.0252725594, -0.0199654736, -0.00255957968, 0.00851689745, 0.00695709512, 0.0108021023, -0.00203713984, 0.00993763376, -0.0100128045, -0.0288807787, -0.00911826733, 0.0184319802, -0.00924605876, -0.0317222513, 0.0172442757, -0.0184770823, 0.0037999046, 0.00762236072, -0.0137563311, 0.00789297651, 0.00935129821, -0.0221755058, -0.0026121994, -0.0170037281, 0.024265267, -0.00420958782, 0.00113978342, 0.00167913688, 0.0370143019, -0.0192738976, 0.0373149887, -0.0322033465, 0.0258438606, 0.00362325227, -0.00392017839, -0.0439601243, -0.00208036322, -0.0123130437, 0.0204766374, 0.0125160059, 0.00835152157, -0.0254529715, 0.0147561086, 0.0155754741, -0.0266106073, 0.000780840928, -0.0205818769, 0.0258438606, 0.00531460438, 0.0265805386, 0.0436594374, -0.0101481127, 0.00520936493, -0.0279636886, -0.0132075809, 0.00686689, -0.0145681798, -0.00182290177, 0.0340675898, -0.0132827526, -0.000916618912, 0.00513795204, -0.0165527, 0.0264602657, 0.00635196688, -0.000310551055, 0.00923854113, -0.00835152157, 0.0285650585, 0.00477337185, -0.00127039338, -0.0140269473, -0.024866635, 0.0267609507, 0.00309705385, -0.00766370445, 0.00446141139, -0.000399112148, -0.0113433357, -0.00687440718, 0.00252951123, 0.019424241, 0.00340901432, -0.023227904, 0.019679822, 0.00321920705, 0.0110050645, -0.0116440197, -0.0272871479, 0.0273172166, -0.0303240661, -0.000139536554, 0.0177554395, -0.00125066098, -0.0342179351, 0.00555139361, 0.00904309656, 0.0194994118, 0.0270466, -0.00415696763, 0.0185823236, -0.0203112606, 0.00572804594, -0.00977225695, -0.00408931356, -0.0190784521, -0.0199504383, 0.00460799504, -0.0305044763, 0.00423589768, -0.0130346874, -0.00866724, 0.00893033948, -0.0122453896, 0.0144854914, 0.00226829131, 0.0216944106, 0.0285650585, 0.00180786755, 0.00564159919, 0.00349734048, -0.0106667941, -0.020371398, -0.0228971504, -0.00189713342, -0.00530332886, -0.0189581793, 0.00778773706, -0.000552508398, -0.0126437973, -0.000198146605, 0.004044211, -0.0160716046, -0.0220101289, -0.0220552329, -0.00504774647, -0.0272420458, -0.00407052087, -0.0015945693, -0.00210103532, -0.00758477487, -0.0016340341, 0.00840414129, -0.00877999701, 0.000565663329, 0.0213786922, 0.00324175833, 0.0140194306, 0.00239984086, -0.0321432091, -0.0044087912, 0.0139668109, 0.0159362964, 0.00442006718, -0.00245246058, 0.0157709196, -0.0126588317, -0.0100203222, 0.011568849, 0.0344885513, 0.00535219, 0.00366835506, 0.0314215645, -0.000277663639, 0.0367436856, 0.0231076293, 0.0529205315, -0.00926861, 0.0100278389, 0.00599490386, 0.00317598344, 0.00908068195, -0.00267421571, -0.0155604398, -0.0158160217, -0.0118545, 0.0124558695, 0.000489082653, -0.0278885178, -0.00466437358, -0.00539353397, 0.00942647, 0.00215553446, 0.0295422841, 0.0244907793, -0.00122153212, -0.00991508272, -0.00248628762, 0.00283583393, 0.0089754425, 0.00944150332, -0.008411658, -0.0129745509, 0.00466061477, 0.0044087912, 0.020717185, -0.0021235866, 0.0156205771, -0.0194392744, 0.0172743443, 0.0103886612, 0.0118545, 0.00118018792, 0.0137864, -0.0198451988, 0.0238593407, 0.018988248, -0.00926861, 0.0314817019, 0.0175900627, 0.00983991101, 0.000868697301, 0.00512667652, -0.0152747892, -0.0160114672, -0.00287154014, 0.00255770027, -0.0279336218, -0.0120649785, 0.00478088902, 0.00886268541, -0.0104563152, 0.0039615226, -0.00718260882, -0.0316921808, 0.00236037583, 0.0190483835, 0.00255394191, 0.0084943464, -0.0219499934, 0.0101481127, 0.00350485765, -0.00757349934, 0.017559994, -0.00317974202, 0.0279486552, 0.00688192435, -0.0120875305, 0.000571771, 0.0085695181, -0.0069270269, 0.00462302938, 0.00454785815, -0.00238292734, -0.0142524615, -0.00858455244, 0.0142975636, -0.000636136334, -0.0203563627, 0.0110727185, -0.0142374272, -0.00934378151, 0.0205067061, 0.00983239431, 0.00567542622, 0.0196347199, 0.000157507166, -0.000565193535, 0.00172893784, -0.00491243834, 0.00394273, -0.011223061, -0.010508935, -0.010253353, -0.0161317419, 0.0253026281, -0.00348606473, 0.0161618106, 0.0128392428, -0.0237240326, 0.0201308504, 0.0130121363, 0.0125385579, -0.00999025349, 0.00769377314, -0.00937384926, -0.0351500586, 0.00655492954, 0.0197399594, 0.00115105917, 0.00523567479, -0.00253326981, -0.00896792486, 0.00913330168, -0.0195745826, -0.0167030431, 0.0111629246, 0.000687346736, 0.0112606473, -0.017559994, -0.00495754136, 0.00815607607, 0.00343908276, -0.00783284, 0.00417200197, -0.00620538322, 0.00236601382, 0.0189130753, -0.0172743443, -0.0109073427, -0.00990004838, -0.00018276, 0.00336203235, -0.0201158151, 0.000354714139, 0.0033300845, 0.0125310402, 0.0106818285, -0.0205518082, 0.00908819865, -0.0111328559, 0.0060926266, 0.00326430961, 0.0148688648, -0.00879503135, -0.0154552, -0.0250019431, -0.0109524447, -0.0208524931, 0.000130492524, -0.00144516653, -0.000491431798, 0.00259340671, 0.0149365189, -0.0012882466, -0.00932874717, 0.0063782772, 0.00827635, -0.00575435581, 0.00799069926, 0.000803392264, 0.0111704413, -0.00370781985, 0.00525446748, 0.00549125671, -0.012628763, -0.0168383513, -0.0095918458, 0.0056040138, 0.0241600256, -0.0107494825, 0.00894537382, 0.00648727547, 0.00573180476, 0.02608441, 0.024866635, -0.00676165, 0.0309104, 0.0167932473, -0.00377735333, -0.0202511232, -0.0123581467, -0.00205969112, -0.00808842201, -0.0157107823, -0.0106367264, 0.00929867849, 0.0333760157, -0.00785539113, -0.0460949838, 0.00581825152, 0.00150436384, -0.0239345133, -0.00425844872, -0.0181012265, 0.00905813091, -0.00273247343, -0.00948660634, 0.0109749967, 0.00147899357, 0.0148312794, 0.000999777112, -0.0251522865, 0.00333948084, 0.016567735, 0.00442006718, -0.0316320434, -0.0217395127, 0.00632565701, -0.00356875313, -0.00716757448, -0.00178155769, 0.015440166, -0.0127941398, 0.00256333826, 4.16378025e-05, 0.00131455646, -0.00362325227, 0.0201759525, -0.0219199248, 0.0077276, -0.0148914168, 0.0021442587, 0.00548373954, -0.00864468887, -0.0133804753, -0.0265204031, 0.00709240371, -0.00485981861, 0.00197888212, 0.00798318256, -0.000633787247, 0.0244607106, 0.00641586259, 0.0222356431, -0.012997102, 0.0107419658, -0.0193941724, -0.0417951904, 0.00187082344, -0.0122754583, -0.00123656634, 0.0239044446, -0.00624296907, -0.0204014666, -8.88253544e-06, 0.00932874717, 0.0111554069, 0.00705481786, -0.0223408826, 0.0275276974, 0.0118394652, 0.0117642945, 0.0149139678, 0.00597611116, -0.00205781171, -0.00750208646, 0.0198602341, 0.00340525573, -0.0161918774, 0.0161918774, 0.00900551118, -0.0150417592, -0.00818614475, -0.00912578497, 0.00332632591, 0.000668084132, -0.00968956854, 0.00883261673, -0.00282831676, 0.0167030431, 0.00862213783, 0.00757349934, 0.0011228699, 0.010757, 0.00683682133, -0.00746074226, -0.00654365355, 0.0164324269, 0.00175148912, 0.00236037583, 0.00392769556, 0.007028508, 0.0163271856, 0.00116891228, -0.0082086958, 0.00807338767, 0.0179959871, 0.00447268691, 0.00699468097, 0.0176953021, -0.00306322682, -0.0191686582, -0.00213862094, -0.0022664119, -0.0212133154, -0.00611893646, -0.0190634187, -0.00275126612, 0.00852441508, 0.0261445455, -0.0253176633, 0.00847179536, -0.00621290039, -0.00495378254, -0.0124408351, 0.00060653768, -0.0209427, -0.0112531297, 0.00105427625, 0.0172442757, 0.0166128371, 0.0275878329, -0.00902054459, -0.00709240371, 0.0122453896, -0.00269112922, 0.0160265025, -0.00948660634, -0.00345787569, -0.000888429699, -0.00261595799, 0.0114786439, -0.00908819865, -0.00793808, -0.0021442587, 0.0243404377, 0.0123355957, 0.00565287471, -0.0104187299, -0.0176802687, -0.00370781985, -0.0237541012, 0.0129219303, 0.00382997305, -0.000715066097, -0.00485606026, 0.0154251317, 0.00641962141, 0.00618283171, -0.000863529276, 0.0140043963, -0.0229422525, -0.0237541012, -0.0211231094, -0.0164474603, -0.0076599461, 0.00599866221, 0.000936351367, -0.0131699955, 0.0165075976, -0.0106592774, -0.018988248, -0.000794465712, -0.00245621917, 0.0126137286, 0.0175449606, 0.00472075166, 0.0161167067, 0.0104412809, -0.00106743118, 0.00126005732, -0.011245613, 0.00458544353, 0.00240735803, 0.0167782139, 0.00273247343, -0.0322935507, -0.0148012107, -0.0224761907, 0.00614148751, 0.00802828465, -0.00230775611, -0.00838910695, -0.00593852531, -0.00760356756, -0.00219875784, -0.0250019431, 0.000429415522, -0.0276780389, 0.025693519, -0.00816359278, -0.019980507, 0.00789297651, 0.00994515, 0.000711777364, 0.0159964338, -0.0233782455, -0.00365895848, -0.00853193179, -0.000329578761, -0.00393521274, 0.0299933124, 0.0199354049, 0.0107720345, -0.00953922607, 0.0111403735, 0.0107870679, 0.0205217395, 0.00523191597, 0.00802076794, -0.00305383024, 0.0294821486, 0.00376983616, -0.0138315028, 0.0171691049, 0.0119146369, 0.0012046186, -0.00666768616, -0.00411186507, 0.0175148919, 0.0117642945, -0.0153800296, 0.0156807136, -0.0145456288, -0.0172743443, 0.00751336245, -0.0138315028, 0.0188228711, -0.00145738176, -0.00363264862, 0.00406676251, 0.010163147, -0.0154702347, 0.00359130441, 0.0175900627, -0.00520184776, 0.000874804915, 0.0223408826, 0.0238894094, 0.0173795838, 0.0155003034, 0.0262648202, 0.012651314, -0.0102608697, 0.0100879762, -0.0129595166, -0.0123806978, 0.014057016, 0.030579647, 0.0106292088, 0.00276442128, -0.0132827526, 0.0133053036, -0.0233932808, 5.14746607e-05, -0.00811849069, 0.0018360567, 0.0019600892, 0.0225964654, -0.011892085, -0.0210028365, -0.0059084571, 0.0143501833, 0.00804331899, -0.00373412971, -0.00028518078, 0.0107269315, -0.00944902096, -0.010554038, 0.00542360265, 0.00666392781, 0.00242051296, -0.00824628118, 0.00578066614, -0.0187777672, -0.0104337633, 0.0216192398, -0.00572804594, 0.0131549612, -0.00110407709, -0.00625048578, -0.00374916405, -0.00370218209, 0.00204089819, 0.0141096357, 0.00144046824, -0.00945653766, -0.000734328758, -0.0274074227, 0.00893033948, -0.0171390362, 0.00290912576, -0.00834400393, -0.00704354234, 0.00392769556, -0.00457416801, 0.00223634345, 0.00759980921, -0.000218818692, -0.0183117054, -0.0170638636, 0.0297527649, 0.0114560919, -0.00201270916, -0.000124972139, -0.0185221862, -0.00320229353, 0.0015729575, -0.0251222178, -0.0209276639, 0.0124859381, 0.00365895848, -0.0107645169, 0.00226829131, -0.014034465, -0.011892085, 0.00121871324, 0.00711495476, -0.00445765257, 0.0162971187, -0.000484854303, 0.0103585925, 0.007028508, 0.0033921008, 0.0149966562, -0.00466813194, -0.0126813827, 0.00992259942, 0.00584456138, -0.00784035679, -0.00749832811, 0.00627303729, -0.0199654736, -0.0358115621, 0.00990004838, -0.00732919294, -0.00303691672, 0.0180861931, 0.0269714296, 0.0168834534, -0.0317222513, 0.0357814953, 0.0138991568, -0.0219800621, 0.0020427776, -0.0245809853, 0.0097497059, 0.00356687373, 0.0152747892, 0.00481471606, -0.0145080434, -0.000296691374, 0.00525822584, -0.000777552195, 0.00276442128, -0.00546494685, 0.00753591349, 0.0207773224, -0.0190784521, 0.0174096525, -0.009471572, 0.00500640227, -0.00103454373, 0.0029993311, -0.0268511549, 0.0107043805, -0.0152372038, 0.0103585925, 0.0170187615, -0.0130271707, -0.0104713496, -0.00529581169, -0.00194881356, -0.0193039663, -0.0139217079, 0.0132677183, -0.0187025964, 0.00298617617, -0.00154758722, 0.0286402311, -0.00129482406, -0.00209915591, -0.00797566492, 0.00679547712, 0.00114448159, -0.0187025964, -0.00912578497, -0.00130985829, -0.00519057177, 0.00581073435, 0.00396528142, 0.00841917563, -0.00970460288, 0.00455913367, 0.000382903352, -0.00981736, -0.00665641064, 0.0171540696, 0.0113583691, -0.000187575657, 0.0156356115, -0.00292979786, 0.0169285554, -0.0088251, 0.0108847907, -0.00743443239, 0.0277832784, -0.00829138421, 0.00266669854, 0.00949412398, 0.0013089187, 0.00632565701, 0.00774263451, -0.0246411227, -0.00836655591, -0.00820117909, 0.0085695181, 0.00502519542, -0.00199015765, -0.00311020878, -0.00125723844, -0.0105690723, 0.00115951593, 0.000344143191, 0.0255882796, -0.00311208796, 0.00274938694, 0.0128317252, 0.00118206721, -0.00370218209, 0.0153123755, 0.0089829592, 0.010185699, 0.00119710155, -0.0438999869, 0.00466813194, 0.0102909384, 0.00203526043, 0.00699843932, -0.00388259301, -0.0136135062, -0.0131624788, -0.00165846478, -0.00429979293, 0.0205668435, 0.0204616021, -0.0327145085, -0.0126362797, -0.00277381763, 0.0213937256, -0.0130497217, 0.0097497059, 0.0112531297, 0.00509660784, -0.0187326651, -0.00197136495, 0.0134255774, -0.0183868781, -0.0197399594, -0.0107194139, -0.0216643419, -0.00447268691, 0.00077238417, -0.00212922436, 0.0367136188, -0.00568294339, 0.0136285396, 0.0133128213, 0.00933626387, 0.01020825, -0.0127490368, 0.00370406127, -0.0125235235, 0.000322296546, -0.00887020212, 0.0117868455, -0.0077276, 0.00223258487, -0.00885516871, 0.0108923083, -0.0234233476, -0.000148463136, 0.0218146853, 0.00287905731, 0.000375386211, 0.00725026289, 0.000761578325, 0.00435241312, -0.0381569043, -2.26688171e-05, -0.00684058, 0.00790049415, 0.0112531297, 0.0300835185, 0.0256333817, -0.00260092388, 0.0112982327, 0.00281140325, -0.0110125821, 0.0120649785, -0.0166128371, 0.00637076, -0.00905061327, -0.00330565381, -0.00640082825, 0.00305758882, 0.0273172166, 0.00725402171, -0.00256709685, -0.0131324101, -0.0220401976, 0.00381305953, -0.0193039663, 0.0188980419, -0.0104563152, -0.003433445, 0.00188115949, -0.0174246859, -0.00305195106, 0.00330941239, 0.00650606817, -0.00138596911, -0.00158893142, 0.0216342732, 0.00588214723, -0.013275235, -0.0165978037, 0.000182994903, -0.00314403581, -0.00717885047, -0.00875744596, -0.0121852532, -0.0104262466, 0.00603624806, 0.00880254805, -0.0206119455, -0.00941143557, -0.013365441, -0.0132677183, -0.0103510758, 0.0317222513, 0.00469068345, -0.0190333501, 0.00920847338, -0.0191385895, -0.0209276639, -0.00208600098, -0.0103886612, -0.0038638, 0.0144854914, 0.0068443385, 0.00841917563, -0.00140664121, -0.0275878329, -0.00583704421, 0.0101781813, 0.00269676698, 0.020807391, 0.0145381121, -0.0112080276, -0.0124107664, 0.0202962253, -0.00080433191, -0.0045328238, 0.0282493401, 0.00095279509, -0.0161317419, -0.0079230452, 0.00871986058, 0.000452906534, -0.0118545, -0.00346539263, 0.00697964663, 0.00884013437, 0.0162219461, -0.000708018837, -0.0150868613, 0.00133710785, 0.00352928834, -0.0133955097, -0.0202360898, 0.00300121051, 0.0107043805, -0.00540856831, 0.00808842201, 0.00103548344, 0.0259641353, 0.00973467156, -0.0224310886, -0.0112982327, -0.00784035679, 0.00372661254, 0.0179358497, 0.0157107823, 0.0172593091, 0.0129595166, -0.000875744561, -0.023709, -0.00489364564, 0.00938136689, 0.0159813985, 0.0255131088, -0.0173194464, -0.0383072495, -0.00210667308, 0.032053005, 0.00654365355, 0.0023472209, -0.000204489173, 0.00688192435, 0.00822373, 0.0168984868, 0.00835152157, 0.0125686256, 0.0109825134, -0.00419079466, 0.0363527946, 0.0146057662, -8.18661429e-05, 0.010832171, -0.00476209586, 0.0177404042, 0.00296926266, -0.00280952384, -0.00877248, -0.00308389892, -0.00142355473, -0.0161618106, -0.0115387803, -0.0269112922, -0.00151657918, 0.0073329513, 0.00691950973, -0.00251259771, -0.00971212052, -0.00986998, 0.00374164688, 0.00992259942, 0.00543487817, -0.0229572877, 0.00393521274, 0.00729160709, -0.0181012265, -0.0108396886, 0.025347732, -0.00278321397, -0.00203150185, -0.011568849, -0.0273172166, -0.0220853016, 0.0163422208, -0.0127640711, 0.0165978037, -0.00854696613, 0.00362137286, 0.00503271259, -0.00244682282, -4.0551342e-05, -0.000239843139, 0.00683306297, -0.00788546, 0.00621665874, 0.00412689941, 0.00152785482, -0.0204616021, -0.0034541171, 0.0232579727, 0.0180561244, 0.012328078, 0.0092610931, -0.0165978037, -0.00930619519, 0.000961721642, -0.0073329513, -0.00316658709, 0.00765618775, -0.0106667941, -0.00622793473, 0.0177404042, -0.0173194464, 0.00824628118, 0.0015306737, -0.00608510943, -0.00519057177, -0.0173194464, 0.00101105275, -0.0336767025, 0.0275878329, 0.0159362964, -0.0136285396, 0.0358115621, 0.0195294805, 0.00940391794, -0.00784787443, 0.0040028668, -0.00853193179, 0.0137939164, 0.00244494365, 0.0193641037, 0.0182666034, 0.0151469987, -0.0013295908, -0.0262798537, -0.0131549612, 0.0239495467, -0.00564535754, 0.0174397212, 0.0127565544, 0.00960688, -0.0249267723, -0.0244757459, -0.0495829284, 0.00548749836, 0.0239946488, 0.014079567, -0.0322634839, -0.0232730061, -0.0117041571, 0.00288093649, 0.00951667503, 0.0123731811, 0.0124258008, 0.0295122173, -0.0139968786, 0.000154805704, -0.0056040138, -0.0178306103, -0.000443979952, -0.00698340544, 0.012282975, 0.00178343686, -0.0020221055, -0.0329249874, -0.0143501833, -0.000630028662, 0.0123957321, -5.28253913e-05, -0.00384876598, -0.00905813091, 0.00702474965, 0.0118770506, -0.0155153377, 0.00366647565, -0.00346727204, -0.00256521744, -0.00778022, 0.0011050168, -0.0032492755, 0.00871234294, 0.00310269161, 0.0120800128, -0.00456665084, -0.00787042547, -0.00589342276, -0.00473954482, -0.00619786605, 0.00831393525, 0.00728033157, 0.0113734035, -0.0184620488, 0.0220101289, -0.00635948405, -0.0094640553, -0.00553260092, -0.00456289249, -0.0100804586, -0.00446141139, -0.0120649785, -0.0208224244, 0.0115763657, -0.0100954929, -0.0158761591, -0.00535970693, -0.0196196847, 0.010554038, 0.00316282851, 0.0104863839, 0.00366083789, 0.0103285238, 0.0137563311, 0.0139292246, -0.00121213577, -0.014034465, -0.0096595, 0.00876496267, -0.0154552, 0.0317823887, -0.00405548653, 0.00189525413, 0.0104713496, -0.0131549612, 0.0104863839, -7.581721e-05, 0.00695709512, 0.00343532418, -0.00762236072, 0.00986246299, 0.00463806372, -0.00367023423, 0.00945653766, -0.016176844, 0.0349095091, -0.00261032023, 0.00212734519, 0.025994204, 0.0119447047, 0.0338571109, -0.00178907474, 0.0143426666, 0.00875744596, -7.07079162e-05, -0.0178155769, 0.019334035, 0.013410544, 0.00645344844, 0.0222206097, -0.0209276639, 0.0055626696, -0.0143050812, -0.0152973412, -0.00438248133, 0.00877999701, -0.0068932, 0.0108847907, -0.00600242103, 0.0342780724, 0.0156356115, 0.0140194306, 0.0202210546, -0.0121326335, -0.0272270124, 0.0068856827, -0.0184019115, 0.0234985203, -0.00903557893, 0.0079230452, 0.00155604398, 0.011568849, -0.00908819865, -0.0268661901, -0.00712247193, 0.023964582, -0.00144328724, -0.00889275409, 0.000317363447, -0.0110200988, -0.00719764316, -0.00236601382, 0.0161016732, 0.0038638, 0.0022250677, -0.000991320354, 0.0251222178, 0.0103134895, 0.00485230144, -0.0241750609, -0.0140043963, -0.0135308178, 0.00809593871, 0.00346915121, -0.00189337484, 0.00872737728, 0.00564911636, 0.00975722261, -0.00478464738, -0.0417350531, 0.00996018481, 0.00469820062, 0.0247463621, 0.0120724961, -0.00738557102, 0.000798694091, 0.00033098823, -0.0143577009, -0.0150116906, -0.00137845206, -0.00252951123, 0.0149891386, 0.002373531, -0.0144479061, -0.00873489399, 0.00776518602, 0.00532963872, 0.0109374104, 0.0160415359, -0.019589616, -0.0157408509, -0.010832171, -0.000325820205, 0.00854696613, 0.0136811603, 0.011245613, 0.024310369, 0.00385628291, 0.0168082826, 0.00390514429, -0.0315418392, 0.0226265341, 0.0161918774, -0.00281140325, 0.00695333676, -0.010163147, 0.0161918774, -0.00190652977, -0.00420207065, -0.0270466, 0.0137563311, 0.000297396095, 0.00318538, 0.0117267082, -0.00399159128, -0.00887020212, 0.0121476669, -0.00450275559, 0.00654741237, -0.00710367924, -0.00158799172, -0.0160265025, -0.0134932315, -0.00181538472, -0.00935129821, -0.0179358497, 0.0012450231, 0.00356311537, 0.00472451048, 0.00680675311, -0.0130271707, -0.00861462, -0.00927612744, -0.00166504225, 0.0153574776, 0.0175299253, 0.00334136025, 0.0206871163, -0.0282192715, 0.0114410575, 0.00566790905, -0.000761578325, 0.0152522381, 0.00944902096, 0.023137698, -0.00048579392, 0.000935411721, 0.0439901911, -0.0244306419, -0.00565663353, -0.00331692956, -0.00582952704, 0.0265655052, -0.00309141586, 0.0332256742, 0.00903557893, 0.000561904802, -0.0112907151, 0.00382621447, -0.0219349582, 0.0011256889, -0.00693078525, -0.00207660464, -0.0214237943, -0.011523746, -0.00864468887, 0.00610390212, 0.0237691365, -0.00976474, 0.0288807787, 0.00268549146, 0.0120499451, -0.017214207, 0.0133353723, 0.039449852, -0.0069270269, -0.00051351334, 0.00373225054, 0.0202210546, -0.00227580825, -0.0276329368, 0.0313313603, -0.0126362797, -0.00683682133, -0.00668647885, -0.00278885174, -0.00475833751, 0.00715629896, -0.011982291, 0.00683682133, 0.0139893619, -0.000158094452, -0.00168289547, 0.00490116281, -0.025994204, -0.0259791687, 0.00259340671, -0.00555891078, 0.0117417425, 0.000583516492, -0.00594228413, -0.00101669063, 0.0034935819, 0.00881006569, 0.0147861764, 0.00707736937, -0.0158160217, -0.00541608548, 0.0017777991, -0.00657748058, -0.0161467753, 0.0197700281, -0.0148763824, 0.0109749967, -0.0121777356, 0.00440127403, -0.0077276, -0.00187552162, -0.0115312636, 0.00722771185, -0.0174397212, -0.0106968628, -0.0388484821, 0.000177004709, -0.00743443239, -0.0118093966, -0.00156638, 0.00209915591, 0.00905061327, 0.00578066614, -0.0253627654, -0.00750208646, 0.0118469829, -0.00317410426, -0.000260750123, 0.0160265025, -0.00380366319, -0.0015738972, 0.00301060686, 0.015831057, 0.0251372512, 0.0135834375, 0.00691575138, -0.0132150985, 0.0205367748, -0.0204465687, 0.000312195421, -0.0137638487, -0.00974218827, 0.00498760957, -0.0147636253, -0.0137262624, 0.0111478902, 0.0206570476, 0.00297865923, -0.0149064502, 0.00410810672, 0.011245613, 0.00440503284, -0.000152691515, -0.019589616, -0.0151695497, -0.0118244309, 0.0269263275, 0.0158611257, 0.00880254805, -0.00491243834, -0.00827635, 0.0111478902, -0.0169886928, 0.000755940448, -0.006336933, -0.00477337185, 0.0170638636, 0.0210479386, 0.0222506784, -0.00336767, -0.00805083662, -0.0153424433, 0.00283583393, 0.0148237627, 0.0197098907, -0.00662258361, -0.0279336218, 0.004735786, 0.000242427152, 0.0044087912, -0.0106818285, 0.0703001171, 0.0102458354, 0.0113959555, -0.0156356115, -0.00132583221, -0.0229422525, 0.00781780574, 0.0449523814, 0.00932874717, 0.0117116738, -0.0168533847, 0.0224160552, -0.00119522226, 0.0267759841, 0.0144930091, -0.0272871479, 0.00723898737, -0.000610296265, 0.0094640553, -0.00134556461, 0.00566790905, -0.00985494535, -0.00862965453, -0.0190333501, 0.0018360567, 0.00801325124, 0.0049387482, -0.00189431442, -0.0104036955, -0.0162219461, -0.0132226152, 0.00569421891, -0.0122303553, -0.0106968628, -0.026385095, 0.0166880079, 0.00544991251, 0.0030256412, -0.00401038397, 0.0140269473, 0.0221153703, 0.00379238743, 0.0068932, 0.00873489399, 0.00913330168, 0.00283583393, 0.0089829592, -0.0200857464, -0.00730664143, -0.00865972321, 0.00534091424, -0.024310369, 0.00461551221, -0.00929867849, -0.00291664293, 0.00300872768, -0.00318725919, 0.00786290877, 0.0149064502, 0.00244118506, -0.00372849195, 0.0157558843, 0.0147110056, -0.00524695031, 0.0122228386, -0.00900551118, -0.0236488618, 0.0111027872, -0.0250019431, -0.000998837408, 0.0228069443, -0.0109148594, -0.0216643419, -0.0168383513, 0.0172893777, 0.0153649952, -0.0261896495, 0.0111779589, 0.000356593431, -0.00150530343, 0.0127039338, 0.00435241312, -0.00875744596, -0.000566133182, 0.014079567, 0.00491995551, -0.0189130753, -0.0204014666, 0.00596859399, -0.00413817493, 0.00766370445, 0.00763739459, -0.0328347832, 9.64305655e-05, -0.00292791845, 0.00389011, -0.0212133154, 0.00360445934, 0.0228971504, -0.00763739459, 0.015831057, -0.0100654252, 0.0128091741, -0.00502519542, -0.000799163885, 0.0367436856, -0.00184827205, -0.0105991401, 0.0234684516, -0.00859206915, 0.0073104, 0.00246749492, 0.0157709196, 0.0334361531, -0.00286402297, 0.0115387803, 0.00920095574, 0.0166729745, 0.0106893461, -0.00802828465, 0.0213786922, 0.0178005416, -0.025603313, 0.00861462, 0.00386755867, -0.00861462, -0.0114335408, -0.00507405633, 0.0104863839, 0.00379802519, -0.00695709512, 0.0116515374, 0.0104112122, -0.02456595, 0.00950164068, 0.0215891711, -0.0148538304, -0.00302752038, 0.00192344328, -0.00376419816, 0.0362325236, -0.0227317736, -0.00226265332, -0.00648351666, 0.00146020076, 0.0119447047, -0.0205668435, -0.00340337656, -0.0311810169, -0.0164925624, 0.012673866, 0.00790049415, 0.0190333501, -0.0185372196, 0.00351989176, -0.00301248627, -5.10342034e-05, -0.00548749836, 0.00747201825, -0.000279777829, 0.008411658, 0.000610766059, 0.0185372196, -0.0125611089, 0.00292791845, 0.0104939006, 0.00113226636, 0.000845206261, -0.000991320354, 0.00254642474, 0.00911826733, 0.00806587096, 0.00312336371, 0.0140645327, 0.00130328082, -0.00496881688, -0.0143050812, -0.00550629105, -0.0107043805, 0.00824628118, -0.0171390362, -0.00561528932, 0.0210780073, 0.0545442291, 0.0146057662, -0.0122078042, -0.0362024531, 0.00234346231, 0.0230925959, 0.0232579727, -0.0119447047, 0.0240848549, -0.00993763376, -0.00661506644, -0.00673909904, 0.00567918457, 0.00943398662, -0.0123205613, -0.02608441, -0.025347732, -0.0123431124, -0.0309104, 0.0159813985, 0.0269263275, 0.0092610931, -0.0016556459, -0.0105615547, -0.0130722728, 0.00687440718, -0.0240397528, -0.00522815762]
27 Feb, 2025
CSS Tutorial 27 Feb, 2025 CSS stands for Cascading Style Sheets. It is a stylesheet language used to style and enhance website presentation.CSS is one of the main three components of a webpage along with HTML and JavaScript.HTML adds Structure to a web page.JavaScript adds logic to it and CSS makes it visually appealing or stylish. It controls the layout of a web page i.e. how HTML elements will be displayed on a webpage.CSS was released (in 1996), 3 years after HTML (in 1993). The main idea behind its use is, it allows the separation of content (HTML) from presentation (CSS). This makes websites easier to maintain and more flexible.How to Add CSS to HTML?There are three different ways to add CSS styles to an HTML document:1. Inline CSSUse the style attribute on the HTML element to add styles to the web page. It is used for small projects. HTML <!-- File name: index.html --> <html> <body> <!-- Using Inline CSS --> <h3 style="text-align: center;"> Welcome To GFG </h3> <p>CSS Tutorial - GeeksforGeeks</p> </body> </html> 2. Internal CSSPlace the CSS styles within a <style> tag inside the HTML file, usually inside the <head> section. HTML <!-- File name: index.html --> <html> <head> <!-- Using Internal CSS --> <style> h3 { color: green; } </style> </head> <body> <!-- CSS is applied here --> <h3>Welcome To GFG</h3> <p>CSS Tutorial - GeeksforGeeks</p> </body> </html> 3. External CSSCreate a separate CSS file with a .css extension and link this file to your HTML file using the <link> tag. It consider the best practice to add CSS into HTML File. HTML <!-- File name: index.html --> <html> <head> <!-- Importing External CSS --> <link rel="stylesheet" href="style.css" /> </head> <body> <p>CSS Tutorial - GeeksforGeeks</p> </body> </html> CSS /* Write CSS Here *//* External CSS */ /* File name: style.css */ p { text-align: center; } CSS FundamentalsThis section covers the fundamental topics of CSS.Introduction to CSSCSS SyntaxCSS CommentsCSS RulesetCSS SelectorsCSS CombinatorsCSS Measurement UnitsCSS PropertiesCSS DisplayCSS BackgroundsCSS BordersCSS FontCSS ColorsCSS MarginsCSS PaddingCSS PositionCSS White SpaceCSS Height and WidthCSS OverFlowCSS ShadowStyling HTML Elements with CSSThis Section contains all the information about various styling techniques in CSS.CSS TextCSS ImagesCSS ListsCSS TablesCSS FormsCSS linksCSS MediaCSS Projects for BeginnersNow you have a basic understanding of CSS. So start with some beginner level projects to clear your concept and to implement in real world applications.Design Geeks for Geeks logoMeet the Team Page DesignTribute Page DesignDesign a web pageContact Us Page DesignCreate Browsers WindowDesign Email NewsletterCSS Responsive DesignThis Section contains all the designing techniques in CSS used for various use casesCSS Website LayoutCSS Box ModelResponsive DesignCSS PositioningCSS Nesting style rulesLogic Implementations in CSSThis Section Covers all the mathematical logic that can be applied in CSS.CSS CountersCSS ColumnsCSS Conditional RulesCSS Logical PropertiesCSS Math functionsInteresting Facts in CSSThis section covers all the interesting facts and features that make CSS a powerful and versatile tool for web design. CSS Image StylingCSS Text StylingCSS GridCSS Box ModelCSS FlexboxComplete CSSAdvanced CSS TopicsThis Section contains various information about advanced topics in CSSCSS SpecificityCSS VariablesCSS InheritanceCSS TransformsCSS TransitionsCSS AnimationsCSS VariablesCSS FunctionCSS Shadow DOMCSS Online QuizzesTo achieve a solid understanding of CSS, it’s essential to engage with CSS quizzes and MCQs. These CSS quizzes can enhance your ability to solve similar questions and improve your problem-solving skills.Here are some quiz articles related to CSS 3:Basic CSS QuizIntermediate CSS QuizAdvanced CSS QuizCSS Interview QuestionsDon't miss our CSS Interview Questions and Answers before going for your interview.CSS Interview Questions and Answers (2025) For BeginnersAdvance CSS Interview Questions and Answers (2025) For ExperiencedBonus Resource: CSS Cheat-Sheet for Beginners (2025) - A Basic Guide to CSS.CSS FrameworksCSS Frameworks are a collection of pre-written CSS files (and sometimes JavaScript components) that offer reusable code for common tasks such as buttons, grids, forms, and navigation menus.These CSS frameworks provide a set of standardized, reusable components and a predefined structure, allowing developers to create responsive and aesthetically pleasing websites with reduced effort.Other Useful CSS ResourcesCSS Complete Guide - A to Z CSS ConceptsLearn CSS: Free CSS Course For BeginnersCSS VersionsCSS 1: The foundation, released in 1996, introduced basic styling capabilities for fonts, colors, and margins.CSS 2: Expanded in 1998, adding positioning elements, pseudo-classes, and improved layout options.CSS 2.1: Further refinements in 2004, including improvements to inheritance and box model properties.CSS 3: Introduced from 2001 onwards, CSS3 isn't a single version but a collection of modules adding features like animations, media queries, and web fonts. It's constantly evolving.CSS Preprocessors This section contains information about the preprocessors used in CSS.CSS Preprocessor SASSCSS Preprocessor LESSCSS Preprocessors LESS vs SASSWhy learn CSS?CSS is essential for modern web development. Here's why you should learn it:1. Enhance Visual AppealCSS allows you to style your web pages, making them visually appealing and engaging. Here’s why it matters:User Experience (UX): Well-designed websites attract and retain users. CSS enables you to create beautiful layouts, choose fonts, and apply colors that resonate with your audience.2. Responsive Design In today’s mobile-first world, responsive design is crucial. CSS empowers you to:Media Queries: Adapt your layout based on screen size (desktop, tablet, mobile).Flexbox and Grid: Create flexible, adaptive designs that look great on any device.3. Improve Website Performance and SEOCSS indirectly impacts your site’s SEO. Here’s how:Page Load Speed: Well-organized CSS files load faster, improving user experience. Google considers page speed as a ranking factor.Structured Content: Properly styled HTML (thanks to CSS) enhances readability for search engines and users.Mobile Friendliness: Responsive CSS ensures your site performs well on mobile devices, positively affecting rankings.4. Efficient MaintenanceCSS promotes clean code and separation of concerns:Modularity: Separate CSS files allow easy updates without affecting other parts of your site.Consistency: Apply styles consistently across your site using classes and IDs.5. Career OpportunitiesLearning CSS opens doors to various roles:Front-End Developer: Mastering CSS is essential for front-end development.Web Designer: CSS skills are fundamental for creating stunning web layouts.Full-Stack Developer: Understanding CSS complements back-end skills.CSS Tutorial - FAQsWhat is CSS?CSS (Cascading Style Sheets) is a stylesheet language used to control the presentation and layout of HTML elements on a webpage. It defines styles such as colors, fonts, spacing, and positioning, enhancing the visual appearance of web content.What does "Cascading" mean in CSS?"Cascading" means that styles can be applied in different ways, and the browser has rules to decide which style wins if there are conflicts. Think of it like water flowing down, different streams (styles) can combine, and some are stronger than others.What are the types of CSS?The term "types of CSS" refers to the different methods used to apply CSS to an HTML document. These methods include Inline CSS, Internal CSS, and External CSS.How do I link an external CSS file to an HTML document?Use the <link> element within the <head> section of your HTML document. Example: <link rel="stylesheet" type="text/css" href="styles.css">What are some common challenges faced when working with CSS?Cross-browser compatibility issues, specificity conflicts, maintaining large codebases, and debugging complex layouts are common challenges. Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
CSS/CSS Tutorial
https://www.geeksforgeeks.org/css/?ref=outindfooter
CSS
CSS Tutorial
CSS, CSS Tutorial
GeeksforGeeks
[-0.0150506524, 0.0266554598, -0.0184395406, 0.0231099408, 0.0698281899, 0.0116688833, -0.00524708163, 0.000929986476, -0.0259577464, 0.00781722646, 0.00939775817, -0.0262567662, 0.0278800149, -0.0596900024, -0.00830135308, 0.00276237121, -0.0245196056, -0.00299197575, 0.000619397673, -0.0139400074, 0.00766771613, -0.000731975, -0.0485266037, -0.0133206099, -0.0214582141, 0.0142319081, 0.0052897986, 0.0270256735, -0.0293608755, -0.00592343556, 0.0382175483, 0.00484838895, 0.0244484097, -0.04083753, -0.0595191345, -0.0155205401, -0.0026520188, -0.0092482483, -0.0639617145, 0.0199346393, 0.0449383706, -0.0133989248, 0.0333762802, 0.00518300617, 0.0219281018, 0.00557813887, -0.0129076783, -0.0495802946, 0.0304715186, -0.0535672195, -0.00577392569, 0.0357114822, 0.0922689, 0.0304715186, 0.00262176082, -0.000162080178, -0.00291544083, -0.042090565, -0.0182829108, 0.0154920621, 0.00734021887, -0.0422899127, -0.0130856661, -0.0257726405, 0.00357221602, 0.0346862711, -0.0506624579, -0.000936216034, 0.00155294396, -0.005428629, -0.0262852442, 0.0156629309, -0.00895634852, 0.0114624174, -0.0181547608, -0.00306673045, -0.0074470113, 0.0255020987, -0.00658199051, 0.0241493899, 0.0091414554, -0.0107006291, -0.0194932278, 0.025231557, 0.0129575152, 0.0197637696, -0.0119323051, -0.0456218421, 0.0524281, -0.0128578413, -0.00792401843, -0.0066104685, 0.050292246, -0.0529122278, -0.0479855239, 0.00953302905, 0.0157768428, 0.00861461181, -0.00397980819, 0.0105867172, 0.0233947225, 0.0313543379, -0.00409728, -0.0380466804, 0.000827643496, -0.0351704, 0.00711595407, 0.010821661, 0.0306708645, -0.0172577016, 0.030072825, -0.00592343556, -0.0524281, 0.0233947225, -0.0295317434, 0.022796683, 0.00122099661, -0.0694294944, 0.0338888839, 0.0220420137, 0.0142888641, 0.0176563933, 0.00374130439, 0.0549626462, -0.0787133425, 0.0684042871, 0.000669234316, -0.0376195088, 0.0379327685, 0.00596971205, 0.016673902, 0.0328636765, 0.00654639304, 0.0299589131, 0.0564150251, -0.00789554, 0.0168447699, 0.0328351967, -0.0292754397, -0.0183683448, -0.0260574203, -0.00981069, -0.0129005592, 0.0258011185, -0.0152215203, -0.00993884075, 0.0236510243, 0.0480994359, -0.0375625528, 0.0159761887, -0.0332054123, -0.0122313248, -0.00931232423, 0.0110352458, 0.0381605923, -0.0187670384, -0.0212161504, 0.0233235266, 0.014459732, 0.000228714372, 0.0376479886, -0.0165172722, -0.00497298036, 0.010814541, -0.00234765955, 0.0236225463, 0.0463622734, -0.0261001382, -0.0534248315, 0.0407805741, -0.000517499633, 0.0303860847, -0.0202336572, -0.00959710404, 0.000371104659, -0.0027143145, 0.0339458399, -0.0367082134, 0.0303860847, 0.0207889806, -0.0427740403, -0.0235940684, 0.0122242048, 0.00402964465, 0.00764635764, 0.00444969628, 0.00929808524, 0.00623313431, -0.0405812263, -0.0159619506, -0.0567852408, 0.0202051792, 0.0472166166, 0.0273958892, 0.0198919214, -0.00774603104, -0.0447390229, 0.0413216576, 0.00635060621, 0.0186958425, -0.0151930423, -0.0486974753, -0.03118347, 0.0334332362, 0.0730177313, 0.00411151908, -0.00650011608, 0.00139809446, 0.030072825, -0.0258438345, -0.0324649811, 0.0323510692, -0.0111349197, -0.0122811608, -0.0139613664, 0.0110423658, -0.0331484564, 0.00402252516, -0.025203079, -0.0291330498, 0.0219565798, 0.0320093334, -0.00967541896, -0.0135128368, -0.0465900972, -0.0202336572, 0.00232274132, -0.025231557, 0.0161612965, -0.00141322345, -0.00183327473, 0.00105279812, -0.00749684777, 0.014367179, 0.00273211347, 0.00469887909, -0.0132422959, -0.0247616693, -0.0237364583, 0.0314967297, -0.00325005804, -0.0136623466, -0.00936216, -0.0137549005, -0.0151788034, 0.0175282434, 0.0175852, -0.0147516327, -0.00473091705, 0.0110352458, 0.0135911517, -0.000113022281, 0.00550338393, -0.002636, -0.0217287559, 0.0418057851, -0.0121886078, -0.0508618057, 0.0181689989, 0.00904178247, 0.00799521431, 0.00320022134, -0.0169729199, -0.00872140471, -0.00185997295, -0.0214724541, 0.0271395855, -0.0200627893, -0.00911297742, -0.0368790813, 0.069714278, -0.055105038, 0.0273674112, 0.012046217, -0.0308132563, 0.00535387453, 0.0219138637, -0.0136552276, 0.000967363943, 5.18667684e-06, 0.0299873911, -0.0173146576, 0.0305284746, 0.0402679704, -0.000345963868, -0.0358823501, -0.0111420387, 0.00297061703, -0.0151930423, -0.0111491587, -0.00433578389, -0.0130358292, 0.0248755813, -0.00639332319, 0.0437707715, -0.00328387576, -0.0139969643, -0.00429662643, -0.0231099408, -0.00288162311, 0.0347432271, -0.0118824681, 0.0188524723, -0.0281220786, -0.0289337039, 0.033575628, 0.0247474294, 0.0211449564, 0.0037697826, -0.0394705832, 0.0100741116, -0.00920553133, -0.00474159606, -0.0533963516, -0.0181120429, 0.0113485046, 0.0395275392, 0.0113983415, -0.0281505566, -0.0230245069, -0.0100171557, -0.010864378, -0.0441979393, 0.0499220304, 0.0362240858, -0.0159192327, -0.0197210535, -0.00354907755, 0.0131212641, -0.00287984335, -0.0348856188, -0.00825863611, 0.00931232423, 0.00318776234, 0.0455079302, -0.04083753, -0.0146377198, 0.0470172688, -0.00285136513, -0.00365231046, -0.0308417343, 0.0190518182, -0.0042218715, -0.00893499, 0.0211591944, -0.0340882316, -0.022825161, -0.0116831223, 0.0535102636, -0.00169088447, 0.00145060092, 0.0361101739, -0.00186531257, 0.0103161754, 0.0404673144, -0.00981069, 0.010778944, -0.0161328185, -0.0223552734, -0.00247225119, 0.0434575118, -0.0246192776, -0.00596259255, -0.0018706522, 0.00388369476, -0.0523141883, -0.0160046667, -0.0112915486, 0.0457642339, -0.00486262795, -0.0388440676, -0.00389081426, -0.0153211933, -0.00738293584, -0.0357969142, 0.00771755306, -0.00668166345, -0.032322593, -0.0571269765, 0.0154351061, 0.0128507223, 0.0552759059, 0.0250464492, 0.0381321162, 0.0137050636, -0.0169871598, -0.00600175, -0.0114837755, -0.00522572314, -0.00920553133, -0.00926960725, -0.0171295498, 0.00147818902, -0.0182401948, 0.0395844951, -0.0126157785, 0.00199524383, 0.0207177848, -0.000558881846, -0.0433436, 0.0482418239, -0.0161470566, 0.0284780543, 0.0273674112, 0.0074470113, -0.00823727716, -0.00059180957, 0.00233520055, 0.00566713279, 0.00733309891, -0.0282644685, -0.0123808347, -0.0102663385, 0.00616193935, 0.0270541515, 0.0554182939, -0.00337642943, 0.0502637662, 0.0356260464, 0.0139471274, 0.0163748823, 0.00222840789, 0.0243202597, 0.00928384624, 0.0299873911, -0.0307847764, -0.0280081667, -0.00250428892, 0.0424892567, 0.00954726804, -0.0432866439, -0.000901953375, -0.003000875, -0.0138403345, 0.0105084023, -0.0490107313, 0.0195786636, -0.0428309962, -0.0142105492, 0.00532183656, 0.0074541308, -0.0276664309, 0.0105582392, -0.0034832221, -0.0609430373, 0.0195074677, -0.0366797335, 0.00860749185, 0.0126513755, -0.00353127881, -0.0262425281, -0.0284495763, -0.0257868785, 0.0117543172, 0.0228678789, -0.0233662445, 0.00172826194, -0.0034761026, 0.0031201269, -0.02152941, -0.00797385536, -0.00607294543, 0.00375198363, 0.0157483649, -0.000196454086, -0.0045707277, -0.0311265141, -0.0162324905, -0.0267551318, -0.000191225685, -0.0056279758, -0.032379549, 0.0387871116, 0.0125588225, 0.0117970342, 0.00657843053, 0.0267978497, -0.00519724516, -0.00546422694, -0.0565858968, 0.0392997153, 0.0530830957, 0.0237506982, -0.0214012582, -0.0214866921, 0.00904178247, 0.00723698549, -0.00326963677, 0.0188524723, -0.0103446534, -0.0296456553, 0.0215436481, -0.0153354323, -0.023935806, 0.0231241807, 0.00951167, -0.00400828617, -0.0260004643, -0.00428594742, 0.0281078406, -0.0218426678, 0.0489822552, -0.0118112732, 0.0448529348, 0.00559593784, -0.0188667122, -0.0170298759, 0.0326358527, 0.00223552738, 0.00312546664, -0.00741853332, 0.0158195589, 0.00184929371, 0.0401825346, -0.0170156378, -0.00346364337, -0.0293039177, 0.00840102602, -0.0150791304, -0.0354551785, 0.00465972163, 0.0149936955, -0.00523640215, -0.021088, -0.0267978497, -0.010807422, 0.0261001382, -0.0234516785, -0.0186531264, -0.0111064417, -0.00538591202, -0.0152072813, 0.0116190463, 0.014395657, -0.00653571356, 0.00999579765, -0.0154635841, 0.00112933281, 0.018069325, 0.00783858448, -0.0500074662, 0.00774603104, -0.0404103585, -0.0173573736, 0.00286738412, -0.00360069401, 0.00135092775, -0.00746837, 0.0401255786, 0.0213727802, 0.00562441582, 0.0249467753, 0.023978522, 0.00162769877, -0.011996381, -0.0160473846, -0.0226970091, -0.0100527536, 0.0137264226, -0.0141037563, 0.0079168994, -0.0152215203, 0.0505770259, 0.033575628, -0.00373418489, -0.0279227328, 0.00664606597, 0.0125303445, -0.0061405804, -0.00489466591, -0.00429662643, 0.00170512358, -0.0012841823, -0.0219565798, 0.00244733295, 0.00951167, 0.0535102636, -0.0273816492, 0.0248613413, 0.0218996238, -0.00212517474, -0.00748260878, 0.0133490879, -0.0167166181, -0.0026324403, 0.0175140034, -0.000286782917, 0.00711951358, -0.0246762354, -0.0162040126, -0.0137264226, 0.0083227111, -0.0255875327, -0.0163891204, 0.00857189484, 0.0247759074, -0.00693440624, -0.0174712874, 0.00688457, -0.0102948165, 0.0118468711, 0.0130073512, 0.0242633019, 0.0102734584, -0.00431798492, -0.0140966373, 0.00120853749, -0.0163464043, -0.00506909378, 0.0183256287, -0.0250037331, -0.0138830515, 0.0123808347, -0.0148228277, -0.00594123406, -0.0225403812, -0.0182259548, 0.0176848713, 0.0165884662, -0.0200343113, 0.00874276273, -0.000388903427, 0.0294747874, -0.0186958425, 0.0237934142, 0.0124093127, -0.012103173, -0.00612990139, -0.00798097532, -0.0298165232, -0.0195644237, -0.0189379063, -0.00285492511, -0.00789554, 0.00280330842, 0.0149652176, -0.00502637681, 0.0218853857, -0.00252386765, 0.00898482651, -0.0151788034, 0.0369929932, -0.00334261172, 0.135327712, -0.00112666306, 0.0371923409, -0.00419695349, 0.0369360372, 0.00147640915, -0.0027641512, 0.0195786636, -0.0119394241, 0.0151930423, 0.0265985038, -0.0166311841, 0.0120675759, 0.00998155866, -0.0274670832, 0.00838678703, -0.00405100314, -0.00475939503, -0.0367366895, 0.0372492969, 0.039755363, -0.0111206807, -0.039612975, 0.00387657527, 0.0144953299, -0.013199578, 0.0199773554, 0.00307563, -0.034800183, -0.0127866464, 0.0312689058, -0.0113342656, -0.00932656322, -0.0130073512, 0.033461716, 0.0105155222, 0.00493738288, -0.0245908, -0.0185819305, 0.0364803895, 0.0303291287, 0.00253810664, -0.0124876266, -0.0303576067, 0.000265646842, -0.0153639102, 0.0163464043, 0.0447390229, 0.0295602214, 0.0284353383, 0.00734021887, 0.00986052677, -0.00134202838, -0.00190269, -0.0195359457, 0.00921977, -0.00840102602, 0.025174601, 0.00695576472, -0.031211948, -0.00391573273, 0.00373062515, 0.0298450012, 0.00228358409, -0.00603022799, -0.0152357593, -0.0134558808, 0.0159477107, 0.0028762836, 0.00215365295, 0.020347571, 0.0163179263, 0.0105084023, 0.016816292, -0.00818032119, -0.0296456553, 0.0165172722, 0.00664606597, -0.00970389694, 0.0014728494, -0.0128436023, -0.0258153565, -0.00823015813, -0.0201482233, 0.00496230088, -0.0285634883, -0.0116546443, 0.000123812788, 0.00594479404, 0.0449953265, -0.00494450238, -0.012039098, -0.010764705, 0.0237934142, 0.0187955163, -0.0177418273, 0.0175994374, 0.00560305733, -0.0311549921, -0.0236795023, -0.0137620196, -0.00799521431, 0.0067279404, 0.0241921078, 0.0283214264, 0.0220420137, 0.0102165025, -0.00483415, -0.0267551318, 0.0413216576, -0.0391858034, -0.000542862923, -0.00678133685, -0.0219850577, -0.00320734084, -0.0123452367, 0.0270968694, 0.0248328634, 0.0215721261, -0.00179144763, -0.0148655446, -0.0122526828, -0.00193828763, -0.0426031686, -0.00460276566, 0.00840102602, -0.00254522613, 0.0194789898, 0.0249610152, 0.0577534959, 0.0113841025, 0.00261820108, 0.00449597277, -0.00500501832, -0.0182829108, -0.0317815095, 0.0185249746, 0.000679913559, 0.0171437897, 0.0154208671, 0.00173271168, 0.0164603163, 0.000154181966, 0.00806640927, 0.0142105492, -0.00520080468, 0.0361671299, 0.0220847316, 0.0411223099, -0.0055639, 0.0171722677, -0.0116475243, -0.00909873843, -0.0405812263, -0.00882819667, -0.00926960725, -0.0286916401, 0.00727970293, -0.0234659165, -0.00691304775, -0.0159477107, 0.0289621819, -0.027652191, 0.00992460176, -0.0340312757, -0.0215721261, -0.00734733837, 0.0140966373, -0.00402252516, -0.0362240858, -0.000354195799, 0.00150310737, -0.0111135608, 0.0198349655, 0.0243629757, -0.00558525836, 0.0363664776, 0.000775582041, 0.0165599883, 0.00671726139, -0.014324462, -0.0446535908, 0.0353697427, 0.00861461181, -0.00840814598, 0.00658555, -0.00726902345, -0.00560305733, -0.00500501832, -0.0184395406, 0.0383029841, -0.015549018, 0.0105226412, 0.0142319081, -0.0101239486, 0.0231526587, 0.00146217016, -0.00601242948, 0.00541795, -0.00667098444, 0.000782701536, -0.0202478971, 0.0212161504, -0.0052897986, 0.0154208671, 0.0343160555, -0.0158622768, 0.032379549, -0.00401896564, 0.0254024249, 0.0117685562, -0.00180835649, 0.0188239943, -0.0185534526, 0.00657843053, 0.00255946512, -0.018026609, -0.000774692104, 0.0142461471, -0.00543930847, 0.0164460763, 0.0212588683, 0.0115620904, -0.00255946512, 0.0086288508, -0.0283499043, -0.0110352458, -0.0229817908, 0.00137050636, -0.00823015813, 0.0409799218, -0.00669590244, -0.000503260642, -0.00339244818, 0.0118041541, -0.00769619411, 0.0320093334, 0.0403534025, 0.00494450238, 0.00547846593, -0.0173431356, -0.00111865357, 0.020447243, -0.0247474294, 0.00571696972, -0.00736157736, -0.0284780543, -0.00485194847, 0.00948319212, -0.0119038271, -0.0290476158, -0.0318099856, 0.0478146523, -0.00207889802, 0.0141607132, -0.0202478971, 0.00443189731, 0.00902042352, 0.0243914537, 0.0225973371, -0.0174855255, 0.00558525836, -0.0151645644, -0.00143903168, -0.00478075352, -0.0125588225, 0.015577496, 0.0155205401, 0.0147658717, -0.0352843106, -0.0262994841, 0.0275098011, 0.0210452825, -0.0295317434, -0.0146804377, 0.0363095216, 0.00794537738, 0.0174855255, -0.015620213, -0.0316106416, 0.0400401466, -0.0281647965, 0.0123808347, -0.0190518182, 0.0131568611, -0.0261001382, -0.0102948165, 0.00633280724, 0.0236510243, 0.0242775418, -0.00359179475, -0.0482703038, 8.45998438e-05, -0.0326358527, 0.0295032654, -0.0396699309, 0.00247225119, 0.015605974, 0.0344869234, -0.00491246441, -0.0165742282, -0.00111509382, -0.0194932278, -0.00958998501, 0.0161328185, 0.00557457935, 0.0294178315, 0.00401540566, -0.000566891278, 0.000453424029, -0.0173146576, 0.00530759757, -0.0341451876, -0.0219138637, 0.0110993218, -0.0181262828, 0.000451644155, 0.0170156378, -0.0125018666, 0.0340312757, 0.0174712874, 0.0406097062, 0.0306139085, -0.0104443263, -0.00872140471, 0.0237364583, 0.0177987851, 0.0121886078, -0.0256729666, 0.00112933281, 0.000676353811, -0.002094917, 0.00215187296, 0.014381418, -0.0296171773, 0.0395844951, -0.0169444419, -0.00577036571, -0.00443189731, -0.013228057, -0.00530759757, 0.0339743197, -0.0365658216, 0.0401825346, -0.00258616335, -0.0272962153, 0.0161185786, 0.025146123, 0.00126816332, -0.00813760422, -0.0142532662, -0.0309271682, -0.00168643484, -0.00436782185, 0.00818032119, 0.00497654, -0.00141945307, -0.0176136773, -0.00980357081, 0.00164193788, 0.0193366, 0.0411223099, 0.0357684381, -0.0175424814, -0.0119536631, -8.53785459e-05, 0.00805217, -0.0174712874, -0.0202621352, -0.00659978902, -0.010793183, 0.023964284, -0.00127083319, -0.0130144712, 0.00565645378, 0.0109569319, -0.00949031208, 0.00689880876, -0.00763923815, 0.0258723125, -0.0104514463, 0.0111633977, 0.0149652176, -0.00266447803, 7.28081504e-05, -0.0134772398, 0.00525420113, -0.000505930453, -0.00907738, 0.00623313431, -0.00412219856, 0.00438206084, -0.00519012567, -0.0305569526, -0.0556176417, -0.00661402848, -0.0148940226, -0.00738293584, 0.007190709, -0.00411863858, 0.00394777, 0.0134701198, -0.0087356437, -0.0164745543, 0.0138545735, -0.00172915193, -0.0117614362, 0.0119180661, -0.00694152573, -0.00912721641, -0.0201055072, -0.0282359906, 0.0242490638, -0.00429662643, 6.73016548e-05, 0.0171295498, 0.00249005, -0.0101310676, -0.0103802513, -0.01082878, -0.00882819667, -0.0177133493, 0.0404103585, 0.0168732479, -0.00418627402, 0.013249415, -0.00658911, 0.0105084023, -0.00458496669, 0.0256872047, 0.00116404053, 0.0104158483, -0.000761343, -0.00469887909, 0.00877836067, -0.0128507223, -0.0193650778, 0.0138545735, 0.00491246441, 0.0376479886, 0.0195786636, 0.00114179205, -0.0336325839, 0.0121530099, -0.00931232423, -0.00968965795, -0.00606938545, -0.00717291, -0.000189223327, 0.0015351451, -0.0159477107, -0.00115781091, 0.0302152168, 0.00631144876, 0.0839533061, -0.0149652176, -0.0127652884, -0.0437422916, 0.00837254804, -0.00487330696, -0.020504199, 0.0215436481, 0.00901330449, -0.000171535779, 0.0228394, 0.00165884674, -0.0212303903, 0.00822303817, -0.0102734584, 0.0185676925, -0.0021002565, -0.00455648871, 0.0032393788, -0.0191230141, -0.0154635841, 0.00649299659, 0.00978933182, -0.0256587267, 0.0282929484, 0.00241707498, 0.000220704926, -0.00639332319, -0.0396414511, -0.00516876718, 0.0370499492, -0.000614503049, 0.0163036864, 0.00568137178, -0.00412575807, 0.0421190448, -0.0069664442, 0.0146377198, -0.0226400532, 0.000512605, -0.00332125323, -0.0202621352, -0.0296171773, 0.00280330842, 0.0139542473, 0.0242775418, -0.0101737855, 0.0097608529, 0.00130198104, 0.0110067679, 0.00718358951, -0.00254700612, -0.0111349197, -0.00907026, 0.0179554131, 0.0178130232, 0.00520436466, -0.00608006492, 0.0177418273, -0.0365943, -2.63366383e-05, -0.0139684863, 0.025302751, -0.00241707498, 0.0128222443, 0.01082878, -0.0101168286, 0.0172434617, -0.0137050636, 0.0121743688, 0.017912697, 0.0225546192, -0.00369858742, 0.00894922856, -0.00462768413, 0.000813404447, 0.00442121783, 0.00870716572, -0.00220170966, -0.0330630206, 0.0211164784, -0.0115692094, -0.0105012823, 0.0170725938, -0.0167735741, 0.00465972163, -0.0180835649, -0.00998867769, -0.0349710509, 0.00495874137, -0.00195252663, -0.0495518148, -0.0159334708, -0.00330701424, 0.00528267911, -0.0122384438, 0.0238503702, 0.0363379978, -0.00169088447, 0.00804505, 0.00116493041, 0.0187243205, 0.0159904286, -0.00511181075, -0.0117258392, -0.0111918757, 0.00945471413, -0.00931232423, -0.0104443263, 0.00887803361, 0.0265985038, 0.0210452825, 0.0068596513, -0.00546422694, 0.0267266538, 0.00073909451, 0.0142746251, 0.021088, -0.0113556245, -0.0185392145, 0.020418765, 0.0375055969, 0.00911297742, -0.0259292684, -0.00101809041, 0.00599819049, -0.000643426, 0.0102734584, 0.016802052, -0.00375910313, -0.00609074393, 0.0190091021, 0.00635772571, 0.0212731063, -0.00945471413, 0.0242205858, -0.0153781492, 8.97169957e-05, -0.0124377906, 0.00175496016, 0.0204614829, 0.00149331801, -0.0292754397, 0.000718625903, 0.00603734748, 0.0114695365, 0.00134380825, 0.00395488972, 0.00449241325, -0.00640400266, -0.0243060198, -0.0163179263, 0.00572764874, 0.0148797836, 0.0209028926, 0.00698068319, 0.0223267954, -0.0111847557, -0.00270363525, -0.0132921319, 0.0130429491, 0.0424038246, 0.0170725938, 0.0213015843, -0.00424679, 0.0225119032, -0.0138118565, -0.0338319279, 0.0181832388, 0.0196783356, -0.00350992032, -0.0165457502, 0.0115193734, -0.0142176691, -0.00688101, 0.0052969181, 0.0293039177, -0.0123452367, 0.00810200628, -0.013192459, 0.0018564132, -0.015605974, 0.00215899246, 0.000209469436, -0.0377619, -0.00631144876, -0.0284638163, -0.0162609685, -0.00658199051, 0.010736227, -0.0196213797, 0.00937639922, 0.0191087741, 0.0134060439, 0.0111918757, 0.0222128835, 0.0147658717, 0.0057846047, -0.00380182033, -3.98525917e-05, -0.0137976175, 0.0115620904, 0.0103660123, 0.0174143314, 0.00746125029, 0.00648943661, -0.0172577016, 0.0125873005, 0.00495518139, -0.00956150703, -0.0032393788, 0.0063719647, 0.0154493451, 0.0114695365, 0.0238788482, -0.0103944903, 0.00682049431, -0.00162146927, 0.00809488725, -0.00527911959, 0.0145451669, 0.00908449944, -0.0115264924, -0.00167575548, 0.0272535, 0.00609430391, 0.0130144712, 0.010857258, -0.012017739, 0.0163891204, -0.0301297829, 0.0255163368, 0.0190375801, 0.0138759324, 0.0343445353, -0.00729750143, 0.032521937, -0.0187812764, -0.0293608755, 0.00482703047, 0.0138616934, 0.0513459332, -0.0075538042, 0.00983204879, 0.0111989947, 5.06987235e-05, 0.0147801107, -0.012060456, -0.00987476576, 0.0224691853, 0.00531827658, -0.0198207255, 0.0274813231, -0.0282787085, 0.00368078868, 0.00354907755, 0.0021572127, 5.18389606e-05, -0.00361671299, -0.0209456086, -0.025245795, 0.0176421553, -0.027609475, -0.00721206749, -0.0133277299, -0.00277305068, -0.00666742446, -0.0149652176, -0.00256836461, -0.0102876974, -0.0101168286, 0.025174601, 0.0214866921, -0.0119536631, 0.010821661, -0.00823015813, 0.0256302487, 0.0113129076, -0.0195644237, -0.0118539901, -0.0164175984, 0.0194647498, -0.000884154637, 0.00442477781, -0.00239749625, 0.0118753491, -0.0229533128, -0.0249610152, -0.0281647965, -0.00453869, 0.00998155866, 0.0121601298, 0.0229675509, 0.00414711656, -0.00654995255, 0.0224549454, 0.00409728, -0.017969653, 0.00189379067, 0.00299731526, 0.0051723267, -0.0310980361, -0.037334729, 0.00312902639, 0.016802052, -0.0218711458, 0.00923400931, 0.00388013502, -0.00884243567, -0.0146092419, -0.00692016724, -0.0472166166, -0.0146377198, -0.0178842191, 0.000126816332, 0.00400472665, -0.0149367396, 0.00237613777, -8.6769076e-05, -0.00221416866, 0.00143636193, -0.0252885129, -0.00751820626, 0.00146928965, 0.00680625532, 2.59611952e-05, 0.0304145627, -0.00513316924, 0.0196213797, -0.00738293584, -0.00654995255, -0.0212161504, -0.0070234, -0.00288518285, 0.00406168262, 0.0126584955, 0.0109996488, -0.00579884415, 0.0346293151, 0.00013738437, -0.0380466804, 0.00674573937, -0.00749684777, 0.000666119508, 0.0278657768, -0.00420407299, -0.0149794566, 0.0304145627, -0.0145024499, 0.0196783356, -0.00623669382, -0.01082878, 0.00907738, 0.00863597, 0.0222556, 0.00726546394, 0.0246477574, 0.0251034051, -0.00322513981, 0.00640400266, 0.00044185482, 0.0148228277, -0.00525420113, -0.0158622768, -0.00768907461, -0.0237079803, -0.00388013502, -0.0070981551, 0.0576111041, 0.0393281952, -0.00375198363, 0.00473803654, 0.0296456553, 0.00854341686, 0.00933368225, 0.0492955148, 0.0369360372, 0.00779586751, 0.0201482233, -0.02635644, -0.00798097532, 0.0120533369, -0.0082728751, -0.017998131, -0.0244199317, -0.0050584143, -0.00767483562, 0.0336041041, 0.00847934093, -0.0146804377, 0.00632924773, -0.0228109211, 0.0297026113, 0.019151492, -0.0199061595, 0.0388155878, -0.0232665706, -0.00567781227, -0.0226258151, -0.0100883506, 0.00758940168, 0.00339778792, -0.0110566048, 0.000120030549, 0.0161328185, -0.0137620196, 0.00103766914, -0.0355690904, 0.0149367396, 0.00428594742, 0.000737759634, -0.0177133493, -0.0171865057, -0.038416896, -0.0200627893, 0.0236083083, 0.0118753491, 0.0411507897, 0.0111278, -0.000776472, -0.0138759324, 0.00344762462, 0.000927316665, -0.00756804319, -0.00221060892, -0.00590207707, 0.0308132563, -0.000634081662, -0.00308808917, -0.00714799156, 0.00128596218, -0.0354551785, -0.00993172172, 0.00913433637, -0.0172719397, 0.00787418243, 0.0019756651, -0.0180123691, -0.0150364125, -0.0140539203, 0.00374130439, 0.0103232944, 0.00524708163, 0.000915747427, -0.00144971104, 0.000483237, 0.0117827952, 0.0147089157, 0.00675997837, -0.00159299118, 0.025302751, 0.01082878, 0.00268049701, 0.00650723558, -0.0249467753, 0.0026395598, -0.0125161055, -0.0303006507, 0.0228678789, 0.0162182525, -0.0109070949, -0.0176706333, -0.0103304144, 0.0123594757, 0.0108857369, -0.0115264924, 0.00305249146, -0.00603378797, 0.00081251451, 0.0138759324, -0.00916281436, -0.0342875794, 0.00792401843, -0.0127296904, 0.00907738, -0.0153639102, -0.0135697927, 0.0114908954, -0.00638620369, -0.00423255097, -0.00204686029, 0.023935806, 0.00262354081, 0.0429449081, 0.0226827711, 0.0495802946, 0.00240995549, 0.00779586751, 0.0176848713, 0.0134558808, 0.0405812263, -0.00300265499, -0.0162040126, -0.0288055521, 0.00705187814, 0.0156344529, 0.0129361562, 0.0129147982, -0.0238930881, -0.0101453066, -0.012024859, 0.000365765, -0.00244377297, 0.0122669218, 0.0125801805, 0.00855765585, -0.00392285222, -0.00163837813, 0.0190518182, 0.00815184321, 0.0319239, -0.040752098, -0.0162040126, 0.00757516269, 0.0121957269, -0.00629009027, -0.0079168994, -0.00675997837, 0.0174997654, 0.0118824681, 0.0121102929, 0.00717291, 0.0100883506, -0.0370214731, 0.00532539608, 0.00180479675, 0.00650723558, 0.0287770741, 0.00476651452, -0.000256747473, 0.0190091021, -0.0149509786, -0.00627229176, -0.00641468167, -0.00355619704, 0.00212161499, -0.00329989451, -0.0090489015, 0.00474159606, 0.0177703071, -0.00112043344, 0.023992762, -0.0266269818, -0.00402252516, -0.00221060892, 0.00898482651, -0.0112488316, -0.0117970342, -0.00149064814, -0.0200485513, 0.00818744116, 0.00497654, -0.00982492883, 0.00741141383, 0.0179269351, 0.00812336523, -0.00983916782, -0.00333549222, -0.00369502767, 0.00284958538, -0.0102734584, 0.0115264924, 0.0102022635, -0.024063956, -0.010864378, 0.0014452613, -0.00101008103, 0.00325895729, 0.00569561077, -0.0180835649, -0.0035953545, 0.0112630706, -0.000749773812, 0.0248186253, 0.0206181109, 0.0164318383, -0.014409896, 0.0145238079, -0.00823015813, -0.00604446698, -0.016673902, -0.0234374385, -0.00805217, -0.010736227, 0.0118753491, 0.0104016094, 0.0215151701, 0.0190233402, -0.0149225006, -0.00281754765, 0.00741853332, 0.0146377198, -0.0242348239, -0.00260040234, -0.0190945361, -0.0075609237, -0.0318954214, 0.00727614295, -0.0100029167, -0.0125232246, -0.0102307415, -0.0156344529, -0.00673150038, -0.00789554, -0.0136196297, -0.0351419188, -0.0137264226, -0.0158480369, -0.0349425748, -0.010721988, 0.00985340681, -0.0272819772, -0.00102254015, 0.00431086542, 0.0127012124, -0.00252386765, -0.00583088165, -0.00463836314, 0.00523640215, -0.00751108676, -0.00713019306, 0.0125517026, -0.000997621915, -0.0182117168, 0.0309271682, -0.00417203503, 0.0124520296, -0.0102093825, -0.0171010718, -0.00582020264, 0.0102948165, 0.010843019, 0.00769619411, -0.00100563129, -0.00699492218, -0.00392285222, -0.0138759324, -0.00858613383, -0.0187527984, 0.0223695114, 0.013149742, 0.00187777169, -0.00689524924, -0.0173716135, 0.0021572127, -0.000459208648, -0.00243487372, 0.000315928424, -0.00385877653, -0.00593411457, 0.0275240391, 0.021686038, -0.00785994343, 0.00600175, 0.0124947466, -0.0108928559, 0.000990502303, -0.0130500691, 0.00408660108, -0.0126371365, 0.0221844055, 0.012103173, -0.00419339351, 0.00383029832, -0.0136837056, -0.00793113839, -0.00801657233, 0.00101453066, -0.0147231547, 0.00677421736, 0.0157483649, -0.00417915452, -0.0152927153, 0.0116973612, 0.0133846859, 0.0243629757, 0.0099744387, 0.000397802825, 0.0013749561, 0.00297951652, -0.0156344529, -0.0103660123, -0.00133312889, -0.0141963102, -0.0109996488, -0.0349995308, 0.000105179693, -0.0256302487, 0.000537968241, 0.00117649965, -0.011960783, 0.00687389029, -0.0259435084, 0.00990324374, -0.00697356369, -0.052769836, -0.00857901387, 0.0222840775, 0.0169729199, 0.00931944326, 0.047045745, 0.0109142149, -0.00198100461, 0.00695220521, 0.0017095732, 0.00908449944, -0.0042218715, 0.00563865481, 0.0141037563, 0.00988900475, -0.0231953766, 0.00459208619, -0.0241636299, -0.0193508379, -0.00299019576, -0.00298129627, 0.0254309028, 0.0261998102, 0.0127154514, -0.00882819667, -0.00300621474, 0.00968253892, -0.00771755306, -0.00205042, -0.0196498577, 0.00941911619, -0.004214752, -0.0230387468, 0.0113983415, -0.00256124511, -0.0235228725, 0.0251603611, 0.0087926, -0.0143102221, -1.10199508e-05, -0.00665674545, 0.00691660773, -0.00298129627, 0.00238859677, -0.00696288422, 0.0102165025, -0.00283890613, 0.00151823636, -0.0180123691, 0.00947607309, 0.0101951435, 0.0273246933, 0.0318669416, -0.00421119248, 0.0262567662, -0.00254522613, -0.00176118966, -0.00629720977, -0.0225403812, 0.0125161055, -0.00625805277, -0.00928384624, 0.0226258151, 0.00636484521, -0.0101951435, -0.00187243207, 0.0102734584, -0.00787418243, 2.52242153e-05, 0.0175140034, -0.0129432762, -0.00590919657, -0.000315483456, -0.00661758799, 0.0123808347, -0.00471667806, -0.00934080221, 0.00473091705, -0.0100100366, 0.00394421071, 0.0348286629, -0.020532677, 0.00219281018, 0.0018706522, 0.00987476576, 0.00483415, -0.000500590832, 0.0164603163, 0.0347432271, 0.017969653, -0.00662470749, -0.01201062, 0.0182544328, 0.0208032187, -0.00437850086, -0.00123167585, 0.0313258618, 0.0222698394, -0.00743277231, 0.0247901473, -0.0112844296, -4.41076118e-05, -0.00227112486, 0.00367722893, 0.0118041541, -0.00661402848, -0.0067101419, -0.00135181763, -0.00484482897, 0.00104567863, -0.0063719647, 0.010814541, 0.0169729199, -0.0137050636, -0.00458852667, -0.0253169909, 0.00154849421, -0.00506197428, 0.0071978285, -0.00242953398, -0.0368221253, 0.00646807812, 0.00652147457, 0.00623313431, -0.0203048531, 0.014417015, 0.00352237932, 0.00224086689, 0.0210310444, -0.00366298971, -0.018069325, 0.0153069543, -0.0127866464, 0.00305961096, -0.00109640509, -0.0140752783, -0.00654283306, -0.00995308, -0.0101239486, -0.015677169, -0.00920553133, -0.00191870891, 0.000199346381, -0.0028762836, 0.0135982716, -0.0166454222, 0.0173004176, 0.0236652642, -0.00361315324, 0.0105368802, 0.00481279148, 0.020475721, -0.0177275892, -0.0102734584, 0.00341024715, 0.0224122293, 0.00365231046, -0.00572764874, 0.00174250093, 0.0264561139, 0.00747548928, 0.00763211865, -0.0102378605, -0.00753956521, -0.00111509382, 0.0090916194, -0.000505040516, 0.00810200628, -0.0090489015, -0.00619753683, 0.00785282347, -0.0137193026, -0.00468819961, -0.0219281018, -0.0121601298, 0.00697000371, -0.012039098, 0.0090489015, 0.00163481839, 0.00352771906, -0.0061405804, -0.000202349926, -0.00958998501, -0.0188239943, -0.0178699791, 0.00582376216, 0.0147231547, -0.00546778645, -0.0103232944, 0.0213585403, -0.00813048426, -0.0040901606, 0.0217572339, 0.0320093334, -0.010544, 0.00210203649, 0.0200770292, 0.00890651159, -0.00777450902, 0.0264845919, 0.00677421736, 0.00526844, 0.0127937663, -0.0157626029, 0.00769619411, -0.0040830411, -0.00655707205, 0.00311834691, 0.000231829166, -0.0134202838, 0.0125161055, 0.00336219044, -0.000113578491, 0.0105938362, -0.000325272791, -0.0241636299, 0.00761787966, 0.0225973371, 0.0223837513, -0.00108305598, 0.000464103301, -0.0033016745, -0.000267204246, 0.00166952598, 0.00437850086, 4.46082049e-05, 0.0176563933, -0.0110281268, -0.0012281161, 0.0106080752, 0.0101097096, 0.00800233334, 0.00925536826, 0.0118539901, 0.0125659415, 0.00320734084, -0.0157768428, 0.00701984065, 0.00109729508, -0.00836542901, 0.00370926666, 0.0123808347, 0.0118397512, 0.0229105949, -0.0115976883, -0.0213585403, -0.0294747874, -0.00472735707, 0.00358289527, 0.0172719397, -0.00753956521, 0.000666564447, 0.00883531664, -0.0218996238, -0.00292612, 0.0112417126, 0.0142959831, 0.0079667354, 0.00790977944, -0.00480567198, -0.00955438707, -0.000903733249, 0.022882117, -0.00771755306, -0.00149420789, -0.0307278205, 0.00760364067, 0.00202906132, 0.00996732, 0.026413396, -0.0056528938, -0.00633636722, 0.00570985, -0.00914857537, 0.00726546394, 0.0025203079, 0.0141322343, -0.00261642132, -0.0344584472, -0.0015217961, -0.0261855721, -0.00790266, 0.00502281683, 0.00865732878, -0.0340597518, 0.00475939503, 0.00310944766, -0.0387301557, -0.0164460763, -0.00595547305, -0.00106970698, 0.0194362719, 0.00692728674, -0.00773891155, -0.0123665957, 0.0126157785, 0.00103588926, -0.00727614295, -0.000970033754, -0.0229533128, 0.0079667354, -0.00541083049, 0.00521504367, -0.00459920568, 0.00092019717, -0.00729750143, -0.00555322086, 0.00227290485, -0.0035953545, 0.0146234808, -0.0235371124, -0.00980357081, 0.00416491553, 0.0102592194, -0.00824439712, 0.0190802962, 0.00953302905, 0.00460632518, 0.0146519588, -0.000327942602, -0.0115193734, 0.00252742739, 0.00955438707, 0.0161897745, -0.0174855255, -0.0119323051, -0.0186816044, 0.0297026113, 0.0163179263, -0.00640044268, 0.00250784867, 0.0104728043, 0.00729750143, -0.00333905197, 0.00248293043, 0.0028762836, -0.00551050343, 0.0123452367, 0.00654995255, 0.016859008, 0.0182686727, -0.000779141788, -0.00235655904, 0.0110708438, 0.0248471033, 0.000237168802, 0.0123879537, -0.0217002779, -0.00742565282, -0.0146377198, 0.0139115294, -0.00927672628, -0.0244484097, 0.0103446534, 0.00617261836, -0.00773179205, 0.0100029167, 0.0015360351, 0.00300443475, -0.00508689275, 0.0324080251, -0.0167450961, 0.0114481784, 0.0113129076, -0.0250037331, -0.0117258392, -0.00981069, -0.0338034518, -0.0121387709, 0.0172577016, -0.0121174119, -0.0317815095, -0.0217999518, -0.0251034051, 0.015563257, 0.000322602951, 0.0102378605, -0.01317822, 0.0392142832, 0.00593055505, 0.0244341716, 0.0123665957, 0.00387301552, 0.0023316408, 0.00279440917, 0.00823727716, -0.0130287101, 0.0184680186, -0.00423967047, -0.0189663842, 0.00591631606, 0.0126300175, -0.00281576766, 0.0197068136, 0.0118539901, 0.00823727716, 0.00783146545, 0.0079667354, -0.00306673045, -0.00650723558, -0.0114980144, -0.00345118437, 0.00377334235, 0.013163981, -0.0262852442, -0.0137406616, 0.0103375344, -0.00277127069, 0.0193935558, -0.00882107764, -0.00746125029, -0.00256836461, -0.00951167, 0.00407236163, 0.0126798535, 0.0246904735, -0.00738293584, -0.000514384883, 0.00865732878, -0.0117258392, 0.00858613383, -0.00124680484, -0.00904178247, -0.00526132062, -0.00151467649, -0.00603734748, -0.00689524924, 0.0187243205, -0.00286382437, 0.0227824431, 0.00815184321, -0.00766059663, -0.0258153565, 0.0049267034, 0.0115336124, 0.0192511659, -0.00785994343, -0.000731085078, 0.0269544795, -0.00282288715, -0.00673150038, -0.00393353123, -0.0183398668, -0.00673862, -0.00761787966, 0.00548914494, -0.00525064114, 0.0154920621, -0.00558881834, 0.019265404, 0.000437627605, 0.00804505, 0.0238218922, 0.025245795, -0.0154778231, 0.00368434843, -0.0101310676, -0.0208316967, -0.00504417531, 0.00881395768, -0.0194220338, -0.00926248729, -0.0123381177, 0.0100954706, 0.00805217, -0.00545354746, 0.00753244571, 0.00556746, 0.0133989248, 0.0111206807, 0.0061085429, 0.0241493899, 0.021586366, -0.00898482651, -1.87026289e-05, -0.0193508379, 0.0215436481, 0.00375554338, 0.0116546443, 0.00957574602, 0.0028193274, -0.0101097096, -0.008379668, -0.00841526501, 0.0191657301, -0.00431086542, 0.0186531264, -0.0136623466, 0.0211307164, 0.0131212641, -0.00130821066, 0.0130144712, 0.0101880245, -0.00436782185, -0.00810912624, -0.00313436589, 0.00549982442, -0.00300265499, 0.00895634852, -0.00147729914, -0.0121957269, -0.00941911619, -0.00129575154, -0.00428594742, -0.0267551318, 0.0116760023, -0.0185249746, 0.00401184615, 0.00753244571, 0.024007, 0.00705187814, -0.0058771586, 0.00399760716, 0.00883531664, -0.0180123691, -0.000494361215, 0.00250606891, 0.000618062797, 0.026470352, 0.00326429703, 0.0113556245, 0.00982492883, -0.0155063011, 0.00969677791, 0.0118041541, 0.00642892066, -0.0141108762, 0.00173538143, -0.00520792417, 0.0121316509, 0.0165599883, -0.0126015395, -0.00815896317, -0.00753956521, 0.0268832836, -0.0263422, 0.00355441729, -0.00716579054, -0.050292246, -0.00142212282, 0.030072825, 0.00655351253, -0.00326963677, -0.00493738288, -0.0221274495, -0.0193366, 0.00423967047, 0.00333193247, -0.0123238787, -0.00616193935, -0.00187777169, 0.00530047808, 0.00370570691, -0.000437405135, 0.0141963102, -0.00342448615, -0.00541439, -0.0157626029, -0.00821591914, 0.0185392145, 0.00922688935, 0.015549018, 0.0198207255, 0.0141179953, -3.37898782e-05, -0.00397980819, 0.0133562079, 0.0249325372, -0.00141945307, 0.00540727051, -0.00913433637, -0.0064965561, -0.00761787966, 0.00337464944, -0.00424323, -0.0217572339, -0.0143102221, 0.00179144763, -0.025331229, 0.00558525836, -0.00382317882, 0.00266625779, -0.00606226595, -0.00466684112, -0.0114837755, 0.000346408837, -0.000690147863, -0.00318064285, -0.0303576067, -0.0018635327, -0.0153923882, -0.0105297612, -0.0114837755, 0.0225830972, -0.00511181075, 0.0114054605, -0.00488398643, 0.0061156624, -0.00668878295, 0.014445493, -0.0200343113, 0.00530403759, -0.013163981, -0.0218996238, 0.0237934142, -0.00893499, 0.00159922079, 0.00996732, -0.0130002322, -0.014431254, 0.00705899764, -0.012017739, 0.0114410585, -0.0258438345, -0.00225510588, 0.0150221735, 0.00788842142, 0.0164745543, 0.0219992977, -0.0385592878, -0.00608718442, 0.00534675503, 0.0105795972, 0.0217002779, -0.0213300623, -0.00153069547, -0.0135840317, 0.0075609237, 0.0106863901, -6.3964384e-05, 0.00410795957, -0.00820879918, 0.0013749561, -0.0251603611, -0.0163891204, -0.00391217275, -0.00490534492, -0.000482792035, -0.0235371124, -0.00941911619, 0.00553542189, 0.0111349197, 0.00041916137, -0.00910585839, 0.00260218233, -0.00789554, -0.0316391177, 0.0172007456, -0.00305427145, -0.00762499915, 0.0125232246, 0.000223263502, -0.0211449564, 0.026441874, 0.0151503254, 0.00501213782, -0.0177418273, -0.0114268195, -0.00683829281, 0.00313970563, 0.000883264642, 0.00525064114, -0.0162894465, 0.0148085887, -0.021629082, -0.00119073864, -0.0050406158, -0.00384097756, 0.0162894465, -0.00181369612, -0.0160901, 0.00685609179, -0.00670658192, 0.0173858516, 0.0121530099, 0.0190802962, -0.0132422959, -0.0110494848, -0.00265735853, 0.00341558666, -0.00549270492, 0.00410795957, -0.00658911, -0.0159334708, 0.00823727716, -0.0106436731, -0.00353483856, 0.00579884415, -0.0122954, -0.0182686727, 0.0131283831, 0.012103173, -0.00994596072, 0.00214831322, -0.0209598485, 0.00924112927, -0.0382175483, 0.00120408775, -0.00669234293, -0.00132066978, 0.00530403759, -0.0215151701, -4.72780193e-05, 0.0216006041, 0.00435358286, 0.0102592194, 0.0101310676, -0.00154226471, -0.0152499983, 0.0109569319, -0.0171722677, -0.00604446698, 0.00750396727, 0.00422899099, -0.0173146576, -0.00645739911, 0.0219281018, -0.000906848058, 0.00584512064, -0.00590207707, -0.0119394241, 0.00121387711, -0.00181102625, 0.0111349197, -0.00561729632, -0.0089990655, 0.0043963, -0.00226578536, 0.00685609179, -0.0104372073, -0.0125303445, 0.0115122534, -0.00463836314, -0.00353305857, -0.0114197, -0.0102449805, 0.0115336124, -0.0133134909, -0.0056600133, -0.0179269351, -0.0146804377, -0.00472735707, 0.00067412894, -0.0026324403, -0.00248293043, -0.000417159, -0.027680669, 0.0100669926, -0.00712307356, 0.00711951358, 0.00204152055, -0.00840814598, -0.0114054605, -0.0220277756, 0.00497654, -0.0157056469, -0.00400828617, -0.000302579341, 0.00550694391, 0.000880594831, 0.00476295454, 0.006603349, 0.0048092315, 0.00119251851, 0.00232452131, 0.011960783, 0.00631500874, -0.00337820919, 0.00369146792, 0.00580952317, -0.00501925731, 0.000957574579, 0.00202906132, 0.00289942208, 0.00436070235, 0.0283214264, 0.0100741116, 0.00540727051, 0.028734358, -0.0150221735, 0.00334973121, 0.0165030323, -0.0246335175, -0.00840814598, -0.00177720864, -0.00536455354, 0.0271965433, 0.00290832133, 0.0103090554, -0.000138608026, 0.00965406094, -0.00876412168, 0.00458140718, 0.00751108676, 0.00584512064, 0.00119963801, -0.00773179205, -0.0172434617, 0.0240497179, 0.00875700172, 0.0163748823, -0.0228678789, -0.00277305068, -0.016859008, -0.00986052677, 0.0297595672, 0.0280651227, -0.00798097532, 0.00827999413, -0.00510469126, 0.0299873911, 0.010736227, -0.0019881241, -0.00994596072, 0.000665229571, 0.000115358373, -0.00634348672, -0.0250179712, -0.00394065073, 0.00033127988, 0.0194505118, -0.0057774852, -0.0181547608, -0.00358823501, 0.00255590538, -0.0251888391, 0.0262567662, 0.00364519097, 0.0184537787, -0.0126656145, 0.00389437401, 0.0171865057, -0.000972703565, 0.00650011608, -0.00757516269, 0.0127439294, 0.0128934393, 0.0148513056, 0.0100669926, 0.0154208671, -0.0261570942, -0.00927672628, 0.00535387453, 0.00989612378, -0.00684541231, -0.0116617633, 0.000119140612, -0.00984628778, -0.00331947324, -0.0112417126, -0.00133401889, -0.00732597942, -0.00584156113, -0.00235477905, 0.0124377906, -0.0121886078, 0.0265415478, -0.0171865057, -0.000145505066, -0.00950455107, 0.00292967982, -0.00373418489, -0.00563153531, 0.0212446284, -0.0153923882, -0.00798809435, 0.00213407422, 0.0138474545, 0.000463658333, 0.0112773096, 0.00118539901, -0.00372350565, -0.00735445786, -0.00603022799, 0.0122170858, 0.0105582392, 0.0102307415, 0.0163179263, 0.00484126946, 0.0105511192, -0.00536455354, -0.0229390729, 0.0270114355, 0.0123167587, 0.0179269351, 0.00630788924, 0.0172719397, -0.00651435507, -0.00463480363, -0.0163464043, -0.0183968227, -0.0159904286, -0.0035401783, 0.00765347714, -0.00945471413, 0.00874276273, 0.0181832388, 0.0140895173, -0.00690948823, -0.00410795957, 0.00840814598, -0.0102592194, 0.0135840317, 0.00830135308, -0.00321624032, 0.00993884075, 0.0222128835, 0.0165172722, -0.00611922191, 0.0111989947, 0.0149794566, -0.00675641838, -0.014409896, 0.013235176, -0.0020379608, -0.000874365272, 0.00303291273, 0.00301867374, 0.0158907548, -0.0056279758, 0.00734021887, -0.00579528417, 0.0127581684, 0.0209883265, -0.0118967071, -0.0102948165, 0.00257904385, 0.0108714979, -0.00677065738, -0.0199061595, -0.00563153531, 0.00220526941, -0.00989612378, 0.0113200266, -0.0219850577, 0.0169444419, 0.015620213, 0.0013811856, 0.000347966241, -0.0042076325, 0.00514740823, 0.0151645644, 0.00387657527, 0.00406168262, 7.34756e-05, -0.0238218922, -0.0044390168, 0.0160189066, -0.00506197428, 0.00258438359, 0.00852917787, 0.000177209149, 0.00106258737, 0.00697000371, -0.0219138637, 0.0186388865, -0.0255732927, -0.0139969643, 0.0149367396, -0.00362205249, -0.00591275608, 0.0118397512, -0.0260431804, -0.0173573736, -0.00522928266, -0.00875700172, 0.0104656853, -0.00300265499, 0.00381961907, -0.0222128835, 0.00989612378, -0.00340846716, -0.000513049948, 0.0089990655, -0.00403320463, -0.0316391177, -0.00212339498, -0.0320662893, -0.0116119273, -0.0030774097, -0.0162324905, -0.0103731314, -0.0145309279, -0.0058913976, 0.0100527536, 0.00415067654, 0.0177275892, -0.00657487102, 0.0112844296, 0.00156629307, -0.0267836098, -0.0011444618, 0.0154920621, -0.005389472, -0.0016125699, -0.0200627893, -0.000412931782, -0.0383314602, -0.00582020264, 0.0185392145, 0.0081660822, -0.0129646342, 0.00111153407, -0.0248186253, -0.0115976883, -0.000111019915, -0.0245623216, 0.0141251152, -0.00564221479, -0.00863597, -0.0100029167, -0.00215899246, -0.00407592161, -0.0025826036, 0.0260574203, 0.00211271574, -0.0301013049, -0.0114908954, 0.000117360731, -0.00487686694, 0.000904623186, -0.0169302039, 0.0188667122, 0.0183968227, 0.00384809705, 0.00750396727, 0.00945471413, 0.0111989947, -0.00911297742, 0.000720850774, 0.00604446698, 0.00261286157, 0.00491602439, 0.00736869685, -0.01082878, 0.00678133685, -0.000570006086, 0.0261713322, 0.0244626496, -0.0106579121, 0.0180835649, -0.00607294543, -0.0236225463, 0.00667454395, 0.0183683448, -0.016673902, 0.00460276566, -0.0118967071, 0.00398692768, 0.0117614362, -0.00506197428, 0.010721988, 0.0055211829, 0.0061227819, 0.0254451428, 0.00311300741, -0.0126228975, -0.00599463051, -0.0211734343, -0.0187670384, -0.00216789194, 0.00333905197, 0.0111776367, -0.00123345573, -0.0131711, 0.00214119372, -0.0114481784, -0.0113912215, -0.00909873843, 0.0816750601, 0.00691660773, 0.0199061595, -0.00797385536, 0.00860037282, -0.00615481939, -0.00971813593, 0.04083753, 0.00232986081, 0.0135199567, -0.00724054547, 0.027709147, -0.0129503952, -0.00240283599, -0.00893499, -0.0109711709, -0.0032447183, -0.024035478, 0.0170725938, -0.0353697427, 0.00798097532, -0.00486974744, 0.00948319212, -0.00430018641, -0.00782434549, -0.00936928, -0.00830135308, -0.00472379755, -0.00160901016, 0.00200236333, 0.00160367042, 0.0134060439, 0.000627852103, 0.0150506524, -0.0239215661, 0.0116760023, -0.000497476, -0.000498810958, 0.00981781, -0.0166169442, 0.00404388364, 0.0213585403, -0.00103499927, -0.00662826747, 0.0151503254, -0.00395133, -0.00224798638, -0.0231241807, -0.000913077616, -0.00630076975, 0.0101809045, -0.0141251152, -0.0078101065, -0.0236652642, 0.0150506524, 0.0227254871, 0.0146661978, -0.00774603104, -0.00248649018, 0.00370214717, 0.00131711, 0.0195929017, 0.0152642373, -0.00358823501, 0.000501925708, -0.0194789898, -0.0139969643, 0.00894922856, -0.00684541231, -0.00121921673, -0.00203084131, -0.00574900722, 0.0071978285, -0.0131070251, 0.00453513, 0.0104514463, -0.00525420113, 0.0217572339, -0.0103090554, -0.0218996238, -0.00355975679, 0.00894210953, -0.0138545735, -0.0101951435, -0.0244484097, -0.00430374593, 0.000138051822, 0.00936928, -0.0291330498, 0.015563257, -0.00393709121, 0.0496372506, -0.0187527984, 0.00488754595, 0.0114197, -0.000167086095, 0.00258794334, 0.00538235251, 0.0172149837, 0.00165261712, 0.0096683, 0.00610498292, -0.0129931122, -0.0147231547, 0.000822748814, 0.0150079345, 0.00348856184, 0.0102520995, 0.00676709786, 0.0122099658, -0.00934080221, 0.0139898444, 0.0257726405, 0.0413501374, 0.00886379462, 0.0158622768, 0.0136908246, 0.00697356369, 0.0314682499, -0.0130002322, 0.00348144211, 0.0153781492, 0.0119109461, -0.00361315324, 0.0163179263, 0.00768907461, 0.0188667122, 0.0103731314, 0.0158337988, -0.02165756, 0.00341736665, -0.00992460176, 0.0151503254, -0.00752532622, 0.000998511794, 0.0362810418, -0.00171402295, 0.00413287757, 0.00496586086, 0.0148940226, -0.0183256287, -0.0167450961, 0.00553186238, 0.000887269387, 0.0224407073, -0.000222929768, -0.00244733295, -0.00902042352, -0.0252600349, 0.00450665224, 0.0202906132, -0.00196142611, 0.00182971498, -0.0235655904, -0.0110138878, -0.00742565282, -0.0100598726, -0.0227539651, -0.0026448993, -0.00788130146, 0.00768907461, 0.00480567198, 0.0217857119, -0.0207747407, -0.00136427686, -0.00768195512, 0.0136409886, -0.00399760716, 0.0018635327, 0.0129219173, 0.0181832388, 0.000897503691, 0.0124876266, 0.00926248729, -0.00550694391, 0.00160812016, 0.00969677791, -0.00141144358, 0.0129219173, -0.0068347333, -0.00701628067, -0.00835119, 0.00683829281, 0.0363379978, 0.00363273197, 0.0168732479, 0.00164282776, -0.0112986686, 0.00803793129, 0.0068347333, -0.0139328884, 0.0196213797, 0.000248515513, -0.00393709121, 0.00537167303, -0.00950455107, 0.00593411457, 0.0010812761, -0.00858613383, 0.00401540566, 0.00829423312, 0.00616549887, -0.0174712874, -0.00725834444, -0.00250072917, 0.0114054605, 0.00179500738, -0.00725122495, -0.00610142341, 0.00192048878, 0.00698068319]
24 Jul, 2024
How to Play and Pause CSS Animations using CSS Custom Properties ? 24 Jul, 2024 In this article, we will see how to control CSS animations using custom properties, along with knowing their implementation through examples. CSS Animations are the automatic transitions that can be made on the web page which lets an element change from one style to another. CSS Custom Properties are variables defined by CSS developers that contain specific values to be reused throughout a document. They are set using custom property notation and are accessed using the var() function. For instance,  the –main-by-color is the custom property that is scoped for the entire web page ( :root ) and accessed like var(–main-bg-color, red) where the second argument is the default value. :root { --main-bg-color : green;}div {background-color : var(--main-bg-color,red)}Adding CSS Animations using Custom Properties: To play a CSS animation initially we need to add the animation using the @keyframes rule. But, we will add the animation with custom properties. The animation starts playing as soon as it is embedded in the element We will understand the above concepts through examples. Example 1: In the below code example, we will make a simple animation of a slide. we are adding, –animn , –animdur , –animps as custom properties for animation-name , animation-duration , animation-play-state respectively. infinite as the iteration count, 3s as duration & alternate as the animation direction. HTML <!DOCTYPE html> <html> <head> <title> How to Play and Pause CSS Animations using CSS Custom Properties ? </title> <style> .block{ background-color: tomato; padding : 10px; width : 200px; text-align: center; --anim : slide; --animdur : 3s; --animps : running; animation: var(--animn, slide) var(--animdur, 0s) 0s infinite alternate var(--animps,running); } @keyframes slide { from { margin-left: 0%; } to { margin-left: calc(100% - 250px); } } </style> </head> <body> <h1 style="color:green">GeeksForGeeks</h1> <h3>How to Play and Pause CSS Animations using CSS Custom Properties ? </h3> <div class="block">I Am Moving</div> </body> </html> Output: The tomato color box is sliding after we added the animation as shown in the code above. Now, you can toggle the same animation using the custom properties and the :checked pseudo-class. https://media.geeksforgeeks.org/wp-content/uploads/20240724152550/ezgifcom-gif-to-mp4-converter-(24).mp4 Toggling (play/pause) the CSS animations: We can toggle the animations in two ways : By changing the animation durationBy using animation-play-stateWe will understand both approaches for toggling the CSS Animations sequentially & will know their implementation through the examples. By changing the animation duration: In this method, you simply change the value of animation to zero to pause and some positive value to play Approach: The following approach will be utilized to change the animation duration: Create an <div> element and style it with CSSSelect the <div> and add an animation property with duration 0s through a custom variable (animation-duration)Create some animation as shown in the below exampleAdd a radio button to the documentAdd a pseudo-class :checked to the radio button and with that add a property where you are changing the custom variable from 0s to some positive valueNow you can toggle the animation with the radio buttonExample 2: In this example (which is the same as above), we have used the :checked pseudo-class to toggle the animation. Also, we are changing the –animdur between 0s to 3s to toggle the sliding of the element. HTML <!DOCTYPE html> <html> <head> <title> How to Play and Pause CSS Animations using CSS Custom Properties ? </title> <style> input[type]:checked ~ .block{ --animdur : 3s; } .block{ background-color: tomato; padding : 10px; width : 200px; text-align: center; --anim : slide; --animdur : 0s; animation: var(--animn, slide) var(--animdur, 0s) 0s infinite alternate; } @keyframes slide { from { margin-left: 0%; } to { margin-left: calc(100% - 250px); } } </style> </head> <body> <h1 style="color:green">GeeksForGeeks</h1> <h3> How to Play and Pause CSS Animations using CSS Custom Properties ? </h3> <input type="checkbox" /> <div class="block">I Am Moving</div> </body> </html> Output: This method does not retain the position of the element which is moving, use the second method to do the actual animation. https://media.geeksforgeeks.org/wp-content/uploads/20240724152550/ezgifcom-gif-to-mp4-converter-(24).mp4By using animation-play-state: You can use the CSS property animation-play-state to toggle between the state of the animation. Approach: The following approach will be utilized for the animation-play-state: Create a <div/> element and style it with CSSSelect the <div/> and add an animation property with the paused state through a custom variable (animation-play-state)Create some animation as shown in the below exampleAdd a radio button to the documentAdd a pseudo-class :checked to the radio button and with that add a property where you are changing the custom variable from paused to runningNow you can toggle the animation with the radio buttonExample 3: In this example(which is the same as above), we have used the :checked pseudo-class to toggle the animation. –animps is the important custom property that accepts two values [paused / running] that are used to toggle animation. On check of the checkbox, the animation-play-state is changed to running. HTML <!DOCTYPE html> <html> <head> <title> How to Play and Pause CSS Animations using CSS Custom Properties ? </title> <style> input[type]:checked ~ .block{ --animps : running; } .block{ background-color: tomato; padding : 10px; width : 200px; text-align: center; --anim : slide; --animps : paused; animation: var(--animn, slide) 3s 0s infinite alternate var(--animps,paused); } @keyframes slide { from { margin-left: 0%; } to { margin-left: calc(100% - 250px); } } </style> </head> <body> <h1 style="color:green">GeeksForGeeks</h1> <h3> How to Play and Pause CSS Animations using CSS Custom Properties ? </h3> <input type="checkbox" /> <div class="block">I Am Moving</div> </body> </html> Output: https://media.geeksforgeeks.org/wp-content/uploads/20240724152550/ezgifcom-gif-to-mp4-converter-(24).mp4 Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?
https://www.geeksforgeeks.org/how-to-play-and-pause-css-animations-using-css-custom-properties?ref=asr10
CSS
How to Play and Pause CSS Animations using CSS Custom Properties ?
CSS, How to Play and Pause CSS Animations using CSS Custom Properties ?, CSS Tutorial
GeeksforGeeks
[-0.0299271848, 0.0137054864, -0.02575971, 0.00891682319, 0.0458894, 0.0300058164, -0.0329623632, 0.00341064529, -0.024501605, 0.0302259848, 0.020680109, 0.00660112221, 0.0266089309, -0.0713345855, 0.000411587243, -0.0161666553, -0.0385609344, 0.0271908045, -0.0266403835, 0.0022468979, -0.00265774783, 0.000554844213, -0.0848592147, -0.0173146762, 0.00340081635, 0.0220640246, -0.00678197481, 0.0378689766, -0.0225829929, 0.00862588547, 0.0196421724, 0.00228817947, 0.0147748766, -0.000722919242, -0.0298957322, -0.0197994355, 0.00181442406, -0.00774914352, -0.0440336913, -0.0192490146, -0.0164182764, 0.00844503287, 0.00405739, 0.0245959628, -0.0230547842, 0.0150186345, -0.0412344076, -0.0369568504, 0.00802042242, -0.0293924902, 0.037334282, 0.0189502146, 0.0451974384, 0.0474620312, 0.0215136036, -0.0101513388, -0.0169686973, -0.023400763, -0.0192961935, 0.0095851915, 0.0301473532, -0.0244858786, -0.0389383659, -0.00212501874, -0.00973459147, 0.0117554236, -0.0496008098, 0.00582266971, -0.0378689766, 0.024957668, -0.0399763025, 0.00528011145, -0.0249419417, 0.00636522751, 0.0217966773, -0.0194691829, 0.00627480121, 0.0305247847, 0.00835853815, 0.0575268753, -0.0272851624, -0.00276193465, -0.0656102, -0.00356201129, -0.00532729039, 0.029785648, 0.00985253882, -0.0431215651, 0.0335285105, -0.00354628498, -0.0235737525, -0.00163258845, 0.034912426, -0.0348180681, -0.0508903675, 0.0298642796, 0.0127540445, -0.00682522217, -0.0039394428, 0.0345664471, -0.00924707577, 0.0176134761, -0.00236484525, -0.0159858037, 0.00506387465, 0.0082405908, 0.00672300113, -0.00429328484, 0.0145468451, -0.00298013748, 0.0152859818, 0.0144053083, 0.00269116624, 0.00333004794, -0.0345349945, 0.0257911626, -0.0233535841, -0.0472733155, 0.0212777089, -0.0123137077, 0.00483584311, 0.0229761526, 0.00230783736, 0.0971257463, -0.0212462563, 0.0533751249, -0.00691171689, -0.0395674184, 0.0381835029, 0.000473263906, -0.0117711499, 0.0204913933, 0.0020424556, -0.0131707918, 0.0540985353, 0.0112050017, 0.0226773508, 0.00719085941, 0.0063848854, -0.0108039808, -0.0433102809, 0.00309415325, 0.0143266767, -0.00797717553, -0.0259169731, 0.0123451604, -0.0135167707, 0.0524000935, -0.029486848, 0.0198623408, -0.0469273366, -0.0262944046, -0.0204127617, 0.00550421141, 0.0312481951, -0.00276193465, -0.0298642796, -0.00850007497, -0.00654608, -0.00263219257, 0.0128562655, -0.00653428538, -0.0284331851, 0.028779164, 0.00149203453, -0.0163239185, 0.0197837092, -0.023196321, -0.0479967259, 0.0310594793, -0.0333712474, 0.00686453795, -0.0127697708, 0.000431245135, -0.0465184525, -0.00464712735, 0.0306977741, -0.0150894029, 0.000956356758, -0.0043915743, -0.0508274622, 0.00406918488, -0.00193040562, 0.0153724765, 0.0413916707, -0.00414781645, 0.0192018356, -0.0161823817, -0.0315155424, -0.0217652246, 0.00568899605, 0.0205700248, 0.0620246, 0.0399763025, 0.00573224341, 0.0162924659, -0.0347237103, 0.0050009694, -0.010112023, 0.0133752339, -0.0368939452, -0.0540985353, 0.00552780088, 0.0163710974, 0.00928639155, 0.000900823215, -0.0256653521, -0.0332454368, 0.0570865385, -0.027568236, -0.0285589956, -0.0072655594, 0.0130842971, -0.0158285405, -0.00571258552, 0.00157459767, -0.0460152104, 0.00546882721, -0.0218124036, -0.000115920171, 0.00114212395, -0.000654608, 0.00317671639, 0.0112914965, -0.0812736154, -0.0144524872, 0.00135541207, -0.00967954937, -0.00445054844, 0.0147591503, 0.0022292058, 0.0138155706, -0.0216551404, 0.0187772252, 0.00702573312, 0.0348495208, -0.0065303538, 0.0252879206, 0.00391781935, 0.00966382306, -0.00516609568, -0.0308235846, -0.00853939075, -0.0111342333, 0.0137212127, -0.00739530148, 0.0127068656, 0.0299271848, -0.0175191183, -0.00854725391, -0.0298013743, 0.000621189596, -0.00778452773, -0.0158914458, -0.0404480919, 0.00789854396, 0.00519361673, -0.031499818, -0.00108708174, 0.0200825091, 0.0249733943, 0.0134774549, -0.00413995329, 0.0128405392, 0.00185767142, 0.0114802131, 0.0193433724, -0.0142480452, -0.00583053287, -0.000800567912, 0.0187614989, -0.0332454368, 0.0282444693, 0.0100412546, -0.0350382365, 0.0210732669, -0.0321445949, -0.0119284131, 0.0391899869, -0.0104737282, 0.0208059195, 0.0046746484, 0.0118655078, 0.0356987454, -0.0151129924, -0.0399448499, -0.0190760251, 0.00862588547, -0.095049873, -0.0314683653, -0.00097404886, -0.00950656, 0.00549634825, 0.0148692345, 0.0503242202, 0.0361076295, -0.0117475605, -0.00085511856, -0.0078788856, -0.00657360116, 0.0217809509, 0.0248004049, 0.0120384973, -0.00886964425, -0.010064844, 0.00642420119, 0.0394101553, -0.014641203, 0.0129270339, -0.0281343851, 0.026310131, 0.0247689523, -0.01841552, -0.0216865931, -0.0296755638, 0.00628266437, 0.036485061, 0.00451738527, -0.0255238153, -0.0091684442, 0.0244072471, -0.0146097504, -0.031751439, 0.0521170199, 0.0195320882, -0.0105759492, -0.0469902419, -0.00875169598, 0.0262786783, 0.00754863303, -0.0486886837, -0.039850492, 0.0116060236, 0.0140593294, 0.0424296074, -0.0480910838, 0.0314840898, -0.0102456966, -0.0373028293, -0.00476900628, -0.00914485473, -0.00795358606, 0.039850492, -0.000654116564, 0.030839311, -0.0465184525, -0.0177392885, 0.0201454144, -0.00602711178, 0.0113072228, 0.00158442662, 0.0143109504, -0.00130823313, -0.0399763025, 0.0157105923, 0.0130135287, 0.0267504677, -0.0242185313, -0.0283388272, -0.00219775294, 0.0656731054, -0.000666402746, 0.00670727482, -0.013029255, 0.0105523597, -0.0403222814, -0.00827990659, -0.00390012702, 0.0396932289, -0.000938664656, -0.059319675, -0.0247375, -0.0372084714, -0.0161194764, -0.0506387465, 0.00882246532, -0.00716727, -0.0219539404, -0.0698877573, 0.0201296881, -0.0251306575, 0.0330567211, 0.0222212877, 0.0396617763, -0.00510319043, 0.0168743394, 0.0234636683, -0.0293610375, -0.0135010444, -0.00822486449, -0.0143738557, 0.00157656346, 0.0125653287, -0.000113585796, 0.013233697, -0.00585805392, -0.0187143199, 0.0167485289, 0.000325338216, -0.0322389528, 0.0387496501, -0.0176449306, -0.00890896, -0.00838212762, -0.01670135, 0.013784118, -0.0362648927, -0.006314117, 0.0279456694, 0.0048004589, -0.0157105923, -0.0118104657, -0.0475878417, -0.0124159288, 9.75523217e-05, 0.0556711704, 0.00245723734, 0.0540670827, 0.0148141924, 0.0128641287, 0.046644263, 0.0171259604, 0.024706047, 0.0250992049, 0.0296283849, -0.041957818, -0.0170630552, -0.00970313884, 0.0330881737, -0.00746213831, -0.0437506177, -0.0277726799, 0.0144682135, -0.0212148037, -0.0257125311, -0.012628234, 0.0297070164, -0.00511498516, -0.00688026426, -0.0442538597, -0.011118507, -0.00798503868, 0.013988561, -0.00465105893, 0.0182739832, -0.00182425301, -0.052463, -0.00826418, -0.0260427836, -0.000890502823, -0.0284489114, -0.052463, -0.0188244041, -0.0266718362, 0.0054884851, 0.00811478, 0.0185570568, -0.0210889932, -0.0102378335, -8.32389123e-05, -0.00451738527, 0.0327736475, -0.00813050661, -0.015545466, 0.0377117135, -0.0117082447, -0.0281029325, 0.0144367609, -0.0152859818, 0.0132022444, 0.0170001499, -0.0177078359, 0.0484999679, 0.0216865931, 0.0386238396, 0.00475328, 0.0274267, -0.0236523841, -0.00661684852, -0.0580615699, 0.0503871255, -0.0054884851, 0.0307764057, -0.0227088053, -0.0248790365, 0.012526013, 0.0302259848, -0.00350500341, 0.0120463604, 0.0357931033, 0.0195635408, 0.0365479663, -0.0267819203, -0.00266954256, 0.0343777314, 0.0266246572, -0.0101985177, -0.00225476106, 0.0343777314, -0.0203655828, 0.000114937277, -0.00857870653, -0.0271436255, 0.0369883031, 0.0211047195, -0.0196107198, -0.00419499539, -0.000312314864, 0.00823272765, -0.0461095683, -0.0345349945, 0.0323333107, -0.00234322157, 0.0377117135, 0.00928639155, 0.00326714269, -0.0230390579, -0.00034450466, -0.00765085407, 0.00880673807, 0.0317986161, 0.0063848854, 0.0185885094, 0.00562609034, -0.0322704054, 0.0407940708, 0.026514573, -0.0247846786, -0.0186514147, -0.0108118439, -0.0284960903, -0.0151365818, 0.0208530985, 0.00514643779, -0.00567326974, -0.00249065575, -0.0150972661, 0.00464712735, 0.0261371415, 0.0100491177, -0.0321288705, -0.0015696832, -0.0297699217, 0.00120306341, -0.0126203708, 0.00469823787, 0.0129191708, -0.0151994871, 0.0105602229, 0.0060428381, 0.0209631827, 0.0282916483, 0.0455434211, 0.0236052051, -0.000367357, -0.000112848626, -0.0445683859, -0.0153488871, -0.00991544407, -0.0304776058, 0.0174090341, 0.00233929, 0.0265774783, 0.0222212877, 0.00517395884, -0.0288420692, 0.0158599932, 0.034157563, -0.0111814123, -0.0208688248, 0.000297325721, -9.23921252e-05, 0.00599172758, -0.0036327797, -0.0276154149, 0.0123137077, 0.0197522566, -0.0344406366, 0.0131629286, 0.0177550148, -0.0223628245, -0.0389698185, 0.0315941758, -0.00797717553, -0.026813373, 0.00384508492, 0.0018606201, 0.0133437812, -0.0410456918, -0.00305090589, 0.0079457229, 0.000845289615, 0.00749752251, 0.00489874836, 0.0124002025, 0.0236523841, -0.0109297913, 0.0056693377, 0.00307842693, -0.0228503421, -0.0183997937, 0.0396303236, -0.000397335272, -0.000221765673, 0.0188873094, -0.0254294574, -0.00559070613, 0.00743068568, -0.00301748747, 0.00880673807, -0.0200510565, 0.00727735413, 0.0278198589, -0.00111755158, 0.00463533262, -0.0216865931, -0.0149321398, 0.0199409723, -0.0112285912, 0.011425171, 0.010363644, -0.00595634338, 0.047902368, 0.0121014025, 0.0348809734, 0.000314280653, -0.0148692345, -0.0131629286, -0.00746607, -0.0302259848, -0.0313740075, -0.0304147, -0.0140278768, 0.0020424556, 0.0275839623, 0.00905049685, -0.0224414561, 0.0050717378, 0.00745427515, 0.0239040051, -0.0219382141, 0.00480832206, -0.000323863875, 0.0934143364, -0.00471396418, 0.0154196555, 0.00147729111, 0.0356672928, -0.00484763784, -0.0409513339, 0.0146647925, 0.00785136502, 0.0187457725, 0.0230390579, -0.0180695411, 0.023699563, 0.0182110779, -0.0332768895, -0.00515823252, 0.00902690738, -0.0048201168, -0.0320659652, 0.0402279235, 0.0080597382, -0.00857870653, -0.0149242766, 0.0115038026, 0.0027344136, -0.0011873371, 0.0328680053, -0.00415961118, 0.0198466145, 0.00547669036, 0.0228503421, -0.000607429072, -0.0144367609, -0.0337172262, 0.0376802608, 0.0194534566, -0.0109455176, -0.0200510565, 0.00524865882, 0.0309336688, 0.016449729, -0.00231766631, -0.00799290184, -0.00778452773, -0.00756829092, -0.0016050674, 0.0144131714, 0.0255709942, 0.011118507, 0.0260742363, -0.00580301182, 0.0162452869, -0.0182739832, -0.00535088, 0.0089875916, -0.00967168622, -0.0146490661, 0.0278041326, -0.0173461288, -0.0462039262, 0.00519361673, 0.0237781946, 0.0345349945, -0.0130056655, 0.000784841599, -0.0208059195, -0.0129191708, 0.0246274155, 0.038844008, 0.000214271087, 0.0482483469, 0.019170383, 0.0400077552, 0.0101434756, -0.0205385722, -0.0120463604, -0.0113308122, 0.00695103314, 0.0118969604, 0.0119284131, -0.0309493951, -0.0162295606, 0.00638881698, 0.00276979781, -0.0123923393, -0.0126675498, -0.00809905399, 0.00711615942, 0.00675052218, 0.0298957322, -0.020176867, -0.0128012234, -0.00760760671, 0.0132415602, 0.0176763833, -0.0063848854, 0.0140593294, 0.0190288462, 0.000945053471, -7.74644068e-05, 0.0267976467, -0.0116374763, -0.0137998443, 0.00359542971, 0.0058619855, 0.00699034892, -0.00994689669, 0.0126360971, 0.0105209071, 0.0250677522, -0.038340766, -0.00992330723, -0.0202397723, -0.0280714799, 0.000161563352, 0.0037959402, 0.0260427836, 0.0242814366, 0.0303203426, -0.0303989742, 0.0182739832, -0.00769017, -0.0159150343, -0.025209289, 0.00349910604, 0.00570865395, -0.016952971, 0.0262315, -0.0054884851, 0.0348495208, -0.0007214449, -0.0133752339, -0.00627086964, -0.0324905738, -0.0259169731, -0.00953801256, 0.018667141, -0.0154589713, 0.010513044, -0.0140750557, -0.00192057667, 0.0309808478, 0.000334675715, 0.000893451506, 0.0166384447, 0.0195949934, 0.0298013743, 0.0225987192, 0.0200353302, 0.0307135, 0.0349753313, 0.00561036402, -0.00481618522, -0.0370826609, -0.0100333914, -0.00494985888, -0.0566462, 0.00931784417, -0.0353213139, 0.00030936618, -0.019170383, 0.0295183, -0.00751718041, -0.0180538148, 0.0144760767, -0.0154746976, -0.00592095917, -0.00772555405, -0.0159071721, -0.0288892481, -0.0356358401, -0.010261423, -0.0203184038, 0.0274581518, 0.0245330576, -0.0304933321, 0.0322389528, -0.00758008566, 0.0137290759, 0.0273008887, -0.01388634, -0.0441909544, 0.0225515403, -0.000957339653, 0.0101592019, 0.0325220264, 0.00648710644, -0.00114310684, 0.023447942, -0.0301788058, 0.0483112521, -0.019673625, 0.030540511, 0.0169844236, 0.0027167215, 0.0233693104, 0.000699821161, -0.00555139035, 0.0249104891, -0.0414231233, -0.00701787, -0.00143994112, 0.00875169598, -0.00572831184, 0.0110713281, 0.0200510565, -0.017912278, 0.0285589956, 0.0018969872, 0.0259798784, 0.00817768555, -0.00166404108, 0.0100176651, -0.0214035194, -0.00599959074, 0.0362963453, -0.0298800059, -0.000406672771, 0.012329434, -0.00244347681, -0.00774521194, 0.0416118391, 0.00775700668, -0.00458029052, -0.0278198589, -0.0321445949, -0.0102299703, -0.0178965516, 0.0139964242, 0.0010929791, 0.0343462788, 0.00290740328, 0.00717120152, -0.0266403835, 0.00480832206, -0.000401021127, 0.0186042357, 0.0467700735, -0.0155533291, -0.0366737768, -0.0351325944, -0.012628234, 0.0199095197, -0.0339373946, -0.00336150057, 0.00146451348, -0.0189659409, 0.00535088, -0.0134224128, -0.00796144921, -0.0407626182, 0.015694866, 0.0438135229, 0.0014605819, -0.0069274432, -0.00569685921, 0.0147198346, 0.000559267239, 0.0128562655, 0.00627480121, -0.00834281184, 0.00412815856, -0.0128877182, -0.0133595075, -0.000979946228, -0.00712795416, 0.0131865181, 0.00891682319, 0.0337172262, 0.00660505379, -0.00687240111, 0.0191232041, -0.00155002531, -0.0246745944, 0.00574010657, 0.0278827641, 0.00404166384, 0.00232749525, -0.0128562655, -0.0203655828, 0.0430272073, -0.00682915375, 0.0215450563, -0.0205228459, 0.0149006872, -0.0258855205, 0.00636915909, 0.0108275702, 0.0205385722, 0.0106938966, 0.0105916755, -0.0269549098, -0.010316465, -0.0154904239, 0.0189502146, -0.0217023194, -0.0121014025, 0.0278984904, 0.00549634825, -0.00979749672, 0.00132887391, 0.00151267531, -0.00956946518, -0.0220640246, 0.0331825316, 0.00209749769, -0.000905246241, 0.0115981605, 0.0139492452, 0.0108904755, -0.0433102809, -0.0112443175, -0.0179594569, -0.0264988467, 0.0129348971, -0.0183054358, 0.0157577712, 0.00183899642, -0.0133909602, 0.0136504443, -0.00336346636, 0.0333712474, -0.0222527403, 0.00707291206, 0.00664043799, -0.0177864674, -0.00574010657, 0.00291330065, -0.0182425305, 0.0321917757, 0.0142716346, 0.00355807971, 8.29931887e-05, -0.00859443285, -0.0525573567, 0.0245487839, 0.00713581732, 0.00839785393, -0.00288971118, -0.000622172491, -0.0174247604, 0.00978963356, -0.0257911626, 0.00040323264, -0.0277412273, -0.00928639155, 0.0108432965, -0.00630625384, -0.0174090341, -0.00267544, -0.0241556261, -0.0157970879, 0.01640255, 0.0284646377, -0.0204442143, -0.00487515889, -0.0217180457, -0.0192332882, -0.0332139842, -0.0335285105, 0.0349438787, 0.0130764339, 0.00801649131, 0.0234636683, 0.00492233783, -0.00666795904, 0.00512284832, -0.0438135229, -0.00320620323, 0.0295654796, -0.000417730334, 0.0391585343, -0.000660996826, 0.00708077522, 0.0109769702, -0.0155690555, 0.014090782, 0.0251935627, -0.0111420965, 0.0163081922, -0.0127933603, 0.0186356883, 0.0340317525, 0.0101277493, -0.00356397708, -0.0261843204, 0.00960091781, -0.00803614873, 0.00754863303, -0.00632198, 0.00529583776, -0.00616078544, 0.0175977498, -0.0214035194, -0.0404166393, -0.00682915375, -0.0154825607, -0.00118045683, -0.0163396448, -0.0154825607, 0.00354825077, 0.00999407563, -0.00705325417, -0.010513044, 0.0082956329, 0.00625121174, 0.00705718575, -0.0052172062, -0.00463533262, 0.0015510082, -0.0192018356, -0.0158442669, -0.0142716346, -0.012077813, 0.0119913183, -0.000497344823, 0.00456849579, -0.00715154363, -0.0255238153, 0.00398662174, -0.0431530178, -0.00632591173, 0.0208530985, -0.00964023359, -0.00325927953, -0.00747393304, 0.00704539102, 0.00769017, 0.00558677455, -0.00674265902, -0.00379397441, 0.00969527569, -0.00283073727, 0.00943579152, 0.00927066524, 0.00862588547, -0.0335914157, 0.00222527422, -0.0112836333, 0.0371141136, -0.00352662709, -0.0377746187, -0.0191074777, 0.00812264346, 0.00840571709, -0.0128169497, -0.00629052753, -0.00610574335, 0.0193905514, 0.00408884278, -0.00802042242, -0.0166384447, 0.0152152134, -0.00812264346, 0.0975660831, -0.0107096229, -0.0170787815, -0.0280243009, -0.0249891207, -0.0389069133, -0.0139571084, 0.0396617763, 0.0148613714, -0.043719165, 0.027064994, -0.0161352027, -0.0134774549, -0.00507566938, -0.0126046445, 0.00542558, -0.00244937418, -0.0103086019, 0.0305247847, -0.0193590987, -0.0188244041, -0.00306859799, 0.0315627232, 0.000253341161, 0.0178179201, -0.0133044655, -0.0166698974, 0.00188912405, -0.018619962, -0.00427755853, 0.0166384447, 0.00258894521, 0.0379633345, 0.0113072228, 0.00458815368, 0.0294082165, -0.00017630677, 0.00750145409, -0.0199881513, -0.00320030586, -0.0048004589, -0.0127854971, -0.0123058446, -0.00599172758, 0.0245959628, -0.00224100053, -0.0114959395, 0.00340474793, 0.00267150835, 0.00185963721, -0.0184784252, 0.00756042777, -0.0194691829, -0.0132179707, -0.0157577712, 0.0192018356, -0.00094701926, 0.0150658134, 0.0346922576, -0.0344720893, 0.011267907, -0.00555925351, -0.000238843466, -0.0165440869, 0.0120306341, -0.00217612926, -0.024249984, 0.0232435, -0.014090782, 0.0095301494, 0.0200353302, 0.0315627232, 0.0158128142, -0.0106703071, -0.00585805392, 0.00163750292, -0.0135010444, 0.0143659925, 0.00605856441, -0.0338430367, 0.0130449813, 0.0205700248, 0.00438764272, 0.0415489338, -0.0109926965, 0.000608411967, 0.00442302739, 0.0191389304, -0.0239040051, 0.00274031097, 0.00162865687, -0.0116296131, -0.0417376496, 0.001478274, -0.0262944046, -0.00948297, 0.00598386442, -0.00427755853, 0.0117632868, -0.00464712735, 0.0134695917, 0.0229761526, 0.0448200069, 0.00771375932, -0.00594848, 0.0029034717, 0.0016954937, 0.0177392885, 0.000826123171, 0.0127933603, 0.00430901116, -0.00402593752, -0.00364064286, 0.00351483235, 0.00466678524, -0.00514643779, 0.0109612439, 0.0200510565, -0.00370158232, -0.00240612682, 0.00748572778, 0.0276154149, 0.0145547083, 0.00408097962, -0.0014615648, -0.00820127502, -0.0101277493, -0.00503242202, 0.0216079615, 0.0364221558, -0.0271279, 0.0185256042, 0.00132199365, 0.0233850367, 0.00546096405, 0.00291330065, -0.00474148523, 0.0037762823, 0.0128562655, 0.0137448022, -0.00106152648, -0.00288184802, -0.0261528678, 0.00391192175, -0.000583839603, 0.00423431117, -0.019925246, -0.0292195, 0.00542164827, -0.00584232761, -0.0210103616, -0.0201296881, 0.0100569809, 0.0185570568, 0.014342403, -0.00468644314, 0.0225672666, -0.0201611407, -0.0258855205, -0.00811478, 0.0193276461, 0.0304618794, 0.0247375, 0.0173146762, 0.00841358, 0.0143502662, -0.0139728347, -0.0341890156, 0.00482798, 0.0206643827, 0.0221898351, -0.0395045131, 0.0259484258, -0.0238725524, 0.0408884287, -0.00717120152, 0.0128405392, -0.0314369127, 0.022284193, -0.00681342743, 0.000350893475, 0.016150929, -0.0114487605, 0.0106388545, -0.00960878097, 0.0136976233, -0.0342833735, -0.010513044, 0.00299193221, 0.00663257483, -0.00458815368, 0.00504814833, 0.0278041326, 0.0259169731, -0.00990758091, 0.00582660129, 0.00142814638, -0.0154353818, 0.00289757433, 0.0191389304, -0.00945938099, -0.0184469726, -0.00823272765, 0.0394730605, 0.00960091781, 0.0195006356, -0.0106074018, 0.00432866905, -0.0021151898, -0.0110634649, -0.000432228029, -0.0140514662, 0.0065303538, 0.00560643245, -0.000546981, -0.00204442139, 0.0017701938, -0.00438371114, 0.00153823057, 0.0226144455, -0.0206958354, 0.0126360971, -0.00882246532, 0.0114802131, 0.0195792671, 0.00229014526, 0.0233693104, 0.00152741873, -0.013634718, 0.00573617499, -0.0427441336, 0.0426812284, 0.0284489114, 0.0292195, 0.0189030357, 0.00207390822, 0.0136897601, -0.0404795446, -0.0234951209, 0.0173933078, 0.0163710974, 0.0347551629, 0.00946724415, 0.00716333836, 0.030792132, 7.19893751e-06, 0.0242185313, 0.00164045161, -0.0226301719, 0.00844503287, -0.00699821208, -0.00594061706, 0.0228031632, -0.023951184, 0.0141536873, 0.0102928756, -0.00426969538, -0.0189030357, -0.00478473259, -0.0418949127, -0.000734714, 0.0115116658, -0.031295374, -0.0254609101, -0.0282601956, 0.00385294808, 0.00293099275, -0.0279142167, -0.0244701523, -0.0106703071, 0.0131157497, 0.0189344883, 0.0154511081, -0.000763217919, 0.0131707918, 0.00169254502, 0.0270335414, -0.00190485036, -0.0176763833, -0.0167642552, -0.0123372972, 0.0158049501, 0.000101668193, 0.0196893513, -0.020176867, 0.00360722444, -0.0124631077, 0.00331039, -0.00686060637, 0.015293845, 0.0225200877, -0.0119048236, 0.0413287655, 0.0338430367, 0.00194416614, 0.031295374, -0.011723971, -0.00913699158, -0.0203970354, 0.0118655078, -0.0104737282, -0.0145782977, -0.00115883315, -9.49722235e-05, -0.00350303762, 0.0106074018, 0.0135482233, 0.00835067499, 0.00563002191, -0.00323175848, -0.0218753088, -0.0456377789, -0.0014045568, -0.00350303762, 0.00967168622, -0.0197994355, -0.00441516424, -0.00662078, 0.00560250087, -0.00104973174, -0.0043915743, -0.00838212762, 0.0174247604, 0.00157951214, 0.0266089309, -0.000847746851, -0.00182720169, -0.00460781157, 0.0182110779, 0.00182130432, -0.01600153, -0.0335914157, -0.0171102341, 0.022284193, 0.00509532727, 0.0192332882, 0.00154314504, -0.0267032888, 0.00836640131, -0.000251006801, -0.0233693104, 0.0157813616, -0.0204127617, 0.0142637715, 0.0042107217, -0.00208177138, 0.000585313945, 0.00828777, -0.00130331866, -0.0132415602, -0.0155690555, -0.00489481678, 0.0137133496, -0.00367209548, -0.00521327462, 0.0125181498, 0.0170473289, 0.0144839399, -0.0137683917, 0.00257715047, -0.0199409723, 0.0223470982, 0.0169215184, -0.0258540679, -0.00927066524, -0.0195006356, -0.00875169598, -0.0112521807, 0.0187457725, 0.0265932046, -0.0174090341, 0.00623941701, 0.0267504677, 0.0177707411, 0.00103302253, 0.0281658377, 0.029030785, 0.00670727482, 0.0163081922, -0.00689992215, -0.00647138, 0.0120620867, -0.00681735901, -0.00575583288, -0.0183997937, 0.0148377819, -0.000576959341, 0.00257911626, 0.00183604774, -0.00781598, 0.0279928483, 0.0224100035, 0.00099763833, -0.0164811816, -0.0144367609, 0.0162924659, -0.0206958354, 0.00224296632, -0.0368624926, -0.000738645555, 0.0093492968, -0.00921562314, -0.00934143364, 0.00733632781, 0.019170383, 0.0107410755, -0.0171259604, -0.0142952241, 0.0242971629, -0.0110791912, 0.0162924659, -0.00908981264, -0.0163868237, -0.0175977498, -0.00469430629, 0.024957668, 0.00892468635, 0.0348809734, 0.00346765341, 0.00499703782, 0.0216865931, -0.00912912842, -0.0317199863, 0.00858657, 0.0160722975, 0.0087831486, 0.0210103616, -0.0223313719, -0.0168428868, 0.000343276042, -0.00796931237, -0.00333987689, -0.020727288, 0.01147235, 0.0119834552, -0.00805187505, 0.00220168452, -0.00238450314, -0.0133280549, -0.0103715071, -0.00117652526, 0.0110005597, 0.00362491654, 0.00108609884, 0.00204638718, -0.0179594569, 0.0129584866, 0.00305287167, 0.00655001169, -0.0169844236, 0.0211047195, -0.00925493892, 0.00108020147, -0.00226065842, 0.00709257, -0.00772948563, 0.000976506097, -0.0234636683, 0.00581873814, 0.00816982239, 0.00547275878, -0.0211518984, 0.00615292229, 0.00677804323, 0.0120227709, 0.00469823787, -0.00333004794, -0.0112443175, -0.00487515889, 0.00701787, -0.00115391868, -0.0322389528, -0.0132022444, -0.00746607, 0.0112836333, -0.00166698976, -0.0192961935, -0.0121957604, -0.00616078544, -0.000937681762, -0.000761252129, 0.00597206969, 0.00384311914, 0.0162452869, 0.00194809772, 0.0590051487, 0.0146805188, 0.0271593519, 0.0140357399, 0.00489481678, 0.0173461288, 0.00198937929, -0.0126754129, -0.00054845534, 0.0125417393, -0.00343030319, 0.0135875391, 0.0186356883, -0.00803221762, 0.00818554871, 0.0185413305, 0.00268723466, -0.0195163619, 0.00107332121, 0.0293767639, 0.00396893, -0.00776093826, 0.00675445376, 0.0151916239, 0.0142873609, 0.0218910351, -0.0229918789, 0.0056142956, 0.0126832761, 0.0063495012, -0.0117475605, -0.0144760767, -0.00962450728, -0.000573027763, 0.0105680861, 0.0162924659, -0.00180164643, -0.00104481727, -0.0358245559, -0.00610574335, 0.00881460123, 0.00670727482, 0.0236366577, 0.00433653221, -0.0106860334, 0.0127933603, 0.00711615942, -0.0135246338, -0.00759581197, -0.0174876656, -0.00426969538, 0.00392961409, -0.00107430411, 0.0019156622, 0.00788674876, -0.00841358, 0.0195006356, -0.0345349945, -0.0183997937, -0.0137212127, -0.00372517179, 0.0231805947, -0.0132572865, -0.00573224341, -0.0275996886, 0.00448200107, -0.00219971873, -0.0201296881, 0.0257125311, 0.0213720668, -0.0056811329, 0.00361705339, -0.0184784252, -0.00905049685, 0.0266089309, 0.0050009694, -0.014743424, 0.00680556428, -0.00438371114, -0.000327058282, 0.010717486, -0.00542164827, 0.00164340029, 0.0101906545, -0.00368978758, -0.0114408974, 0.00056811329, 0.00480832206, 0.0112443175, 0.00424217433, 0.0048004589, -0.0119520025, 0.0297070164, 0.0261843204, -0.00438371114, -0.00253783469, -0.0055238693, -0.0106467176, 0.00727342255, -0.00556318508, 0.0245487839, 0.0159386247, 0.0326163843, -0.00125220814, 0.00710829627, 0.0152623923, -0.0205385722, -0.00903477054, -0.0157263186, -0.0321288705, -0.0219539404, -0.0162452869, 0.000164757759, -0.00691564847, -0.0128012234, -0.0141222347, -0.0124552445, 0.0161666553, -0.0088617811, -0.00551207457, -0.0458579473, -0.00667975377, 0.00181147538, -0.0256024469, -0.0190602988, 0.00329859531, -0.0342204683, -0.00370944547, -0.0103086019, 0.0253351, 0.0020778398, -0.00435619, 0.0192490146, 0.00509925885, -0.0184312463, -0.00770589616, 0.00651462749, -0.00377038494, -0.00618437491, 0.0121721709, 0.0151994871, 0.00421465328, -0.00217219768, -0.00157361478, -0.00140062522, -0.00854725391, 0.0271121729, 0.0142794978, 0.00528404303, 0.0119048236, -0.0137290759, -0.0105602229, 0.00240022945, -0.0175348446, 0.00785529613, 0.00812264346, 0.0151837608, -0.00559856929, -0.0108197071, -0.000275947765, -0.00682522217, -0.0108511597, -0.00539019564, -0.013280876, 0.00897186529, -0.0152623923, 0.0228817947, 0.0226616245, 0.011574571, 0.0177550148, -0.000620698149, -0.00101434754, -0.00827990659, 0.01162175, -0.0205542985, 0.0182268042, 0.0157184564, 0.00836640131, 0.0280085746, 0.00963237, -0.00399645092, 0.00710043311, -0.00482798, 0.00646744855, -0.021733772, 0.0164182764, -0.00428149, -0.0382464081, -0.00253980048, -0.00665223273, 0.0168586131, 0.012526013, 0.0169686973, -0.00539412722, -0.00192450825, -0.00519754831, -0.00583839603, 0.00905049685, -0.0112364544, -0.00218792399, -0.020176867, 0.00793786, -0.0239354577, -0.0221426561, 0.00661684852, -0.00561822718, -0.0068016327, -0.0151365818, 0.00207587401, -0.00337919267, -0.0271279, -0.0125102866, 0.0119284131, 0.00207980559, -0.00139177917, 0.0229604263, 0.0109926965, -0.0232277736, -0.00381952967, -0.00659325905, 0.0222527403, -0.00499703782, 0.0211518984, -0.00355021656, 0.0330881737, 0.005433443, 0.0191232041, -0.00010080816, -0.0120542236, -0.0131000234, -0.00199134508, 0.0237310156, 0.0191389304, 0.00126498577, -0.00412422698, -0.0106467176, -0.00222330843, -0.00167878449, -0.0034283374, -0.0159779396, 0.0128090866, -0.015042224, -0.01570273, -0.00230390579, -0.0125574656, 0.0047296905, 0.00712402258, -0.00469430629, -0.0274267, -1.67860017e-05, -0.0123451604, 0.0123923393, 0.00724590151, -0.0124395182, 0.00397286145, 0.0163081922, 0.00791820139, -0.00698248576, -0.00734025938, -0.00333201373, -0.00056811329, 0.0296126585, 0.0156870037, -0.0110320123, 0.0247375, 0.0117632868, -0.00949869677, 0.00788674876, -0.0271593519, 0.013532497, 0.0100098019, -0.00271082413, 0.0212777089, 0.00432866905, 0.00853152759, 0.0118104657, 0.00500490097, -0.0204127617, 0.00602318, 0.00241399, -0.0222527403, 0.0126360971, 0.00276193465, -0.0176134761, -0.00301945326, -0.00509532727, -0.0206329301, 0.0165283605, -0.000244126524, -0.00326910848, 0.0128484024, -0.010764665, -0.0193590987, 0.00292902696, 0.00685274322, 0.0267190151, -0.00838212762, 0.0116767921, 0.00510319043, 0.01162175, -0.019972425, 0.00760760671, 0.0178179201, 0.0216865931, -0.00778452773, -0.0123608867, 0.0204599407, 0.0160565712, -0.0060428381, 0.0279299431, -0.00575976446, 0.0144288978, 0.00437977957, 0.00120797788, -0.000538134947, 0.0144367609, -0.00457635894, -0.0036504718, -0.026011331, 0.0108826123, 0.0150500871, -0.00455276947, 0.0161823817, 0.000417730334, -0.0090426337, -0.0125338761, -0.00626693806, -0.0115824342, -0.00139079627, 0.00603497494, -0.0193748251, 0.0146962451, -0.00808332767, 0.00782384351, -0.0169215184, 0.021985393, -0.0101277493, 0.0120542236, 0.00903477054, 0.0086573381, -0.00279535307, 0.0046392642, -0.00844503287, -0.018163899, 0.0101198861, -0.00233929, -0.0158049501, -0.00505601149, -0.0163868237, -0.0135718128, -0.00257125311, 0.0175348446, 0.0102928756, 0.00823272765, 0.0256653521, 0.0108747492, 0.00349910604, 0.0163553711, -0.0145704346, 0.00150579505, -0.00155395688, 0.00416747434, -0.0351955, -0.00545703247, 0.0120935393, 0.0180380885, -0.00954587571, 0.00147139374, -0.00146451348, 0.0282444693, 0.0238096472, 0.0169372447, -0.015042224, -0.0128562655, -0.00486729573, 0.021482151, 0.000545015209, 0.034409184, 0.00110673974, -0.000547963893, 0.0196893513, -0.0190760251, 0.0243286155, -0.00677411165, -0.00973459147, 0.0149635924, -0.0107803913, 0.014594024, 0.00688026426, 0.0189659409, -0.0146254767, -0.0229918789, -0.00513464306, -0.0108197071, -0.00333201373, 0.00590130128, 0.000120158904, 0.0118419183, -0.00741495937, -0.00809119083, -0.00292509538, 0.0126596866, 0.0206329301, 0.0133044655, -0.0288263429, 0.00628659595, 0.0180852674, 0.00892468635, -0.00190976483, 0.0235580262, 0.00636915909, 0.00404952699, -0.00133772, -0.00636129593, 0.0148141924, 0.00576369604, -0.0125181498, 0.00206211349, 0.00288184802, -0.00887750741, 0.000972083071, 0.012124992, 0.00743461726, 0.0139177926, 0.00412422698, -0.0115038026, 0.0324905738, 0.0165440869, 0.00225476106, -0.0162295606, -0.01670135, -0.0095301494, -0.0190288462, -9.41121907e-05, -0.00427755853, 0.00774914352, 0.0128484024, -0.000394632312, -0.0175191183, -0.00492233783, 0.0197837092, -0.000224345771, -0.00495379046, 0.0485943258, 0.0100255283, -0.00167878449, 0.00883819163, 0.0130921602, -0.00722624362, -0.0175191183, -0.00275210571, -0.00137507, 0.00368389022, 0.00205425033, -0.00417140592, -0.00250245049, -0.0082405908, 0.00510319043, -0.00879887491, 0.0144210346, -0.0205385722, 0.01147235, 0.00918417051, -0.0229604263, 0.00219775294, 0.00617258, 0.00855511706, 0.000444268517, 0.00261056889, -0.0126125077, -0.00999407563, -0.000453606015, 0.00522900093, 0.00982108619, 0.00412422698, -0.0119991815, 0.025209289, -0.0106545808, 0.00224886369, 0.0215293299, 0.000117271651, 0.00222330843, 0.013784118, -0.00227441895, -0.0164654553, -0.00472182734, 0.00404952699, 0.00263809, -0.022237014, 0.012777634, -0.00341457687, -0.0035600455, -0.00305876904, 0.0291251428, -0.0386238396, -0.00315509271, 0.000509631, -0.0233535841, -0.0213091616, 0.0150029082, -0.0129663497, -0.00703752786, 0.00741495937, 0.0132572865, -0.014090782, 0.0176292025, -0.00468251156, 0.0102928756, -0.0071751331, -0.0172832236, -0.000214148225, 0.0183997937, -0.0070847068, 0.0100727072, 0.00531156408, 0.00213681348, -0.0171888657, 0.00956946518, -0.000935224525, 0.015293845, -0.000713090296, -0.0157184564, -0.00138981338, -0.0207744669, -0.00402593752, -0.00115391868, 0.0046392642, -0.0145625714, 0.00269313203, -0.00375072705, -0.00466285367, 0.00955373887, 0.0223313719, 0.0228188895, -0.0137919812, -0.0138077075, -0.00453311158, 0.0268605519, 0.0170945078, -0.00198348192, 0.00827990659, 0.0160722975, -0.000645270513, 0.00885391794, -0.00872024335, 0.0123608867, 0.0208845511, -0.0084214434, 0.0124002025, 0.0202083196, -0.00162669108, 0.0113150859, 0.00771375932, 0.0200510565, 0.0248475838, -0.00517002726, 0.00513857463, -0.0118183289, 0.00431687431, -0.00394337438, 0.014538982, 0.00825631712, -0.0133752339, 0.00499310624, -0.00321210059, 0.00531549565, -0.000131953639, -0.00376252178, -0.00321996375, 0.00842930656, 0.0147827398, -0.00230390579, -0.000602514599, 0.0244387, -0.00227835053, -0.0164340027, -0.0180380885, -0.0362648927, 0.00969527569, 0.00767051196, -0.0149085503, -0.014538982, -0.0260899626, -0.0243286155, 0.0101277493, 0.0242971629, 0.0183997937, -0.0405739024, 0.0076626488, -0.00914485473, 0.0318615213, 0.0019510464, -0.00523686409, 0.0131000234, 0.0186828673, 0.00385687966, -0.00768230669, 0.0160565712, -0.0219696667, -0.0193748251, -0.00794179086, 0.012227213, -0.00771375932, 0.0161823817, -0.0103793703, -0.00157754635, 0.0366737768, -0.0148770977, -0.00273048203, 0.00194416614, -0.000261204317, -0.00840571709, -0.00210536085, -3.80564634e-05, -0.0196264461, 0.00236091367, -0.00410063751, -0.00747000147, 0.0136425812, 0.00577942235, -0.00345585844, -0.00818554871, -0.00241202419, 0.000372271461, 0.0232749525, 0.0130213918, 0.000910652161, -0.0104344124, 0.011873371, -0.0120463604, 0.0113386754, 0.0232592262, 0.00894827582, -0.00935716, 0.0189973935, 9.64465653e-05, -0.0243128892, 0.0089875916, -0.0150343608, 0.0202712249, 0.0216708668, -0.0276468676, -0.00970313884, 0.0193905514, 0.0203341302, 0.020176867, 0.00224296632, -0.0167485289, 0.0170473289, -0.00182228722, 0.00386474282, 0.0183211621, 0.00648710644, -0.00458815368, -0.0155611923, 0.00211715559, -8.95663e-05, 0.016654171, -0.0129348971, 0.00538626406, 0.00758008566, 0.00237860577, 0.0227088053, 0.0221426561, 0.00636129593, 0.006314117, 0.019170383, 0.00231766631, -0.00883032847, 0.00315116113, -0.0191389304, -0.0205228459, 0.00332611636, -0.00417140592, -0.00431294274, -0.0203184038, -0.0220482983, 0.00325927953, 0.00349320867, 0.00788281765, 0.00790247507, 0.0141458241, -0.00722231204, -0.00175643328, -1.90435894e-05, -0.0169372447, 0.00926280208, -0.0108354334, 0.0253665522, -0.0215450563, 0.0140829189, 0.00496558519, -0.0191232041, -0.00566147454, 0.0195006356, -0.00252014259, 0.0137605285, 0.0032474848, 0.00203262665, 0.0020424556, -0.0154511081, -0.00869665388, 0.00767444354, 0.00310987956, -0.0106467176, 0.00709257, -0.00164733187, -0.00955373887, 0.0172832236, 0.00259680836, -0.00760367513, -0.0189659409, -0.00398858776, 0.0090426337, -0.0109848334, -0.0078788856, -0.0277255, -0.00279142149, 0.0176921096, 0.00312560587, -0.00039512376, -0.00662078, -0.00861802232, 0.0141065083, 0.00426969538, 0.0144446241, 0.00132101076, -0.0124002025, 0.00579121709, -0.00144878717, -0.00172792922, 0.00767837511, 0.00568506448, 0.0113858553, -7.53143249e-05, -0.0113779921, -0.00793786, 0.0180852674, -0.0195320882, -0.00623941701, 0.00453311158, -0.00937288627, -0.0165440869, -0.00581480656, 0.00468251156, -0.00386867439, 0.00511498516, -0.00447020633, -0.0298485532, -0.00415961118, 0.0259327, 0.00759974355, -0.0101592019, 0.000683111954, -0.0323962159, -0.00726162782, -0.00931784417, 0.0138391601, -0.00737957517, 0.00866520125, -0.00167681871, 0.00167878449, 0.00534694828, 0.00236877683, -0.0021682661, 0.0141458241, -0.0163553711, -0.018918762, -0.00591702759, -0.00266167941, 0.0110241491, -0.000248795288, 0.0133988233, 0.0110949175, -0.0121092657, 0.000290199736, -0.00299193221, 0.0361076295, -0.00666402746, 0.00295065064, -0.015293845, -0.0054884851, 0.0106545808, 0.0153331608, 0.001056612, -0.00639668, -0.01841552, -0.00199134508, -0.0119205499, 0.0207115617, 0.00571258552, -0.0114959395, 0.00185865432, 0.00304500852, -0.0256968047, -0.0231648684, 0.0192175619, -0.0108747492, -0.0336228684, 0.0147827398, -0.0125810551, -0.00335167162, -0.00350107183, 0.0157105923, 0.00343620055, 0.0231019631, 0.00521327462, 0.0112050017, 0.0117003815, 0.022284193, -0.022488635, 0.00317671639, -0.0140829189, -0.0197994355, 0.0103557808, -0.020224046, -0.00413209, 0.02123053, -0.00993117, 0.00352662709, 0.00757615408, -0.00535088, 0.0142559083, -0.0175505709, -0.00435225852, 0.0103321914, 0.0159936659, 0.0242185313, 0.0266718362, -0.0175662972, -0.00823272765, 0.0125417393, 0.0192018356, 0.00820127502, 0.00283270306, 0.0139177926, -0.007120091, 0.0129584866, 0.0111814123, 0.0160722975, -0.0108747492, 0.00480832206, 0.0147827398, -0.032647837, -0.00952228624, -0.0150107713, -0.000987809384, 0.0138391601, -0.0188401304, -0.0127068656, 0.00747786462, 0.01811672, -0.00268723466, 0.0141536873, -0.00379397441, 0.00486336416, -0.0142480452, 0.00369765074, -0.0180852674, -0.0193905514, 0.00534694828, -0.00382149545, -0.0146883819, 0.00153036742, 0.0266875625, -0.00728128571, -0.0155297397, -0.00398858776, -0.00263415836, 0.00596420653, -0.00334970583, 0.00905836, -0.00184194511, 0.0118497815, -0.0134145496, 0.00196480704, -0.00929425471, 0.00254962943, 0.00022631156, 0.0200510565, -0.0152230766, 0.0159386247, -0.00112541474, -0.00218988978, 0.014641203, 0.00908194948, -0.000382837577, -0.0100962967, 0.0176763833, -0.00287988223, 0.0124080656, -0.00553959562, 0.0150658134, -0.0124709709, 0.0157577712, -0.0186042357, -0.00798110664, -0.00112738053, 0.00752897514, -0.00432473747, 0.00131707918, 0.00948297, -0.00745427515, -0.00779239088, -0.0228188895, -0.0163396448, -0.0608294, 0.0161823817, -0.00894827582, 0.00667582219, -0.0165440869, -0.0119126868, 0.0111735491, -0.0234793946, 0.0165912658, 0.0240612682, 0.0198151618, 0.00535874302, -0.0283388272, -0.00584232761, 0.00208373717, 0.0128326761, 0.0152388029, 0.0106545808, -0.00697855419, -0.00767051196, -0.00743461726, -0.0100727072, 0.00215450558, -0.00623155385, 0.0127225919, 0.00511105359, 0.0127068656, 0.00826418, -0.00412815856, -0.0094043389, -0.00585805392, -0.000742085685, 0.00686453795, -0.0369568504, -0.00141536864, 0.0129978023, -0.0116767921, -0.0171731394, -0.00198249915, -0.00670334324, 0.0161823817, 0.00227638474, -0.00483977469, -0.0240298156, -0.0172517709, 0.0110084228, 0.00170630554, -0.00905049685, -0.0210103616, 0.000898366, -0.00982894935, -0.0126911392, -0.0176449306, -0.00797324348, -0.00317868218, 0.00146942795, -0.0109533807, -0.0185570568, 0.0370197557, -0.00154805952, -0.0139177926, -0.00348141394, 0.0128326761, 2.15315413e-05, 0.00715547521, -0.00218988978, 0.00174070697, 0.00597993284, -0.00240022945, 0.0246745944, -0.00171515159, 0.00610181177, -0.00345979, 0.0152309397, -0.00148712, 0.0155611923, -0.00276586623, 0.00858657, -0.0187143199, 0.0127540445, 0.017865099, -0.014594024, -0.000892468612, 0.00140062522, 0.0140671926, -0.0105366334, -0.0101198861, 0.00383722177, 0.00137212127, 0.00960878097, 0.0194849093, 0.0121564446, -0.00633377489, 0.0181953516, 0.0069392384, 0.0168428868, 0.00411243225, -0.013280876, -0.00472182734, -0.00475328, 0.000157140326, -0.0115038026, 0.00750538567, 0.00164831476, 0.00628266437, -0.0155611923, 0.00283073727, -0.0294396691, 0.00238057156, 0.0215136036, 0.0182268042, -0.0146962451, 0.00728914887, 0.00391388778, 0.0128405392, -0.00455670105, 0.00655001169, 0.00909767579, -0.0225987192, -0.0165126342, -0.0207115617, -0.0322704054, 0.0116374763, -0.00931784417, 0.0137998443, -0.00430901116, -0.0128719918, -0.00838999078, -0.0058069434, -0.00997834932, 0.0146883819, 0.014491803, 0.00846862234, -0.0329938158, 0.011165686, 0.00192352536, -0.012077813, 0.0317986161, -0.0112757701, 0.00988399144, 0.00605856441, 0.00574796973, 0.00833494868, 0.0118969604, -0.0129899392, -0.0207430143, -0.00473362207, 0.0195635408, 0.0138391601, -0.0102850124, -0.00221741106, 0.00127284892, 0.00391388778, -0.00465499051, -0.0125574656, -0.00647924328, 0.0160329826, -0.0103872335, 0.0150894029, -0.013988561, 0.0219067615, -0.00673479587, -0.00324158743, 0.026011331, 0.00103105674, 0.0151601713, 0.0169215184, 0.0114173079, -0.00212108716, 0.00205031876, 0.0067465906, 0.00990758091, 0.00327697163, 0.01841552, 0.00313346903, -0.00612146966, -0.00678590639, -0.0166698974, 0.0217809509, -0.000702278398, 0.00780418562, 0.0130213918, -0.000146697072, -0.00925493892, 0.00112639763, -0.0107725281, 0.0158678554, 0.00299979537, 0.0107332123, -0.00151365821, 0.0247846786, 0.00283270306, -0.0199409723, 0.00597600127, 0.0075722225, -0.0230862368, 0.0018252359, -0.00447413791, -0.0169686973, 0.0159622133, 0.00198643073, 0.0163239185, -0.0107410755, -0.00705325417, 0.000867896248, -0.0135796759, 0.000817277119, 0.0103715071, -0.00542558, 0.00348534551, 0.0218281299, 0.0109297913, -0.0180695411, -0.00229800842, 0.0153567502, 0.00275996886, -0.0261056889, 0.0195006356, -0.0124866972, 0.0118340552, -0.00241792155, 0.0158128142, 0.0285747219, 0.0124395182, 0.014995045, -0.0113229491, 0.00863374863, 0.0119913183, 0.0152545292, -0.00891682319, 0.0159150343, -0.000517002714, 0.0182268042, -0.0147355609, -0.00253980048, -0.00546096405, 0.0107096229, -0.0126439603, -0.00858657, 0.00510712201, 0.0200825091, 0.0123137077, 0.0117632868, 0.00370354811, -0.00466285367, 0.0130921602, 0.0173304025, -0.00428149, -0.00681735901, -0.00830349606, -0.00237860577, 0.00200903718, 0.00634163804, -0.000608411967, 0.00475721154, -0.012526013, -0.0167485289, 0.011425171, -0.0126832761, 0.00926280208, -0.0178336464, -0.0146097504, 0.00139964232, -0.000851678429, -0.00241792155, -0.00716727, -0.0210889932, -0.0148141924, -0.0133752339, 0.0028071478, 0.0109926965, -0.0167170763, -0.00462353788, -0.0141300978, 0.0069942805, 0.0149793187, 0.00291526644, 0.00739923306, -0.0128877182, -0.0191861093, 0.0016954937, -0.0169057921, -0.010261423, -0.00451345369, -0.00791427, -0.00296441116, -0.0139177926, 0.00260663731, -0.00641240645, -0.00985253882, 0.00529583776, -0.00889323372, -0.00320620323, -0.00902690738, -0.0252407417, -0.0064399275, 0.0139964242, -0.0016237424, 0.000654116564, -0.0132730128, 0.0110791912, -0.0173304025, 0.00178493722, 0.0117711499, -0.00827204343, -0.016150929, -0.000404952705, -0.0227717105, -0.0129427603, 0.0015687003, -0.0377117135, 0.00581873814, -0.0217494983, 0.00387850334, -0.0120384973, -0.0167485289, -0.00225672685, -0.0223628245, 0.0270964466, 0.0115195289, -0.03058769, -0.00804008078, -0.00574796973, 0.000368585606, 0.000418713229, -0.010764665, 0.0387496501, -0.0200196039, 0.00634556962, -0.00856298, -0.000895417295, 0.00609788, -0.00510712201, -0.0037585902, 0.00505601149, 0.0179594569, -0.00396303227, -0.0254294574, -0.0125102866, -0.0177864674, -0.0138391601, 0.0155140134, 0.00891682319, -0.0100019388, 0.00841358, 0.00251031364, -0.0361705348, -0.00339885056, 0.0121171288, 0.0128641287, 0.0146097504, 0.000568604737, 0.0102692861, 0.0216708668, -0.00307842693, 0.0127461813, 0.00196775561, 9.9395249e-05, 0.00902690738, -0.0180695411, -0.0107096229, 0.00419106381, -0.00797324348, -0.029282406, -0.0299743637, -0.0115588447, -0.00198348192, 0.00478080101, -0.00349910604, -0.00189207273, -0.00148712, -0.0124631077, 0.00354628498, 0.0783799738, 0.00619223807, 0.00229604263, -0.0078081172, 0.00816982239, -0.0103557808, -0.0101985177, 0.049160473, 0.019170383, 0.021482151, 0.00925493892, 0.00956946518, -0.0113150859, -0.00417140592, 0.0138470232, -0.0138155706, 0.00114310684, -0.0222055614, 0.0186042357, -0.00141340285, -0.00494199572, -0.0176606569, 0.00447413791, -0.00160408451, -0.0211833511, -0.00388440071, 0.00184587669, -0.000421170465, -0.0192018356, -0.00186356879, -0.00705325417, 0.0175662972, 0.00788674876, 0.0107568018, -0.0287948903, -0.000582856708, -0.00301748747, -0.0103086019, 0.0165755395, -0.0157656353, 0.00688812742, 0.0220168456, -0.0134931812, -0.00883819163, 0.0156870037, -0.000441565557, -0.0069942805, -0.0100019388, 0.0109140649, -0.0127540445, -0.000876742299, 0.0109533807, -0.0170787815, -0.00861015916, -0.00182327011, 0.00373500073, 0.00448200107, -0.0200825091, 0.0114015816, 0.0123687498, -0.0032297927, 0.0252250154, -0.0132415602, 0.000117394513, 0.00252407417, -0.0127461813, -0.00740709621, 0.00593275391, 0.000129127817, -0.00474541681, -0.00987612829, -0.00609394861, -0.0104894545, 0.00177609117, 0.0101906545, 0.012730455, 0.0017328437, 0.0182739832, 0.00581480656, -0.0222999193, -0.0163710974, 0.00399055332, -0.00459994841, -0.0126596866, -0.019170383, -0.00692351162, -0.0153331608, 0.00188617536, -0.0203970354, 0.0417376496, 0.00396303227, 0.0420836285, -0.0155533291, 0.00504814833, 0.0103086019, -0.0001014839, -0.00334380846, 0.00208963454, 0.0105523597, 0.0160172563, 0.0185885094, 0.0037408981, 0.00954587571, -0.00407704804, -0.00892468635, 0.0281029325, -0.00163946871, 0.0189973935, 0.0203655828, 0.0125967814, -0.0142794978, -0.0021682661, -0.0103793703, 0.0137526654, 0.00971886516, 0.00503242202, 0.0112050017, -0.00488695363, 0.0145468451, -0.0153017081, 0.00883032847, 0.00831922237, 0.01147235, 0.000856101455, -0.00443875371, 0.0082956329, 0.00588950654, 0.0100176651, 0.0366737768, -0.0124552445, 0.00262236362, 0.00639668, 0.00225869264, 0.00152545294, 0.0115509816, 0.0207901932, 0.000549929682, 0.00945938099, 0.0318929739, 0.00821700133, -0.0155847818, -0.0163868237, 0.014641203, 0.0123530235, 0.0160329826, 0.00119716604, 0.00782777555, -0.0146176135, -0.0249891207, -0.00181147538, 0.00272851624, -0.00298406905, 0.0119362762, -0.0233064052, 0.0048004589, -0.011267907, 0.0025732189, -0.0431530178, 0.0234636683, -0.00265774783, -0.000739137, 0.00868092757, 0.0114408974, -0.0100962967, -0.00563002191, 0.00179083459, 0.00561036402, 0.00718692783, 0.00447020633, 0.00273637939, 0.0309965741, 0.00569685921, 0.0151051292, 0.00141045416, -0.00265971362, 0.0124080656, -0.00242185313, -0.00524472725, 0.00456456421, -0.00776487, -0.00248869, -0.011220728, 0.0121407183, 0.0434046388, 0.0109848334, -0.0080597382, 0.00712795416, -0.00111755158, 0.00267347414, 0.010513044, -0.00851580128, 0.0118340552, -0.00318654533, -0.0134381391, -0.0147198346, -0.0153803397, 0.00788674876, -0.00477293786, -0.00258108205, -0.000481127063, -0.0165755395, -0.00195989246, -0.00106152648, 0.0117632868, 0.00578728551, 0.0303832479, 0.00575976446, -0.0140357399, 0.00377038494, 0.00257518468, -0.00362491654]
08 Jun, 2023
CSS pause-before Property 08 Jun, 2023 The CSS pause-before property is used to define the pause time before the element. This property can be seen as the speech media equivalent to the margin-top property in visual media. Syntax: pause-before: time | percentage; Parameters: This property accepts two parameters as mentioned above and described below: time: This parameter holds a value that pause will be the length of the value specified. percentage: The length of the pause is depended on the value of speech-rate. If it is set to pause-before: 50% that would yield 250ms. Example 1: HTML <!DOCTYPE html> <html> <head> <style> audio { pause-before: 20ms; } </style> </head> <body style="text-align: center;"> <h1 style="color: green;">GeeksforGeeks</h1> <p>CSS pause-before Property</p> <audio controls> <source src= "https://media.geeksforgeeks.org/wp-content/uploads/20190625153922/frog.mp3" type="audio/mp3"> </audio> </body> </html> Output: Example 2: HTML <!DOCTYPE html> <html> <head> <style> audio { pause-before: 25%; } </style> </head> <body style="text-align: center;"> <h1 style="color: green;">GeeksforGeeks</h1> <p>CSS pause-before Property</p> <audio controls> <source src= "https://media.geeksforgeeks.org/wp-content/uploads/20190625153922/frog.mp3" type="audio/mp3"> </audio> </body> </html> Output: Supported Browsers: This property is deprecated in CSS3 so the major browsers are not supported by this property Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property
https://www.geeksforgeeks.org/css-pause-before-property?ref=asr10
CSS
CSS pause-before Property
CSS, How to Play and Pause CSS Animations using CSS Custom Properties ?, CSS Tutorial, CSS pause-before Property
GeeksforGeeks
[-0.0273691602, -0.00101420924, -0.0139671098, 0.0215302128, 0.0384530202, -0.0192554872, -0.0225009564, 0.0334689058, -0.0334109515, 0.00478851655, 0.00738923857, 0.0155463787, 0.0107723512, -0.0388587, 0.00857006758, -0.0215012357, -0.031585373, 0.0262390412, 0.00416550227, 0.0270214323, -0.0164301898, -0.00997547247, -0.058099702, -0.0370041467, -0.031034803, 0.0226458441, -0.0102580022, 0.0320779905, -0.00579910353, 0.00298648397, 0.0246597733, 0.0157637093, 0.0100913821, -0.0427126959, -0.0541587733, 0.0155898444, 0.0275575127, 0.00219866075, -0.030252412, -0.038974613, -0.011293944, 0.0114460755, -0.0224719793, -0.0349467508, 0.0109534599, 0.00340665644, -0.0299336612, -0.010265246, 0.00497324718, -0.0474649929, 0.02437, 0.0341353863, 0.0245293751, 0.0334978811, 0.0148654096, -0.0131847197, 0.00435747765, 0.0200378764, -0.00448425347, 0.00190888671, 0.0090409508, -0.0155029129, -0.0376126729, -0.00909890607, -0.0441905446, 0.0222836249, -0.0464218035, 0.0161404163, -0.0501309149, 0.0168793388, -0.0479865856, -0.038018357, 0.00748341531, 0.0201827642, 0.0157926865, -0.0292961579, 0.0216171462, 0.0347439088, 0.0172415562, 0.0470593087, 0.0069256, -0.0148291877, -0.0878595, 0.029049851, 0.00600919, 0.00147694221, 0.00784563273, -0.0304842312, 0.0462189652, -0.0180963911, 0.00568681583, 0.00360949826, 0.0290353615, -0.0239643157, -0.0608525537, 0.0166764967, 0.0138222231, 0.0102435136, -0.0037453298, 0.0200668536, 0.0276879128, 0.012387841, 0.011533008, 0.00317302602, -0.00299735041, 0.0289049633, 0.0100479154, 0.0028760077, 0.0362217575, 0.0273256935, 0.0132209416, 0.0104898214, 0.0119604245, -0.013858445, -0.0157926865, 0.0508843251, -0.00888157543, -0.0319331028, -0.0087801544, 0.0243410207, -0.00933796912, 0.0169517826, -0.00696182204, 0.0729651079, -0.00238339161, 0.0617218763, -0.0157926865, -0.0308029838, 0.010301468, -0.0233557895, 0.017314, 0.0325416289, -0.0181253683, -0.00690024486, 0.0499280728, 0.0102797346, 0.0116778947, -0.0102072917, 0.0127065927, 0.00455669733, -0.0150392745, 0.0277313776, 0.0334978811, 0.0228486843, -0.0160389952, 0.00665755896, -0.00158832408, 0.0498990938, -0.0227037985, 0.0385109745, -0.0278327987, -0.0303683225, -0.00539704179, -0.0230370387, -0.0236455631, 0.00672275852, -0.0333529934, -0.000438283285, 0.0167054757, 0.00996098388, 0.0128442356, 0.0111490572, 0.00887433067, 0.0255580731, 0.00696182204, 0.0169517826, 0.0294700228, -0.0440166816, -0.0065561384, 0.0268330779, -0.0330342427, 0.0162853021, -0.0509422794, -0.0270504095, -0.0132644074, -0.000484466029, 0.032715492, 0.0110041704, 0.0106491968, 0.019125089, -0.0383081324, 0.0138656888, 0.00202841847, 0.00651629409, -0.000271663186, -0.00707410928, -0.0015584412, -0.0011926014, -0.0174443983, -0.0211390182, -0.0175168421, 0.0335848145, 0.0572593547, 0.00741097191, 0.0223126039, -0.00219866075, -0.0271083638, 0.00740734953, -0.0150827402, -0.0200378764, -0.0228052195, -0.0255870502, 0.0163867231, 0.0232978351, -0.00280175288, 0.00979436375, -0.0172995124, 0.00620840956, 0.0439007692, -0.0375257432, 0.0308029838, -0.0343961827, 0.0225009564, -0.0262535308, 0.0278038215, 0.00135922153, -0.056940604, 0.00100424828, -0.00281080836, -0.00807020813, 0.0246163066, -5.23517592e-05, -0.0154739348, 0.00185455405, -0.0678071305, -0.0014552091, -0.0145249255, 0.0321069658, 0.015778197, 0.0223850459, 0.00645471737, 0.0528837666, -0.0114098536, 0.00611423282, 0.0154449577, 0.0307450276, -0.0162708145, -0.00225661555, 0.0171546247, 0.0137063134, -0.0128804576, 0.000174204019, -0.0232109018, -0.00666118134, 0.000757940288, -0.0139019107, 0.0105767529, -0.0252827872, 0.0110983467, -0.0359319858, -0.00147422554, 0.0156912655, -0.0388007462, -0.031614352, -0.0163142793, 0.0291657597, 0.0066792923, -0.0377285816, 0.0119966464, 0.0334978811, 0.0185165629, 0.0123298867, -0.0048211161, -0.0237759613, -0.0214867461, 0.015705755, 0.0228197072, -0.0174443983, -0.00454220828, -0.0189946909, 0.000984326238, -0.0299916156, 0.041814398, -0.00936694629, -0.0337586775, 0.0359899402, -0.0306870732, -0.0180963911, 0.0621855147, -0.0102507574, 0.0145611465, 0.0219358969, -0.0189657118, 0.0383081324, -0.0222836249, -0.0386558622, 0.0349177755, 0.00770799024, -0.0198929887, -0.0241092015, -0.0043429886, -0.0299046841, 0.0204580482, 0.0291367825, 0.0285862107, 0.0264998376, -0.010127604, -0.00715379743, -0.0176182631, -0.020907199, -0.0208782218, 0.0235731211, 0.0131774759, -0.0104680881, 0.00578461494, 0.00922930427, 0.0258768238, -0.00418361323, -0.000271436787, -0.0289774071, 0.0246307962, -0.011221501, 0.00105948641, 0.0191106, 0.014850921, -0.0245438628, 0.00550570711, -0.0193134416, -0.0368013047, -0.00918583758, 0.00213346165, -0.0340774283, -0.0527678579, 0.0129384119, -0.015778197, -0.00137371023, -0.0494354554, -0.0161693934, 0.0275285356, -0.00228015962, -0.0283109266, -0.0485951118, -0.00601643417, -0.00369643047, 0.0357581191, -0.0133585846, -0.00791083183, -0.00627360865, 0.0113084326, -0.0280791074, 0.0180674121, -0.0261376202, 0.00350264413, -0.0159665514, 0.0496382974, -0.0160389952, -0.00073982944, -0.015024785, 0.0228341967, 0.00609612186, 0.0010169259, 0.00935245771, 0.0167054757, -0.013380317, 0.0298467278, 0.00475953892, -0.0173864439, -0.0208347552, -0.0271518305, 0.0126341488, 0.0518985353, -0.00962049887, 0.0184006523, -0.0167779177, 0.0153000709, -0.0554917343, -0.00777318934, -0.0321359448, 0.00810642913, 0.00146335899, -0.0687344074, 0.0204000939, 0.0193424188, -0.00105133653, -0.0456683934, 0.0266447254, -0.0359319858, -0.00523042167, -0.029499, 0.015705755, -0.0409160964, 0.0524201281, 0.0322228745, 0.0111273238, 0.0245438628, -0.00900472887, -0.00154757465, 0.010026183, 0.00872944389, 0.0193279311, -0.0106129749, 0.0126413936, -0.00883086491, -0.0435820185, -0.0104173776, -0.020226229, -0.00541515276, 0.00958427694, 0.000560078945, -0.0484792, 0.00383588416, -0.00354973227, 0.0325126499, 0.0153725138, 0.00157564646, 0.0133151179, -0.0339035653, -0.025456652, 0.0127355698, -0.0218634531, -0.0086497562, -0.00397352688, -0.0138367116, 0.00370548596, -0.00745443767, 0.0325706042, 0.0222836249, 0.0256160274, -0.000253778708, 0.0307450276, 0.0105912425, 0.000527479337, -0.0157492198, -0.00286876317, 0.0322808325, -0.0414376929, -0.0296149086, -0.00901921745, 0.0342802703, -0.00180112687, -0.0309188925, 0.0197191257, 0.00638227398, -0.00950458925, 0.0115547413, 0.00743994908, 0.0488269292, 0.0143583054, -0.0110259028, -0.0194583293, -0.0187194049, 0.000638861267, 0.027992174, 0.0113156773, -0.00488269283, -0.00298105064, -0.0128152585, 0.0107940836, 0.00398801547, 0.0510292128, -0.0125327287, -0.0174009334, 0.00190888671, 0.0102000469, 0.0161549039, 0.00209723972, -0.0226458441, -0.0319910571, -0.0377865396, -0.00841793697, -0.0426547416, -0.0113301659, 0.0243989769, 0.0460740775, 0.0578389019, -0.0368302837, -0.0478996523, 0.00791807659, 0.0156333111, 0.0217475444, 0.0115837185, -0.0202841852, -0.0150102964, 0.0165895652, 0.0238628946, 0.0356422104, -0.00406408124, -0.01413373, -0.0125472173, -0.0220952723, 0.00209542876, -0.0151406946, 0.0308609381, -0.00709222024, -0.0253262538, 0.00734215043, 0.0244424418, -0.00541515276, -0.00358414301, 0.0419013314, -0.00962049887, 0.0106491968, -0.0167779177, -0.0174154211, 0.0441036113, 0.0148798982, -0.0207912885, 0.0101565812, 0.0048935595, -0.049203638, -0.00775870075, 0.0107868398, 0.0186469611, 0.0293686017, 0.00400974881, -0.00809194054, -0.032744471, 0.00967120938, -0.0344831124, 0.00730955089, -0.031556394, 0.0172850229, 0.000321920874, 0.0168358739, -0.0117503386, 0.0121053113, -0.022037318, -0.00327988015, -0.0176182631, 0.0110621247, 0.0157637093, 0.017792128, -0.0194148626, 0.00536806462, -0.0359319858, 0.0467985123, 0.0118082929, 0.000356331555, -0.0131847197, -0.00971467514, -0.0125689497, -0.00648007262, 0.0262100641, 0.0238049403, -0.00797603093, 0.00914961658, -0.020704357, 0.00662858179, 0.00243953546, 0.0383950621, -0.0503047779, 0.00548759615, -0.00615407666, -0.00601281179, -0.0239932928, -0.00453858636, 0.0382791534, -0.0198929887, -0.00931623578, 0.0117793158, 0.0085845571, 0.0102000469, 0.032947313, 0.0131702311, -0.00212802831, -0.0268910341, -0.0359030068, 0.000217556939, -0.00203928491, -0.00427416759, 0.00379241817, 0.000234309497, 0.0249060802, 0.00772972312, 0.00227472652, -0.0316723064, 0.00523404405, 0.0149958078, 0.000203860589, 0.00357870967, -0.0210520867, 0.0129601452, -0.000129492779, -0.0228631739, -0.0228776634, -0.0212983936, 0.0306291189, -0.038047336, 0.0144597255, 0.0134165389, -0.0180674121, -0.0131919645, 0.0217765216, 0.00226929318, -0.0154594462, 0.000893319084, -0.0250075012, -0.0328314, -0.0777174, -0.00267678802, 0.0143800378, -0.00741821621, -0.00696182204, 0.000340484519, 0.00353162154, 0.0167344529, -0.00563610578, -0.0172850229, 0.00928725861, -0.00199400773, -0.0114750527, 0.0673434958, -0.00453496398, 0.01112008, -0.0125761945, -0.00515797827, 0.026383929, 0.00378517364, -0.031614352, 0.0250654574, -0.0286731441, 0.0134672495, 0.00596572366, -0.0137715125, -0.00282348599, 0.00633518538, -0.0116054509, 0.0158506408, -0.0207768, 0.0230805036, 0.0155174015, 0.0128007689, 0.0197481029, 0.00765727973, 0.0168503616, -0.000366518914, -0.0262969956, -0.0468564667, 0.0162997916, -0.0426837206, -0.0325995833, 0.00837447, -0.00344106695, -0.00844691414, 0.00851935707, 0.0279487092, -0.0194438398, 0.0176472403, -0.000833553204, 0.00138910441, -0.0278617758, 0.0152421156, -0.0225589108, 0.0501019359, -0.00245221308, -0.0198640116, -0.0229790825, 0.0376706272, -0.0261231326, -0.0114098536, -0.0397859775, 0.0314694643, 0.0229790825, 0.0168213844, -0.00564335, 0.0308899153, 0.00314948196, -0.00639314, -0.0107578626, 0.0065561384, -0.00611785473, -0.0320490114, 0.0250799451, 0.0347149335, 0.00602367846, -0.0233268123, -0.032744471, -0.0231819246, -0.0267896131, 0.0477257892, -0.00651991647, -0.0281950161, 0.0265433043, 0.0181253683, -0.00566146104, -0.0060599, -0.0130181, 0.0118590035, 0.0139381327, 0.0241381805, 0.00751963723, -0.0241092015, -0.00205558469, 0.0113084326, 0.0275575127, -0.0148002105, -0.00486458233, -0.00794705376, 0.0181253683, 0.0254276749, 0.0434950888, 0.0158941075, 0.013481738, 0.0102145355, 0.0211100411, -0.00609612186, -0.0226748213, 0.0123009095, -0.0155318901, -0.0287455879, 0.00538617559, -0.0116706509, -0.0259347782, -0.00405683694, 0.0268765446, 0.0193713959, -0.00694733299, -0.0307160504, -0.0209651534, -0.0483632907, 0.0175168421, 0.0266157482, -0.0086207781, 0.0120835789, 0.0170966703, 0.0191106, 0.024775682, -0.0348598212, -0.0131629873, 0.012626905, 0.00592588, 0.0247611944, 0.00240874686, -0.0253407415, 0.0273256935, 0.0240512472, 0.0128732128, -0.00819336157, -0.0370041467, 0.011221501, -0.0125834392, 0.0262825079, 0.00997547247, -0.0102217803, -0.00176037743, 0.0289194509, 0.000393458846, 0.0190671328, 0.00308609381, 0.0062410091, 0.00590776885, 0.0114750527, -0.00073982944, -0.0142858615, -0.0198785011, -0.0194003731, 0.00605265563, 0.0145828798, 0.00376344076, -0.00261521083, -0.0110041704, -0.00791807659, 0.0366564207, -0.0204725377, 0.0237759613, 0.0180963911, -0.0051290011, -0.0136411143, -0.0100044496, 0.00869322196, 0.0280066635, 0.0330632217, -0.00267135468, 0.00973640848, -0.0118010491, -0.0270359199, -0.0187338926, -0.0215012357, 0.0167054757, -0.0205160044, -0.0051942, -0.0232833456, 0.0303683225, 0.00128677802, -0.00857006758, 0.0228486843, -0.0257609151, -0.0200668536, 0.0351206176, 0.00229283725, -0.0319910571, 0.0406263247, -0.0161259267, -0.0042777895, 0.0163722355, -0.0113808764, -0.0325706042, -0.0147857219, -0.0114315869, 0.00151588058, 0.00470520649, 0.0338456109, 0.0160679724, 0.00623376481, 0.00221314933, 0.00720813, -0.0412928052, 0.000977082, 0.0195162836, -0.0496093184, 0.015024785, 0.0082947826, -0.0024141802, -0.0129601452, 0.032889355, -0.00950458925, 0.00408943649, -0.0207768, -0.0477547646, 0.00811367389, -0.00582445879, 0.0232543685, -0.0181833226, -0.0624173321, -0.00517246686, -0.0326575376, 0.000517518376, 0.038018357, -0.0235876087, 0.00478851655, -0.0095553, -0.0249640364, 0.0290933158, -0.029701842, -0.0155174015, 0.0510292128, -0.00277458667, 0.00741097191, 0.0279776864, -0.00398439355, 0.0128007689, 0.007939809, -0.0376706272, 0.0410030298, -0.0205015149, 0.0181688331, -0.0154449577, 0.00497686956, -0.0136556029, -0.0152131384, -0.00970018655, 0.020704357, -0.032744471, -0.00709584262, 0.00379966246, -0.00780941127, -0.0054549966, -0.0232543685, 0.00645833928, 0.00648369454, 0.0240947139, -0.000371725793, 0.0119894017, 0.0168648511, -0.00277458667, 0.00693284441, -0.0335848145, -0.0159955285, 0.0232833456, -0.0208782218, 0.0137280468, 0.0190091785, -0.0176472403, -0.01050431, 0.00966396555, 0.00440094341, -0.0117503386, -0.0321939, -0.029020872, 0.000830383797, -0.0173719544, 0.0179804806, 0.0165750757, -0.00999720488, -0.0030353833, -0.00591139076, -0.0166909862, 0.0172995124, -0.000217896508, 0.00233992562, 0.0355263, -0.0141482186, -0.0108303055, -0.0164446775, 0.00342476717, 0.0249495469, -0.0414956473, 0.00657787127, -0.00301908352, -0.0224285126, 0.0121705104, 0.0416984893, 0.0144235045, -0.0236020982, 0.00909166131, 0.0583315194, 0.0370621048, -0.0122139771, -0.0167054757, 0.00386848371, 0.00177305506, 0.0136700915, 0.0174009334, -0.0438717939, 0.00826580543, -0.0280356407, 0.00966396555, -0.0147639886, -6.15203899e-05, 0.0143148387, 0.00548759615, -0.0076862569, -0.00851211324, -0.0148798982, 0.034222316, -0.00689300057, 0.0146553237, 0.0174878649, 0.0185745172, 0.00828753784, 0.0408581421, -0.00469071791, -0.0142496396, 0.0364535786, -0.0069219782, 0.0345120914, -0.0109462151, -0.00711395312, -0.0107216407, 0.0107651064, 0.000991570647, 0.0235151649, 0.00110385811, 0.0102724908, -0.0343092494, -0.00562523911, 0.00446614297, -0.0116489176, -0.0339615196, -0.00224756, 0.0114895413, -0.00883086491, -0.0172270685, 0.0222111829, 0.000533818151, 0.00255363388, -0.0210375972, 0.0385979041, 0.00146064244, 0.026688192, 0.0196177047, -0.0180239473, 0.00263151084, -0.0393802971, -0.00922930427, -0.00859180093, -0.0126921041, 8.68190255e-05, -0.00754861441, -0.0166764967, 0.00506742392, 0.0130108558, 0.0148291877, 0.00898299646, 0.029020872, -0.0356132314, -0.00451323111, 0.00924379285, 0.00596934557, 0.00557090621, 0.0224719793, -0.0344831124, 0.00640400685, 0.00399163784, 0.00767176831, 4.79655318e-05, 0.0124168191, -0.0388007462, 0.0197336134, -0.00775870075, -0.0147060342, 0.00581359211, -0.0148364324, 0.00185274298, 0.0284123477, -0.00876566581, 0.00624463102, -0.00222220481, 0.00758483633, 0.018241277, 0.00406408124, -0.0214287918, -0.0143075949, -0.0167054757, 0.0214143042, -0.0073131728, 0.0259927344, 0.0274416041, 0.0188787803, -0.00414014701, -0.0284558125, -0.00441905437, -0.0117068719, 0.00981609616, 0.00139634882, 0.0094611235, 0.000902827305, -0.0180384349, -0.0246307962, 0.0183137208, -0.0120618455, -0.000131756649, 0.0260506887, -0.0342802703, 0.0523042195, -0.0108520389, -0.00635691872, 0.00919308234, 0.00160643493, 0.0386848375, 0.0205594692, -0.0207623113, 0.00740372716, 0.0188642908, 0.00780216651, 0.0145031922, -0.0107940836, -0.00160552945, -0.0063134525, 0.0259637572, 0.00666118134, -0.00567232724, 0.0160534829, 0.00253914529, -0.0080050081, -0.0080050081, -0.00908441655, -0.0130905434, 0.00143075944, 0.00661771512, -0.0100841373, 0.00899024, -0.0229356177, 0.00388659467, -0.0118590035, -0.00623014243, -0.00051887671, -0.0168503616, -0.0138874222, 0.000945387874, 0.0284558125, 0.0198350344, -0.00824407209, -0.0376126729, 0.0117793158, 0.00202660728, -0.0118227815, 0.00821509492, -0.0198350344, 0.0149958078, -0.0176617298, -0.0281950161, 0.00279088644, -0.0433502, -0.0279342197, 0.00677709095, 0.00542239705, 0.016357746, -0.00751963723, -0.0167489406, 0.000689118926, -0.00412203604, 0.000472241169, -0.0138729336, 0.0139743546, -0.0377285816, -0.0145031922, -0.000849853, -0.00140902644, -0.0275720023, 0.0201682746, -0.0175168421, -0.00962774362, -0.0134165389, -0.0261955764, -0.0201103203, 0.0139453765, 0.00301908352, -0.0146191018, -0.00554917334, -0.0193279311, 0.0267461464, -0.0188787803, -0.00760656921, -0.0203566272, 0.0293251351, 0.00391194969, 0.0600991398, -0.0241092015, -0.0281660389, -0.0277024, -0.0103594232, -0.00527026597, -0.000903280103, 0.0165316109, -0.00423070136, -0.0117213605, 0.0232543685, -0.0186324716, 0.0358450525, 0.0215736795, -0.0222256705, 0.0291802492, 0.0142641282, 0.0279342197, 0.00507466821, -0.00406045932, 0.014510436, 0.0166040547, 0.0137280468, -0.00778767793, 0.0552599132, -0.0107506178, -0.00419810181, -0.00489718188, -0.0177196842, -0.0101783136, -0.0138656888, -0.0121994885, 0.0211535059, -0.00447700918, -0.00341933407, 0.027818311, -0.0105405319, -0.0084251808, -0.0200089, -0.00160643493, -0.00590414647, -0.0113881212, -0.0138149783, -0.000997003866, 0.0137787564, 0.0120763341, -0.014850921, 0.00364753115, 0.00327263586, 0.00203204062, -0.0197915696, 0.00196321937, -0.0316433273, 0.012728326, -0.0107651064, -0.00639676256, -0.0115257632, 0.00379604031, 0.0298177507, -0.0363666452, -0.000515254505, 0.00359682064, 0.00779492222, 0.0100334268, -0.00375981862, 0.0177341737, 0.00270938757, 0.0191540662, 0.00406770362, 0.0417274646, 0.0197191257, 0.0445962287, 0.0335558355, -0.00305530522, -0.0144887036, -0.0236455631, -0.0385399498, 0.020052366, -0.0143003501, -0.0140323089, -0.011873492, 0.00646920595, -0.0144452369, 0.0352655053, 0.0124747735, 0.0218199864, 0.000559626147, 0.00102688686, -0.00837447, -0.00556004, -0.0182267893, -0.0213563479, -0.0498701185, 0.00120980677, 0.00374895195, 0.00854109, 0.00843242556, -0.0129239233, 0.0127210813, 0.00680244621, 0.00300278375, 0.0344831124, 0.0483632907, 0.0316433273, 0.027992174, -0.00339578977, -0.00154757465, -0.00353524368, -0.0079687871, 0.0193858854, 0.000599017309, 0.00166438974, 0.0065742489, 0.0136773363, -0.00022095273, -0.0319620781, 0.00233811443, 0.0262680184, -0.00400250405, 0.00653802743, 0.00466536265, 0.0120763341, -0.00778767793, -0.00174045551, 3.443897e-05, -0.00648369454, -0.0232978351, -0.00423432374, 0.0466246456, 0.00872219913, -0.00943939, 0.027890753, 0.00651629409, 0.00539342, 0.0148146991, 0.015329048, 0.0170242265, -0.0275140479, -0.01235162, 0.0239353385, 0.015329048, 0.01854554, -0.0010685419, -0.00400250405, -0.000315808458, 0.0299046841, -0.000169223524, 0.00379241817, 0.0133223627, 0.0103811556, -0.00160643493, -0.0163432565, 0.000506199081, 0.0363086909, 0.00975089706, -0.0197915696, -0.0129311681, -0.00909890607, -0.0456683934, 0.0128949462, -0.00470520649, 0.0345410705, 0.0150102964, -0.0105477758, 0.0122067323, 0.0113518992, -0.00425605662, -0.0310637802, 0.032947313, 0.0186034944, 0.0236600526, -0.00704513211, 0.0111345686, -0.0250654574, 0.0224864669, -0.00276734238, 0.0127065927, -0.0300205927, 0.0244279541, 0.0162273478, -0.0203421395, -0.024601819, -0.000967120926, -2.16835338e-06, 0.013141254, 0.0094611235, -0.00135559926, -0.0141916852, 0.0130760549, -0.0176037736, 0.000491257582, -0.0113881212, 0.0264129061, 0.0127355698, -0.0247611944, -0.00591139076, 0.0172995124, -0.0364535786, 0.02457284, -0.00180293806, -0.00352075486, 0.00634967443, 0.00341571169, 0.02402227, -0.00608525518, 0.0194293503, 0.00386123941, 0.00786012132, 0.0153725138, -0.00552381808, -0.00448787585, 0.0269344989, 0.0192844644, 0.0236020982, 0.000652444432, -0.0166764967, 0.0104753328, -0.0165750757, -0.0195887275, 0.0162853021, -0.0197336134, -0.0167054757, -0.0123661086, 0.00463638501, 0.029701842, 0.0275864918, -0.00247575715, 0.0249930136, 0.000945387874, -0.0202696957, -0.00696544396, 0.00424519, 0.00295026228, -0.00187085383, 0.0228052195, 0.00462914072, 0.00208094, -0.00542239705, 0.00252646767, -0.0178790595, -0.00354792131, 0.0176617298, 0.00120437343, 0.000950821151, -0.00130488886, -0.00023725252, 0.0254856292, 0.0109389713, 0.00677709095, -0.00230008154, 0.000202162686, 0.001689745, 0.0209651534, -0.0225734, 0.0134889828, 0.000871133292, -0.00484284898, -0.0195887275, 0.00229102629, -0.0228631739, 0.016937295, 0.0108303055, -0.0174009334, -0.0208492447, -0.011772071, -0.0129673891, 0.000923654821, -0.0187049154, 0.0114098536, -0.0338166319, -0.00216968334, 0.017589286, 0.0194003731, -0.0221966933, 0.0225299336, -0.0153145595, 0.0122067323, -0.00657062698, -0.018342698, -0.0080050081, -0.0149668306, -0.03141151, -0.0135904038, 0.0234572105, 0.0125617059, -0.0110983467, -0.00731679518, -0.0251234118, -0.029600421, 0.00429952284, 0.0255435836, -0.0305711646, 0.0311217345, 0.0117648272, -0.0118155377, 0.0436109975, 0.0154884234, -0.00132662186, -0.00896126311, 0.00506742392, 0.0015502912, -0.00318389246, -0.00773696741, -0.0186469611, -0.0138222231, 0.0129963672, 0.00510364585, 0.00345374458, 0.00276553119, -0.00849038, -0.00614321, -0.026586771, -0.0190526452, -0.015908597, 0.00817887299, -0.00202298514, -0.000495332526, -0.00861353427, 0.0159375742, -0.011293944, 0.00590776885, -0.0133948065, -0.013720802, -0.0334399268, 0.0103232013, -0.00832376, 0.0118445149, 0.0161549039, 0.00536082033, 0.00615769904, -0.00542601943, -0.0114170983, -0.00634605205, 0.0340774283, 0.000598111772, 0.0136048924, -0.0130253443, -0.00041722937, 0.0442485, 0.00209361757, -0.0194438398, 0.0269055218, -0.0266302358, 0.00265143276, -0.0055672843, -0.0124602849, -0.0236745421, 0.0179225262, -0.0259202905, -0.000226272794, 0.0187049154, -0.0100841373, 0.0320200324, -0.00481024943, 0.00515435636, 0.000102496255, 0.026383929, 0.00349358865, 0.00960601, 0.00821509492, -0.00100062601, -0.00628809724, 0.0191540662, 0.0126558822, -5.59173386e-05, -0.0148364324, -0.0297597963, -0.00144977588, -0.00280899741, 0.0438717939, -0.0147639886, 0.00335775688, 0.0239353385, 0.00555641763, 0.0354393683, 0.0228197072, 0.0316433273, -0.0346569791, 0.00472693937, -0.00233811443, -0.0191395767, -0.0123443753, 0.0127138374, -0.0190091785, -0.0371780135, 0.0165460985, 0.00505293533, -0.00421621278, 0.0110041704, 0.00373808551, -0.00281261955, 0.00917859375, 0.00119350688, 0.00138548226, -0.0076790126, 0.0133658284, -0.00437558861, -0.0105984863, -0.0204145834, -0.00922930427, -0.00299553946, -0.0220662951, 0.0181688331, 0.00608887756, 0.00920757093, 0.0173574667, 0.0173429772, -0.0274271145, 0.0170821808, -0.00173773884, 0.0141409747, 0.0186904278, -0.0313535556, -0.0131919645, 0.00766452402, 0.00298467278, -0.0230515264, 0.0530866086, -0.0105622644, 0.0245873295, -0.00322373654, 0.014336572, 0.00123878417, 0.00183734868, -0.00346823339, -0.0115402518, 0.0334109515, -0.0252393205, 0.00896850694, -0.0274416041, -0.00408581411, -0.00433212239, -0.0158651303, 0.015705755, 0.00180384354, -0.00249205693, -0.00580997, 0.00511089, -0.0306870732, -0.00792532, 0.00354611012, 0.0134744942, 0.00846864749, -0.0180529244, 0.00659960415, -0.017589286, 0.0210955516, 0.000200238414, 0.00132390531, 0.0212114621, -0.00583894737, -0.000258759188, 0.00679882383, 0.0276299566, -0.000175449139, -0.00403510407, 0.00394817162, -0.00318389246, -0.00139544322, -0.0131919645, 0.0192989521, -0.0128007689, -0.00363304233, -0.00689662294, 0.0143583054, -0.00435023336, 0.0032545249, -0.010605731, -0.0206753798, 0.0292526912, -0.00371997454, -0.0337007232, -0.0070523764, 0.00104047, 0.0118590035, -0.0198350344, -0.00426330091, 0.000664669264, -0.0199799221, -0.000381460384, 0.00236346968, 0.00204290706, 0.0161114372, 0.02100862, 0.00069047726, 0.0570854917, -0.0102000469, 0.0189512242, 0.000424247351, 0.00736388331, 0.00680244621, -0.00788185466, -0.0202986728, -0.00918583758, -0.00640038447, 0.00747617101, -0.00121433439, -0.0252393205, -0.00851211324, 0.0143438159, 0.0171256475, 0.0119459359, -0.0257609151, 0.014409015, 0.029499, 0.0205015149, -0.0160100162, 0.00119350688, 0.00886708684, 0.01909611, 0.0138729336, -0.0180384349, 0.0171836019, 0.0214722585, -0.00819336157, -0.0111418124, 0.0161259267, 0.0279052425, -0.0105260434, -0.00408581411, 0.00154576357, 0.00956978835, 0.00900472887, -0.0295859315, -0.0116996281, 0.0151406946, -0.00398439355, 0.0158216637, -0.000626183639, -0.000307205773, 0.00394092733, -0.00889606401, -0.0115837185, -0.01050431, 0.0132064531, -0.00944663491, 0.0167054757, -0.0172415562, -0.00770799024, -0.0104246223, -0.0134310275, 0.00419810181, -0.0134962276, -0.0151841613, -0.0120401122, 0.00399888214, 0.0074906596, -0.0103232013, 0.0142423958, -0.031788215, -0.0011916958, -0.0161549039, -0.0204870272, 0.00717190793, 0.0276009794, -0.00733490614, 0.00365839759, -0.00498773623, -0.00159104075, 0.0118010491, 0.000930899172, 0.00994649436, -0.00251197885, 0.0111345686, 0.00153851917, 0.00609974423, 0.00235622539, 0.00956978835, 0.000500765804, -0.0237324964, -0.0124530401, 0.00500222482, 0.00896126311, 0.0154594462, 0.015705755, 0.000403419835, -0.00456394162, 0.00906992797, 0.00464362931, 0.0179225262, 0.00160100171, -0.00398439355, -0.0120690903, 0.027238762, -0.00954805501, 0.0132933855, 0.0161259267, -0.0148943868, -0.00785287749, -0.0116199404, -0.0190091785, -0.0205015149, -0.0131122768, -0.00458929688, -0.0218489654, -0.0202407185, -0.0311507117, 0.00412928034, -0.012011135, -0.00548397424, -0.00533184269, 0.0105115538, 0.00421983469, 0.0160100162, -0.00634605205, -0.065836668, -0.00223669363, -0.0204870272, 0.00496600289, -0.0106202196, 0.0337876566, -0.0338745899, -0.00445889821, -0.00733128376, 0.0146408351, 0.0112432335, 0.00527026597, 0.00533184269, -0.00558901718, -0.0113084326, -0.00198314129, 0.0214143042, -0.00348453317, -0.0198495239, 0.013380317, 0.00319294794, 0.0215302128, 0.00930899195, 0.030455254, -0.00801225286, -0.00663582608, 0.0185890067, 0.003336024, -0.0115112746, 0.00233811443, 0.00515073398, -0.00442267675, 0.0146770561, -0.00312231551, -0.00938143581, -0.0107288845, -0.00725884037, -0.0260217115, -0.0115982071, 0.00456756353, -0.0108230617, -0.0150537631, -0.013858445, -0.001668012, 0.0116996281, -0.0117430938, 0.0107361292, 0.0264418833, 0.0320200324, -0.00208818447, -0.00978711899, -0.00996822771, -0.00914237183, -0.00757034728, 0.0043900772, 0.0142931053, 0.001975897, 0.0126486383, -0.00530648744, 0.00518333353, 0.00920757093, -0.00996822771, -0.0105115538, -0.00728781754, 0.00252103433, 0.0110548809, -0.00417274656, -0.0139888432, -0.00218417193, 0.0216026567, 0.0118807368, 0.0105550205, 0.00190707552, 0.00339035667, -0.0141699519, -0.00179478817, -0.00807745196, -0.0194148626, -0.0176617298, -0.00696906634, -0.0162997916, 0.00102145353, -0.0296583753, -0.0108303055, -0.0155753559, -0.0105477758, -0.00134292163, -0.0119024701, 0.00567957154, -0.0194003731, -0.00586430263, -0.0028760077, 0.00140993192, -0.0160100162, -0.0111635458, 0.0301944576, -0.00208637328, -0.0299336612, -0.00628085295, -0.00985956285, 0.0122936647, 0.00462914072, -0.0012578005, -0.00304625, 0.00802674145, 0.0111055914, 0.00328169134, -0.0124385515, 0.000240195528, 0.0015792686, 0.0100406716, -0.000560984481, 0.00812091865, -0.0129963672, -0.0061287214, 0.0064438507, -0.00970743131, -0.0139815984, -0.0103449337, -0.00496600289, -0.0131122768, -0.0154449577, -0.00751963723, -0.0218054987, -0.00737837236, -0.0248191487, 0.00586430263, 0.0113736317, -0.0235586315, -1.89881248e-05, 0.0029104182, 0.00345193362, -0.0050710463, -0.0272822287, 0.0118445149, -0.0048863152, 0.0143800378, -0.00815714, -0.00165714545, -0.00536806462, 0.0168068949, 0.0166185424, -0.00359319849, -0.0144379931, 0.0208347552, 0.0151986498, 0.0227037985, 0.0129601452, -0.00519057782, -0.00754137, -0.00560350576, -0.00566146104, 0.0303393453, 0.0299046841, 0.00528475456, 0.00033527764, 0.0170387141, -0.000524762727, 0.00771523453, 0.0148654096, -0.00946836732, 0.0225589108, 0.0108230617, -0.0299336612, -0.00887433067, -0.00404959265, 0.000181448369, 0.0149088753, 0.0027872643, 0.0239353385, 0.0133078741, -0.0286296774, 0.00752688153, -0.00359319849, 0.00986680668, -0.00626998628, 0.0101420926, 0.0367723294, 0.0141554633, 0.0179515034, 0.00218236097, -0.0125037506, 0.00165623985, 0.00981609616, 0.015807176, 9.92702553e-05, 0.0308029838, 0.0211390182, -0.0182123, 0.0354683474, 0.0127935251, 0.00948285591, -0.00212621712, -0.0115764737, -0.0126631269, 0.0151986498, 0.00229283725, 0.0173429772, -0.020124808, 0.0152710937, 0.0118227815, -0.0126558822, 0.00741097191, 0.00652716076, -0.0104101337, -0.0174443983, -0.00368918618, 0.00797603093, -0.00655976031, -0.0198929887, -0.0237469841, 0.0161259267, -0.00486096, -0.0014850921, -0.011909714, -0.00102507579, -0.00606714468, 0.0162273478, 0.0164012127, 0.0228776634, 0.000575926, -0.000996098388, -0.0076862569, -0.0149813192, -0.0140178204, -0.00942490157, 0.00411479175, -0.0047160727, -0.00669740327, -0.0231819246, -0.0125399726, -0.00443716533, -0.0200813431, 0.000237931672, -0.00270576542, -0.00488269283, 0.020124808, 0.0252827872, -0.0147929657, -0.0029104182, -0.0126993489, -0.00315853721, -0.012011135, -0.013003611, 0.00464725168, 0.034251295, -0.00490442617, 0.0166040547, -0.00375981862, 0.0110548809, 0.0211535059, 0.00772247883, -0.032918334, -0.000786012155, -0.0148943868, -0.00994649436, -0.00857731234, 0.0150392745, -0.00517246686, -0.00817162823, 0.0177051947, -0.0264129061, -0.0034736665, 0.00441905437, -0.0142931053, 0.00792532, 0.0150102964, 0.0129094347, 0.0184586085, 0.0137932459, -0.0134962276, 0.0128442356, 0.00473056175, -0.0362507366, 0.00359319849, -0.00383588416, 0.00573028205, 0.0229935721, -0.00781665556, 0.00581721449, -0.00195778604, -0.00916410517, 0.0214143042, 0.0164301898, -0.0183861647, -0.00427416759, 0.0112504782, -0.0130398329, -0.0177051947, 0.024775682, 0.0219503846, -0.0120038902, 0.0106347082, -0.0228486843, 0.00645109499, 0.00597296795, 0.00432125572, 0.00540790847, 0.00453858636, -0.000293622637, 0.0198350344, -0.0157637093, 2.72653633e-05, 0.00392281637, 0.00490442617, -0.0177341737, 0.0326575376, 0.0252972767, 0.00617218763, 0.0192699749, -0.0063786516, -0.0227762423, -0.00691111153, 0.0147350114, -0.0150102964, 0.00364028662, 0.00748341531, 0.00556366192, -0.00102054805, -0.0287310984, 0.0130760549, 0.00468347315, -0.00924379285, 0.033092197, 0.0103956442, 0.0153145595, 0.00777318934, 0.00697268825, -0.00253371196, -0.00366383092, -0.0252393205, 0.00737112761, -0.0185745172, 0.00506742392, 0.00491529237, 0.00131937757, -0.034628, -0.00558177289, -0.0409450755, 0.0112867, -0.0093017472, 0.0087801544, 0.020124808, -0.0143583054, -0.00480300514, 0.0104391109, 0.0316723064, 0.0156333111, -0.0153725138, 0.0103739118, -0.00717190793, 0.00687851198, -0.00474867271, 0.0169952493, 0.00569043821, -0.00220228289, 0.00528837647, -0.0283978581, 0.00337767904, 0.0122139771, -0.0125109954, -0.00738561666, 0.0248191487, 0.00956254452, -0.000996098388, -0.00339578977, 0.0109896818, -0.00620478718, -0.00597296795, 0.0456973687, -0.00702702114, -0.019125089, -0.00561799482, 0.0102145355, -0.0252393205, -0.0166764967, 0.00445165392, -0.0501019359, -0.00531735411, -1.64554313e-05, -0.0217910092, 0.00552019617, 0.00338492333, 0.0242975559, -0.0270793866, 0.00792532, -0.0105332872, 0.000161073636, -0.00941041298, -0.00777318934, 0.0125472173, 0.0255870502, -0.00069274113, -0.00879464298, -0.00331429089, 0.02100862, -0.0045204754, -0.0050819125, -0.0290353615, 0.0322808325, 0.0128007689, -0.0048283604, 0.0113591431, -0.0126124164, 0.000705418759, -0.014474215, -0.000299282285, -0.0219938513, 0.0216316339, -0.0229645949, 0.00602367846, 0.00263694394, 0.00745443767, 0.0253117643, -0.0109607037, -0.0253986977, -0.0121415332, 0.0172995124, 0.0165171213, -0.0056324834, 0.0138874222, 0.00573752634, 0.0118517596, 0.00814989582, -0.00885984208, 0.00707410928, 0.0206464026, -0.000131983033, 0.0167924073, -0.00193061971, 0.0212114621, -0.000875208236, 0.0227182861, 0.0145249255, 0.0147277666, -0.0195307713, 0.00686402339, 0.00281080836, 0.0110548809, 0.0113084326, 0.00302451686, 0.00157564646, -0.0109027494, 0.0181543455, -0.0259202905, 0.000747073791, 0.000396175485, -0.00658873795, 0.00389383896, -0.0158651303, 0.00616494333, -0.00676260237, -0.00203204062, 0.0320200324, -0.00431038905, -0.0318461694, -0.0121198, -0.0424229242, -0.00615045475, 0.00988129526, -0.0132209416, -0.0259782448, -0.0179225262, -0.0143872825, 0.00184459309, 0.0128514795, 0.0219069198, -0.0224285126, 0.00301002804, 0.0022004717, 0.0101565812, -0.0082947826, 0.00817887299, -0.00972192, 0.000440320757, 0.00910615, 0.000902374566, 0.0166764967, 0.00556366192, -0.0323098078, -0.00104861986, 0.00601281179, -0.000880188716, 0.0259782448, -0.00242685783, -0.0147857219, 0.0168938283, 0.00260977773, 0.0100986259, -0.00970743131, -0.00439369911, -0.0251234118, -0.0213418603, 0.0112070115, -0.0105912425, 0.0121560218, 0.00873668771, -0.0149668306, -0.0020121187, 0.00438645482, 0.00447700918, -0.0100334268, 0.0169662721, 0.00473418366, -0.00519782212, 0.0233268123, -0.0148364324, -0.00314585981, 0.0102580022, 0.00384675083, -0.00688937819, -0.00972916465, -0.0162128583, 0.0151551841, 0.00738923857, 0.0134092951, -0.0256450046, 0.00682780147, -0.00200849655, 0.0277313776, 0.00396266, -0.0336427689, -0.000623014232, 0.00776594505, 0.0120546008, 0.0094611235, 0.00384675083, -0.00597296795, 0.0160389952, 0.0092365481, 0.00137189904, -0.0048283604, 0.0193279311, 0.00405321456, 0.00271119853, 0.0103666671, -0.0127500584, -0.00696182204, 0.0119386911, -0.0153580252, 0.000512085098, 0.00593312411, 0.0116634062, 0.0140105765, -0.0242106225, 0.00379241817, 0.00629171962, -0.000874302699, 0.000189145489, 0.00696544396, -0.027818311, -0.0284123477, 0.0132354302, -0.00700166589, 0.00268946565, -0.0031005824, -0.00703788782, 0.0166475195, -0.00914961658, -0.00964947604, 0.00707048737, 0.0223850459, -0.00460016308, 0.00696544396, -1.71062911e-05, -0.00972192, 0.0328024253, -0.035555277, 0.0106129749, -0.0006257309, 0.00158651301, 0.0121994885, -0.0242106225, -0.00837447, 0.0058751693, -0.00812816247, 0.01854554, 0.00225842651, -0.00911339466, 0.00615045475, -0.00242323568, -0.0149668306, 0.0108592827, 0.00886708684, -0.02402227, 0.00549846282, -0.0193279311, 0.0239063613, 0.0033722457, -0.0074254605, -0.00721899653, 0.00680244621, 0.00859180093, 0.0204435606, -0.000288415758, -0.0159955285, -0.0219358969, -0.0073131728, 0.0162418373, 0.00881637633, 0.0080991853, 0.00669740327, -0.00971467514, 0.028571723, -0.00791083183, -0.0249785241, -0.000473146705, -0.0292671807, 0.00894677453, -0.0113229221, -0.0121994885, -0.000502124138, -0.00422345707, 0.0218489654, 0.0106926626, -0.0149088753, -0.00696182204, 0.0164157, -0.0199944098, -0.0119531807, 0.0217765216, -0.00105495867, 0.00384675083, 0.00904819556, 0.0223270915, -0.0333240181, 0.0145683913, -0.0309768468, -0.0354393683, 0.00339397881, 0.0153435366, 0.0135396933, -0.0207333341, 0.00116181292, -0.0219938513, 0.00754861441, 0.00482473802, 0.0105115538, 0.00283073052, 0.0011482297, -0.00688937819, 0.0146480789, -0.00113555207, -0.00652716076, -0.000381234015, 0.00922930427, 0.00980160758, -0.027238762, -0.0138149783, 0.00678795762, 0.00949734543, 0.0043248781, 0.0173864439, 0.0148654096, -0.00851211324, -0.00663944846, 0.00629896391, 0.0338166319, -0.0140830195, 0.0079687871, 0.00318389246, -0.00651629409, 0.00928725861, -0.00431401143, 0.00465811789, -0.00450236443, 0.00541877514, 0.00664307037, -0.0314404853, -0.000171826963, -0.00825131685, -0.0110693695, -0.0187049154, 0.0128804576, -0.0123371305, -0.0259927344, 0.0131992083, -0.0137715125, -0.0113518992, -0.0104391109, -0.0203856062, -0.00122701202, -0.0113591431, 0.00859904569, -0.00610698853, 0.0206174254, 0.00708497595, 0.0229211282, -0.0290643387, 0.0248626154, -0.0218199864, -0.000172619315, -0.000798237, -0.0276154689, 0.0031005824, -0.0120038902, -0.00822233874, 0.00464362931, -0.000344333093, 0.00578823686, -0.000615317142, -0.00357870967, 0.0178355929, -0.0127573032, -0.0155753559, 0.0127790365, 0.00266048824, 0.00883086491, 0.0299336612, -0.0244134646, 0.0149088753, 0.0177486613, 0.0153725138, 0.0146553237, -0.0135759152, 0.00198676344, -0.00848313607, -0.00524491072, 0.00537168654, 0.00544050802, 0.010265246, 0.0106926626, 0.00977263, -0.0272967163, 0.00680244621, -0.0189512242, 0.00339397881, 0.00375981862, -0.00565059436, 0.00918583758, 0.0116851395, 0.0127573032, -0.00347004435, 0.00949734543, -0.000836722611, -0.0157637093, -0.0234861877, 0.0343382284, -0.0420462154, -0.00592950173, 0.0101855583, 0.00258261128, -0.0154739348, -0.00100424828, 0.0137063134, -0.00703426544, -0.0129963672, -0.0103087127, -0.000950821151, 0.0231529474, 0.00334145711, -0.00511089, 0.0089105526, 0.029223714, -0.0138294669, 0.0157347322, -0.0138004897, 0.00539704179, -0.00806296337, -0.0123226419, 0.00639314, 0.00229464844, 0.00154848013, 0.0114895413, -0.00766452402, -0.00992476195, 0.0139815984, -0.00524491072, 0.00489718188, -0.00159737957, 0.00419085752, -0.00639676256, -0.00383588416, 0.00153761369, 0.00671551377, -0.00219684956, -0.00206101802, -0.0102000469, 0.00431763381, -0.0204870272, -0.0003748952, 0.0138222231, 0.00759932492, -0.0192554872, -0.00534270937, 0.00199944107, -0.0226168651, 0.00385399512, -0.0129746338, 0.00980160758, 9.42331681e-05, -0.0164736565, -0.031614352, 0.00267135468, 0.00394092733, 0.00675535807, 0.01235162, -0.0185890067, -0.0288904738, -5.44175309e-05, -0.0147495, 0.0103376899, 0.00516160065, -0.00464000739, -0.0132861407, -0.0117068719, -0.00650542788, -0.00818611775, -0.0029412068, 0.018820826, 0.0129384119, 0.00433936669, 0.00615407666, -0.00385399512, -0.0165171213, 0.00497324718, 0.0126703708, -0.000738471106, 0.0191106, -0.0216316339, 0.00812091865, 0.0284847915, -0.00972192, -0.0323677622, 0.00494064763, -0.00804123, 0.0305132084, 0.00636778492, -0.0175313316, -0.0086859772, 0.00177214947, -0.0209651534, 0.0101928031, 0.0106202196, -0.00461465213, 0.0118879806, -0.00902646221, -0.0142134177, 0.0183282103, -0.00977263, -0.015908597, 0.00916410517, -0.0113301659, -0.00611423282, 0.0238339175, -0.0021062952, -0.0149378534, 0.0110331476, 0.0206174254, -0.00290860725, -0.00598383462, -0.0157926865, 0.00721175224, -0.00503120199, -0.00100153161, 0.0476968102, -0.00164809, -0.0162853021, -0.00620478718, -0.00782389939, 0.0226313546, 0.0119821578, 0.017589286, 0.00555279572, 0.0146408351, 0.0218489654, -0.00958427694, 0.0176037736, -0.00603092276, 0.00345193362, -0.000431265304, 0.0104608433, -0.0043285, 0.00718639698, 0.00404234836, 0.011257722, 0.00612509949, 0.0194003731, -0.00876566581, -0.00135197712, 0.0231964141, 0.00921481568, 0.0103521785, 0.00153761369, 0.0161549039, 0.0135686705, -0.0086859772, 0.00806296337, 0.0138729336, -0.00189077575, 0.00985956285, 0.00595847936, 0.00760656921, -0.00298467278, 0.00946836732, 0.0159665514, 0.00982334092, -0.0109534599, 0.0183137208, -0.00074254605, 0.0119531807, -0.000882452587, 0.00983058475, -0.00193061971, -0.015807176, -0.0266737025, -0.0390325673, -0.0208637323, 0.0104753328, -0.00788185466, 0.0192409977, 0.00298467278, -0.00357327634, -0.0252248328, 0.0163722355, 0.0036203647, 0.000188919104, -0.000526121061, 0.00452771969, -0.00820785, 0.0189802013, 0.0102797346, 0.0095553, 0.0437269062, -0.0206029359, 0.016459167, 0.00965672079, -0.015024785, 0.00159013516, 0.0264418833, -0.00510364585, -0.0205884483, -0.00659960415, 0.0182267893, 0.00542239705, 0.0093959244, -0.0319620781, 0.0178790595, -0.0167634301, -0.0152131384, -0.0202696957, -0.014097508, 0.00296294, 0.0102580022, 0.00491167046, -0.0349757299, -0.00069274113, -0.00772972312, 0.02402227, -0.00922930427, 0.0134962276, 0.0193569083, 0.0189657118, 0.0065018055, 0.0051290011, 0.0018581762, 8.68190255e-05, 0.0132933855, -0.00833100453, -0.00658149365, -0.0163432565, -0.00428865617, 0.0122791762, -0.0162708145, 0.00723348511, -0.0022004717, 0.0149088753, 0.00700166589, -0.0207912885, -0.0153580252, -0.0134020504, -0.0103884, -0.0110548809, -0.014474215, 0.0124747735, -0.0100116944, 0.00244677975, 0.00191794208, -0.00874393247, -0.00456756353, -0.00417999085, -0.0133223627, -0.000954443356, -0.0121560218, -0.00221677171, 0.0109896818, 0.013003611, 0.00186723168, -0.00578099256, -0.00412565842, -0.0042125904, -0.00805571862, 0.0167634301, -0.00130488886, 0.00969294272, 0.0102072917, -0.0026985209, 0.00234717, -0.0179080367, -0.00036267034, -0.00602730038, 0.00176581077, -0.010301468, 0.0213418603, -0.0170821808, 0.00765727973, -0.0192989521, 0.0182557665, 0.00827304926, 0.0128514795, 0.00646558404, -0.0074906596, 0.00478127226, 0.000257627253, -0.0207333341, 0.0041473913, 0.0322228745, -0.0145176807, 0.00928001478, -0.00346823339, 0.00378879602, -0.00376344076, 0.0239353385, 0.00875842106, 0.0145031922, -0.0135324486, -0.00194873055, 0.0219069198, 0.00977987517, 0.0165171213, -0.00557090621, 0.019197531, 0.0181978121, -0.0149668306, 0.0143003501, -0.00212802831, 0.00232362584, 0.00512537872, -0.000467713457, -0.000674177485, -0.00264056609, -0.00542964134, -0.0145031922, 0.0152131384, -0.0080339862, -0.00920757093, -0.031614352, -0.0200089, -0.00214432809, 0.00889606401, -0.0118952254, 0.00825131685, 0.00883086491, -0.013105032, -0.0207768, 0.00345555576, -0.0037815515, -0.0122936647, -0.0156622883, -0.0103739118, 0.00112106337, -0.003627609, 0.00990302861, 0.00380328461, -0.00609974423, -0.00361312041, -0.00726246275, -0.00367650855, 0.00874393247, 0.00498049194, 0.0023489811, 0.00413652463, -0.00206282921, -0.0050239577, -0.0185020734, -0.0109751923, 0.00230189273, -0.0170387141, -0.0014706034, -0.0285862107, -0.0148943868, 0.0193858854, 0.00724435179, 0.00669740327, -0.0112867, -0.0236600526, 0.0143438159, -0.0199944098, 0.0278617758, 0.00936694629, -0.00841069221, 0.0093017472, 0.0246307962, -0.0222111829, 0.000148622406, 0.00580634782, -0.03819222, -0.0041473913, -0.0305421874, 0.000449828949, -0.00572666, -0.0138512, -0.00975814182, -0.00665031467, 0.0261955764, -0.00734215043, -0.0185020734, -0.0110331476, 0.00888157543, -0.000848041906, -0.00127138372, -0.0322518535, 0.00817887299, -0.0230949931, -0.00235079206, -0.0144017711, 0.0134889828, 0.0103232013, 0.0040821922, -0.0182702541, -0.00563972769, 0.00332153519, -0.00280175288, -0.00262426632, 0.0144887036, 0.00705962069, 0.00454583066, 0.017690707, 0.0120256236, 0.0111635458, -0.00591139076, -0.00299010612, -0.0141844405, 0.00130941661, 0.0193134416, -0.0076138135, -0.00513262302, -0.0170676932, 0.0206753798, 0.00456031924, -0.00383588416, -0.00677709095, -0.00828029402, -0.00216968334, 0.0140395537, -0.0108737722, -0.0354103893, 0.00169155607, -0.000158809766, -0.0112070115, -0.0413507596, -0.00311688241, 0.00296294, 0.0102072917, -0.00093904906, -0.00878739823, -0.0181253683, -0.0151696727, 0.000706777035, 0.00562523911, 3.89383895e-05, 0.0066322037, 0.00413652463, 0.0037091081, -0.0023852028, 0.0125327287, 0.0449729338, 0.0237759613, 0.00645471737, -0.0220952723, -0.0145611465, -0.00262245536, 0.02224016, 0.0114243422, -0.0275430251, 0.0137497792, -0.00935970247, 0.0331791304, -0.00255725603, -0.00773696741, -0.0151551841, -0.00212259497, -0.022138739, 0.0142568843, -0.0110983467, -0.00313499314, 0.00778043363, -0.00104590331, 0.0169807598, -0.00540790847, 0.0129601452, 0.0154739348, 0.000691835594, -0.0165171213, -0.0130470777, -0.0340194739, -0.00397714926, 0.00110295252, -0.0105550205, 0.0142713729, 0.0189367346, -0.00143257051, -0.00513986731, 0.00916410517, 0.00332334638, 0.00370186358, 0.00259347796, -0.00801225286, -0.0111273238, 0.00130126672, -0.00076971238, -0.0282384828, 0.0147712333, 0.0158651303, 0.013996087, 0.001975897, -0.00933796912, 0.032744471, -0.000968932058, 0.00479938276, 0.0108882608, 0.0202117413, -0.0212983936, -0.00450960873, -0.0202696957, 0.00970743131, 0.00505655725, 0.000721265737, -0.00129221124, -0.0128732128, -0.00393730495, 0.00211535068, 0.00678433524, 0.014952342, -0.0132209416, -0.0169517826, -0.0208492447, -0.00522317737, -0.0233123228, -0.0051290011, 0.00577012589, -0.000790087099, -0.0113881212, -0.00298467278, 0.00596572366, 0.0152131384, 0.0112287449, -0.0232109018, 0.00689300057, -0.0132644074, 0.038018357, -0.0146408351, -0.00626274198, 0.00966396555, 1.63563873e-05, -0.0121053113, -0.00443354342, 0.00486458233, 0.0242830664, 0.0128514795, 0.00888881925, 0.000919127138, -0.000162205557, 0.00478851655, 0.000955348893, -0.00222763815, 0.00706324307, 0.0238773823, 0.0147277666, -0.032918334, 0.00421983469, 0.00788185466, -0.0132281864, -0.0178066157, 0.0178500824, -0.00183644309, -0.0100406716, 0.0212114621, -0.0212404393, -0.0074906596, -0.0181833226, 0.020052366, 0.01854554, 0.0351495929, 0.0167489406, -0.0137497792, 0.0190526452, 0.00848313607, -0.011909714, -0.0153435366, 0.0257464256, -0.000813631224, -0.000424473721, 0.0308899153, 0.0141989291, 0.0132209416, 0.0104318662, 0.017690707, 0.00626636436, 0.0107433731, -0.0178066157, 0.00333964615, -0.0058280807, 0.037815515, 0.0016236403, 0.00540790847, 0.00364753115, 0.0485661328, -0.00569406059, 0.0145031922, -0.0108085731, -0.00791807659, -0.0208492447, 0.0209651534, 0.0296149086, -0.025355231, -0.022037318, 0.00771523453, -0.0138077345, 0.016560588, 0.003627609, 0.00849038, 0.0058751693, -0.00627360865, -0.00804123, -0.0050058472, 0.0141192414, 0.00989578478, -0.000415418297, -0.00213165046, 0.00784563273, 0.0259347782, -0.0126703708, -0.00357327634, -0.00634605205, 0.00222220481, -0.0079687871, 0.027340183, -0.026383929, -0.00264599943, -0.0249930136, -0.00394454924, 0.0109679485, 0.0165026337, 0.0141699519, -7.89521146e-05, -0.0095553, -0.000508010155, -0.00347004435, 0.0212259497, 0.000268946547, -0.0172270685, -0.00449512, 0.00558539527, -0.00681693479, 0.0262390412, -0.0125399726, 0.00968569797, -0.00953356642, 0.0030643607, -0.00956254452, 0.000660141523, -0.0104970653, -0.0056324834, -0.00605627801, 0.00320743676, -0.00179659924, -0.00938868, -0.00712482, -0.0016390346]
17 Jan, 2020
p5.js | pause() Function 17 Jan, 2020 The pause() function is an inbuilt function in p5.js library. This function is used to pause the played audio on the web. The pause function should call after the play() function. If you call before that it has nothing to pause. Syntax: pause( startTime ) Note: All the sound-related functions only work when the sound library is included in the head section of the index.html file. Parameter: This function accepts a single parameter as mentioned above and described below: startTime: This parameter holds an integer number as seconds that defines the scheduled event and it is an optional parameter. Below given example illustrate the p5.js pause() function in JavaScript: Example: var sound; function preload() { // Initialize sound sound = loadSound("song.mp3"); } function setup() { sound.loop(); } function keyTyped() { if (key == 'g') { sound.pause(); } } function keyReleased() { if (key == 'g') { sound.play(); } } Online editor: https://editor.p5js.org/ Environment Setup: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/ Supported Browsers: The browsers supported by p5.js pause() function are listed below: Google Chrome Internet Explorer Firefox Safari Opera Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function
https://www.geeksforgeeks.org/p5-js-pause-function?ref=asr6
CSS
p5.js | pause() Function
CSS pause-before Property, CSS, How to Play and Pause CSS Animations using CSS Custom Properties ?, CSS Tutorial, p5.js | pause() Function
GeeksforGeeks
[-0.0269531459, 0.00282482035, -0.0143421637, 0.0358487517, 0.00929510687, -0.0167258661, -0.0243563764, 0.039311111, -0.030308973, 0.0276456177, -0.0170055181, 0.0577415228, -7.83400756e-05, -0.034703508, -0.00199751579, -0.0211736672, -0.0468484052, 0.0152477035, -0.00874246098, 0.00410489505, -0.00738415029, 0.00176447234, -0.0313476808, -0.030628575, 0.0030944848, 0.00583274616, -0.0208274312, 0.0230113827, -0.0295632333, -0.00496382685, 0.00878241099, 0.0156072564, -0.0102006476, -0.0192161016, -0.00631547906, 0.00378529239, 0.00053142244, -0.00546986423, -0.0240234565, -0.0583274625, -0.0183238778, 0.026127506, -0.0116588343, -0.0446111858, 0.0052867583, 0.0355557799, -0.0350763761, -0.00333418674, 0.0104669826, -0.0138094928, 0.0457297936, 0.0375000313, 0.0333185643, 0.0338512361, 0.0286310595, -0.0244229604, 0.0270863138, -0.0148482006, -0.02607424, -0.0557173751, 0.00378196314, -0.0239435565, -0.0237171706, -0.00198419904, -0.00506037334, 0.00283813709, -0.0469016694, 0.022105841, -0.0274591837, 0.0143821137, -0.0153009715, -0.026220724, -2.75178609e-05, 0.00480735488, 0.0121515542, -0.042853374, 0.0138094928, 0.0518288761, -0.0264471099, 0.035209544, -0.0235174187, -0.0399236828, -0.0298562031, 0.0189630836, -0.00476407539, -0.0393377431, -0.00768377725, -0.0374201275, 0.0220126249, 0.0405096188, 0.0177912079, 0.0426669382, -0.00423473353, 0.0155273564, -0.0225586109, -0.0034690192, -0.0241433084, 0.00383855961, -0.00920854788, 0.0285245255, 0.0344371721, -0.0266069099, -0.0116854673, -0.0147017166, -0.0345703401, 0.0119984113, 0.0355557799, -0.0208274312, 0.0281516556, -0.00652188901, 0.00696467189, 0.0109130945, 0.0106334426, -0.00725764083, 0.0056163487, 0.0428001061, 0.00709783938, 0.00302457181, -0.00274991337, 0.0386452712, 0.00496382685, 0.0009155281, 0.00267833588, 0.0625888258, -0.00725764083, 0.0703125596, -0.034783408, -0.0178444739, -0.0020075033, -0.0205211453, -0.0255815182, 0.0082830321, 0.0110795544, -0.0224254448, 0.0530273877, 0.0132768219, -0.017524872, 0.0039251186, 0.00165460887, -0.0377397314, -0.0331587605, 0.0348100401, -0.00219393824, -0.00111278275, 0.0197754055, -0.0318803526, -0.00731090782, 0.030122539, -0.021999307, 0.0718040317, -0.0312411468, -0.0375532955, 0.00890892092, -0.030442141, -0.0317471847, -0.0253817681, 0.0135631319, -0.0405895226, -0.00183438533, 0.0286843274, -0.021932723, 0.0117187593, 0.0181507599, 0.0126975421, -0.00941495784, -0.00875577796, -0.000858931802, -0.0198686235, -0.00230213697, 0.0157137904, -0.0097145848, 0.0283647235, -0.0514293723, 0.00726429932, -0.0154341385, -0.0127508091, 0.0429599062, 0.0381392352, -0.00689142942, 0.00442116847, -0.0111394795, 0.0335582644, -0.0138094928, -0.0156871565, 0.0147017166, -0.0177912079, -0.0106134675, -0.035289444, -0.0119185112, -0.00914196391, -0.0317471847, -0.00190429843, 0.0454368256, -0.000119954988, -0.00200084504, 0.04343931, -0.0355557799, 0.0247425623, -0.0152077535, -0.0113458894, 0.00503706886, -0.0327592604, 0.0275923517, 0.0145951817, -0.0601918101, 0.0154607724, -0.00390181411, -0.0227450468, 0.0579545908, -0.0492986888, 0.030548675, -0.00765048573, -0.000287767121, -0.0251553822, 0.00280983886, -0.0194158535, -0.021613121, 0.0137429088, 0.0051868828, -0.0230113827, 7.45427096e-05, -0.00413485756, -0.00920854788, -0.00275823637, -0.0667969286, -0.00894887093, -0.00953480881, 0.026007656, 0.0144620147, 0.0125510572, -0.000278611842, 0.0409091227, 0.0147949336, 0.0021722985, 0.0211470332, -0.00116438523, 0.035209544, 0.017351754, -0.00211903127, 0.00175781385, 0.00717774, -0.0273792837, -0.0114923744, 0.00886231195, 0.0109463865, -0.0384588391, -0.0181640778, -0.0211470332, 0.00659846049, -0.0496449247, -0.0182572939, -0.00725098234, -0.0232777167, -0.0268998798, -0.0241832584, 0.026540326, 0.0225319788, 0.0119784363, 0.0167791322, -0.00421475852, 0.0183904618, 0.0170188341, -0.0324130245, 0.0160467103, -0.00493719336, -0.0160866603, 0.00930842385, -0.017458288, 0.0168590341, -0.00934171584, -0.0225586109, -0.00103704364, 0.0411221907, 0.00570290769, -0.0368075594, 0.00321433577, -0.083629325, -0.0369939916, 0.0292969, -0.0171253681, 0.00242531719, 0.0327858925, -0.0199352074, 0.0148348836, -0.0048040254, -0.0437589139, 0.0487660207, -0.0157404244, -0.00646862201, 0.0223322269, -0.0171253681, -0.0317471847, 0.0249556303, 0.0157803744, -0.000368083915, 0.0642401055, -0.0235174187, -0.00348233595, 0.00361883268, -0.00555975223, -0.0162331443, 0.0097145848, -0.017631406, -0.00421142904, 0.00803001318, -0.0304954071, 0.0307084769, -0.00243031094, 0.00709783938, -0.0321200527, 0.0590199344, -0.0074773673, -0.0315074809, 0.00744407531, 0.00901545491, -0.00882902, -0.0195623375, -0.000497298199, -8.35939572e-05, -0.01332343, -0.00590598816, -0.0142089957, 0.000489391387, 0.0268732458, 0.0407493226, -0.0498313606, -0.0257146861, -0.0122314552, 0.0409623906, 0.000700378965, -0.00928844884, -0.0451172218, -0.0267933458, 0.0101140887, 0.0469283052, 0.0125710331, 0.00834961608, -0.0111727715, 0.021360103, -0.00719105685, 0.000739080831, -0.00801669713, -0.00897550397, -0.0185635798, 0.0408025905, -0.00846946705, -0.0142622627, -0.00188598782, -0.013017145, 0.0061357026, 0.000893888297, -0.00743075879, 0.0146884, -0.0095880758, -0.00178777659, -0.0118985353, -0.02615414, -0.0237571206, -0.0192560516, 0.0120916292, 0.0425604023, 0.0149147846, 0.02607424, -0.0259943381, 0.0159135424, -0.0530273877, -0.0281782895, -0.0421875343, -0.006575156, -0.0166459642, -0.0152610205, -0.000366003165, -0.000409906876, 0.0195623375, -0.0357954837, 0.00720437383, -0.0263805259, -0.00622226158, -0.0277787857, 0.00704457238, 0.00114773924, 0.046369, 0.0441850498, 0.0227184128, 0.0226651467, 0.0215199031, -0.00765714375, -0.00107782625, -0.00923518091, 0.0158203244, -0.0270330478, 0.00693803839, -0.00506370235, -0.0411488265, 0.0102872066, -0.0180841759, -0.0240101404, -0.0211603511, 0.0124844741, -0.0296165012, 0.000647944165, -0.0111328214, 0.0135298399, -0.00421808753, 0.00632213755, 0.00683150394, -0.0157936923, -0.0396573469, 0.0187233817, -0.0159002263, 0.0237970706, -0.0109996535, -0.0183771458, 0.0107066846, 0.0137429088, 0.0448508896, 0.00384521787, 0.0359819196, -0.0126509331, 0.0346502401, 0.0137961758, 0.013070412, -0.0125710331, -0.00148814928, -0.0101207467, -0.0521751121, -0.0123246722, -0.0322798565, 0.0301491711, -0.00771706924, -0.066317521, -0.0195090715, -0.0171520021, 0.0180042759, -0.00538996328, 0.0340376683, 0.0356090479, 0.0608310141, -0.00277821161, -0.0272594318, 0.0048839259, 0.00602916861, 0.0308150109, 0.0201882254, -0.000503956573, 0.0202148594, -0.0250754822, 0.00454101944, 0.0188565496, 0.0384322032, 0.00213234802, 0.0187633317, -0.0135897659, 0.0135564739, 0.0113525484, -0.00247026118, -0.0310280789, -0.0196156055, -0.0206276793, 0.00359885767, 0.00437788898, 0.00453769, 0.0209339652, 0.0102206226, 0.00320268376, -0.0175515059, -0.013210238, -0.00803667214, 0.00654186402, -0.0151411695, 0.0101939887, -0.0119384862, 0.0206409972, 0.0429599062, -0.00783026218, -0.00588934263, 0.0153675545, -0.0117187593, -0.00878241099, -0.038805075, -0.0100075537, -0.0323863886, 0.0177246239, 0.0137295919, -0.00530340429, 0.0281516556, 0.0392844789, 0.00931508187, 0.00184770208, 0.0154740894, 0.0266601779, 0.0234907866, -0.0407226905, -0.00689142942, 0.0192161016, 0.0120583372, -1.28356e-05, -0.0267533958, 0.00596924312, -0.0193093196, 0.035049744, -0.0587536, -0.0262739919, 0.0164462142, -0.0198952574, -0.0213334691, 0.00786355417, -0.00863592699, -0.0419212, 0.00564964069, -0.0327326246, 0.0247825123, -0.0043545845, 0.0157004744, -0.0127574671, -0.00103537901, -0.006465293, 0.00333085749, 0.00733754132, 0.0234242026, 0.00435125502, 0.0224254448, -0.0150080016, 0.00316439802, -0.0370206274, 0.0310280789, 0.00679821195, 0.00626887055, -0.0582209267, -0.0613636859, -0.037793, -0.0134632569, 0.0212136172, 0.0234375186, -0.0163396783, -0.00785689522, -0.0253551342, 0.00936834887, 0.0332386643, 0.0159401763, -0.0347567759, -0.00773038622, -0.00534335477, -0.00747070927, -0.00709783938, -0.0143687967, 0.0413885266, -0.0342507362, -0.0417880304, 3.63870386e-05, 0.0183505118, -0.00288641034, 0.0241832584, 0.0212935191, -0.0196955055, -0.0279385876, -0.0375266634, 0.000299419306, 0.0188032817, 0.0190696176, -0.0057062367, -0.0155806234, 0.0472212732, 0.013136996, -0.0454900935, -0.00604914362, 0.012990511, -0.00135498156, 0.0269531459, -0.00580611266, -0.00616566557, 0.00162964, 0.00797674619, 0.00361217442, -0.0102206226, 0.013183604, -0.000706621213, -0.0125310821, -0.00990102, -0.003304224, -0.0028314786, 4.74670088e-07, 0.0427468382, 0.0371804275, -0.00974121876, -0.0116388584, -0.0242631584, -0.0371005274, -0.0632280335, 0.035209544, -0.0247026123, 0.00459428644, -0.0214133691, 0.0278586876, -0.00984775275, -0.00784357823, -0.0126575921, -0.0381126031, -0.013290138, -0.00987438671, -0.00234042271, 0.0487393849, 0.0228116307, 0.0134432809, -0.025941072, 0.00136829831, 0.0171253681, 0.0127974181, -0.0348899439, 0.0335316323, -0.00588934263, 0.0247159284, 0.0270064138, -0.034703508, -0.00527011231, -0.0051602493, -0.0223988108, 0.0422674343, -0.0263405759, 0.0528409518, 0.000529341691, 0.00670166546, -0.00785023719, 0.000994596398, -0.00511697, 0.0211869851, -0.0454101935, -0.0289772954, 0.0165261142, -0.039391011, -0.0287908614, -0.021799555, -0.00412154105, -0.0128040761, 0.0204811953, 0.00681818742, -0.00267334189, 0.0136896418, 0.00152310578, 0.0251686983, -0.0191362016, -0.0115456413, -0.00263172714, 0.0434659421, 0.000610906922, -0.00795677118, -0.0333984643, 0.0278320536, -0.00858931802, -0.00101706851, -0.0281782895, 0.0252752341, 0.00615234859, 0.0125044491, -0.00848278403, -0.00134416169, 0.0266601779, 0.00247359043, 0.00314941653, -0.00180109346, 0.0316140167, -0.025834538, 0.00390181411, 0.0417347625, 0.0282848235, -0.0074041253, 0.000324180175, 0.0168989841, -0.0134299649, 0.0178444739, -0.0126243, -0.0114257904, 0.00487393839, 0.00577282067, 0.0272993818, -0.0116388584, -0.0516957082, -0.00109613675, 0.00631880853, 0.00968795177, 0.00136080768, -0.0171120521, -0.0192960035, -0.00391513109, 0.0101606967, -0.0114324484, -0.0200816914, -0.00226718048, 0.00852273405, 0.000523931754, -0.00784357823, -0.000332919299, 0.0215864871, -0.00185269595, 0.0180974938, -0.00905540492, -0.0167525, 0.0248357803, -0.0498846285, -0.0120783122, -0.0135897659, -0.0331054963, -0.00901545491, 0.0021556525, 0.0156072564, 0.0434126779, -0.00334084523, -0.0327059925, -0.0507901683, -0.00917525589, 0.0176180899, 0.0274591837, -0.0139027098, 0.0231578667, 0.00797008816, 0.0287908614, 0.0180309098, -0.0241166744, -0.00804333, 0.0101207467, 0.0224920288, -0.00670832396, -0.0256481022, -0.00817649812, 0.0310014449, -0.0204945114, 0.0136297159, -0.0152343875, -0.0247159284, 0.0136496909, -0.0146351326, -0.0111527964, 0.0207874812, -0.0111328214, -0.0307883769, 0.0525746159, -0.017711306, -0.000165315243, 0.0102139637, 0.00454101944, 0.00114524236, 0.0212402511, 0.0113924984, -0.00330588873, -0.017711306, 0.0061357026, 0.00211903127, 0.0199352074, -0.0202947613, -0.00679488294, -0.0389382429, 0.0250355322, 0.0187366977, -0.013216896, 0.0316672847, 0.00174283248, -0.0106334426, -0.0357422158, 0.0224520769, 0.0558771752, 0.017032152, 0.0169922, -0.0322798565, 0.000315024896, 0.00881570298, -0.0521751121, 0.000798174, -0.017138686, -0.00912864693, -0.0185502637, 0.0157404244, -0.0242498424, 0.0182439778, 0.0191894677, 0.0114457654, -0.000274450344, 0.00387850986, 0.0135298399, 0.0231045987, -0.00581277115, -0.0296697672, 0.0501775965, -0.003242634, 0.00702459738, 0.0204811953, -0.00801003817, 0.00249190093, -0.000404705032, 0.0156472065, 0.0244229604, -0.0209472831, 0.0166326482, 0.0250488482, -0.00319935451, -0.0223455429, 0.0141690457, -0.00493386388, -0.0124178901, 0.0267533958, -0.0538796596, 0.0073774918, 0.00257513067, 0.0418679304, 0.00505704433, 0.0578480586, 0.0110728955, 0.0351030119, -0.00142655917, -0.0118785603, 0.00129755295, -0.0327326246, 0.0122247962, -0.00860929303, -0.0342773721, -0.0138494428, -0.026047606, -0.0233842507, 0.0156338904, -0.0180042759, 0.05238818, 0.0141690457, -0.0225852448, 0.0312411468, -0.00157221139, -0.0300959051, 0.0127907591, 0.0180841759, 0.0163663123, 0.0117920013, 0.0199485254, -0.0249556303, 0.0103937406, -0.0352628119, 0.0543590635, -0.0240900405, 0.0157936923, 0.0111061875, 0.0119651193, 0.00806330517, 0.0106334426, -0.0263805259, 0.0233709347, -0.00487060938, -0.00556308171, 0.00975453574, 0.00428800052, -0.00157054677, -0.0143687967, 0.0188698657, -0.0279385876, 0.0126975421, -0.0168856662, 0.0358487517, 0.0158469584, 0.0335316323, 0.0216264371, -0.0226251949, -0.0125377411, 0.0140625108, -0.00851607602, 0.0125910081, 0.0169788841, -0.0180309098, 0.0162065122, 0.0273526497, -0.00354226143, -0.00516690733, -0.0277787857, -0.0253285, 0.0061090691, 0.00335915573, 0.0138627598, 0.0382724032, -0.017524872, -0.00275157811, 0.00917525589, -0.0105135916, -0.0295099672, 0.00430797553, 0.00110113062, 0.0117587093, -0.00324429851, -0.0449307896, -0.00743075879, -0.00104619889, 0.0370472595, -0.0335849, -0.0479403809, 0.0193492696, -0.00011548138, 0.0280184876, 0.0147416666, 0.0208540652, -0.021826189, 0.0280451216, 0.0443182178, 0.0109996535, 0.0160067603, 0.0113125974, 0.00192094431, 0.00584939215, -0.0079434542, 0.0374201275, -0.0312944129, 0.00531672128, -0.000603416236, 0.00932174083, -0.0117121013, 0.0153409215, 0.00923518091, 0.0115123494, 0.0245561283, 0.00258844765, -0.0280717555, 0.0423473343, -0.0189897176, -0.0126842251, 0.0152343875, 0.0272594318, 0.00501709385, -0.0106267836, -0.0126043251, -0.00278320536, 0.0225852448, 0.00469416194, -0.00721103186, -0.00846946705, -0.00295465882, -0.00211570226, -0.0123180142, 0.00653520599, 0.0288707614, 0.00864924304, 0.0182439778, -0.00912864693, -0.00622892, -0.0254616681, -0.0410422906, -0.0162730962, -0.0140358778, 0.0117920013, -0.00225219899, -0.00938166585, 0.0199218914, 0.00949485879, 0.0376332, -0.0276189856, 0.0180575419, -0.0133900139, 0.00688477093, 0.00744407531, 0.00647195103, 0.00879572798, -0.0377131, -0.0159268584, -0.00626554107, 0.000135040391, -0.0144220637, -0.0113392314, -0.00986772776, -0.00291803759, -0.0103937406, 0.00786355417, 0.0153009715, 0.0290571973, 0.00111611199, -0.0116654923, -0.0119850952, 0.00315108127, -0.0251820162, 0.0403231867, -0.0236772206, 0.0133966729, 0.00233875797, 0.0179110579, -0.0230380148, -0.0266468599, -0.0214932691, 0.00640203804, -0.0125510572, -0.00602916861, 0.0145685486, -0.0145019647, 0.00246360293, -0.000816484564, -0.0084162, 0.0034790067, -0.0178444739, 0.00483398838, 0.0125843491, 0.0047441, -0.0367809236, 0.00710449787, 0.0116388584, 0.017378388, 0.00967463478, 0.0353160799, 0.00177279522, 0.00702459738, 0.0139293438, -0.00947488286, -0.0248224624, -0.00757058477, -0.0104736416, 0.00846280903, 0.00710449787, 0.0245561283, -0.00582941715, -0.0112526724, -0.00290305633, -0.0287908614, 0.0292436313, 0.0267400779, -0.017644722, -0.000223472074, 0.0233709347, -0.0165394302, 0.0205344632, -0.00226884498, 0.0318004526, -0.012963878, -0.0300426371, 0.0073974668, -0.00458762795, -0.00116188836, 0.0205344632, -0.00754395127, 0.00749068428, 0.021852823, 0.0186168477, -0.00537997577, 0.0316939168, -0.0081898151, -0.00768377725, -0.00596924312, -0.0195490215, -0.00167458411, -0.0288973954, 0.0240234565, -0.00510032382, -0.0125244241, 0.00592929265, 0.00596258463, 0.0204146113, -0.0278853197, -0.00567294471, 0.0177512579, -0.017631406, 0.0154341385, 0.00848278403, 0.0236505866, -0.00960805081, 0.00222223625, -0.00571955368, 0.0239701904, -0.0161399283, -0.00228049723, 0.00886897, -0.00823642313, -0.0069846469, -0.0157004744, -0.0327326246, 0.0206409972, -0.026393842, -0.0124245482, -0.00621893257, -0.00201749103, 0.0227317289, -0.00248191343, 0.00261008739, -0.00658181449, 0.00203746604, 0.00158386352, -0.00982112, 0.0118652442, -0.0547585674, -0.0108798025, 0.00426469604, 0.0191894677, -0.0410689265, 0.0251820162, -0.00796342921, 0.0169522502, -0.00804333, -0.00711115636, -0.0245827604, -0.00664506899, -0.00976785179, -0.0121981632, -0.0166992322, -0.00884233695, 0.0299627371, -0.00387185137, 0.0279119536, -0.0160200763, 0.0149547346, 0.0156472065, 0.0390447751, -0.0158336423, -0.00545987673, -0.00315274578, 0.0227983128, -0.00537997577, 0.0139559768, 0.0434126779, 0.0132568469, -0.00892223697, -0.00260842266, -0.0146884, 0.00821644813, 0.0255282521, -0.021706339, -0.00598921813, 0.00798340514, 0.0333984643, 0.0119850952, -0.0160733443, -0.00417480804, 0.00777033623, -0.00713779, -0.00513361581, 0.0325195566, 0.00164711825, 0.00487060938, -0.0361683518, -0.00767046073, 0.00540660927, -0.0202681273, -0.0155007225, 0.0156205734, -0.00345903146, 0.0109130945, 0.0179376919, 0.00489391387, 0.0169655681, -0.00932839885, 0.0171253681, 0.00647195103, -0.0187500156, -0.0204811953, 0.0110129705, -0.00823642313, 0.00554310624, -0.00311279553, 0.000548484561, -0.0226917788, 0.0253684502, -0.0121515542, 0.0234907866, 0.0157004744, -0.00655185198, -0.0204945114, -0.021852823, -0.0123513062, -0.00131336669, 0.0365145877, -0.030548675, 0.00577947916, -0.0136496909, 0.00216564, -0.0318537168, -0.025967706, 0.0189497657, -0.01311702, -0.00336914323, 0.00523682078, 0.0236505866, 0.00306452205, 0.0139559768, 0.0319069847, 0.00273826113, -0.0108931195, -0.00620228657, -0.026220724, 0.0201482754, -0.00307950354, -0.00621893257, -0.0214533191, 0.017271854, -0.00892223697, 0.0248357803, 0.0136097409, 0.0298295692, -0.00105452188, 0.0136363748, 0.00297796307, 0.00156638527, -0.000890559109, -0.00230380148, -0.0165527482, 0.0162198283, 0.013136996, 0.00837625, 0.0201615933, -0.0191761516, 0.0158602763, 0.00628884556, 0.0101806726, 0.0172585361, 0.0286843274, 0.0146884, 0.0160999782, -0.0119051943, -0.00954812579, -0.00445113098, -0.0026117519, 0.0280184876, -0.0110063124, -0.00576616218, -0.0125843491, 0.00960805081, 0.0113991564, -0.00481734239, -0.0111328214, 0.0313210487, 0.012997169, 0.00417480804, -0.000553478312, 0.00415816205, -0.0121648712, 0.0168856662, 0.0369673595, 0.00708452286, -0.00114690699, 0.00153642253, 0.0210804492, 0.0189630836, -0.0191362016, 0.00384854712, 0.0124778152, 0.00249855942, -0.00311778928, 0.0183505118, 0.0133500639, 0.0113525484, 0.0154607724, 0.00846280903, 0.0405628867, -0.00750400079, -0.0192960035, 0.00180442259, 0.00106367713, 0.0233176686, -0.00924184, -0.00679488294, 0.00219726749, -0.00858931802, 0.00331254699, 0.000338121172, 0.000265503128, 0.0246892944, 0.0183238778, -0.0285777934, -0.00282315561, -0.00694469642, -0.0362748876, 0.0136363748, -0.0110795544, 0.0371804275, 0.00579279568, -0.0144620147, -0.0212136172, 0.0270197298, 0.00892889593, 0.008802386, 0.0164994802, -0.0224387608, 0.0227716807, 0.0235573705, 0.0197487734, -0.0337979682, 0.0243696924, 0.0139692938, -0.000777366571, -0.0239169225, 0.0256081522, -0.00117437285, -0.0185502637, 0.00595925562, -0.00793013815, -0.00569957821, 0.00910201389, 0.0234907866, -0.00711115636, 0.00827637408, 0.0424538702, -0.0243164264, 0.00101790077, -0.0182306617, 0.0236772206, 0.00114940386, -0.0099609457, -0.006501914, 0.00721769035, -0.0338778682, 0.00464089494, 0.0200550593, 0.00847612508, 0.026433792, -0.000168852508, 0.00184270833, 0.00370539189, -0.00810991414, 0.0103870826, -0.0212402511, 0.00657848548, -0.00564631121, 0.0133434059, 0.00618231157, -0.0023570687, 0.0146884, 0.00456432346, -0.0117121013, 0.00876909401, -0.0184037797, -0.0139160268, 0.0224387608, -0.0139293438, -0.0211736672, -0.00881570298, 0.00135248469, 0.0023837022, 0.00978116877, -0.00677823694, -0.0108065605, -0.0237038545, 0.0103338147, -0.013250188, -0.0126309581, 0.0151145365, -0.0103005227, 0.00768377725, -0.000807329314, -0.017538188, 0.00157637289, -0.0150080016, -0.0109929955, -0.00725764083, -0.00336914323, -0.00202914304, -0.00389182661, -0.000140762437, -0.00021785406, 0.00495716836, 0.00265503139, 0.00475075841, 0.00644531753, 0.00226052199, -0.00775701972, -2.31613e-05, -0.00834295806, 0.00890892092, -0.0052501373, 0.000544739189, -0.0200816914, 0.00836293306, -0.0220925249, 0.030442141, 0.026473742, -0.0290571973, -0.0319868848, -0.0124112312, -0.000896385231, -0.0170454681, 0.00520685781, 0.0245561283, 0.000408866501, 0.000425096339, -0.00978116877, 0.0203213934, -0.0163529962, 0.00416149106, -0.0203347113, -0.00976119377, -0.0128173931, -0.00745739229, -0.00349565269, -0.0195756555, -0.00115939148, -0.00514693232, 0.0128240511, -0.0231445506, -0.000904708169, -0.0142223127, -0.00721103186, -0.00798340514, 0.00532337977, 0.0329190604, -0.0095880758, 0.0224520769, 0.012983853, -0.0144353807, 0.0254217181, 0.0101673556, 0.00798340514, -0.012990511, 0.00510698184, 0.0158735923, 0.00659846049, -0.0137162749, -0.0231978167, -0.0106068086, 0.0238503385, 0.0344371721, 0.0202548094, 0.00383190112, -0.0102872066, 0.00272494438, -0.039257843, 0.00306618679, -0.0273260158, -0.00375532964, 0.008675877, -0.00986107, -0.0251154322, 0.0246360283, 0.00346569, 0.00446444796, -0.0283913575, 0.0104270326, -0.0167258661, 0.0154208215, -0.0312677808, -0.00549316825, 0.00510698184, -0.008855653, 0.00866921898, -0.00359885767, -0.00167458411, 0.00526678329, 0.0290838294, 0.00258345366, 0.0139426598, -0.0109463865, -0.00527011231, 0.00178444746, -0.0117254173, 0.00962136779, 0.0155939404, -0.0178444739, -0.00243863394, 0.00550981425, 0.0135697909, -0.006501914, 0.00416814955, 0.00785023719, -0.0143288467, 0.00487060938, -0.00285977684, 0.0225452948, -0.0155273564, -0.0361150838, 0.0183904618, -0.0017261866, -0.00580611266, -0.0123180142, 0.0188432317, 0.00503041083, 0.00252186367, 0.00789684616, 0.0255682021, -0.0159401763, -0.0267400779, -0.0373402275, -0.0225985628, -0.0296165012, 0.0178977419, -0.0117653683, -0.00842285808, 0.0200683754, -0.0144353807, 0.0428800061, -2.4214678e-05, 0.00228049723, -0.0360085517, -0.0158203244, 0.0197754055, -0.00517023681, -0.0161132943, 0.0119051943, -0.0107599515, -0.0316140167, -0.0073508583, 0.00748402579, 0.00573287, 0.0272727497, 0.0212402511, -0.00711781485, 0.00832964107, -0.00178278284, -0.00404164, 0.00757724326, 0.0216264371, 0.00666171499, 0.00864258502, -0.0371804275, -0.00636874605, -0.00150812441, 0.00401833607, -0.000574701931, 0.0113325734, 0.0262473579, 0.0123379892, 0.00331754074, -0.0104803, 0.0127108591, -0.0102472557, -0.0213734191, -0.00208906853, -0.0241832584, 0.0138893928, 0.0147416666, -0.0149946855, -0.0187633317, 0.0532404557, -0.0289772954, 0.00878907, 0.0176180899, 0.00522683281, -0.0146084987, -0.000740745454, -0.00307950354, -0.0179643258, 0.0227184128, -0.00707786437, 0.0097145848, 0.00357888243, -0.0102539146, -0.00257180165, -0.0268066619, 0.00182439771, 0.0214932691, 0.00574951619, -0.0150080016, -0.00433128, -0.00692472141, 0.0265003759, 0.0178045239, -0.00137911818, 0.00682484545, -0.021746289, -0.00114024861, 0.00870251, 0.0149680516, -0.0100541627, 0.0115190074, 0.00259843515, -0.00733754132, -0.00932174083, 0.0153542385, 0.0200550593, 0.021599805, -0.00838956609, 0.000558056, -0.00909535494, 0.00577947916, -0.00142323, 0.0205610953, -0.0184437297, 0.00408159057, -0.00918857288, 0.0191894677, -0.0185635798, 0.00669500697, -0.00802335516, -0.00777033623, 0.0246759783, -0.0136496909, -0.00133750332, -0.0155539894, 0.0194158535, 0.0278586876, -0.0162464622, 0.0190429837, -0.00836959109, -0.0113525484, 0.00640869653, 0.0164328963, 0.0162198283, 0.00639870903, 0.000890559109, 0.00578946667, 0.0295099672, 0.000111527967, 0.0223721769, 0.0173650701, -0.00721769035, 0.0015206089, 0.0024186587, 0.000811074628, 0.00730424933, 0.0102805477, -0.00251354068, 0.0214932691, -0.01283071, -0.0235973205, -0.00100375165, 0.0134832319, 0.0317205526, 0.00497381436, 0.0143687967, 0.0166592821, 0.00519354129, 0.00130171445, -0.0156871565, 0.0018493667, 0.0110928714, -0.000329382019, -0.0165527482, 0.00627885805, 0.0246227123, -0.00504039833, -0.0139959278, 0.00924184, -0.00942161586, 0.000960472156, -0.00629883306, -0.00664174, -0.0193359535, 0.0208141152, -0.00213068351, -0.0117121013, 0.00715110637, -0.0126908841, -0.0047441, 0.00663841097, -0.0157670584, -0.0145685486, 0.00876909401, -0.0056529697, -0.00680154143, 0.0157004744, -0.00697133, 0.00620228657, -0.0166592821, -0.006555181, 0.000588851, -0.0155806234, 0.00945490785, -0.0254084, -0.0160333943, -0.012950561, -4.8325317e-05, 0.0024203232, 0.00292968983, 0.00903543, -0.0110462625, -0.00462757843, -0.0261008739, -0.0376598313, 0.00248191343, -0.00495051, 0.00702459738, 0.0240634065, 0.00846946705, -0.017498238, 0.00528010027, 0.00843617506, 0.00187267107, -0.0147549836, 0.0142489458, -0.0121249212, -0.0057062367, 0.00320767751, -0.0114124734, 0.00165460887, -0.00623890758, -0.000506037322, 0.00609575259, 0.00107532938, -0.00489724288, 0.0150612695, -0.00739080831, -0.000299835432, 0.0202281773, -0.000198919282, 0.021466637, 0.000201312141, 0.00623557856, -0.0264870599, 0.0282315575, -0.0144087477, 0.0056895907, 0.00386186386, -0.0161532443, 0.0160067603, 0.00611572759, 0.00206409977, -0.0158602763, -0.00104703126, 0.00816983916, -0.00587935466, -0.0108265355, -0.0352361798, 0.00250188843, 0.00182606233, -0.0231578667, 0.00872248597, -0.0125710331, 0.00418812502, 0.00673828647, -0.0288174953, -0.00871582702, -0.017391704, 0.00190762756, 0.00259843515, -0.00823642313, 0.00191761518, -0.0370738916, -0.00306618679, -0.0107532935, 0.00842951704, 0.00260509341, -0.000905540481, -0.0035156277, -0.00494052237, 0.00580278318, 0.00114024861, 0.0134366229, 0.0083362991, 0.00367875816, 0.00443781447, 0.0198553074, 0.00251354068, 0.0104803, 0.00695135491, -0.00605580211, -0.0146084987, 0.0276456177, -0.00969461, -0.0200816914, 0.0183371957, 0.00986772776, -0.00930176489, 0.0151012195, -0.0199751575, -0.0121915052, 0.00401500659, -0.0179909598, -0.0318537168, -0.00882236101, -0.00557639822, -0.00593262212, -0.00883567799, -0.0119451443, 0.0249556303, 0.0248890463, -0.0369407237, 0.0212535672, 0.030522041, 0.0269131958, 0.0161665604, -0.0147150327, -0.0038818391, 0.0135231819, -0.0116322, 0.0242764745, -0.0032409695, 0.00247525494, 0.00912864693, 0.0115922503, -0.00683816243, -0.00284146611, -0.0116055664, 0.0104270326, -0.00128007471, 0.0281250216, 0.00548651, 0.00326427375, -0.0202281773, -0.0136896418, 0.00758390175, 0.00538663426, 0.0243696924, 0.0190429837, 0.00986772776, 0.0226917788, -0.00783692, -0.000214108732, 0.01732512, -0.00715776486, 0.00710449787, -0.0233443, -0.00202914304, -0.0164728463, -0.00333751598, -0.0152343875, -0.0126309581, -0.0111994054, 0.00278986362, -0.00201083254, -0.00372869615, -0.000874745485, 0.00803001318, -0.00179443497, -0.0238103885, -0.0102006476, 0.0239701904, -0.00348233595, -0.0226518288, -0.000914695789, -0.0082630571, 0.000205369593, 0.0137695419, -0.0147683006, 0.00604914362, 0.0123712812, 0.0132435299, 0.00446777698, -0.00670166546, 0.00479070889, -0.0103870826, 0.00870916899, -0.00812323112, 0.0289772954, 0.00337746623, -0.0120183863, -0.00174116797, 0.000246776443, -0.0133101139, -0.00144070829, 0.00664506899, 0.0116122253, 0.00559970271, -0.0188032817, -0.017378388, -0.0143687967, -0.0191095676, 0.0204811953, 0.013063753, -0.0142622627, -1.68020215e-05, 0.0159401763, 0.00602583913, 0.00905540492, -0.0181640778, 0.0137295919, -0.0047574169, -0.0134565979, 0.00823642313, 0.00453769, 0.00629217457, 0.00750400079, 0.0310280789, -0.00129422382, -0.0237304885, 0.00544988876, -0.00254350342, -0.00494385138, 0.0014015903, -0.0223721769, -0.0111860884, -0.00121515547, -0.0221857429, 0.0122447722, 0.0134233059, 0.00497714337, -0.00142905605, -0.000212652201, 0.00186268345, -0.0193625856, 0.0158602763, 0.0061623361, 0.00442116847, 0.012923927, -0.0143821137, -0.0239968225, 0.000586770242, 0.00628218707, 0.00959473383, 0.0391513109, 0.0270197298, 0.00797674619, -0.0397106148, 0.0177512579, 0.00499711884, -0.00862926804, -0.00862261, -0.00506370235, 0.0201083254, -0.00374867138, 0.00823642313, -0.026127506, 0.00816983916, -0.017138686, 0.00417147903, 0.0010953045, 0.00210904377, 0.0236239526, 0.0357954837, 0.0145818656, 0.012897294, -0.034543708, 0.0127974181, 0.00101457152, -0.0163396783, -0.0134898899, 0.0152743375, -0.00705788936, 0.00599587662, -0.0097145848, 0.0339844, 0.0170854181, -0.00664506899, 0.0167658161, -0.00201083254, -0.0026017644, -0.0234242026, 0.00160217413, 0.00459095696, -0.00143737905, -0.00930842385, -0.00482400088, 0.00232544122, -0.0112593304, 0.00354226143, 0.00292968983, -0.00806996413, 0.00419811253, -0.000851441117, 0.00152976415, -0.000134728281, -0.0283647235, -0.00749734277, -0.00967463478, -0.0070046219, -0.0084961, -0.00958141778, -0.0116588343, -0.00014450778, -0.0179776419, -0.0133633809, -0.00319768977, 5.29549761e-05, -0.0326260924, 0.00173284498, -0.00894887093, 0.0102872066, 0.0182706118, -0.0181108098, -0.00642201351, -0.0139959278, -0.0112992814, 0.000385978317, -0.00360551593, 0.00386186386, -0.00944825, 0.0238902885, -0.0204945114, 0.00229381397, -0.0146617657, 0.0114391074, -0.00982777774, 0.00135997531, -0.00680819945, -0.0150745856, -0.00189764006, 0.00628551655, -0.0038818391, 0.0144620147, -0.0164728463, 0.0156472065, 0.0183771458, -0.00815652311, 0.00314608729, 0.00380859687, -0.0324396566, 0.017471604, -0.0125177661, 0.00407160306, 0.00972790178, 0.00559637323, 0.0104869576, -0.00480735488, 0.00243031094, -0.0284978915, -0.0151278526, 0.0117986603, 0.00466087041, 0.013250188, -0.000555142935, 0.00189098157, -0.01724522, 0.00634211255, 0.0199884754, 0.0398704149, 0.0139160268, -0.00279985135, 0.00573287, 0.0166060142, -0.00987438671, 0.0294833332, 0.0148881506, 0.00693138, -0.0189764, -0.0330522284, 0.0107200015, 0.00410156557, -0.0155539894, 0.00382524286, 0.0191761516, -0.017484922, 0.0125976661, -0.0094415918, 0.013130337, 0.00926181488, 0.00918191392, 0.00455766544, 0.034543708, 0.0212003011, 0.00946156681, 0.01728517, -0.0244495925, -0.0115522994, -0.0221990589, 0.0202414934, -0.0161132943, 0.0153276045, -0.00976119377, 0.0163396783, 0.00277821161, -0.0105735166, 0.0153941885, -0.00448775198, -0.0176979899, 0.0471147411, -0.01311702, 0.00366877066, 0.00699130539, 0.0307883769, -0.00876243599, -0.0124977902, -0.0196955055, 0.0148881506, -0.038592007, 0.00618896959, 0.0028131681, 0.0135165239, -0.0268998798, -0.00995428674, 0.000766546698, 0.0210005492, 0.00929510687, 0.00645863451, 0.00739080831, -0.00765714375, -0.0108398525, -0.0180175919, 0.0226518288, 0.017498238, -0.00994097069, -0.00779031171, -0.0120916292, -0.000552646059, 0.0105269086, -0.00719105685, -0.0137562258, -0.00546653476, 0.00970792677, -0.00888894498, 0.00926181488, 0.000448192615, 0.00295965257, -0.00187433569, -0.00235207495, -0.0107865855, 0.0138760768, -0.0132967969, 0.0207208972, -0.00475075841, -0.00223222398, 0.0465288, 0.0114524243, 0.00141074555, -0.0106134675, 0.0147683006, -0.0156205734, -0.0109197535, 0.0184703618, -0.00524347881, -0.0371804275, -0.0201083254, -0.00910201389, 0.0100874547, 0.0171253681, 0.0175781399, -0.0198686235, 0.00589267164, -0.013263505, 0.0287375934, 0.00361217442, -0.00463090744, -0.00404496957, 0.021426687, -0.0285511594, 0.00642201351, 0.0153409215, 1.62168108e-05, 0.0070312554, 0.00942827482, 0.000883900735, -0.00252852216, 0.0188831836, 0.0202681273, 0.0124911321, -0.0233176686, 0.00673495745, -0.00587935466, -0.000630049792, -0.0226917788, 0.00208407477, -0.0222656429, -0.013090387, -0.00809659716, -0.00270996313, 0.00763716875, -0.0126642501, -0.017564822, -0.012777443, 0.0194424875, -0.00299460907, 0.0160467103, 0.0164062623, 0.0122181382, -0.00290971459, 0.0142223127, -0.0171520021, 0.0114723993, 0.0206143633, -0.0246493444, -0.00113858399, 0.0117453933, 0.00155972689, 0.0133633809, 0.0187633317, 0.021906089, 0.02623404, 0.00408824906, 0.0144753307, 0.02607424, 0.035129644, 0.0229314808, 0.00223055924, -0.00844949204, -0.00537997577, 0.00647860952, -0.0277521536, -0.00365878316, -0.00499378936, -0.0039617396, 0.0112793054, 0.00544988876, 0.0229048487, -0.0014199008, 0.0138228089, 0.0235174187, -0.00414817454, -0.0239835065, -0.0336648, -0.0158336423, 0.0081898151, -0.00267500663, -0.00507036084, -0.0107732685, -0.0223988108, 0.0108465105, -0.00680487044, 0.00266002514, 0.0138494428, 0.0069846469, 0.0141823618, -0.0091952309, 0.00415816205, -0.0115656164, -0.00682484545, 0.00465421192, -0.00196755305, -0.0133300889, 0.00178444746, 0.0167125482, 0.00973456074, 0.00124345359, -0.0176180899, -0.00439786399, 0.00142905605, 0.0106733926, 0.0124711571, -0.0147283496, 0.0229447987, -0.000102892875, 0.0248357803, -0.00968129281, 0.00306951604, -0.0208141152, 0.0156605244, 0.0168723501, -0.0162730962, 0.0231578667, -0.00485063437, -0.00315108127, 0.00449441047, 0.0139293438, 0.00902877096, -0.00730424933, 0.00619229907, -0.00353227369, 0.013176946, 0.00609575259, -0.00753729278, 0.0137029588, 0.00725098234, -0.0121448962, -0.00579612516, -0.00712447288, -0.0224254448, -0.0162198283, 0.00729759084, -0.0191095676, -0.0270863138, 0.0122647472, 0.00579612516, 0.0176580399, 0.0109530445, -0.0232777167, -0.00533336727, 0.026087556, -0.0210671332, -0.00566295721, 0.00598588912, 0.0113192564, 0.0155939404, 0.002145665, 0.0110129705, 0.00144237292, -0.00649858452, 0.00354226143, -0.00796342921, 0.0243963264, -0.00178611209, 0.00255515566, 0.00412487, -0.00786355417, -0.00407826155, -0.017271854, 0.00878241099, 0.0336914323, -0.0101606967, 0.000107366475, 0.00411821157, 0.00269664638, -0.00256347866, 0.006465293, -0.034623608, -0.0345170721, 0.021506587, -0.00608909409, 0.000607993861, -0.0199485254, 0.00793013815, 0.00467085792, 0.0103737656, -0.00970792677, 0.00957475882, 0.00558305671, 0.00449108146, 0.0109064365, -2.01832318e-05, 0.0120183863, 0.0108398525, -0.0318803526, 0.021786239, 0.00545321824, -0.00603249762, -0.00406827405, -0.0025851184, 0.000994596398, 0.00870916899, -0.00376531738, 0.0138228089, 0.00392844761, -0.0124245482, 0.00253684516, -0.0155406725, -0.0101740137, 0.00952815078, 0.00300626131, -0.0269131958, 0.0180175919, -0.0107865855, 0.00202248478, 0.0180841759, -0.00212069601, -0.0107000265, 0.00461759046, 0.0204012953, 0.0397372469, -0.0148482006, -0.00207741652, -0.00744407531, 0.00152393815, 0.00338578923, 0.00173118035, 0.017138686, 0.00247858418, -0.0198153574, 0.0320667885, 0.00160800025, -0.0157004744, 0.00544323074, -0.0271928478, 0.00284646, 0.00245028595, 0.00436790101, -0.0239568725, 0.0122647472, 0.0177512579, 0.0253817681, -0.0320934206, -0.00801669713, 0.0106401006, -0.0052867583, -0.0230779666, -0.0114723993, -0.00515692, 0.000653354102, -0.00595925562, -0.0128773181, -0.000756559137, 0.0245161764, -0.0110462625, -0.00401500659, -0.0179376919, -0.00400834857, -0.00438121799, -0.0145285986, 0.0287109595, -0.0162331443, 0.0211603511, 0.0250088982, -0.00379195088, 0.0280983895, -0.0116987843, -0.0186168477, 0.013130337, -0.0140758278, -0.000746155391, -0.00119018648, -0.00119101885, -0.0129439021, -0.0225186609, 0.0137429088, 0.0244229604, -0.0107932435, 0.0197887234, 0.0165926982, 0.00924184, -0.00816318113, -0.0246360283, 0.0125976661, 0.0175781399, -0.0103204986, 0.0156338904, 0.00711781485, -0.0052767708, 0.0386452712, -0.0102006476, -0.0144753307, -0.000601751613, -0.00827637408, 0.0104736416, -0.00495051, 0.004327951, 0.00552313123, 0.00185269595, -0.00764382724, 0.0150479525, -0.00575284567, -0.00437123049, 0.000729509396, -0.0166859161, -0.0182839278, -0.00243364018, -0.0207208972, -0.00311945379, 0.003304224, 0.00573287, -0.0123446472, 0.0145419147, -0.000141074546, 0.0225719288, -0.0241433084, 0.02623404, 0.00045277024, 0.0126975421, -0.00230213697, -0.0137961758, -0.00880904496, -0.00431130501, -0.0161132943, -0.00423140451, 0.000516441069, 0.00843617506, 0.00240367744, 0.00311778928, 0.00585937966, -0.0171520021, -0.000538080814, 0.0095148338, 0.00787687, 0.0251154322, 0.0186834317, -0.0138228089, 0.00186767732, 0.0175781399, -0.00445778947, -0.00364879542, -0.0191228837, -4.71418929e-07, -0.0105202496, -0.0243563764, 0.0125577161, 0.00107366475, -0.00371205015, 0.00144486979, 0.0187366977, -0.0321999565, 0.0146484496, -0.0114923744, -0.00424805, 0.0153009715, -0.0175115559, 0.00878907, -0.00344238547, 0.0188698657, -0.00124262134, -0.0111394795, 0.00470747892, -0.0144220637, -0.0381392352, 0.021599805, -0.0285511594, -0.00757724326, 0.0294833332, 0.017471604, 0.00717108184, -0.00497048534, -0.00254516816, 0.0166060142, 0.00257013692, -0.00386186386, 0.00555642322, 0.0193759035, -0.00382191362, -0.00652521849, 0.00836293306, 0.0310014449, -0.00566628668, 0.0201083254, -0.0412553586, 0.00579279568, 0.000184250021, 0.0145818656, 0.00771706924, 0.0108864615, 0.00462424895, 0.035289444, -0.0126575921, -0.00344904396, -0.000615900732, 0.00169455924, 0.00464755343, -0.00723766536, 0.000877242361, 0.00189264619, -0.013250188, 0.00170787598, 0.0136630079, -0.00428134203, -0.00366877066, -0.0171120521, 0.0143421637, -0.012864002, -0.000100135883, 0.00755060976, 0.00749068428, -0.0290305633, -0.00453103147, 0.0243430585, -0.0265935939, 0.0110462625, -0.0104203736, 0.0276988856, -0.0162597783, 0.0139293438, -0.0126243, 0.0127641261, -0.00598255964, 0.0149680516, 0.00264337915, 0.0107666105, -0.0109130945, 0.00682484545, -0.026327258, 0.0243563764, 0.0160333943, -0.00525679579, -0.00216564, -0.00223388849, -0.000476074609, 0.00755726825, 0.0221857429, -0.0128706601, 0.008729144, -0.00307950354, 0.017271854, -0.00945490785, -0.021826189, -0.0162997283, 0.0117320763, 0.0110662375, 0.0052601248, -0.00922852289, -0.00857600104, 0.0210005492, -0.00516690733, -0.0326260924, -0.0199751575, 0.000334167737, 0.0170854181, -0.013057095, -0.0209606, -0.00588601315, -0.0109264115, 0.0047940379, 0.0197620895, -0.000662925537, 0.00268499414, -0.00217063376, -0.00210072077, -0.0017444971, 0.00986107, -0.0024203232, -0.0260209721, -0.0102938646, -0.0147949336, -0.01303712, 0.00943493284, 0.0110795544, 0.00586936716, 0.00676159095, 0.00761719374, -0.00523016229, 0.0192560516, -0.0123912562, -0.00406161556, 0.0103204986, 0.00761719374, 0.0254084, -0.0202414934, -0.00938166585, -0.0156072564, -0.0116721503, 0.0169788841, 0.0183238778, -0.00669833645, 0.00806330517, -0.0119118523, 0.0199884754, -0.0101606967, 0.0279385876, -0.0207874812, 0.0143687967, 0.0099076787, 0.0203080773, -0.00243197544, 0.0146484496, 0.00296464632, 0.00515026134, 0.000321891333, -8.35939572e-05, -0.0224920288, 0.0179909598, 0.0368874595, -0.000693720591, 0.0249156803, -0.00562300719, 0.0082630571, 0.0014323853, -0.0238769725, 0.000513944193, 0.0115855914, -0.00889560394, 0.00548651, -0.0056895907, 0.0105468836, -0.0179643258, 0.0315341167, 0.0365944877, 0.00864258502, -0.00529341679, 0.00842951704, -0.00654852251, 0.017631406, 0.00559970271, 0.00135082006, -0.00465421192, -0.0389382429, -0.0302024391, -0.00417813705, 0.00143904367, 0.0148215676, 0.00120267097, -0.00763051026, 0.00985441171, 0.0121448962, -0.0233576186, 0.0135098649, 4.46840131e-05, -0.00649858452, -0.00446444796, -0.0215199031, -0.0153276045, 0.013303455, -0.0102539146, -0.0182572939, 0.0252619162, 0.00191761518, -0.0139559768, 0.00251021143, -0.0144087477, 0.000150021762, 0.034783408, 0.00077653426, -0.0149281016, -0.00363547867, 0.00802335516, -0.00785689522, 0.0202414934, -0.0251686983, 0.00739080831, -0.0148615176, 0.0142489458, -0.0103671066, -0.00587269664, 0.00563632371, 0.000446944148, -0.00249190093, -0.0248357803, 0.0120250452, -0.00145568966, 0.0302024391, 0.013003828, 0.00538996328, 0.0321733207, 0.0297230352, -0.00667170295, 0.0138494428, 0.00571289519, 0.0169522502, 0.00771041075, -0.000257804379, -0.0138361258, -0.00715110637, -0.00632546656, 0.00892223697, -0.0211337171, 0.00213567726, 0.00372203765, -0.00238703145, 0.00838290807, -0.0101074297, 0.00319935451, 0.00393843511, -0.0315341167, 0.0052501373, -0.0065285475, 0.00422807503, -0.00241699419, -0.00553311873, 0.012777443, -0.0140358778, -0.00759056024, -0.0181241259, -0.00347567745, -0.00678489543, -0.0117920013, 0.0114457654, 0.0163130462, 0.00938166585, -0.00720437383, -0.0105535416, -0.0165261142, 0.00793679617, -0.00349232345, 0.0231845, 0.00175947847, 0.0156472065, 0.0101806726, -0.0112460144, 0.00195590081, -0.0111661134, -0.01728517, -0.00694469642, 0.013143654, 0.000410531124, 0.0284179915, -0.0226917788, -0.00654519349, -0.000577615, 0.0242498424, 0.00186268345, 0.00928844884, 0.0123313311, -0.0074041253, 0.00534002576, 0.00260675815, -0.0126642501, 0.0252486, 0.0196022876, 0.000863925554, 0.0253817681, -0.000689142966, 0.00652188901, -0.0225452948, 0.0111727715, 0.0116455173, 0.0125643741, -0.0021556525, 0.00699130539, 0.0111794304, -0.000575534243, -0.0214400031, -0.00114690699, 0.013290138, 0.00311113079, -0.00870251, 0.00517356582, -0.0078169452, 0.0035156277, 0.0239568725, 0.00455100695, 0.00423473353, 0.00533336727, -0.0340643041, -0.00619229907, 0.00483731739, -0.00580944167, -0.0137162749, -0.0186834317, -0.0127441511, -0.0202548094, 0.00274658413, -0.00891557895, -0.0116654923, 0.0216663871, -0.0134366229, -0.0161798783, 0.000436956587, -0.000974621275, -0.00317605, -0.0178444739, -0.017538188, 0.0245694444, 0.00431463402, -0.0223189089, -0.00992765371, 0.00398504408, 0.0172585361, -0.0110129705, 0.0126642501, 0.00164711825, 0.0250355322, 0.000836875872, 0.0118053183, -0.0103471316, 0.012850685, 0.0101274047, -0.030522041, -0.00869585201, -0.0324929245, -0.00179443497, -0.0190696176, -0.0199352074, 0.0211470332, 0.0193892196, 0.00443781447, 0.00870251, -0.0025934414, 0.0412553586, -0.0120183863, 0.0140092438, 0.0056163487, -0.0116455173, 0.0151678035, 0.0118053183, -0.0162730962, -0.0197754055, 0.00363547867, -0.0352628119, -0.00786355417, -0.00331920548, 0.0134898899, 0.0167658161, -0.0105934925, -0.00557639822, -0.0148482006, -0.00312278303, 0.00191428594, 0.000238661523, -0.0209339652, 0.0244895443, 0.00707786437, 0.022105841, 0.00361550367, -0.00663508149, -0.0264471099, -5.43074602e-05, -0.0168856662, -0.000186746925, -0.00411821157, 0.0104536656, -0.0222656429, -0.0143554797, 0.0205211453, -0.00673495745, -0.0191362016, -0.00291470857, 0.000983776525, -0.0100075537, 0.0322532207, -0.00576949166, -9.12927135e-05, -0.0194824375, -0.000783192634, 0.0120849703, 0.000984608778, 0.0157537404, -0.00727761583, -0.0140358778, -0.0122647472, 0.0221591089, 0.00139909331, 0.00221890723, -0.00688477093, 0.00504705636, 0.00265336689, 0.00296298182, -0.0134565979, -0.0179376919, 0.0146484496, -0.00652521849, -0.0048572924, -0.0334783643, 0.0166193321, -0.0105002746, -0.00595592614, -0.0082630571, -0.00775036123, -0.000593844801, -0.00276822387, -0.0250222143, 0.00198419904, 0.0313476808, -0.0123446472, 0.00695135491, 0.00944825, -0.00882236101, 0.00103121751, 0.0341175683, 0.00838956609, -0.00469416194, -0.0102539146, -0.0359819196, 0.000997093273, 0.0225586109, 0.00545321824, -0.0074241003, 0.00177445984, -0.0069846469, 0.0176580399, 0.00452770246, -0.0295366012, 0.00203080778, -0.00611572759, -0.0279918555, 0.0294833332, 0.0159801263, -0.00147899403, 0.00236872071, -0.0138228089, 0.00287142885, -0.00310613704, 0.00304621155, 0.0133101139, -0.0289506614, -0.021972673, -0.00172119273, -0.00525679579, -0.0172319021, 0.013356722, -0.0218395069, 0.0237438045, 0.00501043536, 0.000151374246, -0.00308782654, 0.0112926224, 0.021599805, 0.00875577796, 0.000213900654, -0.00537997577, -0.00481734239, -0.00868253503, 0.0137162749, 0.00943493284, 0.00204745377, 0.013063753, -0.00670832396, -0.0175115559, -0.0141956788, 0.0273526497, 0.0163130462, 0.0158336423, 0.0343040042, 0.00476407539, -0.0188965, -0.0144486977, -0.0186967477, 0.00970792677, 0.00633545406, -0.00679821195, -0.00917525589, -0.0137695419, -0.0145951817, -0.0202814434, 0.0249023642, 0.00820313115, 0.0161399283, -0.030868277, -0.0178178418, -0.00779697, -0.00642867154, -0.0162730962, -0.00266668363, -0.0285511594, -0.0253817681, -0.00907538, -9.96677118e-05, 0.0104803, 0.00533669628, -0.0167924501, 0.0146750826, 0.00333918049, 0.0159668103, -0.008802386, -0.00228882022, 0.0122780642, 0.0118452683, -0.0181773938, -0.0198819414, 0.0111061875, 0.00903543, 0.00705123087, -0.00177279522, 0.0318004526, -0.00553311873, -0.00864924304, 0.008729144, -0.00972790178, 0.00727095734, 0.0266601779, 0.00170954061, -0.017484922, 0.00176447234, 0.008802386, 0.00301291957, 0.0148348836, 0.035129644, -0.0225319788, -0.0114391074, 0.00829634909, -0.0102938646, -0.00418479554, -0.0202947613, 0.0314808488, 0.0127308341, -0.00808328, -0.00878907, -0.0320135206, 0.0254483521, 0.00422474602, -0.00908869691, -0.0161665604, 0.00255848491, -0.00981446076, 0.0103737656, 0.0107066846, 0.0156205734, 0.021719655, -0.0119518032, 0.00166043499, 0.00748402579, 0.00293967733, 0.0105735166, -0.00137745356, 0.000606745423, 0.0225053448, 0.00171453436, -0.00541326776, 0.00488059688, 0.039257843, -0.0212535672, -0.00384854712, 0.0212003011, -0.01720527, -0.0355025157, 0.0127374921, 0.00983443577, -0.00588268414, -0.0192294195, 0.030655209, -0.0194158535, 0.0126509331, 0.00380193838, 0.0124178901, -0.00376864639, 0.0120583372, -0.0206409972, -0.00171453436, 0.00958141778, 0.017644722, -0.0158602763, -0.00589600066, 0.0154208215, 0.0113991564, -0.00246526743, 0.0112793054, -0.00975453574, 0.0190696176, -0.00705788936, 0.0267667118, -0.0246227123, -0.000630465918, -0.00574951619, 0.012990511, 0.0192560516, -0.0056063612, 0.00557306921, 0.0061190566, -0.00534335477, 0.00769043574, 0.0151012195, 0.0205744132, -0.0156338904, -0.0111927465, 0.0073442, -0.00359552843, -0.0188831836, 0.000768627448, -0.00751065928, -0.00246193819, -0.0105801756, 0.00539662177, -0.0227317289, 0.0205610953, -0.000172597851, -0.00235041021, -0.00399503158, 0.00124012434, 0.00614901958, -0.0115190074, 0.00268998789, -0.00795011315]
12 Oct, 2021
Node.js Stream readable.pause() Method 12 Oct, 2021 The readable.pause() method is an inbuilt application programming interface of Stream module which is used to stop the flowing mode from emitting ‘data’ events. If any data that becomes accessible will continue to exist in the internal buffer. Syntax: readable.pause() Parameters: This method does not accept any parameters. Return Value: If this method is used then the reading of data is paused at that time. Below examples illustrate the use of readable.pause() method in Node.js: Example 1: // Node.js program to demonstrate the // readable.pause() method // Including fs module const fs = require('fs'); // Constructing readable stream const readable = fs.createReadStream("input.txt"); readable.on('data', (chunk) => { console.log(`${chunk}`); }); // Calling pause method readable.pause(); // Checking if paused or not readable.isPaused(); Output: true Example 2: // Node.js program to demonstrate the // readable.pause() method // Include fs module const fs = require('fs'); // Create readable stream const readable = fs.createReadStream("input.txt"); // Handling data event readable.on('data', (chunk) => { console.log(`Received ${chunk.length} bytes of data.`); // Calling pause method readable.pause(); // After this any data will be displayed // after 1 sec. console.log('No further data will be displayed for 1 second.'); // Using setTimeout function setTimeout(() => { console.log('Now data starts flowing again.'); readable.resume(); }, 1000); }); // Displays that program // is ended console.log("Program ends!!"); Output: Program ends!! Received 5 bytes of data. No further data will be displayed for 1 second. Now data starts flowing again. However, you can see while running, that after the execution of pause() method, no further data will be displayed for 1 second. Reference: https://nodejs.org/api/stream.html#stream_readable_pause. Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method
https://www.geeksforgeeks.org/node-js-stream-readable-pause-method?ref=asr10
CSS
Node.js Stream readable.pause() Method
CSS pause-before Property, CSS, How to Play and Pause CSS Animations using CSS Custom Properties ?, Node.js Stream readable.pause() Method, CSS Tutorial, p5.js | pause() Function
GeeksforGeeks
[-0.0391304493, 0.0232811514, -0.0099158, 0.06318409, 0.0326309055, -0.0249859504, -0.036546614, 0.0286885593, -0.025665205, 0.0242401, 0.0067426106, 0.0648888871, 0.00631308137, -0.0207772292, 0.0180735253, -0.0469352268, -0.0286352839, 0.0229215454, 0.00560052879, 0.0233477466, -0.0013568463, -0.00165651785, 0.00582028786, -0.0218427293, -0.00522427447, 0.00913665351, -0.0249060374, 0.00706559, -0.0182333514, -0.01602244, 0.00312324381, 0.0267040674, 0.0119402474, -0.0290881209, -0.0122266, -0.00896350946, 0.000800372858, 0.0111611011, -0.00286685815, -0.0263577793, -0.0554059446, 0.0111411233, -0.0378784873, -0.0116871912, -0.00436521601, 0.0283955466, -0.0578033179, -0.0145307416, 0.0182067137, -0.00442515034, 0.0289282966, 0.028981572, -0.00898348819, -0.0114874104, 0.0223621596, -0.0049579, -0.00256552175, 0.00998905301, -0.0202977546, -0.0521295369, 0.00673595117, -0.050318189, 0.0207239538, -0.0106083741, 0.00483470131, -0.0142776854, -0.050424736, 0.00355943246, -0.0175274573, 0.0169014763, -0.0349217281, 0.00405555544, 0.0213632546, 0.00467820652, 0.0141844545, -0.0294077713, 0.0253189187, 0.035294652, -0.00118203787, 0.0315654054, -0.027463235, -0.00597678311, -0.0342557915, 0.024306694, 0.0273566861, -0.037106, -0.00616990495, -0.0115273669, 0.0693107098, -0.0101422183, 0.0383845977, 0.0332435668, 0.0138381673, -0.0122998534, -0.00578033179, 0.0285020974, -0.00349616841, -0.0145041049, -0.0125928661, 0.0414212719, 0.0267839804, -0.00825761724, -0.0114208171, -0.0168482028, 0.00320815062, 0.0105550988, 0.0392103605, -0.0182067137, 0.0101155806, 0.0364400633, 0.0029217978, -0.00348284957, -0.0189259257, 0.00140096468, 0.00704561174, 0.0247195754, 0.0127193937, 0.00747181149, -0.0127393715, 0.0217494965, 0.0142510487, -0.015303229, 0.015662834, 0.0903010368, -0.0230680518, 0.0369195379, -0.0120867537, -0.00980259, -0.00622650934, 0.0128991967, -0.0178737454, -0.00105384504, -0.0164885968, -0.0174475461, 0.0135651333, 0.0109213647, -0.0080644954, 0.0233344268, -0.00821100082, -0.00907006, -0.0094762817, 0.0201246105, 0.0314588547, -0.0159824844, 0.00767159229, 0.0111677609, -0.0356675759, -0.00608666288, -0.0130923185, 0.0498387143, 0.000663439569, -0.0142110921, 0.0128792189, -0.004501733, -0.0168082453, -0.02826236, -0.0062831142, -0.00877038855, 0.00324977189, 0.0168482028, -0.00522094499, -0.0293544959, 0.0201512482, 0.019178981, -0.0086238822, 0.0391570851, 0.031698592, 0.0189658813, 0.0225885771, 0.0131056374, -0.0384911485, 0.0346553549, -0.060413789, -0.00982256886, -0.0139846737, -0.00550729781, 0.042593319, 0.0164220016, 0.00286019873, 0.0169547517, -0.0212167483, -0.01296579, 0.00194620038, -0.0213499349, 0.00956285279, 0.000590186508, 0.014584017, -0.0137182986, -0.00866383873, -0.0235874821, -0.0436321832, -0.0192722119, 0.0335099436, 0.0108148139, -0.00854397, 0.0526889227, -0.0326309055, -0.00220258604, 0.0208171848, -0.00296341884, -0.0248927195, -0.0231213272, -0.0164086837, -0.00823763851, -0.0157161094, -0.0045117219, 0.013864805, -0.00629976252, 0.0587622672, -0.0619054884, 0.024852762, -0.0347885415, 0.0167283341, -0.00853731, 0.0346819907, -0.00977595244, -0.0175141394, -0.0330038294, -0.0248794, 0.0052941977, 0.00513437297, -0.0164220016, 0.00963610597, 0.014224411, -0.048879765, -0.0399828479, -0.0274099596, 0.0047614486, 0.0173676331, 0.0127926469, 0.00451505184, 0.0687246844, 0.00357941049, -0.0392636359, 0.00836416706, -0.0051843184, 0.000349824957, 0.017380951, 0.0265841987, -0.014677248, 0.0152899101, -0.0290082097, -0.0173010398, -0.00136267324, 0.0172344446, 0.00572705688, -0.0139846737, 0.0148104355, -0.00384245557, -0.0387841612, -0.026823936, -0.000393110851, -0.00775150489, 0.0130457031, -0.0482404642, 0.00821100082, 0.00559719931, 0.0158359781, 0.0105284611, -0.0171545334, 0.0258117113, 0.0255986117, -0.0185929574, -0.0222689286, -0.00801122, 0.0119668851, 0.00326975, -0.0218160916, 0.00869047549, 0.0138115305, 0.0228549521, 0.000473231368, 0.0301802568, -0.0283422712, -0.0149036665, 0.0184730887, -0.0717080757, -0.0391304493, 0.0139447171, -0.00659610424, -0.014850392, 0.00305498531, -0.0262112748, 0.0315387696, -0.0301802568, -0.0245730691, 0.0622251369, 0.00437187543, -0.0320182443, 0.0261846371, -0.00450506294, -0.0199115109, 0.0253721941, 0.0165418703, 0.0173409954, 0.0198449176, -0.0255586561, 0.0258916244, 2.87705534e-05, 0.0261713173, -0.0118270386, -0.0112077175, -0.0308195576, 0.0118403574, 0.0129857687, -0.0328440033, 0.0262245927, 0.0199248306, 0.0255453382, -0.0102021527, 0.0434457213, -0.012785987, -0.0258783065, -0.00187627703, 0.0222955663, 8.12651051e-05, -0.0030916119, 0.0299937949, -0.000884031178, 0.00051734969, 0.00621985, 0.000414961891, -0.00932311546, 0.0192722119, 0.00398563221, -0.052582372, 0.01782047, 0.0152765913, 0.00768491114, -0.00437853485, -0.01908575, -0.000296133803, -0.0434989929, 0.0219492782, 0.0361470506, 0.0110545512, -0.0604670644, -0.0040422366, 0.0196051802, 0.00765161449, -0.0278361607, -0.03457544, 0.013678343, -0.0186195932, 0.0445378572, 0.0118336976, -0.0272634551, 0.0268638916, 0.0177538767, 0.0299671572, 0.000779562339, 0.00145423959, 0.0335099436, 0.0133586926, 0.00717879925, -0.0166750588, 0.0210169666, -0.0424867719, -0.00107965013, 0.00966274366, 0.0423269458, -0.00691242423, -0.00370260887, 0.00215264084, 0.00982922781, -0.0386509746, -0.0234809332, -0.028901659, -0.001069661, 0.0104951644, -0.0200180616, 0.0101488773, -0.0114141572, -0.0118336976, -0.00522427447, -0.0105750775, -0.00327141467, 0.00196950813, 0.0165418703, 0.00513104349, -0.0176739637, 0.0390505381, 0.0124663375, 0.00888359733, 0.0229481831, 0.00538076973, -0.0181667563, 0.0201778859, -0.000630975177, 0.0029217978, -0.0264243744, 0.0225219838, 0.0031415571, -0.0327374563, 0.0202977546, 0.00689910585, -0.0123997442, 0.00186462316, 0.00381914782, -0.0274365973, -0.0266241543, -0.028182447, -0.0147305233, 0.0165418703, 0.00165402063, 0.0170346648, -0.0282090846, -0.0247328952, -0.00522760442, -0.00152083323, 0.0359605886, -0.0142377298, -0.0102554271, 0.00427531451, -0.00122782111, 0.06318409, 0.00157494063, 0.0244265627, -0.0308461953, 0.0136317275, 0.0317785069, -0.00268372544, -0.0280492604, -0.006482895, -0.00699233683, -0.00633971859, -0.0505579263, -0.0320715196, -0.0184198134, -0.0004703179, -0.046002917, 0.00325643108, -0.0571640171, -0.0103286803, -0.00998239312, -0.00398563221, 0.017474182, 0.0529286601, -0.0160091221, -0.0117671043, -0.036013864, -0.0155962408, 0.020977011, 0.00333800842, 0.0161822662, 0.0442182049, -0.045097243, 0.017460864, -0.0210968796, 0.00954953395, -0.00893687271, 0.0268905293, -0.0284221843, 0.0157027915, 0.0110145956, -0.0172344446, -0.0207639113, -0.0189525634, -0.0234542955, 0.027010398, 0.00449507358, 0.00813774858, 0.00202611275, 0.0228283145, -0.0119935228, -0.052316, 0.000990581, 0.0325776301, 0.0143975541, -0.000771238119, 0.0100090308, 0.00783807691, -0.00805783551, 0.0531683974, -0.0141711356, 0.0164353214, 0.0182599891, -0.0125662284, -0.0035827402, -0.0237739459, 0.0179403387, -0.0429396071, 0.016475277, 0.00553726498, -0.020617405, -3.87335931e-05, 0.0293544959, -0.0228416342, -0.00691242423, -0.013238824, 0.0173010398, -0.00427198503, -0.0251058191, -0.00658944482, 0.00643960945, 0.0153565034, 0.00069174188, -0.00896350946, 0.000805367366, -0.00998239312, 0.0189792, -0.00460495334, 0.0299937949, -0.0238804948, -0.0344688892, 0.00167399878, -0.00377919152, 0.0331103802, -0.0366798, -0.0272634551, -0.0639299378, 0.028448822, -0.0287684724, 0.0216695853, 0.00248560915, -0.0103686368, 0.00679255556, 0.0127593502, -0.000513603794, 0.0476810783, 0.00351947616, 0.00327640935, -0.00517765898, -0.0201112926, -0.0391304493, 0.00288350647, -0.0136050899, 0.00194453553, -0.00073044945, -0.0139047615, 0.0103087025, 0.0323645324, 0.0463492051, 0.0514103249, 0.00897682831, -0.0061932127, -0.0137049798, -0.0177805144, 0.025478743, -0.000774151587, -0.0124064032, -0.00440517208, -0.00470151426, 0.00872377306, -0.0266241543, 0.0242933761, 0.0185796376, -0.0117870821, -0.0113209262, -0.00251224684, 0.00849735364, -0.00491461391, 0.0376920253, 0.0104951644, 0.00696569914, -0.0131788896, -0.0310592949, 0.0102487681, -0.00198282697, 0.0106616486, 0.00426199567, -0.0092964787, 0.036546614, -0.0110212546, -0.0215497166, -0.0185130443, 0.0201912057, -0.0170080271, -0.00167732837, 0.0181134827, -0.0182067137, -0.00115623279, 0.0109280236, -0.0163554084, 0.00506112, 0.0105417799, 0.0230414141, -0.00579365063, 0.00779812038, 0.0148637099, -0.0123864254, -0.000577284, 0.00984254666, 0.0167682897, 0.00235408684, 0.00377919152, 0.00873043202, -0.0183931757, -0.0302335322, 0.0196185, -0.00129191752, -0.00516434, -0.0164619591, 0.0222422909, 0.000771238119, 0.00638633454, 0.00353945442, -0.0139447171, -0.0230813716, -0.00924320333, 0.0288483836, 0.040329136, 0.00508775748, 0.0229215454, -0.0421937592, 0.0120201604, 0.00590686, 0.00146006653, -0.0156095596, 0.00458497507, 0.00302002346, 0.00905008148, 0.0302601699, 0.00322646392, -0.00227084453, -0.0129191745, -0.0014717204, 0.0299138837, -0.0247728508, 0.026384417, 0.00795794558, 0.00627645478, 0.0223355219, 0.00255886232, -0.0119002918, 0.00589687051, -0.0135717932, -0.053834334, 0.0203909855, -0.0198449176, -0.0271169487, -0.0226418525, 0.00034066831, -0.019178981, 0.00733862398, 0.0192855317, -0.0194853116, 0.00960946828, 0.00520762615, -0.0192056186, -0.00419540191, -0.0144508295, 0.016302133, 0.0366798, -0.00665603857, -0.0187927373, -0.047441341, 0.0260114931, 0.00202777772, -0.0482138284, -0.0251058191, 0.0108880671, -0.00185796374, 0.0342824273, -0.0354544781, -0.00143176422, 0.0124596786, 0.0100290086, -0.001575773, 0.00411549, 0.00540740695, -0.0300470702, 0.000286560942, 0.00851067249, 0.0285020974, -0.0161822662, -0.00104219117, 0.0334566683, 0.0132854404, 0.0395566486, -0.0283955466, -0.0137449363, 0.0149569418, 0.0211368352, -0.00221257517, 0.00190957391, -0.017460864, 0.0131922085, 0.0107349018, 0.019178981, 0.00196284894, -0.00171645219, -0.00690576527, 0.0236141197, 0.0152499536, -0.00292013306, -0.0347352661, -0.0343623422, -0.0268905293, -0.0257184803, -0.00674594, 0.00664604967, 0.0331902914, 0.00648955442, 0.0202045236, 0.00308495248, 0.0228549521, 0.0133919902, -0.0265442431, -0.0317252316, -0.0292745829, 0.00400561, -0.04230031, 0.00661275303, -0.000443264202, 0.0460561924, -0.00158492965, -0.00194120593, -0.0290614832, -0.0123131722, 0.0116871912, 0.0232811514, -0.0111877387, 0.00472149206, -0.0126195028, 0.00144924503, -0.0053840992, -0.0185130443, -0.00997573417, -0.00589687051, 0.000341500738, -0.0339095034, 0.0123264911, -0.016834883, -0.0119069507, -0.0576434918, -0.00599676138, -0.0147837978, 0.00192122778, 0.0128792189, 0.0116405757, 0.0130656809, 0.0112143764, -0.00486466847, -0.0220291913, 0.0418474711, -0.0323911682, 0.000687579799, 0.0167949274, 0.00287851202, -0.00346287154, 0.00407553324, -0.00819768291, -0.00672596227, -0.0115673225, -0.00400228053, 0.00303833676, 0.0309527442, -0.0130390432, -0.0207639113, -0.0477077141, -0.002340768, 0.0155962408, -0.0343357027, 0.00598344253, 0.00480806408, 0.00258050533, -0.0120800938, 0.00980259, 0.0496788882, 0.00992911868, 0.0206440426, -0.0256119315, -0.00841078255, 0.0256518871, -0.053115122, -0.00796460453, -0.0257584378, -0.00901012588, -0.00843076, 0.00753840525, -0.00982922781, 0.0290082097, -0.013325396, 0.00562050706, 0.0144108729, -0.0109679801, -0.0430195183, 0.026823936, -0.0131322742, 0.00390904909, 0.0444313064, 0.00249226857, -0.0224287529, 0.0257983934, -0.0101422183, 0.00518764788, -0.00135434908, 0.0159158912, 0.0200846549, -0.00673595117, -0.00325310137, 0.0532749481, -0.0202977546, 0.0323911682, 0.00113126019, -0.00113292504, 0.0271968599, 0.00226418534, -0.0447243191, 0.0325243548, -0.0310060196, 0.0133054182, 0.0198715553, 0.00699233683, -0.00335798645, -0.00874375086, -0.0185663197, -0.0385177881, -0.00876372866, -0.00285353931, -0.0326575413, -0.0124863153, -0.0326841809, -0.0219759159, -0.0334833041, 0.0180602074, 0.00432858942, -0.00976263452, 0.0294077713, 0.0127127348, -0.0484535657, 0.00402225833, -0.0150102163, -0.0280758981, 0.0137848929, -0.00990914, -0.00263544498, -0.00675925892, 0.0203909855, -0.016928114, 0.00272368174, -0.0840145946, 0.0375322, -0.0212034285, -0.0174875017, -0.0251724124, 0.025385512, -0.00546068233, 0.00201445888, -0.0193121675, 0.0255187, -0.00322479918, -0.019445356, -0.00873043202, -0.00218094327, 0.0158892535, 0.00988916215, 0.0151966792, -0.00628977362, 0.0113275861, -0.0283156354, 0.0127127348, -0.00194620038, -0.0208970979, 0.00505779032, 0.00152998988, -0.0255986117, 0.01296579, -0.00748513, -0.00767159229, 0.00768491114, -0.00803785771, -0.0148637099, -0.00320482114, 0.0181268, -0.000577700208, -0.041154895, -0.00887027849, 0.00612328947, -0.00745183323, 0.00877704751, -0.0166750588, -0.01107453, 0.00348617928, 0.00133020885, -0.0339894146, -0.0520229861, 0.00309660635, 0.0064729061, 0.0167549718, -0.0182599891, -0.0219492782, -0.00362935569, 0.0183798559, -0.00607001409, -0.0226285346, -0.00865052, 0.0130923185, -0.0193920806, 0.0200979747, 0.0122998534, 0.0178870633, -0.0138781238, 0.0170746204, 0.06424959, 0.00859058555, 0.00120950781, 0.0173010398, 0.0019062442, 0.00881034415, -0.00797792338, 0.00347619038, -0.0348684527, 0.0258516688, -0.0252390057, 0.0116738733, -0.0285020974, 0.00187128247, 0.00889025722, -0.0138115305, 0.00119036215, -0.00843742, -0.00837748591, 0.0283689089, -0.0329771936, -0.024399925, 0.0216695853, 0.0220691469, 0.0248261262, -0.00540074799, -0.0103819557, 0.0154497344, 0.0244665202, 0.00139430526, -0.0114807514, -0.00840412267, -0.0046016234, 0.00197283784, 0.0149835786, 0.0234010201, 0.0291147586, -0.014943623, 0.0139047615, -0.0148104355, -0.0069324025, -0.0181933939, -0.0105550988, -0.0238538571, -0.00580363953, 0.035827402, 0.00123864249, -0.0189126059, 0.00586024439, -0.0330038294, 0.00254054903, -0.0461627431, 0.00812443, -0.0204575807, 0.0276763346, -0.019538587, -0.0120334784, 0.0197916422, -0.00758502074, -0.01170051, -0.0379051268, -0.00206606905, 0.00325976079, -0.0158093404, -0.0184331313, 0.0259582177, 0.00767825171, -0.00483470131, -0.0031016008, 0.0269304868, -0.030153621, -0.0165152345, -0.0196318179, -0.0082642762, -0.0196850933, -0.00809113309, -0.0466155782, 0.0107681984, 0.0164086837, -0.0092765, 0.00701897452, -0.0211767908, -0.032311257, 0.00774484547, -0.0155296475, -0.0221890155, 0.00357608078, 0.00505779032, -0.00288683618, -0.00431860052, -0.0169547517, 0.0326309055, -0.0112343542, 0.00827759504, 0.00993577763, -0.00175807322, -0.00513770292, 0.007425196, 0.0216296278, -0.001069661, -0.000844074937, 0.0432592556, 0.0164885968, -0.0189658813, 0.0143575985, -0.013864805, 0.0118070599, 0.00370593858, -0.00388241187, 0.0576967672, -0.0159425288, 0.0226551723, -0.00168149057, 0.000746265461, 0.0110412324, -0.0133919902, 0.0154364156, -0.00954953395, -0.0471483283, 0.00273034116, 0.0346553549, -0.00912999455, 0.0183132626, -0.00145007751, 0.0286619216, -0.0179003831, -0.0213765725, 0.00839080382, -0.0295143202, 0.00454834849, 0.0200047418, -0.0128126247, 0.00199115113, 0.00909003802, 0.0152099971, -0.0189525634, -0.00488131726, -0.00328639825, 0.00174142478, -0.0132255061, -0.00260547781, -0.0129058557, -0.0413147211, 0.0174475461, -0.00853731, 0.016382046, 0.00818436407, -0.00485800905, 0.0355876647, -0.0229615029, -0.0016906471, 0.0192455743, -0.0196051802, -0.00225752592, 0.0228016768, 0.00199448084, 0.00176473265, 0.00224920176, -0.0201379303, 0.00793130789, 0.0088036852, -0.00634637801, -0.0186062753, 0.0223088842, 0.00746515207, -0.0405155979, -0.0231879205, 0.029434409, -0.0265442431, -0.0273566861, 0.00805783551, 0.00636302633, 0.0197650064, 0.0201112926, 0.0167949274, -0.00258882949, 0.000914830714, 0.0153431846, -0.0248394441, 0.0118869729, -0.0229615029, 0.00139763497, 0.00517765898, 0.0175807327, -0.028448822, 0.0117271477, -0.0163953658, 0.0192056186, -0.00499452651, 0.00723207416, -0.0239604078, -0.000470734114, -0.0137982117, -0.0119269285, 0.000367305794, -0.0207239538, 0.0271569043, 0.0187927373, 0.0235075708, -0.0148370732, 0.0168748405, 0.0139047615, 0.0373723768, -0.0321780667, -0.00288683618, -0.0304199941, -0.00224753679, -0.00337463501, -0.00484469067, 0.0256918427, 0.0175274573, -0.028901659, -0.00974265579, -0.0101355584, 0.0039523351, 0.0249992684, -0.0365998894, 0.00567711145, -0.00817770418, 0.0138115305, -0.0155562842, -0.00791133, -0.00312823826, 0.00596346427, -0.0269571226, -0.00153248711, 0.0160890333, 0.0065395, -0.00783807691, -0.0213366169, -0.0154763721, -0.00246563111, -0.017194489, 0.00232578442, 0.0396898352, -0.00670598401, 0.0286619216, 0.0192322563, -0.00287351757, 0.0120667759, -0.0136250677, 0.0222422909, 0.0198582374, -0.0223887973, -4.28956955e-05, 0.0314322188, -0.003532795, -0.00072628737, 0.0140113113, -0.0149968974, -0.028448822, 0.0311658438, -0.0102754058, -0.00467820652, -0.00889691617, -0.0170479827, -0.0112942886, 0.004142127, -0.0117604444, -0.00647623558, 0.0328706428, -0.017194489, 0.0035827402, 0.00236074603, 0.0151966792, -0.00434856769, -0.0185929574, 0.00564714428, -0.017101258, 0.0107482206, -0.0281291716, 0.0172610823, 0.0124064032, -0.0135784522, 0.0199248306, 0.0022908228, -0.0189792, -0.0254254695, -0.00958949048, 0.0306863692, 0.00426532561, -0.00352613558, -0.0132854404, 0.0123797655, -0.0218160916, 0.0146506103, 0.0254920628, 0.00802453887, -0.0109346826, -0.00976263452, 0.0110412324, -0.000322563166, -0.0149169853, 0.00997573417, -0.0133453747, 0.0122132814, -0.00303167757, -0.00312490854, 0.0238938145, -0.0305798203, 0.0302601699, -0.00964942481, 0.0226418525, 0.0381448641, 0.035827402, 0.0138914427, 0.0131722307, -0.0172078088, -0.00747181149, 0.00408219267, -0.008284254, 0.018366538, 0.00546068233, 0.00829757284, 0.00794462673, -0.00329805212, 0.00358939962, -0.0233077891, 0.0435522683, 0.00875041, -0.0170879401, 0.00297340797, -0.00733862398, 0.0159824844, -0.00167316629, 0.0217894539, 0.00552061619, -0.0108481115, 0.00827759504, -0.0082442984, 0.00334133813, 0.00226418534, -0.000836583145, 0.00564714428, -0.00783141702, -0.00255719759, 0.021150155, 0.0183399, 0.0117071699, -0.0019062442, 0.0318850577, 0.00612994842, 0.0311658438, 0.0123464689, -0.0218693651, -0.0154630532, 0.0109213647, 0.0275697857, -0.00186462316, 0.00872377306, -0.0148903476, -0.0126461405, -0.00624981709, -0.000459496427, 0.00516767, 0.0239337701, 0.0102421083, -0.0164619591, 0.0194054, 0.0202444792, -0.0449374169, 0.00382580725, -0.00847737584, 0.0441915691, -0.0218826849, 0.00897682831, -0.00135268422, 0.0156228784, -0.0247462131, 0.0160490777, 0.0108547704, -0.00352613558, 0.00654948875, 0.00623982819, 0.00113791961, -0.00983588677, -0.000816605054, 0.0312457569, 0.0245197937, -0.0321514308, 0.0247195754, 0.016208902, -0.0321514308, 0.00836416706, 0.00897016935, -0.0090634, 0.00305665, 0.00275531365, 0.00941634737, 0.00632307027, 0.0300204325, -0.00887693837, 0.000457415357, -0.0127060749, 0.00354611361, -0.00945630297, 0.00937639084, -0.0118403574, -0.000201758055, 0.010714924, 0.00675925892, 0.00513104349, 0.00894353166, 0.0157827027, 0.00956285279, 0.000264293689, 0.0130856587, 0.000818269909, 0.00561384764, 0.0043019522, 0.00584026612, 0.00354944333, -0.0159025714, 0.0244665202, 0.00441849092, -0.00516434, -0.0060933223, -0.015036854, -0.00158409728, -0.00317152427, -0.0167150144, -0.00677257776, -0.0237339884, -0.00779146096, -0.00885696, 0.0135584744, -0.0207106359, 0.014584017, -0.00843742, 0.00383912586, -0.0117138289, -0.00147921219, -0.00830423273, 0.0143709173, -0.00485467957, 0.00471150316, -0.0183532201, -0.0159425288, -0.0270903111, -0.0135518145, -0.00901012588, -0.0101022618, 0.00457498617, 0.00346287154, -0.0154097788, -0.0181667563, 0.00730532734, -0.000300920219, 0.0136184087, 0.00471483264, -0.00899680704, -0.0098958211, 0.00919658784, -0.0136383865, 0.0127660092, -0.0238405392, -0.00482471241, -0.0196850933, -0.0263577793, -0.00682585267, -0.00835084822, -0.0247861687, 0.0243333317, 0.00869047549, -0.0177938323, -0.0102287903, -0.0464557558, 0.0138514861, -0.0466688536, 0.000527338765, -0.00687912758, -0.0342025161, 0.0130257243, 0.013771574, 0.0188593306, 0.00735860225, -0.00475478917, -0.00801122, 0.0213499349, -0.0142776854, -0.000137869734, -0.00374922436, -0.0235608462, 0.0064629172, -0.00831755158, 0.00996241532, 0.0102421083, -0.0101155806, -0.00993577763, 0.0196451377, -0.0219226405, -0.0148237543, 0.037106, -0.0351348296, 0.044564493, 0.0187394619, -0.00988916215, 0.0147971166, 0.0229748208, 0.0024706258, -0.00251224684, -0.00803785771, 0.00956285279, 0.00719211809, -0.0101621961, -0.0114674326, 0.0147971166, 0.000373340852, 0.0184464511, 0.00511106523, 0.0222156532, -0.0298073329, -0.00869713537, -0.0239604078, 0.0108347926, -0.0329771936, -0.0270370357, 0.0100090308, -0.0141045423, -0.0215363968, 0.0175141394, -0.0215497166, 0.00857060682, -0.0356942154, 0.00120284839, -0.0133786714, 0.00497454824, -0.0220158715, -0.00812443, -0.0033929483, 0.00667934632, 0.0292745829, 0.00919658784, -0.0236540772, 0.000160137, 0.0207772292, -0.0285820086, 0.02593158, -0.00681253383, 0.00204442604, 0.0130923185, 0.0185663197, -0.0104019335, 0.0159691647, -0.00410217093, 0.00811777, 0.00994909648, 0.00445178756, -0.00465156883, 0.00841078255, -0.0236540772, -0.00245897169, -0.000141511584, 0.00604670634, 0.0336164907, -0.00261713169, -0.0370260887, 0.00962278713, 0.00667601684, 0.0135717932, -0.00631974079, 0.0326841809, -0.0194986314, 0.00593682704, 0.00324644218, 0.0121466881, -0.0113475639, 0.00769823, -0.0102953836, 0.00100972678, 0.0112476731, 0.00664272, -0.0224687085, 0.0112876296, 0.000481971801, -0.012512953, 0.0202844366, 0.00392569788, 0.0175807327, -0.0175407771, -0.0387308858, 0.0231080092, -0.0141578177, -0.0420872085, 0.0209903289, -0.0200313795, -0.026291186, -0.008284254, 0.00855728798, 0.0121466881, 0.0393701866, 0.0405955091, 0.00199115113, 0.0140645858, -0.0139447171, 0.00861056335, -0.0121733258, 0.0249992684, -0.0185663197, 0.0194719937, -0.02772961, -0.00366598228, 0.00912999455, -0.0075250864, 0.00743185496, 0.0131322742, -0.00321481, 0.0299671572, 0.00997573417, -0.0149169853, 0.0202444792, -0.0333501175, -0.0109480014, 0.0193121675, -0.0291946717, -0.0140246302, 0.00217261887, 0.00412880862, -0.0365199782, 0.0286086462, -0.0241335519, 0.0314854942, 0.0243466515, -0.00562716648, -0.0195119493, -0.00402225833, -0.00396565394, -0.0319916047, 0.0212300662, 0.00553060556, 0.0296475086, -0.002520571, -0.0140912235, -0.0150634916, -0.0189126059, -0.00926984102, 0.0133919902, 0.00125029637, -0.0289282966, -0.00578366127, -0.00548731955, 0.0190990679, -0.00346953096, 0.0136650242, 0.0103419991, -0.0016473612, 0.00595347537, -0.0234143399, 0.0177938323, 0.0109879579, -0.00302501814, -0.0057536941, -0.0134519245, -0.00344622321, 0.0269304868, 0.0400627591, 0.0226152148, -0.00324477721, 0.0143709173, -0.00763163622, 0.00177139195, 0.00513104349, -0.00524758222, -0.00678589661, -0.00774484547, -0.00494125159, -0.0129791088, -0.0191523433, 0.00283522601, -0.00871711317, -0.0174342263, 0.00423535844, -0.00278528081, -0.00821766071, -0.003532795, 0.0219093226, 0.0189126059, 0.00185796374, 0.0184064936, -0.000326933368, -0.00220924546, -0.00998239312, 0.015303229, 0.0111544421, 0.0106816273, -0.00415544584, -0.00272201677, 0.0360405035, -0.0047614486, 0.0245730691, -0.00311658438, 0.0235608462, -0.0028901659, -0.00848403573, 0.0105750775, -0.00190291449, 0.0209903289, -0.00624648761, 0.00682585267, -0.0029617541, -0.0168615207, 0.0109346826, -0.00757836131, 0.00241568591, 0.00214931113, 0.015756065, 0.0193121675, 0.0192189366, -0.00177305681, 0.0181134827, -0.0114008384, 0.0226684902, -0.00263378024, -0.0136250677, 0.0210569222, 0.0283156354, -0.00579698, -0.00730532734, 0.00180468883, 0.00766493287, 0.0155163286, -0.0128592402, -0.00482804189, -0.0108680893, 0.0132721215, -0.0242667384, -0.00475478917, 0.00569708971, -0.0131322742, 0.0137449363, 0.0017014686, -0.0091166757, -0.0214431658, 0.0114940703, -0.00767825171, -0.0120667759, 0.0129857687, -0.00831755158, -0.0132454839, -0.00515435124, -0.00936307199, -0.0155962408, -0.0152366348, 0.0109480014, -0.0280226227, -0.00407220377, -0.0191922989, -0.0168615207, 0.028528735, -0.00863720104, -0.00473481091, 0.000662607141, -0.00912333466, -0.0277562477, -0.0204176232, -0.0135584744, 0.00925652217, -0.0145706981, 0.00575036462, -0.0070322929, -0.0175008196, 0.0094762817, 0.0228682719, 0.00820434187, -0.008104451, 0.0245997068, -0.000176681366, 0.0112809697, -0.00444512861, -0.0212567039, 0.0146106547, -0.00561717711, -0.00130856584, 0.0184997246, 0.00996907428, 0.00270536845, 0.0277828854, -0.00288017676, 0.00316486484, -0.000533165701, -0.00065844506, 0.020164568, 0.00477809692, 0.0182866249, -0.0221357401, 0.012599525, -0.00894353166, -0.00430861115, 0.00708556781, 0.00603338797, 0.00974931568, 0.0272634551, 0.0176073704, -0.0100090308, -0.00629643304, 0.0211368352, 0.0124530187, -0.0111011667, -0.0224687085, -0.00964276586, -0.00735194283, -0.0270636734, -0.00807115436, -0.000509025471, 0.0169947073, -0.0202977546, -0.0152099971, -0.0430727936, -0.0139713548, 0.00343290437, 0.00189792, 0.00472482201, 0.0165818278, -0.0254654251, 0.00247395528, -0.0196584556, 0.0145706981, -0.00124113983, 0.0318317823, 0.000220175367, -0.00245564221, 0.00462160166, 0.00220758072, -0.0187128261, -0.010714924, -0.00968272146, -0.0125529096, 0.0269304868, 0.0142510487, 0.00998905301, 0.020430943, -0.021243386, -0.0101888338, 0.0269704424, 0.00140845648, -0.0236008018, 0.00831089169, 0.0054740007, -0.0146372914, 0.0369994491, -0.0156894717, -0.026744023, -0.00599343143, -0.010082284, -0.043658819, 0.0040322477, -0.00249393354, -0.00546734128, -0.0095162373, 0.00678589661, 0.00861056335, 0.00753840525, -0.0355610289, 0.0251058191, 0.0212833416, 0.00956285279, -0.00887693837, -0.0217228606, 0.00660942309, 0.00755838305, 0.00356609188, -0.0135584744, -0.000839496613, 0.0278361607, -0.00296841352, 0.00333467871, -0.00212766812, 0.00606668461, 0.00916995, 0.0014467478, 0.0165551901, 0.0189525634, 0.0183132626, 0.00468486547, -0.0122199412, 0.000783308235, 0.0224820282, 0.00114624377, -0.0114740916, 0.00144008838, -0.0145973358, -0.0115540046, -0.00745849265, 0.00612328947, 0.00500118546, 0.00345288264, 0.0340426899, -0.0296475086, -0.0131722307, 0.000245980424, -0.0173143577, -0.00736526167, -0.0125395907, 0.00185130443, 0.0157161094, 2.72357756e-05, -0.0255320184, -0.00410883036, 0.00298006739, 0.0110945078, -0.0128126247, -0.000922322506, 0.033030469, -0.0115406858, -0.02646433, 0.0129391532, -0.0207106359, 0.0107082641, 0.0159425288, -0.00491128443, 0.00122782111, -0.00293012219, 0.017021345, 0.00443846919, -0.0101488773, 0.018366538, 0.0209503733, 0.0152366348, -0.00114624377, 0.0246663, 0.00420539128, -0.0351348296, 0.0100023709, 0.0156095596, 0.00863720104, -0.00515768072, -0.0170346648, -0.00170979288, -0.0121267103, -0.0149303041, -0.0204176232, -0.000676342112, -0.0212966595, 0.0299937949, 0.0248927195, -0.0186728686, -1.28374932e-05, 0.00766493287, 0.00556723215, -0.0234542955, -0.0104485489, 0.0182599891, -0.0208704602, 0.00551395724, 0.00591684878, 0.0136916619, -0.0134452647, -0.00213432754, 0.0171678513, -0.0200447, -0.013325396, -0.0131655717, 0.017114576, 0.0134652434, -0.000846156, -0.0316186808, 0.0028219074, 0.0035427839, -0.0270903111, 0.0323645324, 0.0127060749, -0.0168881584, -0.00766493287, 9.885e-05, -0.0040322477, -0.00461494224, -0.00591018936, 0.00386909302, 0.0200846549, -0.000604337663, -0.00825761724, -0.0213898905, -0.0270903111, 0.00701231509, 0.00434190826, 0.00434190826, 0.0122465789, 0.00715882098, -0.0304466318, 0.0121799847, 0.00211268454, 0.00671264343, -0.000237031898, 0.00446843635, 0.0271302667, 0.00345954183, 0.00892355386, -0.0146106547, 0.0115007292, 0.00143342908, 0.00881034415, 0.0112210354, -0.0146506103, 0.00258882949, 0.0077048894, 0.00416210527, 0.0173143577, -0.000786221703, 0.00774484547, -0.00774484547, 0.00172144675, 0.00020852148, -0.00567378197, 0.00470817368, -0.0278361607, -0.0163953658, 0.00849735364, 0.0198449176, 0.00713884272, 0.00188626605, -0.0113342451, 0.000876539387, -0.00942300633, 0.0028219074, 0.0106017143, -0.0123464689, -0.0296475086, 0.00916329119, -0.00129857683, -0.0151567226, 0.00333967316, 0.00068341766, -0.00136100838, -0.0206573606, 0.00442515034, 0.0023224547, 0.017474182, -0.00657945592, -0.0140912235, -0.0298073329, -0.0107415617, -0.0223488398, 0.00266707712, -0.0011953566, -0.0181134827, 0.0174342263, -0.0122598968, -0.000276571896, -0.00491128443, -0.0173676331, -0.00283189653, -0.0057337163, 0.00141594827, 0.00359938852, 0.00183798571, 0.00197783252, 0.00526756048, -0.00240070233, -0.0145440605, -0.00384911499, -0.00420872075, 0.0155296475, 0.0106083741, 0.0191922989, -0.00783807691, -0.0271169487, -0.00150002271, -0.008464057, -0.00412547868, -0.00538742915, -0.00196784339, -0.00803119875, 0.0262512304, -0.0111211454, -0.00357275107, 0.00997573417, 0.00109796342, 0.0182067137, -0.00883698184, -0.00600009086, -0.00207439321, -0.0171412136, 0.0250125881, -0.00974265579, 0.00163986953, 0.00753840525, 0.0245197937, -0.000593516219, -0.00294344081, -0.00664604967, -0.028528735, 0.00255886232, -0.0145307416, -0.0084241014, 0.0118470164, 0.008284254, 0.00476810802, 0.000938970945, -0.00109463371, 0.00401226943, 0.0276230611, 0.0118070599, 0.0134852212, 0.0112143764, 0.0215763543, -0.0138514861, -0.00787137356, 0.0186595507, 0.0181933939, 0.00608333293, -0.0393435471, -0.00885030068, 0.0212034285, -0.00336131616, -0.0065628076, 0.0339627787, -0.0232811514, 0.0175807327, -0.015756065, 0.0233477466, 0.00238238904, 0.0159558468, -0.016382046, 0.0481871888, -0.00185463415, 0.0181268, 0.00449507358, -0.017740557, -0.0315654054, 0.00368596031, -0.00642629061, -4.21673285e-05, 0.0287684724, -0.00992911868, 0.00108714192, 0.00914997235, -0.0217228606, 0.00651286216, -0.014943623, 0.00244065863, 0.0471216924, 0.0172078088, 0.00743185496, 0.0125795472, 0.0239204522, -0.0184464511, -0.00771820778, -0.0180602074, 0.00252390071, -0.0291946717, 0.0338828675, -0.0130057465, -0.00789801124, -0.00688578701, -0.0137582552, 0.00914331246, 0.00693906192, -0.0110145956, -0.00659943419, -0.00611663, -0.0258516688, -0.0135717932, -0.00746515207, 0.0359872282, -0.00186129345, -0.0188859683, -0.0217494965, -0.000504030962, -0.00468819542, -0.00358939962, -0.00909669697, 0.000546068186, 0.00371925719, -0.0114674326, -0.0053840992, 0.014943623, -0.00684583094, -0.000513603794, -0.0110212546, 0.0162488595, -0.0193388052, 0.0304999072, -0.029887246, 0.0211634729, -0.0104951644, -0.000635137258, 0.0293278582, 0.00121783197, -0.000839912856, -0.0210302863, -0.00200280501, -0.0275165103, -0.0320715196, 0.00733862398, 0.0041321381, -0.013145593, -0.000386867672, -0.00149169855, 0.0075250864, 0.0146106547, 0.0301003456, -0.0182067137, 0.0286619216, 0.00924986228, 0.0102754058, -0.00160740502, -0.00465156883, -0.0116339168, 0.0229615029, -0.0330038294, -0.0181401204, -0.00745183323, 0.0216962229, 0.0060134097, -0.0112010576, -0.00134019786, 0.00596346427, 0.00669599511, 0.0108547704, -0.0117071699, -0.0217361785, -0.000743768236, -0.00731864572, -0.00474147033, -0.0226818081, 0.00067925558, -0.00873709098, -0.0257717557, -0.00765827345, -0.0292213093, 0.0157960225, -0.0111744199, -0.0151034473, -0.0149036665, -0.000628061709, -0.0280226227, 0.0092765, 0.00408219267, 0.0151434038, 0.000708390318, 0.0109746391, -0.0290082097, 0.00737192063, 0.0227883589, -0.0015799352, 0.0148104355, 0.00217428384, 0.0148770288, 0.0160091221, 0.00794462673, -0.00556057272, 0.00954953395, -0.0135851111, 0.0225619394, 0.00799790118, 0.0318584181, 0.00262878579, 0.0245197937, -0.00811111089, -0.00262878579, -0.00106133684, -0.0170080271, -0.00279194023, -0.000860723376, -0.00209437148, -0.0136916619, -0.000748762744, -0.00451505184, 0.00294344081, 0.000633056217, 0.00636635628, -0.0153165469, -0.0313789435, -0.026158, 0.00629643304, -0.0182067137, 0.00516434, 0.00369594945, -0.0345221646, -0.0142510487, -0.00378252123, -0.00463825, -0.00731198629, 0.0192056186, 0.00460828282, 0.00537078083, 0.00194953009, -0.00356276217, -0.00127027452, 0.00650287326, 0.0173543133, -0.00152749266, -0.00420206133, -7.27327861e-05, 0.00745183323, -0.00210602535, 0.00562050706, -0.0150901284, -0.00310326577, -0.00567711145, 0.0115406858, 0.0267307051, -0.00935641304, 0.0223355219, -0.0190191567, -0.00105134782, -0.0375322, 0.0112676518, 0.00512105413, -0.00576368347, 0.0148770288, -0.00759168, 0.0229215454, -0.00400228053, 0.00924320333, -0.0155030098, -0.00152083323, -0.000516933447, -0.00298006739, 0.00988250319, -0.00704561174, 0.00389906019, -0.00188293646, 0.00590686, 0.0129791088, 0.0288483836, 0.0106616486, -0.0135584744, -0.00472482201, -0.0145440605, 0.0101954928, 7.45016878e-05, -0.00593016762, -0.0239604078, -0.00326808495, 0.00457165623, 0.0130590219, 0.0086238822, -0.0178870633, -0.00689244643, 0.0132521428, -0.000172207103, 0.00701897452, 0.0148903476, -0.0255986117, -0.00830423273, 0.00996907428, -0.0247994885, 0.0237872638, -0.00485800905, 0.0182200316, 0.0137582552, 0.00499785598, 0.0204575807, -0.0167016964, 0.0167949274, -0.0164885968, -0.0206839982, -0.0211235173, -0.00249559828, 0.0162754972, -0.00525091216, -0.00246563111, -0.00920324679, 0.00338961859, 0.00813774858, -0.00980259, -0.00835084822, -0.0075450642, -0.00236574071, 0.0202711169, 0.00843742, -0.0293012206, 0.00313489768, 0.00329638738, 0.00132354943, -0.00581029896, -0.0153831411, -0.00332468958, 0.0122266, 0.0248927195, -1.95358807e-05, -0.00444179866, 0.0130723398, 0.00162571832, 0.0121733258, 0.0109147048, 0.0112077175, 0.0123531288, 0.0161023531, 0.00774484547, 0.015303229, 0.00376587291, 0.00954953395, -0.0165019147, -0.0243732892, -0.013678343, -0.00829091389, -0.0242267828, 0.000876539387, 0.0124663375, -0.0284221843, -0.00410217093, 0.00680254493, -0.012779328, 0.00935641304, -0.0142910043, -0.0212833416, -0.0165418703, 0.0177006014, 0.0288483836, -0.0132255061, 6.2015366e-05, 0.0108148139, -0.00034170883, -0.0134452647, -0.000341292645, 0.0344156176, -0.0046715471, -0.0107681984, 0.0242267828, 0.000212787636, -0.0209370535, -0.00895019155, -0.0205641296, 0.0059334971, 0.0237339884, -0.0147305233, 0.001575773, -0.00717879925, 0.0133986492, 0.00602672854, 0.0110145956, 0.00218427274, 0.0278361607, -0.00253721932, -0.0107016051, 8.49069474e-05, 0.00815772638, -0.00373257603, 0.00876372866, 0.0109147048, -0.0257051624, 0.0104219113, -0.00369261974, 0.00165402063, 0.0154230976, 0.00816438533, 0.019804962, 0.00586357387, -0.00783141702, -0.0084241014, 0.010262087, 0.0120401382, -0.00271369261, 0.00761831738, -0.00952955615, -0.00267873099, 0.0147704789, -0.0149303041, 0.0203110743, -0.0159292091, -0.0157027915, -0.0293811336, -0.027543148, -0.0021110198, 0.0114940703, -0.0300737079, 0.0280492604, 0.00777814211, 0.0153831411, 0.00938305, 0.00918326899, 0.0145174228, 0.00757170189, -0.00435855659, 0.00670265453, 0.00850401353, -0.0043119411, 0.0192988496, 0.0119802039, -0.0213898905, -0.00622318, 0.00286852289, 0.00433857832, -0.0247861687, 0.00377919152, 0.00675925892, -0.00267706602, -7.1015922e-05, -0.00152333057, -0.0074451738, -0.0209370535, 0.0126328217, -0.0243333317, -0.0177805144, -0.0145440605, -0.00197283784, -0.0021110198, -0.0186195932, 0.000415794319, -0.0279693473, 0.025025906, 0.000699649914, 0.0106083741, -0.014584017, 0.01359843, -0.00494458107, 0.00746515207, 0.0148237543, 0.00369261974, 0.0176872816, -0.0170479827, -0.016741652, 0.00584026612, -0.00297673768, -0.0222822465, 0.0232811514, -0.00162738317, 0.0265042856, -0.0189392436, 0.00219759159, 0.0182466693, -0.0225885771, -0.00217428384, 0.0134519245, -0.0265442431, 0.0216695853, 0.0380383134, -0.00257717562, 0.00149835786, -0.000690909452, -0.0164486393, 0.00240070233, -0.0154896909, 0.00078705413, -0.00394900562, 0.00789135136, -0.00209936593, 0.0345488042, -0.0339627787, -0.004501733, -0.0219093226, -0.0106616486, 0.0175141394, 0.0214165282, -0.00321813975, -0.00186628802, -0.00122698862, 0.00335465674, -0.0190457944, 0.00795128569, 0.00253888429, -0.017021345, 0.0157294273, -0.0271569043, -0.00907671917, 0.0366798, 0.00662274193, 0.00100972678, 0.0148370732, 0.00867049769, 0.00171811704, -0.00223588292, -0.0122066224, 0.0126261627, 0.00684583094, 0.00890357513, 0.00321481, 0.00811111089, 0.0437920056, -0.00343623408, 0.0092765, -0.0290614832, 0.00966940261, 0.00083034, 0.00736526167, -0.00512438407, -0.00677590724, 0.00825761724, 0.0111943986, -0.0133586926, 0.00793130789, -0.00837748591, 0.0110545512, -0.0218826849, 0.000120388897, -0.0160757154, -0.000321106432, -0.0139713548, 0.000890690542, 0.00481472351, -0.00883032288, -0.00140346191, -0.00650953269, 0.0151167661, -0.0119802039, -0.010175515, 0.0149303041, 0.020617405, -0.0328173675, -0.00701897452, -0.0136383865, -0.024759531, 0.00645958725, -0.00801122, 0.0124996342, -0.0243866071, 0.00706559, -0.0222289711, -0.0047448, 0.0060134097, 0.0288217459, 0.00890357513, 0.00141428341, -0.0181933939, 0.014037949, -0.0313256681, 0.0225619394, 0.00731198629, -0.00869047549, -0.00738523947, -0.0271302667, -0.0142910043, 0.00143259659, -0.00212267367, 0.00319316727, 0.0391304493, -0.00936307199, 0.018273307, -0.0107415617, -0.0138381673, -0.00693906192, 0.0275964234, -0.0119668851, 0.00924320333, -0.00807115436, 0.00690576527, 0.0153565034, -0.027995985, -0.0224953461, -0.00439851265, -0.000427032, 0.0362269655, -0.0220025536, -0.0222023334, 0.0102820648, -0.00886361953, 0.0146372914, 0.000529836, 0.0147571601, -0.0102687459, -0.00699233683, -0.0168748405, -0.00569376, 0.00106716377, -0.0238538571, -0.0147305233, 0.0106616486, -0.0197650064, -0.00901012588, 0.0115873013, -0.0170080271, 0.00486466847, 0.00427198503, -0.00111377938, -0.00916995, 0.003962324, 0.0105950553, -0.0111943986, 0.00962278713, -0.00710554607, 0.0283955466, 0.00205275021, -0.0032814038, 0.000644293905, 0.00145423959, 0.00411216, 0.0298073329, 0.00205608, -0.0169147961, -0.00676591834, 0.0102754058, -0.00282357214, 0.0240669567, 0.0122998534, -0.00378918066, 0.00399562111, 0.00720543647, 0.0105218021, 0.00981590897, -0.00936973095, 0.0298606083, 0.00197283784, 0.00426865509, -0.0165019147, 0.0153298657, 0.0209636912, 0.0138248485, 0.010355318, 0.00423868792, -0.00368929, -0.00666935742, -0.0239604078, -0.0226818081, 0.00489796558, 0.00389906019, 0.0329239182, -0.00786471367, 0.00258882949, 0.00990248099, -0.00583693665, 0.0188460127, -0.000139014315, 0.00905674137, 0.0128592402, 0.000722957659, 0.0344422534, 0.0155296475, 0.00208771206, 0.00340460218, -0.0236141197, -0.0334566683, -0.00202611275, 0.00066676928, 0.00509774638, -0.0157827027, -0.00715882098, 0.0164885968, 0.0130257243, -0.0013210522, 0.00400561, -0.00199614558, -0.0162621774, -0.0134252869, -0.00877704751, 0.00129108503, 0.0134652434, -0.00568377087, -0.019898193, 0.00990248099, -0.00735194283, -0.0119136097, 0.0200180616, -0.00161489681, 0.0084440792, 0.0355610289, -0.00871045422, -0.0436321832, -0.00121450226, 0.0194719937, 0.00695238076, 0.0182466693, -0.032950554, 0.0244931579, 0.0237073507, 0.0152765913, -0.00094896, -0.0103952745, 0.00672263233, -0.0176739637, -0.0215630345, 0.00209437148, 0.0177272391, -0.0134785613, 0.0206706803, 0.0171678513, 0.00441849092, 0.0106616486, 0.0169414338, 0.014037949, -0.00769157056, 0.0100489873, 0.0177938323, 0.00881034415, -0.00958949048, -0.0113009484, 0.000637634541, -0.00192455749, -0.00893687271, -0.0264909677, 0.014850392, 0.00719877705, -0.00272035203, -0.000829091354, 0.00268539041, 0.0168482028, -0.00997573417, -0.00400228053, -0.00110129302, -0.00781143922, 0.017380951, -0.0128126247, -0.00585025502, -0.0166351032, -0.00664272, -0.00914997235, -0.0209370535, -0.0153165469, -0.00424867682, 0.0122332601, 0.0186595507, 0.0270636734, 0.000640131766, -0.00145090988, -0.0197916422, -0.0131522529, 0.00264543411, -0.0111877387, 0.00616657501, -0.0130257243, 0.000831588637, -0.00069382292, -0.00743185496, 0.0118603352, -0.0164885968, -0.00620986102, -0.0103419991, 0.0262112748, -0.0204043053, 0.0196984112, 0.0110678701, 0.0202977546, -0.00427531451, -0.0016948093, -0.00335632171, 0.0240802765, -0.00385910389, -0.00544736348, 0.0117338067, 0.00725871138, -0.00327973906, 0.00324977189, 0.0364933386, -0.00535080256, 0.0437653698, 0.00126361521, -0.0259449, -0.0137049798, 0.0255586561, 0.0421671197, -0.00569043029, 0.00322979363, 0.0103020426, 0.011973544, -0.0282889977, -0.0102421083, -0.032604266, 0.0130590219, 0.0211767908, -0.0121866446, 0.0224021152, -0.0179536566, 0.00517765898, 0.0217628162, -0.0233743824, -0.00158409728, 0.00926984102, 0.0192722119, 0.00608666288, 0.00215763529, 0.00570374914, 0.00897016935, -0.0173143577, 0.00796460453, -0.0133653525, 0.0128659, -0.0100489873, -0.0133586926, 0.00681919325, -0.00874375086, 0.00333967316, 0.0155030098, -0.0059235082, -0.00289516035, 0.00561717711, -0.0205907673, 0.00195951923, -0.00988250319, -0.000712552399, -0.0135518145, -0.00366931199, 0.0136517053, -0.0118403574, 0.00526090106, -0.0010014025, 0.0143575985, 0.00463492051, 0.0147971166, -0.0189658813, 0.0133520337, 0.0024306695, -0.0151833603, 0.00153581682, -0.0210835598, 0.0109147048, -0.00141844549, -0.0308461953, 0.0199647862, 0.017021345, 0.00442848, 0.00978927128, 0.0251324568, 0.0125262719, -0.0236274395, 0.01359843, -0.00227084453, -0.00571040856, -0.0116072791, 0.0142776854, -0.037265826, 0.0047814264, -0.00773152662, 0.00255886232, 0.00521761505, -0.00124613428, 0.00341292634, 0.0130323842, -0.00571373804, -0.00259382394, -0.0173543133, 0.00915663131, 0.0142643675, 0.000648456, -0.0202178434, 0.0221224222, 0.00147505011, -0.0149169853, -0.0101089217, 0.00381914782, -0.0206573606, 0.00594015652, -0.0208970979, -0.0105084833, 0.00211434951, 0.0134519245, -0.00403557718, -0.0118070599, 0.00789135136, -0.00148920121, -0.0106483297, -0.0108547704, 0.0214831233, -0.032311257, -0.00228249864, 0.000899014762, -0.00613327837, -0.0201112926, -0.00608999236, -0.00214598142, -0.00401559938, 0.0279160719, -0.00979593117, -0.00597678311, -0.00508109806, 0.0152632724, -0.0244931579, -0.0229881406, 0.0063264, 0.00243399921, -0.0113808606, -0.00733196456, -0.0221756976, -0.013771574, 0.0101355584, -0.0107948361, -0.00569376, -0.0312990323, 0.0226951279, -0.0187527817, -0.0119202696, 0.00379916979, -0.00134269521, 0.00456832675, -0.00487798732, -0.0199115109, 0.00417875359, 0.0261180438, 0.000890690542, -0.0115606636, -0.000526922522, -0.0119269285, -0.0121133914, 0.0271968599, -0.00507443864, 0.0125662284, -0.0309527442, -0.0261313617, 0.00287684705, 0.0339627787, -0.0100023709, -0.0245464314, 0.0192855317, -0.0317518674, 0.00689244643, -0.0140912235, -0.0294876825, -0.0203510299, -0.027183542, -0.00221923459, -9.4791947e-05, -0.00109546608, 0.00952955615, 0.00404889602, -0.00464490941, 0.00615325663, -0.000315279467, -0.0011054551, 0.00663606077, -0.0230280962, -0.0299937949, 0.00732530514, -3.29326576e-05, 0.00415211637, 0.00021996726, -0.0127526904, 0.0327640921, 0.0156228784, 0.00242401, -0.00769157056, 0.0216296278, -0.000272201694, 0.00237905933, -0.0211235173, 0.0238671768, -0.0235874821, -0.0129924277, -0.00749844871, -0.0125329318, -0.00512105413, 0.0109812981, -0.0212167483, 0.0029617541, 0.00420872075, 0.0231479649, -0.00561051769, 0.003352992, 0.0361470506, 0.0209104177, -0.00857726671, -0.00351614645, -0.0236673951, -0.012060116, 0.00554059446, 0.00807115436, 0.00212933309, 0.00650620274, 0.000739606097, -0.0219093226, 0.0154896909, 0.00232079, 0.00650620274, -0.0242001452, -0.0105550988, -0.0145973358, -0.00369927916, -0.00685249, 0.0051943073, -0.0343357027, -0.0027320059, -0.00587023329, -0.00122282654, -0.00599676138, -0.0101954928, -0.0146639291, 0.00468486547, 0.0126528, 0.0310592949, -0.0125395907, 0.00920324679, 0.00493792165, 0.0149968974, -0.0170613024, -0.0306330938, 0.00705893058, -0.00978261232, -0.0121666659, -0.00863054115, 0.0386509746, -0.0167949274, 0.00516101066, 0.0140246302, -0.0126860971, 0.0186195932, 0.0361470506, -0.0214165282, -0.0168215651, 0.00723207416, 0.0144508295, 0.00639965292, -0.0167283341, 0.0186728686, -0.0112809697, 0.0135451555, 0.00155496248, -0.008464057, -0.000803702511, -0.0113742016, 0.0188726503, 0.00604337687, 0.0128659, 0.00401559938, -0.028715197, 0.0434457213, 0.00371925719, -0.0296475086, -0.0105084833, 0.0124330409, 0.00222589378, 0.0213366169, 0.0127593502, 0.0453103445, 0.00104219117, -0.00695238076, -0.00473481091, 0.0244398825, 0.0101488773, -0.00316819455, 0.0166351032, -0.00956951268, -0.000873209676, 0.00801122, -0.0168082453, -0.0103087025, 0.0247062575, 0.00516101066, -0.00636302633, 0.00590020046, 0.0226951279, -0.0233211089, 0.0101621961, 0.0132255061, -0.00526423054, 0.00373590575, 0.0261713173, -0.024306694, 0.00794462673, 0.00850401353, 0.00599010196, -0.0159824844, -0.0167283341, -0.0171678513, -8.03806543e-05, -0.00988916215, 0.0159158912, -0.0226818081, 0.016208902, 0.0294610467, 0.0220691469, -0.0222822465, 0.000826177886, 0.00797126442, -0.00220924546, 0.00189126062, 0.0341758803, -0.0282889977, 0.00273866532, 0.0225619394, 0.0115540046, 0.0157294273, -0.0165418703, 0.0111943986, 0.00745849265, -0.00800456107, -0.00595347537, 0.0270503536, 0.00713218376, -0.0123131722, -0.0154630532, -0.00908337813, -0.0015366493, -0.0106283519, 0.02646433, -0.0135185178, -0.0125595685, -0.0151833603, 0.0011162766, -0.00988916215, 0.0159025714, 0.0185663197, -0.016302133, -0.00789801124, 0.00775816431, 0.00526090106, -0.0172610823, -0.031592045, -0.00433524884]
05 Jun, 2024
Node.js Stream readable.resume() Method 05 Jun, 2024 Node.js streams are powerful tools for handling data transfer efficiently, especially when dealing with large datasets or real-time data. The readable.resume() method is a part of the readable stream interface, playing a crucial role in managing the flow of data. This article will delve into what readable.resume() does, how it works, and when to use it. Table of Content What is a Readable Stream What is readable.resume( )How Does readable.resume( ) WorkWhat is a Readable Stream In Node.js, a readable stream is an abstraction for a source of data that you can read from. Examples include reading from a file, receiving HTTP requests, or processing data from other data sources. Readable streams are instances of the Readable class, which is part of the stream module. Readable streams can operate in two modes: Paused Mode: The stream does not emit data events and you must explicitly call methods like read() to get data.Flowing Mode: The stream emits data events as soon as data is available, and it is automatically consumed.What is readable.resume( )The readable.resume() method is used to switch a readable stream into flowing mode. When a stream is in flowing mode, data is read from the underlying source and provided to your program without requiring explicit calls to read(). How Does readable.resume( ) Work ?When you call readable.resume(), the stream starts emitting data events, delivering chunks of data to the provided listeners. This method is particularly useful when you want to process data as it becomes available, rather than waiting for the entire dataset to be loaded. Syntax: readable.resume()In the below example: A readable stream is created from a file named example.txt.The data event listener logs each chunk of data received.The end event listener logs a message when the stream ends.The resume() method is called to switch the stream to flowing mode and start processing data immediately.const fs = require('fs');// Create a readable stream from a fileconst readableStream = fs.createReadStream('example.txt');// Handle the data eventreadableStream.on('data', (chunk) => { console.log(`Received ${chunk.length} bytes of data.`); console.log(chunk.toString());});// Handle the end eventreadableStream.on('end', () => { console.log('No more data.');});// Resume the stream to start flowing datareadableStream.resume();Example 1: Below examples illustrate the use of readable.resume() method in Node.js. javascript // Node.js program to demonstrate the // readable.resume() method // Including fs module const fs = require('fs'); // Constructing readable stream const readable = fs.createReadStream("input.text"); readable.on('data', (chunk) => { console.log(`${chunk}`); }); // Calling pause method readable.pause(); // Calling resume method readable.resume(); console.log("Data starts flowing again!!"); Output: Data starts flowing again!!Hello!!!Example 2: Below examples illustrate the use of readable.resume() method in Node.js. App.js // Node.js program to demonstrate the // readable.resume() method // Include fs module const fs = require('fs'); // Create readable stream const readable = fs.createReadStream("input.text"); // Handling data event readable.on('data', (chunk) => { console.log(`${chunk}`); // Calling pause method readable.pause(); // After this any data will be displayed // after 3 sec. console.log('No additional data will be ' + 'displayed for 3 seconds.'); // Using setTimeout function setTimeout(() => { console.log('Now data starts flowing again.'); // Calling resume method readable.resume(); }, 3000); }); // Displays that program // is ended console.log("Program ends!!"); Output: Program ends!!Hello!!!No additional data will be displayed for 3 seconds.Now data starts flowing again.When to Use readable.resume()Processing Data in Real-Time: Use resume() when you need to handle data as soon as it arrives, such as streaming media or real-time analytics.Avoiding Memory Overhead: By processing data in chunks, you avoid loading the entire dataset into memory, which is beneficial for handling large files.Compatibility with Event Listeners: If you have set up data event listeners and want to ensure they start receiving data, resume() will trigger the flow.Important ConsiderationsError Handling: Always attach an error event listener to handle potential errors in the stream.Backpressure: While resume() switches the stream to flowing mode, be aware of backpressure mechanisms that help manage the rate of data flow, preventing overwhelming the application.Pausing a Stream: If you need to temporarily stop the flow of data, you can call readable.pause().ConclusionThe readable.resume() method is a crucial tool in the Node.js streaming API, enabling efficient, real-time data processing. By understanding how to switch between paused and flowing modes, you can better manage data flow and build performant, scalable applications. Remember to handle errors gracefully and consider backpressure when dealing with high-throughput data streams. Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method
https://www.geeksforgeeks.org/node-js-stream-readable-resume-method?ref=asr10
CSS
Node.js Stream readable.resume() Method
CSS pause-before Property, CSS, How to Play and Pause CSS Animations using CSS Custom Properties ?, Node.js Stream readable.resume() Method, Node.js Stream readable.pause() Method, CSS Tutorial, p5.js | pause() Function
GeeksforGeeks
[-0.0302309804, 0.0127361249, -0.0112693924, 0.0506185591, 0.0139258076, -0.00107254798, -0.0304102469, 0.0237447638, -0.027199734, 0.0342889391, 0.0219683889, 0.0553446934, 0.0190186277, -0.0317954943, 0.00222658087, -0.0276397541, -0.014031738, 0.0104463929, -0.00911818538, 0.007908131, -0.0215772595, 0.0167859346, -0.017177064, -0.00140256272, -0.00700364634, 0.00950116571, -0.0115138479, 0.0193771627, -0.0275093764, -0.0416226, 0.00859668, 0.0185297169, 0.00470984029, -0.0366683044, -0.0138443224, -0.00548802316, 0.0259937532, 0.0101693431, -0.0451427586, -0.0230602901, -0.0306058116, 0.00639658188, -0.0285686832, 0.00736218086, -0.0238588434, 0.0194423497, -0.0396343619, -0.0230602901, 0.0151317874, -0.0179104302, 0.0416226, -0.000560210203, -0.000325685862, -0.0127442731, 0.00934634358, -0.00966413505, 0.00899595767, -0.0300191194, -0.0313717723, -0.0391128585, 0.0146102821, -0.0250159334, 0.0213328041, -0.00626620604, 0.0231417753, -0.0123449964, -0.0234677158, 0.0121168373, -0.00879224483, -0.00190165907, -0.0269552786, 0.0473591536, 0.0280634761, 0.0226528645, -0.00312088, 0.00515393401, 0.0394713916, 0.040547, -0.0293183476, -0.000899392064, -0.0371246226, -0.00174581876, -0.0207461119, 0.00282753375, 0.0173400342, -0.0302635748, -0.0129316887, -0.0216261521, 0.0720980391, 0.0159221925, 0.0382980071, 0.0265967436, 0.0240544081, -0.0264174771, 0.00441241916, 0.0332785249, 0.0212513208, -0.0169000141, -0.0143413814, 0.0394062065, 0.0142273027, -0.00500726094, -0.00181711826, -0.0227832403, 0.00897151232, -0.0036077539, 0.0350386, -0.000207787059, 0.0246411, 0.0327733159, 0.00919967052, -0.0171118751, -0.0271019526, -0.0203549843, -0.0200453401, 0.00857223477, 0.0264989622, -0.0266456343, 0.0253581703, 0.0248692594, -0.00336533552, 0.0108864121, 0.0227343496, 0.088721, -0.0380046628, 0.0706639, 0.00994118489, -0.0267597139, 0.000369993388, 0.0230114, -0.0188393611, 0.0120353522, -0.0229951013, -0.0174215194, 0.00708513148, 0.00682030478, -0.0039988826, 0.0308176726, -0.0035710854, -0.0158407073, -0.0301331989, -0.0259448625, 0.0187415779, -0.00331440731, 0.0148058468, 0.0257981904, -0.0341259688, -0.00923226401, -0.00855593756, 0.0144717582, -0.00768404687, -0.0278842095, -0.00389906322, 0.0299376342, 0.00408851588, -0.0326103456, -0.00734180957, -0.0177148655, -0.0221313592, 0.00262993225, 0.00662066601, -0.052183073, 0.00141580403, 0.0178941321, 0.00164803665, 0.0317791961, 0.0499014892, 0.0035364544, -0.0064128791, 0.0359186418, -0.0487281047, 0.0290738922, -0.0411662832, 0.00359756825, -0.00150441902, -0.0143495305, 0.0409381241, 0.0268249027, -0.0107071446, 0.0112693924, -0.00622953754, -0.0252929814, 0.00750885392, -0.0136243124, 0.0393084213, -0.00981080905, 0.0272812191, 0.000149474276, -0.035006009, -0.0127198277, -0.026776012, -0.00643732445, 0.0538779646, 0.00338978111, 0.0136161642, 0.0419811346, -0.0412640646, -0.00789590832, 0.0320236534, 0.00254641, -0.0347452573, -0.0177474599, -0.035853453, 0.00888187811, -0.00412925845, -0.00755774509, 0.00511319144, -0.018399341, 0.0598426722, -0.0362119898, -0.00147997355, -0.0249344483, 0.00407833047, 0.00194036448, 0.0433500856, -0.0112530952, -0.0187904686, -0.0283079315, -0.0300680101, -0.0105523234, -0.035853453, -0.0142354509, 0.0106175113, 0.0130865108, -0.032056246, -0.0344193168, -0.0300191194, -0.00355071411, 0.0292368624, -0.000749663101, -0.0197194, 0.0658399761, 0.0130050257, -0.0118397884, -0.00355275138, -0.00816888362, 0.00429426599, 0.00192610454, -0.002029998, 0.00747218588, 0.0174378157, -0.0162155386, -0.0208927859, 0.0205342509, -0.0217565279, -0.000773090112, -0.0209579729, 0.0682519376, 0.00459576072, -0.0254559517, -0.0326103456, 0.00477095414, 0.00744366599, 0.0182200726, -0.0741840526, 0.0421441048, 0.00620101765, 0.00343867205, 0.00459576072, -0.00936264079, 0.0493147969, 0.00835222472, -0.0152132725, -0.00688549271, -0.0223758146, 0.00106032519, 0.0188067667, -0.0138606196, 0.011383472, -0.00114792166, 0.041231472, -0.00286012772, 0.0266782288, -0.00294568716, -0.0107478872, 0.0114242146, -0.0334414952, -0.0251789037, 0.0314532556, -0.00141071121, 0.00968858134, 0.0139095103, 0.0134531939, 0.0102508282, -0.0411988795, -0.0224247053, 0.051889725, -0.0143495305, -0.0637539625, 0.0147814015, -0.0275256746, -0.0219194982, 0.0232884474, 0.0290250015, 0.0341585651, 0.00884928461, -0.0234351214, -0.00105726952, 0.0122472141, 0.00881669, 0.00325736776, -0.0082544433, 0.0131272534, -0.0183178559, -0.0154088363, -0.0107397391, 0.0172585491, 0.0159710832, 0.0168511234, -0.0232558548, 0.0391128585, -0.00207888917, -0.00958265085, -0.050097052, -0.00677548815, 0.00306587783, 0.00743959146, 0.0334740877, -0.00471391436, -0.0138035798, 0.00114588451, -0.0117420061, -0.0322518125, 0.035429731, 0.0388195105, -0.0306872968, -0.0048035481, 0.0114405109, 0.013811728, -0.00381554081, -0.0180896968, -0.0309806429, -0.0186763909, 0.00154516159, 0.00602175063, 0.00165822229, -0.0581477843, 0.025553735, -0.00309236045, 0.00358534534, -0.0411662832, -0.0500318669, 0.00419648364, -0.0210231617, 0.0469354317, 0.0195564292, -0.0307198912, 0.0302798711, 0.0150828958, 0.0179756172, 0.00155636587, 0.0281123668, 0.03150215, 0.00233251159, 0.0196868051, -0.00789590832, 0.00505207758, -0.0384935737, -0.00994118489, 0.00201573828, 0.0300843064, -0.0020004597, -0.0292205643, -0.00573655264, 0.00086832582, -0.0506185591, -0.0202246066, -0.0263033975, 0.0287642479, 0.0160199758, -0.0166311134, 0.00919967052, -0.000781238603, -0.0130457683, -0.0108375214, -0.00985155161, 0.00670215115, -0.00931374915, 0.00451835, 0.012882798, -0.00265845214, 0.0367009, 0.021186132, 0.0119783133, 0.000196200897, 0.000475924055, -0.00955820456, 0.0147406589, -0.00149830768, 0.0116605209, -0.0400254913, 0.014316936, 0.00205342518, -0.0361142047, 0.0257981904, 0.00858038384, -0.00204222091, 0.0333111174, 0.0243966449, 0.00685697282, -0.0310132373, -0.0163214691, 0.0072929184, 0.0344519094, -0.010381205, 0.0229136162, -0.028633872, -0.0255211405, 0.0168674197, -0.00819332898, 0.020469062, -0.0062621315, -0.0209579729, -0.00973747205, 0.00574062672, 0.057039585, 0.0116360756, 0.0436760262, -0.0249344483, -0.000602989923, -0.000110832501, 0.0147732524, -0.0214468837, 0.00622953754, -0.0201594196, 0.0196705088, -0.0174378157, -0.0342889391, -0.00820962619, -0.0185949057, -0.0250648241, -0.000336635421, -0.0154006882, -0.00763923, -0.00924856123, -0.0446212515, 0.0255374368, 0.00996563, -0.0193282701, -0.0102100857, -0.0280797724, 0.00907744281, 0.0134939365, -0.0227017552, -0.00736625493, 0.0468050539, -0.0378742851, 0.00758219045, -0.00834407657, -0.00769219548, -0.0305406246, 0.0181548856, -0.035136383, 0.0129968766, 0.00457946397, -0.0132657783, -0.011880531, -0.00431056274, -0.0235654972, 0.00610323576, 0.0127116786, 0.0117664514, 0.00954190828, 0.00573655264, -0.000194418404, -0.0309480503, -0.019540133, 0.0124427779, -0.00660436926, -0.00419648364, -0.00801813602, 0.00293142721, -0.0106256604, 0.0473591536, -0.0119457189, -0.00827888865, 0.0212350227, -0.0190512221, 0.0147732524, -0.0401884615, 0.0176985692, -0.014316936, 0.0392106399, -0.0215772595, -0.0155799557, -0.0101367496, 0.0440997481, 0.0039927708, 0.0159466378, -0.0438064, 0.0183015577, 0.037646126, -0.0436760262, -0.0122064715, -0.00815666094, -0.00792850275, -0.0043798252, -0.0195727255, 0.00992488768, -0.000108986351, 0.0112123527, 0.0227180514, 0.0335392766, -0.0119457189, -0.0224573, 0.0138198771, -0.0159466378, 0.0069140126, -0.0431545191, -0.0571047738, -0.0304917321, 0.0255211405, -0.0135428272, 0.0342889391, -0.00463650329, -0.0132087385, -0.00546357734, 0.0117827486, -0.0110086398, 0.044588659, 0.0108212242, -0.0163785089, 0.00578136928, -0.00638028514, -0.037646126, -0.000552571, 0.00753737381, 0.0311762076, -0.013094659, -0.0224898942, 0.0124835204, 0.0338652171, 0.0416226, 0.0467398651, 0.0364727415, -0.00923226401, 0.0078796111, -0.0142354509, 0.0177800544, 0.0177800544, -0.0383957885, 0.0332622267, -0.033637058, -0.0113508776, -0.0232069623, 0.0452079475, 0.00190777041, -0.0108293723, 0.00151460466, -0.00627435464, -0.00250770454, 0.0197356958, 0.0325940475, 0.018969737, -0.00545950327, -0.00743551739, -0.033001475, 0.0158570055, -0.000997683499, 0.00233658589, -0.00928115565, -0.0125894519, 0.0436760262, -0.00521912193, -0.00596878538, -0.0203875769, 0.00232640025, 0.00156145869, -0.0125487093, -0.00252400176, -0.00321866223, 0.00243436801, 0.0223758146, -0.0311762076, 0.00578544382, -0.00451020151, 0.0361468, -0.0238914378, 0.0138280252, 0.0125405602, 0.00391128566, -0.00435945392, 0.0145043517, 0.00375850126, -0.0131109562, 0.00915892795, -0.0117012635, -0.0348430388, -0.0121901743, -0.0113427294, 0.00490540452, -0.0181548856, -0.00992488768, 0.0105523234, 0.0023447345, 0.0216587447, 0.0124264816, -0.00631917128, -0.0266945269, -0.0194423497, 0.0236795768, 0.0340281874, 0.0158895981, 0.0285360906, -0.0324799679, -0.000491202518, 0.00779812643, -0.0103975013, -0.000423468, -0.00370146171, 0.0137628373, 0.0180245098, 0.0477828756, 0.0303613562, -0.01539254, -0.00743551739, 0.0031921796, 0.0440019667, -0.0114894025, 0.0260263477, 0.014243599, -0.0074151461, 0.0123368474, -0.0230114, -0.000971200818, 0.0102182347, -0.0289761089, -0.0329851769, 0.0052598645, -0.00183239672, -0.0114568081, -0.0239729229, -0.0102100857, -0.0227017552, 0.0242336746, 0.0361468, -0.0047668796, -0.00759033905, 0.0078755375, -0.0082259234, 0.0102508282, 0.00519875064, 0.00200351537, 0.0914589, -0.00872705691, 0.0182852615, -0.0440671556, 0.0390476696, 0.0147976978, -0.0366683044, -0.0204853602, 0.000336890051, 0.00719921058, 0.0509119034, -0.0175681915, -0.0134939365, 0.0357556716, -0.0185786076, 0.00293346448, -0.00446945895, 0.00949301664, -0.0140398862, 0.0231254771, 0.0117094116, 0.0261404272, -0.0199964494, 0.044588659, 0.0491192304, 0.021186132, 0.0375483446, -0.0229462106, -0.0163051728, 0.0256515164, 0.0309317522, -0.0191164091, -0.00509282, -0.0263359919, 0.00390110025, 0.0116849663, 0.00880854204, -0.0245759133, -0.00204323954, -0.0107641844, 0.0109190065, -0.00385628338, -0.00426167203, -0.0401884615, -0.0290250015, -0.0161014609, 0.00223880378, 0.0205016565, 0.0253255758, 0.0331155546, 0.00437575113, 0.0240544081, 0.0089878086, 0.00778590329, -0.0113182832, -0.0106093632, -0.0205668453, -0.0338000283, 0.00600545341, -0.0357556716, -0.00773701258, -0.00753737381, 0.0457294509, -0.00473835971, 0.00992488768, -0.0167044494, 0.0117094116, 0.0146591738, 0.00794479903, -0.0179756172, 0.0185460132, -0.00435538, -0.0106256604, 0.00940338336, -0.0170955788, -0.0201920141, 0.00974562, -0.00347330328, -0.0309317522, 0.0176985692, -0.0257167052, -0.0276397541, -0.035006009, -0.0165577773, -0.0207135174, 0.006763265, 0.00138219143, 0.0189045481, -0.00528023578, 0.023761062, 0.00126607507, -0.0286664665, 0.023549201, -0.00304143224, 0.0119375708, 0.0084092645, 0.0151806781, -0.014602134, 0.00352626876, -0.0136813521, 0.00404166197, 0.00109088211, -0.0262708031, -0.00444093905, 0.0373201855, -0.0280634761, -0.0276723467, -0.0249018539, -0.00851519499, 0.0156451426, -0.0457620434, -0.00579359243, 0.00378294685, 0.0170140937, -0.00252807583, 0.0322844051, 0.0352993533, 0.0337674357, 0.016248133, -0.0341585651, 0.0054758, 0.0188882519, -0.0301006045, -0.0252929814, -0.00324921915, -0.0100552645, -0.0204364695, 0.00749663124, 0.0192304887, 0.0338652171, -0.0146428766, 0.0202409048, 0.0102508282, 0.0070729088, -0.0415574126, -0.012385739, 0.00959079899, -0.00428204332, 0.0325451568, 0.00991674, -0.00977006648, 0.0171607677, -0.00729699293, 0.0145858368, -0.0211535376, 0.0263685863, 0.033506684, 0.016459994, 0.0104463929, 0.0160607174, -0.0414922237, 0.0216587447, -0.013102808, -0.00444501359, 0.00482391939, -0.0122309169, -0.0383306034, 0.0338652171, -0.0296931788, 0.0118153431, 0.0166311134, 0.00536172092, -0.00547987456, -0.0169163123, -0.0309480503, -0.0223595183, -0.000988516374, -0.0208927859, -0.00623361208, -0.0240381118, -0.0144228665, -0.00153090176, -0.0220987648, 0.0166229643, 0.0175518952, -0.0131109562, 0.0143576786, 0.0364727415, -0.0189860333, 0.0157347769, -0.0431871153, -0.0489888564, 0.016182946, -0.00794072542, 0.0118397884, 0.0209090821, 0.0321540311, -0.00431871135, 0.0165414792, -0.0636887699, 0.0245433189, -0.0136569068, 0.0136406096, -0.0012670937, 0.0345822871, -0.00785109121, 0.0244618338, -0.00272160303, -0.00361590227, -0.00078735, 0.0041048131, 0.00302920933, 0.000222301605, 0.00838481914, 0.00355682569, 0.00914263073, -0.0183504503, 0.0127198277, -0.0225061905, -0.0136569068, -0.00128339068, -0.0166637078, 0.00158692279, -0.00407425594, -0.033963, -0.00632732, -0.0030740262, 0.00671437429, 0.012100541, -0.0133961542, -0.0324962661, 0.00160016411, 0.0033388529, 0.00892262068, -0.0212676171, 0.000687021413, -0.00125487091, -0.00981895719, -0.00938708615, -0.0354623236, 0.0142110055, 0.00277253124, 0.0008357318, -0.0196053199, -0.0356252939, -0.00557765644, -0.00904484838, 0.0267597139, 0.000156731534, -0.0336044654, -0.0409055315, 0.0223106258, -0.0196053199, -0.0270856544, -0.0077166413, 0.0277864262, -0.0254559517, -0.0105034327, 0.00532505289, 0.00849075, -0.0391780473, 0.00445316173, 0.041948542, 0.00615212694, -0.0101286005, 0.00333477859, 0.00379720679, -0.00301698665, 0.000573960831, -0.000486109697, -0.0219683889, 0.0178126469, -0.0266945269, -0.00572025543, -0.0235654972, 0.0114242146, -0.0108538186, -0.0101530459, -0.00627028, -0.0240381118, -0.0178126469, 0.00499096373, -0.00150747481, -0.0210720524, 0.0277049411, 0.00682030478, 0.0159140453, -0.0169977974, -0.00453464687, 0.0125894519, 0.011521996, 0.00743551739, -0.00242214534, -0.0105767688, 0.0245107245, 0.000536274, 0.0139095103, 0.0348430388, 0.0245759133, 0.0129479859, 0.00917522516, -0.0265967436, -0.00445723627, -0.0410359092, 0.0400580876, -0.0239240322, -0.00425759749, 0.0227995366, 0.00943597686, -0.0160607174, 0.0124590751, -0.0439041853, -0.0190023314, -0.0436434299, 0.0240055174, -0.0110493824, 0.0455990732, -0.00438797381, -0.0194749441, 0.00467724586, -0.0170466881, -0.0212187264, -0.0514334105, -0.0247225855, -0.010381205, -0.00671844836, 0.00902855117, 0.0270367637, 0.0105441753, 0.0162888765, -0.011310135, 0.0180734, -0.0127279758, -0.0125813028, -0.0194260534, -0.00324107078, -0.00509282, 0.0074151461, -0.0385261662, 0.00285605364, 0.0297909603, 0.0156206982, 0.0232884474, -0.0230765864, -0.0330666639, 0.0138361733, -0.00854778942, -0.00259326398, -0.0146102821, 0.0192141924, -0.00401110528, 0.016182946, -0.0446864404, 0.0199801512, -0.0223269239, -0.0127605703, 0.00785924, -0.0116442237, 0.0032247738, -0.00231010327, 0.0252277944, -0.00823407155, 0.00195768, 0.0514334105, -0.000288762909, -0.0365053341, 0.0102019375, -0.0377439074, -0.0302798711, -0.000137760784, -0.00281327381, 0.0572025552, 0.0135835698, 0.0308991577, -0.0262545068, -0.0205179546, 0.00748848263, -0.0353971384, -0.000615722, -0.0188556574, -0.0324636735, -0.00437167659, 0.0338326246, -0.000712485518, 0.00704438891, 0.00972932391, 0.00200758968, -0.0061847209, -0.0218706075, 0.0265315566, -0.0200290438, 0.0126546398, 0.00538616674, -0.00631102268, -0.0039927708, 0.00177943136, -0.0142598962, -0.0268900897, -0.0174867064, 0.000581090804, -0.00851519499, -0.00119273853, 0.0168511234, -0.00715846801, -0.0502926186, -0.00377276121, -0.0029986524, 0.00820962619, 0.0103649078, -0.00321866223, 0.0121412836, -0.0143821239, 0.00783886854, 0.0238588434, -0.000611647672, -0.0287968423, 0.0314858519, -0.000126492916, 0.00555728516, 0.0107152937, -0.000123055273, -0.00297216978, 0.0241032988, -0.0100715607, -0.014316936, 0.0311762076, -0.00292735291, -0.0355601087, -0.0308665652, 0.0414270349, -0.0260263477, -0.0264663678, 0.0309480503, 0.00889002718, 0.00604619598, 0.0209905673, 0.0426330157, -0.0032594048, -0.0103567587, -0.00488910731, -0.0135591244, -0.013885065, 0.00410277583, -0.00758626498, 0.00115912582, -0.00638435921, -0.0313554741, 0.00849075, -0.00494614709, 0.0243803486, -0.00418018689, -0.00555321109, -0.00865372, -0.00703624031, -0.0120679466, -0.0147406589, -0.0098352544, -0.0141539657, 0.0135102337, -0.0107723335, -0.00969672948, -0.0108456695, 0.0106256604, 0.00475465693, 0.0889165625, -0.0127524212, 0.00988414511, -0.0128176101, 0.00255863275, -0.0167044494, -0.0267271195, 0.0136650549, 0.0202897955, -0.0194260534, 0.00912633352, -0.0104382439, 0.0147243617, 0.0193282701, -0.0440671556, 0.00900410581, 0.00744366599, -0.0198334791, -0.000981895719, -0.0176985692, 0.00213491032, 0.0116931153, -0.0190675184, -0.0139746983, 0.0159547869, 0.0217239335, 0.00134654169, -0.00622953754, -0.0146917673, 0.00552876573, 0.00866186805, 0.00722773047, 0.0246573985, 0.00405795919, 0.0290738922, 0.0525416061, -0.00243029371, 0.0108945612, -0.00251585315, 0.0212350227, 0.0128013128, -0.0307035949, -0.0105523234, 0.0396017693, -0.00790405646, -0.0103730559, -0.013388006, -0.014528797, -0.028780546, 0.0537475869, -0.00376664987, -0.0131924413, -0.00266863778, -0.0346148796, 0.00906929374, 0.0102182347, -0.000312189863, -0.00412314711, 0.0489562601, -0.0233373381, 0.00271752873, 0.000249038916, 0.00278067985, -0.00734995818, -0.0290901884, -0.00666548312, -0.0109923426, 0.00583026046, -0.0149932625, -0.014887332, 0.0040762932, -0.00358534534, 0.0025688184, 0.016606668, -0.00684882468, -0.0144391637, -0.00827074, 0.00734588364, 0.00827888865, -0.000473886903, -0.00470984029, 0.0213165078, -0.0109923426, 0.0043798252, 0.0138932131, 0.00283975643, -0.00308217481, -0.00353441713, 0.0187089834, -0.00739477482, -0.00563469622, -0.00949301664, -0.0282101501, 0.0126627879, -0.000213643812, -0.0144391637, 0.037222404, -0.0148628866, 0.0196542107, 0.000298439263, 0.0284709018, 0.029057594, 0.0279331, -0.0129479859, -0.00364442216, -0.0154740252, -0.0064495476, -0.00299457833, -0.00368109043, 0.0121168373, 0.00734995818, 0.00963154156, 0.000755774498, -0.0067999335, 0.0104952836, -0.02076241, 0.0452079475, 0.0270204674, -0.0227017552, 0.0147488071, -0.0283568222, 0.0418181643, 0.00166025932, 0.00545542873, 0.0125161149, -0.00157266285, 0.0102997199, 0.00272160303, 0.00834407657, -0.00198110705, 0.0124998176, -0.00595656224, -0.0164192524, 0.00975376926, 0.0149036292, 0.0105849179, -0.0025341874, 0.00458353804, 0.0330666639, -0.00275216, 0.0219520926, 0.0213816967, -0.0229625069, -0.00871076, 0.0285686832, -0.00154414307, -0.027379, -0.00111430907, 0.00153192028, -0.00655955216, -0.0194423497, -0.0188719537, 0.00671844836, 0.012092392, 0.0189208463, -0.00859668, 0.00648214156, -0.0177474599, -0.0336044654, -0.00429426599, -0.00654325541, 0.0398951173, -0.00483614206, -0.00977006648, 0.0158570055, 0.00493392395, -0.00101856398, -0.00935449172, 0.000436709321, 0.00749663124, -0.00277456851, 0.0133228172, 0.00258918968, -0.0186763909, 0.0265152585, 0.0150095597, 0.0332459286, -0.0220172796, 0.0278190207, -0.023043992, -0.00836037379, 0.0201594196, 0.00425759749, 0.001014999, 0.00814036373, -0.00212065037, -0.0143250842, 0.00710957684, 0.0348104425, -0.0125650056, -0.000551552395, -0.00617657229, 0.0133798569, 0.000519467634, 0.0210883506, 0.00235288288, 0.00849075, 0.0186600927, 0.00988414511, -0.00972117484, -0.0219520926, 0.0165822227, 0.00678771082, 0.00346922898, 0.0107560363, -0.00080619345, -0.000353951, 0.00859668, 0.0154740252, 0.00513356272, -0.00440834509, 0.0061847209, -0.00691808667, 0.0247225855, 0.0075658937, -0.00740699749, 0.00400499394, -0.00163072103, -0.0129642831, -0.0146510247, -0.00495429523, -0.00938708615, -0.0243477542, -0.0013852471, -0.002147133, 0.0110493824, -0.000826564734, 0.0150665995, -0.00609101309, 0.00348960026, -0.0142680453, 0.0222780332, 0.0112205017, -0.00636398792, -0.0179919153, -0.0096070962, -0.00243233098, -0.0167044494, -0.0178289451, -0.00552469119, 0.00499096373, 0.0159710832, -0.0204364695, 0.000959487341, 0.00831963122, -0.000141962359, 0.00193323451, -0.00101041549, -0.0158814508, -0.00124366663, 0.0174215194, -0.0201594196, 0.0429589562, -0.028780546, 0.00254437304, -0.00887373, -0.0122879567, -0.00571210729, -0.00631102268, -0.0427307971, 0.0119783133, -0.00460798386, -0.00618879497, -0.00866186805, -0.0389172956, 0.0229625069, -0.0322844051, -0.000699244207, -0.0170792826, -0.0206320323, 0.00708920555, 0.0380046628, 0.00246492494, 0.00270123174, -0.00318199396, -0.0277375355, 0.00735403225, -0.0165740736, -0.00511726551, -0.0116116302, -0.0320725441, 0.0210720524, 0.00966413505, 0.00424130075, 0.016606668, 0.000819434761, -0.00953375921, -0.0119620161, -0.0108538186, -0.0099900756, 0.0174541138, -0.00642102771, 0.0175681915, -0.00378702115, -0.0171444695, 0.011807194, 0.0202735, -0.0159547869, -0.00497466652, -0.0200453401, -0.00181609963, 0.0185623113, -0.0289435163, -0.00317588262, 0.00940338336, -0.00938708615, 0.00847445242, -0.00845815614, 0.0146184312, -0.0109923426, -0.025553735, -0.0340281874, 0.0112530952, -0.0331155546, -0.0192630831, -0.0017519301, -0.00973747205, -0.009378938, 0.0110167889, -0.00915077887, 0.0179104302, -0.0239077341, -0.000650862406, -0.00539838942, 0.0137220947, -0.0130213229, -0.00922411587, -0.0115708876, 0.000359298458, 0.0143576786, -0.00747626, -0.0372875929, -0.000901429157, -0.00283975643, -0.0132331839, 0.031844385, -0.0130376192, 0.000910596224, 0.0221476555, 0.00899595767, 0.00641695317, -0.00357312267, -0.0019994413, -0.00662474055, 0.0182689652, -0.0186763909, 0.00979451183, 0.024771478, -0.00765552744, 0.0297257733, -0.010519729, 0.00577729521, 0.0246085078, 0.00226732343, -0.0231417753, 0.00907744281, 0.00238751411, 0.0357882641, -0.0180571023, 0.0367986821, 0.00104148174, 0.0137791345, -0.0126790851, 0.00110208627, 0.000311171316, -0.00419240957, -0.00574062672, 0.0195238348, 0.0285523869, 0.0107967788, -0.0197845884, -0.00547987456, 0.00454279548, -0.0173074398, 0.014316936, 0.0136324614, 0.0383306034, -0.0128176101, 0.00215935567, 0.00096814509, -0.0123938872, -0.0356904827, 0.016753342, -0.0197194, -0.0101286005, -0.0197845884, -0.00457538944, 0.0157184806, 0.0174704101, 0.0270693582, 0.00478317682, 0.00240381109, 0.0102100857, 0.0166718569, -0.00678363629, 0.0082585169, -0.00974562, 0.0284220111, -0.0229625069, 0.0031066204, 0.00201981259, -0.00671437429, -0.00585878035, 0.0131191043, 0.0301820897, 0.0212024283, 0.0144473119, -0.010161195, 0.0118642338, -0.037222404, -0.0103975013, 0.0148710348, -0.0277049411, -0.0015156233, 0.00316366, 0.0325940475, -0.000964070845, 0.00750070531, -0.0287968423, 0.020469062, 0.0147243617, 0.00372998137, -0.0266945269, -0.0135835698, -0.00561025087, -0.020974271, 0.0270204674, 0.00216546701, 0.0113671748, 0.0172911435, -0.0108864121, -0.00268900907, -0.0165577773, -0.0243151598, 0.0112123527, -0.00808739848, -0.0275093764, 0.005296533, 0.0010613437, 0.0269389823, 0.00229991763, 0.0158814508, -0.00361386524, 0.0090611456, 0.0117094116, -0.00459576072, 0.015604401, 0.00568766147, -0.00647399295, -0.0109434519, -0.00858038384, 0.00180489547, 0.0145695396, 0.0256678127, -0.0124346297, -0.00507244887, 0.0112856897, -0.00874335319, 0.013388006, 0.00672252243, -0.00553691387, -0.0102426801, -0.0124101844, 0.00275419722, -0.0159466378, -0.00534949824, -0.00298031839, 0.0002831608, -0.0194097552, 0.00648214156, -0.00909374, -0.00763923, -0.00685289875, 0.0116279274, 0.0199638549, 0.00251381611, 0.0137954308, 0.00217769, 0.00902040303, -0.00886558089, 0.00255455868, 0.0184319355, 0.00392758287, -0.0103486106, 0.00694253249, 0.0452079475, -0.00672659697, 0.0213653985, 0.00391943427, 0.029350942, 0.00757811638, -0.00611953251, 0.000909577706, 0.000418629817, 0.0112449471, 0.00373201864, 0.0051824539, 0.0107723335, -0.0039927708, 0.000243818766, -0.0147976978, 0.00381961511, 0.00496244384, 0.0147162126, -0.00358534534, 0.0136650549, -0.0100634126, 0.0303124655, -0.00532505289, 0.0189045481, 0.0110412342, -0.0108375214, 0.0161992423, 0.0281286649, 0.0217565279, 0.0107152937, 0.0117827486, -0.00902855117, 0.0116849663, -0.0123938872, 0.0126057481, -0.0185623113, 0.020469062, -0.0280471798, -0.0088329874, 0.00857223477, -0.00384813501, 0.00275419722, 0.020469062, -0.0189208463, -0.00625398336, 0.0021858383, -0.0105767688, -0.00742329471, 0.0179267265, -0.0109678973, -0.00238751411, -0.00985155161, 0.00911003631, 0.00446131034, -0.0032634791, 0.0276886448, -0.0212513208, 0.00777775515, -0.0190023314, -0.000680910074, 0.0243966449, -0.012956134, -0.015245866, -0.00796109624, -0.0113427294, -0.0102589773, -0.0173074398, -0.0122553622, 0.0144391637, -0.000711976259, -0.0151480846, 0.00135061587, -0.00292735291, 0.0114405109, 0.0233862307, -0.0142110055, -0.0124509269, 0.014675471, -0.00716254208, 0.0122635113, 0.0078022005, -0.0139665501, 0.00871076, -0.0117501542, -0.0213653985, 0.0125405602, 0.00813628919, 0.00515800808, 0.0163540635, 0.0100471154, -0.0139421048, -0.0026523408, 0.00928115565, 0.00280308817, 0.00340607809, 0.00398665946, -0.0239566267, -0.0190675184, -0.0083318539, 0.0130131738, 0.00848260149, 0.0281612575, -0.0121983225, 0.0118397884, 0.0293183476, -0.0137628373, -0.00884928461, 0.0146102821, -0.00331237027, -0.0155962529, -0.017388925, -0.00526393903, 0.00314328866, -0.0229462106, -0.00572025543, -0.022408409, 0.0089552151, -0.0194097552, -0.0105441753, -0.0399277098, -0.0136813521, -0.00131598476, 4.87000943e-05, 0.00242010807, 0.0185297169, -0.0201268252, -0.000183468845, -0.0149688171, 0.0199149642, 0.00299457833, 0.0211209431, -0.0157755204, 0.00422907807, 0.00619286951, -0.00338774407, -0.00256270706, 9.56176955e-05, 0.00451835, -0.00157164433, 0.0155555103, -0.00535764685, 0.00875150226, -0.00379516953, -0.0319584645, -0.00292124157, 0.0139339557, 0.0135509763, -0.0045387214, 0.00259122695, -0.00583433453, -0.00890632346, 0.0233210418, -0.0184971225, -0.00584248314, 0.00781849772, -0.0132902237, -0.0255700313, 0.002845868, 0.0003073517, -0.00928930379, -0.0191978943, -0.0155555103, -0.000554098806, 0.00372998137, -0.0119946096, 0.030850267, 0.0257492978, 0.0179267265, -0.018464528, -0.0177800544, 0.00255455868, 0.00414962973, 0.00247918488, 0.00306180352, 0.00587100303, 0.0217565279, -0.0129642831, 0.00352423149, -0.00559802772, -0.0175193, 0.0142028565, 0.0192141924, -0.000358025252, 0.0205505472, 0.01517253, 0.00799369067, -0.00711772544, 0.00429426599, 0.00507244887, 0.00406407053, -0.00294976146, -0.00985155161, -0.0229136162, 0.0124672242, -0.0327896141, -0.00571210729, -0.00165618514, -0.00374627858, 0.0171281733, -0.0277049411, 0.00626620604, 0.00331848161, -0.0275093764, 0.00515800808, -0.0129398378, -0.00207481487, 0.00439612241, 0.00337959547, -0.00607879, -0.00384813501, -0.0199801512, 0.0308013763, -0.00622953754, 0.0172748454, 0.0421115123, 0.00567136472, -0.0149525199, 0.00921596773, -0.00977006648, 0.0193119738, 0.0160770155, -0.003721833, 0.02447813, 0.00819332898, -0.014675471, 0.00540246349, -0.0102752736, 0.00533320103, -0.00719921058, 0.00329403603, -0.00761478487, 0.0276886448, 0.00990859047, -0.0234840121, -0.00776553201, 0.0280960705, 0.00139237707, -0.00785516575, -0.00254233577, -0.00535764685, 0.00240381109, -0.0138769159, -0.00337348413, -0.00406407053, -0.0360816121, 0.0347126611, 0.0311436132, -0.0172748454, -1.58036582e-05, 0.00745996274, 0.00879224483, -0.0218543094, -0.000709939108, 0.0215120725, -0.00342848641, 0.0165659245, 0.0143821239, 0.00803443324, -0.00994933303, 0.0097619174, 0.0221639536, -0.02262027, -0.0146917673, -0.00858038384, 0.0151806781, -0.0105115809, 0.0190186277, -0.0159384906, 0.0134368967, 0.012524263, -0.00997377932, 0.0313717723, 0.0103567587, -0.00603804737, 0.00946042314, 0.0131598469, -0.0134857874, 0.000821981172, -0.00298642972, 0.000280869019, 0.00725217583, 0.0131435506, 0.00759033905, -0.0144799063, -0.0154088363, -0.00226324936, 0.00687327, 0.0103160162, 0.00143719383, 0.0183178559, -0.00414759293, 0.0130457683, 0.00752515113, 0.00675511686, 0.0180082116, 0.000295128935, 0.0247551799, 0.0107886298, 0.00955005642, -0.0191001128, 0.00297013274, 0.00820147712, 0.0134531939, 0.00274197431, -0.0302635748, -0.000165262012, 0.0089878086, 0.00462020654, 0.0132494811, 0.00391943427, -0.0060339733, -0.000699244207, -0.00398869673, 0.0101774922, -0.0118397884, -0.00373405567, -0.0492170155, -0.00815666094, 0.00227139774, 0.0077940519, 0.0170466881, -0.00448983, -0.00454279548, -0.00233047456, -0.0163133219, 0.0144717582, -0.012670937, -0.00287438766, -0.0173400342, 0.00778182922, 0.00949301664, -0.0122879567, 0.00864557177, -0.00847445242, -0.00655547809, -0.0213653985, -0.00433908263, 0.0105604716, 0.0102915708, -0.00661251787, -0.00637213653, -0.0226039737, -0.0150258569, 0.000248529628, -0.00540246349, -0.0116931153, -0.0198171809, -0.00111430907, -0.00481577078, 0.00118357141, -0.0115708876, -0.000742023869, 0.0214142893, -0.00683252746, 0.00151867897, 0.0114486599, 0.00578544382, -0.0168022327, -0.00659622066, 0.00463650329, -0.00628657732, 0.00671029976, -0.00606656726, 0.0117908968, 0.0261730216, 0.00756181916, -0.0105441753, -0.00330829597, -0.00708105695, 0.00593211688, -0.0187904686, -0.0105604716, -0.0088329874, -0.0109353038, 0.0133635597, 0.00522319647, -0.00845815614, 0.00400295667, 0.000874437217, 0.0117908968, 0.00542690931, -0.00381146651, 0.00631917128, -0.00769627, 0.0118723819, -0.0194260534, 0.0249181502, 0.00380331813, 0.0245270226, -0.000507499499, -0.00486466195, 0.00772886397, -0.00503578037, -0.0057976665, -0.00210027909, 0.00410277583, 0.0122472141, 0.0114649571, 0.0238914378, -0.00488910731, 0.000225866577, 0.00518652797, 0.0164681431, 0.00160525693, 0.00160729408, -0.000699244207, 0.0187741723, -0.0233373381, -0.00777775515, 0.015384391, 0.0200453401, 0.022766944, -0.0172911435, 0.00452242419, 0.0206809249, -0.00462428061, 0.0061847209, 0.00532912696, -0.0308828615, 0.0208927859, -4.96549947e-05, 0.0363097712, 0.0145532433, -0.000747626, -0.00792442821, 0.0415900052, -0.00763515616, 0.013885065, -0.0082585169, -0.00366275618, -0.016182946, 0.0157021824, 0.00409462722, -0.00349367457, 0.0264174771, 0.0179104302, -0.0125487093, -0.0110738277, -0.0220172796, -0.00747218588, 0.00165822229, 0.0186763909, 0.0509119034, 0.0135509763, 0.00227750908, 0.00705253752, 0.0152784605, -0.0205016565, -0.0156206982, -0.00761071034, 0.0159303416, -0.0196053199, 0.0161422025, -0.00881669, -0.0180408061, -0.00622546347, 0.00933819544, 0.00724810176, 0.013811728, -0.0106012141, 0.00786331389, -0.0117420061, -0.0401232727, -0.007908131, 0.0233047456, 0.0213491023, -0.0219683889, -0.000751191, -0.0253581703, 0.00820962619, 0.011024937, -0.00552876573, -0.00282957079, 0.0125813028, -0.00135163451, 0.0156858861, -0.00544320606, 0.0121738771, -0.00512541411, -0.00839296728, -0.0128420554, 0.00137913565, -0.0225550812, 0.0294976141, -0.0343867205, 0.0116849663, -0.00104912091, -0.0233862307, 0.0281938519, -0.000588730036, 0.000247893, -0.0205994397, 0.00106745516, -0.0286012776, -0.0213165078, 0.00337755843, 0.00448168162, -0.00857223477, 0.00894706603, 0.000813832681, 0.010878264, 0.0153436484, 0.0303450599, -0.0156614408, 0.0142273027, -0.00551654259, 0.0172096584, 0.00145756511, 0.00627028, -0.00446538487, 0.00684067607, -0.0300354157, -0.0265641492, -0.0218054187, 0.0207950026, -0.00779812643, -0.00217157858, 0.00706883427, 0.0120109068, -0.00117134862, 0.0102100857, -0.0132331839, 0.00811999198, -0.014960668, 0.00151867897, -0.00435538, -0.000285452581, 0.00474243425, 0.00909374, -0.0210557561, -0.0153680937, -0.0115138479, 0.0132331839, -0.0117175607, -0.00697920052, -0.000864760834, -0.00315958564, -0.0106256604, 0.00928115565, -0.00512948865, 0.0293020494, -0.00350997155, -0.00813221559, -0.0257004071, -0.00198721839, 0.00977821462, -0.00216954132, -0.0152214207, 0.0130376192, 0.000505207747, 0.011098274, 0.00401314208, -0.012092392, 0.0129887285, -0.00376664987, 0.00285401638, -0.0173237361, 0.0210557561, 0.00110514194, 0.0188719537, -0.00457131537, -0.00113875454, 0.00445316173, -0.0186274983, -0.00708920555, -0.00460798386, -0.00251789019, -0.0282916352, 0.00413333299, -0.000517939799, -0.0197194, 0.0004799983, 0.00618879497, -0.0182200726, -0.0195238348, -0.0220009834, -0.00752107659, -0.0173563305, 0.00777775515, -0.00914263073, -0.00980266, -0.0132087385, 0.00582618639, 0.00880854204, 0.020257201, 0.0221313592, -0.013673204, 0.0223758146, -0.0196705088, -0.00010115614, 0.0110167889, 0.00534542417, 0.0157103315, -0.00274197431, 0.00261363527, -0.0157755204, -0.00517430529, -0.0278516151, -0.00581803778, -0.0214305874, -0.00606249319, -0.00679585943, 0.0253092796, 0.0259937532, -0.00841741357, 0.0127035305, -0.0026869718, -0.00892262068, -0.029774664, -0.00379720679, 0.00578544382, 0.00314736296, 0.0100308182, -0.00183341524, 0.00613582972, -0.00326144206, 0.0206483305, 0.000100010257, -0.0104463929, -0.0113590257, -0.00246899924, 0.013094659, -0.0110819768, 0.0226854589, -0.00623768615, 0.00587100303, 0.0062621315, 0.0128257582, -0.00332459295, 0.00331644458, -0.00315754861, -0.00588322571, -0.00692216121, 0.0138524706, -0.00213491032, -0.0132250357, 0.00956635363, 0.0065269582, -0.0023447345, -0.000116434603, -0.0366683044, -0.0131598469, 0.00672252243, -0.00998192746, 0.00413740706, -0.00123653677, -0.0106419567, 0.013388006, -0.00963154156, -0.037515752, 0.0161259063, -0.0236632787, 0.0161259063, 0.00133330026, -0.00600545341, 0.0198986661, -0.00171831751, 0.0058750771, -0.0081077693, -0.0265967436, -0.0212187264, 0.000513101637, -0.00128237216, 0.00427389471, -0.00981895719, -0.013388006, -0.00779812643, -0.00448168162, -0.00278271688, -0.00180489547, -0.00866186805, -0.0185297169, 0.00525579043, -0.00042601442, -0.029204268, -0.00356293702, -0.00286420202, -0.004689469, 0.0154495789, -0.0262708031, 0.00320643955, 0.0219194982, 0.01818748, -2.35224634e-05, -0.000902447733, 0.0219846852, 0.0142680453, 0.0126138972, 0.00732551236, 0.0134613421, 0.0161177572, 0.00269308337, 0.0011662558, 0.0205831416, -0.00256067, 0.00945227407, -0.027379, -0.0210231617, -0.00626620604, -0.00307198917, -0.00685289875, 0.0158733018, 0.0165414792, -0.0150177078, -0.0212350227, -0.00660436926, -0.0142843416, -0.00133330026, -0.00640880503, -0.0257492978, -0.0285686832, -0.0134287486, 0.00873520505, -0.00997377932, 0.00987599697, -0.00301087531, 0.0184808262, -0.0128502036, 0.00708513148, 0.0221476555, -0.0118723819, 0.00211657607, 0.0185134206, -0.00198823703, -0.0141376685, -0.00396832544, -0.00242621941, 0.00665733451, 0.0352667607, -0.00582618639, 0.0147488071, -0.0101937884, 0.00219806121, -0.00675104233, 0.00227750908, -0.00808739848, 0.0185623113, 0.00620101765, -0.00907744281, -0.00468539447, -0.0090367, -0.00812406652, 0.0156858861, 0.0203549843, -0.0129642831, -0.00387869193, -0.00155534723, -0.00842556171, 0.0113916202, 0.0114731053, 0.00521504786, 0.0181222912, -0.00170202053, -0.00457946397, -0.0109027093, 0.0118723819, -0.0142843416, 0.00446131034, 0.0145369461, 0.00798961613, 0.0185623113, -0.019034924, 0.00946042314, -0.011090125, -0.0061847209, -0.0188719537, -0.0286012776, -0.00456316676, 0.010593066, -0.00220213551, 0.0247551799, -0.00670215115, 0.013958401, -0.00596878538, -0.000409972, 0.0199149642, 0.00519467657, 9.14797783e-05, 0.00658807205, -0.00308421184, 0.00231010327, 0.00481169671, -0.00112347608, -0.0111797592, -0.00157368148, 0.00251381611, 0.00223880378, -0.0166718569, 0.0360816121, 0.0218706075, 0.00319625391, 6.60156802e-05, 0.00591581967, -0.0031534743, -0.0162236877, 0.0205342509, -0.033506684, -0.0297420695, -0.00519875064, -5.6562134e-05, 0.00175600441, -0.0125324121, -0.00160525693, -0.00367090479, 0.0203223899, 0.00454687, 0.0101448977, -0.0195564292, 0.0028417937, -0.0213165078, -0.00494207256, 0.00781034911, 0.0119783133, 0.0139013622, -0.00110310479, -0.00381554081, 0.0212839134, 0.00262993225, -0.0127198277, 0.0333274156, 0.0153599456, 0.0237773582, -0.0298561491, -0.00161849824, 0.0229951013, -0.00565506751, 0.0125650056, 0.012882798, -0.0386239477, 0.00554506248, 0.0389498882, 0.00390110025, 0.00172850315, -0.000588730036, -0.0144228665, 0.00515800808, 0.00578136928, 0.0134613421, 0.0162562821, 0.0216750428, -0.0190838166, 0.0229462106, -0.0271345451, 0.00188026915, -0.00434315717, -0.0221150629, 0.0315836333, 0.0120435013, -0.0213328041, 0.000489674683, -0.00383387506, -0.00519467657, -0.0114486599, 0.0147080645, -0.0102589773, -0.0120190559, 0.00828703679, -0.0156206982, -0.0137465401, 0.0414922237, 0.00238547707, -0.00834000204, 0.0217565279, 0.00816480909, 0.00096814509, -0.0216750428, -0.00621731486, 0.00153090176, 0.0134694912, 0.00417203829, 0.00206259219, 0.00120292418, 0.0251789037, -0.00782257132, 0.00181508111, -0.00140969257, 0.0130783617, -0.000578544394, 0.00674696825, -0.0126057481, -0.00798961613, 0.0165088866, -0.00377887255, 0.00441241916, 0.0182200726, -0.040155869, -0.00358534534, -0.0169326086, -0.00339385541, -0.0156369954, 0.00198314409, 0.000581600063, 0.00211861311, 0.00378905819, -0.0158977471, 0.00701179495, -0.00871890783, 0.0110412342, -0.00502355769, 0.0197845884, 0.00446538487, 0.0163296182, -0.0284220111, -0.0117583033, -0.00820147712, -0.0529327355, 0.00409259042, -0.000988516374, 0.0194260534, -0.00688549271, 0.0113264322, -0.00478725089, 4.66947931e-05, 0.00202083099, 0.0201268252, 0.00278679118, 0.00652288413, -0.0101123033, 5.6498473e-05, -0.0339955948, 0.0216587447, 0.0172748454, -0.00408647908, -0.00125283375, -0.0222128443, -0.0019454573, -0.0131761441, 0.000971200818, 0.00355275138, 0.0185949057, -0.0104952836, 0.00689771539, 0.00479132542, -0.0106989965, 7.86840683e-05, 0.0261730216, -0.00221028388, 0.0214794781, -0.00212065037, 0.00396425137, 0.00990859047, -0.0246085078, -0.0175355989, -0.00769219548, -0.00965598691, 0.0214142893, -0.0224247053, -0.019540133, -0.00841741357, -0.00378294685, 0.00483614206, 0.00343052368, -0.000701281358, -0.0192141924, -0.00501540909, -0.0160770155, 0.010234531, -0.0177474599, -0.011098274, 0.016174797, -0.00727254711, -0.00940338336, -0.0154251335, 0.00605027052, -0.0208927859, 0.00869446248, -0.0171933603, 0.000829111144, -0.0085314922, 0.0113182832, 0.00977821462, -0.02262027, 0.0128257582, -0.00554913701, 0.0163703617, 0.000814851199, -0.00324514508, -0.00570395868, -0.00474243425, -0.0032675534, 0.0189208463, 0.00526393903, -0.0271345451, 0.0275908615, 0.0091833733, 0.00763108162, 0.00959079899, 0.0121331345, -0.00304346927, 0.00615212694, 0.0268737935, -0.0132820746, 0.0142598962, -0.0123286992, 0.00557358237, 0.00293550151, -0.00278475415, -0.00902855117, 0.0190675184, 0.0131761441, 0.0134857874, 0.00852334406, 0.00442056777, -0.00971302669, -0.00233658589, -0.000726236147, -0.0128909461, 0.00140154408, -0.011236798, 0.050683748, -0.0231417753, -0.0103975013, -0.00284994207, 0.00231825165, 0.0205668453, 0.0142680453, 0.0108212242, 0.0154821733, 0.0073784776, 0.0222291406, 0.0148791829, -0.00317995693, 0.000290036114, -0.00896336325, -0.0123042539, -0.00206055492, -0.0139339557, 0.00731736422, 0.00473021157, -0.000448422827, 0.00739477482, -0.00932189822, 0.0056469189, 0.00885743275, -0.0276723467, -0.012312402, -0.00509689422, 0.00694660656, 0.00242825667, 0.0015370131, -0.0043798252, -0.0165903717, 0.00690179, -0.0150665995, -0.000736421789, 0.0117175607, 0.0061847209, 0.0101856403, 0.0121983225, -0.00431463728, -0.0393410176, -0.00975376926, 0.0134613421, -0.00309643475, 0.0143658267, -0.00224491511, 0.00742329471, 0.0125731546, 0.00847445242, -0.0155636584, 0.00216139294, 0.0179593209, -0.0125161149, -0.0216587447, -0.00598100806, 0.0336044654, -0.00586285442, 0.022832131, 0.0139502529, -0.00203101663, 0.0145369461, -0.00468539447, 0.00349367457, -0.00141071121, -0.00129866914, 0.0146999164, 0.0171118751, -0.0221802499, 0.00612768112, -0.0109434519, 0.0025728927, -0.0114812534, -0.0256841108, 0.0193282701, 0.0146102821, -0.00995748211, 0.0114731053, 0.00302309799, 0.00786738843, -0.0080303587, -0.0140480353, 0.0101123033, 0.00665733451, 0.0218869038, -0.0103730559, -0.00748848263, -0.00929745287, -0.00135570869, -0.0265315566, -0.0234677158, -0.0173237361, -0.00598508213, 0.0188882519, 0.00412518438, 0.0241521895, 0.0139909955, 0.00955820456, -0.0203060918, 0.00333477859, 0.00132515177, -0.0116197783, 0.0133228172, 0.00508874608, -0.0106908483, -0.00550432, -0.00761885894, 0.00616842369, -0.00598915666, -0.00953375921, -0.0103649078, 0.0219032, -0.0579522178, 0.000137633469, -0.00841741357, 0.0271508433, -0.000809758378, -0.0138361733, 0.000240126465, 0.0241032988, -0.00172442885, -0.00823407155, 0.000831657555, 0.0177474599, 0.00124570378, -0.0126790851, 0.0436760262, -0.0011581073, 0.022766944, -0.0170466881, -0.0372549966, -0.00171118753, 0.0175844897, 0.0222617351, 0.0062988, 0.00698327506, 0.0189045481, -0.00981080905, -0.0214631818, -0.00490947859, -0.00539838942, 0.0199964494, -0.00528838439, -0.00492985, 0.0297909603, -0.0094115315, 0.00581803778, 0.0219032, -0.0159710832, 0.00993303675, -0.00889817532, 0.0342889391, 0.0061480524, 0.0137302428, -0.00825036876, 0.00817703176, -0.022832131, -0.00113875454, 0.00832777936, 0.014316936, -0.0129805803, -0.00512541411, 0.0159303416, -0.0131842932, 0.013673204, 0.00617249822, 0.00211861311, 0.00114486599, 0.00472613703, -0.0234351214, 0.00580174057, -0.0026910461, -0.0126464907, -0.00763108162, 0.00261974661, 0.00440834509, 0.000621324056, -0.016965203, -0.0138524706, -0.00660844333, 0.00776553201, 0.0056469189, -0.0220498741, -0.0116605209, -0.0198497754, -0.000748135266, -0.0107397391, -0.0153599456, 0.00330625894, -0.0160770155, -0.0249507446, 0.00750070531, -0.0109027093, 0.0250322297, 0.0175355989, 0.0140643325, 0.00510504283, -0.0300191194, 0.002880499, 0.0115545904, -0.0239240322, -0.0251137149, 0.00448168162, -0.0338000283, -0.00715439394, 0.00131191046, 0.00164396234, -0.0118560856, 0.0123694418, -0.00784294307, 0.00259937532, -2.7564889e-05, 0.0039622141, -0.0152703123, 0.0114079174, 0.0023793655, -0.0111879073, -0.00920781866, 0.00331848161, 0.0185134206, 0.000874437217, -0.00804258138, 0.0283242278, -0.0063762106, -0.00445723627, -0.00779812643, 0.00103638892, -0.0031534743, -0.00157571852, 0.000603499182, -0.0122716594, -0.00306791486, 0.00127422356, -0.00206564786, -0.00441241916, 0.0219194982, -0.0263196938, -0.0026482665, 0.0135183819, -0.0172585491, -0.00349163753, -0.0153762428, -0.0134939365, -0.00403555064, 0.0252440907, -0.0224410035, 0.00124366663, 0.00424537482, 0.0034997859, -0.010593066, -0.0246736947, 0.00552876573, -0.00345904334, -0.00243233098, -0.00122227683, -0.0121249864, -0.00731328968, 0.0106582539, -0.0217891224, -0.0136080151, -0.0121086892, 0.00446538487, -0.00902855117, -0.0101367496, -0.00832370482, -0.00342441234, 0.0113590257, 0.004758731, -0.0142028565, 0.0681215599, -0.00393369421, 0.0142761935, -0.010234531, 0.0170629844, -0.00857223477, -0.00342441234, 0.0486629158, -0.000635074684, 0.0135917189, -0.011024937, 0.000766469457, -0.00443686498, 0.0178452414, 0.00282142241, -0.00559802772, 0.00800591335, -0.0294976141, -0.0086048292, 0.00386035768, -0.0106338086, -0.010096007, -0.0214957744, 0.00444501359, -0.00339792971, -0.00113468035, -0.00429019192, -0.0210231617, -0.0117990458, -0.00227343501, -0.00216954132, -0.00268900907, -0.017388925, -0.0175030045, -0.0262871012, 0.014602134, -0.000814851199, 0.0262219124, 0.00673067104, -0.0140480353, 0.0257981904, 0.0242173783, -0.0005663216, -0.00857223477, 0.0300028212, -0.023614388, -0.00444908766, -0.0236958731, 0.0216587447, -0.00574877532, -0.00484836474, -0.00982710533, -0.0090611456, -0.0143006388, -6.79254881e-05, -0.0246573985, 0.0289598126, 0.00805073, 0.0152377179, 0.00975376926, 0.00286827632, 0.032919988, 0.00726032443, -0.021186132, -0.0134368967, -0.0147895496, -0.0133635597, 0.00093300466, 0.00479539949, 0.00121107267, 0.010381205, -0.00448168162, -0.0179430246, 0.000608592, 0.00885743275, 0.0159547869, -0.0361468, -0.00258104131, -0.0152621632, -0.0207950026, 0.00819332898, 0.0182037763, -0.0494777672, -0.0117012635, -0.00323088514, -0.00520282518, -0.00479132542, -0.0161177572, -0.0119131245, 0.0123042539, 0.0180245098, 0.0290087033, -0.0211698357, 0.0181385875, -0.00420870678, 0.00892262068, 0.000810776954, -0.0257167052, 0.0261893179, -0.0171933603, -0.00398462266, -0.00263604382, 0.0103241652, 0.00309439749, -0.0174378157, 0.0273138136, -0.00615212694, 0.0075658937, 0.0271182489, -0.0102752736, -0.00508059748, 0.00386443199, 0.0256841108, 0.0165088866, -0.0076881214, 0.00400906801, 0.00594841409, 0.0112286499, 0.018464528, -0.0060258247, -0.00337552116, 0.006763265, 0.00879224483, 0.000562756613, 0.00919967052, 0.0150014106, -0.0194423497, 0.0187089834, 0.00941968057, -0.033930406, 0.00187415781, -0.00396832544, 0.0161096081, 0.0161340535, 0.0191978943, 0.0364401452, -0.0185460132, 0.0100797098, -0.00544320606, 0.0206972212, 0.0140235899, -0.0071869879, 0.00941968057, -0.00710957684, -0.00665326044, -0.0062988, -0.00740699749, -0.0237936564, -0.0041435184, 0.00676733954, -0.000827074, 0.019181598, 0.0154658761, -0.00661659194, -0.00636398792, 0.00891447254, 0.00569173601, -0.0127442731, 0.012239065, -0.0201105289, -0.00432278588, 0.0137791345, 0.0151154902, -0.00915077887, 0.0141947083, -0.0227995366, 0.000385781139, -0.00967228413, 0.00927300658, -0.00824222, 0.0148628866, 0.00285401638, 0.014813995, -0.00382776372, -0.00980266, 0.010878264, -0.0034610806, 0.00609508716, 0.0246411, -0.0155066187, 0.0013098733, 0.0191001128, 0.0107641844, 0.0535846166, -0.0226691607, 0.00154821738, 0.016606668, -0.0194097552, 0.0128583526, 0.0228484292, -0.0201920141, -0.00478725089, 0.00149117771, -0.0115138479, 0.000881057873, 0.00909374, 0.0326592363, -0.0096070962, -0.018611202, -0.00867816526, -0.00557358237, -0.00256270706, 0.00234269723, 0.0152866086, 0.00481169671, 0.0119212735, 0.0035751597, 0.0106745511, -0.00384813501, -0.0211535376, -0.00671844836]
12 Oct, 2021
Node.js Readable Stream resume Event 12 Oct, 2021 The ‘resume’ Event in a Readable Stream is emitted when stream.resume() is being called and readableFlowing property is not true. Syntax: Event: 'resume' Return Value: It is emitted if readable.resume() is being called else it is not emitted. Below examples illustrate the use of resume event in Node.js: Example 1: // Node.js program to demonstrate the // readable resume event // Including fs module const fs = require('fs'); // Constructing readable stream const readable = fs.createReadStream("input.txt"); // Handling data event readable.on('data', (chunk) => { console.log(`${chunk}`); }); // Calling pause method readable.pause() // Calling resume method readable.resume(); // Handling resume event readable.on('resume', () => { console.log("resume emitted!"); }); console.log("Program ends...."); Output: Program ends.... resume emitted! GeeksforGeeks Example 2: // Node.js program to demonstrate the // readable resume event // Including fs module const fs = require('fs'); // Constructing readable stream const readable = fs.createReadStream("input.txt"); // Handling data event readable.on('data', (chunk) => { console.log(`${chunk}`); // Calling pause method readable.pause(); // After this any data will be displayed // after 3 sec. console.log('No additional data will " + "be displayed for 3 seconds.'); // Using setTimeout function setTimeout(() => { console.log('Now data starts flowing again.'); // Calling resume method readable.resume(); // Emitting resume event readable.on("resume", () => { console.log("resume emitted!"); }); }, 3000); }); console.log("Done...."); Output: Done.... GeeksforGeeks No additional data will be displayed for 3 seconds. Now data starts flowing again. resume emitted! Reference: https://nodejs.org/api/stream.html#stream_event_resume Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event
https://www.geeksforgeeks.org/node-js-readable-stream-resume-event?ref=asr3
CSS
Node.js Readable Stream resume Event
CSS pause-before Property, CSS, How to Play and Pause CSS Animations using CSS Custom Properties ?, Node.js Stream readable.resume() Method, Node.js Readable Stream resume Event, Node.js Stream readable.pause() Method, CSS Tutorial, p5.js | pause() Function
GeeksforGeeks
[-0.0320430212, 0.016623931, -0.0120484065, 0.039788425, 0.00119677244, 0.00058718049, -0.0261479095, 0.0390712582, -0.0275535565, 0.0176853389, 0.000547736301, 0.04391931, 0.0171259493, -0.00533213699, 0.0207404699, -0.0164087825, -0.0266068969, 0.00959569495, 0.00214612228, 0.0133966804, -0.0201667361, 0.0164374691, -0.00518153189, -0.00218556658, -0.0123281013, 0.00637561502, 0.00193097221, 0.00684894528, -0.0277400203, -0.0306947492, -0.0113599254, 0.0207835, 0.0204966329, -0.063397564, -0.00895741582, 0.00315732788, 0.00834782422, 0.039702367, -0.033247862, -0.0316700973, -0.0416243747, 0.00230569206, -0.0475338325, -0.00957418, -0.0151178809, 0.00431017391, -0.0342232101, -0.00739399204, 0.00249574124, -0.00277185068, 0.0399318598, 0.0180008933, -0.00462931301, -0.0180726089, 0.00214074366, -0.014393542, 0.0190623, -0.00763782905, -0.0360304713, -0.0476485789, -0.00655849231, -0.0105853854, 0.00581981055, -0.00590945641, -0.000814432802, 0.0100761969, -0.00964589696, 0.0150605077, -0.0133249639, 0.00498431083, -0.00490900828, 0.0330470577, 0.0359730981, 0.0264921505, 0.00693859113, -0.0108292224, 0.0308094956, 0.0337642245, -0.0362025909, -0.0270371977, -0.0208408739, 0.00839085411, -0.0126149682, 0.0132460753, 0.0195212867, -0.0271376, 0.00352308294, -0.0227485374, 0.0674137, 0.0149887912, 0.0341945253, 0.0173697863, 0.0252586231, -0.0158350486, 0.0083406521, 0.0205826946, 0.0202527978, -0.0137265772, -0.00254235719, 0.0559964031, 0.0346535109, -0.0173984729, -0.0107861925, -0.0107718492, 0.0175419059, 0.00508471439, 0.0357436053, -0.0168534257, 0.00756611209, 0.0375221781, 0.0028865973, -0.00608157646, -0.030637376, -0.0143505121, -0.00902196113, 0.0405629687, 0.0216584448, -0.0175132193, -0.000361272891, 0.050173007, -0.0188328065, 0.00156969938, 0.0134325381, 0.0843962133, -0.0124069899, 0.0390425734, 0.0103487205, -0.0240968131, -0.0019829669, 0.037264, -0.0189188663, -0.00848408602, -0.029231729, -0.00496996753, -0.000426042039, -0.0026517252, -0.00564410444, 0.0258323569, 0.0140923318, -0.0260188207, -0.0292891022, -0.0147162676, 0.0427718423, -0.0237095412, 0.0177283697, 0.0162940342, -0.0311824232, -0.011101746, -0.0110372007, 0.00595607236, 0.00973195676, -0.0168390814, 0.00144509156, 0.0355141126, -0.0327028148, -0.0218735952, -0.00277364347, -0.0236665122, -0.0176136214, -0.00841954071, 0.0188041199, -0.0475338325, 0.0077310605, 0.00742985029, -0.00770954555, 0.0142285936, 0.0337068513, 0.0152900014, 0.0129663795, 0.0210703667, -0.0182160418, 0.0327028148, -0.0159641374, 0.00900761783, -0.00662662322, 0.00439623371, 0.0432882, 0.0451528355, -0.0126006249, 0.0106355874, -0.00816136, -0.00869923644, 0.00224293978, -0.0265208371, 0.0301783886, -0.0276252739, 0.0187037159, 0.00177140255, -0.0290739518, -0.0130811268, -0.0228489414, -0.0141353626, 0.0535293482, -0.0180869531, 0.00152935868, 0.0502303801, -0.0436611287, -0.0149170738, 0.0473903976, -0.0220600571, -0.0201380495, -0.0154764643, -0.00536799524, -0.0152469706, -0.00689914683, -0.00127924664, 0.0135472855, -0.0202384535, 0.0678726882, -0.0467592888, -0.0114675006, -0.0160501972, -0.0202527978, -0.00223935395, 0.0253303386, -0.0145082893, 0.00139668281, -0.0102483165, -0.00372568262, -0.00924428273, -0.0130022382, -0.0156342406, 0.00458269753, 0.00313043408, -0.0370058194, -0.00960286614, -0.00808247272, -0.00781712, 0.00417032605, -0.013669204, -0.0329896845, 0.0542752, 0.0155481808, -0.016623931, 0.00469385833, 0.0037615411, 0.00475123152, 0.00377229857, 0.0197364371, -0.00877812412, 0.0193348229, -0.0378951058, -0.00760197034, -0.00565844774, -0.0202814844, -0.00137247844, -0.0226194486, 0.0833061188, 0.00431375951, -0.0148453573, -0.0335347317, 0.00735813379, -0.000645002117, 0.0226051044, -0.0570291206, 0.028744055, 0.0129090063, 0.0206544101, -0.000314432924, -0.0174415018, 0.0300349556, -0.00806812942, -0.0227485374, -0.0150031345, -0.0105566988, 0.00610667747, 0.00859883241, -0.0129735516, 0.00460421247, -0.00534648029, 0.038927827, -0.0112595223, 0.0263200291, -0.0284715313, -0.0251295324, 0.0174558461, -0.0208839048, -0.0175849348, 0.029518595, -0.015806362, -0.00145226321, 0.00660152268, 0.0119838612, -0.0149457613, -0.0365181454, -0.0232935846, 0.0432021432, -0.00332227629, -0.0356575437, 0.0254881158, -0.00772388885, -0.0289018322, 0.0204822905, 0.0179865491, 0.0187897757, -0.00665172422, -0.0347395726, 0.00869923644, 0.0321577713, 0.0018189149, 0.00973912794, 0.00466517173, -0.00715732714, -0.0139847575, -0.00349977519, -0.00393366115, 0.00730076, 0.0207835, 0.00125056, -0.034022402, 0.0409072079, -0.00645808922, -0.00973195676, -0.0347108841, 0.0240824688, -0.0149170738, -0.00700313598, 0.0198224969, -0.00394441886, -0.0124500198, 0.0128588052, 0.00772388885, -0.0188041199, 0.0438332483, 0.0307234358, -0.0243263058, 0.0061748079, -0.0109081101, 0.0239677224, -0.00379381352, -0.0056620338, -0.0254307427, -0.0241972152, 0.00893590134, 0.000295159058, 0.010664274, -0.0661514848, 0.0200233031, -0.00793186761, 0.0168390814, -0.0302357618, -0.0395876206, 0.00572657865, -0.0160071682, 0.0322725177, 0.0232075248, -0.0220457148, 0.00278260815, 0.0353133045, 0.0303218216, 0.000878529623, 0.0134899123, 0.0392720662, 0.00605647545, 0.0156198982, -0.00514567364, 0.00965306815, -0.0609878823, 0.0121272942, 0.000808605808, 0.0115894191, 0.00218377355, 0.0056620338, -0.00569789205, 0.0147019243, -0.0552505478, -0.0209699646, -0.0148740439, 0.00558314519, 0.015318688, -0.0214863233, 0.0424276032, 0.00331331161, -0.00833348092, -0.0127584012, -0.0244840831, 0.00116001768, -0.0252729654, 0.00464365631, 0.0200663339, -0.0185029097, 0.0538735874, -0.00949529186, 0.0100116516, 0.0171259493, 0.0030927828, 0.0145656625, 0.020554008, 0.00406992296, 0.0169825144, -0.0385262109, 0.0293177888, -0.0167386793, -0.0166669618, 0.0284571871, -0.000609591953, -0.013281933, 0.0288444571, 0.0172980689, 0.0104993256, -0.0585782044, -0.0184742231, 0.00874943752, 0.040763773, -0.0116683077, 0.0210129935, -0.0444356687, -0.0256458931, 0.00721828593, 0.0201810803, 0.0122348694, 0.00634692842, -0.0124141611, -0.0225190446, 0.0157633312, 0.0701102465, 0.0329323113, 0.045956064, -0.0199085567, 0.00525324838, 0.00264455331, 0.00145764195, -0.0359730981, 0.00492335157, -0.0255168024, 0.00999013707, -0.0218879376, -0.0307234358, -0.00683101593, -0.0112595223, -0.0367763266, 0.00227521244, -0.021471981, -0.0266212393, -0.0202527978, -0.023652168, 0.0263774041, 0.0141210184, -0.0219309684, -0.0106857885, -0.0549063087, 0.0110443719, -0.00270192674, -0.0190049261, -0.00200268882, 0.0377803594, -0.0271232575, -0.0057875379, -0.0208408739, 0.00594890071, 0.00463648466, 0.0246131718, -0.0258180127, 0.00995427836, 0.0110874027, -0.0143791987, 0.000272299367, 0.00392290344, -0.0152326273, -0.0147736408, -0.00791752432, 0.0027897798, 0.00848408602, -0.0275105275, -0.0121344663, -0.0261909403, -0.0107431617, 0.00805378612, 0.010807707, 0.00623218156, 0.00456118211, 0.00450380892, -0.0458986908, 0.0332191773, -0.0286723375, -0.0278834533, 0.00312326243, -0.0156342406, 0.0238099452, -0.0342805833, 0.00145943486, -0.0214289501, 0.0276109297, -0.00959569495, -0.00856297463, -0.00693500508, 0.0570864938, -0.0187324025, 0.0159784816, -0.037378747, 0.011388612, 0.0408211462, -0.0370631926, -0.0158350486, 0.00418108376, -0.00424204301, -0.0125145642, -0.0149457613, 0.0228632856, 5.27229822e-05, 0.012069921, 0.00955266505, 0.0519228913, -0.0122061828, -0.0272953771, 0.00651904847, -0.00182429363, 0.00699955039, -0.0333912969, -0.0531564206, -0.0549636818, 0.0269224495, -0.021328548, 0.0240107514, -0.018632, -0.0242545884, 0.0176279657, 0.00857014582, -0.00321290828, 0.0566275083, -0.0100977113, -0.0196073465, 0.0215580408, -0.00869923644, -0.0390425734, 0.0102698319, 0.00140564737, 0.0491115972, -0.00405916525, -0.00996145047, -0.00494845258, 0.0401326679, 0.0498861372, 0.0282994118, 0.03189959, -0.00224293978, 0.00682025822, -0.034022402, 0.0331331156, 0.00889287144, -0.0264491197, 0.0134325381, -0.0357436053, -0.0130022382, -0.033247862, 0.0365181454, 0.00171761506, -0.0142859668, 0.000580457039, 0.00109367969, -0.0118906293, 0.0149744479, 0.0422554798, 0.015806362, 0.00904347654, -0.0107646771, -0.0455544479, 0.0184025057, 0.00653339177, 0.00255490746, -0.00618556561, -0.00155356305, 0.0444356687, -0.00338144251, 0.00526042, -0.00114926021, -0.00976064336, 0.012944865, -0.0334486701, -0.0118978014, -0.017355442, -0.00332406908, 0.00485522067, -0.0422554798, -0.000718511699, -0.00169520359, 0.0311537366, -0.0396449938, 0.0131169846, -0.00111878058, -0.00882832613, 0.000532944745, 0.0201810803, 0.0159641374, -0.00864186231, 0.0139202122, -0.0128731485, -0.0254307427, -0.0168534257, 0.00440340536, -0.0118619427, -0.0141783925, 0.0011367097, 0.0123926466, -0.0173124112, 0.0162079744, 0.00735096214, -0.00860600453, -0.00550067099, -0.0200950205, 0.0234800484, 0.0333339237, -0.00409860956, 0.0306660626, -0.0502016917, 0.0254020561, 0.00825459231, -0.0213572346, 0.00586284045, 0.0190049261, 0.0163657516, 0.0238673184, 0.0322438292, 0.0210990533, -0.0129807228, 0.00492335157, -0.000298296654, 0.0444643572, -0.0167673659, 0.0133034484, 0.0171546359, -0.00552935759, 0.0139202122, -0.00966741145, -0.0135114267, 0.0110300286, -0.0200950205, -0.0349977501, 0.00840519741, -0.00111519475, -0.00502016908, -0.0178000852, -0.0267790165, -0.0107933637, 0.00260869507, 0.0378664173, -0.011489016, -0.0126651693, -0.009316, -0.0194639135, -0.00446436461, -0.0134970834, 0.00559031684, 0.0580618419, -0.0032039436, -0.0134110237, -0.0356001705, 0.045669198, 0.00097714, -0.0549923666, -0.00328103919, -0.00240071653, 0.00712505449, 0.0294899084, -0.0178431161, -0.00387628772, 0.0157776754, -0.0190049261, 0.0121488096, -0.0201810803, -0.00457552588, -0.0177570563, 0.0101048835, 0.00412729615, 0.0177140255, -0.0370345041, 0.0412514471, 0.0272953771, 0.00409502396, 0.0312971696, -0.0379811674, -0.0257032663, 0.0320143364, 0.00436037546, -0.00296010682, 0.00296727847, -0.0288157705, -0.00709636789, 0.0107575059, 0.0120125478, -0.00334199844, 0.00988256186, -0.0163514074, 0.0174701884, -0.00472971657, -0.00929448474, -0.0227485374, -0.0208121873, -0.0154190911, 0.0077023739, 0.007659344, 0.0114459861, 0.0202241093, 0.00560107455, 0.0254594292, 0.0077454038, 0.0161649454, -0.0215150118, -0.000160017895, -0.0337642245, -0.0264921505, 0.0219309684, -0.0439766832, 0.0150031345, -0.00769520225, 0.0536440946, -0.00601703115, 0.00477633253, -0.0259184167, 0.038727019, 0.00442492077, 0.00834782422, -0.0151465675, -0.00329896831, 0.00702465093, -0.0163657516, -0.00466517173, -0.00952397846, -0.0155338375, 0.0222321786, -0.00496638147, -0.0360304713, 0.00311609078, -0.00691707619, -0.0336494781, -0.0492837168, -0.000403182348, -0.0230067186, 0.00289197615, 0.0057731946, -0.00345136621, -0.0110300286, 0.0131313279, 0.00570147811, -0.0200663339, 0.0289448611, -0.015074851, 0.0174701884, 0.0275105275, -0.00284177437, -0.021084711, 0.00980367325, -0.0166956484, 0.024770949, -0.000289107964, -0.0158780776, -0.0112666944, 0.0137911215, -0.00507395668, -0.0313545428, -0.0293321311, -0.00435679, 0.00994710624, -0.0137624349, 0.00918690953, -0.0015186012, 0.0136548607, -0.00374361197, 0.0211420842, 0.038927827, 0.0294038486, 0.00683460198, -0.0152756581, 0.0188758355, -0.00486956397, -0.0131958732, -0.0241828728, -0.00288839, -0.0111734625, -0.0026248314, -0.00192380056, 0.0148883872, 0.0144365719, -0.0104993256, 0.0174271595, 0.00662303763, 0.0155481808, -0.0351124965, 0.00438547647, -0.00212819315, -0.000833706697, 0.0315553509, 0.00668399688, -0.00527117774, 0.00455759652, -0.0108794235, 0.00576243689, -0.0171976648, 0.0459847488, 0.0408785194, 0.0058843554, -0.00812550262, 0.037378747, -0.0535293482, 0.021471981, -0.00375078362, 0.0129663795, 0.015849391, 0.00279336562, -0.0417391211, 0.0472182781, -0.0353133045, 0.0138556669, 0.0170829184, 0.00520304684, 0.0117113376, -0.0204822905, -0.0294325352, -0.0272236597, 0.00190945726, -0.0174701884, -0.0192200765, -0.0186893735, -0.021328548, -0.00149618974, -0.0296046548, 0.00272344169, 0.0176709965, -0.0078673223, 0.0108650802, 0.0464724228, -0.0224473272, 0.0182447284, -0.0304652546, -0.0287583973, 0.0159354508, -0.013669204, 0.0201954227, 0.0120770931, 0.0208408739, -0.00882115401, 0.00912953634, -0.0561685227, 0.0229493454, -0.0261192229, 0.00552577199, -0.00350515381, 0.030149702, -0.0180008933, 0.0197364371, -0.00902913325, 0.0118189128, 0.0139560699, -0.00374361197, 0.00459704082, -0.00747288065, -0.00263200304, 0.00287583983, -0.00201703236, -0.0195356291, 0.0121918395, -0.00260510924, -0.0146660656, -0.0313545428, -0.0286149643, -0.00836934, -0.0083406521, -0.0327028148, 0.00163603725, -0.0212281439, 0.00679157162, 0.0253159963, -0.0129735516, -0.0269654803, 0.00335096288, 0.00619632332, 0.0145943491, -0.0337068513, 0.00744419359, -0.00394441886, -0.0114101274, -0.00476916088, -0.0434029475, 0.000637382211, 0.0143648554, -0.00193993677, -0.0141138472, -0.0354280509, -0.0219453108, -0.00413805386, 0.0161075722, -0.00282922387, -0.0273240637, -0.0353993662, 0.0434890091, -0.0182303861, -0.023752572, 0.00962438155, 0.0258467, -0.0264060907, -0.0215436984, -0.00317346421, 0.0375795513, -0.0277543645, 0.0195356291, 0.0555374138, 0.00690631848, -0.00488390727, -0.00354818394, 0.0146302078, 0.00279336562, -0.00236306526, 0.00859883241, -0.0227628816, 0.00950963516, -0.0412514471, -0.000882115448, 0.00464365631, 0.00358404219, -0.00624652486, 0.00119677244, -0.00141102611, -0.0254737735, -0.0183881633, 0.0297480877, -0.0270945709, 0.00637202896, 0.0374648049, -0.0128874918, 0.00862034783, -0.0281846635, -0.0160788856, 0.00954549294, 0.000747646613, 0.00685970252, -0.0220457148, -0.0114172995, 0.0117113376, -0.0152613148, 0.0149744479, 0.0450954624, 0.0261192229, -0.00109188678, 0.00910802092, -0.0240250956, -0.00837651081, -0.0325593837, 0.00550784264, -0.0205253195, -0.00351053267, 0.0436611287, -0.00602420326, -0.011926488, 0.0117543675, -0.0406777151, 0.00254773581, -0.0412227623, 0.00585925439, 0.00552577199, 0.0446364768, 0.00103540986, -0.015949795, -0.0078816656, -0.00420259871, -0.00442492077, -0.0344240181, -0.0131169846, -0.0192917939, -0.0219309684, -0.00839802623, 0.0384114645, 0.0180582665, 0.00731868949, -0.00971761346, 0.0290022343, -0.0184455365, 0.00402689306, -0.0192917939, -0.00169520359, -0.00334020541, 0.00361990067, -0.031985648, -0.0007458537, 0.0245988294, -0.00997579377, 0.0216727871, -0.00506678503, -0.0335634165, 0.00359300687, -0.0163800959, -0.0110085141, -0.00501299743, 0.0299775824, -0.00696369167, 0.00838368293, -0.0248139799, 0.0218449086, -0.0103558917, 0.00503092678, 0.00344957341, -0.018632, 0.0175562482, -0.00297265733, 0.0261622537, 0.00761631364, 0.00381891453, 0.0575454831, -0.00354818394, -0.0388130806, -0.000103540988, -0.0260044765, -0.0393868126, -0.00010471759, 0.00068354985, 0.041538313, -0.00382608618, 0.023121465, -0.0230784342, -0.0154190911, 0.00174719817, -0.0232075248, 0.0188184623, -0.0183021035, -0.045181524, -0.0121990107, 0.0420259871, 0.00836934, 0.00968175475, 0.00820439123, 0.0297480877, -0.0122276982, -0.0252012499, 0.00244195363, -0.0324446373, 0.00489466498, 0.0158780776, 0.00679874327, -0.00249215541, 0.0218305644, -0.023508735, -0.0181012955, -0.0190192703, -0.0130022382, 0.00185566966, -0.0157633312, 0.0110085141, -0.0187897757, -0.0177570563, -0.000935903, -0.0110587152, 0.00868489314, 0.00369699602, -0.016623931, 0.004216942, -0.0215436984, 0.0174271595, 0.00628238311, -0.0183881633, -0.0369484462, 0.0494271517, -0.00701389369, -0.00484804902, 0.00396593381, -0.0115177026, -0.0104419524, 0.034510076, -0.0164231248, -0.0179291759, 0.0228632856, -0.000930524198, -0.0358296633, -0.0238099452, 0.0393294394, -0.0348830037, -0.0350551233, 0.0195930041, 0.00899327453, 0.023408331, 0.0286579952, 0.0397310518, -0.0140206153, -0.022877628, 0.0157920178, -0.00488032168, -0.000189040744, 0.00379739935, -0.013669204, -0.00454325322, 0.0183594767, -0.0207978431, 0.0127727445, -0.0126795126, 0.0157920178, -0.00824742112, 0.0056333472, -0.0121129509, -0.0029009406, -0.00779560581, -0.017011201, 0.0113240676, -0.021959655, 0.00409860956, 0.00531062204, -0.0100044804, -0.0029421777, 0.0149027305, -0.00361631485, 0.0557095334, -0.0186463427, 0.0147449542, -0.0125289084, -0.00519946078, -0.0363460258, -0.0267216433, 0.0127225434, 0.0079246955, -0.0296333414, -0.00354459812, -0.0107359905, 0.00723980134, 0.0271519441, -0.0552505478, 0.0036378298, -0.000951142749, -0.00876378082, -0.00975347124, -0.0217875335, -0.00892155804, 0.0191340167, -0.0328749381, -0.00638995832, 0.00947377644, 0.0217301603, -0.013425367, -0.00131869083, -0.0200950205, 0.00455042487, 0.013425367, 0.00406992296, 0.0283280984, -0.00569789205, 0.0156485848, 0.0341084637, 0.00208337023, 0.0155338375, 0.00598834455, 0.0363460258, -0.00903630443, -0.0447225347, 0.000480950141, 0.0285145603, 0.00917256624, -0.00252263504, -0.00376512692, -0.00900761783, -0.0219453108, 0.045755256, 0.007659344, -0.00961720943, -0.0125360796, -0.0384114645, 0.00128283247, -0.00405916525, -0.0177713986, -0.00753025385, 0.0316127241, -0.0122850714, -0.000983415288, 0.00665172422, 0.00617839396, 0.0198368393, -0.0426284075, 0.00691349, -0.00595607236, 0.0123352725, -0.0114029562, -0.0226768218, -0.00306230318, 0.00234155031, 0.00261945254, 0.0149457613, 0.00277902232, -0.0179578625, -0.00757328374, 0.0111304326, -0.00207799138, -0.000808157609, -0.00686328858, 0.0109511409, -0.0220457148, 0.0140851606, 0.0119193159, -0.012701028, 0.0028184664, -0.0107073039, 0.0302644484, -0.0124285044, -0.00199551717, 0.0120412344, -0.0174701884, 0.00369699602, 0.0148453573, 0.000799193, 0.033247862, -0.0208265297, -0.00400537765, 0.00215867278, 0.0294038486, 0.0372926854, 0.039702367, -0.00158135325, 0.0078960089, -0.0289448611, 0.0015463914, -0.00692066178, -0.00202241098, 0.00970327, -0.00366113777, 0.00696010608, 0.00756611209, -0.000510981481, -0.0215006676, -0.0186893735, 0.0430300236, 0.0217875335, -0.0197651237, 0.00848408602, -0.0135329422, 0.0390425734, -0.00226804079, 0.00544329779, 0.0188614931, -0.0141497059, -0.0138269803, -0.00622142386, 0.0104562957, -0.00558673125, 0.0175419059, 0.00345136621, -0.00214253645, 0.0145441471, 0.00613177801, 0.00457552588, -0.00733661884, 0.00011155309, 0.0341084637, -0.00420977036, 0.0254164, 0.0223612674, -0.0116109345, -0.000593007484, 0.024670545, 0.00945943315, -0.00373644033, -0.00595965795, -0.00917256624, -0.00274137105, -0.0207835, -0.0184885655, 0.0108937668, 0.0231501516, 0.0171546359, -0.012894663, 0.00504885567, -0.0129161784, -0.0337068513, 0.0117471963, -0.0129520362, 0.0297480877, -0.00398027711, 0.0156342406, 0.0268077031, 0.0129663795, -0.00650470518, 0.00859166123, 0.00415239716, 0.000811743434, 0.0102554886, 0.00485522067, -0.0132102165, -0.00451815221, 0.0196503773, 0.0245127697, 0.0216154139, -0.0235947948, 0.0235661082, -0.00809681602, -0.0251725633, 0.00824742112, 0.0104562957, -0.00840519741, 0.00329896831, 0.00507395668, -0.00145853846, 0.0120770931, 0.0173697863, -0.0278691109, 0.0136333453, -0.00456476817, 0.0115894191, 0.00240968121, 0.00706050918, -0.00102465239, 0.00171671854, 0.0300349556, 0.0121631529, -0.0158207044, -0.0161075722, 0.00901479, 0.0141855637, 0.011438814, -0.00178036711, 0.00160376471, 0.0152900014, -0.0140134441, 0.0130739547, 0.0194495693, 0.007465709, -0.00229852041, -0.00928731263, 0.0054683988, 0.00278260815, 0.00284356717, 0.0149744479, 0.0124930497, -0.0126221394, -0.0118404273, -0.0135329422, -0.0053859246, -0.0224616714, 0.00316091371, -0.016968172, 0.015462121, 0.00841236953, 0.0151752541, -0.0104562957, -0.00760197034, -0.0190049261, 0.0184598789, -0.00523173343, -0.00304078823, -0.0218162201, -0.0152613148, -0.00489107892, -0.0180726089, -0.00492335157, -0.00229852041, 0.00247781212, -0.00521021849, -0.0324159488, -0.000868668547, 0.00635768566, -0.000260421279, 0.00311788358, 0.0189475529, 0.00763782905, -0.00141012971, 0.0203675441, -0.0133464783, 0.031067675, -0.0150174778, 0.00693500508, -0.0124858776, -0.0150891943, -0.00262841722, 0.00262303837, -0.0256315488, 0.0292460714, -0.00782429241, -0.0108722523, -0.0181730129, -0.0420259871, 0.0119551746, -0.022002684, -0.0133679938, -0.00715015549, -0.0189045221, -0.00277364347, 0.0261335671, 0.0285862777, -0.000691169698, 0.00143971283, -0.0248283222, 0.0208408739, 0.00361452182, 0.00909367763, -0.0133536505, -0.0201810803, -0.0240824688, 0.00953115, 0.00855580252, 0.0214576367, -0.00867772102, -0.0168534257, -0.00835499633, -0.0268220473, -0.00463289907, 0.0142357657, 0.00342447264, 0.00222321786, -0.00406992296, -0.0136835473, 0.00665531, -0.000963693194, -0.0124858776, -0.00737964874, -0.0129878949, 0.00653339177, 0.0203818865, -0.023365302, -0.0266355835, -0.00442850636, -0.00572657865, 0.00892872922, 0.00142716244, 0.013719405, -0.0134612247, -0.0151035376, -0.0304652546, 0.0264060907, -0.0271949731, 0.00175526633, -0.0100475103, -0.0312111098, -0.0170829184, -0.00472971657, -0.0109583121, 0.0100618536, -0.024039438, 0.0218018778, -0.000361497019, -0.00556163024, -0.0133034484, -0.00440699141, -0.00783863571, 0.0167817082, 0.011632449, 0.00656207837, -0.0226911642, 0.000567458395, -0.00276467879, -0.0211277399, 0.0199229009, 0.00884266943, -0.0156916138, 0.0129592083, 0.00924428273, 0.0103343772, -0.00323980208, -0.00796055421, -0.00370416767, 0.024039438, -0.0172263514, 0.00505244173, 0.0351698697, -0.0199802741, 0.000750784238, -0.0077597471, 0.0113384109, 0.0202814844, 0.00173733709, -0.0370058194, 0.00992559176, 0.00132048375, 0.0275105275, -0.00977498665, 0.0174128152, 0.0194782559, 0.00386911607, -0.00327566033, -0.00257283682, 0.013231732, -0.000487673591, -0.00220708153, 0.00582339615, 0.0186463427, 0.0111304326, -0.0229636878, -0.00572299305, -0.0129735516, -0.0238673184, 0.0129018351, 0.0253159963, 0.0436611287, -0.0245414563, -0.0200233031, 0.00697086332, -0.00806812942, -0.0135544566, 0.0164518114, -0.0222321786, -0.00396593381, -0.0159067642, -0.00516718859, 0.00440699141, 0.0306947492, 0.0441488028, -0.0058018812, 0.0026660685, -0.000864634523, 0.0243693348, -0.000398027711, 0.018273415, 0.00272882055, 0.0165378712, -0.0288157705, 0.0161219146, 0.00419901311, -0.0186033119, -0.0010264453, 0.00890004262, 0.016193632, 0.0152469706, 0.0139560699, -0.00737247709, -0.00720394263, -0.0183451325, -0.0202814844, 0.0161362588, -0.0348543189, 0.0124500198, -0.00836216751, 0.0223182384, -0.0137409205, 0.00347467419, -0.0381246, 0.015318688, 0.0121559808, 0.00692066178, -0.0302070752, -0.0131385, 0.00297445036, -0.017011201, 0.0214289501, 0.010857909, 0.0209986512, 0.0027915726, -0.00990407635, 0.00636127172, -0.0195499733, -0.00946660433, 0.0262913425, -0.0223182384, -0.0276969913, -0.00724338694, -0.000419766817, 0.0325020105, 0.0132891051, 0.015849391, 0.00870640762, 0.000256835454, 0.0020528906, -0.00630031247, 0.0266355835, 0.0134540536, -0.0204822905, -0.0110372007, -0.00534289423, -0.00427072961, 0.0122061828, 0.0199659299, -0.0115248738, -0.00332406908, 0.0199802741, -0.0020672339, 0.00242940336, -0.00436037546, -0.00390138873, 0.00209771353, -0.00521021849, 0.00520663243, -0.0175849348, -0.0139417266, 0.00262124557, -0.00216763746, -0.0204105731, 0.00991842, 0.00713222614, -0.0128874918, -0.00332944794, 0.0144867739, 0.0137982937, 0.0131600145, 0.0160358548, 0.0081326738, 0.00698879268, -0.000605109672, 0.000117211988, 0.0174128152, 0.00553652924, -0.0176279657, 0.00157238869, 0.0594388023, -0.00912236422, 0.0274961833, 0.0116467923, 0.0234226752, 0.00186284131, -0.0187037159, -0.00206902693, 0.00542895449, 0.0015320481, 0.000750784238, -0.00221425318, 0.00740833534, 0.00332944794, 0.0142214224, -0.00514567364, 5.1826521e-07, -0.00769520225, 0.0225764178, -0.000279919244, 0.0188614931, -0.0103272051, 0.0305800028, 0.00283998135, 0.0143361688, 0.0179865491, -0.00704975193, 0.020554008, 0.0198511835, 0.00264096749, 0.00141999067, 0.00805378612, 0.0103272051, 0.0241111554, -0.0112810377, 0.00513133, -0.0190336127, 0.00883549824, -0.0265638661, -0.00758045539, 0.0120125478, 0.00164231251, -0.00227162661, 0.0114961872, -0.0132389031, -0.0118906293, -0.00203675427, -0.00878529623, -0.00772388885, 0.0314979777, -0.0262913425, -0.00197579525, -0.00655132066, 0.00928731263, -0.00644374592, 0.00497355312, 0.00913670752, -0.030436568, 0.0125504229, -0.0143361688, -0.00391931785, 0.021328548, -0.01236396, -0.0196934063, -0.00561183179, -0.0262626559, -0.0115965912, -0.00596324401, -0.0216584448, 0.00769520225, -0.0133966804, 0.00057328539, -0.00885701273, 0.011051544, 0.0107933637, 0.0151178809, -0.0013957863, -0.0106427586, 0.0252586231, -0.00482653407, 0.0269081071, 0.00500224, -0.0172980689, 0.00684894528, -0.00740116369, -0.0125934528, 0.023365302, 0.00646526087, 0.00192559347, 0.016580902, -0.00175526633, -0.00902913325, 0.00265531102, 0.00489825103, 0.00672344072, -0.00244733249, 0.00530703599, -0.0265064929, -0.0199515875, -0.00937337335, 0.0219739974, -0.00219632406, -0.0083263088, -0.0037902277, 0.0122276982, 0.017498875, -0.0196934063, -0.00781712, 0.0122563848, -0.00564410444, -0.013619002, -0.0206687544, -0.00169161777, 0.0203675441, -0.0217731912, -0.0141927358, -0.0141855637, 0.00757328374, -0.015992824, -0.0139919287, -0.0453536436, -0.010664274, -0.011194977, 0.00987539, 0.00677005667, 0.0151322242, -0.030006269, 0.00191125018, -0.00760914199, 0.0215293542, -0.0185029097, 0.0302644484, -0.0157203, 0.0125289084, 0.0178431161, -0.004216942, -0.00410936726, -0.011438814, 0.00465082796, -0.0056476905, 0.0263056867, -0.0054002679, 0.0142214224, 0.00106588949, -0.0176996831, 0.000130098575, 0.0244410522, 0.0175419059, -0.000994172762, -0.00052263547, 0.0041344678, 0.0104419524, 0.0214863233, -0.0164231248, -0.00640430162, 0.00228955573, -0.0157346446, -0.0313258544, 0.01056387, 0.00237382296, -0.0041057812, -0.0120053757, -0.00943074655, -0.00776691874, 0.00953832176, -0.0314406, 0.022346925, 0.0181012955, 0.0205396637, -0.00494486652, -0.0131671866, 0.00955983624, -0.0100618536, -0.00884984154, -0.0123065859, 0.010033167, 0.0243263058, -0.00748722395, 0.000916629098, -0.00966024, -0.0259614456, 0.0120842643, 0.00935903, 0.00351232546, 0.0244697388, 0.0194782559, 0.00940206, -0.00869923644, 5.28350392e-05, 0.015806362, -0.0082832789, -0.0151465675, -0.00935185794, -0.015949795, -0.0109869987, -0.0122850714, 0.0108865956, 0.00642223097, 0.00674137, 0.025014786, -0.0149887912, -0.00518153189, 0.0027341994, -0.0367476381, 0.00849842932, -0.0140708173, -0.00556880189, 0.00658359332, 0.00425280025, -0.00668041082, 0.00258897291, -0.0138915256, 0.0204249173, -0.00449663727, 0.0195356291, 0.0405916534, -0.00714298338, -0.0174415018, 0.00914388, -0.00728641683, 0.00879246742, 0.0189905837, 0.00627879752, 0.0200376473, 0.0081757037, 0.00238637323, 0.00156701, -0.0115033593, 0.0153904045, 0.000983415288, -0.00968892686, -0.0155625241, 0.023121465, 0.0182160418, -0.036891073, -0.00296189985, 0.0325593837, -0.0124428477, -0.00242223172, -0.000737337337, -0.000481398369, -0.00113043457, -0.00550784264, -0.00136620319, -0.00117973972, -0.0253733695, 0.0388991386, 0.0203818865, -0.0115177026, -2.25515414e-05, 0.01275123, 0.0245988294, -0.0100618536, -0.000747646613, 0.0182447284, -0.00956700835, 0.00254235719, 0.00997579377, 0.0117543675, -0.0144294007, 0.0132030454, 0.0277113337, -0.0209556203, -0.0075230822, -0.0142142503, 0.0193921961, -0.00430658786, 0.000265351788, -0.0206113812, 0.00332765491, 0.0160358548, -0.0205396637, 0.0331044309, 0.0227055084, -0.013812637, 0.0124141611, 0.00819721911, -0.0191770457, -0.000387046079, 0.00487673562, -0.00929448474, -0.000632003415, 0.00554011529, -0.00618915167, -0.023021061, -0.0239820648, -0.00660510827, -0.000969071931, 0.0240107514, 0.00344060874, 0.00221963204, -0.0139488988, 0.0235661082, 0.0131098134, 0.0153330313, 0.00955266505, -0.000480501913, 0.0241255, 0.0135114267, 0.00585925439, -0.023652168, 0.00108830095, -0.0110372007, 0.0148166707, 0.00265531102, -0.0136835473, -0.0175419059, 0.0059524863, -0.00265889685, 0.00930165593, 0.00339578581, -0.00441416306, -0.00415598275, -0.00551501429, 0.0118332561, -0.00784580689, 0.00527476333, -0.0452388972, 0.00015777674, 0.00378664187, 0.0252299365, 0.011245179, -0.000239802728, -0.00659076497, 0.00105064968, -0.0307521224, 0.00886418484, -0.0117471963, 0.00703540863, -0.0124213332, 0.0154477777, -0.00441416306, -0.00494486652, 0.0110587152, -0.00971044134, -0.00679157162, -0.0199802741, -0.000102476442, 0.00886418484, 0.0165952444, -0.00895024464, -0.004658, -0.0357722901, 0.00125324936, -0.00993276294, -0.0156342406, -0.00701389369, -0.0190766435, 0.00605289, 0.00364141562, -0.00139130407, -0.015318688, 0.000453832268, 0.00146929594, -0.00255849329, 0.00132048375, 0.016480498, 0.000956521544, 0.000267817057, -0.00310354028, -0.00299955113, -0.0129233496, 0.00495921, 0.00605647545, 0.00988256186, 0.00290631945, 0.00145853846, -0.000221537382, -0.00480860472, -0.0077167172, 0.00132138026, -0.0223612674, 0.00167099922, 0.00330434716, -0.0101909433, 0.013332135, -0.0119551746, -0.0111160893, 0.00522456178, -0.0123854745, 0.0139560699, 0.00518153189, -0.00263200304, 0.0166669618, -0.0187324025, 0.0261622537, -0.0323872641, 0.0083119655, 0.000838637177, 0.0273097213, -0.000523083727, -0.00975347124, -0.00460062642, -0.0115177026, -0.00946660433, -0.00338144251, -0.00706050918, 0.00461496972, 0.0214002635, 0.00907216314, -0.0176996831, -0.00150605082, 0.00399462041, 0.0194495693, 0.0108148791, -0.0124643631, 0.00450022332, 0.0136261731, -0.0193778537, -0.0101694288, 0.0250721592, 0.01391304, 0.0210416801, -0.00955266505, -0.0037328545, 0.0154190911, -0.0112380078, 0.00588077, 0.0173411, -0.0257893261, 0.0257749837, -0.0127440579, 0.0275105275, 0.0146302078, -0.0038727019, -0.0216584448, 0.037952479, -0.0219453108, 0.0203818865, 0.00278798677, -0.0022052885, 0.00126759277, 0.0200376473, 0.00984670315, 0.00624652486, 0.034510076, 0.0169394854, -0.0147162676, -0.00592021365, -0.0337642245, 0.0178431161, -0.0133177917, 0.0126723414, 0.0403334722, 0.0078960089, 0.00566561939, 0.0103487205, 0.0172693823, -0.0182877593, -0.0114818439, -0.0146660656, 0.0121488096, -0.00413088221, 0.0221317746, -0.00901479, -0.00302644493, 0.00441057701, -0.00624652486, 0.00660510827, 0.00345674506, -0.00635051401, -0.000504706288, -0.00945943315, -0.0305513162, -0.0107073039, 0.0104849823, 0.0297194012, -0.0369484462, -0.0117256809, -0.0220744014, 0.0130452681, 0.00996862166, -0.00311967661, -0.00564051885, 0.016337065, 0.000685790961, -0.00766651565, -0.00370058184, 0.0209125914, -0.00940206, -0.00876378082, -0.0228489414, 0.0213859212, -0.0226194486, 0.0201523937, -0.0363460258, 0.0172120091, -0.00270013395, -0.0156198982, 0.0424849764, 0.00580905285, 0.00346212392, -0.0216297582, -0.00942357443, -0.0224042982, -0.024627516, 0.00162169395, -0.00819004793, -0.000133236186, 0.0177713986, 0.00182787946, 0.00590228476, 0.00705692358, 0.0271949731, -0.00955983624, 0.0169394854, 0.00329179666, 0.0134325381, -0.00766651565, 0.00111429824, -0.00226804079, 0.0188758355, -0.0393007547, -0.0356862321, -0.0255885199, 0.0292030405, -0.0200519897, -0.0123567879, 0.0060098595, 0.0115463892, 0.00655132066, 0.0295759682, -0.00608874811, 0.00710353954, -0.0270515401, 0.00845539942, -0.0147879841, -0.00304795988, 0.0114746727, 0.0114172995, -0.017011201, -0.0175132193, -0.017011201, 0.0172406957, -0.0205396637, -0.00788883772, 0.000300313695, -0.00318780751, -0.024039438, 0.0220887437, 0.00176781672, 0.0171402916, -0.000274764607, -0.00833348092, -0.0183451325, 0.000365306943, 0.0141353626, 0.0105997287, -0.00361093599, 0.0248570088, -0.00496996753, 0.00197579525, 0.0105925566, -0.0162940342, 0.00311967661, 0.00518511748, 0.0161649454, -0.011388612, 0.0333339237, 0.00105692493, 0.0159641374, -0.00956700835, -0.00614253571, -0.0100044804, -0.0183594767, 1.10306455e-05, 0.00213715783, -0.0126436548, -0.0283137541, 0.0101479134, -0.0119480025, -0.00935903, -0.00437471876, 0.012701028, -0.00256566494, -0.0207835, -0.0122707281, -0.00297624315, -0.0352846161, 0.0149170738, -0.00349260354, -0.014443744, -0.015218284, 0.00590587035, -0.00328283198, 0.00644374592, 0.0301210154, -0.00801075529, 0.0211420842, -0.0132030454, -0.00454325322, 0.00507037109, 0.00800358411, 0.013812637, -0.00162617629, -0.00324159488, -0.0109511409, -0.00879246742, -0.00859883241, -0.00462214136, -0.0120842643, -0.0126651693, -0.0133751649, 0.035341993, 0.0312397964, -0.00396234775, -0.00172568311, 0.0138054648, 0.00642940262, -0.0170542318, -0.015318688, -0.000171223626, 0.00779560581, 0.00904347654, -0.00542178284, 0.00607081875, -0.00282743108, 0.0105782133, -0.00790318102, 0.00901479, 0.000272299367, -0.011245179, 0.0157776754, -0.00915105175, 0.0157920178, -0.00589511311, -0.0029296272, 0.0015186012, 0.0176566523, 0.014199907, -0.00209771353, -0.00675212778, -0.0158350486, 0.00256387214, 0.022002684, -0.00935903, -0.0129663795, 0.00897893123, -0.000767816964, 0.00521739, -0.0121559808, -0.0281559769, -0.00594531465, 0.00874943752, -0.00797489751, 0.000866875635, -0.00722187199, -0.0177713986, 0.002329, 0.00871358, -0.038440153, 0.0121272942, -0.0239246916, 0.030637376, 0.00235051499, 0.000504706288, 0.0239677224, -0.00427790126, 0.00737247709, -0.0127225434, -0.0257606395, -0.0212855171, -0.00318063586, 0.00503809843, 0.00786015, -0.0158207044, -0.012507393, -0.015462121, -0.00655490672, 0.0133608216, 0.00264455331, 0.00112505583, -0.00960286614, 0.0104993256, -0.000925145461, -0.0282707252, 0.0127655733, -0.00733303279, 0.00230031321, 0.00579112396, -0.0156772714, -0.00105513202, 0.0209556203, 0.0132460753, -1.63183522e-05, -0.00201882515, 0.030293135, 0.00438189041, 0.0245844852, -0.00602061721, 0.00871358, 0.0224042982, -0.00816136, 0.0130739547, 0.0154764643, 0.00457911147, 0.00166024163, -0.0263056867, -0.0327888764, -0.00514208758, -0.00228597, -0.0145011172, 0.0121416375, 0.0112308357, -0.0205683503, -0.0178000852, 0.0003659793, -0.0131887021, 0.0135401133, -0.0173411, -0.0228059124, -0.0245557986, -0.015318688, 0.0130596114, -0.00978933, 0.000417077448, 0.0122061828, 0.00526042, -0.00735096214, -0.00314298458, 0.017011201, 0.00751591055, 0.00259973039, 0.0158207044, 0.0129018351, -0.024383679, -0.00450739497, -0.00489825103, -0.00780994911, 0.0193061363, -0.00938054454, 0.0232792422, -0.000425817911, -0.00658359332, -0.00540385349, 0.000901389285, -0.00276647182, 0.0139775854, -0.00190945726, -0.00701747928, 0.0129520362, -0.0141783925, 0.0082832789, 0.013669204, 0.0249574129, -0.0140421307, -0.0118619427, 0.00342447264, -0.00201523933, 0.00124338828, -0.00390138873, 0.0118332561, 0.00920125283, 0.000790228427, -0.00325952424, -0.00663379487, -0.00326848868, -0.00869923644, -0.00287942565, 0.0102483165, -0.00550425705, 0.023121465, -0.0161362588, 0.0107073039, 0.00600268785, -0.00209054188, -0.0198368393, -0.0252586231, -0.00152039411, 0.00905064773, -0.0136261731, 0.0271519441, -0.0076306574, 0.0293464754, 0.0061461213, 0.0111376038, 0.0166669618, -0.000793366053, -0.0135185989, -0.000591662771, -0.00147467467, -0.00314477738, 0.0106786173, -0.00499506854, -0.0121272942, 0.00410936726, 0.00833348092, 0.00576602295, -0.0284858737, 0.0189905837, 0.00882115401, 0.00954549294, 0.00203316845, 0.00426714402, 0.000768265163, -0.00742267864, 0.0188328065, -0.0281559769, -0.0264347773, -0.0214002635, 0.0129233496, 0.00992559176, -0.00612102076, -0.00217122328, -0.0161075722, 0.0171259493, 0.00903630443, 0.00638278667, -0.0159784816, 0.000405423489, -0.00641864492, -0.0125791095, 0.0134827401, 0.0145369759, -0.00188077055, -0.00182787946, -0.00622142386, 0.0104347803, 0.00221963204, -0.012944865, 0.0373500586, 0.00910802092, 0.024914382, -0.0333626084, 0.0146732377, 0.0199659299, -0.00853428803, -0.00872075092, 0.0143074822, -0.0364607722, 0.00963155273, 0.0366615802, 0.00291707693, -0.00261945254, 0.0100044804, -0.0155051509, 0.0167817082, 0.00399462041, 0.00874226633, 0.000215486274, 0.01352577, -0.0164518114, 0.014199907, -0.023465706, 0.00707126688, -0.0113168955, -0.0239246916, 0.0220457148, 0.0264634639, -0.0300636422, 0.00258538709, -0.00254415, -0.000749439525, -0.00801792741, 0.0144078853, 0.00177588488, -0.00490900828, 0.00503809843, -0.024527112, -0.0074800523, 0.0327601917, -0.0061461213, -0.0220457148, 0.0220313706, -0.00146750303, -0.00660869433, -0.0243263058, -0.00628955476, 0.00081263989, 0.014637379, 0.00291707693, -0.00235768664, 0.000233975748, 0.0186750293, -0.00395876216, 0.00849842932, -0.0165235288, 0.0143505121, -0.00255490746, -0.00308919698, -0.00806095731, -0.00825459231, 0.0136978906, 0.00594172906, 0.000874943798, 0.00509547163, -0.0376369245, 0.00770954555, -0.0219022818, -0.0120412344, -0.00989690516, 0.000735544425, 0.000876736711, 0.00881398283, 0.00675571337, -0.025932759, -0.00306051038, 0.00315374206, 0.0161075722, -0.00055939029, 0.00703899423, -0.0112738656, 0.0254737735, -0.021859251, -0.00760914199, 0.00215687975, -0.0133823371, 0.00268758344, -0.00855580252, 0.00962438155, -0.0179148316, 0.00213895063, -0.0109654842, -0.00630748412, 0.0151752541, 0.00119318662, -0.00533213699, 0.0055939029, -0.0169107988, 0.0137409205, -0.0297480877, 0.0310389884, 0.0255598333, -0.0158924218, -0.00290811225, -0.0211994573, -0.0102196299, -0.0127655733, 0.000506947457, 0.00626445422, 0.0300349556, -0.00694576278, 0.0156198982, 0.00324518071, -0.0209986512, 0.0107359905, 0.0255598333, 0.010226802, 0.0125791095, -0.00498072524, 0.0199802741, 0.0126938568, -0.0186463427, -0.0203962307, -0.00412729615, -0.0137050617, 0.0301210154, -0.0254020561, -0.00865620561, -0.000915732642, -0.00352666876, -0.00916539505, 0.000395338313, -0.000956521544, -0.0173124112, -0.0129663795, -0.0128659764, 0.0042312853, -0.00877812412, -0.00362886512, 0.0116898222, 0.0027341994, -0.00826176442, -0.00453608157, 0.0112666944, -0.0191483591, 0.0160358548, -0.0178000852, -0.000159121439, -0.00963872485, 0.00896458793, 0.00166651688, -0.0130165815, 0.0124643631, -0.0125504229, 0.0237382278, -0.00539309625, -0.0060636471, -0.00597758731, -0.0112164924, -0.00351232546, 0.00498431083, -0.00375078362, -0.0325306952, 0.0311537366, 0.0117041655, -0.00279515842, 0.00898610242, 0.00526759168, -0.00556163024, 0.00600627391, 0.0264347773, -0.00734379049, 0.015705958, -0.0263774041, 0.00938771665, -0.0132532464, -0.00287763262, -0.0131169846, 0.0176566523, 0.00331689743, 0.00751591055, 0.00891438592, -0.00162796921, -0.00733661884, 0.0020941277, -0.00755176879, -0.0252729654, -0.00547915604, -0.00233617169, 0.0402187258, 0.00498431083, 0.0037471978, -0.000623487111, 0.000356566481, 0.0162796918, 0.00450022332, 0.0164948422, 0.0188041199, 0.013669204, 0.0162796918, 0.0114459861, 0.00338682136, 0.00148632866, -0.00927296933, -0.015949795, -0.00655849231, -0.00868489314, -0.000304795976, -0.00175436982, -0.00644733151, 0.00323263044, -0.00171761506, -0.00134648115, 0.00146212429, -0.0247279201, -0.0266499277, -0.00872792304, 0.00806812942, 0.00322008, 0.00544329779, 0.00755176879, -0.0279121399, -0.000337068515, 0.00765217235, 0.00163514086, 0.0185315963, 0.00253339252, 0.00938054454, 0.0142787956, -0.00762348529, -0.0447225347, -0.00198117387, 0.000691169698, -0.00131689792, 0.0120053757, -0.00405557966, 0.0220744014, 0.00307485368, 0.00692066178, 0.00158314616, -0.0116969943, 0.0245701429, -0.0141855637, -0.0169107988, -0.00229493459, 0.0375508666, -0.00140206155, 0.0349690653, 0.0113957841, 0.00607081875, 0.0247422624, -0.0130596114, -0.00833348092, 2.48487177e-05, 0.00464007072, 0.0198655259, 0.0104491236, -0.0147736408, 0.00928014144, -0.0140134441, 0.004216942, -0.0118475994, -0.0285575911, 0.0268077031, 0.0183021035, -0.00333124097, 0.0155625241, 0.00284894602, 0.0103989216, -0.0121488096, -0.0103272051, 0.00178216, 0.00394800445, 0.0152613148, -0.00434603216, -0.000844016, -0.0128086032, 0.0157489888, -0.0217445046, -0.0208552163, -0.00819721911, -0.00207799138, 0.00167637796, -0.00259614456, 0.0183594767, -0.00158045685, 0.000795607164, -0.00944509, 0.00863469113, 0.00649036141, -0.00439264812, 0.00841954071, 0.00553652924, -0.00550784264, 0.00687763188, -0.00765217235, 0.00304975267, -0.0148166707, -0.000875840255, -0.0122994147, 0.023752572, -0.0365468301, 0.013669204, -0.00846257061, 0.0256602354, 0.00977498665, -0.0173697863, -0.000205625227, 0.0275965873, -0.00674854172, 0.00310533331, -0.000441281823, 0.00210488518, -0.0118619427, -0.0127584012, 0.0378951058, -0.00689197518, 0.0267216433, -0.0165091846, -0.0308668688, -0.0182590727, 0.0308668688, 0.0307521224, 0.00363245094, 0.00742267864, -0.00129000423, 0.0050883, -0.0112882089, -0.00178036711, -0.00181084673, 0.0102411453, -0.00227341941, 0.00197579525, 0.0213142037, -0.0119408313, 0.0108507369, 0.0145728337, -0.0233509578, -0.00197758805, 0.0038583586, 0.0346248224, -0.000351860072, 0.00233437866, 0.00488390727, -0.000864186266, -0.00296727847, 0.00683460198, -0.0117973974, 0.00911519304, -0.00244553946, 0.00426714402, 0.0163083784, -0.00331151881, 0.0273240637, 0.00958852284, -0.0080896439, 0.0135688, 0.00867055, -0.0301783886, 0.00457911147, -0.00620708056, -0.0176996831, -0.0240107514, 0.00490183663, -0.00944509, -0.000837740721, -0.0159354508, -0.0167960525, 0.00502016908, -0.00434603216, 0.0115177026, -0.0305800028, -0.00407709461, -0.00359121384, -0.00356252724, -0.003998206, -0.0141066751, -0.000166068989, -0.00706409523, -0.021328548, 0.0285719335, -0.00622142386, 0.0179435182, 0.0200663339, 0.00843388401, 0.00630389806, -0.0198224969, 0.0120986076, 0.00508112833, -0.0226194486, -0.00981801655, 0.012263556, -0.0275105275, 0.00192738639, -0.00340475049, 0.0116252778, -0.000470640865, 0.0041488111, 0.00470461557, 0.00403406471, 0.00371492514, 0.00379739935, -0.012313758, -0.00240609539, -0.00947377644, -0.00627162587, -0.0128874918, 0.0192631055, 0.0196934063, 0.0103343772, -0.0151035376, 0.0155912116, -0.0292604156, -0.003829672, -0.0168247391, 0.00453608157, -0.0151465675, 0.0075087389, -0.00591662806, -0.0273097213, -0.00333482679, 0.00343164429, 0.00980367325, -0.0110228574, 0.021084711, -0.0161075722, 0.00159121433, 0.00661228, 0.000822949165, -0.00414522551, -0.00645808922, -0.00691707619, -0.0161362588, 0.0173124112, -0.0102196299, 0.0105997287, -0.00415956881, 0.00145405612, -0.0233222712, -0.0205396637, 0.0196503773, 0.00973912794, 0.0135401133, -0.0138198091, -0.0193061363, -0.0145656625, 0.0280699171, -0.0195069425, -0.00145764195, -0.0146302078, -0.00164141599, -0.0168964546, -0.000245629693, -0.00740116369, 0.000669654692, 0.011001342, -0.0019686236, -0.0174271595, -0.00110174785, -0.0120627498, 0.00744419359, -0.00726848794, 0.0161649454, 2.15710406e-06, -0.00780277746, 0.0359730981, -0.00340475049, 0.00545046944, -0.0154764643, -0.0144007141, 0.00141281902, 0.021715818, -0.00651187683, -0.00355535559, -0.00983953197, -0.0430873968, -0.00360017852, -0.00212102151, -0.022777224, -0.010370235, -0.0395302474, 0.00783146359, 0.00313581293, 0.0102626598, -0.000322949287, -0.0244410522, -0.0117902262, 0.0100259949, -0.00292066275, 0.000896010548, -0.0155768683, -0.0221174303, -0.0197938103, 0.00642940262, 0.0141855637, 0.0201523937, -0.00317167118, -0.0107001318, 0.023264898, 0.0322725177, -0.00763782905, -0.00239713071, 0.0209843069, -0.0242259018, 0.012457191, -0.0312971696, 0.0126293115, 0.0103989216, 0.00532855093, -0.015705958, -0.0127440579, -0.0272380039, -0.00231286371, -0.0207978431, 0.00836934, 0.0196360331, 0.005550873, 0.0101550855, 0.00411653891, 0.0311250482, 0.00682025822, -0.0222178344, -0.0133608216, -0.0277256779, -0.00538951, 0.00678798603, 0.0207978431, 0.0027897798, 0.0103774071, -0.00668041082, -0.016968172, -0.00492335157, 0.00968892686, -0.00315194903, -0.0228919722, -0.00816136, -0.017642308, -0.00565127609, 0.000242940325, 0.010807707, -0.0309816152, -0.00899327453, 0.000203944379, -0.0121344663, 0.000901837542, -0.0159784816, -0.00294755655, 0.0109869987, 0.0153617179, 0.0378090441, -0.0212138016, 0.0133249639, -0.00992559176, 0.0108507369, -0.00521380408, -0.0173124112, 0.0120053757, -0.0243980214, -0.0197938103, -0.00055221864, 0.0228632856, -0.00219990988, -0.00899327453, 0.00947377644, -0.00776691874, 0.00424921466, 0.0369484462, -0.0189905837, -0.0079677254, 0.012263556, 0.0212998614, 0.0036934102, -0.00171851146, 0.0173124112, 0.0154908076, 0.00616763625, 0.00620349497, -0.00877812412, -0.0123854745, 0.00651187683, 0.0126866847, -0.000458762777, 0.0131385, 0.00865620561, -0.0261192229, 0.0212424882, 0.00198834552, -0.0314692892, 0.000544150476, 0.00156521704, 0.00616763625, 0.0198798701, 0.0162796918, 0.0469887853, -0.0135114267, -0.00102465239, -0.00967458356, 0.0199229009, 0.00876378082, -0.0105208401, 0.0177713986, -0.0144007141, -0.00213177898, -0.0055795596, -0.00455759652, -0.0188758355, 0.0121559808, -0.00172299379, -0.00813984592, 0.0202241093, 0.0219453108, -0.00944509, -0.0127368867, 0.0135042556, -0.00266786129, -0.0206687544, 0.0225764178, -0.0202671401, -0.0101335701, 0.0082832789, 0.0235230792, -0.00609950535, 0.00271627, -0.00801792741, 0.000980725861, -0.00957418, 0.0145728337, -0.0118978014, 0.0275679, 0.0147879841, 0.0129376929, -0.0140779885, 5.17424814e-05, -0.00329000363, -0.00463648466, -0.00511340098, 0.046816662, -0.0102339732, 0.0172263514, 0.0140493019, -0.00073419977, 0.0171833225, -0.0262196269, 0.00619273726, 0.0179722048, -0.0179291759, 0.00622859551, 0.0256889239, -0.00835499633, -0.0131671866, 0.0079820687, -0.0134899123, -0.00737247709, -0.0108937668, 0.0338789709, -0.0261765961, -0.00727207353, -0.0114961872, -0.0114029562, -0.00227341941, 0.00851994473, 0.0111447759, -0.0124930497, 0.0147592975, -0.00821156241, 0.0128014311, 0.005550873, -0.0228202548, -0.0079103522]
12 Oct, 2021
Node.js Readable Stream close Event 12 Oct, 2021 The ‘close’ Event in a Readable Stream is emitted when the stream and any of its hidden resources are being closed This event implies that no further events can be emitted, and no further computations can take place. Moreover, if a Readable stream is created with the emitClose option then it can always emit ‘close’ event. Syntax: Event: 'close ' Below examples illustrate the use of close event in Node.js: Example 1: // Node.js program to demonstrate the // readable close event // Including fs module const fs = require('fs'); // Constructing readable stream const readable = fs.createReadStream("input.txt"); // Calling close method readable.close(); // Handling close event readable.on("close", () => { console.log("Stream ended"); }); console.log("Done..."); Output: Done... Stream ended Example 2: // Node.js program to demonstrate the // readable close event // Including fs module const fs = require('fs'); // Constructing readable stream const readable = fs.createReadStream("input.txt"); // Handling close event readable.on("close", () => { console.log("Stream ended"); }); console.log("Done..."); Output: Done... Here, close method is not called so close event is not emitted. Reference: https://nodejs.org/api/stream.html#stream_event_close_1. Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event
https://www.geeksforgeeks.org/node-js-readable-stream-close-event?ref=asr7
CSS
Node.js Readable Stream close Event
Node.js Readable Stream close Event, CSS pause-before Property, CSS, How to Play and Pause CSS Animations using CSS Custom Properties ?, Node.js Stream readable.resume() Method, Node.js Readable Stream resume Event, Node.js Stream readable.pause() Method, CSS Tutorial, p5.js | pause() Function
GeeksforGeeks
[-0.0183119532, -0.00549751241, -0.00827244762, 0.0667031556, 0.00282892841, -0.0170161109, -0.00755253527, 0.030786071, -0.0270687044, -0.00101033156, -0.00975154061, 0.0157464463, -0.0127555383, -0.0260477383, 0.0238487329, -0.0267152935, -0.0386134833, 0.00170651951, 0.00805647392, 0.0153799457, -0.016728146, -0.00240352564, -0.000783313764, -0.0164532699, -0.0187439, -0.00309071457, 0.00969263818, -0.00357665564, -0.0350008309, -0.0111586414, 0.00171797269, 0.0248304326, 0.0151966959, -0.0273566693, -0.0115120532, -0.0183381308, -0.00713367714, 0.0288750306, -0.00647593895, -0.0147254802, -0.0124479393, 0.0159689654, -0.0356552973, -0.0177491121, -0.0199088491, -0.0146469446, -0.0386134833, -0.0499488302, -0.0392417684, 0.00654138578, 0.0148171056, 0.00374027202, 0.0194376335, -0.0250660405, -0.0171600934, 0.0176836662, 0.0335086472, -0.00695697125, -0.0171993617, -0.0263880603, 0.0278540645, -0.045184318, 0.011237178, -0.00205665873, -0.0137306927, -0.0106677925, -0.0147647485, 0.0198826715, -0.00795830414, 0.00241825101, -0.0081611881, 0.00598181738, 0.0273566693, -0.000985789113, 0.00379590155, -0.00660028728, 0.0244508423, 0.0243068598, -0.0329065397, -0.0138615854, -0.0111062843, 0.00156826363, -0.00865203794, 0.0153537672, 0.0275399201, -0.0151312491, -0.0177883804, -0.0284823515, 0.0596872792, 0.0154715711, 0.0378543027, 0.0341107585, -0.00717294496, -0.00121812441, 0.00537970895, 0.00448963512, -0.00887455605, -0.00565131195, -0.0455246419, 0.0316761434, 0.0201051887, 0.00987588894, -0.0121861529, -0.0171470027, -0.0125395646, -0.0118720094, 0.0506294742, -0.0309431423, 0.0176313091, 0.0332206823, 0.00774887484, 0.00422784919, -0.0503676869, 0.00848187692, -0.0279064216, 0.0350531861, 0.0170422886, -0.0127948066, -0.00936540589, 0.0321211815, -0.0210476201, 0.000620106352, 0.0237309299, 0.0609438531, -0.0340845771, 0.013396915, -0.00373699958, -0.0331421457, -0.0114204278, 0.0384302326, -0.0374616235, -0.0330636129, -0.02162355, 0.0212177802, 0.0305504631, -0.0117934737, 0.0150527135, 0.0133838253, 0.0201182775, -0.0172517188, -0.0215581022, -0.00481359567, 0.0497655794, 0.00333941169, -0.00401187548, 0.0289535671, -0.0273043122, -0.0142673543, -0.0183119532, 0.00505247572, -0.00147745654, 0.0191627592, 0.0375925153, -0.0046696132, -0.0182857737, -0.0206942074, 0.0188224353, -0.0023348066, -0.041990526, -0.0263357032, -0.0146993017, -0.0298698191, 0.0230633747, -0.007539446, -0.0316499658, 0.0550798401, 0.0434565283, 0.0230764635, 0.0375925153, 0.0223434623, -0.0282205641, -0.00038449865, -0.0372260138, 0.00885492191, -0.00421803212, -0.00104223681, 0.0376710519, 0.0125526534, 0.00243297662, 0.0276446342, -0.0189140607, -0.0130369589, 0.00144146092, -0.0238225553, 0.00334104779, -0.0288226735, 0.0281943865, -0.0184952039, 0.00633195648, -0.0359694399, -0.0224089082, -0.0187439, 0.0260477383, -0.0078797685, 0.0110931955, 0.0371998362, -0.021741353, -0.000482259464, 0.0067933551, -0.00655774726, -0.0122450553, -0.00188976992, 0.019633973, -0.0246995389, 0.000858986343, 0.00745436549, 0.00958138, -0.0275399201, 0.0648706481, -0.045917321, 0.0078797685, -0.00859313551, -0.0116036786, -0.00459107757, 0.0213486739, -0.00520954747, -0.00464670733, 0.00375336129, 0.00275530107, -0.0228670351, 0.0167543236, -0.0268069189, -0.0143851582, 0.00665264484, -0.0404198058, -0.0384825878, -0.00338358805, -0.0114531517, 0.00667882338, -0.0113353478, 0.000209838094, 0.0453152098, -0.00110604719, -0.0233120713, -0.0117411166, -0.00601781299, 0.00808265246, -0.045184318, 0.0330374315, -0.00107414194, 0.00871093944, -0.0292415321, 0.00537316408, -0.00463034539, -0.0573835596, 0.00778814266, -0.0135212634, 0.0337966122, 0.00394315645, -0.0109884804, -0.00791903585, 0.0135605307, -0.00460416684, 0.0215057451, -0.0520954765, 0.010216211, 0.00770960702, 0.0416240245, 0.00223336439, -0.0139793893, 0.040053308, 0.0288750306, -0.028456172, 0.0014815469, -0.00942430738, 0.0182857737, 0.00239207246, -0.0195947066, 0.0197648667, -0.0158118941, 0.0347128659, -0.0125330202, -6.99460288e-05, -0.0383778736, -0.0506556518, 0.0254587196, -0.00964028109, -0.0274090264, -0.00702896249, -0.0154846609, -0.00696351612, -0.00786013436, 0.0265974905, -0.00137356, -0.0221863911, -0.0178930946, 0.021453388, -9.06537389e-05, -0.0359956175, 0.0258383099, -0.00592291541, -0.0230241064, 0.0280896723, 0.013344557, 0.0329065397, 0.00472851517, -0.0565982, 0.0160344113, 0.00399878575, 0.000262808928, -0.00879602, -0.0316761434, -0.00311198481, 0.0249744151, 0.00280438596, -0.0101049514, 0.0160082337, 0.0117018484, 0.0286917798, -0.0165579841, 0.0298436396, -0.0212963168, -0.0133052897, -0.0173433442, 0.0159427859, 0.0096010128, 0.0336395428, 0.0221994799, -0.00347848563, 0.00249351468, 0.0336395428, 0.0365715474, -0.0335871838, 0.0266498476, -0.00339013268, -0.0279064216, 0.0321735367, -0.0240974296, -0.00666900631, -0.0210737977, -0.000125473365, 0.0210476201, 0.00104632718, 0.0212570485, -1.56586054e-06, 0.00632868428, -0.0582736321, -0.00742164208, 0.00294018746, 0.0223696399, -0.0111979097, 0.0019192209, -0.0110670161, -0.0223303735, 0.0261131842, -0.0103601934, -0.0300268903, 0.000304531102, 0.0654989332, 0.0376448706, 0.000781268522, 0.0202884395, 0.0263880603, 0.00895309169, 0.0156940892, -0.0194769017, -0.00829208177, -0.0478807166, 0.0267283823, 0.0364930108, 0.0156417321, 0.00414276822, 0.0300530698, -0.00214992021, 0.0146731231, -0.0550798401, -0.0244246628, 0.0135212634, 0.0062370589, 0.00275039254, -0.0189664178, 0.0198303126, -0.0153668569, -0.000518664136, 0.0143066226, -0.0489540398, -0.0172778964, -0.0218198895, 0.00880256481, 0.011950545, -0.00896618143, 0.0896356329, -0.0335086472, 0.0237309299, 0.0169899315, -0.000752226624, 0.00909053, 0.0215581022, -0.000448718114, -0.0128798867, -0.0296342112, 0.0512315817, -0.0290582813, -0.00424421066, 0.0592684224, 0.00797793828, -0.0277755279, 0.0163223762, -0.0119112777, -0.00579529442, -0.0710488, -0.00321833557, 0.0293200668, 0.0118392864, -0.0288750306, 0.00806301832, -0.0337966122, 0.00164843572, 0.020144457, 0.0204324219, 0.00850151, -0.0111062843, -0.00922796782, -0.0115120532, -0.0075459904, 0.0485613607, 0.0260870066, 0.027199598, -0.0217544436, 0.0271210615, 0.00918215513, -0.000431129331, -0.0489278622, 0.0288226735, -0.0136914244, 0.00095715624, -0.0162438415, -0.0335610062, -0.0357076526, 0.0104845418, -0.0496346839, 0.0190187767, -0.0202360824, -0.0273566693, -0.00242806808, -0.0301839616, -0.0158380717, 0.0309955, -0.00757871382, 0.00438819313, -0.0418858118, 0.00442091655, -0.00584110711, 0.0300530698, 0.00133838248, 0.0184166674, -0.0430900268, -0.0159296971, -0.0218198895, -0.0180894341, -0.00542224897, 0.00500339083, -0.0365715474, 0.0168721285, 0.0350270085, 0.000279579603, 0.0482472181, -0.0187439, -0.0157464463, -0.0133903697, 0.0115775, 0.00772269629, -0.013887764, 0.0133314682, -0.0340845771, -0.0507865436, -0.00667227851, 0.0171339139, 0.00849496573, -0.00415913, 0.0189925972, 0.0189664178, -0.0616768561, 0.0240319837, -0.0168852173, -0.0233382508, 0.00907744095, -0.00110931951, 0.0324615, -0.0578024201, 0.000445445767, -0.0152228745, -0.00244115735, 0.0218591578, -0.0148171056, 0.0142673543, 0.0259953812, -0.0247388072, 0.000138255898, -0.033456292, 0.019974295, 0.00341631146, -0.0181548819, 0.00113222585, 0.00661337702, -0.012578832, -0.016099859, -0.0243199486, 0.0202229936, 0.0119701792, -0.000508847123, 0.00307271676, 0.0415978469, 0.00393006718, -0.0334824696, 0.0107855964, 0.000215155625, 0.0412313454, -0.0121796085, -0.0262964349, -0.0498179346, 0.00201411848, -0.026636757, 0.016845949, 0.000545660849, -0.0135736205, 0.0339798629, 0.019633973, -0.00837716181, 0.0517027974, 0.00146682141, -0.0181025229, 0.0362574048, -0.00568730757, -0.00280765817, 0.0168983061, 0.00847533159, 0.00945703, -0.0171208251, -0.000858168292, 0.0116494913, 0.0499750078, 0.0374354422, 0.0113418922, 0.0224350877, -0.0158118941, 0.0126770027, -0.021963872, 0.00878947508, -0.00771615142, -0.00922796782, 0.00678026536, -0.0137437815, 0.00833789445, -0.0254194513, 0.017068468, 0.0127751725, 0.00442746095, 0.0206287615, 0.0160344113, -0.0139139425, 0.0154061243, 0.0430376716, 0.0143197114, -0.00263749715, -0.0105630774, -0.0227884986, -0.00121730636, -0.0178014692, 0.0119243665, -0.00937195, 0.0131351287, 0.0360741541, 0.000557114, 0.0091232527, -0.0153537672, 0.0064464882, 0.0114531517, -0.0504985787, -0.00426711701, -0.0150134452, -0.0314143561, -0.0170030203, -0.0341107585, 0.00448636292, 0.0176836662, 0.0358123668, -0.0337442569, 0.0238094646, 0.000614788791, -0.0189140607, 0.0146469446, -0.00877638627, 0.0147909271, -0.0183119532, 0.00135392614, 0.0238618217, 0.00125493819, -0.0429067761, 0.0259299353, -0.0146731231, 0.00749363331, 0.001821051, -0.00302035967, -0.0229717493, 0.026348792, -0.0038351696, -0.00983007625, 0.000727684121, -0.000735046866, 0.0201968141, 0.0284038149, -0.00138255896, 0.0291106384, -0.0393464826, -0.00584437931, -0.00338031584, 0.00141200994, 0.0158249829, 0.0264535081, 0.0104976315, 0.00972536206, 0.0196732413, 0.00652502384, 0.0145945875, 0.00916252099, -0.0179061834, 0.0232335348, 5.22805676e-05, -0.00207465654, 0.00285674306, 0.00382208, 0.00655774726, 0.00318397605, 0.0120487148, 0.00975808501, -0.0017539683, -0.0384564102, 0.0163092874, -0.0212570485, 0.00513101183, -0.0165972523, -0.0400009491, -0.0109099448, -0.00601126812, 0.0333253965, 0.00234135147, -0.00840334, -0.0234691426, -0.0372521915, -0.00358647248, -0.022421997, 0.0183119532, 0.0503415093, -0.00271439692, 0.00745436549, -0.038299337, 0.0398438759, 0.00899236, -0.0614150688, 0.0204586014, -0.0134950848, 0.0123694036, 0.0262048095, -0.0184428468, -0.00340649439, 0.00486595323, 0.00536334701, -0.00813501, -0.0401580222, -0.00265385886, -0.0389799811, 0.00066223758, -0.0136914244, 0.0190187767, -0.0135605307, 0.0351055451, -0.0121534299, -0.000254014536, 0.0336395428, -0.0328280032, -0.0242937692, -0.0109426677, 0.0257074162, -0.00360610639, -0.00346212392, -0.0038384418, 0.0192674734, 0.00633195648, 0.00729074888, 0.00739546353, -0.0100525944, 0.0118196523, 0.0325138606, 0.00833789445, -0.0106808813, -0.0133707365, -0.0170815568, -0.0208643693, -0.0278802421, -0.0015126341, -0.0175527725, 0.0417810977, 0.0340845771, 0.00939158443, 0.0106285242, 0.0112044541, -0.0165448952, 0.0143328011, -0.0509959757, -0.0507865436, 0.0271734204, -0.0492420048, 0.0503938645, -0.0251969323, 0.036650084, -0.00331486925, 0.0145814978, -0.0195947066, 0.0352626182, 0.000200634662, 0.0168590378, -0.0179978088, 0.00174905977, -0.0030759892, -0.0214010309, -0.00578547735, -0.0045289034, -0.000369977701, 0.00401187548, -0.0183643103, -0.0323306099, 0.012120706, -0.00943739712, -0.0351055451, -0.0353149734, -0.0195423476, -0.018835526, -0.00270130765, 0.0138354069, -0.00289764721, -0.0171470027, -0.0030776253, -0.00221045827, -0.00765070505, -0.00238552783, -0.0145945875, 0.030498106, 0.0487707891, -0.0111913653, -0.0246210024, -0.020144457, -0.0341369361, 0.015419214, 0.00242152344, 0.0108248638, -0.00709440932, 0.0082135452, 0.00920833368, -0.0146862119, -0.00213519461, -0.0152097847, 0.00709440932, -0.0413360596, 0.0104583632, 0.0238749124, -0.00814155396, -0.00662646629, 0.0142935328, 0.053666193, 0.0325138606, 0.00568403536, -0.0078405, 0.0172386281, 0.023220446, -0.00785358902, -0.0308122486, -0.0111193741, -0.000602108543, 0.031362, 0.00297781941, -0.0113418922, 0.01004605, -0.0155239282, 0.0146469446, 0.00330014364, 0.0237571076, -0.0332992189, 0.0195423476, -0.0386134833, 0.00155762862, 0.0494514331, -0.021283228, -0.00895963702, 0.00486268103, -0.015419214, -0.00550405728, -0.00282729231, 0.0323829688, 0.045917321, 0.015078892, -0.0110015702, 0.0519907624, -0.0142935328, 0.0303148553, -0.0409433804, 0.00292055355, 0.0329327174, -0.00886146631, -0.0344249, 0.0281943865, -0.0330112539, -0.0026816735, 0.0165318064, -0.00763107091, -0.0105368989, -0.0235215, -0.0285870656, -0.0252885576, 0.0089007346, 0.0349222943, -0.0369642265, -0.00154535729, -0.0203931537, 0.0178407375, -0.00862585939, 0.00430965703, -0.0046597966, -0.0130827716, 0.00670172973, 0.0177622, -0.0219376925, 0.0153406784, -0.0270425268, -0.0689545125, 0.0272781346, 0.000333777542, -0.024189055, 0.00452235853, 0.0113288024, -0.0110473828, 0.00789940171, -0.0626192838, 0.0283514578, -0.0253932718, -0.0179585405, 0.0234822333, 0.0249875039, 0.00596218323, 0.0185344703, -0.0175920408, 0.0214795675, 0.0178014692, -0.0221078545, -0.0139532108, 0.00342940073, -0.0170946456, 0.0110735614, 0.0093195932, -0.0196077954, 0.0031430719, -0.0267152935, -0.00752635673, -0.00416567456, -0.0262179, -0.00516700745, 0.00861931406, -0.0234822333, 0.00388098205, -0.00620106328, 0.00278966036, 0.0134689063, -0.0107921408, -0.00177687465, 0.0147647485, 0.0277755279, -0.00467943028, -0.0317285024, 0.0021188329, -0.00711404299, -0.0114204278, -0.0171077363, -0.00974499527, -0.0188747942, 0.0162831079, -0.00223663682, -0.0323567875, -0.0119701792, 0.00495757814, -0.0090578068, 0.00449618, -0.00333777559, 0.00516700745, -0.00516700745, 0.0303672124, 0.00916252099, -0.0167674143, 0.0145160509, 0.0050066635, -0.0166888777, 0.00330341607, -0.00523899868, 0.0206680298, -0.0223434623, -0.00189631467, 0.0503415093, -0.00106923352, 0.00611271057, 0.0036388298, 0.00470888149, 0.0123890378, -0.00384825887, 0.00824626908, 0.00247224444, 0.0293724239, -0.0341631137, -0.0133118341, 0.000290010154, -0.00137601432, -0.00572984805, -0.015995143, -0.00315452507, -0.00681953365, -0.000804992917, 0.0268330965, -0.0244639311, -0.0151050705, 0.0262048095, 0.0281158499, 0.0123105012, -0.0435874201, -0.0167674143, -0.036362119, 0.0218591578, -0.00676063169, -0.0392155908, -0.0127817169, -0.0208643693, -0.01263119, 0.01376996, 0.0234691426, 0.0266629364, -0.0107136052, -0.0112895351, -0.0318593942, 0.00484304689, 0.00222681975, -0.0149741769, -0.0273566693, -0.00992824603, 0.0322520733, 0.0188878831, -0.0103471037, 0.00368791469, -0.0283514578, -0.0259299353, -0.0119963577, -0.0110473828, -0.0105107203, 0.0331159681, -0.0171470027, -0.00637449697, -0.000924432941, -0.0156940892, 0.000548115117, -0.0447131023, -0.0137045132, -0.00405441551, 0.00564149488, 0.0125526534, 0.0150396237, -0.0173040759, 0.00419512577, -0.00749363331, 0.043194741, -0.020026654, 0.00182595954, -0.0089007346, -0.00518664159, -0.0211392455, -0.00708132, -0.0294509605, 0.00208120118, 0.00883528776, -0.0150396237, 0.0282991, -0.0113288024, -0.0337704346, -0.00175560452, -0.0140448362, -0.0196601525, 0.00858004671, 0.0106088901, -0.0139924781, 0.0073300167, -0.0138354069, 0.0253147371, -0.0183904879, 0.00987588894, -0.00304162968, -0.0129584223, -0.0116625801, 0.0081480993, 0.0255896132, 0.00249515078, 0.00923451222, 0.0430900268, 0.0137437815, -0.0307075344, 0.001024239, -0.0182988644, 0.0109099448, 0.00859968085, 0.0139139425, 0.0276708137, -0.0146731231, 0.0197386891, -0.00569712464, -0.00570366951, 0.000495757849, -0.0103471037, 0.00410022819, -0.0180501658, -0.041257523, 0.00141200994, 0.0339275077, 0.00427038921, -0.000839352375, 0.00508847134, 0.0213094056, 0.00106923352, -0.0127097256, -0.00106023462, -0.0566505603, 0.0117542055, 0.0244377516, 0.00233807904, -0.000292055367, 0.0145553192, -0.023220446, -0.0223303735, -0.0301054269, -0.0184035785, -0.00256714202, -0.0107463282, 0.00392352231, 0.000908071292, -0.0168983061, -0.00426384481, -0.00221536658, 0.0211392455, -0.00238552783, -0.0256550591, 0.0100067817, -0.00990206748, -0.000719503325, 0.000983334845, -0.0196470637, -0.0273304917, 0.0218591578, -0.023155, -0.0129256994, 0.0176051296, -0.0242806803, -0.00566112902, 0.017696755, -0.0133183785, -0.0412313454, 0.029424781, 0.0110212043, -0.0238880012, -0.016845949, 0.0146862119, 0.00394642865, -0.0187308118, 0.00329523534, 0.00633522868, 0.0187700782, 0.0195423476, 0.0114858747, -0.0286132451, -0.0126115559, 0.0110408375, -0.0272257775, 0.00655774726, 0.0161783937, -0.0036224681, -0.010386372, 0.0420167036, -0.0178407375, 0.0141626401, 0.00424093846, 0.027199598, 6.89234294e-05, -0.0184297562, 0.00231517269, 0.0139532108, -0.0147647485, -0.0197386891, -0.000677372096, -0.0186260957, -0.0106088901, -0.00703550735, 0.0219507832, -0.00947012, 0.0192543827, -0.014057925, 0.0730383843, -0.0285608862, 0.0110473828, -0.0392155908, -0.00229390268, -0.0223172829, -0.0170292, 0.00956829, 0.0307337139, -0.0267022047, -0.002596593, -0.00850805547, -0.0201182775, 0.0394511968, -0.0565458424, -0.00402496476, -0.0173695218, -0.00852114428, -0.0062403311, -0.0138746751, -0.00873711798, -0.00504265912, -0.0176051296, 0.00304817432, 0.0070616859, 0.0144375153, -0.0147123905, -0.0210737977, -0.0530640855, -0.0158380717, 0.0343201868, -0.00879602, 0.0168852173, -0.0100264158, 0.00806301832, 0.0424617417, 0.0142149972, -0.00833789445, -0.00587710273, 0.0364930108, 0.0179847199, -0.0268854555, 0.0116036786, 0.0256943274, 0.00766379433, -0.0105499886, 0.00625014817, -0.0217282642, -0.00337377121, 0.015759537, -0.0290321019, -0.0226052478, -0.00738237426, -0.0268069189, -0.0150134452, -0.00631232234, -0.0098038977, -0.0058934642, 0.0110473828, -0.00441437168, 0.00401514769, 0.00874366332, 0.0147123905, 0.00308417, -0.0171077363, 0.00121076172, 0.002745484, 0.00786667876, -0.0229979269, -0.0149349095, 0.0116364015, -0.00442746095, -0.00782086607, 0.00222191145, -0.00327887363, -0.00929341465, -0.00386789278, 0.0347914025, 0.000260763714, 0.00508519914, 0.0116756698, 0.0136914244, -0.0207334757, 0.00721221277, 0.0150396237, -0.00194867188, -0.0218853354, -0.0124348495, 0.00957483426, 0.00639740331, 0.013259477, 0.0041853087, 0.00125821051, -0.0133903697, 0.0151050705, 0.0319641083, 0.0413360596, -0.000664282765, 0.0078863129, 0.00595236616, 0.0118916435, 0.0203931537, 0.021283228, -0.00282892841, -0.0206811186, -0.0337180756, 0.00608653203, 0.00501975277, -0.00336722657, 0.0129322438, 0.0140971933, 0.00109295791, 0.0203538854, -0.0106088901, -0.00413295161, -0.0178930946, 0.0603679232, 0.00483650202, -0.0196470637, 0.00170488341, -0.0130827716, 0.00465325173, -0.0321211815, 0.0263880603, 0.0100918626, -0.0130107803, 0.00108477706, -0.0165841635, 0.0104256403, -0.000632377574, 0.0162438415, 0.00109459402, -0.00945703, 0.00888764579, -0.00164107291, -0.000784949923, 0.00344576244, 0.00835752767, 0.0146600334, 0.00482668541, 0.00507538207, 0.0243853945, -0.0141757289, -0.0116036786, 0.0363359414, 0.0101376753, 0.00196503359, 0.00937195, 0.00541570457, 0.00554659776, -0.035681475, -0.0243068598, 0.0146862119, 0.0359956175, 0.00981698651, -0.0201706365, 0.0226837844, 0.00416567456, -0.00835098326, 0.0178800058, -0.0265974905, 0.012375948, -0.0251445752, 0.0164663587, 0.000823808834, 0.00984971, -0.01376996, -0.000415790302, -0.017068468, -0.000590246345, 0.00143573433, 0.00560222706, -0.0088483775, 0.00250496785, 0.00328705437, 0.0206418503, 0.0230895523, 0.00639413064, 0.0152359633, 0.0102685681, -0.0166757889, 0.0019519442, -0.00523245381, -0.00892691314, -0.000766952115, 0.0054517, 0.0031430719, 0.00778814266, 0.0115447761, -0.0144898724, 0.0207203869, -0.00272421376, -0.00899890438, 0.00317579531, 0.0109950248, 0.000176910282, -0.00755253527, 0.0117934737, 0.000334595621, 0.00337704341, -0.01587734, 0.0353411511, 0.00901853852, -0.00237243855, 0.00192249322, -0.0173302535, 0.000809083343, -0.0131547628, 0.0137961386, 0.0185737386, -0.00916906539, 0.00653484091, 0.0108052306, -0.00952247716, -0.000275489205, -0.00236753, 0.0219769608, 0.014568408, -0.0124675734, -0.00369773176, -0.0139270322, -0.00506883767, -0.0103732832, -0.00135228992, -0.0267152935, 0.023442965, 0.000844260852, -0.00289764721, -0.0193590987, 0.00923451222, -0.0449748896, 0.0175265931, 0.00430311263, 0.00422457652, -0.00646939455, -0.0239665378, -0.0152883204, -0.0314143561, -0.0104060061, -0.00564803975, 0.0168852173, 0.00806301832, -0.0179454517, -0.0301054269, -0.0130565921, -0.000241334259, 0.0124872075, 0.00369773176, 0.0040478711, 0.00186359137, 0.0369642265, -0.0145291407, 0.0341892913, -0.0210737977, -0.00455180975, -0.0132725658, 0.00139483018, 0.000457307964, 0.00772924116, -0.00757216895, 0.0272519551, -0.00320361, -0.0180501658, -0.00638104137, -0.0357861891, 0.0246995389, -0.0140186576, -0.000404950697, -0.008364073, -0.0206418503, -0.00473178783, 0.0384040512, 0.0176051296, 0.00220391364, -0.017356433, -0.0133707365, 0.0325923972, -0.00320033776, 0.0199088491, -0.00667227851, -0.00040351905, -0.0281158499, -0.0167412348, 0.0204455107, 0.0181679707, -0.0190973114, -0.0110670161, 0.0033574095, -0.0298436396, 0.00692424783, 0.00850151, -0.022709962, 0.0254063625, -0.0103471037, -0.00914288685, 0.00309725944, -0.0153275887, -0.0190580431, 0.00347848563, -0.0147123905, 0.00383189716, 0.00175724062, -0.0304457489, -0.0227230527, -0.00082503591, -0.0113418922, 0.0192151163, 0.00348175806, 0.00586728565, -0.0207465664, -0.00870439503, -0.0264665969, 0.0202360824, -0.0172517188, -0.00786013436, 0.0246995389, -0.0209167264, -0.0069307927, -0.00651520677, -0.0398700573, 0.0161653049, -0.0239796266, 0.00798448268, 0.0139532108, -0.014620766, -0.0255634338, -0.00380244618, -0.00393661158, 0.0017539683, 0.0126770027, 0.000755907968, -0.0312311072, -0.0102293007, 0.00519645819, -0.0165841635, 0.0151836062, 0.0193983652, -0.0100264158, 0.0231157318, 0.015681, -0.0218460672, 0.0217020847, -0.00933268201, -0.00101360388, 0.0228015874, 0.00698315, 0.00156253704, 0.0246733595, -0.0222780146, -0.0119701792, -0.00117067574, 0.017919274, 0.0282205641, 0.0188878831, -0.0303933918, 0.0261655431, 0.00522263721, 0.0131220389, 0.00723839179, 0.0190973114, -0.0046630688, 0.00186195516, -0.0130435033, 0.00611598277, -0.00276184571, -0.00579202222, -0.00837716181, 0.0125199305, 0.0245686453, 0.0139663, -0.00730383815, -0.00191104, -0.0276446342, -0.0182988644, -0.00181123405, -0.00487904251, 0.0245686453, -0.00240843417, -0.0312572867, 0.0162961986, -0.00711404299, -0.00425075507, 0.0130107803, -0.0131089501, 0.00784704462, -0.0104649076, -0.011407339, 0.0228670351, 0.0269116331, 0.0156940892, -0.00831826, 0.00806956273, -0.029424781, 0.0224874448, -0.00976462942, 0.0232597142, -0.00508847134, 0.00746745476, -0.0350008309, 0.0124806622, 0.0136783347, -0.0266629364, -0.0115120532, 0.0119767236, 0.012834074, 0.0183381308, 0.00242479565, -0.00947012, -0.00785358902, -0.0384825878, -0.0016467995, 0.00164025486, -0.0408124849, 0.00499357376, -0.0211654231, 0.0204062425, -0.0141888186, 0.00168034097, -0.0168066807, 0.0186130069, -0.0142804431, 0.00934577174, 0.00776196411, -0.0143589796, 0.0182334166, -0.0260215607, 0.0250136815, -0.00950284302, 0.0173957013, -0.00934577174, 0.000414358656, -0.00969263818, -0.00785358902, -0.00720566837, 0.0302101411, 0.00447654584, -0.0327756479, -0.000553841644, -0.0119112777, 0.0289535671, 0.00807610806, 0.0210999772, 0.0157988034, -0.0128602525, 0.00775541971, -0.00824626908, 0.032487683, 0.0175789502, -0.0135474419, -0.0127031812, 0.00800411683, -0.00125002966, 0.00288128573, 0.0387705527, -0.00672136387, 0.000670418376, 0.013174396, -0.00728420401, 0.0128537081, 0.00154944777, -0.0104518188, 0.00548442313, -0.00513101183, 0.00627959939, -0.02162355, -0.0120094474, 0.00586074125, -0.032435324, 0.00441437168, 0.00149872666, 5.7828187e-05, -0.00734310597, -0.00267022033, 0.0182465054, 0.0107136052, 0.0115316873, 0.0137045132, 0.012375948, -0.00808265246, -0.00610943791, -0.00247388077, 0.00786013436, 0.0138092283, -0.0120945275, 0.000571839511, 0.0594254918, 0.000788222242, 0.0165448952, 0.0168197714, 0.0344772562, -0.0015142702, 0.000934249896, -0.00598836178, 0.00304981065, -0.00704205176, -0.00816773344, -0.00131793052, -0.00284201768, 0.0036388298, 0.0125853773, -0.01263119, -0.0198434032, 0.0151181594, 0.0080957422, 0.0146993017, 0.0326447524, -0.012120706, 0.0297389254, -0.00123039563, 0.0120683489, -0.00402496476, -0.0231680889, 0.0115251429, 0.000165457139, -0.000435628783, -0.00961410254, -0.000173433436, 0.0114138834, 0.0298698191, 0.000661010446, 0.0216889959, -0.0141757289, 0.0133511024, -0.0321473591, -0.0213486739, -0.00463361759, -0.0205764044, 0.0118065625, -0.0176705755, -0.0049313996, -0.0113484366, -0.00266531203, -0.00774233043, -0.00186195516, 0.00724493619, -0.0239403583, -0.00307108066, -0.00277493498, 0.0100591388, 0.0117280269, -0.00646612188, 0.00309071457, -0.0221209433, 0.0165187158, 0.00535680261, -0.00690461416, 0.0212963168, -0.0172648076, -0.0104125505, 0.0242806803, -0.0115185976, 0.00382862496, 0.00507538207, -0.00474814931, 0.0141495503, 5.23061317e-05, 0.00849496573, -0.00526517723, 0.0221733, 0.000899890438, 0.00707477517, 0.011014659, 0.00726457033, 0.0289797448, -0.00176051294, 0.0267022047, -0.00337704341, -0.00336395414, 0.0164925382, -0.00893345755, 0.00585746858, 0.0129911462, -0.00276839035, -0.00504593132, 0.027487563, 0.0198434032, 0.00485940836, -0.000966973195, -0.0146600334, 0.0145160509, -0.0194114558, -0.00472524296, -0.012035626, -0.0218591578, 0.00128684333, -0.000766134, 0.0136259776, -0.0138615854, 0.00731038302, 0.00678026536, -0.00581820076, -2.45169012e-05, -0.00721875764, 0.00725802546, 0.0117542055, -0.0189664178, -0.0157988034, -0.0054091597, 0.00812846515, -0.0190973114, -0.0119636348, -0.00572984805, 0.00826590322, -0.0180894341, 0.00313161872, -0.0327756479, -0.00334595633, -0.000871257565, -0.00578547735, -0.00273893937, -0.00526190503, -0.0215188358, 0.00893345755, -0.0261786319, 0.00422130432, -0.031126393, 0.0445822105, -0.0100853182, -0.0162961986, -0.00861931406, -0.00401514769, -0.0220424086, -0.00559568265, -0.00544842752, 0.00188322528, 0.0228408556, 0.0161914844, -0.00723184692, -0.00112977158, -0.00907089561, 0.0125199305, 0.014398247, 0.0135343522, 0.00919524394, -0.00698315, 0.00626323745, -0.004666341, 0.0176574867, -0.00907744095, -0.01587734, -0.00653484091, -0.00351120904, -0.0187831689, -0.0054058875, -0.0159558766, 0.00789940171, -0.0137306927, 0.0122319655, 0.00315125287, -0.0022660878, -0.0308907852, 0.0404721648, 0.0038351696, 0.00256877812, -0.00969263818, -0.0187439, 0.00952247716, 0.00163371023, -0.0149349095, -0.0265058652, 0.0233775172, 0.0173695218, -0.0124479393, 0.00152326911, -0.019293651, -0.010641614, 0.0104387291, 0.00196012505, 0.0244770199, 0.00396279, 0.0310216788, -0.00673445314, -0.0238487329, -0.0060243574, 0.00480377907, 0.0105368989, -0.00433583604, 0.0062305145, -0.00933922641, -0.00782741047, -0.0110015702, 0.0217675325, 0.0370165855, -1.59142564e-05, 0.0098038977, -0.00245915516, -0.00871748384, -0.000820536457, -0.0221733, -0.0106350686, -0.0220293179, 0.000261581794, 0.00532407919, -0.00841643, 0.0031610697, -0.0152883204, 0.01587734, 0.0184428468, 0.00335413706, 0.0140448362, 0.0256419703, -0.0122646885, -0.0202753507, 0.00349811953, 0.00712058786, 0.010216211, 0.024189055, 0.0101376753, 0.0146338549, -0.00286001549, 0.0027307584, -0.00184886588, -0.00566767389, 0.0146862119, 0.00734310597, 0.00657410873, -0.0270425268, 0.0184428468, 0.0337704346, -0.0229717493, 0.00400205841, 0.0230241064, -0.00503938645, 0.00310216774, -0.0132202087, 0.0167543236, -0.00652502384, -0.0242414121, 0.00578875, 0.00371082104, -0.000196953304, 0.0594254918, 0.0212177802, -0.0278802421, -1.52239991e-05, 0.0274090264, 0.0182857737, -0.00493794447, 0.0212046914, 0.0390846953, 0.00566440122, -0.020026654, 0.00744782062, 0.00294346, -0.0171339139, -0.0175004154, 0.00337049877, -0.0125853773, -0.011440062, 0.00309071457, 0.0187569894, 0.00425075507, -0.00594582176, -0.0184428468, 0.00250005932, -0.00422457652, -0.00482014054, 0.030786071, 0.027827885, -0.0116364015, -0.00348175806, -0.000289192074, 0.000591882505, 0.00381553546, -0.00222518365, -0.000160037336, 0.0239534471, -0.00276675401, -0.000329891656, -0.00878947508, -0.0150919808, 0.00789940171, 0.000609880313, 0.0163485557, -0.00205993117, 0.00194539956, -0.0206025839, 0.0202099029, 0.0179454517, 0.00361265126, 0.00464997953, -0.00839025155, 0.0136259776, 0.0189140607, -0.0103471037, -0.017068468, 0.00502302498, 0.000248901517, 0.0113353478, 0.00340976682, -0.018207239, 0.000749363331, -0.000521118403, 0.0037075486, 0.00588364759, 0.00591964321, -0.00338686048, 0.00257532299, -0.00543861091, 0.0245817341, -0.00392352231, -0.0137830498, -0.030786071, -0.0251969323, -0.00462380098, 0.0309169646, 0.0179323629, -0.0113026239, -0.0262964349, -0.00861931406, -0.0135343522, 0.00453544781, 0.00888764579, 0.0060996213, -0.0269378126, 0.0109884804, -0.00557932071, -0.00414931308, 0.00893345755, 0.0203800648, -0.0091232527, -0.0185082927, 0.00724493619, 0.00496085081, 0.0214664787, -0.00718603423, 0.0125395646, -0.0329065397, 0.00472197076, -0.00399224134, 0.000992333749, -0.0106481584, -0.00305471895, 0.0193721876, -0.0138484957, -0.0151050705, -0.00208283728, -0.00808265246, -0.012578832, -0.00183741271, 0.00833789445, 0.0105892569, -0.00525536, -0.00825281348, 0.0220031403, 0.010098407, -0.0339536853, 0.00895309169, -0.0106808813, 0.0081480993, -0.00801720563, 0.0170292, -0.0151312491, -0.00569385244, 0.00192576554, -0.00643667113, -0.002545872, 0.00578547735, 0.00935886055, -0.0109884804, 0.0149610881, -0.00518009672, -0.00928032491, 0.00952247716, -0.0141888186, 0.0299221762, -0.00210410752, -0.0033574095, -0.0121796085, -0.0146076763, 0.0259299353, -0.00976462942, 0.0135343522, 0.0106939711, 0.0252885576, 0.00616179546, 0.00166643353, 0.000232948922, -0.0206287615, -0.00451254146, -0.00977117382, -0.0143066226, 0.00374354422, 0.0132987453, 0.0142673543, -0.010353649, 0.00605053641, 0.0108248638, 0.0207334757, 0.00743473135, -0.00749363331, 0.00748708844, 0.00947012, -0.00643667113, -0.0171731822, 0.017068468, 0.0215973705, 0.0216759071, -0.0150003554, -0.011865465, 0.0200659204, -0.00590655394, 0.00157317217, 0.022081675, -0.00407077698, 0.0121010728, -0.00770306215, 0.0111259185, -0.00899236, 0.0163485557, -0.0511268675, 0.0291106384, 0.0028109306, 0.0148301944, -0.00689152488, -0.00574948173, -0.000530526333, 0.0126770027, -0.0172255393, 0.00412313454, 0.0130238691, 0.0264665969, -0.0091167083, -0.00147582032, -0.0296080317, 0.0046696132, -0.0246471819, 0.0231157318, 0.0378019437, 0.0178014692, -0.00316761434, 0.000768997299, 0.028796494, -0.00126475515, 0.00208774582, -0.0273304917, 0.00945703, -0.0104779974, 0.0243853945, -0.0140448362, -0.00820700079, 0.00656429166, -0.0352102593, 0.00833134912, -0.00799757149, -0.0120225362, -0.0111455526, -0.0209167264, -0.0166103411, -0.0120029021, 0.0201182775, 0.0171208251, -0.0219769608, -0.0158380717, -0.0345557928, -0.0095552, 0.00898581557, 0.00230862806, -0.00850151, -0.00264404179, -0.0114335176, -0.0149872666, 0.0102882022, 0.0194899905, 0.0114204278, -0.0152883204, -0.0180108976, 0.0188486148, -0.0260477383, 0.0171470027, -0.0188878831, 0.0211654231, -0.00837716181, -0.0197910462, 0.0135474419, -0.00107005157, 0.00558913779, -0.0232073572, -0.00183741271, -0.0185868293, -0.0242675915, 0.009587924, -0.0217282642, -0.015589375, 0.0289273877, -0.00585092418, 0.0139270322, 0.0125133861, 0.010098407, -0.00471542589, 0.00503938645, 0.00744127622, -0.00611598277, -0.00550078508, -0.0225528907, -0.00592291541, 0.00917561073, -0.0303148553, -0.0344510786, -0.0060210852, 0.00578220515, 0.00268658204, 0.000626241963, 0.0149479983, 0.00349811953, -0.013004235, 0.0207989234, -0.0144244255, 0.0081480993, -0.0166888777, 0.00314961653, 0.00240843417, -0.00227099634, 0.00639085844, 0.00468597515, -0.0197517779, -0.022592159, -0.0213094056, 0.0252492893, -0.00847533159, -0.00565131195, 0.00422130432, -0.00965991523, -0.000554659753, 0.0127751725, -0.000849987438, 0.0135605307, 0.0107201496, 0.00943085179, -0.00287310476, 0.00115022366, 0.0164794493, 0.0141233718, 0.0104649076, 0.00473178783, 0.0181548819, 0.0103732832, 0.0004965759, 0.00134247297, 0.00996751431, -0.0111782756, 0.0170815568, -0.0134819951, 0.0173302535, 0.00035872907, 0.0194638129, -0.0171339139, -0.00220554974, -0.0123628583, 0.0125526534, -0.00309889554, 0.0154977497, 0.00187668065, -0.0318332165, -0.00600472372, 0.00230862806, -0.0171470027, -0.0168590378, 0.017696755, 0.0178014692, -0.0287703164, -0.00619124621, 0.00689152488, -0.0191496685, 0.0130369589, -0.00985625479, -0.0249613244, -0.0271210615, -0.00599490665, 0.00595891103, -0.0108903106, 0.0164401811, 0.00300072553, 0.0125919217, 0.00406423258, -0.00600472372, 0.00220391364, 0.00246897223, 0.0330374315, -0.0191627592, -0.0095355669, -0.00403805403, -0.00687843561, 0.00406750478, -0.00206811191, -0.00490194885, -0.00537643628, 0.0113484366, 0.022932481, 0.0296342112, -0.0113091692, 0.00818736665, 0.00178832782, 0.0044470951, -0.0170161109, -0.011354981, 0.00135392614, -0.0052815387, 0.0319117531, -0.0161260366, -0.00409695599, -0.0011256811, 0.00524554309, 0.00588364759, 0.0207596552, 0.015249053, 0.00314143579, 0.027827885, -0.00346539635, 0.00441764388, 0.0165187158, 0.00223990926, -0.00109704828, 0.0131285833, 0.0137437815, -0.0115709547, -0.00221209438, -0.0278802421, 0.00102342083, 0.0172909852, -0.00984316505, -0.0323567875, -0.0103732832, -0.00273893937, 0.0266629364, 0.000391043315, -0.0185213815, -0.00617815694, 0.0164925382, -0.00305144675, 0.0106874267, -0.00288455794, -0.0192805622, -0.0121599743, 0.0295556746, -0.0273304917, 0.0004965759, -0.0128864311, 0.0272519551, -0.000249515084, -0.00365846371, 0.0283252802, -0.030629, 0.0136128888, -0.00382208, -0.00744127622, -0.0135867102, -0.00448963512, 0.0218722466, -0.00160180498, -0.00475469418, -0.0148956412, -0.022251837, -0.00148072885, 0.00714022154, 0.00387770985, -0.0122581441, -0.00646284968, 0.0165710729, 0.0157333575, -0.0290844589, 0.0107070599, 0.00914288685, 0.0219769608, -0.00139564835, -0.00774233043, 0.0132725658, 0.0131089501, 0.00124430307, -1.65278179e-05, 0.000997242285, 0.0261786319, -0.000824217859, 0.031702321, -0.000264445087, 0.00929995906, 0.0100264158, -0.0170815568, 0.023155, 0.02600847, 0.017474236, 0.00907089561, -0.0107790511, -0.0213617627, -0.0195947066, -0.00300563406, -0.0126442788, -0.00771615142, 0.00235444074, -0.0152228745, -0.00152817764, 0.0103929164, -0.0167543236, 0.0264142398, 0.00387770985, -0.00665591704, -0.00513428403, 0.00908398535, 0.00357992784, -0.0115905888, 0.00827244762, 0.0215711929, -0.0110670161, -0.00611598277, -6.31968505e-05, 0.0210999772, 0.0144636938, -0.0172778964, 0.00807610806, 0.0117738396, -0.0200659204, -0.00645957747, -0.00162634754, 0.0154715711, 0.00709440932, -0.00810883101, 0.0163616445, -0.00469251955, 0.00782086607, -0.00182759576, 0.0116560357, 0.00559895486, 0.0157464463, -0.0114989635, -0.00571348611, 0.0141757289, -0.00017374022, 0.00841643, -0.00108723133, 0.0382731594, -0.0420690626, -0.0155631965, -0.00174905977, -0.01473857, 0.00380244618, 0.0194899905, 0.0136652458, 0.0168852173, -0.00727111474, 0.0109099448, -0.0103078363, 0.00759834796, 0.00528481137, -0.0123170465, 0.000121894256, 0.00182759576, 0.0119374562, 0.0011944, 0.0196470637, 0.0154846609, -0.0100853182, -0.0187962577, -0.025720505, 0.00432601897, -0.0144898724, -0.00799102709, 0.0157726258, -0.00168034097, 0.0393464826, 0.016099859, 0.00774233043, 0.00662973849, -0.00699623907, -0.00123203185, -0.0111913653, -0.00511792256, 0.0083706174, 0.0139924781, 0.000551387435, 0.0014709119, -0.00760489237, 0.000906435132, -0.0121403402, -0.0300792474, 0.00678026536, -0.00131874857, 0.00764416, 0.00137110578, 0.0030089065, -0.00798448268, -0.00419512577, 0.0126050115, -0.028456172, -0.0148040159, -0.0198434032, 0.0100067817, 0.0104583632, -0.0128406184, -0.00640394771, -0.00192740175, 0.00916906539, 0.00331159681, 0.00488231471, -0.000602517568, -0.00846224278, -0.00483650202, 0.00831826, 0.0154323028, 0.0161260366, 0.0106285242, 0.00400205841, 0.007539446, 0.00413295161, -0.016505627, -0.0350270085, 0.0257728621, -0.0105434442, 0.0184035785, -0.0217020847, 0.0177752916, 0.0124741178, -0.0198303126, -0.0212308709, -0.00600472372, -0.0268854555, 0.00753290113, 0.0358123668, 0.00868476089, 0.00354066, 0.00480705127, -0.00519645819, 0.0021171968, 0.0019175848, -0.00201411848, -0.00588037493, 0.0065839258, -0.0174218789, 0.00761143724, -0.0275922772, -0.00848842133, -0.00340976682, -0.00956829, 0.0067933551, 0.0254456308, -0.0195816159, -0.00829208177, -0.0026800374, 0.00779468752, -0.00914943218, 0.000290828233, 0.00286001549, -0.016728146, -0.00131629431, -0.00122957758, 0.0153930355, 0.0255241655, -0.00438492093, -0.0197386891, 0.00964682549, -0.00365846371, -0.00990861189, 0.00227426854, 0.000303713023, 0.0141102821, 0.00264895032, 0.00521609234, 0.0010569623, 0.000716231, 0.0104649076, -0.00155681046, 0.00785358902, -0.0204455107, -0.00206974801, 0.00819391198, 0.00415913, -0.0217675325, -0.00928686932, 0.00373699958, 0.00704205176, 0.00340322219, 0.0154715711, -0.015681, 0.00779468752, -0.0199873857, -0.0213094056, -0.0120159918, -0.00392352231, -0.0119178221, 0.00170161109, 0.000456898939, -0.0178538263, 0.0105368989, 0.0146862119, 0.018953329, -0.0132987453, -0.0108379535, -0.0172386281, 0.0223172829, -0.014856373, 0.0048757703, -0.0153014101, -0.0280373152, 0.0114596961, -0.0073300167, 0.0213094056, -0.0171600934, -0.00231517269, -0.00688498, 0.0162307508, 0.0331945047, 0.00764416, -0.0103471037, 0.029817462, -0.0091167083, 0.0328018256, -0.0223303735, 0.0244770199, 0.015759537, -0.0110931955, -0.00635486282, -0.0153930355, -0.0119898133, -0.00799102709, -0.0272257775, 0.01013113, 0.0248566102, -0.000924432941, 0.0193198305, -0.0040478711, -0.026636757, 0.00433583604, 0.0182988644, 0.0138092283, -0.0165448952, -0.0186130069, 0.00393006718, -0.00490849325, -0.0152752316, 0.00392352231, 0.00600145105, -0.0181548819, 0.0417549163, -0.0127948066, -0.0204324219, 0.000917888246, -0.0127293598, -0.00269967131, 0.0121665187, 0.00448963512, -0.00762452651, -0.0179847199, -0.0231811777, 0.010896855, -0.0185868293, -0.0136521561, -0.00491831033, 0.00861277, -0.0178407375, -0.0163354669, 0.020144457, -0.0147647485, 0.0146076763, 0.0108052306, 0.0115185976, -0.0211916026, 0.0150658023, -0.00460743904, 0.0031594336, 0.0140710147, -0.00223500072, 0.0289797448, 0.00689152488, -0.0106285242, 0.0102227554, -0.013004235, -0.000828717311, 0.0361526906, -0.000349321112, -0.0114989635, 0.00626323745, 0.0168852173, -0.00260968227, 0.012663913, 0.00364537444, -0.0150658023, 0.00948320888, 0.0300530698, 0.00974499527, 0.00189304224, 0.0119767236, 0.0160605907, -0.000526435906, -0.00713367714, -0.00885492191, 0.0123039568, -0.0100525944, 0.0269639902, -0.00774887484, -0.0109295789, 0.0104845418, -0.00428347848, -0.00303017651, -0.0243330374, 0.0167805031, 0.00937195, 0.0330636129, 0.00718603423, -0.00672136387, -0.00201902702, 0.0180632565, -0.00902508292, 0.017474236, 0.00532080699, 0.0183381308, 0.0257074162, 0.0172909852, 0.0139270322, -0.00573966512, 0.00746091, 0.00338686048, -0.0262048095, -0.00964682549, -0.00638104137, -0.014398247, -0.0343463644, -0.016387824, 0.0234036967, 0.00840334, -0.0135212634, -0.00475142151, -0.01376996, -0.0292677097, -0.00586728565, 0.00895309169, 0.0119243665, -0.00546806166, 0.0031610697, -0.00399878575, 0.00378281227, 0.00332795852, 0.00533389626, 0.0302624982, 0.028796494, 0.0200659204, 0.015537018, -0.0271210615, -0.0375663377, 0.00728420401, 0.0157988034, -0.0046696132, 0.00804992951, -0.0173433442, 0.0179847199, 0.0206942074, 0.000100726378, 0.0113942493, 0.00343594537, 0.00544188311, -0.00510483328, -0.0103667378, 0.00967300404, 0.0103667378, -0.010556533, 0.028456172, 0.00984971, -0.00447327364, 0.0126508232, -0.00655774726, 0.0140186576, -0.0101573095, 0.00669191265, 0.0116429459, 0.00183577649, -0.00833134912, -0.00564476755, 0.00885492191, -0.00576584367, 1.12486305e-06, -0.0326709338, 0.0218853354, 0.0194769017, 7.18889787e-05, 0.0129649676, 0.00215646485, 0.0101180412, 5.71634955e-05, -0.000951429654, -0.00590982614, 0.00371082104, 0.0238225553, 0.00178996392, -0.00276348181, -0.00412640674, -0.0044503673, -0.0021990051, -0.0334824696, -0.00646939455, 0.00649557309, 0.00922796782, -0.0161391255, 0.0100853182, 0.00146518531, -0.00828553643, 0.00532407919, -0.0256027021, -0.00875020772, 0.00455508195, -0.0165187158, -0.00867167208, -0.00641703699, 0.0073300167, 0.0145422295, 0.00813501, -0.00708786445, -0.00654138578, -0.0185344703, 0.0350531861, -0.0258252192, 0.0214141198, 0.000277534389, 0.0140317464, 0.0131874857, -0.0132005746, -0.00334432023, 0.00721221277, -0.00476123858, -0.00526190503, 0.00682607805, -0.00425402774, -0.0122581441, -0.000832807738, 0.00134738139, -0.0138615854, 0.0294771399, -0.00616834, -0.0248958785, -0.0145291407, 0.016099859, 0.0350531861, -0.00854732282, -0.00236262148, -0.00670827413, -0.0012312138, -0.0224350877, 0.00369445933, -0.018325042, 0.00860622525, -0.00344576244, -0.0138746751, 0.0047972342, -0.00553350803, 0.0156679116, 0.0230371952, -0.014568408, -0.00629923306, -0.00356683857, 0.0123824924, -0.000597609091, 0.014620766, 0.00549751241, 0.00560549926, -0.00334104779, -0.00024910603, -0.00912979804, 0.0153145, -0.00319379312, 0.00523899868, -0.0135867102, -0.00303835748, 0.00159198802, 0.00703550735, -0.00619451888, 0.00489540398, 0.00744127622, -0.031126393, 0.0170422886, -0.0104387291, 0.00564149488, -0.0200135633, 0.000373863586, -0.0196470637, -0.00419512577, -0.00969263818, -0.00552369142, 0.00234135147, -0.00971881673, 0.0195554383, -0.0359956175, -0.00519318599, -0.00487904251, -0.00467615807, -0.00172942586, -0.00771615142, 0.00305635529, 0.0146862119, -0.0142019074, 0.0236393046, -0.0015142702, 0.0100918626, 0.00757871382, 0.000332141382, 0.00962064695, -0.0153145, -0.00176051294, -0.0177098438, 0.00111913646, -0.00116413098, 0.0126246447, -0.00634504575, 0.0114531517, -0.00757871382, -0.00320524629, 0.00428020628, 0.000274057558, 0.0122516, 0.00182432344, 0.000804174866, -0.00264731422, -0.0010258751, 0.0190580431, 0.00901853852, 0.00760489237, 0.00213028607, 0.0224481765, 0.00742164208, -0.0131089501, -0.00781432167, 0.0112699009, -0.00516700745, -0.0142673543, -0.0170553792, -0.00417876383, 0.00849496573, 0.00264895032, -0.00723839179, -0.0262571666, -0.0122974124, 0.00324287801, -0.00793212559, -0.0118261967, 0.00892036874, -0.0124544837, -0.00132202089, 0.00683262292, -0.00318397605, 0.0162307508, -0.00845569838, -0.00338358805, -0.020144457, -0.00531099, -0.00873057358, -0.00285837939, -0.0086324038, 0.000654874835, -0.0387705527, -0.013396915, 0.0171208251, 0.0308122486, -0.000667555083, -0.00865203794, -0.0186784528, -0.0111128287, 0.00520954747, -0.0114793302, 0.0105696227, -0.00897927, 0.000795994, -0.0131547628, -0.00233644294, 0.00635813503, -0.00322978874, 6.02313048e-05, -0.0176443979, -0.00248860614, 0.000848351279, 0.0204455107, -0.014856373, -0.0200004745, 0.0178538263, -0.00766379433, -0.0197125096, 0.0313096419, -0.0125984661, 0.00965337083, -0.0111455526, -0.0198303126, -0.00159689656, 0.0230764635, -0.0116560357, -0.0189402401, -0.000515800843, -0.0461267494, 0.000812355662, 0.000899072387, -0.0201182775, -0.0136521561, -0.0241628774, -0.00231844513, -0.00206974801, 0.0143458899, -0.00567421829, 0.00424748287, -0.0124937519, 0.0132856555, -0.0220162291, 0.0110997399, -0.00117640221, -0.000216382745, -0.0236523934, 0.0160867684, -0.00286492403, 0.00697006052, 0.00264404179, -0.00839679595, 0.037618693, 0.0256943274, 0.0136521561, 0.00325105875, 0.0166365206, -0.0399224125, 0.0159427859, -0.0483519323, 0.00406423258, 0.00971881673, -0.00736928498, -0.0198695809, -0.0113680707, -0.0190711338, 0.000180080358, -0.0204193331, -0.00019869172, 0.0110015702, -0.0117738396, 0.000356683857, -0.00382862496, 0.00946357567, 0.00700932881, -0.0062337867, -0.0118196523, -0.0106350686, 0.000800493464, 0.00542879384, -0.00612907205, -0.00286492403, 0.0131613072, -0.011865465, -0.0113157136, 0.00228572171, 0.0127293598, -0.00437510386, -0.0399224125, 0.0235476792, -0.0161914844, 0.00737582939, -0.00346539635, 0.0105892569, 0.00149054581, 0.00203211629, -0.00126802747, -0.00206156727, -0.00669518486, -0.00184068503, -0.00241988734, 0.00597527251, 0.00544515532, 0.0443466, -0.0129649676, 0.0089007346, 0.00543206604, 0.018547561, -0.00035954715, -0.0200790111, 0.00998714752, -0.0200135633, -0.00291400892, -0.00776196411, 0.0202884395, -0.00217773486, -0.000793130719, 0.00810228661, -0.000818491273, 0.0206680298, 0.0173695218, -0.0227884986, 0.000254219049, 0.026348792, 0.0270163473, 0.00557604851, -0.0213224962, 0.012375948, 0.0046696132, -0.00313489116, 0.0119832689, -0.00176869379, -0.00929995906, 0.0123301353, -0.0015469935, -0.00167706853, 0.0233644284, 0.00525863282, -0.0194769017, 0.0223172829, -0.00610943791, -0.024869699, -0.0038351696, 0.0105630774, 0.00747399917, 0.0153145, -0.00371082104, 0.044215709, -0.00862585939, -0.0110735614, -0.019974295, 0.0185213815, -0.00150608935, -0.0185082927, 0.0275661, -0.00563495047, -0.00594909396, -0.0180894341, 0.0063712243, -0.00316434214, 0.0104387291, -0.016845949, -0.00499030156, 0.00873711798, 0.0129126096, 0.0098627992, 0.00913634244, 0.024922058, -0.0078405, -0.0159427859, 0.0227623209, -0.0226445161, 0.000990697532, 0.00565131195, 0.0128537081, -0.0259299353, -0.00416894723, -0.00344903464, 0.0134427277, -0.0231157318, 0.00899236, -0.0153275887, 0.0268854555, 0.0337180756, 0.0145160509, -0.0133314682, -0.0182988644, -0.00592946, -0.00880910922, 0.00622069743, 0.0346866883, -0.0187308118, 0.00683916733, 0.0215842817, 0.000784949923, 0.0196208842, -0.00547787873, 0.00931304786, 0.0203800648, -0.0084229745, 0.0133249238, 0.00769651774, 0.00505247572, -0.00476123858, 0.00490849325, -0.0119243665, -0.00457798829, -0.0241628774, 0.0286394227, -0.0211654231, -0.00359301711, -0.00786667876, -0.011237178, -0.00882874336, 0.00533062406, 0.00969263818, -0.00753290113, -0.00101278583, -0.0116429459, 0.00565458462, -0.00194539956, -0.0150527135, -0.0167805031]
12 Oct, 2021
Node.js Stream readable.destroyed Property 12 Oct, 2021 The readable.destroyed property is an inbuilt application programming interface of Stream module which is used to check the readable.destroy() function is being called or not. Syntax: readable.destroyed Return Value: It returns true if readable.destroy() method is being called otherwise returns false. Below examples illustrate the use of readable.destroyed property in Node.js: Example 1: // Node.js program to demonstrate the // readable.destroyed Property // Include fs module const fs = require("fs"); // Constructing readable stream const readable = fs.createReadStream("input.txt"); // Instructions for reading data readable.on('readable', () => { let chunk; // Using while loop and calling // read method with parameter while (null !== (chunk = readable.read())) { // Displaying the chunk console.log(`read: ${chunk}`); } }); // Handling error event readable.on('error', err => { console.log(err); }); // Calling destroy method // with parameter readable.destroy('error'); // Displays that the stream is // destroyed console.log("Stream destroyed"); // Calling readable.destroyed // Property readable.destroyed; Output: Stream destroyed true error Example 2: // Node.js program to demonstrate the // readable.destroyed Property // Include fs module const fs = require("fs"); // Constructing readable stream const readable = fs.createReadStream("input.txt"); // Instructions for reading data readable.on('readable', () => { let chunk; // Using while loop and calling // read method with parameter while (null !== (chunk = readable.read())) { // Displaying the chunk console.log(`read: ${chunk}`); } }); // Displays that the stream is // destroyed console.log("Program completed!!"); // Calling readable.destroyed // Property readable.destroyed; Output: Program completed!! false read: hello So, here readable.destroy() method is not called before readable.destroyed property so it returns false. Reference: https://nodejs.org/api/stream.html#stream_readable_destroyed Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property
https://www.geeksforgeeks.org/node-js-stream-readable-destroyed-property?ref=asr10
CSS
Node.js Stream readable.destroyed Property
Node.js Stream readable.destroyed Property, Node.js Readable Stream close Event, CSS pause-before Property, CSS, How to Play and Pause CSS Animations using CSS Custom Properties ?, Node.js Stream readable.resume() Method, Node.js Readable Stream resume Event, Node.js Stream readable.pause() Method, CSS Tutorial, p5.js | pause() Function
GeeksforGeeks
[-7.74835644e-05, -0.0132103395, -0.0049927514, 0.053409256, -0.00697700633, -0.025474187, -0.0245682579, 0.00644291379, -0.0144813452, 0.0302877799, -0.0123314532, 0.043106, -0.0154954446, -0.0468649305, 0.0257716551, 0.0034208966, -0.0209174976, -0.000180847797, -0.0141568333, 0.0055707884, -0.0020687636, 0.00129973795, -0.0338303708, -0.0273806937, -0.0209851041, 0.00670658, 0.0012203001, -0.0195112806, -0.0379949398, 0.00614882493, -0.00498599047, 0.0167258866, 0.0108508682, -0.0173478667, -0.017902242, -0.0154819237, -0.00222425885, 0.0328027494, 0.00914042, -0.0185107011, -0.0118244039, 0.00263327919, -0.0437820666, 0.00902548805, 0.00503331516, 0.0147382505, -0.0531117879, -0.0317480825, -0.0214853939, 0.0131089296, -0.000943957886, 0.0281514097, -0.00606093649, -0.0391307324, 0.0506779477, -0.000974380877, 0.0149545912, -0.0126965297, -0.00513472548, -0.0521112084, 0.00820744783, -0.0752326846, 0.00894436054, -0.0172396973, 0.00549304066, 0.0339385383, -0.0230403468, -0.0060879793, -0.0198628344, 0.0468378887, -0.0334247276, 0.0329650044, 0.0334247276, -0.0107629793, 0.0133861173, -0.00429978315, -0.0194842368, 0.0554915406, -0.00495218718, 0.0142379608, -0.00448232098, -0.0147517715, -0.00416457, 0.0205253791, 0.0144272596, -0.0081533622, -0.0445392616, -0.0215665214, 0.0514892265, -0.0107697397, 0.00090677425, 0.0218639914, 0.0273806937, -0.0288004335, 0.00868069381, 0.0571681857, -0.0286111347, -0.0182673167, -0.0228916127, 0.0381842367, 0.0040766811, 0.031694, -0.0151168471, -0.00250989688, -0.0181726683, -0.0504345633, 0.0242167022, -0.00659840927, 0.0268263202, 0.0776665211, 0.015847, 0.00939732511, -0.0176994223, 0.0119325742, -0.00559445051, 0.0461888649, -0.0165771507, -0.013277947, 0.0111618582, -0.00854548067, -0.0271373112, 0.00553360442, 0.0245006513, 0.0759357959, -0.0204983372, 0.0151979756, -0.00838322472, -0.0192002896, 0.00654094387, 0.0421595089, -0.0132238613, -0.0206065085, -0.0256634858, 0.00810603797, 0.00694996398, 0.0247981194, 0.00126424443, 0.0361560397, -0.0313154, -0.00311328634, -0.00599671, -0.0197141, 0.0354799703, 0.0177129433, 0.0168881416, 0.0224994943, -0.0278539415, -0.0183890089, -0.0326134488, 0.00489472179, -0.0187270436, -0.00166903925, 0.0207281988, 0.0153061459, -0.00410372391, -0.00641925167, -0.00790997874, 0.00807223469, -0.0234459881, 0.0147112077, -0.00311666657, -0.00743673183, 0.0240814891, -0.00377245131, -0.0283947941, 0.0253254529, 0.0371836573, 0.0208634138, 0.0127844177, 0.0121421544, -0.0471353568, -0.00219214568, -0.0306393355, 0.0205253791, 0.0120204631, -0.0106683299, 0.0485145338, -0.0166041944, 0.0233919024, -0.0160362981, -0.0217287783, -0.000982831698, 0.0132238613, -0.0279891547, -0.00516514806, -0.0194842368, 0.0171720888, -0.022851048, -0.0201603044, -0.0144272596, -0.0570600145, -0.00187270425, 0.0445122197, -0.0080925161, -0.0167529285, 0.036588721, -0.0366698466, -0.00520571228, -0.000201235423, -2.09422178e-05, 0.0024000362, -0.00983000733, 0.0192138106, -0.0120137017, -0.00192002894, -0.0210662335, 0.0212420095, -0.0290708598, 0.051110629, 0.0021651031, 0.0190515555, -0.0218910333, 0.00329413405, 0.00868069381, 0.00899168476, 0.0113173537, -0.0058953003, -0.00715278368, -0.00104029733, 0.00160988339, 0.0188892987, -0.0367780179, -0.00103100145, 0.0161039047, -0.0535715111, -0.0271237884, 0.00819392595, 0.0190650765, 0.0152655821, -0.00701757055, -0.0108981924, 0.0375352129, -0.000294300204, -0.0339926258, -0.00785589311, 0.0226211865, 0.00409020251, -0.0505427346, 0.00814660173, -3.54934928e-05, -0.000239158529, -0.0105398772, -0.0198763553, 0.000998888281, 0.020079175, 0.0137106292, 0.00367780193, 0.0174154732, -0.00334652932, 0.028421836, -0.0209580623, -0.026244903, 0.028719306, 0.0267722346, -0.0382112786, 0.0154954446, 0.00266032177, 0.0310720168, -0.0142785255, -0.0212014467, 0.0101409983, -0.00172650488, -0.0212555323, 0.00397189101, -0.00573980482, 0.016834056, -0.0333165601, -0.0395363718, 0.0123314532, 0.0108305858, 0.04042878, 0.0104587488, 0.0035527295, -0.00748405652, -0.0482711494, 0.0352906734, -0.0190650765, -0.0294494573, -0.0242167022, -0.0310990606, -0.00429640291, -0.0105872015, -0.0215800442, 0.0420783795, -0.0147382505, 0.0108305858, 0.0512999296, -0.0103032542, -0.060359221, 0.00582769327, -0.00149326189, -0.0301255248, -0.0233919024, 0.0153872743, 0.0207011569, -0.0137917567, -0.0574926957, 0.038130153, -0.00872125849, -0.00206031278, -0.0141162695, -0.0424028933, -0.0210932754, 0.00991113484, 0.0121489158, -0.0214042664, 0.0300173536, -0.00397189101, 0.0398608819, -0.0480007231, 0.020227911, -0.00611164141, -0.0159686916, -0.0214853939, -2.17344823e-05, -0.00542205339, 0.00858604442, -0.0178481564, -0.00544909621, 0.0369673185, -0.0249198116, -0.00805195235, -0.0362101234, 0.0436739, 0.0235271156, -0.0030068059, 0.00613192329, -0.00443161605, -0.0502993502, -0.0401042663, -0.00181692874, 0.0305852499, -0.00805195235, 0.0376163423, 0.0122570861, -0.0190785974, -0.0579253808, -0.0310449749, 0.0150086768, 0.0179428048, -0.0348039046, -0.0252172817, 0.0226482283, -0.00286145159, 0.0217287783, -0.00925535057, -0.0517866947, 0.028259581, 0.0115810195, 0.0302336942, 0.000764800236, 0.0044620391, 0.0272995662, 0.0149951559, 0.0100260666, -0.00532064354, 0.00178481569, -0.0435116403, 0.00715278368, 0.0176588576, 0.0186053514, 0.00254201, 0.0148058571, 0.0155765731, 0.0142379608, -0.0227158349, -0.00881590787, 0.00274821045, 8.45083123e-05, -0.00967451185, 0.0319914669, 0.0116215833, -0.0375622548, 0.00585135585, 0.00418485189, -0.0357503965, -0.0271373112, -0.0014281905, -0.0100125456, 0.0116891898, -0.0149005065, 0.0509213321, -0.0319914669, 0.00536796823, 0.0368591473, -0.00635840558, 0.0299362261, 0.0131968185, 0.000433527661, -0.0134064, -0.0300173536, 0.0351825021, -0.000559022534, -0.0023375, 0.0370754898, 0.0191326831, 0.00544909621, -0.0104790311, 0.0115404557, -0.0218775123, -0.0268804058, -0.00820068736, 0.0251226313, -0.0120542664, -0.00916070119, 0.000646488625, -0.0117567973, -0.000283102854, 0.0192273315, 0.0149410702, 0.00474598724, -0.0110266451, -0.00198087492, 0.0150898052, -0.0118717281, 0.026704628, 0.0564109907, 0.0184025317, -0.0107359365, 0.012507231, 0.0287463479, 0.0238516275, -0.0385898761, 0.0247440357, -0.0111010121, 0.00600009039, -0.03180217, -0.0234459881, -0.0375081711, -0.0257310923, -0.0460266098, 6.9244e-05, -0.00688235741, -0.0205929857, -0.034885034, -0.0122773685, 0.0107832607, -0.00454316707, -0.00514486618, 0.0177129433, -0.00578036858, -0.0175371654, 0.0134131601, 0.00419161236, 0.0181185827, 0.0406180769, -0.036913231, -0.0132711856, 0.0161174256, -0.0254065804, 0.0177129433, 0.00353582785, -0.0292060748, 0.0033668112, 0.00437415065, -0.00625699572, 0.0223778021, -0.0176588576, 0.0126965297, 0.0085995663, -0.0302877799, 0.0266911071, -0.0195383225, 0.0354529284, 0.00144424709, -0.0385628343, -0.00770039763, -0.00364399864, 0.009187744, -0.0188892987, 0.0188757777, 0.0128790671, -0.0479466394, 0.0647942126, -0.00134875276, -0.0112700285, 0.00839674659, -0.0029104664, 0.010803543, -0.0161850322, 0.0177399851, -0.0214989148, 0.0155224875, -0.028719306, 0.0104317069, -0.00701757055, 0.0487579182, -0.00260454626, -0.012507231, -0.0167934932, -0.0300984811, -0.0314235725, -0.0171720888, -0.0300443973, 0.0122908894, 0.0145895155, -0.0087483013, -0.0232161246, 0.00417133048, 0.0135078095, 0.0515433103, 0.00775448326, 0.0385357924, -0.0298010129, -0.0173073038, -0.00558430934, -0.0125342738, 0.042916704, 0.00224961131, -0.0415645689, -0.0488660894, -0.0058919196, -0.0370214023, 0.0218234267, 0.0101004336, -0.0112227043, -0.0133117503, 0.00610826118, 0.00174594182, 0.0425381064, 0.0201197397, 0.00456344895, 0.00917422306, -0.00160396786, -0.00467161974, 0.0345875621, -0.0463781655, 0.0110266451, -0.0509213321, 0.0282325391, 0.0225265361, 0.0244736075, 0.00528008, 0.0242031813, 0.0160498191, 0.000870435673, -0.0123314532, -0.0154819237, -0.00997874234, 0.0054964209, -0.00545585668, 0.00585473608, -0.0416186564, -0.0093905637, -0.0155224875, 0.0457291417, 0.021160882, -0.002856381, -0.00547275832, -0.00737588573, 0.0189028196, 0.0112497471, 0.0307745486, -0.0135686556, 0.0159686916, 0.00547951926, -0.0116418656, 0.0157929137, -0.0122841289, -0.00517528923, -0.00781532936, 0.0120813092, 0.0155495303, 0.00966775138, 0.00308624376, -0.0264342017, 0.011337636, -0.00342427706, -0.0164148957, 0.00166312361, -0.000412189314, -0.031694, -0.0170368757, -0.0358856097, 0.0254201014, 0.000227116092, 0.0229727402, -0.00813984126, -0.000766490411, 0.00097691617, 0.00675390474, -0.015847, 0.0132982284, 0.0219451189, -0.0372647867, -0.00619276939, 0.0108373463, -0.00244229031, -0.0120407445, 0.00773420092, 0.0193625446, 0.0164554585, -0.00278877444, -0.0081533622, -0.0227158349, -0.00607783813, -0.000167009566, -0.0179563276, 0.00422879634, -0.0271102674, 0.00925535057, 0.0240814891, -0.00924859, 0.0144948661, -0.0429707877, -0.00196059304, -0.018213233, -0.004786551, 0.0040192157, -0.00182875991, 8.52477606e-05, 0.0245682579, 0.0267857555, -0.00891055726, 0.0159686916, 0.00307779294, 0.00736236433, 0.0361019522, 0.0122841289, -0.0191867687, 0.0205389019, 0.0123652564, 0.0219451189, -0.0255417936, 0.00797082391, -0.00966775138, 0.00616572658, -0.0448367335, 0.00897140242, -0.0152926249, 0.00506373821, -0.0179563276, -0.0382112786, -0.0151438899, -0.0177940708, 0.0348579884, 0.0217693429, -0.0220127255, 0.00333469803, -0.0226482283, 0.0146300793, -0.00506035797, 0.0177264642, 0.0464052074, 0.00324004889, 0.00631108088, -0.0568436719, 0.00112818601, 0.00122199021, -0.0267992765, -0.00321976678, -0.00493528554, 0.0398879237, 0.0328027494, -0.0223778021, -0.00513810571, 0.0373188704, 0.0117906006, 0.0120542664, -0.000613530399, -0.0105939629, -0.00625023525, -0.00121438445, -0.0106210047, 0.0143731739, -0.0145624727, 0.0159822125, -0.00171636394, -0.00657474715, 0.0277728122, -0.0200115684, -0.0193490237, 0.00857928395, 0.0281243678, -0.0197546631, -0.0147247287, -0.0215800442, 0.035047289, 0.00668629818, 0.0135821765, 0.0124193421, -0.0137985181, 0.000414513284, 0.0222425889, 0.00745025324, -0.00515838759, 0.00266032177, -0.013588937, 0.00152706529, -0.00918098353, 0.00684179319, 0.00151100871, 0.0398067981, 0.0375893, -0.00280398596, 0.0130818877, 0.0128723066, 0.01188525, -0.00798434578, -0.0115539767, -0.0361289941, 0.0162932035, -0.0177670289, 0.00413414696, 0.00602037227, 0.0405369475, -0.00225975248, 0.0314776562, 0.00151100871, 0.0187946502, -0.017145047, 0.0269480124, 0.00824801158, -0.00233073928, 0.000216235654, -0.00669305865, -0.0106683299, -0.0291519891, 0.0023375, -0.0252713673, -0.00749081699, -0.0118649676, 0.0286652204, -0.0164284166, -0.00658826809, -0.0446474329, -0.0195383225, 0.000758884649, -0.00831561815, 0.00609135954, 0.0106683299, -0.021160882, 0.00501979375, -0.009573102, -0.0184295736, 0.0204848163, -0.000209369347, 0.000506627373, 0.0312883593, 0.0101680402, -0.00020271432, -0.0117838392, -0.013899928, 0.0120745478, -0.035804484, -0.0145759946, -0.0189298633, -0.00168932125, -0.0115336953, -0.00742321042, -0.0193084609, -0.0305582061, 0.021458352, -0.0382653661, 0.00641925167, 0.0442688353, 0.0271643531, -0.0311531462, 0.00403611735, 0.0366968922, 0.00836294331, 0.0145895155, -0.0109252352, 0.000970155466, 0.0204036869, -0.0389143899, -0.0465945043, -0.0371025316, -0.00970831513, 0.0170639195, 0.00361019536, 0.00498937117, 0.0350202471, -0.0162661597, 0.0138052786, 0.0177264642, 0.0117838392, -0.0360478684, 0.00456344895, 0.0149951559, 0.00952577777, 0.0445933491, -0.0312072299, -0.0361019522, -0.000970155466, -0.0104790311, 0.018835213, 0.00805871282, -0.00445527863, 0.036426466, 0.0239868406, -0.0014036831, 0.0324782357, -0.0366968922, 0.027475344, 0.00274821045, -0.012581598, 0.0603051335, -0.0184295736, -0.0372377448, 0.0277187284, -0.0415645689, -0.0176453367, 0.00903901, -0.00214651111, -0.0322889388, -0.0058817789, -0.0207822844, -0.0364805497, -0.00751786, 0.0102897324, -0.0264747646, -0.0147923352, -0.0101207159, 0.0133185107, -0.0121624367, 0.00367104122, -0.0116418656, 0.00301863695, 0.0147652933, 0.023162039, -0.0163202453, 0.00372512662, -0.0116080623, -0.0484063625, 0.041375272, 0.0174830798, -0.0121286334, -0.0124531453, -0.0266640633, -0.00696348539, 0.029016776, -0.022851048, 0.00967451185, -0.0424569771, -0.00703785243, -0.00458711153, 0.0216882136, 0.0178887211, 0.0360208228, -0.00701757055, 0.00326371123, 0.00382653647, -0.0219451189, -0.00778152561, 0.012358496, 0.00602375297, 0.0199304409, 0.00471218349, -0.00896464195, -0.00646319613, 0.00538487, 0.0116215833, 0.00535106659, 0.00338033261, -0.0198898781, -0.0130413231, -0.0139945773, -0.0271102674, 0.017293781, -0.0213366598, 0.0173073038, 0.009573102, -0.00782209, -0.0104249455, 0.0242031813, -0.00897816382, -0.064037025, -0.0119055314, 0.0252984092, -0.0442147516, -0.00567895873, -0.022229068, 0.000329371163, 0.0114390459, -0.00579727069, -0.0210797545, -0.0513269715, -0.00230538682, -0.0183484461, 0.0255823582, 0.000594093464, -0.0152385393, 0.0180239342, -0.00470204279, -0.007254194, 0.0179968905, 0.0084778741, -0.000198594542, -0.00642263191, -0.0363182947, 0.0214177873, 0.0185512658, -0.0322348513, 0.0183619671, 0.057276357, 0.0421865508, -0.00690263929, -0.0055674077, 0.017902242, 0.0241355747, -0.00396513, 0.0152385393, -0.00873477943, 0.020390166, -0.036588721, -0.00275497115, 0.00606093649, 0.0120407445, -0.010343818, 0.00720686931, 0.0141433114, -0.00593586406, -0.010032827, 0.0273942165, -0.01158778, -0.0238516275, 0.0237840209, 0.0162796825, 0.00594600523, -0.013426681, -0.00670658, -0.00169861712, 0.00372850685, -0.030720463, -0.0135956975, -0.0374540873, 0.0172261745, -0.00718658697, 0.00310652563, 0.0337222, 0.0196464937, -0.0334788151, 0.00330427522, -0.0300173536, -0.0137309115, -0.00542205339, -0.00456682919, -0.0171856117, -0.0194707159, 0.0454587117, -0.000733954716, -0.00457021, 0.00917422306, -0.0401042663, -0.0254877079, -0.0239462759, 0.000940577534, -0.0118649676, 0.00554712582, -0.0107224155, 0.00364399864, 9.81352787e-05, 0.0205524229, -0.010729176, -0.0340737514, -0.000980296521, -0.0071933479, -0.0268398412, -0.0257175714, 0.030260738, -0.00199608644, 0.00128283619, -0.0133252712, 0.0665249452, -0.0269209687, 0.000400569406, 0.00634826487, -0.00938380323, -0.0130616054, -0.0120948302, -0.0151438899, 0.00659164879, 0.00137241511, 0.00159720716, 0.0242707878, -0.0207958072, -0.0295576286, 0.0161174256, -0.0134064, -0.0108643891, -0.0205118582, -0.0161985531, -0.0106750904, 7.37863229e-05, -0.0239868406, -0.000667193148, -0.0185242221, -0.00602037227, -0.0097826831, -0.0230538677, -0.0331543, -0.00338709331, 0.0101545192, -0.0175642092, 0.0102762114, 0.0202684738, 0.0331543, -0.0438091122, -0.00579050975, -0.0129128704, -0.00490824319, -0.0010969179, -0.00132255512, 0.0118987709, -0.00909309462, 0.00743673183, 0.0123652564, -0.00782885, 0.0205524229, -0.00738264667, -0.00894436054, -0.0188892987, -0.0543827899, 0.00389752351, 0.00241693784, -0.0116756689, 0.0327216201, 0.00567557849, 0.0345605202, -0.0153467106, 0.0177940708, 0.0275564715, -0.0468378887, 0.00275497115, 0.0235676784, -0.00864689052, -0.00703785243, 0.00522261392, 0.0034208966, -0.00702433102, -0.0145489518, 0.00611502165, 0.00166650396, -0.00565867685, -0.0156982653, -0.00788293593, -0.0231079534, 0.00132931583, -0.015603615, -0.00365075935, -0.00736236433, -0.015847, 0.00979620405, -0.00611164141, -0.00603727391, -0.00165636302, -0.0312883593, -0.00352230668, 0.0204307307, 0.005364588, 0.00126424443, -0.00646657636, -0.0203360803, 0.0150357196, 0.0280973241, -0.00591558218, -0.0344253071, -0.00191157812, 0.0297198854, -0.015901085, 0.00273299892, 0.000853534, -0.00754490262, 0.00443837652, -0.0117432754, 0.00344455894, 0.0150221987, 0.00912013743, 0.0184160527, -0.00630094, -0.00488458062, 0.00416118931, -0.00217355392, 0.00685869483, 0.00248792488, 0.0136565436, 0.00681475038, 0.0244330447, -0.0341819227, 0.000186235207, -0.0121691972, 0.00267215306, -0.0360208228, -0.0014307258, 0.00790997874, 0.00550318137, -0.0317210406, -0.0320455544, -0.00972183701, -0.0171991326, 0.002104257, 0.000731842, 0.00135973876, -0.00560459169, 0.0147112077, -0.000634234922, 0.0703109205, -0.0188216921, -0.0047257049, -0.0135213304, -0.0110807307, -0.0188216921, 0.00848463457, 0.0151844546, 0.0264477227, -0.0253254529, 0.00115269341, -0.00527669908, 0.00772744045, 0.014819378, -0.0453505442, 0.00398879265, -0.0356963128, -0.0155630512, 0.00597980851, -0.0269750543, -0.00688573765, 0.000399935612, -0.0298821405, -0.0029104664, 0.0112767899, 0.00380625459, -0.00759898778, -0.0183078814, -0.0404828638, 0.0078896964, -0.00944464933, 0.0184025317, 0.00660855044, -0.00203157985, 0.0308556762, 0.028259581, -0.00169777207, 0.015887564, -0.0144948661, 0.0296117142, 0.0040766811, -0.051867824, 0.0101274764, 0.018983949, 0.0090660518, 0.00907281321, -0.0191867687, -0.0451882854, -0.0180374552, 0.0387521349, -0.00995846, -0.0164825022, -0.0192543752, -0.0301525667, 0.00632122206, 0.0291519891, -0.0169692691, -0.0233783796, 0.0126356836, -0.000167749, 0.00881590787, 0.00128368137, 0.0163472891, -0.0167258866, 0.0118987709, -0.00872801896, -0.0237840209, 0.0208363701, -0.0199980475, 0.023162039, 0.00644967472, 0.000296412909, 0.0102559291, 0.0121827191, -0.00443161605, -0.002489615, -0.0046547181, 0.0246088207, -0.00571952295, 0.00149072672, -0.00121945504, 0.0275970362, -0.043106, 0.0218639914, 0.0300173536, 0.0141838761, -0.0322889388, -0.00157185469, -0.00267553329, 0.0189974699, 0.0200115684, 0.00096846529, -0.0167529285, 0.00761926966, 0.0019656634, 0.0105128344, 0.0288545191, -0.0155224875, 0.00520571228, -0.0121015906, 0.0397256687, 0.0144813452, 0.0345334783, 0.00370484451, -0.00797082391, 0.000753391651, -0.000909309485, 0.000425921899, 0.00318427337, 0.0126289232, 0.0260826461, 0.00327892276, 0.0249603763, 0.00359329348, -0.00292398781, -0.010817064, 0.0400501825, 0.000475359266, -0.033668112, 0.00597642828, -0.0220532902, 0.00308962399, -0.0193895884, 0.0210391898, -0.0106953727, 0.00382653647, 0.0143190892, -0.00673024217, 0.00607783813, 0.00766659435, 0.0109725595, -0.00438429136, -0.00817364454, 0.016834056, 0.0195383225, 0.00305920094, -0.00121860986, -0.00272116787, -0.00288849417, -0.00683503272, 0.00773420092, 0.00462767528, -0.0279891547, -0.00775448326, 0.0297739692, 0.0207146779, 0.00681137, -0.0053037419, 0.00578036858, -0.0159146059, -0.0181591474, -0.0276916847, 0.0116621479, 0.0210121479, 0.0111618582, -0.0188757777, 0.00813984126, -0.00784237217, -0.0164013747, 0.0209310204, -0.0104993135, 0.0108576287, 0.0172802601, -0.00418823212, 0.00678432779, 0.0250144619, -0.0266235, -0.0134604843, -0.0040056943, 6.63918472e-05, -0.0046547181, 0.0157117862, 0.01961945, 6.44375905e-05, 0.00589868054, 0.00385695952, 0.011574259, -0.0221885033, 0.0219856836, -0.00545585668, -0.00968803372, 0.017131526, -0.00823449064, -0.0023577821, -0.00919450447, 0.00856576301, 0.00760574825, 0.00595614593, 0.031017933, -0.0335869864, -0.0134672448, -0.00349188363, 0.0110063627, 0.004015835, 0.00661869114, -0.0143190892, 0.00962718762, 0.0055707884, 0.00536796823, 0.00579727069, -0.019146204, 0.0138390819, -0.0044620391, 0.00680122944, -0.000630009512, -0.0137106292, -0.0212014467, -0.000581417233, 0.0248116422, 0.00522261392, -0.00610150024, 0.0095122559, 0.0260691252, 0.00212791935, 0.0146841649, -0.0275159068, 0.00150593824, 0.0274077374, -0.0208363701, -0.0288545191, -0.0181456264, 0.0150492406, -0.00873477943, -0.00429640291, -0.037345916, 0.00884971116, -0.0146436011, -0.000846773328, -0.0181321036, 0.00108086132, -0.0130616054, -0.0153331887, 0.0134740062, 0.00233073928, -0.007254194, -0.0200926978, -0.0151844546, -0.0352906734, -0.00643953355, 0.00425583869, 0.0036980838, 0.0256905276, -0.00638206815, 0.00125410338, -0.0123652564, -0.000321976695, 0.0142379608, -0.00251496746, -0.00539501105, -0.00224285061, 0.030882718, -0.0109319957, -0.00817364454, -0.0200115684, -0.00408344204, 0.00308624376, -0.0107697397, -0.0127911791, -0.0128452638, -0.0260150395, 0.0206200294, -0.00715954462, -0.00966099091, -0.0105263554, -0.0188081712, 0.0230403468, -0.0239733197, 0.0176318157, 0.00201636832, -0.0178346355, 0.0117838392, 0.025474187, 0.0463781655, 0.00182537967, 0.00200453727, -0.022391323, 0.0272049177, -0.00371498568, 0.00552684395, -0.00683503272, -0.0202008672, 0.0252037607, -0.0113038328, 0.0201332606, -0.0100260666, -0.0098367678, -0.0111483373, 0.0391307324, -0.0194977578, 0.0122368038, 0.0122908894, -0.0268128, 0.00556402747, -0.0075043384, -0.00139945769, 0.0252713673, 0.0134537239, -0.0205659438, 0.000701841549, 0.00118987705, 0.0110672088, 0.028259581, -0.00814660173, -0.011959617, 0.0174019523, 0.00879562553, -0.0274212584, 0.0124801882, 0.0178211145, -0.00474260654, -0.0118176425, -0.0187270436, 0.00866717286, -0.0215124376, -0.031964425, 0.0102762114, -0.0320185125, 0.00662545208, 0.000496486377, -0.0214718729, 0.0114863701, -0.035804484, 0.0379949398, -0.00164622196, -0.00490148226, -0.0123314532, 0.00365751982, -0.00318596349, 0.00878210459, 0.00288511394, -0.00405301899, -0.0254201014, -0.00450936379, 0.0315858275, -0.00200960785, 0.0284488797, 0.00768011576, -0.00601699203, 0.00748405652, 0.0286652204, -0.0104317069, 0.0408344194, -0.00733532198, 0.00508740079, 0.0475139543, -0.0122300433, -0.00529698143, -0.00160481292, -0.0147112077, 0.000117994736, 0.00178312545, -0.0224589296, 0.019605929, 0.0172126535, -0.0323430225, 0.0124937091, 0.00414766837, 0.0112565076, 0.0108305858, 0.00901872758, -0.0140351411, -0.00116283447, 0.00552346371, -0.00836294331, 0.0152385393, -0.011188901, 0.00502993492, 0.00326709147, 0.00323159806, 0.011351157, -0.0356963128, -0.0190109909, -0.00833590049, 0.00169777207, 0.000998888281, 0.0118514458, 0.0282054953, 0.00023239787, -0.0224318877, 0.0237840209, -0.0117567973, -0.00606769696, 0.0152655821, 0.0113984812, -0.0210121479, 0.0111686187, -0.0137849962, 0.0170098338, 0.0222020242, 0.0313965306, -0.00368118216, 0.0227293558, -0.0127708968, 0.0330190882, 0.000323455577, 0.0188622568, -0.0104384674, 0.0218504705, -0.0328297913, 0.00427950127, 0.0176723786, -0.0198628344, 0.00515500735, 0.0100057842, 0.0103911422, 0.0315317437, 0.0237164143, -0.017915763, 0.0240814891, -0.0322889388, 0.0174695589, 0.00737588573, -0.020390166, -0.000168382816, -0.0131765362, 0.0221614614, -0.0157117862, 0.0220127255, -0.0144948661, 0.0058953003, -0.00554374559, 0.0165365878, -0.0336951539, -0.0197276212, -0.00898492429, -0.0244600866, 0.0255688354, -0.00599671, 0.00545585668, 0.00796406344, -0.00789645687, -0.0335329, -0.0113714393, 0.00544571597, 0.016523065, -0.0024000362, -0.0392659456, 0.00660516974, -0.0314235725, 0.0292601585, 0.0143461321, -0.00452964567, 0.00682489155, 0.000504092081, 0.00841026753, -0.0141297905, 0.0161985531, 0.0134672448, 0.014359653, -0.0114525668, 0.00190481741, 0.0154684018, 0.00556064723, 0.0397256687, -0.0161985531, -0.00354596903, 0.0211203191, -0.0225535799, 0.0177399851, -0.00452964567, 0.0124666663, -0.0286381785, -0.00262651849, 0.0167664494, -0.00836294331, -0.00136396417, 0.0010588892, 0.00889703538, -0.00837646425, 0.00187439448, 0.00797082391, -0.0107224155, 0.0218910333, 0.000142924691, 0.00911337696, 0.0110604484, -0.00122537056, 0.00836970378, -0.00763955154, -0.00182875991, 0.0105195949, 0.0204848163, 0.000406062463, -0.00392794656, 0.0100531094, 0.0312613174, -0.0166853219, 0.0172126535, -0.00664911419, 0.0172667392, -0.0115066525, 0.000209686259, 0.0133861173, -0.0167394076, 0.0178346355, -0.0116891898, -0.00218369486, -0.00721363, -0.0166041944, 0.0197276212, -0.0144272596, 0.00277187279, 0.0110469274, 0.00465809833, 0.0145489518, 0.0195518434, -0.0133049889, 0.0176318157, -0.0201603044, 0.0206065085, 0.0113173537, -0.0227564, 0.00434710784, 0.0249874182, 0.00306765176, -0.00411048438, -0.0139810555, 0.0117635578, 0.00974211842, 0.00576684764, 0.0215935651, -0.020227911, 0.0211203191, -0.0238110628, -0.00840350706, -0.00679108826, -0.0204307307, -0.00464119669, 0.0170503985, -0.00710545899, -0.0247440357, 0.00705813477, -0.00443837652, -0.0301525667, 0.030720463, -0.0198222697, 0.000446203921, -0.0208228491, 0.00443499628, 0.00986381061, -9.98254473e-05, 0.0150898052, -0.0148464208, -0.00348850316, -0.0122368038, -0.018835213, 0.00462767528, -0.031639915, -0.0216070861, -0.000102994512, -0.0108846715, -0.0200115684, -0.00898492429, -0.00640235, 0.0125748375, -0.00786941405, -0.0146841649, -0.0126627265, 0.00043162622, 0.0127032902, -0.0102964928, -0.00407330086, 0.0179698486, 0.0195924081, -0.00275159068, 0.00731503963, 0.00319779478, -0.00960014481, 0.00740292855, -0.0127641363, -0.00542205339, 0.011351157, 0.000218031448, 0.0111753801, 0.0274483, 0.00922830775, 0.00535444682, -0.021931598, -0.00185242225, 0.0237299353, 0.00743673183, 0.0167934932, 0.00560459169, 0.00503331516, 0.00866041239, -0.0100395875, -0.00958662294, 0.0121556763, -0.0144543024, 0.0134672448, 0.0117162326, 0.00679784874, 0.000899168488, 0.00480345264, 0.00534092542, -0.0294224154, -0.00772744045, 0.00864689052, 0.00507725962, -0.0220127255, -0.0131494943, 0.000319864, 0.00955958106, -0.0208093282, 0.0191732459, -0.0300443973, 0.000838322507, -0.00607107719, 0.0107765, 0.0145354299, 0.00364399864, -0.0200926978, -9.40155e-05, -5.60857916e-06, 0.0240814891, -0.0173749104, 0.0264612436, -0.00276004151, -0.00775448326, 0.00828181487, 0.00227665412, -0.0164013747, -0.00242538867, -0.0176182929, -0.00478317076, 0.0170503985, 0.0129399132, -0.00481359381, -0.0152385393, -0.0155224875, 0.00443161605, 0.0156306587, 0.0159416478, -0.00405301899, 0.00265356107, 0.0210121479, -0.0154684018, -0.0036980838, -0.0186459143, -0.0116756689, 0.00151692424, 0.0227969624, -0.0399149694, -0.00569586037, 0.0116891898, 0.0062198122, 0.0071933479, -0.00763955154, -0.00954605918, 0.00995846, -0.0238381065, 0.0276916847, -0.00703109195, 0.00530712213, 0.00608121837, -0.0224859733, -0.00986381061, -0.00561473239, -0.000320286519, -0.0357503965, 0.0216070861, 0.00423555681, -0.00210763747, -0.00533078471, -0.00859280583, -0.0147652933, 0.00812631939, -0.00276511209, 0.0126154013, -0.000812547456, 0.0192949381, 0.00912013743, -0.0322889388, 0.000583529938, -0.00193355023, 0.0119122919, -0.0116351051, 0.00897816382, -0.00803167, -0.00267384318, -0.008417028, 0.00793702062, 0.0148464208, -0.00640235, 0.0458643548, -0.0161309466, 0.0116689084, -0.00587839866, -0.0407532901, 0.00669305865, -0.0205253791, 0.0224589296, 0.0272725243, -0.0144543024, 9.47021326e-05, 0.00122283539, -0.00419499259, 0.0208228491, -0.000336554367, 0.0180915408, 0.0185918286, -0.00816012267, -0.0191597249, 0.0152655821, 0.00345639023, 0.0190245118, 0.0131562548, -0.00924183, -0.0167934932, -0.0139810555, 0.00689249812, -0.0102153653, -0.00525303697, -0.00252848887, -4.90148232e-05, 0.0209715832, -0.00234426069, 0.0194301512, 0.0308286343, -0.00683503272, -0.0207011569, 0.0137241501, -0.00854548067, -0.00642263191, -0.0195248015, 0.00296286144, -0.0158740412, -0.0312883593, -0.00283778924, 0.00612178259, -0.00156593905, 0.0396445394, 0.0249468554, -0.00556064723, -1.33760823e-05, 0.0057026213, -0.00907957368, -0.0336951539, 0.0174966026, 0.0186053514, -0.0100801522, 0.00394822843, 0.0093905637, 0.0197005793, -0.0102829719, -0.00669643888, 0.00668967841, 0.00541191269, 0.00307441247, -0.00484401686, 0.00352906738, 0.0132644251, 0.00268060388, -0.0304770786, -0.00402259594, -0.00411724532, -0.00497246953, 0.042754449, 0.00264173, -0.0181321036, 0.00953253824, 0.0217152573, -0.0292872023, -0.00404287782, 0.00151100871, 0.00481697405, 0.0257310923, -0.0142920464, -0.0113984812, -0.013426681, -0.00609812, 0.0136497831, 0.00162847526, -0.00748405652, 0.0062164315, 0.0108779101, 0.0106345266, 0.0158199575, 0.0211203191, -0.00437077, 0.00104367768, -0.00499951188, 0.0187946502, 0.0262043383, -0.00738264667, -0.0147382505, 0.0167664494, 0.000153593865, 0.0191326831, 0.0253524948, -0.0122503256, -0.0241085328, -0.010654808, 0.0137782358, -0.000526909367, 0.0242572669, 0.00128452643, -0.00607107719, 0.00635840558, 0.0167799704, -0.000216552566, -0.0022901753, 0.000588600407, -0.0139675345, 0.016671801, 0.0329379626, 0.00583107397, -0.00637192698, -0.0081533622, 0.00704461336, -0.00573304435, 3.20867512e-05, 0.00465133786, -0.00219721626, -0.0265964568, 0.0081533622, 0.00337188179, -0.00232904917, -0.00607107719, -0.0168205351, -0.00628403854, -0.0295035429, 0.0131089296, 0.00168847619, -0.00841026753, -0.0150898052, 0.0154007953, -0.01606334, -0.0244465657, -0.00104283262, 0.00895788148, -0.0109725595, 0.00134283712, 0.0337222, -0.00320962584, -0.00855900254, -0.0157929137, -0.028259581, -0.0103370575, 0.013277947, 0.00994493905, -0.0128249824, 0.000365498476, -0.0141162695, 0.025460666, -0.00769363716, -0.0201467816, -0.0107697397, -0.016374331, 0.00217017345, 0.00970155466, 0.019605929, -0.00545247644, 0.00212453911, 0.00361357559, -0.0207146779, -0.00797082391, -0.00070564443, -0.00530036166, -0.0163472891, 0.00871449709, 0.0222425889, -0.0105872015, 0.00402935641, 0.0198898781, 0.00204172102, -0.0156712215, -0.00658488786, -0.00307779294, 0.00429302221, 0.0220532902, -0.0155630512, 0.0067370031, 0.0108914319, 0.034100797, -0.00437415065, -0.011499892, 0.00483387569, -0.0341819227, 0.0177535061, -0.017604772, -0.00564177521, 0.00571952295, 0.0266235, 0.0087483013, 0.0135821765, -0.000555219653, 0.010343818, 0.0301525667, -0.00405639922, -0.0108711496, 0.00955958106, 0.000814237632, -0.00220566709, 0.000854801619, 0.00934323948, 0.0150762834, 0.018375488, -0.000301905966, -0.0104046641, 0.0182267539, -0.0178616773, 0.00147636025, 0.0153196678, -0.0199304409, 0.0116351051, -0.0292872023, 0.0157388281, -0.015441359, 0.0115404557, -0.0297469273, 0.0248251632, -0.00958662294, 0.0322618932, 0.0134537239, 4.86186909e-05, 0.00405301899, -0.00460063294, -0.00810603797, 0.0107967826, 0.00306427153, 0.0116689084, -0.022702314, 0.00840350706, -0.0327216201, -0.0117297545, -0.0193219818, 0.016671801, 0.0386439636, 0.00808575563, 0.0205524229, 0.00575332623, 0.0144543024, -0.0200386122, -0.000576346705, -0.0173073038, 0.025474187, 0.0027110267, 0.0238651484, -0.010195083, -0.015887564, -0.0166853219, -0.0211744029, -0.0227699205, 0.000370568974, -0.00250482652, 0.0130345626, -0.0131562548, -0.00113325648, -0.00518881064, 0.0144543024, 0.0269074477, -0.026231382, -0.0075651845, -0.022702314, 0.00755166309, 0.00305244047, 0.00528346, 0.00189467648, -0.00268398412, 0.0036203363, -0.0045364066, 0.00630770065, 0.0182673167, -0.0177670289, -0.010952278, -0.00810603797, 0.0265558939, -0.0256229211, 0.0257040486, -0.0243383944, -0.00505697774, -0.0150357196, -0.0177805498, 0.0249198116, -0.000950718531, -0.00515162712, -0.00905253086, -0.0217287783, -0.00903224852, -0.0252172817, 0.00400231406, 0.00189805683, -0.0165771507, 0.0252984092, -0.00478317076, 0.00240510656, -0.0159551706, 0.0117500359, -0.0107629793, 0.0140351411, 0.00313018798, 0.00681475038, 0.000976071053, -0.000376695825, 0.00230031647, 0.0127708968, -0.00514824642, -0.00961366575, -0.00328906369, 0.0161850322, 0.00282933842, -0.00967451185, 6.84517363e-05, 0.00365751982, 0.00386710046, 0.0118041215, -0.00791673921, -0.00285976147, -0.00339723425, -0.00136649946, -0.0191326831, -0.00912013743, 0.0275294296, 0.00909985509, -0.0166447572, -0.0127235716, -0.0252848882, 0.0322889388, 0.00275328103, 0.0104046641, 0.0152250184, 0.00032873734, -0.01606334, 0.0148058571, 0.0117770787, 0.018686479, -0.0147652933, 0.00781532936, -0.0185647868, 0.0282866228, 0.0325052775, 0.0161444694, 0.0278539415, 0.0202008672, 0.0256905276, 0.0107359365, 9.92972673e-06, -0.000482965028, 0.0111753801, -0.0153737525, 0.00851167738, -0.0124261025, 0.0183214024, -0.00113241142, 0.00270257588, -0.00175777299, 0.00553022418, 0.000347329187, -0.0163202453, -0.00077113841, -0.00746377464, -0.00442485558, -0.00834266096, 0.0109793209, 0.0106818508, -0.00436738972, -0.00571614271, 0.00973535795, -0.0133725964, -0.0224318877, 0.0124734277, -5.82579196e-05, -0.013277947, 0.0209851041, -0.00675390474, -0.00290201558, -0.0183214024, -0.0112632681, -0.0066626356, -0.00745025324, 0.014508388, -0.0176994223, 0.0160903838, -0.00170030736, -0.0241085328, -0.0208769348, 0.0195653662, 0.0253524948, 0.00240341644, -0.0114052426, -0.0146571221, 0.00474260654, -0.00119579269, 0.00529698143, 0.00151861447, -0.00707841665, -0.00367442146, 0.0101207159, 0.0075651845, -0.0218369495, 0.0120610269, -0.00453978684, -0.0299091823, -0.0317210406, -0.00693644257, 0.0154278381, -0.00903901, 0.0284759216, -0.01056692, 0.0103776213, 0.0265558939, 0.0114863701, 0.00503669539, 0.0156441797, 0.00713926274, -0.00645305496, 0.0248251632, -0.0111618582, 0.0114525668, 0.00201129797, 0.0179563276, 0.00966099091, 0.0274077374, 0.0365075916, -0.0191597249, 0.00298652379, -0.009573102, -0.00659502903, 0.00122621562, 0.0191326831, -0.0261367317, -0.0127100507, -0.00655108457, 0.0186594352, -0.00175608275, -0.0237164143, 0.00250313641, 0.0114052426, 0.00878210459, 0.0264342017, -0.00613530353, -0.0162526388, 0.00346146058, -0.00280398596, -0.0127708968, 0.00497584976, 0.00873477943, 0.0332083888, 0.00918098353, -0.0188892987, 0.0122841289, -0.00738264667, 0.0140892267, -0.0105195949, 0.00108339661, -0.000781279407, -0.0169287063, 0.00275666127, -0.00884295, -0.0122570861, 0.0017865058, -0.00143579626, 0.00738940714, 0.010965799, -0.00645643519, 0.0071933479, 0.0128385033, 0.0208769348, 0.00836970378, -0.0369402766, 0.0107021332, -0.00605417555, 0.00227496377, -0.000798181049, -0.00914042, 0.0230673905, 0.00926887244, 0.0197005793, -1.80108345e-05, -0.016834056, 0.021553, -0.00157100963, 0.0368861891, -0.00490148226, 0.0245006513, 0.0074434923, 0.00376231014, 0.00638206815, -0.00111550977, 0.0260015186, 0.00383667764, 0.0082142083, -0.0165501088, -0.00257750368, 0.0155495303, -0.0102356477, -0.00901196711, 0.000805364223, 0.00213806028, 0.000534515071, -0.00891055726, -0.0280432403, 0.01056692, -0.0228645708, -0.0120542664, -0.013129212, 0.00880914647, 0.0148869846, -0.0160227772, 0.00648685824, 0.0255282726, 0.00268060388, -0.010817064, 0.00858604442, 0.013588937, -0.00903224852, -0.0165906735, 0.0264206789, 0.0244330447, -0.0155089665, -0.0109860813, -0.000637615216, 0.000430147338, -0.00882266834, -0.0262854658, -0.000374160561, -0.00807223469, -0.00419499259, -0.00530712213, -0.0100666303, -0.00127861078, 0.0215800442, -0.012743854, -0.025933912, -0.00145945861, -0.000220777976, 0.0167529285, 0.00829533674, 0.0181050617, -0.0267992765, -0.0104114246, -0.0159686916, -0.0111348154, -0.000383033941, 0.0222831536, 0.0130683659, 0.0105195949, -0.0284488797, -0.000138382369, -0.0349120758, -0.00283102854, 0.00208735536, -0.00869421568, 0.0132509042, -3.43579122e-05, 0.0122300433, -0.00591558218, 0.0251226313, 0.00524627604, -0.000941422652, -0.0215259586, -0.0242167022, 0.00141973968, 0.00206707348, -0.00804519188, 0.0098976139, -0.0195924081, 0.0112565076, 0.0220668111, 0.0103032542, -0.00083240692, 0.000353244774, -0.0182267539, 0.00709193805, -0.00306934211, 0.00924859, 0.00393470703, 0.000378808531, 0.00964746904, -0.0050502168, 0.00876182225, -0.0139675345, -0.0108305858, -0.00284116948, 0.00225975248, 0.00160058751, 0.0034276573, -0.0113849603, -0.0011552287, 0.00318089291, 0.0089240782, -0.025947433, -0.0267722346, 0.0123111717, -0.0157793928, -0.00267553329, 0.00544233574, 0.0175912511, -0.00117720081, 0.00347160152, 0.00152537506, 0.020687636, -0.0067234817, 0.0148599427, 0.00411048438, 0.00648009777, 0.0233513378, 0.013426681, 0.0205659438, -0.000262609596, -0.00565529661, 0.00782885, -0.00014989663, -0.0178075917, 0.0201197397, 0.0135956975, 0.021553, -0.0193084609, 0.0111753801, 0.00370146427, -0.0227834415, -0.00633136323, 0.0119055314, -0.0315587856, 0.0118041215, 0.0450260304, 0.00249975594, -0.00477302959, -0.00736236433, -0.0173749104, 0.00321976678, 0.0106412871, -0.0183214024, 0.000995507929, 0.0029527205, -0.00988409296, 0.0100125456, -0.0204172097, -0.00340230484, 0.01188525, -0.0181591474, 0.0271643531, 0.0303148236, -0.0433223434, 0.000509585137, -0.0155495303, -0.00377921178, -0.0111753801, 0.0101274764, -0.00363047724, -0.0041983733, -0.00778152561, -0.0305582061, 0.00419499259, 0.0138593642, -0.0155495303, 0.0181050617, 0.0165365878, 0.014508388, -0.00587163772, 0.0213907454, -0.00562487356, 0.00490486249, 0.00807899516, -0.00250313641, 0.00651390105, -0.0243519172, 0.0169827919, 0.0170368757, 0.00550318137, -0.00926211104, -0.0139810555, -0.000423175399, 0.0289086048, 0.000639728, 0.0136159798, -0.00654094387, -0.00930943619, -0.00511782384, 0.00585811632, -0.0289086048, 0.00564515544, -0.0208363701, -0.00604065461, -0.0104452278, 0.00872125849, -0.0144272596, -0.00388062187, -0.00826153252, -0.0100395875, 0.0118920105, 0.0168746207, 0.00272792834, -0.00865365192, -0.00979620405, -0.00824801158, 0.0133320317, -0.0136362622, -0.0229862612, -0.0249874182, -0.0328568332, -0.00849815644, -0.00400907453, 0.00934323948, -0.00755166309, 0.0138390819, -0.00699052773, 0.000943112827, 0.038130153, 0.00728799729, -2.16288463e-05, 0.00784237217, -0.00269919564, 0.0348039046, -0.0252443235, 0.0214177873, 0.00206031278, 0.00705137383, -0.0023577821, -0.0209445413, -0.00995846, 0.0122097619, -0.0107088936, -0.0138323214, 0.0278539415, 0.00641587144, 0.0164554585, -0.0160498191, -0.00286483183, -0.00943112839, -0.0129601955, 0.00443837652, -0.0101274764, -0.0063516451, 0.0271237884, -0.0060271332, -0.00289694499, -0.0210527107, -0.00444851769, 0.00165382773, 0.026244903, -0.00707165571, 0.0262584239, -0.00554712582, 0.00384005788, 0.00878886506, 0.00534092542, -0.00533416495, -0.0170233548, 0.00462429505, -0.0239057131, -0.00818716548, -0.00491500366, -0.0050502168, -0.0104925521, 0.0263936371, -0.015887564, 0.0126830079, 0.0239192341, -0.0154007953, 0.0178346355, -0.00711222, 0.000408809, 0.00212115864, -0.00417809095, -0.000150952983, -0.00186256331, 0.00853196, 0.0054355748, 0.0227969624, -0.00139607734, -0.00533078471, 0.00244060019, -0.00173749099, -0.000128030093, 0.0260691252, -0.00423555681, 0.00512120407, 0.0132914679, 0.00657136645, 0.00627389736, -0.000383245206, 0.0178211145, 0.00582431303, 0.00114255247, 0.0234865509, 0.0111483373, 0.00379273319, -0.0118379248, 0.00878886506, 0.0106818508, 0.0156577, -0.00787617546, -0.0105331168, 0.00914042, -0.00915394071, 0.000739025243, -0.00249806582, 0.00267553329, -0.00561135216, -0.00254708063, -0.0235000718, 0.0182673167, 0.0115201734, 0.0180780198, -0.0058953003, -0.0189163405, 0.00530036166, 0.00643615332, -0.00238144444, -0.00921478681, 0.0132103395, 0.0328027494, 0.0257175714, 0.0184836593, 0.0123990597, -0.00734208245, -0.00107748108, -0.00433696667, -0.0330190882, -0.0167258866, -0.00881590787, -0.0120339841, -0.0320455544, -0.0222561099, 0.0332083888, 0.00101917027, -0.00861308724, 0.0157117862, 0.00160058751, -0.0141568333, -0.00599671, -0.00522599416, 0.00912013743, -0.0035527295, 0.000272750593, -0.00309300446, -0.000607614813, -0.0246223435, -0.0124666663, 0.00607107719, 0.00404625805, 0.0196735356, 0.0045330259, -0.0175506864, -0.0406992063, -0.00219045556, 0.00738940714, 0.0154684018, 0.0172396973, -0.0233378168, 0.0169422273, 0.029963268, -0.00153720623, 0.0180374552, -0.0127506144, 0.0218099058, -0.00204172102, -0.036913231, 0.0205929857, 0.0136903469, 0.00125917385, 0.0293683298, 0.016523065, -0.00375554967, -0.0158334784, 5.39532775e-05, 0.00882942881, -0.0201738253, 0.0103911422, -0.00395160867, -0.000812124927, -0.00395836961, -0.0197411422, -0.010817064, -0.00606431672, -0.011425524, -0.0282866228, 0.0144813452, 0.015901085, -0.00856576301, 0.00625699572, -0.00205693231, 0.0173884314, -0.00549304066, -0.00303722895, 0.00130987889, -0.00645305496, 0.0106886122, -0.00184566167, -0.00417133048, 0.00350202457, -0.026704628, -0.00573642459, 0.000961704645, -0.0141162695, -0.00290877628, 0.00764631247, 0.00149410707, 0.0233107731, 0.00350878527, -0.0158064347, -0.00338709331, -0.00611164141, 0.0101004336, 0.00682827178, 0.00780856842, 0.00720686931, -0.0198222697, 0.00132086501, 0.0102221258, 0.00697024586, -0.0148329, -0.00225130143, -0.00896464195, 0.0291249454, -0.0153061459, 0.0153872743, 0.00281919749, 0.0292601585, 0.00872801896, -0.00883618928, 0.00961366575, 0.000409442786, 0.00106987532, -0.0141162695, 0.0148464208, 0.00818716548, -0.00555388629, -0.00878886506, 0.0171585679, -0.00677756686, 0.0309368037, -0.0101748016, -0.0378326811, -0.0360208228, -0.0116013018, 0.013129212, -0.000754659239, 0.00580065092, 0.008417028, 0.0191056393, -0.0219992045, 0.00125494844, -0.0286652204, 0.00425921893, -0.00619953, -0.00616572658, 0.000709869841, -6.33284217e-05, -0.00153044565, 0.00221749814, -0.0140080983, 0.00363047724, -0.00966775138, 0.00229355576, 0.000241905058, 0.00746377464, -0.00941760652, -0.0260826461, 0.0164689813, 0.00704461336, 0.0128114605, 0.000840012683, -0.0169557482, 0.00842378847, -0.00945141, -0.00735560386, 0.0041510486, -0.00751786, -0.00226651295, 0.0141838761, 0.00223270967, -0.020079175, 0.00763279106, 0.0134334415, -0.00558092911, -0.00674038334, 0.00594600523, 0.0172126535, -0.0146300793, 0.0072406726, -0.0240679681, 0.014048662, -0.00168678595, 0.00453978684, -0.0377245136, -0.00663897349, -0.00435048807, -0.00360681489, -0.00369470357, -0.017442517, 0.00148819142, 0.010107195, -0.0289626904, 0.009187744, 0.00982324686, -0.00705137383, 0.00107241049, 0.001707913, 0.01056692, -0.0121151125, 0.00495894812, -0.00848463457, 0.0139269708, -0.00108001626, -0.00804519188, -0.0352365859, 0.00256060204, -0.00805195235, -0.0012380468, 0.00223439978, 0.0133996382, -0.0109184748, -0.00328061287, -0.00481021311, -0.00360005419, -0.00242369855, 0.0156577, 0.0168205351, -0.00450936379, -0.0113241142, 0.0132914679, -0.016374331, -0.00275835139, -0.00997198094, 0.0264612436, -0.0167664494, 0.0017865058, -0.0254336223, 0.00614882493, -0.0131697757, 0.0301796105, 0.0038840021, -0.0201197397, -0.0142650036, -0.0014104438, 0.0137647148, -0.0226076655, -0.00870097615, -0.0236082431, -0.00836294331, 0.00612516282, 0.00813984126, 0.00619276939, -0.00743673183, -0.00205693231, -0.0264882874, 0.0197681859, -0.00672010146, -0.00296117133, -0.027637599, 0.00853196, -0.0200656541, -0.0274483, 0.00223270967, 0.0256905276, -0.01056692, -0.0163472891, -0.0127235716, -0.00907957368, 0.0175777301, -0.0277998559, 0.00572628342, -0.0151168471, 0.00481021311, -0.0215259586, -0.00384343811, -0.000633389805, -0.0257446133, -0.00306258141, 0.000327892252, -0.0143866958, 0.00455330824, 0.0363994204, -0.0047155642, -0.0198357925, 0.0170098338, -0.00538148964, -0.00296117133, 0.029016776, -0.00612178259, 0.00816688407, -0.00330258487, -0.011351157, 0.0190380327, 0.0125207519, -0.00399893336, -0.0169827919, 0.0423217639, -0.033668112, 0.0159416478, 6.0951621e-05, -0.0192002896, -0.0254201014, -0.0100395875, -0.00813984126, -0.0138593642, 0.00338033261, -0.00326033076, 0.00801814906, -0.00421527494, 0.020674115, -0.0185377449, 0.0204442516, -0.00326709147, -0.000580572116, -0.0254065804, 0.011337636, 0.0134942876, -0.00175439264, -0.0163067244, -0.00646319613, 0.0192002896, 0.0397527106, -0.00255384133, -0.010729176, 0.013129212, -0.0176723786, 0.023162039, -0.0329920463, 0.00628403854, -0.00717306603, -0.00836970378, -0.0324241519, -0.022080332, -0.0115607372, 0.00259440532, -0.00817364454, 0.0196464937, 0.0189974699, -0.0047257049, -0.00895112101, 0.000587332819, 0.0255688354, 0.0127708968, -0.00116536964, 0.0195248015, -0.0137985181, 0.0100666303, -0.00150340295, 0.0018828453, -0.00189467648, 0.00810603797, -0.0040192157, -0.0027853942, 0.00740968902, 0.0230538677, 0.0141297905, -0.0235676784, 0.0209986269, 0.00192002894, -0.0309638474, -0.0306393355, 0.0048609185, -0.0120542664, 0.0172261745, -0.00965423, -0.00954605918, -0.0175236445, -0.0153467106, 0.00033761072, -0.00851843785, 0.0104655102, 0.0163878519, -0.00403949758, 0.0051110629, -0.00651052082, 0.0166041944, -0.00167749007, -0.000910999661, 0.000208946818, -0.0190245118, 0.0162391178, -0.00698376726, 0.0131765362, 0.0159416478, -0.0154819237, 0.00445865886, -0.000710714958, 0.0157388281, 0.0101139555, -0.0175912511, -0.0212014467, 0.0179428048, 0.0164013747, 0.00133354124, -0.0272995662, 0.0016386162, 0.00340737519, 0.00782209, 0.0164419375, 0.00539163034, -0.0193490237, 0.00663897349, -0.0138255609, -0.00430654362, 0.0117162326, 0.0193625446, -0.0165365878, 0.00708517712, 0.00845759269, -0.0154684018, -0.00276342197, 0.0175642092, 0.00450936379, 0.00137748558, 0.0120948302, 0.0459454805, -0.014819378, 0.0118717281, -0.0192273315, 0.0324511938, 0.0128452638, -0.00723391166, 0.0207958072, -0.00469866255, 0.00695672445, -0.00965423, -0.00838998519, -0.0053747287, 0.0385357924, -0.00405301899, -0.0224048439, -0.0139675345, 0.00877534319, 0.0141703542, 0.0209580623, 0.0098976139, 0.00638882862, 0.0104587488, 0.011810882, -0.0138728851, 0.0161174256, -0.00276849233, -0.00847111363, -0.00872801896, -0.0155495303, -0.00878210459, 0.00818716548, -0.0158199575, -0.002856381, -0.0278809834, 0.00575670647, 0.0282866228, 0.00585473608, 0.000733954716, -0.0123855388, 0.018686479, 0.0122976499, -0.00301187648, 0.0298821405, -0.0328568332, -0.00246595265, 0.0184971802, 0.00266032177, 0.0195112806, -0.00362371653, 0.00840350706, 0.0187405646, -0.00795054249, 0.00558430934, 0.000954098883, 0.00910661649, 0.00492514484, -0.0136835864, -0.00655446481, -0.0193760674, -0.0187676065, 0.0154278381, -0.0129196318, -0.00533416495, -0.00354934926, -0.00781532936, 0.00967451185, 0.00454316707, -0.00222256873, 0.00326033076, -0.0107088936, 0.00430654362, 0.00195383234, -0.00607783813, -0.0318832956, 0.00727447588]
12 Oct, 2021
Node.js Stream readable.readableObjectMode Property 12 Oct, 2021 The readable.readableObjectMode property in a Readable Stream that is used to check the objectMode of the stream. Syntax: readable.readableObjectMode Return Value: It returns the Boolean value. Below examples illustrate the use of readable.readableObjectMode property in Node.js: Example 1: // Node.js program to demonstrate the // readable.readableObjectMode Property // Accessing readable stream module const Readable = require('readable-stream').Readable; // Constructing readable stream and // setting the objectMode value const readable = Readable({objectMode: true}); // Defining ._read method readable._read = () => {}; // Instructions for reading data readable.on('readable', () => { let chunk; // Using while loop and calling // read method with parameter while (null !== (chunk = readable.read(4))) { // Displaying the chunk console.log(`read: ${chunk}`); } }); // Calling readableObjectMode // Property readable.readableObjectMode; console.log("objectMode is true!!"); Output: objectMode is true!! Example 2: // Node.js program to demonstrate the // readable.readableObjectMode Property // Accessing readable stream module const Readable = require('readable-stream').Readable; // Constructing readable stream and // setting the objectMode value const readable = Readable({objectMode: false}); // Defining ._read method readable._read = () => {}; // Instructions for reading data readable.on('readable', () => { let chunk; // Using while loop and calling // read method with parameter while (null !== (chunk = readable.read(4))) { // Displaying the chunk console.log(`read: ${chunk}`); } }); // Calling readableObjectMode // Property readable.readableObjectMode; console.log("objectMode is false!!"); Output: objectMode is false!! Reference: https://nodejs.org/api/stream.html#stream_readable_readableobjectmode Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream readable.readableObjectMode Property
https://www.geeksforgeeks.org/node-js-stream-readable-readableobjectmode-property?ref=asr9
CSS
Node.js Stream readable.readableObjectMode Property
Node.js Stream readable.destroyed Property, Node.js Readable Stream close Event, Node.js Stream readable.readableObjectMode Property, CSS pause-before Property, CSS, How to Play and Pause CSS Animations using CSS Custom Properties ?, Node.js Stream readable.resume() Method, Node.js Readable Stream resume Event, Node.js Stream readable.pause() Method, CSS Tutorial, p5.js | pause() Function
GeeksforGeeks
[-0.0296649709, -0.00963909458, -0.01022512, 0.0660658553, 0.0323862806, -0.0148729011, 7.59895483e-05, 0.020665789, -0.00224474375, 0.0244783163, 0.0241819359, 0.0491991267, -0.000547293108, -0.00929556321, 0.0102857426, -0.0103261583, -0.0366972685, -0.0204906538, -0.0269301906, 0.0131485071, -0.0132562816, 0.00540220411, -0.0191838872, -0.0111950915, -0.0326557159, 0.00509572, -0.00154926057, -0.00925514754, -0.0297188591, -0.00487343501, 0.00344036869, 0.00458379043, -0.0103598377, 0.00971319, -0.00554029038, -0.0254617594, 0.00328881061, 0.00713333441, -0.0159102324, -0.0187932048, -0.0490105189, -0.015061507, -0.0262565985, 0.00408196449, 0.00784060545, 0.00881057698, -0.0503307581, -0.00645974278, -0.0145495776, 0.00022481117, 0.0130137885, 0.00862197205, 0.00616336241, -0.0165568795, 0.0170418657, -0.0117272288, -0.00916084461, -0.00953805633, -0.00586698251, -0.0549650714, 0.0145765208, -0.0455078445, -0.00401123753, -0.028829718, -0.027751971, 0.0067022359, -0.0129262218, 0.033329308, 0.00845357403, 0.030338563, -0.0250171889, 0.0455617309, 0.021837838, 0.0330598727, 0.0212585498, 0.0442414917, 0.0201269146, 0.0162200835, -0.00992874, 0.0113298101, -0.0304463375, 0.0007022192, -0.0086085, 0.019682344, -0.00277519715, -0.0289644357, -0.00151221303, -0.0265799221, 0.0505463108, 0.00699861627, 0.00397419, 0.0251788516, 0.00596802123, 0.00234578247, 0.0197362322, 0.0255695339, -0.0348650962, -0.00935618673, -0.0204637107, 0.0536448285, 0.0135863414, 0.0317126885, -0.0120774964, -0.0132764895, 0.0255425908, -0.0365086608, 0.0496032797, 0.0166511834, -0.000901770662, 0.0254213437, 0.0184968244, -0.0111614121, 0.00130929356, 0.00943701714, -0.0308235493, 0.0486602522, -0.0151692815, 0.0163413305, 0.00116699736, 0.0158159286, -0.0335179158, 0.00730173243, 0.0182812735, 0.0201673303, -0.0297727454, 0.00782713387, -0.0178097598, 0.0211507734, 0.00657425355, 0.0207870342, -0.0268628299, -0.0298266336, -0.0302846748, -0.0199787244, 0.00179006951, 0.0388527587, 0.00645637512, 0.0443492681, -0.0219725557, -0.00394387823, -0.0151558099, -0.00901939068, 0.0185776539, 0.0347303785, 0.0218108948, 0.0372091979, -0.0076452638, -0.00216728076, -0.0104137249, 0.00558070606, 0.0179310068, 0.0194263794, -0.012596162, 0.00443223212, 0.0103598377, -0.00436487328, 0.00439181691, -0.00873648189, -0.0313354768, 0.00705250353, -0.00786081329, -0.0293416474, 0.00653046975, 0.0147381825, -0.00305305375, 0.0450228602, 0.0250306614, 0.0342723392, 0.00361718656, 0.00868259463, -0.0282908455, -0.0012528802, -0.0295033101, 0.0115723023, -0.00345215667, -0.012043817, 0.0571744516, -0.019682344, 0.0261757672, -0.0365356058, -0.0225518439, -0.00951111224, 0.0388527587, -0.000864723115, 0.00617683446, -0.0105417073, 0.0365625471, 0.0147112394, -0.0351345353, 0.0185776539, -0.0390683077, -0.000452148321, 0.0420859978, -0.00512603158, -0.003106941, 0.0292069297, -0.0495763384, -0.0264317319, 0.0106225386, 0.0191165283, -0.0134448875, -0.00426383456, 0.0125085944, 0.00402134145, -0.0113096023, -0.0184698794, 0.00030564217, -0.0656886473, 0.0493069, -0.0281830691, 0.0255560633, -0.02839862, 0.00524727814, -0.00969298184, 0.0151692815, 0.0169745069, 0.00108195643, -0.0476902798, -0.0330059864, 0.0029907464, -0.00144316989, -0.049253013, -0.0143070845, 0.0158563443, -0.0515971109, -0.0230503026, 0.00404491741, -0.00702556, 0.0148190139, 0.0013337112, 0.00819087308, 0.0362661667, -0.00879036915, -0.0302846748, 0.023104189, 0.0486063659, 0.00177491375, -0.0394994095, 0.0246669222, 0.0185237676, -0.0431906879, -0.0111209964, -0.00806289073, -0.0226730909, 0.000444991398, -0.00221780012, -0.0155464923, 0.0498727188, 0.00825823192, 0.0106966337, -0.000562869944, -0.0269571338, -0.0143609717, 0.0223767105, -0.0289105494, -0.00159304403, 0.00489027472, 0.016691599, -0.0111142602, -0.0174460206, 0.0416279584, 0.0590605065, -0.0295033101, -0.0243301261, -0.00354309147, 0.0262700692, 0.00704576727, -0.0542914793, -0.00375527283, 0.00291159935, 0.0784060583, -0.00917431712, -0.00940333772, 0.0217974223, -0.0141050071, 0.0212854929, -0.0110266935, -0.0302846748, -0.00428067427, -0.0248285849, -0.0113365455, 0.000426678132, 0.00202077464, 0.00919452496, -0.0246534497, -0.03289821, 0.0374247469, -0.028695, -0.0629404, 0.041062139, -0.0136469649, 0.00179006951, -0.0229290556, 0.0266203377, 0.0146034649, -0.0217839498, -0.0427057035, 0.0294224788, 0.00240808981, 0.00938986614, -0.00461073406, -0.0441337191, -0.0235487595, 0.00691778492, -0.0199383087, -0.00714680646, 0.0303924493, -0.00103059504, 0.0370744765, -0.0249094144, 0.0325748883, 0.00270110206, -0.0393108, -0.0329520963, 0.0184968244, 0.0081774015, -0.00857482, 0.00685716188, 0.0263374299, 0.0183216892, -0.0181465559, 0.0081774015, -0.0305271689, 0.0132091297, 0.00348246819, -0.00423352281, 0.00373843312, -0.0146169364, -0.0417087898, -0.0158698168, -0.0317935199, 0.0203424636, 0.000809572812, 0.043460127, 0.0141319502, -0.0196554, -0.0543453656, -0.0233332105, 0.00403144537, 0.0184294637, -0.00440528849, -0.0117204925, 0.0103261583, -0.00472524483, 0.0375864096, -0.0249767751, -0.0199787244, 0.0131417708, 0.0245995633, 0.0264452044, 0.000804941868, 0.0181869715, 0.0188875068, 0.0130676758, 0.0117204925, -0.005806359, -0.0130070522, -0.0449959151, -0.00964583084, 0.0475016758, -0.0240472183, -0.00742971478, 0.0149672041, 0.0110603729, -0.00528095756, -0.0234814, 0.00175133802, 0.0328712687, 0.0127915032, -0.0204367675, -0.0122795738, -0.00250576041, -0.0257850848, -0.00722090108, 0.00844010152, -0.0127645601, -0.0257311966, -0.0017185004, 0.0217435341, 0.0170822814, -0.0325479433, 0.0448881388, -0.0368050411, -0.0110199573, 0.0041257483, 0.00669213198, 0.0179714225, -0.0113230739, 0.0309043806, 0.0171361696, -0.0310660414, 0.0254348163, 0.00591413351, -0.0103328945, 0.0257177241, 0.0384216607, 0.00214707293, -0.0169745069, 0.00293517509, -0.0103261583, 0.0117676444, -0.022147689, 0.00807636231, -0.00841315836, -0.00124951231, 0.00891835243, -0.0114577925, -0.00289139175, 0.024639979, 0.0217300635, -0.014414859, -0.0151962247, -0.0184698794, 0.03788279, -0.030554112, 0.0335718021, 0.0190222245, 0.0525401384, 0.000630650087, -0.00616336241, 0.0216627046, -0.0017185004, -0.0119360425, 0.0132966973, -0.0368589275, -0.00544262, -0.0411699153, -0.0341376178, -0.00338479737, -0.0136671728, -0.00879036915, 0.010656218, -0.0151962247, -0.0212316047, -0.016327858, 0.000427099149, 0.0201538596, 0.0183216892, -0.00852766912, 0.0115251513, -0.013552662, 0.00274320156, 0.00418637134, 0.01494026, 0.00718722166, 0.0186180696, -0.0177154578, 0.0213797949, 0.00144401181, -0.00896550342, 0.00385294366, 0.00635870406, -0.0423015468, 0.0421937741, -0.00561438547, 0.0116463974, 0.0252731554, -0.0213932674, -0.0115588307, 0.0034336329, -0.0244917888, 0.0268628299, -0.00984117202, 0.0199383087, -0.019466795, -0.0270514358, -0.041304633, 0.00559081, 0.00921473186, -0.0304732807, -0.00890488, 0.00885772891, -0.0388797037, 0.0743645057, -0.00555713, -0.00272972975, 0.0158294011, -0.00255122804, 0.0262835417, 0.00711986236, 0.0312277041, -0.0534292795, 0.0108987112, 0.0293147042, 0.0162200835, -0.0404424369, 0.035269253, 0.0126365777, 0.00916758087, -0.0269436613, 0.000426678132, 0.000581393717, -0.020113444, -0.00570195215, -0.0124075562, 0.0214606263, 0.0178501755, -0.010440669, -0.0022363239, 0.0105080279, 0.0144013874, -0.0204098243, 0.0372361392, -0.0321707316, 0.000999441487, 0.0288836043, -0.0389605351, 0.0580366477, -0.0154252462, -0.016880203, -0.0333023667, -0.00978054944, 0.00236430624, 0.0197631754, 0.00412911596, -0.0295571964, -0.0137008522, -0.0244917888, 0.00771935889, 0.0345687196, 0.00514623942, -0.0108582955, -0.0115386229, -0.000262700691, 0.0115790386, -0.0201538596, -0.0229964145, -0.00789449271, -0.0159641188, 0.0226326752, 0.00237946212, 0.0340029, 0.0263778456, 0.0140376473, 0.0284255631, -0.00434803357, -0.00173449819, -0.0278058592, -0.00207297807, -0.00239293394, 0.00648331875, 0.00470166886, -0.0272535142, -0.0226461478, 0.0030648415, 0.0248959437, 0.0276172534, -0.0114577925, -0.0161931403, 0.0178771187, 0.00459726248, -0.0125355385, 0.0197631754, -0.0100432495, 0.0307157747, -0.00665845256, -0.0211507734, -0.00496100169, -0.0254213437, 0.00617009867, -0.00390683115, -0.000104932929, 0.0297458023, 0.00688073738, -0.00696493639, -0.0293955356, 0.0190761127, 0.0124547072, -0.00483301934, -0.00368454563, -0.0223632399, -0.01795795, 0.0338681825, -0.0117474366, -0.0180522539, -0.00129245373, 0.0287758298, -0.0425440408, -0.00320629566, 0.00339153339, -0.000201024974, -0.0119562494, 0.0118013239, 0.0055503943, -0.0337604061, 0.0153848305, -0.0100634573, -0.00333596207, -0.0186315421, -0.00714680646, 0.0236430634, 0.0208409224, -0.00626440113, -0.00126803608, -0.0131552424, -0.00130760961, -0.00928209163, 0.00276172534, -0.0110738445, -0.0124412356, 0.0028543442, 0.0236834791, 0.0203694087, 0.0447264798, -0.00657425355, -0.0136469649, -0.0261353515, -0.0051361355, -0.0116396621, 0.0227808654, -0.0068167462, 0.0112287709, 0.013599813, 0.0250306614, 0.00622735359, 0.000251754827, -0.00434129732, 0.0445917584, -0.00797532406, -0.0180926695, 0.0104137249, -0.0123132532, -0.00131939747, -0.00553355459, 0.00917431712, -0.00714680646, -0.00545272371, -0.0347573236, 0.0240472183, -0.00937639456, -0.00817066524, -0.00480607571, -0.0167050697, -0.025812028, 0.00781366229, 0.038475547, -0.012784767, -0.0205714852, -0.0212854929, 0.000369843852, 0.0126500493, 0.00880384166, 0.0169610344, 0.0435948446, -0.00323492335, 0.0284255631, -0.0457233936, 0.0208274499, 0.00312041282, -0.0212181341, -0.0161527246, -0.0123806121, 0.0248151124, 0.0294763651, 0.00883752108, 0.00835253485, 0.00376537675, -0.00251249643, 0.0140915345, -0.0243705418, -0.01494026, -0.0128251826, 0.00726805255, -0.023131134, -0.0126769925, -0.0110805808, 0.0326287746, 0.0390952528, 0.0164625775, 0.0544800833, -0.00943701714, -0.00683021825, -0.00593770947, 0.00913390145, 0.00800226722, -0.0102924788, -0.0218782537, 0.0240068026, -0.00074137171, 0.00022796863, -0.00223800796, -0.000703061174, 0.0341376178, 0.0317126885, -0.000566658855, -0.0105147641, -0.0208005067, -0.00821108092, -0.0172304716, -0.0190761127, -0.0215953439, -0.0238047242, 0.0341376178, 0.0430559702, 0.0108919749, -0.00754422508, 0.000399523968, -0.0204906538, 0.000262279704, -0.0455078445, -0.0365894921, 0.0125557464, -0.0230772458, 0.0137816826, -0.0181196127, 0.0025343881, 0.00986138, 0.0250980202, 0.00054687215, -0.0051361355, -0.00519002276, 0.00627787318, -0.00913390145, -0.0118888905, -0.00404491741, -0.018173499, -0.00612631487, -0.00351951574, 0.000537610264, -0.00430425, 0.0134920385, -0.0209486969, 0.0202481616, -0.0274690632, -0.0129599012, -0.028695, -0.0100297779, -0.00757116871, 0.0142936129, 0.00749707362, 0.00868933089, -0.0159506481, -0.00931577105, -0.010750521, -0.00119394099, 0.0299613513, -0.00846704561, 0.0183486342, 0.0134583591, 0.0030160062, 0.000379316247, -0.0105012925, 0.0024434533, 0.0203828793, -0.0171631128, -0.00717375, 0.0101106092, 0.0112826582, -0.0215414576, -0.0228212811, -0.0139029296, -0.0128790699, -0.0121717993, -0.0431637466, -0.00407859683, 0.0228751693, 0.0304463375, 0.011949514, 0.0133707924, 0.0553961694, 0.0128251826, -0.0015534705, -0.00978728477, 0.00496100169, 0.0391491391, -0.00157788815, -0.0203155205, -0.0333023667, 0.000749791565, 0.0154117746, -0.009578472, 0.0192243028, 0.0243301261, -0.0380175076, 0.00560764968, 0.0296919141, -0.0309582669, -0.0606232397, 0.00623072172, -0.000154294568, 0.00366433803, 0.0436217897, -0.0172978304, -0.0340567864, 0.000792312, -0.0231176615, 0.00659446139, -0.000759895425, 0.0119629856, 0.0218917243, 0.0177828167, -0.0263239574, 0.0277250279, -0.0402538292, 0.0639642552, -0.00692452118, -0.0166511834, 0.0528095774, -0.0031524084, -0.0272265691, 0.0138490424, -0.0265799221, 0.02140674, 0.0110940523, 0.0159371756, -0.0019837271, -0.0246938653, -0.032682661, -0.0158967599, -0.005806359, -0.00957173575, -0.0108919749, -0.00654731, -0.00695146481, -0.0106898975, -0.0116935493, 0.011781116, -0.0307427179, 0.0398496762, 0.038313888, 0.0249094144, -0.0420051701, -0.0086152358, -0.0357811823, -0.0309313238, 0.035296198, -0.0137345316, -0.0148190139, -0.00106006465, 0.00511929579, 0.0278597455, 0.0297458023, -0.0381791666, 0.0102318553, -0.0456964485, -0.0178367049, -0.00376874465, 0.0109054474, 0.0266338103, 0.0152635844, -0.00964583084, 0.0180118382, 0.000785155164, 0.00123940839, 0.00340668927, -0.00754422508, 0.0472591817, 0.0320090689, 0.0144687463, 0.0174999088, 0.0160045344, -0.0149941472, 0.0173517186, 0.00994894747, -0.00546956342, -0.0177154578, -0.0023727261, -0.030123014, -0.0182408597, 0.0210834146, -0.0323593393, -0.00324839517, 0.0296380278, -0.0140511198, -0.0165838245, 0.0152635844, -0.0126500493, -0.0385833234, -0.0104069896, 0.0167185422, -0.0529712401, 0.00630481681, -0.00632165652, -0.00669886777, 0.0250845496, 0.0122324219, -0.0434870683, -0.0211911891, 0.0351884216, 0.0210834146, 0.0367242098, 0.02140674, -0.0270379651, -0.0163143873, 0.0369667038, -0.00624756142, -0.0132966973, 0.00668876385, 0.0233332105, -0.0264452044, -0.00959194358, 0.0108313523, 0.0149537325, -0.0296649709, 0.0170014501, 0.0648803338, 0.0179444794, -0.030338563, -0.00572889624, 0.0125490101, 0.0181869715, -0.0150884502, 0.00435476936, -0.0107303131, 0.024734281, -0.0371014215, 0.0254482888, 0.00118215312, 0.0166107677, -0.0117474366, -0.00351278, 0.00521359872, 0.00240977365, -0.0151962247, 0.0213124361, -0.0121044395, -0.00618020259, 0.00787428487, 0.0159371756, 0.0437834486, -0.0482291542, -0.000425625651, 0.00573899969, 0.00571542419, -0.0148055423, -0.0449689701, -0.040657986, 0.0229694713, -0.0067022359, 0.0241415203, 0.0317126885, 0.0123738768, 0.0193186048, 0.000947238121, -0.0371553078, -0.00660119718, 0.0112287709, 0.0098277, -0.0103665739, -0.0196958166, 0.0471514091, -0.00699188, 0.00862870738, -0.00444570417, -0.05739, -0.0353231393, -0.0358889587, -0.00537862862, -0.00595454918, 0.024397485, -0.0029031795, -0.0193590205, 0.00512939971, 0.0249767751, -0.0277250279, -0.0369397588, -0.00466462132, 0.0121650631, -0.0185372382, 0.000800310925, 0.0192377735, 0.00317093218, -0.0201269146, -0.022174634, 0.0225114301, -0.00754422508, -0.00291328342, -0.0183486342, -0.00742971478, -0.0261353515, -0.002394618, -0.0241011046, 0.0092618838, 0.0673052669, 0.00246702903, 0.00487006688, -0.0304463375, -0.0191165283, 0.021716591, -0.0132023944, 0.00544935558, -0.0413854644, -0.0109862778, -0.0172439441, 0.00392030273, -0.00207802979, 0.0258659143, -0.0231984928, -0.00963909458, -0.0195476264, 0.0164625775, -0.0226596203, -0.00117289124, 0.0157351, -0.00261521921, 0.0188605636, 0.0131687149, 0.0328173786, -0.026458675, 0.000176291534, -0.0364547744, -0.0203963518, 0.00110721611, -0.00404154928, 0.0400921665, -0.0263239574, -0.00600170065, -0.0195610989, -0.012596162, 0.0134112071, -0.0365894921, 0.00761158438, -0.0237777811, -0.0158967599, -0.00534831686, 0.0157351, -0.0317126885, 0.0151692815, 0.00880384166, 0.0193051342, -0.00757790497, -0.0205175988, 0.0171631128, -0.0558811538, -0.00897897501, 0.0125557464, -0.0240202751, -0.00523380609, 0.0057827835, -0.0373978019, -0.000604969391, -0.0236969497, -0.0105888592, 0.00447601592, 0.00434803357, -0.00250576041, -0.0285602808, -0.0513276756, 4.89932609e-05, -0.0229290556, 0.0136604365, 0.00379568827, -0.00591076585, 0.0174999088, -0.0272535142, 0.0157485697, -0.0131821865, -0.0445648171, -0.0208005067, 0.0222150497, 0.0017025026, 0.00158546609, -0.00402470957, -0.001673033, 0.0189818088, 0.00959868, -0.0226865634, -0.0463969857, 0.00337300962, 0.0161661971, -0.0111479396, -0.0120977042, -0.00214370503, -0.0148729011, -0.035080649, -0.00673254766, 0.00544262, 0.0115318876, 0.0312815905, 0.0296919141, -0.0152231688, 0.012784767, -0.00743645057, -0.00405838899, 0.0170822814, 0.00505530462, 0.0235757045, -0.00741624273, 0.0345687196, -0.0289913807, -0.0146977678, -0.0236969497, 0.00117373327, -0.00641595945, -0.00819760934, -0.00844010152, -0.00651699817, -0.0100701936, -0.0199787244, 0.00430088211, -0.0216761753, 0.0358350687, 0.00967277493, 0.0038024243, -0.00591750164, -0.00138928252, 0.00623409, 0.0462892093, 0.00107522053, 0.00245524105, -0.00897897501, -0.014751655, -0.0364278294, -0.00703229569, 0.00446254387, 0.0391760841, -0.0401460566, 0.0134448875, 0.0134516228, -0.00338648143, 0.0057086884, -0.0200056694, 0.0130070522, -0.0107842, 0.0176346265, -0.00470166886, -0.0242897104, -0.00159472798, 0.00732194, -0.0195745695, 0.00885772891, -0.000711902045, 0.0311199296, -0.0263104849, -0.00637554377, -0.0072074295, -0.00399439782, -0.00734214764, 0.00841989461, -0.000323955435, -0.00553692225, 0.0158832893, 0.0297727454, -0.00821781717, 0.00278193294, -0.0196554, 0.0308235493, 0.000924504362, -0.0371553078, 0.0185372382, 0.0252192672, 0.00136065495, 0.000161556716, 0.00604548398, -0.0125692179, -0.0237238947, 0.0340837315, -0.0173651893, -0.0126635209, -0.00131266157, -0.0038933591, -0.00568511244, 0.0140107041, -0.0116059827, -0.00922820438, 0.00577941537, 0.00971992593, -0.00212686532, 0.0128453905, 0.00308168121, 0.0135930777, -0.0122189503, -0.00191973592, -0.0235891752, 0.023104189, -0.033140704, 0.0265260339, 0.0150210913, -0.0112085631, 0.0106494818, 0.0109323906, 0.0257581398, -0.0106898975, -0.000906822621, 0.0260410495, 0.0243301261, 0.00702556, -0.00913390145, 0.0193320774, -0.0424901545, 0.0189683381, 0.0239529144, 0.0126298415, -0.0359159, -0.0177154578, -0.00860176422, 0.0151692815, 0.00305978954, 0.0241145771, -0.0199652538, 0.00771935889, -0.015492605, 0.0185372382, 0.0236834791, 0.00625766534, 0.0282908455, -0.0135459257, 0.0105147641, 0.0187932048, 0.0354309157, 0.0168397892, -0.00613978691, -5.93076293e-05, -0.0025343881, 0.00561101735, -0.0174190775, 0.00918105245, 0.0173247736, -0.0030648415, 0.0290722102, 0.00342858094, -0.011087317, 0.00410890859, 0.0421668291, 0.00229357928, -0.0230368301, -0.00805615447, -0.0142531972, 0.0111277318, 0.00285266014, 0.0282369573, -0.00367107382, 0.0183486342, -0.00512266345, -0.0136739081, -0.000832727528, -0.00327533879, 0.00154673459, -0.00914737303, 0.000970813795, 0.0187527891, 0.0123536689, 0.0251114927, -0.00658772513, 0.000462673197, 0.0119225699, 0.0114510562, 0.0115049435, 0.0208274499, -0.0156407952, 0.00678306678, 0.0285063945, 0.00510919187, -0.0150884502, -0.00126887811, -0.00367780984, -0.0302577317, -0.0268358868, -0.043675676, 0.020760091, -0.000969129847, 0.0193186048, -0.00703903148, 0.0239529144, -0.00531126931, -0.0167320147, 0.00728152459, -0.00809657, 0.014078063, -0.00473534875, -0.00674601924, 0.0102116475, 0.0154791335, -0.0167454854, -0.0079685878, 0.00429414585, 0.00745665841, -0.00801574, -0.000269436627, 0.0120774964, 0.00503846491, -0.0136537, 0.0218513086, 0.035484802, -0.0188470911, 0.0243301261, -0.0166377109, -0.0108852396, 0.00120825483, -0.000541399175, -0.00501825707, -0.00804268289, -0.00788102113, -0.00470503699, 0.0155734364, 0.0134246796, -0.0147381825, -0.00471177278, 0.00136318093, 0.00686389767, 0.0172978304, 0.00748360204, -0.00827844, 0.00597475702, 0.0166242383, -0.00581983104, 0.00385631155, -0.00395061448, 0.0302307885, 0.0104204612, 0.0157620423, -0.00362729048, 0.022147689, -0.0146842953, 0.0386102684, 0.0498457737, 0.0107235769, -0.00945049, -0.0188470911, 0.0116868131, -0.000609179377, -0.000467725127, -0.00976034161, 0.00732194, 0.0188470911, -0.0300960708, -0.0128049748, -0.0142262531, 0.0178097598, -0.00606906, -0.00310188904, -0.0199248381, 0.0182812735, -0.0110469013, -0.000314904057, -0.000145137921, -0.0122863101, -0.0135055101, -0.00503172865, -0.0186450146, 0.0297458023, -0.0270244926, -0.0166377109, -0.0143879149, -0.0131485071, 0.0104339328, -0.000592339551, -0.0104069896, 0.00270952191, -0.00781366229, -0.00493069, -9.64998799e-06, -0.00023365207, 0.0332484767, 0.0010002834, -0.00682011433, -0.0208948087, 0.0371553078, -0.000758211478, 0.0199787244, -0.0314432532, 0.00763852801, -0.00678980257, -0.0244917888, -0.0165164638, 0.000122825208, -0.0366164371, 0.0410082527, 0.0115723023, -0.0170957539, -0.00670560356, -0.0387988724, -0.00494079385, -0.0296649709, -0.00187090051, -0.0251114927, -0.0429751389, 0.00668539619, 0.0128992777, 0.0333023667, 0.00559081, 0.00288297189, 0.000382263184, 0.0115723023, -0.00337974564, 0.0149267884, -0.00813698582, -0.0144956904, -0.00521696638, 0.0135391895, -0.00930903479, 0.000734635745, -0.00295201503, -0.00146253558, 0.0257446691, -0.0394724645, -0.0168128442, 0.0176346265, -0.0293416474, -0.00168061093, -0.0226461478, -0.00943028182, 0.0109930141, 0.00557397, -0.0265799221, 0.0272669848, -0.0149672041, 0.00924167596, 0.0169610344, -0.000606653397, 0.000823044684, -0.00973339751, -0.00243671751, 0.0101644965, -0.0214471538, 0.0349998176, -0.00849399, -0.00281392876, -0.0233736262, 0.0094437534, -0.0181465559, -0.0203828793, 0.00434803357, -0.0217974223, -0.00502836099, -0.0234544575, -0.0329520963, 0.0109256543, -0.0266203377, -0.00395398214, 0.00134886708, 0.025071077, -0.00615662662, -0.0178367049, -0.0180926695, 0.00705923932, 0.0162066128, -0.00871627405, -0.0183890499, -0.00853440445, 0.0112220347, -0.00122846256, 0.0271187946, 0.00400113361, -0.0117945876, 0.0170553382, 0.00932250731, -0.0204098243, 0.0135189826, -0.0102520632, -0.00881057698, 0.0237777811, 0.00520686246, 0.0136604365, -0.0023979859, -0.0113567533, -0.00120488682, 0.00838621426, -0.0204098243, 0.0112220347, 0.00254280795, -0.027199626, 0.000651278824, 0.00934271421, 0.00345552457, 0.0238451399, 0.0219994988, -0.0184833519, 0.00723437313, -0.0247746967, 0.00463430956, 0.0141588943, -0.00743645057, -0.00753748929, 0.0142801404, 0.0172304716, 0.00725458097, -0.0108852396, -0.00258659152, -0.000633597, -0.0116733415, 0.000608337345, 0.00415605959, 0.0318204649, -0.00559417764, -0.0227943379, 0.038071394, -0.0256368946, -0.0292338729, 0.0246669222, -0.00511929579, 0.00220938027, 0.00577604724, 7.14375392e-06, -0.0137143238, 0.0158024579, 0.0440259427, 0.00266910647, 0.0124075562, -0.00117625925, 0.04090048, -0.00557397, 0.0228212811, -0.00974687, 0.0145361051, -0.0323323943, 0.0152096972, 0.00655067759, 0.00247039692, -0.000618020247, 0.0145630492, 0.0170688089, 0.036131449, 0.016691599, -0.0193051342, 0.0163413305, -0.0434870683, 0.0168263167, 0.00784060545, -0.0192781892, -0.015586908, -0.0043311934, -0.00157115224, -0.0174999088, -0.0039842939, -0.0345417745, 0.0177558735, 0.00835253485, 0.0345148295, -0.0134987747, -0.0130946198, 0.00617009867, -0.00487006688, 0.0220668595, -0.0139433453, 0.0155734364, 0.00486669876, -0.015586908, -0.0247746967, -0.00800900348, -0.00271794177, -0.00429751398, -0.0063486, -0.0432176329, -5.06246142e-05, -0.0139164012, 0.0167724285, 0.0109525984, -0.00371148926, -0.0107303131, 0.00535168499, 0.0079214368, -0.0236161202, 0.00359361083, -0.00452990318, 0.0239663869, -0.00968624651, -0.00514960708, 0.00626776926, -0.00206287415, 0.0388258174, -0.00712659862, -0.00888467208, -0.00233567855, -0.0171900559, 0.00961215142, 0.0046983012, 0.00604885211, -0.00339321746, -0.0158563443, 0.00841315836, -0.0227404498, -0.00196351926, -0.000193657572, 0.00241819373, -0.0152905276, 0.00493069, 0.0119427778, -0.00580299133, 0.0232793242, 0.000314272562, 0.017526852, 0.00832559168, 0.00884425733, 0.00288128783, 0.0212585498, -0.0213797949, 0.00308504933, 0.00425373064, 0.0121246474, -0.0118821552, 0.00182543311, 0.024855528, -0.0117474366, 0.0201269146, 0.00140612235, 0.0246534497, -0.00777324615, 0.00277688121, 0.0125490101, 0.00230536703, 0.0183890499, -0.0204771832, -0.015061507, 0.0040516532, -0.000225232172, 0.0247612242, -0.0143609717, -0.0019483635, 0.0110536376, -0.00371485739, 0.00726805255, 0.0228616968, 0.0145899924, 0.00959868, -0.0340029, 0.026121879, -0.00378558435, -0.0245591477, 0.0140511198, 0.0121717993, 0.0325748883, 0.00628460897, 0.00126803608, -0.00120657089, 0.0139433453, 0.00499131344, 0.0304193944, -0.0202346891, 0.0144956904, -0.02988052, 0.000428993604, 0.00201740675, -0.0184833519, -0.00664161239, 0.00549987471, 0.00477239583, -0.0254887044, 0.0208678655, -0.00919452496, -0.0105214994, 0.0057086884, -0.0227135066, -0.013599813, -0.00370475347, 0.0116059827, -8.82510139e-05, -0.00300085032, 0.0101644965, -0.0107639926, -0.00052287546, 0.00734214764, -0.0213797949, 0.00289139175, -0.032682661, -0.00753748929, -0.00271794177, 0.000978391734, -0.0244648438, -0.0207870342, 0.000306063157, -0.0137008522, -0.000144716934, -0.0170688089, 0.00894529559, -0.0013337112, 0.00417626742, 0.013552662, 0.00643953495, 0.00453327084, 0.0163009148, 0.00550661096, 0.00679990649, 0.00305978954, 0.00247376482, -0.00378558435, -0.00759811234, -0.00945049, 0.00203256239, 0.00810330641, -0.00149789918, 0.0147651266, 0.00880384166, 0.0038226319, -0.015061507, -0.00040162896, 0.029045267, 0.0131148277, 0.00632165652, -0.0104271974, -0.00573563203, -0.000425625651, -0.0007426347, 0.00892508775, 0.0158698168, 0.00105417077, 0.00914737303, 0.0125153307, 0.00557733793, 0.000385631167, 0.0144418022, 0.0101847043, -0.0187932048, -0.00889140833, -0.00038394719, -0.00606569182, -0.0234814, 0.00106595864, 0.019682344, -0.00114594761, -0.0294763651, -0.00202751043, -0.0157755129, -0.0223093517, 0.00811004173, -0.00141706818, 0.0136200208, 0.0145899924, -0.0177154578, 0.00723437313, -0.0184698794, 0.02045024, -0.00203256239, 0.0424362682, -0.00895203184, -0.0135324541, -0.00246871309, -0.0031103089, -0.0191973597, -0.00699188, 0.0102049122, -0.0256773103, 0.00740277115, 0.00916758087, -0.0141588943, -0.019035697, -0.00755769713, -0.0158159286, 0.00425373064, 0.018941395, 0.0103867818, 0.00581646292, 0.014078063, -0.0238316692, 0.00697167264, -0.00967277493, -0.00716701383, -0.0160988383, 0.0227673948, -0.0347034372, 0.00121835875, 0.0120707601, -0.00437834486, 0.00411901204, 0.00166461314, -0.0209352244, 0.00998936221, -0.0308774356, 0.0190491695, -0.00877689756, 0.00241819373, -0.00127898192, -0.0161796696, 0.0105888592, 0.00774630252, 0.0172439441, -0.012690465, -0.00589055801, 0.0217031185, -0.0093966024, 0.0108987112, 0.00359697873, -0.0147920698, 0.0143205561, -0.00473871641, 0.00829864759, -0.00810330641, 0.0108246161, 0.00842663, -0.0101375524, -0.0235757045, 0.00616673054, 0.0156273246, -0.0151962247, 0.00328207482, -0.00429077819, -0.0148324855, -0.0121313836, -0.00177322968, -0.00441202475, -0.00916084461, 0.0191838872, -0.0187123735, 0.00386641547, -0.00699188, -0.0366703235, -0.00345215667, -0.0259871613, 0.0260949358, 0.00159725395, -0.00951111224, -0.0219051968, -0.0153578874, 0.00786755, 0.00569858449, 0.0105619151, 0.0256503653, 0.026027577, -0.000843673421, -0.0268763024, 0.0135257179, -0.000895034755, 0.0402807742, 0.0117676444, -0.00973339751, 0.0306888297, -0.0200864989, 0.000346478657, 0.00657088542, -0.00753748929, 0.00498794531, -7.67789097e-05, 0.000263753172, -0.00821108092, 0.0114645278, -0.00609600358, -0.0110805808, -0.0125153307, 0.0167589579, -0.000797364, 0.00304463366, -0.0229425281, 0.00568848057, 0.00535168499, 0.00722763734, -0.00627787318, 0.00460063, -0.0109930141, 0.0256368946, 0.00761158438, -0.0141184786, -1.89447619e-05, 0.0141723659, -0.0163009148, -0.0229694713, 0.00224642782, 0.0178097598, -0.00200561876, 0.00731520401, -5.24927782e-05, -0.00331575423, 0.00191805186, -0.00788775645, -0.00304631772, -0.0291799847, 0.00559081, -0.017621154, 0.0167993736, -0.00159557, -0.00597138889, -0.015304, 0.0149267884, 0.00220601237, 0.00544935558, 0.0243570693, 0.00648668641, -0.0189952813, 0.0219725557, 0.0046309419, -0.00461073406, 0.000361423969, -0.0109391268, -0.0098815877, 0.0257446691, -0.0147785982, -0.00501152081, -0.0106966337, -0.00612631487, 0.0134448875, -0.00511256, -0.00738256332, -0.00284929224, 0.0165434089, 0.0014600096, 0.0226596203, 0.0134516228, 0.000198393755, 0.0149267884, -0.00584340654, 0.0226461478, 0.00974013377, 0.0125759542, -0.0309582669, 0.0145361051, -0.00559081, 0.0183621049, 0.00657088542, -0.0251923241, -0.0131013552, -0.00721416529, 0.00593434134, 0.0202751048, 0.0164895207, 0.00687063392, -0.0201403871, -0.00813698582, 0.0130137885, 0.00338142947, -0.00408870075, -0.0201808028, -0.0179714225, -0.00501152081, 0.02097564, 0.0155464923, -0.00245524105, -0.0114173768, 0.000120509736, -0.00099270558, 0.0122458944, 0.0119629856, -0.00989505928, -0.00701882364, 0.000292801822, -0.0038933591, 0.00300253439, 0.00749033783, -0.00499468111, -0.00561438547, -0.0334909707, 0.00567837665, 0.0087499544, 0.0106696896, 0.0067931707, 0.0113365455, -0.022268936, -0.0260141045, 0.00263879495, 0.0115386229, -0.00449285563, -0.00838621426, 0.0129194856, -0.0189683381, -0.00279372092, -0.0150749786, -0.0156812109, -0.0123536689, 0.0158967599, -0.00352961966, -0.0207735635, -0.0100499857, -0.00813025, 0.0146169364, -0.00509235216, -0.0319282375, -0.00366770593, -0.0111075249, 0.016691599, 0.019129999, 0.010272271, -0.0135391895, -0.00510245608, -0.00409543654, -0.0131417708, -0.00788102113, -0.00315746036, -0.000415732269, -0.0140915345, 0.00961215142, 0.00860176422, -0.0183216892, -0.00173618214, 0.0152231688, 0.00377211254, -0.01795795, -0.0142801404, 0.00903286226, -0.0138220983, 0.0248689987, -0.00485322718, 0.00352625176, 0.0140915345, 0.0429481976, -0.0059882286, 0.000451306318, -0.0142666688, -0.0196149852, 0.0182139147, -0.0184429362, -0.0151423374, -0.0046545174, 0.00432109, 0.0423284918, -0.0061229472, -0.00571542419, -0.000492142804, 0.00828517601, 0.00217233272, 0.00058728765, -0.00427057035, 0.0260006338, -0.0133707924, -0.0104810847, 0.0207466185, 0.0143609717, 0.00566827273, 0.00198709499, -0.0246669222, 0.00581983104, 0.0145630492, -0.0219994988, -0.000477829, -0.00943028182, 0.00895203184, 0.00526074972, 0.0348381549, 0.0187932048, 0.0050687762, -0.0205580145, 0.0284255631, -0.0064024874, 0.00468482915, -0.00640585553, -0.00414595613, -0.0133438483, 0.015586908, -0.0153174717, 0.0167320147, 0.0197497047, 0.0018574287, -0.0216627046, -0.00680327462, -0.0225653164, -0.0128049748, -0.0166107677, 0.0208274499, 0.0472591817, 0.00705923932, 0.016664654, 0.0159775913, 0.00414595613, 6.28203054e-07, -0.0128588621, 0.00198204303, 0.00555376243, -0.0229021125, 0.0349998176, -0.0309043806, -0.0126500493, -0.0107235769, -0.00445580808, -0.0172843598, 0.000113879069, -0.0013564449, 0.00728152459, -0.0118619474, -0.0152096972, 0.00240303786, -0.0142397247, 0.0205310695, -0.00967277493, 0.000541399175, -0.0291799847, -0.000842410431, 0.0178905912, -0.00315746036, 0.00487006688, 0.0134179434, 0.00106174871, -0.00865565147, 0.00562112126, 0.0151423374, -0.0178367049, -0.0131552424, -0.0197631754, 0.016018007, -0.0145361051, 0.0143744433, -0.00625092955, 0.00803594664, -0.00872301, -0.0270649083, 0.0216761753, 0.0157351, -0.0264182594, -0.00355993118, -0.0188336186, -0.00695146481, -0.0192647185, 0.000295117294, 0.00584340654, -0.00629808102, 0.0337065198, -0.00238451408, -0.000526243413, -0.0148998452, 0.0188066754, -0.0234948732, 0.00343700079, 0.0192781892, 0.0172843598, -0.000587708608, 0.0144418022, 0.0119899297, 0.0265664496, 0.000922820414, -0.0147920698, -0.0192916617, 0.0091877887, 0.00575584, -0.00237441016, -0.0125288023, 0.00273983367, -0.0121785346, 0.0168128442, -0.0102318553, -0.00215212489, -0.00916758087, -0.0110940523, -0.010103873, -0.00177996559, 0.015304, -0.0059410776, -0.0176750422, -0.0079214368, 0.00283582043, 0.0311468728, -0.00286108, -0.00812351424, 0.0107437847, -0.000377842749, -0.0134650953, -0.0107707288, -0.00660456484, 0.0244109575, -0.0185102951, 0.0149133168, -0.0151558099, 0.0211777184, 0.0117474366, 0.0268493593, -0.00160904182, 0.0115049435, 0.0146573521, 0.0033629057, 0.00218580454, 0.00946396124, 0.00628124131, 0.00282066455, -0.00738929911, 0.000372369832, 0.00341510912, -0.0139298728, 0.0130878836, -0.00144906377, 0.00260679936, 0.0140107041, -0.00831211917, -0.0121717993, -0.0122863101, 0.00345889246, -0.0303116199, 0.0116463974, 0.00723437313, -0.0227269791, -0.016233556, 0.0103665739, -0.0137143238, -0.0120101376, 0.00448612, -0.00407859683, -0.0249094144, 0.0170418657, 0.00322145154, -0.00686053, -0.0142801404, -0.0276441965, 0.00998936221, -0.0118956268, 0.0248689987, -0.00054813514, 0.0136402287, -0.011949514, -0.0187932048, -0.00517991884, 0.0148594296, 0.0345687196, 0.0193455499, -0.0129262218, -0.00235588639, 0.00123351451, -0.0133573199, 0.0226730909, 0.00627787318, -0.000212602332, -0.0141723659, 0.0226596203, 0.0294763651, -0.0154252462, 0.0133169051, -0.00707944715, -0.0168936756, -0.0216896478, -0.00910695735, 0.0381791666, -0.0218782537, 0.010797672, -0.00307831331, 0.00775977457, 0.0289644357, 0.0166242383, 0.0274960063, 0.00956499949, 0.00339658535, -0.0224036537, 0.0122661022, 0.00604548398, 0.0126028974, -0.00860176422, 0.0120505523, 0.000980075682, 0.0180657245, -0.00345215667, -0.00713333441, -0.00559417764, -0.0132293375, 0.00285097607, -0.00353635568, 0.0150480354, -0.0253944, -0.00481954729, -0.0111950915, 0.00333764614, 0.016233556, -0.012784767, -0.00443896838, 0.0186450146, 0.0065607815, 0.0115049435, -0.00498457719, -0.0184833519, -0.0104541406, -0.0109525984, -0.0334640294, 0.0169745069, 0.0102453269, 0.0110334298, -0.00168734684, -0.00897224, 0.0274286475, 0.00304294983, 0.00805615447, -0.00775977457, -0.0104204612, -0.00244850526, -0.013384264, 0.0131552424, -0.0116666052, -0.0232793242, -0.0120370807, -0.0102655347, -0.0132966973, -0.0112893945, 0.0211777184, -0.00132865936, 0.00382936792, 0.0223362949, -0.000624756154, -0.0290183239, -0.00283076847, 0.00831885543, -0.00058728765, 0.00349257211, -0.0270918515, 0.0133977355, 0.0172843598, 0.0102183837, -1.60372674e-05, 0.0177154578, 0.00820434466, -0.00447601592, 0.00286444812, 0.00989505928, 0.0162200835, 0.0180657245, 0.000532137288, 0.00844683778, 0.00946396124, 0.00797532406, -0.00225316361, -0.0103935171, -0.00633849623, -0.00188437232, 0.00225316361, -0.0144687463, -0.00353972358, -0.00358013902, -0.0169071481, -0.00854787696, -0.00221780012, -0.0151153943, 0.000555713, -0.0133505845, -0.0217570066, 0.016691599, -0.0133236405, 0.000323744927, -0.014078063, 0.00518328696, 0.0234005693, 0.000539294211, -0.0112355072, 0.0161123089, 0.0143879149, 0.00189616019, 0.00709965499, 0.00625766534, 0.01795795, -0.0335179158, -0.0141858375, -0.0175672676, 0.00620377809, 0.00741624273, -0.0232793242, 5.46766896e-05, -0.00915410928, -0.0062206178, -0.0145899924, 0.000146927152, -0.00110553217, 0.00499131344, -0.0187797323, -0.00344373682, 0.00945722498, -0.00269941799, 0.0140511198, 0.00951784849, 0.0353500843, -0.0325479433, -0.00327028683, -0.0119899297, 0.00262700696, 0.0117002847, 0.0249228869, 0.0107572572, 0.0120168729, -0.0149133168, -0.00513276737, -0.0285063945, -0.0122930454, 0.00763179222, -0.0109930141, 0.00505193649, -0.0230368301, 0.014078063, -0.00591750164, 0.0140645914, -0.00736909127, -0.00102470117, -0.0309852101, -0.0198170636, 0.00784060545, 0.00563122518, -0.00309346919, 0.00954479165, -0.0023693582, 0.0239259712, 0.0200056694, 0.0121381199, 0.00912716519, -0.0165434089, -0.00100280938, -0.000726636848, 0.0014953732, 0.00802921131, -0.00726131676, 0.0152096972, 0.00521359872, -0.000240808979, 0.00941007398, 0.00240977365, -0.0138355698, -0.0146842953, 0.00643279916, -0.00559417764, 0.0102992142, -0.0241011046, 0.000121772719, 0.000628545124, 0.0217974223, -0.0369936489, -0.00538199628, 0.0169745069, -0.00358687504, 0.0019483635, 0.0084064221, -0.00157704623, 0.00835253485, 0.0237508379, 0.00300421822, 0.0175133795, -0.0158294011, -0.00244513736, 0.00170671253, -0.00427730614, 0.0128521267, 0.00726805255, 0.0194129087, -0.0112759219, 0.0018742684, 0.0133303767, 0.0105417073, -0.0238990281, 0.0228078086, 0.0276172534, 0.00550661096, -0.0226865634, 0.000464778161, 0.0166511834, -0.00676959474, -0.00726131676, 0.00185406068, -0.0432445779, 0.00280550867, 0.0483908169, 0.00496773748, 0.00252765231, -0.0138355698, -0.023131134, 0.012043817, -0.00592423743, -0.0145899924, -0.00880384166, -0.00413922, -0.0259871613, 0.0117676444, -0.0225922596, -0.00438844878, 0.0045635826, -0.0169745069, 0.0297727454, 0.012784767, -0.00925514754, 0.00219927635, -0.0112489788, -0.0053180051, -0.0115318876, 0.0226192046, 0.00217401679, -0.00813698582, 0.00355993118, -0.017217, 0.000574236794, 0.0176750422, -0.0130272601, 0.0024889207, 0.0129868444, 0.0157081541, -0.00524054235, 0.0134448875, -0.0103059504, 0.00523043843, -0.00084493641, 0.0103463661, -0.00955152791, -0.030123014, 0.01891445, 0.0195072107, 0.00403144537, -0.0165299363, 0.0065675173, -0.0035700351, 0.0259736888, -0.0271187946, 0.00397419, -0.00849399, 0.00171344844, -0.022915585, 0.00936965831, -0.0276711397, -0.00312209688, -0.0121717993, -0.00346562848, -0.0125355385, 0.00578951929, -0.0148190139, -0.0177558735, 0.00757116871, -0.0397419, 0.0267685279, 0.0131148277, -0.0131956581, -0.000182290707, 0.0019803592, 0.0202751048, 0.026243126, -0.0137547394, -0.0010937443, -0.0130878836, -0.057443887, 0.00234241458, -0.0110064857, -0.000569605851, -0.00975360535, 0.0160045344, 0.00275330548, 6.60961668e-05, 0.0253135692, 0.013121563, -0.00208981778, 0.00148947933, 0.00660119718, 0.0337873511, -0.0335448571, 0.0160988383, 0.00478249975, -0.00846030936, -0.0013690748, -0.0279136337, -0.0207196753, -0.00121835875, 0.000996073475, -0.00662814081, 0.016449105, -0.00504856836, 0.00755096134, 0.014078063, -0.00359024294, -0.0141588943, 0.0128117111, 0.013431415, 0.0163143873, 0.000346478657, 0.0105619151, -0.00214875699, -0.00824476, -0.027320873, -0.00264553074, 0.00891835243, 0.0143340277, -0.0145899924, 0.00144737982, 0.00294191111, 0.00248050084, 0.0027869849, -0.00250407658, 0.013391, -0.0184429362, 0.00757116871, -0.00618693838, -0.00591413351, -0.000269857614, -0.0104676122, -0.0174056049, 0.0125422748, -0.0081774015, -0.00467809336, 0.0407388173, -0.0248151124, 0.00941007398, -0.0066348766, 0.0110940523, -0.0243301261, 0.011255715, 0.00319282385, -0.0191838872, -0.00728826039, 0.000304589688, 0.0326287746, 0.00115436746, -0.00155094452, -0.00158883398, 0.00618357025, -0.00247544888, 0.0279136337, 0.00756443292, 0.00925514754, -0.000642016937, 0.0142801404, 0.0127241444, -0.00599159673, 0.00537189236, -0.00223800796, 0.0186584853, 0.0108111445, 0.0105551798, 0.0238855556, 0.00447264779, 0.00965930242, 0.00877689756, 0.0155195491, -0.00185069279, 0.00195678347, 0.0016797689, 0.0189683381, -0.00180185738, 0.00567837665, -0.00734214764, -0.017526852, -0.0144283306, -0.000963235914, 0.00637217611, -0.00291159935, 0.0424093232, -0.0065203663, -0.0248420555, 0.0118013239, 0.00814372208, 0.0115251513, 0.000925346394, 0.0108515592, 0.0117272288, 0.00501825707, 0.0135189826, 0.0332754217, -0.000286907889, 0.0113163376, -0.0171900559, -0.021716591, -0.00535842078, -0.00951784849, -0.000181343479, -0.0180657245, -0.0058972938, 0.00736235548, 0.00687736971, -0.00176312588, -0.00115184148, -0.00763852801, -0.0180657245, -0.00470840465, -0.00490037864, 0.0152905276, 0.0179848932, -0.0065607815, -0.00629134476, 0.00222958811, -0.0113230739, -0.0120034013, 0.00858155638, 0.00643953495, 0.00281392876, 0.0159775913, -0.0138625139, -0.035942845, 0.00697840843, 0.00754422508, 0.00817066524, 0.000709376065, -0.0207466185, 0.0241145771, 0.0270918515, 0.00522370217, -0.00259164348, -0.0196688734, 0.00672917953, 0.000477408, -0.0168397892, 0.0139029296, 0.0382061116, -0.00533484481, 0.0250441339, 0.0128588621, 0.00899244659, -0.0118013239, 0.00155768043, 0.0127712954, -0.00550324284, 0.0138355698, -0.00790122896, 0.0105686514, -0.0100230416, -0.0266876966, -0.014078063, -0.0129396934, -0.0196554, -0.0139568169, 0.0062206178, 0.00273478171, -0.00738929911, 0.0142397247, 0.0172304716, 0.0013109775, -0.0127443522, 0.00420657918, -0.011302866, -0.0103800455, 0.00802247506, 0.00568174478, -0.00709291873, 0.0134448875, -0.00374853681, -0.0135796051, -0.0270110201, -0.0110603729, -0.00867585931, 0.0222824086, 0.0196958166, 0.00870280247, 0.0174056049, 0.0154117746, 0.0033426981, -0.0179175343, 0.00594444526, -0.0180926695, 0.00664834864, 0.00322987139, -0.0227673948, -0.0124412356, 0.00525401393, 0.0184025206, 0.011565567, -0.0078338692, -0.00421331497, 0.0351075903, -0.0171631128, 0.0124075562, 0.0066113011, 0.0162739716, -0.00690431334, -0.00536515657, -0.0142127816, 0.011781116, 0.0102924788, -0.00728826039, 0.00806962699, 0.00901939068, -0.00352961966, -0.0174325481, 0.0142397247, -0.00786081329, 0.0090059191, -0.00775303878, -0.0152231688, -0.00364413019, -0.00155852246, 0.0194263794, -0.0160045344, 0.00692452118, 0.0018186972, 0.00802921131, -0.0260679927, 0.00898571126, -0.0284525063, 0.0129733728, 0.00242661359, -0.00577604724, 0.0083592711, -0.00910022203, 0.00610947516, 0.00529106148, -0.0271726828, -0.00168145285, -0.00549313892, 0.0177289285, 0.00518328696, -0.00642943103, 0.0187662598, 0.00287960377, 0.0116598699, 0.00386641547, 0.0127106719, 0.00238788198, -0.0156677384, -0.0141723659, -0.0185372382, -0.0178771187, -0.0157485697, 0.0212316047, -0.0186180696, 0.0114106406, 0.0065439418, -0.00422005076, 0.0189952813, -0.0119023621, -0.00537862862, 0.0092618838, 0.0177289285, 0.0103261583, -0.00490037864, -0.00502836099, -0.011350017, 0.00132276537, -0.00729499618, 0.014845957, -0.027320873, -0.0139298728, -0.0245591477, 0.00503846491, -0.00718722166, -0.013337112, 0.0216088165, 0.00780692603, -0.0321168453, 0.00786081329, 0.0073960349, -0.0252596829, 0.0151423374, 0.0157351, 0.0102318553, -0.0004546743, 0.00504183257, -0.0152501129, -0.00576931145, -0.009625623, -0.00960541517, -0.0223093517, 0.00149705715, 0.0118350033, 0.00938986614, -0.0159102324, 0.00652373396, 0.00537526049, -0.0150884502, 0.0116598699, -0.0064934222, -0.00763179222, 0.00804268289, 0.0197766479, -0.0163952187, -0.00310357311, 0.0145091619, -0.0106158024, -0.00666182, -0.0345148295, 0.024734281, -0.0344070569, 0.00441539241, -0.0244109575, -0.0245591477, 0.01372106, 0.00780019024, 0.0102655347, -0.00644963887, -0.00553355459, -0.00147432345, 0.00633176044, -0.0173247736, 0.0128453905, -0.0344609432, -0.0155734364, 0.00407859683, -0.000606232381, -0.00234241458, 0.00193825969, 0.00552345067, -0.0190895833, 0.0269571338, -0.0186450146, -0.0169340912, -0.0164625775, 0.00256133173, -0.0200056694, -0.0150749786, 0.0123806121, 0.00141201622, -0.0079214368, -0.010440669, -0.021959085, -0.0117541719, 0.00846704561, -0.0110266935, -0.0100904014, -0.0158024579, 0.0276172534, -0.0151558099, -0.00615999475, -0.00313725253, -0.018820148, -0.0129599012, 0.0126163699, -0.00220938027, 0.00457368651, 0.0376672372, -0.0058737183, -0.0247612242, 0.000863881141, -0.0203559361, -0.0109256543, 0.0313624218, 0.00237104227, 0.0211238302, -0.0224036537, -0.00192983972, 0.00266405451, 0.00503172865, -0.00993547495, -0.0122863101, 0.0301499572, -0.0238047242, -0.00309178513, -0.00131266157, 0.000890824827, -0.0132226022, -0.0124951228, -0.0056918487, -0.00586698251, -0.0043749772, -0.0100365141, -0.0045400071, -0.0227269791, 0.00672917953, -0.00977381319, 0.0180926695, -0.00694472855, -0.0218917243, -0.00533147715, 0.014724711, 0.00242998148, 0.0327365473, -0.0130339963, 0.00353298755, 0.0236430634, 0.0212585498, -0.00564469723, -0.00148779526, 0.0272400416, -0.0120034013, 0.00683021825, -0.031173816, -0.00209150184, -0.00379905617, -0.0132091297, -0.012043817, -0.0247477535, -0.0086085, -0.00420321105, -0.0117878523, 0.0150210913, 0.0117541719, 0.00429414585, 0.00717375, 0.00671570748, 0.0200460833, 0.0121515915, -0.00650352612, -0.00022796863, -0.00499468111, 0.00814372208, -0.00287286798, 0.016354803, -0.0105012925, -0.0197631754, -0.0090059191, -0.00368117774, -0.00311367679, 0.0079214368, 0.00261521921, -0.0245456751, 0.0115318876, 0.00449285563, -0.0280214082, -0.0179848932, 0.0115386229, -0.019466795, 0.0104271974, -0.000628966081, -0.0146034649, -0.0236430634, -0.0101847043, -0.000645384891, 0.00234409864, 0.0158024579, 0.0232927948, 0.00487680268, 0.0115925102, 0.0224171262, 0.0191973597, -0.00901939068, -0.0160584226, 0.0140107041, -0.0108987112, 0.00384957553, -0.009578472, 0.0239259712, 0.00110048021, 0.00368791376, 0.00831211917, -0.000127877138, -0.000132929083, -0.00156189036, -0.00878363382, 0.00894529559, 0.0120236091, 0.00638564769, -0.00862870738, -0.0328173786, 0.00105417077, -0.0171765834, 0.0116396621, 0.00630481681, -0.00156525837, -0.0107437847, -0.00660119718, -0.0231176615, 0.000526664371, 0.00318945595, 0.026364373, -0.014078063, 0.00771935889, 0.0102587994, -0.0209217537, 0.0135863414, 0.00892508775, 0.010797672, 0.0121852709, 0.000265016162, 0.0451845191, 0.0030648415, 0.00369801745, -0.0111883553, 0.0320899, -0.00149116328, -0.0295571964, 0.0216627046, -0.00110300619, -0.0161527246, -0.0173247736, 0.00262363907, -0.0176750422, 0.0347034372, 0.00701882364, -0.0087499544, -0.0258793868, 0.00221611606, 0.0111209964, 0.00947069749, 0.0116868131, -0.000905138615, -0.00325344712, 0.0111883553, -0.0276441965, -0.0124883875, -0.0031524084, 0.00351278, 0.0120101376, -0.00936965831, -0.0241549928, 0.00496437, -0.0288566612, 0.0108044082, -0.00946396124, 0.0134381512, 0.0235218164, -0.00440192083, -0.0088240495, 0.00490037864, 0.0224305987, 0.00355993118, 0.0132495454, 0.0352423079, -0.0339220688, 0.0121448552, 0.0241684653, 0.0105147641, 0.0167185422, -0.0227135066, 0.00661466876, 0.0179175343, -0.012737616, -0.00265395059, -0.000620125211, -0.00757116871, 0.00732194, -0.00344205275, -0.0049037463, -0.0228482243, 0.020760091, 0.0202616341, -0.00517655117, -0.00646311091, -0.0171496402, 0.0125624826, 0.00436824095, 0.0150076197, 0.0306349434, -0.00197025528, 0.0133707924, 0.0101981759, 0.0167724285, -0.00379568827, -0.0188875068, 0.0100836651]
12 Oct, 2021
Node.js Stream readable.readableLength Property 12 Oct, 2021 The readable.readableLength property in a readable Stream that is used to check the number of bytes in the queue which is ready to be read. Syntax: readable.readableLength Return Values: It returns the number of bytes in the queue which are ready to be read. Below examples illustrate the use of readable.readableLength property in Node.js: Example 1: // Node.js program to demonstrate the // readable.readableLength Property // Accessing stream module const stream = require('stream'); // Creating a Readable stream const readable = new stream.Readable("input.txt"); // Calling readable.readableLength // Property readable.readableLength; Output: 0 Example 2: // Node.js program to demonstrate the // readable.readableLength property // Include fs module const fs = require("fs"); // Constructing readable stream const readable = fs.createReadStream("input.txt"); // Instructions for reading data readable.on('readable', () => { let chunk; // Using while loop and calling // read method while (null !== (chunk = readable.read())) { // Displaying the chunk length console.log(`read: ${chunk.length}`); } }); // Calling readableLength property readable.readableLength; Output: 0 read: 13 Reference: https://nodejs.org/api/stream.html#stream_readable_readablelength. Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream readable.readableLength Property
https://www.geeksforgeeks.org/node-js-stream-readable-readablelength-property?ref=asr8
CSS
Node.js Stream readable.readableLength Property
Node.js Stream readable.destroyed Property, Node.js Readable Stream close Event, CSS pause-before Property, CSS, How to Play and Pause CSS Animations using CSS Custom Properties ?, Node.js Stream readable.resume() Method, Node.js Readable Stream resume Event, Node.js Stream readable.pause() Method, Node.js Stream readable.readableLength Property, CSS Tutorial, p5.js | pause() Function
GeeksforGeeks
[-0.0245201886, 0.0260234885, -0.0088808313, 0.053663969, 0.050253123, -0.0206166655, 0.0209072195, 0.0391868241, -0.00636059511, 0.00975880772, 0.00841341913, 0.0477518365, -0.00947457086, -0.00953773502, 0.0339315981, -0.027943667, -0.0276657473, -0.02612455, -0.0160815045, 0.0232948121, -0.000899294682, -0.00407090737, -0.00229442515, 0.0108641749, -0.0366097428, -0.00633532973, -0.00979670603, -0.00419091852, -0.0325167291, -0.0214125309, -0.00109194429, 0.00882398337, -0.00470254524, -0.00912085362, -0.00365718431, -0.00721962284, 0.00272867642, 0.0177869275, 0.000789942336, -0.0310513265, -0.0360539, 0.0131001733, -0.0643765479, 0.00489835301, 0.0127717219, -0.0207556263, -0.0309755299, -0.000378588069, -0.0359781049, -0.01427502, 0.01907547, 0.0141234268, -0.013466523, -0.0184438322, 0.0374940336, 0.0064932392, 0.01797642, 0.0296364576, 0.0129612125, -0.0329462402, 0.0333252251, -0.0776662156, -0.00189175596, -0.0335526131, -0.00930402894, -0.0164731201, -0.0310260616, 0.00991671719, 0.0373171754, 0.0374435037, -0.0404753685, 0.0231811162, 0.0257582, 0.0288026948, 0.0108262766, 0.0210335478, -0.00423513306, 0.0113505358, -0.0124495858, 0.0295101292, -0.00883661676, 0.0133149307, -0.0223852526, 0.00918401778, 0.00830604, -0.0239390824, -0.0295859259, -0.0179006234, 0.0429008566, -0.00134854729, 0.0286511015, 0.0338810645, 0.0354727916, -0.00846395, 0.00323714502, 0.0602330044, 0.00552367466, -0.00190438877, 0.00237495918, 0.0033697891, 0.035346467, 0.0324661955, -0.0158667471, 0.000359836296, 0.0292827412, -0.0323651358, 0.0371655822, -0.0221578628, 0.0249876, 0.0103588644, 0.00500889, -0.0140855284, -0.0383530632, 0.00413407106, -0.0124243209, 0.040778555, -0.0218167789, 0.00410248898, 0.015171946, 0.017483741, 0.0173321478, 0.0149192913, 0.0201366208, 0.0339063294, -0.00722593954, 0.0131380716, -6.95295312e-05, -0.00387194124, 0.000367139612, 0.0214883275, -0.0308239367, -0.0247602127, -0.00961353164, -0.00549525116, 0.00227231788, 0.034765359, 0.00194386614, 0.0292322095, 0.00725752115, 0.00373613904, -0.00206703553, 0.00228337152, 0.0339315981, 0.00811023265, 0.0262003466, 0.026326675, -0.0442904606, -0.00205756095, -0.00939877424, 0.0317082293, -0.00253602676, 0.0114768632, 0.00218230952, -0.0108515415, -0.00829340797, -0.0148182288, -0.00733331777, 0.0059121321, -0.0148940254, 0.00653113751, -0.00905137323, 0.00714382622, 0.0112368409, 0.0300154407, -0.010681, 0.0520975068, 0.0236485284, 0.0235601, -0.0121400831, 0.00386878313, -0.0276152156, 0.0192396957, -0.038403593, 0.0208566878, -0.00408985652, -0.0302175656, 0.0611425638, -0.00826182589, 0.0126769757, -0.000521101407, -0.000396550284, 0.00515100826, 0.0149445562, 0.00672694528, -0.0110284006, -0.0134159923, 0.0550283082, -9.63248e-05, -0.0186964869, -0.00389404874, -0.0494193621, 0.00740911439, 0.0433809, -0.00522680487, -0.0036919245, 0.018784916, -0.0272362325, -0.00166910363, 0.0139465686, 0.0266803913, -0.0298891123, -0.0122979926, -0.00641744258, 0.00908295531, -0.00597213767, -0.00504363, -0.0347148292, -0.026730923, 0.055685211, 0.00309186825, 0.00752912555, -0.0144392457, 0.0136939129, 0.0101251584, 0.00742806355, 0.0131886024, -0.00305712828, -0.0149571896, -0.011761101, 0.0166626126, 0.0144139808, -0.0560894608, 0.0049962569, 0.0131254392, -0.0612941571, -0.0308239367, -0.0137318112, -9.03661839e-06, 0.0157530531, -0.0100809438, 0.0197576378, 0.0420165621, 0.0165994484, -0.00732700154, 0.0185069945, 0.0188607126, -0.00859027728, -0.0308239367, 0.0187091194, -0.00680905813, -0.00729541946, -0.0207050964, 0.0127401398, -0.0141613251, -0.0141234268, -0.0204145424, -0.0452758148, 0.0268572494, 0.00570685, -0.0173321478, 0.00323714502, -0.0103588644, 0.0406016931, -0.0265793297, -0.0539166257, 0.00737753231, 0.00785757788, 0.0140855284, -0.00618373649, -0.0177869275, 0.0370392576, 0.0237622242, -0.019795537, -0.0239896141, 0.0131507041, 0.0122032473, 0.00933561, -0.057302203, 0.0166247133, -0.00711224461, 0.0467917472, -0.00802180357, 0.0229410939, -0.00275236275, -0.0888841078, 0.0103841294, -0.0178500917, -0.0485856, -0.000942719809, -0.00857764482, 0.00122064049, -0.01797642, -0.0209324844, 0.0240275115, -0.0460843146, -0.0233453419, 0.0323651358, -0.0278678704, -0.0270593744, 0.0346642956, -0.00740911439, -0.00939877424, 0.0168268383, 0.0274888892, -0.0165741835, -0.02260001, -0.0363570862, 0.0393131524, 0.00730805239, 0.015171946, -0.0259224251, -0.0338052697, -0.0429766551, -0.0269077811, 0.00136749644, -0.0324914604, -0.0104220277, -0.0062469, 0.0377466902, -0.00421618391, 0.0288026948, -0.0332241617, -0.0202755816, -0.036761336, 0.00602898514, -0.00369508262, 0.0293080062, 0.0108389091, 0.00555525674, -0.0131633375, -0.000794284861, 0.0143887149, -0.0475749783, 0.052046977, 0.00507521164, -0.0161446687, 0.00201808359, 0.0126706595, -0.0474739149, -0.0186333228, -0.000125340681, 0.032163009, -0.0312281866, 0.0199218653, 0.0358770415, -0.0179385208, -0.0479792282, -0.023901185, 0.00751649309, 0.0350432806, -0.00095535256, -0.0138202412, -0.00972722657, 0.00539418915, 0.0484340079, -0.00244286028, -0.044391524, 0.0286763683, 0.024621252, 0.017483741, 0.000708224194, 0.0160436071, 0.0385804512, 0.0380246118, -0.00591529, 0.00372350635, -0.0161446687, -0.0292322095, 0.00187122775, 0.0151340477, -0.0219683722, 0.00519838138, 0.00845763367, 0.0381256714, -0.00286921579, -0.0430271849, 0.000949036214, 2.48460747e-05, 0.0307734068, -0.0238253884, 0.00186806952, 0.0314808413, -0.0331988968, -0.0059563471, 0.0208566878, -0.00571000809, -0.00172753015, -0.00573843159, 0.0205282364, 0.00638270238, -0.0321124792, 0.0771609, -0.0207303613, -0.00869765598, -0.00542577077, 0.00417512748, -0.0187596511, 0.0215767566, 0.0317334943, 0.0139213027, -0.0280447304, 0.0411828, -0.000619005295, -0.0357507132, 0.0212735701, 0.0194165539, -0.00891873, 0.0021065129, -0.0160309747, -0.0445683822, -0.0499752, -0.00650587212, 0.00721330661, -0.0155509291, -0.0010619415, 0.00834393874, -0.0244822912, -0.00328767602, 0.013466523, -0.0105546722, -0.0155382967, -0.013264399, -0.0199597627, -0.0190249383, -0.00836288836, 0.0224989485, 0.00668904698, 0.016094137, -0.00801548734, 0.011994807, 0.0154498667, 0.00179069384, -0.0328957103, -0.00230705808, -0.043229308, 0.00595318852, -0.0364328846, 0.00875450391, -0.0251265615, -0.029964909, -0.0402732417, 0.0324156657, -0.0162583645, -0.0175469052, -0.0193660222, -0.0389089063, 0.0132517666, 0.00229916256, -0.0163341593, 0.00157435786, -0.00642691739, 0.00538787246, 0.0145403082, 0.0174711086, 0.00097193307, 0.00671431236, -0.00810391642, 0.00730173616, -0.00273183454, -0.0159930754, 0.00628795708, 0.0175974369, -0.00969564449, 0.0205661356, 0.0199850276, -0.00800285395, 0.0343358442, -0.0280699953, -0.00269551552, 0.0085713286, -0.0275141541, 0.00759860594, -0.0270593744, 0.056493707, 0.00352454046, -0.0282468535, -0.00324030314, -0.0204145424, 0.0123548405, 0.011009451, 0.000312266056, 0.0166499801, -0.0457305945, 0.0275899507, -0.0281710569, -0.00653113751, 0.0192017965, -0.0024112782, 0.00306818192, -0.0109652365, -0.00709961168, -0.0240527764, 0.00128222525, 0.0153235393, 0.00567842601, 0.000417275907, 0.0157025214, 0.00156488328, 0.0124495858, -0.0191386323, 0.0237116925, -0.0177111309, -0.0141107943, -0.0177869275, 0.0151340477, 0.0140855284, -8.05338495e-05, -0.00148592854, -0.00590581587, -0.00430145534, 0.00432987884, 0.0244317595, 0.0421681553, -0.0136181163, -0.022713704, 0.0285247751, -0.0148055963, 0.0580096394, -0.0370897874, -0.0256571379, -0.0458316579, 0.0222841911, -0.0215514898, 0.00135881139, -0.0199850276, -0.00425408222, 0.0135675855, -0.0151087828, -0.0169784315, 0.0178248268, 0.0176732335, 0.00823024381, 0.00631006435, -0.000484782213, -0.00274920464, 0.00908295531, -0.0370139889, -0.00216493942, -0.00201650453, 0.0293585379, -0.00400142698, 0.0336536765, 0.0182164423, 0.0053120763, -0.00703013176, 0.0220315363, -0.0110473493, -0.0341589861, 0.000941930281, 0.0181911755, 0.00588055048, 0.0247223135, -0.0351948738, 0.0262761433, -0.0329715051, 0.0382772647, 0.0218420438, 0.00162962615, -0.0129738459, -0.0177111309, 0.0128159365, -0.00924718101, 0.0621026531, -0.00516364118, 0.0286763683, -0.00571948243, -0.00278710295, -0.0186459552, 0.00569421705, 0.00672694528, 0.00714382622, 0.0243433304, 0.0134538906, 0.00149619265, 0.0122411456, -0.0290806163, 0.00802180357, 0.013264399, -0.0472465269, 0.0166878775, -0.0219557397, -0.0169531647, 0.00240338291, -0.00841341913, -0.00194070791, 0.0232695453, 0.0362812914, -0.0310260616, 0.0112494742, -0.00107062655, -0.0100746267, -0.0096261641, 0.0242422689, 0.00453200331, -0.0191133674, 0.00228652987, -0.00242075277, -0.0182669722, -0.0295101292, -0.0085713286, 0.00186649046, 0.0118621625, -0.00566263543, 0.00597845437, -0.0157656856, 0.0165236518, -0.00992303435, -0.00228968798, -0.0238632858, -0.0105546722, 0.0107631125, 0.0437598862, 0.00950615294, 0.0294090677, -0.0322135426, -0.0124622192, -0.00155146094, 0.0226126425, -0.00869765598, -0.00539734727, -0.0350938104, 0.0292574745, 0.0342600495, 0.00680905813, -0.00117800501, -0.00912717, -0.00883030053, 0.0243812297, 0.0011124725, 0.0262003466, 0.00568158412, -0.0197450053, -0.00814813096, -0.0150961494, 0.0144518791, 0.00416565314, -0.0121906148, -0.0425724052, 0.0136181163, -0.0351443402, -0.0132012358, -0.000590976386, -0.00658798497, -0.0165868159, -0.00711224461, 0.0381256714, -0.00164699624, 0.0107125817, -0.0150961494, -0.0119126942, 0.00606688345, 0.00115984539, 0.00528681045, 0.0601824746, 0.00318503496, -0.0055047255, -0.0388331078, 0.0471454635, 0.015487765, -0.0354222618, 0.00256602955, -0.00309976377, 0.0129612125, 0.028954288, -0.00483834743, 0.0286763683, 0.0104346611, -0.0147550646, 0.0145782065, 0.00454779388, -0.0131128058, -0.0303186271, 0.00467728, -0.0259476919, 0.0251897257, -0.019795537, 0.00956931617, 0.020199785, 0.0141486926, 0.0139213027, -0.0248991717, -0.0226631742, 0.0229663607, -0.000646244676, -0.0143760825, 0.0286005717, -0.0115905581, 0.0208187904, -0.00361612788, 0.0305207502, 0.00543840369, -0.013870772, 0.0100746267, 0.0288532265, 0.00958195, -0.00149777171, -0.00800285395, -0.0203892775, -0.00970827695, -0.0131633375, 0.00229600444, -0.0266803913, 0.0280194636, 0.0270341095, 0.00959458202, 0.000328057, 0.0293585379, 0.0436335579, 0.0266298614, -0.0294596, -0.0193786565, 0.0265035331, -0.0109020732, 0.0159678105, 0.011445282, 0.0255687088, 0.000451226428, 0.0412838645, 0.00188543962, 0.0283479169, -0.00628164038, 0.0251644608, 0.00223757792, 0.000697170501, 0.00220915419, -0.0111105135, -0.0168647356, -0.0359781049, -0.0321377441, -0.0380751416, 0.0168900024, -0.03595284, 0.0116537223, -0.0527544096, -0.0330220386, -0.0436082929, -0.00670168, -0.0202755816, 0.0258971602, 0.00997988135, 0.0061489963, -0.0137697095, 0.00752280932, -0.00994829927, -0.0129043655, 0.0452000201, -0.0328451805, 0.0251265615, 0.01797642, 0.00278710295, -0.0109589202, -0.0121906148, 0.00423513306, -0.00565631874, -0.0363318212, -0.00230705808, -0.000876397826, 0.0159551781, 0.0126706595, -0.00608267449, -0.0361549631, -0.0390604958, 0.00588686671, -0.0146919014, 0.0047941329, 0.0208187904, 0.0319103561, -0.00621847669, 0.0292322095, 0.0600814112, 0.0139970994, 0.0138834044, 0.00497099152, 0.0134538906, 0.02612455, 0.00984723773, -0.0351190753, -0.029131148, -0.0102767516, -0.0137697095, 0.00237653824, 0.0116663547, 0.00903242454, -0.0139339352, 0.019126, 0.0218041465, -0.00681537483, -0.0467917472, 0.0222841911, 0.00322135421, 0.0226379074, 0.0533102527, -0.00795232318, -0.0249244384, 0.0168521032, -0.00108562794, 0.0192396957, 0.00511626806, 0.00828709174, 0.0236737952, 0.0190375708, -0.0158793814, 0.0360033698, -0.0106683671, 0.0406774916, -0.0139592011, 2.9040546e-05, 0.0204271749, -0.0275141541, -0.0198460687, 0.0474233851, -0.0196060445, -0.00495835859, 0.0262761433, -0.00254392228, -0.0196818411, -0.0123548405, -0.0031960886, -0.0113379033, -0.00718172453, 0.000790731923, -0.0272867642, -0.00291343057, -0.0101567404, 0.0109715527, -0.0112936888, 0.0141865909, 0.0062216348, 0.0338052697, 0.0175721701, 0.00512890099, -0.00546051096, 0.0021617813, -0.0250255, -0.0384288579, 0.015487765, -0.00362560246, -0.0370392576, -0.0122221969, 0.0102325361, -2.48707493e-05, 0.0335526131, -0.0621026531, 0.0198460687, -0.0255055446, -0.00618373649, -0.0180774815, 0.0195934121, 0.000190182269, -0.00587423379, -0.0152224768, 0.0112368409, 0.0123295747, -0.0131759699, -0.0223473553, -0.000933245232, 0.0253539514, 0.013264399, 8.56165643e-05, 0.00653113751, 0.000517943234, 0.0106873158, -0.000278907683, -0.00509731937, -0.0074470127, -0.0194418188, 0.00778809749, -0.0285753049, -0.013062275, 0.0116221402, -0.0227768682, -0.00322609139, -0.00319135119, -0.00391931413, -0.0119000608, 0.0205914, -0.00960089825, -0.0513900742, -0.00540050538, 0.0319861509, -0.0118368976, 0.0228021331, 0.00429829722, -0.0263014082, 0.00661325036, 0.0120769199, -0.0550283082, -0.00362876058, -0.000859027787, -0.0168647356, 0.0194923505, -0.0217030831, -0.022309456, -0.011615824, 0.010605203, -0.0143381841, -2.73257479e-06, 0.00273657194, 0.0291816778, -0.0236990601, 0.0135044213, 0.0196565762, 0.0239390824, -0.0471454635, -0.00396352867, 0.0599298179, 0.0222841911, 0.00154119683, -0.0108641749, 0.0138202412, 0.0155509291, -0.00553314947, 0.00292922161, -0.0212988351, 0.0139086703, -0.0458821878, 0.0100430455, -0.00874818675, 0.0108199604, -0.00818602927, 0.000804548967, 0.0101504233, -0.0126201287, -0.0427492633, 0.00760492217, -0.0171426572, -0.0122916764, 0.0370139889, 0.00271920185, 0.0416375808, -0.0175848044, 0.00130038487, -0.00450673746, -0.000558604894, -0.0102767516, -0.00975249149, -0.0494698919, -0.0101946387, 0.00324030314, -0.00691643683, 0.0377466902, 0.0189996734, 0.00168331538, 0.00603846, -0.0364581496, -0.017685866, -0.00599740352, -0.0098977685, -0.0200481918, -0.0127654048, 0.0222841911, 0.00191702147, -0.000380956713, 0.0123990551, -0.0438862108, -0.0056121042, -0.0266551264, -0.00219178409, -0.0181406457, 0.0272109676, 0.00900715869, 0.00543208746, 0.0191765316, 0.0228652973, -0.0125253825, -0.0355233252, -0.00768071879, 0.0245328229, 0.00982197188, 0.00127748796, 0.0415112525, 0.00545419473, -0.017395312, -0.00934824347, 0.0160815045, -0.00855237897, 0.00335399806, -0.0172689836, -0.00896294415, -0.00852711406, -0.0250886641, -0.0180522166, 0.0121590327, 0.0192017965, 0.000657693134, 0.0328704454, -0.0235222019, -0.0449726284, 0.0325167291, -0.0230168905, -0.00525207026, -0.0122664114, -0.0200481918, 0.0105925705, 0.0069732843, 0.00824287627, 0.00836288836, -0.00837552082, -0.00826182589, -0.00380246108, 0.0165994484, -0.0468928106, -0.00701749884, 0.00018643192, -0.0130496426, 0.00301607163, 0.00240180362, 0.0310007967, -0.044037804, 0.0121590327, -0.0510616191, 0.00605109241, 0.0348411538, 0.00249654939, 0.0166247133, -0.0251644608, 0.0105988868, 0.0156519916, -0.00661956705, 0.0390604958, -0.0221452303, -0.0105294064, -0.0148434946, -0.0360286348, -0.00250286586, 0.0134791564, -0.0169026349, 0.00864712521, 0.00216967682, 0.0269330461, 0.000821129477, -0.0192649607, 0.0189617742, -0.0285247751, -0.0047593927, 0.0238127541, -0.00548893493, -0.0148940254, 0.0202629492, -0.0060732, 0.00433935365, -0.0275899507, -0.0136433821, -0.01889861, 0.00237495918, 0.00396037055, -0.00507837, -0.0385046564, 0.00990408473, -0.0229916256, 0.0109147057, 0.00802180357, -0.0218546763, 0.0141739585, -0.0325925238, -0.00349295838, 0.0121969311, -0.0170668606, -0.0295859259, 0.024823375, -0.00337926368, 0.00853343, 0.00133354589, 0.00379614485, 0.00514469203, 0.0227642357, 0.00574159, -0.0319103561, 0.00491730217, 0.00205598189, -0.0276404824, -0.0100177797, 0.00692275306, -0.00228337152, -0.0272867642, 0.0151087828, -0.00344558572, 0.0270088427, 0.00549840927, 0.0182290748, -0.00864712521, 0.0212862026, 0.0219178405, -0.020919852, 0.00334136537, 0.00493309321, 0.00459200889, 0.00225336873, 0.0216399208, -0.0394647457, -0.0138960369, -0.0259982217, 0.0105167739, -0.013264399, 0.016384691, -0.00917138439, -0.0132896649, -0.00402037613, -0.0292827412, -0.00550156739, -0.0262003466, -0.00608899072, -0.00252339407, -0.0041151219, 0.0016659454, -0.00594687229, 0.00188386056, 0.0621026531, -0.0231811162, -0.00529312715, -0.0249244384, -0.012569597, -0.0311018582, -0.00887451507, 0.0033824218, 0.0406774916, -0.0184690971, -0.0160562396, 0.00615847111, 0.00393826328, 0.0119379591, -0.0488129891, 0.0245580878, -0.0199471302, -0.0150329862, -0.00847026613, -0.00184596225, 0.0031455576, 0.00517943222, -0.0198208019, 0.00107852195, 0.0206671972, 0.00862817559, -0.0300407056, -0.00741543062, -0.00504994625, 0.0140097318, 0.0111420956, 0.0197323728, 0.0103967628, -0.00835025497, 0.0134791564, 0.029535396, -0.00994198304, 0.0159299113, -0.0180774815, 0.0314050429, 0.0138328737, -0.0167005099, 0.0194039214, 0.0117863659, 0.0233832411, -0.0071754083, -0.00682169106, -0.00890609622, -0.00656903582, 0.0114010666, -0.014565574, -0.0131886024, -0.0303691588, 0.0042509241, -0.00884293299, 0.00447831396, -0.0307986718, 0.00541629642, 0.0264530014, -0.0280194636, 0.0197323728, 0.0245959852, 0.00907663908, 0.019100735, -0.011704253, 0.0160562396, -0.00310923834, 0.0140223652, -0.0268067196, 0.00944298878, 0.0222589243, 0.0155256633, 0.00594371418, 0.00286289956, -0.0116663547, -0.0115147615, -0.000504520896, 0.0208314229, 0.0118874284, 0.00381509378, -0.0128159365, 0.0213367343, -0.0507584363, 0.0166247133, 0.0169152673, -0.00296554063, -0.0109210219, -0.00793337356, -0.0146792689, -0.0032466196, 0.00818602927, -0.00876082, -0.0163594261, 0.0222841911, -0.00602266891, 0.0196313113, 0.026730923, -0.0348916873, 0.0219557397, -0.0118368976, -0.00310608023, 0.0200481918, 0.0318598226, -0.00127906702, -0.0122221969, -0.00619005319, -0.00455726869, 0.00327820145, -0.0253918506, 0.0114831803, 0.00403300906, 0.00165489176, 0.0171426572, 0.00251234043, -0.0124495858, -0.00604793429, 0.0468675457, 0.00883030053, -0.0241791047, -0.0117926821, -0.0224357843, 0.00467096362, -0.00590897398, -0.00295606605, -0.0177869275, -0.0126896091, -0.000596897968, -0.00799022149, 0.0102135874, -0.00939877424, 0.00409933086, 0.00315503217, 0.00490466971, 0.0185322613, 0.0142876524, 0.000663219951, -0.00837552082, 0.00315661123, 0.0241412073, -0.00266709179, 0.00165804988, 0.0326683186, -0.00798390526, -0.00946825463, 0.0311018582, 0.0287521649, 0.0101756891, 0.00679642567, -0.00639533531, -0.00723225577, -0.0274383575, -0.0371403173, 0.031960886, 0.0205787681, 0.0185069945, -0.0304702204, 0.00518574845, 0.032188274, -0.0261750817, 0.00680905813, -0.0037045572, 0.0107188979, -0.0292069446, -0.0087166056, 0.0140097318, 0.00244443933, -0.0226126425, 0.00946825463, -0.00620268565, 0.00608899072, 0.0122158797, 0.0202503167, -0.00744069647, 0.0221831296, 0.00676484359, 0.00571632432, 0.0231937487, -0.0084071029, 0.0286511015, -0.00186017412, -0.00950615294, 0.0256318729, 0.00310765929, -0.0181406457, -0.0312534496, -0.000510837301, 0.00286921579, 0.00332873268, 0.00989145227, -0.0356243849, 0.00340137095, -0.00956931617, 0.0012909103, 0.00846395, 0.00294027524, -0.010605203, 0.00803443603, 0.0080849668, 0.00511942664, -0.00176700752, -0.00495204236, 0.00671431236, -0.000242588489, -0.0109778699, -0.00761755509, 0.00235601, 0.00573211536, -0.000945878, 0.0115716094, 0.00775651541, -0.00802812, -0.0107694287, 0.00600056164, 0.0166120809, 0.010605203, 0.0111926263, 0.00320240506, 0.0161446687, -0.016384691, -0.0413091294, -0.00518574845, 0.0161952, -0.00797758903, -0.0220946986, -0.0354222618, 0.00820497796, -0.0256571379, 0.01797642, -0.0104409773, 0.00984092057, -0.0198334344, 0.00381193566, -0.000949825742, 0.0133149307, -0.0356243849, -0.0103020165, -0.0153361717, -0.019189164, 0.0258466285, -0.0087734526, -0.00848921575, 0.00269551552, -0.0222589243, -0.00576369744, -0.00902610831, -0.000248904864, 0.0148434946, -0.00822392758, 0.0103588644, -0.0145782065, 0.0454021432, -0.000662825187, 0.0051320591, -0.0131001733, -0.01066205, 0.00322135421, -0.0121211344, 0.0126959253, -0.0105104577, -0.0223599877, 0.0206166655, 0.0161446687, -0.000118826909, -0.0224105176, -0.0410312079, -0.000534128922, -0.0301922988, -0.00533734169, -0.00876713637, -0.0472970568, 0.00571632432, 0.0257834662, 0.00796495564, 0.0245833527, 0.0061205728, 0.000218507295, 0.0227010716, 0.0145403082, 0.00914611947, -0.00882398337, -0.0207935255, 0.0114958128, -0.0024839167, -0.0116537223, -0.00456990115, -0.0287521649, -0.000497020199, 0.0163973235, -0.0211851411, -0.009101904, 0.0230926871, -0.0156646241, -0.00549525116, -0.00997356512, 0.000652561081, 0.0169026349, 0.00617426215, -0.00665746536, 0.0116095077, -0.00693538599, 0.0149824545, 0.0230800547, -0.0050309971, -0.00566263543, -0.00507837, -0.0108136432, 0.00269235717, -0.00488256197, 0.0281963237, -0.00183806673, -0.0216399208, -0.0161446687, -0.00676484359, -0.00812918227, -0.0146161048, 0.00740279816, -0.0086092269, -0.00828077458, -0.00679010898, -0.0323651358, 0.0461348444, -0.0208314229, 0.0152351102, -0.0130243767, 0.00607635826, -0.0155130308, 0.0116537223, -0.0116095077, -0.00940509047, 0.0208693221, -0.0113315871, -0.0221325979, -0.0132517666, 0.0272615, -0.0236358959, 0.0212862026, 0.00689748768, -0.010459926, -0.00476886751, 0.00835025497, -0.0194797181, 0.0226126425, -0.0051667993, 0.0177490301, -0.00154830283, 2.52901955e-05, 0.0170668606, 0.0246844161, -0.0273625609, 0.013668648, 0.0189996734, -0.0186206903, 0.0317334943, 0.00242549018, -0.0381004065, 0.0144013474, 0.0132138683, 0.0115273949, 0.0216651857, 0.0119190104, -0.0389089063, 0.006357437, -0.000859027787, 0.0263014082, 0.00970196072, -0.0143634491, 0.00429829722, 0.00409617275, 0.0160183404, 0.0216399208, -0.013352829, -0.00278552389, -0.00979039, -0.0152603751, 0.00376772112, 0.012916998, 0.0320619494, -0.0242675338, -0.0104093952, 0.0376456268, -0.0251897257, -0.0210461803, 0.0132138683, -0.00698591676, 0.00036023109, 0.0249749683, 0.0024333857, -0.00199439726, 0.0151214153, 0.0419660322, -0.0185322613, 0.0151087828, -0.018203808, 0.0218420438, 0.00399826886, 0.023320077, -0.00856501237, 0.00577948801, -0.0269583128, -0.00893136207, 0.0250760317, -0.00823656, 0.0127527723, 0.0137823429, 0.0087734526, 0.0429008566, 0.013378094, -0.0100809438, -0.00205124449, -0.0320872143, -0.00315345312, 0.0158288497, -0.0235727318, -0.00780704664, -0.00235127262, 0.00144329295, -0.0133149307, 0.00189807243, -0.024419127, 0.00284079206, -0.00929771177, 0.00132170261, -0.0111105135, -0.00162015157, 0.0120453378, -0.0167636741, 0.0217788797, -0.0132391341, 0.0162457302, 0.00408985652, -0.0023149536, -0.0160183404, -0.0321124792, 0.00618689461, 0.0204145424, -0.0195428822, -0.0429766551, 0.00144013483, -0.000993250869, 0.0269330461, 0.00740279816, 0.000322727574, 0.00262919348, -0.00261813984, -0.00120406, -0.00375824654, 0.0107062655, 0.0124874841, -0.00590897398, -0.0129359476, -0.0015151418, -0.00182543404, 0.0122979926, 0.0312787183, 0.0123864226, -0.0026197189, 0.0277162772, -0.00444673188, 0.0235979985, -0.01537407, 0.00998619758, -0.00928507932, -0.0200734567, 0.00471833628, -0.0360033698, -0.00418144418, 0.00662588328, -0.0229537264, -0.0206798296, 0.0240654107, 0.000274565158, -0.0167384092, 0.0164857525, -0.000606372545, 0.00820497796, 0.00335084, -0.00265130075, 0.00534681603, 0.00751017639, -0.00179543113, 0.000624137348, 0.00436461903, 0.00953141786, -0.000829024939, -0.000759544782, 0.0271099061, -0.00299396436, 0.0238759182, -0.00427934807, 0.0224357843, -0.00166910363, -0.00286605768, -0.00309186825, 0.00536260707, 0.0140602635, -0.0154119683, -0.00354348961, -0.0218673088, -0.0157530531, 0.0213872641, -0.0198713336, -0.00903242454, 0.0169279, -0.0160309747, 0.00539418915, 0.021905208, -0.00740911439, 0.0393131524, -0.0254676472, 0.0282468535, 0.0140602635, -0.0271604359, 0.0114263324, 0.0210840777, 0.0226631742, -0.00958826579, 0.0142118568, 0.0018017476, 0.0262761433, 0.0120769199, -0.00540050538, -0.0171300247, 0.0104346611, -0.0213998966, 0.000532944629, -0.00315661123, 0.00384983397, 0.00641112635, 0.0154246017, 0.00666378159, -0.0328704454, 0.0245454554, -0.00896926, -0.0174963735, 0.00747859478, -0.00243022735, -0.00723225577, -0.00412775483, -0.00310134282, -0.000147448009, -0.00985987, 0.00281868479, -0.0195428822, 0.00556788966, -0.00227389694, -0.0121337669, 0.022713704, -0.0332999602, -0.0143634491, -0.00260550692, -0.00651850458, -0.0195681471, -0.0177869275, 0.000148138861, -0.0250255, -0.00929771177, 0.00490782782, -0.00713751, -0.00825551, 0.0191512667, 0.0158035848, -0.000881924643, 0.0194797181, 0.00678379275, -0.00970827695, 0.0155003984, -0.0030602864, -0.0171805546, -0.00973985903, 0.00371403177, -0.0055110422, 0.000771388, -0.0051320591, 0.0141234268, 0.0266803913, 0.0150961494, 0.0104409773, -0.0233832411, -0.016270997, 0.0179637857, -0.0146666355, 0.00597845437, 0.0010974711, -0.00167699903, 0.00302870455, -0.0132896649, 0.00901347492, 0.00977775734, -0.0257582, 0.00531523442, 0.0185701586, 0.00642375927, -0.0133149307, 0.0218294114, 0.0203134809, -0.0157277882, -0.0140981618, 0.00220757513, -0.0120263882, -0.0219936371, -0.0259224251, 0.0113758016, 0.0118242642, -0.0398437306, -0.0069101206, -0.0218167789, -0.0219810046, 0.0109399715, 0.00360033684, -0.0209703837, 0.00544472, -0.0138202412, -0.00019225484, -0.027943667, 0.0110284006, -0.0132770324, 0.0431282483, 0.00643639173, 0.00173068827, 0.00847658236, -0.00288816495, -0.00663219951, -0.0141234268, -0.00576685555, -0.00877976883, 0.0092092827, 0.0152982734, -0.0096261641, -0.00254550134, -0.00630690623, -0.00421618391, 0.0361044332, 0.019504983, 0.0135044213, -0.0165489167, 0.0195555147, -0.0111736776, 0.0252655223, -0.00865975767, -0.0137823429, -0.0307481401, 0.00372034824, -0.0391615592, 0.00406774925, 0.00181753852, 0.000223047187, 0.0101188421, -0.00159883383, -0.0178753566, 0.0034550603, -0.0307734068, 0.0416881107, -0.0105041405, 0.00200545089, -0.024419127, -0.00448463, 0.00538787246, -6.44961692e-05, 0.00877976883, -0.0186838545, 0.0018775441, 0.0289290231, -0.0174332112, -0.00589949964, 0.0153867034, -0.0193281248, 0.00200071349, 0.00850816444, 0.0196944755, -0.00427303137, 0.00484782225, 0.0159930754, -0.0194923505, -0.00175437471, 0.0206545647, 0.0101504233, -0.00689117145, 0.00696065137, -0.00899452623, -0.00028542144, -0.00730173616, 0.00684064, 0.00371403177, -0.0117168864, 0.0144897774, -0.0242675338, -0.00349295838, -0.020806158, -0.0181911755, -0.0145024098, -0.0121148182, 0.0218167789, 0.0112810554, -0.0193154924, -0.0153361717, -0.00339189637, -0.00567211, 0.00500573171, 0.00571000809, 0.0137823429, 0.034184251, -0.0119821737, -0.0194418188, 0.00316292769, -0.0029971227, 0.00704908092, 0.00359086227, 0.00147803302, 0.00840078574, -0.0211977735, -0.00597529626, 0.0140981618, -0.00339821284, 0.00800285395, 0.00872923806, 0.0135296872, -0.000742569508, 0.0275646858, 0.0128980493, -0.0215262249, -0.00296080345, 0.0299143791, 0.00033397862, -0.0135928513, -0.0160183404, -0.000304370595, -0.0138834044, -0.0211093444, -0.0144139808, 0.00766176963, 0.00261656055, 0.0202124175, 0.0233453419, -0.0104536097, -1.34963293e-05, 0.0137823429, -0.0201492533, -0.0238380209, 0.0206166655, 0.00408669841, -0.00385930855, -0.00932297762, -0.0136433821, 0.00385299209, -0.0112557905, -0.00514785, 0.00840078574, -0.00661956705, 0.00815444719, -0.0106241526, 0.0312534496, -0.00860291068, 0.0035561223, -0.00774388248, 0.00705539715, -0.00157988467, -0.0116979368, 0.0333252251, 0.00300185988, -0.00757965678, 0.0200734567, 0.00233864, -0.0111041972, -0.0022296824, -0.00968932826, -0.0102830678, 0.0302680954, -0.00609846553, -0.00729541946, -0.00492361886, -0.0280447304, 0.0124811679, -0.00362244435, -0.0108389091, 0.00270183175, 0.0158541147, -0.000945088454, 0.0104788756, 0.0126706595, -0.0103651807, -0.00908295531, 0.00943667255, 0.015285641, 0.00959458202, 0.00219020504, -0.0150077203, 0.00740911439, 0.00705539715, 0.0247602127, 0.00432987884, -0.0210588127, 0.00149619265, -0.013352829, 0.0133654615, 0.0211851411, 0.00713119376, -0.0042225006, -0.0130370092, 0.00787652656, 0.0158920139, 0.00769335171, -0.00208282657, -0.0286763683, -0.0208314229, 0.0125632808, 0.0345885, 0.0230421573, -0.00896926, -0.0194923505, -0.0080849668, 0.0038908904, 0.0275646858, 0.00396352867, -0.0123548405, -0.00725120492, 0.0108894398, 0.0157025214, 0.0177111309, -0.0033824218, 0.0151466811, 0.0180395823, -0.0286763683, 0.00508468645, 0.00559947127, 0.0059847706, -0.0169405323, -0.00423829118, -0.0279689338, -0.0167510416, -0.00811654888, 0.00382141024, -0.0135675855, 0.00869134, 0.0173826795, -0.022018902, 0.00184280402, -0.0185575262, -0.00732700154, 0.0013667068, -0.00814181473, 0.0100304121, -0.00224863156, -0.00922191609, 0.00256760861, 0.0328199118, -0.011558976, -0.0358012468, 0.00150171947, -0.0132896649, 0.00772493333, 0.0279184021, 0.0099546155, -0.0149066579, -0.00548261823, 0.00364455162, 0.00509731937, -0.0137065463, -0.000287000556, -0.000306147063, -0.030925, 0.0115400273, 0.00408669841, 0.00101298955, -0.00268130354, 0.0141739585, 0.000254234328, -0.0125443321, -0.00552367466, -8.37907355e-05, 0.0173826795, 0.0259224251, 0.0132391341, 0.00960089825, 0.0228526648, 0.0205661356, -0.00187280681, 0.00437409338, -0.0123043098, -0.0164225902, 0.0106746834, -0.0208693221, -0.022511581, -0.00408038171, 0.0032292495, 0.017395312, 0.00155067141, 0.00535944896, 0.00731436862, 0.00776283164, 0.0146287372, 0.000757965667, 0.00612688903, 0.0238001216, -0.00845131744, -0.00572264101, 0.0154751325, -0.000343058433, 0.00802180357, -0.0075543914, -0.000118234748, 0.00481624, 0.0042856643, -0.00106588926, 0.00886819791, 0.00565631874, 0.00190754689, -0.0227642357, 0.0186206903, 0.0136560146, 0.0216651857, -0.0165236518, 0.0243938621, -0.00347085111, 0.0264782682, -0.00800285395, -0.00252813124, -0.00444989, -0.00596897956, 0.00539103104, 0.0156646241, 0.016675245, 0.0148813929, -0.0262761433, -0.00828077458, -0.0284742434, -0.0129359476, -0.01075048, 0.0207050964, 0.0459327213, 0.0210209154, 0.0103462311, 0.0106431013, 0.0107883783, -0.00634480454, -0.000392997317, -0.0350685455, 0.00266867084, -0.0268572494, 0.0308744684, -0.0253286865, -0.0219936371, -0.00334452349, -0.0102767516, -0.0129991109, -0.013554953, -0.00766808586, -0.00285816216, -0.0193154924, -0.0186080579, -0.00812286511, -0.00103904458, 0.0302175656, -0.00244128099, -0.00598161248, -0.0232821796, -0.0137697095, -0.00254234322, 0.00218073046, -9.63248e-05, 0.00850816444, 0.0119126942, -0.00804075226, 0.0030255462, 0.00611425657, -0.0105736209, -0.0106936321, -0.0128727835, 0.0164225902, -0.0303186271, 0.0214630608, -0.0240906756, 0.0334010199, -0.0107125817, -0.0185448937, 0.0198081695, -0.0164352227, -0.0185575262, 0.0105673047, -0.0242801663, -0.0235727318, -0.0315566361, 0.0201745201, 0.0217536148, -0.00850184821, 0.0183175039, -0.00144881976, -0.00307607744, -0.0160183404, 0.0140097318, -0.0356496535, 0.0193028599, 0.00190123054, 0.0033824218, -0.028954288, 0.00176227023, -0.00994198304, 0.0226379074, -0.00137697102, -0.00895662792, -0.0163594261, 0.00363507704, 0.00615215488, -0.00576053932, 0.00994829927, 0.0159551781, -0.0132138683, -0.000580712222, -0.0237748567, -0.010807327, 0.0036413935, -0.0056405277, -0.00225810613, -0.00232126983, -0.00781968, -0.0111041972, -0.0185069945, -0.00436146092, -0.0114642307, 0.0302933622, -0.00950615294, -0.0161067713, -0.00377403735, -0.00266867084, 0.00359086227, -0.00322451233, 0.00437725196, 0.0145529406, -0.0127275065, 0.0136433821, -0.0136560146, 0.00533418357, 0.022915829, 0.0128285689, 0.0206293, 0.00406143256, 0.023610631, -0.00354664773, -0.00090876926, 9.75584699e-05, -0.00621216046, -0.0153488051, 0.0031455576, -0.0188607126, 0.0229031965, 0.00967669487, 0.0163215268, 0.00768071879, 0.00538155623, 0.0241412073, -0.0167131424, -0.0219810046, -0.00545735285, 0.00819866173, -0.0172058214, -0.00440883357, 0.00177806115, -0.0229916256, -0.00848289952, 0.0157530531, -0.000982197234, -0.0299143791, -0.00309976377, 0.00195965706, -0.00908295531, 0.0203261133, -0.00500573171, -0.0215388574, -0.0176984984, -0.0286511015, 0.0161320362, -0.00468991278, 0.0074470127, -0.00514153391, 0.0178500917, -0.00772493333, -0.00881766714, -0.0104157114, 0.00121511368, 0.0176479667, 0.00824287627, -0.00464885589, 0.00713119376, -0.000206664074, -0.0198460687, -0.017483741, 0.00831235666, -0.0148687596, -0.00252181501, 0.00749754393, 0.0233958736, -0.0148813929, 0.00501204794, -0.00447199726, 0.00720067369, -0.019100735, 0.00335715618, 0.0154246017, -0.0168015715, 0.00751017639, -0.00220125867, 0.00189017691, 0.0175848044, 0.00601635268, 0.0168015715, 0.0160815045, 0.00976512395, -0.00545735285, 0.0046235905, -0.00131933403, -0.00527101941, 0.00359086227, 0.0165489167, -0.00104062376, 0.0081354985, 0.00307134, -0.0165741835, -0.00727647031, -0.0126896091, 7.59939576e-05, -0.00986618642, 0.0160057079, -0.0237874892, 0.0044877883, -0.00294343336, -0.00940509047, 0.0112115759, -0.0137949754, -0.00571000809, 0.00372666446, 0.0155509291, 0.0242043696, -0.00772493333, 0.00368560804, -0.00306502357, -0.0256192405, -0.0484087393, 0.0186206903, 0.00441830838, 0.0064932392, 0.00529312715, -0.0112431571, 0.00831235666, -0.0107567962, -0.0021617813, -0.0245959852, -0.00539103104, -0.0150329862, -0.00817971304, 0.0134033598, -0.00759860594, -0.0254676472, -0.00600371975, -0.0120579703, 0.00112668436, -0.00477518374, 0.000466622616, 0.00577317178, -0.00372034824, 0.0213872641, 0.00860291068, -0.0235222019, -0.00488887867, 0.00378667028, 0.0165868159, 0.0111231459, -0.012455903, 0.0167131424, 0.0119821737, -0.0112936888, -1.6975273e-05, 0.00664483244, 0.026528798, -0.00450042123, 0.0269835778, 0.0101188421, 0.013352829, 0.0127338236, 0.000529391633, -0.00542577077, 0.00911453739, 0.00939245801, 0.0129864784, -0.0138202412, -0.00611425657, -0.0316324346, 0.0112810554, -0.00103430729, 0.0038056192, -0.00822392758, -0.0198081695, -0.0177742951, 0.00326556875, -0.0141234268, -0.00810391642, -0.0159678105, -0.015285641, 0.00913348608, 0.00128933124, 0.00532470876, 0.00490466971, 0.00121669285, 0.0226379074, -0.00224863156, -0.00845131744, 0.00219494221, 0.0213998966, -0.0107188979, -0.00595003041, 0.00653113751, 0.00402353425, -0.0280699953, -0.0128285689, -0.000638744, 0.016384691, 0.0110410331, -0.0277920738, -0.00198018528, 0.000328846567, -0.00999883, -0.000739016512, 0.00900715869, -0.0098977685, 0.00298764813, -0.0179890525, -0.0232190154, -0.0158035848, 0.0147045339, -0.000377601129, 0.00153409096, 0.0221831296, -0.0361549631, -0.00989145227, -0.0149571896, -0.00539734727, 0.0033192581, 0.0349422172, 0.0246970486, 0.00132328179, -0.0294848643, 0.00511311, -0.020490339, 0.00474044355, -0.00913980231, -0.0175721701, -0.00410248898, -0.00230389973, 0.0179890525, -0.0121337669, 0.00403932529, -0.00464885589, 0.00306186546, -0.0232190154, -0.0268319845, -0.020199785, 0.00248233764, -0.0159678105, 0.0173321478, -0.0171805546, 0.0133022973, 0.00800285395, 0.00470570335, -0.00542577077, 0.0129991109, 0.00208598468, -0.0239390824, 0.00230705808, 0.0078133624, 0.0022470525, -0.00588686671, -0.0106304688, -0.000799416914, -0.0164731201, -0.00664483244, -0.026528798, -0.00914611947, 0.00832499, -0.0135296872, -0.00301449257, -0.00709329545, -0.0191765316, -0.0117358351, 0.01779956, -0.0330978334, -0.0141234268, -0.00112510531, -0.00923454855, 0.000737042632, -0.00896294415, 0.00888714753, -0.0154625, 0.0298891123, 0.00840078574, 0.00509731937, -0.0113442196, -0.0147424322, 0.00394457951, 0.0213872641, 0.0139718335, 0.0105230901, 0.0185196288, -0.0110536665, -0.00430461345, 0.000571237644, 0.00849553198, -0.0148940254, 0.0486613959, -0.00413722917, 0.0065943012, -0.0236485284, 0.00620268565, 0.0153109068, -0.0156393591, -0.0103399148, 0.0144013474, -0.0367108025, 0.0179890525, 0.0321377441, 0.0184817296, -0.00345190195, -0.00781968, -0.0248865392, 0.00428250618, 0.00246023014, 0.00512574287, 0.00589634106, -0.00978407357, -0.0132391341, 0.0154498667, -0.0117295189, 0.00303817913, 0.0046299072, -0.01889861, 0.0134917889, 0.0133275632, -0.00827445835, 0.0093166614, 0.00204966543, -0.000159587304, -0.00941772386, 0.0165110193, 0.00972722657, -0.0110536665, -0.00590897398, -0.0303691588, -0.00106273103, 0.0284995101, 0.010807327, -0.0124495858, 0.00188701868, 0.00580475386, -0.00159962336, 0.0188228134, -0.0101630567, 0.00219494221, -0.00163278438, 0.0203008465, -0.004550952, -0.0258971602, 0.0302175656, -0.0105673047, -0.00188070233, -0.00861554313, -0.000675852702, -0.0020244, 0.00902610831, -0.014767698, -0.00210177572, 0.0148182288, 0.00932297762, -0.00978407357, 0.0173574146, -0.0191512667, -0.00482571498, -0.0014772435, -0.0108578587, -0.01008726, 0.0147550646, -0.0211977735, 0.00583317736, -8.81826e-05, -0.0203387458, 0.00805338565, 0.0262761433, -1.94302729e-07, -0.000640717859, -0.0146034723, -0.00583949406, 0.0230800547, -0.0117421513, -0.00768071879, -0.0178627241, -0.0184817296, 0.00150803581, -0.0123043098, 0.0281710569, 0.00645218277, 0.00913980231, -0.0121779814, 0.00824919343, 0.0225873776, 0.0274130926, 0.0057479064, 0.010055678, -0.00830604, 0.0380751416, -0.0249497034, 0.0121274507, 0.0107188979, -0.00769335171, 0.00244128099, -0.0174079444, -0.00423197495, -0.00148592854, -0.0120642865, 0.000941140694, 0.0217283498, 0.00585212652, -0.00221862877, 0.00111642026, -0.00941772386, -0.020086091, 0.0122348294, 0.0196060445, 0.0152603751, -0.0296364576, 0.0282973852, 0.00352769857, -0.0155888274, -0.00901347492, -5.19127534e-05, -0.00234495639, 0.0292069446, -0.019795537, 0.00176069106, 0.0011551081, -0.013466523, 0.0114137, -0.00210967101, 0.0148561271, -0.0107062655, 0.0121400831, -0.0103146499, 0.0101946387, -0.0112368409, -0.00787021, -0.00425408222, 0.0107252141, -0.0158667471, -0.00188543962, 0.03335049, -0.0228021331, 0.00539103104, -0.00794600695, -0.00541313831, -0.0225242134, -0.00146776892, -0.00938614178, 0.00737121608, -0.000118530828, -0.00234021898, 0.0328199118, -0.0101567404, -0.0146666355, 0.0122664114, -0.0114642307, -0.00735858362, 0.0362054929, 0.00398563594, -0.00751649309, 0.00920296647, -0.00891241338, 0.00197860622, 0.00344242738, 0.00951246917, -0.00297185709, 0.000798627385, 0.0223220885, -0.0026197189, 0.016965799, -0.013264399, 0.00539103104, 0.00626584934, 0.0254044831, 0.000328846567, -0.0134538906, 0.00928507932, 0.0189238768, 0.0185069945, -0.000331017829, -0.000127709325, -0.0044214665, 0.00533418357, 0.00119300641, 0.0120327054, -0.00346769299, 0.02855004, -0.0144013474, -0.0172437187, 0.00990408473, -0.0112684229, 0.0162457302, 0.0100619942, -0.00137144409, 0.00221862877, 0.0146161048, 0.0206671972, 0.0153235393, -0.0143255508, 0.0189491417, 0.00115116034, -0.00448147207, -0.0235095695, 0.00333820726, -0.0120011233, -0.0164225902, -0.0241159406, 0.0246844161, 0.0147045339, -0.00432672072, 0.00471517816, 0.00237338012, -0.0110031348, 0.00232758629, -0.00706803, 0.00725752115, -0.0108515415, 0.00887451507, 0.00235443097, 0.00992935058, -0.0314808413, -0.011672671, -0.011672671, -0.00134617859, 0.000423197489, 0.00420670956, -0.0152982734, -0.0291564129, 0.00276973285, 0.0126959253, -0.00353401504, -0.00768071879, -0.00949983671, 0.0218925755, 0.0132517666, 0.00672694528, 0.00416881125, -0.00283447583, 0.00852079783, -0.0166878775, -0.0251770932, 0.0223852526, 0.0247223135, 0.015980443, 0.0196692087, -0.00595318852, 0.00772493333, -0.0068027419, -0.00934192725, 0.00914611947, -0.0124243209, 0.029131148, -0.00428882241, 0.0113947503, -0.0138581386, -0.0151340477, 0.00915875193, -0.0230421573, -0.0145150423, -0.0397931971, -0.00605425099, 0.0171047579, -0.00159409654, 0.00412459671, 0.0111041972, -0.00559947127, -0.0047593927, -0.0198334344, -0.015980443, -0.00118747959, 0.0232821796, -0.015980443, -0.00270499, 0.00709329545, 0.00292922161, -0.00690380391, -0.0312029198, -0.0139970994, 0.000497020199, 0.0290300846, 0.00281394762, 0.0145150423, 0.0198460687, 0.0132012358, -0.00946825463, -0.0184059329, 0.00286289956, -0.00578580471, 0.0105167739, 0.00970196072, 0.00865975767, -0.00458569219, 0.0154625, 0.00973985903, -0.00787021, -0.0115968743, -0.0151340477, 0.0391362943, -0.0171300247, 0.0170289613, 0.00815444719, 0.00013984862, -0.0023481145, -0.00899452623, -0.00696065137, 0.0129612125, 0.0133275632, 0.00843236782, -8.33959639e-05, 0.0174711086, -0.0204650722, -0.00276657473, 0.0198208019, 0.00383088482, 0.02260001, -0.00687222229, -0.0186206903, 0.00389720686, 0.00955036748, 0.0193660222, -0.0136054838, 0.000816392188, 0.0101693729, 0.00478781667, -0.0197702721, 0.00551735843, -0.018380668, 0.00324346148, -0.00304607465, -0.00727015408, 0.00233548181, -0.00275236275, 0.0114389649, 0.0180395823, -0.0229537264, -0.00224863156, -0.00378351193, 0.0134033598, 0.00355928042, 0.00702381507, -0.00173700461, -0.0102514857, -0.000952983915, -0.000447278697, 0.0106178354, 0.0166878775, 0.000467412174, 0.000776520057, -0.00530260149, -0.00292764232, -0.00427934807, 0.0140097318, -0.00727015408, 0.0152351102, 0.0148182288, -0.0224736817, 0.00830604, -4.4806824e-05, 0.00643955, 0.00534681603, 0.0164731201, -0.00526154507, -0.0181785431, 0.00812918227, -0.0139844669, 0.00781968, 0.0142497551, 0.014072896, -0.0125253825, -0.0200229269, 0.0150708845, 0.0199344978, -0.0148182288, -0.0050025736, 0.00898189284, 0.00356243877, -0.0254802797, 0.0170542281, 0.00188701868, -0.0127275065, 0.0185954235, -0.000270814809, -0.000406222214, -0.0190375708, -0.000829814526, -0.0187470168, 0.00831867289, -0.00807865057, 0.00971459318, -0.0311523899, -0.00142829155, -0.00882398337, 0.00935456, -0.00595003041, -0.00704908092, 0.00181280123, -0.0129612125, 0.0262761433, 0.00294501241, -0.0155635616, 0.027943667, -0.00183964591, -4.72741594e-05, 0.00754175847, 0.0280447304, -0.00833762251, -0.0239264499, -0.0203640107, 0.0210209154, -0.00414354587, -0.0119884908, -0.0312281866, 0.000580317457, 0.014477144, 0.00865975767, 0.000657693134, 0.00830604, -0.000483203126, 0.00752280932, 0.0219936371, -0.0244443938, 0.0278173406, -0.0324661955, -0.0116537223, 0.00242864829, -0.0228652973, 0.00979039, -0.00850184821, 0.0055047255, -0.023610631, 0.00803443603, -0.00594055606, -0.0173068829, -0.0128664672, 0.0104093952, -0.0179258883, -0.00757965678, 0.021210406, 0.0151845794, -0.00968932826, 0.00399511075, -0.0146540031, -0.0129106818, 0.00371719, -0.0196439438, -0.00732068531, -0.00559315505, 0.0147045339, -0.0182290748, -0.0101251584, 0.000501362723, -0.0154372342, 0.00601951079, -0.00355928042, 0.00135091587, 0.00488572055, 0.0295101292, 0.00240022456, -0.0208566878, 0.0186838545, -0.0149950879, -0.0216651857, 0.0260740183, -0.00375824654, 0.0140097318, -0.0180522166, 0.00407406548, 0.00966406241, 0.0121021848, -0.0173195153, -0.0163973235, 0.0224863142, -0.0122285131, 0.0248360094, -0.0069101206, -0.0137444446, -0.0146792689, -0.0156646241, 0.0100935763, -0.0163215268, 0.00605425099, 0.00668904698, -0.00675221067, -0.00591844879, 0.0119000608, -0.00752912555, 0.015689889, -0.0157277882, -0.0114137, 0.00919033401, 0.016675245, 0.021362, 0.0388078429, -0.0163720585, -0.00656271959, 0.0187343843, 0.0290553514, -0.00561842043, 0.00309976377, 0.0249623358, -0.0252276249, 0.00924718101, -0.0148813929, 0.0122285131, 0.00392563036, 0.00232600723, -0.0200608242, -0.015689889, 4.2314814e-06, -0.00426355703, -0.0152982734, 0.00294659147, 0.00371403177, -0.00540998, -0.00418776041, -0.00101298955, 0.0283479169, 0.0206924621, -0.00757334055, -0.0145908389, -0.0158035848, -0.0114958128, -0.0103272824, 0.00610794, -0.0174205769, 0.00222810335, -0.00961984787, 0.000144487203, -0.0193154924, 0.0108010108, 0.00570369186, -0.0062279515, 0.0224736817, -0.00285026664, -0.0160562396, 0.00585212652, -0.00415933644, -0.0322640724, 0.0118558463, 0.00709329545, -0.000674668408, -0.0203513782, -0.0174332112, -0.0117863659, 0.00572264101, 0.0184690971, 0.0294596, -0.00345821842, 0.000230547885, 0.0123548405, 0.00235127262, -0.00416565314, -0.0220062695, 0.0216272864, -0.0290553514, 0.00100193592, -0.0121906148, 0.0228274, 0.00315029477, -0.004595167, 0.00701118261, 0.00238127541, 0.0105862543, 0.00269235717, -0.0169279, -0.00519206468, -0.000398326752, 0.0360539, -0.00698591676, -0.0204650722, 0.00158778019, -0.0109652365, 0.0112431571, -0.0118621625, 0.0116095077, 0.00221389136, -0.000662035658, -0.00778178079, -0.0162330978, 0.0085713286, 0.033375755, -0.0256824028, 0.020806158, 0.00694170222, -0.00834393874, -0.0051383758, 0.0138834044, -0.00219810056, -0.00245075556, 0.00973985903, 0.0382014699, -0.0259476919, 0.00147013762, -0.0152351102, 0.026326675, 0.00256445049, -0.006357437, 0.0264277365, 0.00215546484, -0.00119853322, -0.00380877755, 0.00992935058, 0.00833130628, 0.042420812, 0.00297027803, 0.00864712521, -0.0248360094, 0.00242075277, 0.0217030831, 0.0102199037, 0.0138455061, -0.0158541147, 0.0150456186, 0.028120527, -0.0232948121, 0.00498046633, -0.00889978, 0.00266709179, -0.0100619942, -0.00681537483, -0.0319103561, 0.00845131744, -0.0116284564, 0.00413091294, -0.00330346706, 0.0146034723, 0.0306723434, 0.00861554313, -0.0132265007, -0.0151845794, 0.0193281248, -0.00119142723, 0.0144392457, 0.016991064, -0.0262761433, 0.0043583028, 0.0265793297, -0.00405511633, 0.00577001367, -0.0313797779, 0.0115400273, 0.013352829, -0.00176700752, 0.0187722836, 0.0133401956, -0.00375193, -0.00402985094, -0.0103967628, -0.00265919627, -0.0105609884, 0.0106178354, 0.0282721203, -0.0154246017, -0.00816076342, -0.0282468535, -0.0117989993, -0.00750386, 0.0210588127, 0.0225873776, -0.00634480454, 0.00629743142, 0.00886188168, 0.00399195263, -0.0141739585, -0.012916998, 0.019126]